2010-06-23 19:46:08 +00:00
|
|
|
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* vim: set ts=2 et sw=2 tw=80: */
|
2012-05-21 11:12:37 +00:00
|
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
2010-06-23 19:46:08 +00:00
|
|
|
|
|
|
|
#ifndef mozilla_dom_indexeddb_idbkeyrange_h__
|
|
|
|
#define mozilla_dom_indexeddb_idbkeyrange_h__
|
|
|
|
|
|
|
|
#include "mozilla/dom/indexedDB/IndexedDatabase.h"
|
2011-11-03 15:57:30 +00:00
|
|
|
#include "mozilla/dom/indexedDB/Key.h"
|
2010-06-23 19:46:08 +00:00
|
|
|
|
|
|
|
#include "nsIIDBKeyRange.h"
|
2011-11-03 15:57:30 +00:00
|
|
|
|
|
|
|
#include "nsCycleCollectionParticipant.h"
|
2010-06-23 19:46:08 +00:00
|
|
|
|
2011-11-03 15:59:17 +00:00
|
|
|
class mozIStorageStatement;
|
|
|
|
|
2010-06-23 19:46:08 +00:00
|
|
|
BEGIN_INDEXEDDB_NAMESPACE
|
|
|
|
|
2012-06-01 17:21:12 +00:00
|
|
|
namespace ipc {
|
|
|
|
class KeyRange;
|
|
|
|
} // namespace ipc
|
|
|
|
|
2012-05-15 04:50:29 +00:00
|
|
|
class IDBKeyRange MOZ_FINAL : public nsIIDBKeyRange
|
2010-06-23 19:46:08 +00:00
|
|
|
{
|
|
|
|
public:
|
2011-11-03 15:57:30 +00:00
|
|
|
NS_DECL_CYCLE_COLLECTING_ISUPPORTS
|
2010-06-23 19:46:08 +00:00
|
|
|
NS_DECL_NSIIDBKEYRANGE
|
2011-11-03 15:57:30 +00:00
|
|
|
NS_DECL_CYCLE_COLLECTION_SCRIPT_HOLDER_CLASS(IDBKeyRange)
|
2010-06-23 19:46:08 +00:00
|
|
|
|
2013-08-08 22:53:04 +00:00
|
|
|
static bool DefineConstructors(JSContext* aCx,
|
|
|
|
JSObject* aObject);
|
2010-11-10 23:26:00 +00:00
|
|
|
|
2012-06-01 17:21:12 +00:00
|
|
|
static nsresult FromJSVal(JSContext* aCx,
|
|
|
|
const jsval& aVal,
|
|
|
|
IDBKeyRange** aKeyRange);
|
|
|
|
|
|
|
|
template <class T>
|
|
|
|
static already_AddRefed<IDBKeyRange>
|
|
|
|
FromSerializedKeyRange(const T& aKeyRange);
|
2010-06-23 19:46:08 +00:00
|
|
|
|
2012-06-01 17:21:12 +00:00
|
|
|
IDBKeyRange(bool aLowerOpen,
|
|
|
|
bool aUpperOpen,
|
|
|
|
bool aIsOnly)
|
2011-11-03 15:57:30 +00:00
|
|
|
: mCachedLowerVal(JSVAL_VOID), mCachedUpperVal(JSVAL_VOID),
|
|
|
|
mLowerOpen(aLowerOpen), mUpperOpen(aUpperOpen), mIsOnly(aIsOnly),
|
|
|
|
mHaveCachedLowerVal(false), mHaveCachedUpperVal(false), mRooted(false)
|
2010-06-23 19:46:08 +00:00
|
|
|
{ }
|
|
|
|
|
2011-11-03 15:57:30 +00:00
|
|
|
const Key& Lower() const
|
|
|
|
{
|
|
|
|
return mLower;
|
|
|
|
}
|
|
|
|
|
|
|
|
Key& Lower()
|
|
|
|
{
|
|
|
|
return mLower;
|
|
|
|
}
|
|
|
|
|
|
|
|
const Key& Upper() const
|
|
|
|
{
|
|
|
|
return mIsOnly ? mLower : mUpper;
|
|
|
|
}
|
|
|
|
|
|
|
|
Key& Upper()
|
|
|
|
{
|
|
|
|
return mIsOnly ? mLower : mUpper;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool IsLowerOpen() const
|
|
|
|
{
|
|
|
|
return mLowerOpen;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool IsUpperOpen() const
|
|
|
|
{
|
|
|
|
return mUpperOpen;
|
|
|
|
}
|
|
|
|
|
2011-11-03 15:59:17 +00:00
|
|
|
bool IsOnly() const
|
|
|
|
{
|
|
|
|
return mIsOnly;
|
|
|
|
}
|
|
|
|
|
|
|
|
void GetBindingClause(const nsACString& aKeyColumnName,
|
|
|
|
nsACString& _retval) const
|
|
|
|
{
|
|
|
|
NS_NAMED_LITERAL_CSTRING(andStr, " AND ");
|
|
|
|
NS_NAMED_LITERAL_CSTRING(spacecolon, " :");
|
|
|
|
NS_NAMED_LITERAL_CSTRING(lowerKey, "lower_key");
|
|
|
|
|
|
|
|
if (IsOnly()) {
|
|
|
|
// Both keys are set and they're equal.
|
2012-06-01 17:21:12 +00:00
|
|
|
_retval = andStr + aKeyColumnName + NS_LITERAL_CSTRING(" =") +
|
|
|
|
spacecolon + lowerKey;
|
2011-11-03 15:59:17 +00:00
|
|
|
}
|
|
|
|
else {
|
2012-09-02 02:35:17 +00:00
|
|
|
nsAutoCString clause;
|
2011-11-03 15:59:17 +00:00
|
|
|
|
|
|
|
if (!Lower().IsUnset()) {
|
|
|
|
// Lower key is set.
|
|
|
|
clause.Append(andStr + aKeyColumnName);
|
|
|
|
clause.AppendLiteral(" >");
|
|
|
|
if (!IsLowerOpen()) {
|
|
|
|
clause.AppendLiteral("=");
|
|
|
|
}
|
|
|
|
clause.Append(spacecolon + lowerKey);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!Upper().IsUnset()) {
|
|
|
|
// Upper key is set.
|
|
|
|
clause.Append(andStr + aKeyColumnName);
|
|
|
|
clause.AppendLiteral(" <");
|
|
|
|
if (!IsUpperOpen()) {
|
|
|
|
clause.AppendLiteral("=");
|
|
|
|
}
|
|
|
|
clause.Append(spacecolon + NS_LITERAL_CSTRING("upper_key"));
|
|
|
|
}
|
|
|
|
|
|
|
|
_retval = clause;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
nsresult BindToStatement(mozIStorageStatement* aStatement) const
|
|
|
|
{
|
|
|
|
NS_NAMED_LITERAL_CSTRING(lowerKey, "lower_key");
|
|
|
|
|
|
|
|
if (IsOnly()) {
|
|
|
|
return Lower().BindToStatement(aStatement, lowerKey);
|
|
|
|
}
|
|
|
|
|
|
|
|
nsresult rv;
|
|
|
|
|
|
|
|
if (!Lower().IsUnset()) {
|
|
|
|
rv = Lower().BindToStatement(aStatement, lowerKey);
|
|
|
|
NS_ENSURE_SUCCESS(rv, NS_ERROR_DOM_INDEXEDDB_UNKNOWN_ERR);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!Upper().IsUnset()) {
|
|
|
|
rv = Upper().BindToStatement(aStatement, NS_LITERAL_CSTRING("upper_key"));
|
|
|
|
NS_ENSURE_SUCCESS(rv, NS_ERROR_DOM_INDEXEDDB_UNKNOWN_ERR);
|
|
|
|
}
|
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2012-06-01 17:21:12 +00:00
|
|
|
template <class T>
|
|
|
|
void ToSerializedKeyRange(T& aKeyRange);
|
|
|
|
|
2012-11-28 01:37:57 +00:00
|
|
|
void DropJSObjects();
|
|
|
|
|
2012-06-01 17:21:12 +00:00
|
|
|
private:
|
2012-03-28 14:40:52 +00:00
|
|
|
~IDBKeyRange();
|
2010-06-23 19:46:08 +00:00
|
|
|
|
2011-11-03 15:57:30 +00:00
|
|
|
Key mLower;
|
|
|
|
Key mUpper;
|
2013-06-18 10:00:37 +00:00
|
|
|
JS::Heap<JS::Value> mCachedLowerVal;
|
|
|
|
JS::Heap<JS::Value> mCachedUpperVal;
|
2011-09-29 06:19:26 +00:00
|
|
|
bool mLowerOpen;
|
|
|
|
bool mUpperOpen;
|
2011-11-03 15:57:30 +00:00
|
|
|
bool mIsOnly;
|
|
|
|
bool mHaveCachedLowerVal;
|
|
|
|
bool mHaveCachedUpperVal;
|
|
|
|
bool mRooted;
|
2010-06-23 19:46:08 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
END_INDEXEDDB_NAMESPACE
|
|
|
|
|
|
|
|
#endif // mozilla_dom_indexeddb_idbkeyrange_h__
|