2010-06-23 23:46:08 +04:00
|
|
|
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
2015-05-03 22:32:37 +03:00
|
|
|
/* vim: set ts=8 sts=2 et sw=2 tw=80: */
|
2012-05-21 15:12:37 +04: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 23:46:08 +04:00
|
|
|
|
|
|
|
#ifndef mozilla_dom_indexeddb_idbkeyrange_h__
|
|
|
|
#define mozilla_dom_indexeddb_idbkeyrange_h__
|
|
|
|
|
2014-09-27 03:21:57 +04:00
|
|
|
#include "js/RootingAPI.h"
|
|
|
|
#include "js/Value.h"
|
|
|
|
#include "mozilla/Attributes.h"
|
2011-11-03 19:57:30 +04:00
|
|
|
#include "mozilla/dom/indexedDB/Key.h"
|
2014-09-27 03:21:57 +04:00
|
|
|
#include "nsCOMPtr.h"
|
2014-09-18 03:36:01 +04:00
|
|
|
#include "nsCycleCollectionParticipant.h"
|
2014-09-27 03:21:57 +04:00
|
|
|
#include "nsISupports.h"
|
|
|
|
#include "nsString.h"
|
2010-06-23 23:46:08 +04:00
|
|
|
|
2011-11-03 19:59:17 +04:00
|
|
|
class mozIStorageStatement;
|
2014-09-27 03:21:57 +04:00
|
|
|
struct PRThread;
|
2011-11-03 19:59:17 +04:00
|
|
|
|
2013-09-28 15:25:46 +04:00
|
|
|
namespace mozilla {
|
2014-09-27 03:21:57 +04:00
|
|
|
|
|
|
|
class ErrorResult;
|
|
|
|
|
2013-09-28 15:25:46 +04:00
|
|
|
namespace dom {
|
2014-09-27 03:21:57 +04:00
|
|
|
|
2013-09-28 15:25:46 +04:00
|
|
|
class GlobalObject;
|
|
|
|
|
2014-09-27 03:21:57 +04:00
|
|
|
namespace indexedDB {
|
2010-06-23 23:46:08 +04:00
|
|
|
|
2014-09-27 03:21:57 +04:00
|
|
|
class SerializedKeyRange;
|
2012-06-01 21:21:12 +04:00
|
|
|
|
2015-03-21 19:28:04 +03:00
|
|
|
class IDBKeyRange final
|
2014-09-27 03:21:57 +04:00
|
|
|
: public nsISupports
|
2010-06-23 23:46:08 +04:00
|
|
|
{
|
2014-09-27 03:21:57 +04: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 23:46:08 +04:00
|
|
|
public:
|
2011-11-03 19:57:30 +04:00
|
|
|
NS_DECL_CYCLE_COLLECTING_ISUPPORTS
|
|
|
|
NS_DECL_CYCLE_COLLECTION_SCRIPT_HOLDER_CLASS(IDBKeyRange)
|
2010-06-23 23:46:08 +04:00
|
|
|
|
2014-09-27 03:21:57 +04: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 21:21:12 +04:00
|
|
|
|
|
|
|
static already_AddRefed<IDBKeyRange>
|
2014-09-27 03:21:57 +04:00
|
|
|
Bound(const GlobalObject& aGlobal,
|
|
|
|
JS::Handle<JS::Value> aLower,
|
|
|
|
JS::Handle<JS::Value> aUpper,
|
|
|
|
bool aLowerOpen,
|
|
|
|
bool aUpperOpen,
|
|
|
|
ErrorResult& aRv);
|
2010-06-23 23:46:08 +04:00
|
|
|
|
2014-09-27 03:21:57 +04:00
|
|
|
void
|
|
|
|
AssertIsOnOwningThread() const
|
|
|
|
#ifdef DEBUG
|
|
|
|
;
|
|
|
|
#else
|
|
|
|
{ }
|
|
|
|
#endif
|
|
|
|
|
|
|
|
void
|
|
|
|
ToSerialized(SerializedKeyRange& aKeyRange) const;
|
|
|
|
|
|
|
|
const Key&
|
|
|
|
Lower() const
|
2011-11-03 19:57:30 +04:00
|
|
|
{
|
|
|
|
return mLower;
|
|
|
|
}
|
|
|
|
|
2014-09-27 03:21:57 +04:00
|
|
|
Key&
|
|
|
|
Lower()
|
2011-11-03 19:57:30 +04:00
|
|
|
{
|
|
|
|
return mLower;
|
|
|
|
}
|
|
|
|
|
2014-09-27 03:21:57 +04:00
|
|
|
const Key&
|
|
|
|
Upper() const
|
2011-11-03 19:57:30 +04:00
|
|
|
{
|
|
|
|
return mIsOnly ? mLower : mUpper;
|
|
|
|
}
|
|
|
|
|
2014-09-27 03:21:57 +04:00
|
|
|
Key&
|
|
|
|
Upper()
|
2011-11-03 19:57:30 +04:00
|
|
|
{
|
|
|
|
return mIsOnly ? mLower : mUpper;
|
|
|
|
}
|
|
|
|
|
2014-09-27 03:21:57 +04:00
|
|
|
bool
|
|
|
|
IsOnly() const
|
2011-11-03 19:59:17 +04:00
|
|
|
{
|
|
|
|
return mIsOnly;
|
|
|
|
}
|
|
|
|
|
2014-09-27 03:21:57 +04:00
|
|
|
void
|
|
|
|
GetBindingClause(const nsACString& aKeyColumnName,
|
|
|
|
nsACString& _retval) const;
|
2014-09-18 03:36:01 +04:00
|
|
|
|
2014-09-27 03:21:57 +04:00
|
|
|
nsresult
|
|
|
|
BindToStatement(mozIStorageStatement* aStatement) const;
|
2014-09-18 03:36:01 +04:00
|
|
|
|
2014-09-27 03:21:57 +04:00
|
|
|
void
|
|
|
|
DropJSObjects();
|
2012-11-28 05:37:57 +04:00
|
|
|
|
2013-09-28 15:25:46 +04:00
|
|
|
// WebIDL
|
2015-01-09 00:56:42 +03:00
|
|
|
bool
|
Bug 1117172 part 2. Change the non-wrappercached WrapObject methods to allow passing in aGivenProto. r=peterv
The only manual changes here are to BindingUtils.h, Codegen.py, and
StructuredClone.cpp. The rest of this diff was generated by running the following commands:
find . -name "*.h" -o -name "*.cpp" | xargs perl -pi -e 'BEGIN { $/ = undef } s/WrapObject\((JSContext *\* *(?:aCx|cx)),(\s*)(JS::MutableHandle<JSObject\*> aReflector)/WrapObject(\1,\2JS::Handle<JSObject*> aGivenProto,\2\3/g'
find . -name "*.h" -o -name "*.cpp" | xargs perl -pi -e 'BEGIN { $/ = undef } s/(Binding(?:_workers)?::Wrap\((?:aCx|cx)), this, aReflector/\1, this, aGivenProto, aReflector/'
2015-03-19 17:13:32 +03:00
|
|
|
WrapObject(JSContext* aCx, JS::Handle<JSObject*> aGivenProto, JS::MutableHandle<JSObject*> aReflector);
|
2013-09-28 15:25:46 +04:00
|
|
|
|
|
|
|
nsISupports*
|
|
|
|
GetParentObject() const
|
|
|
|
{
|
|
|
|
return mGlobal;
|
|
|
|
}
|
|
|
|
|
2014-06-12 00:26:52 +04:00
|
|
|
void
|
|
|
|
GetLower(JSContext* aCx, JS::MutableHandle<JS::Value> aResult,
|
|
|
|
ErrorResult& aRv);
|
2013-09-28 15:25:46 +04:00
|
|
|
|
2014-06-12 00:26:52 +04:00
|
|
|
void
|
|
|
|
GetUpper(JSContext* aCx, JS::MutableHandle<JS::Value> aResult,
|
|
|
|
ErrorResult& aRv);
|
2013-09-28 15:25:46 +04:00
|
|
|
|
|
|
|
bool
|
|
|
|
LowerOpen() const
|
|
|
|
{
|
|
|
|
return mLowerOpen;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
UpperOpen() const
|
|
|
|
{
|
|
|
|
return mUpperOpen;
|
|
|
|
}
|
|
|
|
|
2012-06-01 21:21:12 +04:00
|
|
|
private:
|
2013-09-28 15:25:46 +04:00
|
|
|
IDBKeyRange(nsISupports* aGlobal,
|
|
|
|
bool aLowerOpen,
|
|
|
|
bool aUpperOpen,
|
2014-09-27 03:21:57 +04:00
|
|
|
bool aIsOnly);
|
2013-09-28 15:25:46 +04:00
|
|
|
|
2012-03-28 18:40:52 +04:00
|
|
|
~IDBKeyRange();
|
2010-06-23 23:46:08 +04:00
|
|
|
};
|
|
|
|
|
2014-09-27 03:21:57 +04:00
|
|
|
} // namespace indexedDB
|
|
|
|
} // namespace dom
|
|
|
|
} // namespace mozilla
|
2010-06-23 23:46:08 +04:00
|
|
|
|
|
|
|
#endif // mozilla_dom_indexeddb_idbkeyrange_h__
|