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__
|
|
|
|
|
2014-09-26 23:21:57 +00:00
|
|
|
#include "js/RootingAPI.h"
|
|
|
|
#include "js/Value.h"
|
|
|
|
#include "mozilla/Attributes.h"
|
2011-11-03 15:57:30 +00:00
|
|
|
#include "mozilla/dom/indexedDB/Key.h"
|
2014-09-26 23:21:57 +00:00
|
|
|
#include "nsCOMPtr.h"
|
2014-09-17 23:36:01 +00:00
|
|
|
#include "nsCycleCollectionParticipant.h"
|
2014-09-26 23:21:57 +00:00
|
|
|
#include "nsISupports.h"
|
|
|
|
#include "nsString.h"
|
2010-06-23 19:46:08 +00:00
|
|
|
|
2011-11-03 15:59:17 +00:00
|
|
|
class mozIStorageStatement;
|
2014-09-26 23:21:57 +00:00
|
|
|
struct PRThread;
|
2011-11-03 15:59:17 +00:00
|
|
|
|
2013-09-28 11:25:46 +00:00
|
|
|
namespace mozilla {
|
2014-09-26 23:21:57 +00:00
|
|
|
|
|
|
|
class ErrorResult;
|
|
|
|
|
2013-09-28 11:25:46 +00:00
|
|
|
namespace dom {
|
2014-09-26 23:21:57 +00:00
|
|
|
|
2013-09-28 11:25:46 +00:00
|
|
|
class GlobalObject;
|
|
|
|
|
2014-09-26 23:21:57 +00:00
|
|
|
namespace indexedDB {
|
2010-06-23 19:46:08 +00:00
|
|
|
|
2014-09-26 23:21:57 +00:00
|
|
|
class SerializedKeyRange;
|
2012-06-01 17:21:12 +00:00
|
|
|
|
2014-09-26 23:21:57 +00:00
|
|
|
class IDBKeyRange MOZ_FINAL
|
|
|
|
: public nsISupports
|
2010-06-23 19:46:08 +00:00
|
|
|
{
|
2014-09-26 23:21:57 +00:00
|
|
|
nsCOMPtr<nsISupports> mGlobal;
|
|
|
|
Key mLower;
|
|
|
|
Key mUpper;
|
|
|
|
JS::Heap<JS::Value> mCachedLowerVal;
|
|
|
|
JS::Heap<JS::Value> mCachedUpperVal;
|
|
|
|
|
|
|
|
const bool mLowerOpen : 1;
|
|
|
|
const bool mUpperOpen : 1;
|
|
|
|
const bool mIsOnly : 1;
|
|
|
|
bool mHaveCachedLowerVal : 1;
|
|
|
|
bool mHaveCachedUpperVal : 1;
|
|
|
|
bool mRooted : 1;
|
|
|
|
|
|
|
|
#ifdef DEBUG
|
|
|
|
PRThread* mOwningThread;
|
|
|
|
#endif
|
|
|
|
|
2010-06-23 19:46:08 +00:00
|
|
|
public:
|
2011-11-03 15:57:30 +00:00
|
|
|
NS_DECL_CYCLE_COLLECTING_ISUPPORTS
|
|
|
|
NS_DECL_CYCLE_COLLECTION_SCRIPT_HOLDER_CLASS(IDBKeyRange)
|
2010-06-23 19:46:08 +00:00
|
|
|
|
2014-09-26 23:21:57 +00:00
|
|
|
static nsresult
|
|
|
|
FromJSVal(JSContext* aCx,
|
|
|
|
JS::Handle<JS::Value> aVal,
|
|
|
|
IDBKeyRange** aKeyRange);
|
|
|
|
|
|
|
|
static already_AddRefed<IDBKeyRange>
|
|
|
|
FromSerialized(const SerializedKeyRange& aKeyRange);
|
|
|
|
|
|
|
|
static already_AddRefed<IDBKeyRange>
|
|
|
|
Only(const GlobalObject& aGlobal,
|
|
|
|
JS::Handle<JS::Value> aValue,
|
|
|
|
ErrorResult& aRv);
|
|
|
|
|
|
|
|
static already_AddRefed<IDBKeyRange>
|
|
|
|
LowerBound(const GlobalObject& aGlobal,
|
|
|
|
JS::Handle<JS::Value> aValue,
|
|
|
|
bool aOpen,
|
|
|
|
ErrorResult& aRv);
|
|
|
|
|
|
|
|
static already_AddRefed<IDBKeyRange>
|
|
|
|
UpperBound(const GlobalObject& aGlobal,
|
|
|
|
JS::Handle<JS::Value> aValue,
|
|
|
|
bool aOpen,
|
|
|
|
ErrorResult& aRv);
|
2012-06-01 17:21:12 +00:00
|
|
|
|
|
|
|
static already_AddRefed<IDBKeyRange>
|
2014-09-26 23:21:57 +00:00
|
|
|
Bound(const GlobalObject& aGlobal,
|
|
|
|
JS::Handle<JS::Value> aLower,
|
|
|
|
JS::Handle<JS::Value> aUpper,
|
|
|
|
bool aLowerOpen,
|
|
|
|
bool aUpperOpen,
|
|
|
|
ErrorResult& aRv);
|
2010-06-23 19:46:08 +00:00
|
|
|
|
2014-09-26 23:21:57 +00:00
|
|
|
void
|
|
|
|
AssertIsOnOwningThread() const
|
|
|
|
#ifdef DEBUG
|
|
|
|
;
|
|
|
|
#else
|
|
|
|
{ }
|
|
|
|
#endif
|
|
|
|
|
|
|
|
void
|
|
|
|
ToSerialized(SerializedKeyRange& aKeyRange) const;
|
|
|
|
|
|
|
|
const Key&
|
|
|
|
Lower() const
|
2011-11-03 15:57:30 +00:00
|
|
|
{
|
|
|
|
return mLower;
|
|
|
|
}
|
|
|
|
|
2014-09-26 23:21:57 +00:00
|
|
|
Key&
|
|
|
|
Lower()
|
2011-11-03 15:57:30 +00:00
|
|
|
{
|
|
|
|
return mLower;
|
|
|
|
}
|
|
|
|
|
2014-09-26 23:21:57 +00:00
|
|
|
const Key&
|
|
|
|
Upper() const
|
2011-11-03 15:57:30 +00:00
|
|
|
{
|
|
|
|
return mIsOnly ? mLower : mUpper;
|
|
|
|
}
|
|
|
|
|
2014-09-26 23:21:57 +00:00
|
|
|
Key&
|
|
|
|
Upper()
|
2011-11-03 15:57:30 +00:00
|
|
|
{
|
|
|
|
return mIsOnly ? mLower : mUpper;
|
|
|
|
}
|
|
|
|
|
2014-09-26 23:21:57 +00:00
|
|
|
bool
|
|
|
|
IsOnly() const
|
2011-11-03 15:59:17 +00:00
|
|
|
{
|
|
|
|
return mIsOnly;
|
|
|
|
}
|
|
|
|
|
2014-09-26 23:21:57 +00:00
|
|
|
void
|
|
|
|
GetBindingClause(const nsACString& aKeyColumnName,
|
|
|
|
nsACString& _retval) const;
|
2014-09-17 23:36:01 +00:00
|
|
|
|
2014-09-26 23:21:57 +00:00
|
|
|
nsresult
|
|
|
|
BindToStatement(mozIStorageStatement* aStatement) const;
|
2014-09-17 23:36:01 +00:00
|
|
|
|
2014-09-26 23:21:57 +00:00
|
|
|
void
|
|
|
|
DropJSObjects();
|
2012-11-28 01:37:57 +00:00
|
|
|
|
2013-09-28 11:25:46 +00:00
|
|
|
// WebIDL
|
|
|
|
JSObject*
|
2014-04-08 22:27:18 +00:00
|
|
|
WrapObject(JSContext* aCx);
|
2013-09-28 11:25:46 +00:00
|
|
|
|
|
|
|
nsISupports*
|
|
|
|
GetParentObject() const
|
|
|
|
{
|
|
|
|
return mGlobal;
|
|
|
|
}
|
|
|
|
|
2014-06-11 20:26:52 +00:00
|
|
|
void
|
|
|
|
GetLower(JSContext* aCx, JS::MutableHandle<JS::Value> aResult,
|
|
|
|
ErrorResult& aRv);
|
2013-09-28 11:25:46 +00:00
|
|
|
|
2014-06-11 20:26:52 +00:00
|
|
|
void
|
|
|
|
GetUpper(JSContext* aCx, JS::MutableHandle<JS::Value> aResult,
|
|
|
|
ErrorResult& aRv);
|
2013-09-28 11:25:46 +00:00
|
|
|
|
|
|
|
bool
|
|
|
|
LowerOpen() const
|
|
|
|
{
|
|
|
|
return mLowerOpen;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
UpperOpen() const
|
|
|
|
{
|
|
|
|
return mUpperOpen;
|
|
|
|
}
|
|
|
|
|
2012-06-01 17:21:12 +00:00
|
|
|
private:
|
2013-09-28 11:25:46 +00:00
|
|
|
IDBKeyRange(nsISupports* aGlobal,
|
|
|
|
bool aLowerOpen,
|
|
|
|
bool aUpperOpen,
|
2014-09-26 23:21:57 +00:00
|
|
|
bool aIsOnly);
|
2013-09-28 11:25:46 +00:00
|
|
|
|
2012-03-28 14:40:52 +00:00
|
|
|
~IDBKeyRange();
|
2010-06-23 19:46:08 +00:00
|
|
|
};
|
|
|
|
|
2014-09-26 23:21:57 +00:00
|
|
|
} // namespace indexedDB
|
|
|
|
} // namespace dom
|
|
|
|
} // namespace mozilla
|
2010-06-23 19:46:08 +00:00
|
|
|
|
|
|
|
#endif // mozilla_dom_indexeddb_idbkeyrange_h__
|