2010-06-23 12:46:08 -07:00
|
|
|
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
2015-05-03 12:32:37 -07:00
|
|
|
/* vim: set ts=8 sts=2 et sw=2 tw=80: */
|
2012-05-21 04:12:37 -07: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 12:46:08 -07:00
|
|
|
|
|
|
|
#ifndef mozilla_dom_indexeddb_idbkeyrange_h__
|
|
|
|
#define mozilla_dom_indexeddb_idbkeyrange_h__
|
|
|
|
|
2014-09-26 16:21:57 -07:00
|
|
|
#include "js/RootingAPI.h"
|
|
|
|
#include "js/Value.h"
|
|
|
|
#include "mozilla/Attributes.h"
|
2011-11-03 08:57:30 -07:00
|
|
|
#include "mozilla/dom/indexedDB/Key.h"
|
2014-09-26 16:21:57 -07:00
|
|
|
#include "nsCOMPtr.h"
|
2014-09-17 16:36:01 -07:00
|
|
|
#include "nsCycleCollectionParticipant.h"
|
2014-09-26 16:21:57 -07:00
|
|
|
#include "nsISupports.h"
|
|
|
|
#include "nsString.h"
|
2010-06-23 12:46:08 -07:00
|
|
|
|
2011-11-03 08:59:17 -07:00
|
|
|
class mozIStorageStatement;
|
2014-09-26 16:21:57 -07:00
|
|
|
struct PRThread;
|
2011-11-03 08:59:17 -07:00
|
|
|
|
2013-09-28 04:25:46 -07:00
|
|
|
namespace mozilla {
|
2014-09-26 16:21:57 -07:00
|
|
|
|
|
|
|
class ErrorResult;
|
|
|
|
|
2013-09-28 04:25:46 -07:00
|
|
|
namespace dom {
|
2014-09-26 16:21:57 -07:00
|
|
|
|
2013-09-28 04:25:46 -07:00
|
|
|
class GlobalObject;
|
|
|
|
|
2014-09-26 16:21:57 -07:00
|
|
|
namespace indexedDB {
|
2010-06-23 12:46:08 -07:00
|
|
|
|
2014-09-26 16:21:57 -07:00
|
|
|
class SerializedKeyRange;
|
2012-06-01 10:21:12 -07:00
|
|
|
|
2015-03-21 09:28:04 -07:00
|
|
|
class IDBKeyRange final
|
2014-09-26 16:21:57 -07:00
|
|
|
: public nsISupports
|
2010-06-23 12:46:08 -07:00
|
|
|
{
|
2014-09-26 16:21:57 -07: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 12:46:08 -07:00
|
|
|
public:
|
2011-11-03 08:57:30 -07:00
|
|
|
NS_DECL_CYCLE_COLLECTING_ISUPPORTS
|
|
|
|
NS_DECL_CYCLE_COLLECTION_SCRIPT_HOLDER_CLASS(IDBKeyRange)
|
2010-06-23 12:46:08 -07:00
|
|
|
|
2014-09-26 16:21:57 -07: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 10:21:12 -07:00
|
|
|
|
|
|
|
static already_AddRefed<IDBKeyRange>
|
2014-09-26 16:21:57 -07:00
|
|
|
Bound(const GlobalObject& aGlobal,
|
|
|
|
JS::Handle<JS::Value> aLower,
|
|
|
|
JS::Handle<JS::Value> aUpper,
|
|
|
|
bool aLowerOpen,
|
|
|
|
bool aUpperOpen,
|
|
|
|
ErrorResult& aRv);
|
2010-06-23 12:46:08 -07:00
|
|
|
|
2014-09-26 16:21:57 -07:00
|
|
|
void
|
|
|
|
AssertIsOnOwningThread() const
|
|
|
|
#ifdef DEBUG
|
|
|
|
;
|
|
|
|
#else
|
|
|
|
{ }
|
|
|
|
#endif
|
|
|
|
|
|
|
|
void
|
|
|
|
ToSerialized(SerializedKeyRange& aKeyRange) const;
|
|
|
|
|
|
|
|
const Key&
|
|
|
|
Lower() const
|
2011-11-03 08:57:30 -07:00
|
|
|
{
|
|
|
|
return mLower;
|
|
|
|
}
|
|
|
|
|
2014-09-26 16:21:57 -07:00
|
|
|
Key&
|
|
|
|
Lower()
|
2011-11-03 08:57:30 -07:00
|
|
|
{
|
|
|
|
return mLower;
|
|
|
|
}
|
|
|
|
|
2014-09-26 16:21:57 -07:00
|
|
|
const Key&
|
|
|
|
Upper() const
|
2011-11-03 08:57:30 -07:00
|
|
|
{
|
|
|
|
return mIsOnly ? mLower : mUpper;
|
|
|
|
}
|
|
|
|
|
2014-09-26 16:21:57 -07:00
|
|
|
Key&
|
|
|
|
Upper()
|
2011-11-03 08:57:30 -07:00
|
|
|
{
|
|
|
|
return mIsOnly ? mLower : mUpper;
|
|
|
|
}
|
|
|
|
|
2014-09-26 16:21:57 -07:00
|
|
|
bool
|
|
|
|
IsOnly() const
|
2011-11-03 08:59:17 -07:00
|
|
|
{
|
|
|
|
return mIsOnly;
|
|
|
|
}
|
|
|
|
|
2014-09-26 16:21:57 -07:00
|
|
|
void
|
|
|
|
GetBindingClause(const nsACString& aKeyColumnName,
|
|
|
|
nsACString& _retval) const;
|
2014-09-17 16:36:01 -07:00
|
|
|
|
2014-09-26 16:21:57 -07:00
|
|
|
nsresult
|
|
|
|
BindToStatement(mozIStorageStatement* aStatement) const;
|
2014-09-17 16:36:01 -07:00
|
|
|
|
2014-09-26 16:21:57 -07:00
|
|
|
void
|
|
|
|
DropJSObjects();
|
2012-11-27 17:37:57 -08:00
|
|
|
|
2013-09-28 04:25:46 -07:00
|
|
|
// WebIDL
|
2015-01-08 13:56:42 -08: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 07:13:32 -07:00
|
|
|
WrapObject(JSContext* aCx, JS::Handle<JSObject*> aGivenProto, JS::MutableHandle<JSObject*> aReflector);
|
2013-09-28 04:25:46 -07:00
|
|
|
|
|
|
|
nsISupports*
|
|
|
|
GetParentObject() const
|
|
|
|
{
|
|
|
|
return mGlobal;
|
|
|
|
}
|
|
|
|
|
2014-06-11 13:26:52 -07:00
|
|
|
void
|
|
|
|
GetLower(JSContext* aCx, JS::MutableHandle<JS::Value> aResult,
|
|
|
|
ErrorResult& aRv);
|
2013-09-28 04:25:46 -07:00
|
|
|
|
2014-06-11 13:26:52 -07:00
|
|
|
void
|
|
|
|
GetUpper(JSContext* aCx, JS::MutableHandle<JS::Value> aResult,
|
|
|
|
ErrorResult& aRv);
|
2013-09-28 04:25:46 -07:00
|
|
|
|
|
|
|
bool
|
|
|
|
LowerOpen() const
|
|
|
|
{
|
|
|
|
return mLowerOpen;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
UpperOpen() const
|
|
|
|
{
|
|
|
|
return mUpperOpen;
|
|
|
|
}
|
|
|
|
|
2012-06-01 10:21:12 -07:00
|
|
|
private:
|
2013-09-28 04:25:46 -07:00
|
|
|
IDBKeyRange(nsISupports* aGlobal,
|
|
|
|
bool aLowerOpen,
|
|
|
|
bool aUpperOpen,
|
2014-09-26 16:21:57 -07:00
|
|
|
bool aIsOnly);
|
2013-09-28 04:25:46 -07:00
|
|
|
|
2012-03-28 07:40:52 -07:00
|
|
|
~IDBKeyRange();
|
2010-06-23 12:46:08 -07:00
|
|
|
};
|
|
|
|
|
2014-09-26 16:21:57 -07:00
|
|
|
} // namespace indexedDB
|
|
|
|
} // namespace dom
|
|
|
|
} // namespace mozilla
|
2010-06-23 12:46:08 -07:00
|
|
|
|
|
|
|
#endif // mozilla_dom_indexeddb_idbkeyrange_h__
|