2013-07-31 19:48:36 +04:00
|
|
|
/* -*- Mode: IDL; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* 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/.
|
|
|
|
*
|
|
|
|
* The origin of this IDL file is
|
|
|
|
* https://dvcs.w3.org/hg/IndexedDB/raw-file/tip/Overview.html#idl-def-IDBObjectStore
|
|
|
|
*/
|
|
|
|
|
2013-07-31 19:48:46 +04:00
|
|
|
dictionary IDBObjectStoreParameters {
|
2014-12-11 21:07:44 +03:00
|
|
|
(DOMString or sequence<DOMString>)? keyPath = null;
|
2013-07-31 19:48:46 +04:00
|
|
|
boolean autoIncrement = false;
|
|
|
|
};
|
|
|
|
|
2016-03-30 06:22:14 +03:00
|
|
|
[Exposed=(Window,Worker,System)]
|
2013-07-31 19:48:36 +04:00
|
|
|
interface IDBObjectStore {
|
2016-03-30 06:04:56 +03:00
|
|
|
[SetterThrows]
|
|
|
|
attribute DOMString name;
|
2013-07-31 19:48:36 +04:00
|
|
|
|
|
|
|
[Throws]
|
|
|
|
readonly attribute any keyPath;
|
|
|
|
|
|
|
|
readonly attribute DOMStringList indexNames;
|
|
|
|
readonly attribute IDBTransaction transaction;
|
|
|
|
readonly attribute boolean autoIncrement;
|
|
|
|
|
|
|
|
[Throws]
|
2014-04-04 07:32:11 +04:00
|
|
|
IDBRequest put (any value, optional any key);
|
2013-07-31 19:48:36 +04:00
|
|
|
|
|
|
|
[Throws]
|
2014-04-04 07:32:11 +04:00
|
|
|
IDBRequest add (any value, optional any key);
|
2013-07-31 19:48:36 +04:00
|
|
|
|
|
|
|
[Throws]
|
|
|
|
IDBRequest delete (any key);
|
|
|
|
|
|
|
|
[Throws]
|
|
|
|
IDBRequest get (any key);
|
2016-07-21 11:31:59 +03:00
|
|
|
|
|
|
|
[Throws]
|
|
|
|
IDBRequest getKey (any key);
|
2013-07-31 19:48:36 +04:00
|
|
|
|
|
|
|
[Throws]
|
|
|
|
IDBRequest clear ();
|
|
|
|
|
|
|
|
[Throws]
|
2014-04-04 07:32:11 +04:00
|
|
|
IDBRequest openCursor (optional any range, optional IDBCursorDirection direction = "next");
|
2013-07-31 19:48:36 +04:00
|
|
|
|
|
|
|
[Throws]
|
2016-04-29 05:56:02 +03:00
|
|
|
IDBIndex createIndex (DOMString name, (DOMString or sequence<DOMString>) keyPath, optional IDBIndexParameters optionalParameters);
|
2013-07-31 19:48:36 +04:00
|
|
|
|
|
|
|
[Throws]
|
|
|
|
IDBIndex index (DOMString name);
|
|
|
|
|
|
|
|
[Throws]
|
|
|
|
void deleteIndex (DOMString indexName);
|
|
|
|
|
|
|
|
[Throws]
|
2014-04-04 07:32:11 +04:00
|
|
|
IDBRequest count (optional any key);
|
2013-07-31 19:48:36 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
partial interface IDBObjectStore {
|
|
|
|
// Success fires IDBTransactionEvent, result == array of values for given keys
|
|
|
|
[Throws]
|
2015-10-26 18:54:16 +03:00
|
|
|
IDBRequest mozGetAll (optional any key, [EnforceRange] optional unsigned long limit);
|
2013-09-24 21:14:16 +04:00
|
|
|
|
2015-10-26 18:54:16 +03:00
|
|
|
[Throws]
|
|
|
|
IDBRequest getAll (optional any key, [EnforceRange] optional unsigned long limit);
|
2013-09-24 21:14:16 +04:00
|
|
|
|
2015-10-26 18:54:16 +03:00
|
|
|
[Throws]
|
|
|
|
IDBRequest getAllKeys (optional any key, [EnforceRange] optional unsigned long limit);
|
2013-09-26 03:11:47 +04:00
|
|
|
|
2015-10-26 18:54:16 +03:00
|
|
|
[Throws]
|
2014-04-04 07:32:11 +04:00
|
|
|
IDBRequest openKeyCursor (optional any range, optional IDBCursorDirection direction = "next");
|
2013-07-31 19:48:36 +04:00
|
|
|
};
|