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-IDBIndexParameters
|
|
|
|
*/
|
|
|
|
|
|
|
|
dictionary IDBIndexParameters {
|
|
|
|
boolean unique = false;
|
|
|
|
boolean multiEntry = false;
|
2015-09-04 22:12:29 +03:00
|
|
|
// <null>: Not locale-aware, uses normal JS sorting.
|
|
|
|
// <string>: Always sorted based on the rules of the specified
|
|
|
|
// locale (e.g. "en-US", etc.).
|
|
|
|
// "auto": Sorted by the platform default, may change based on
|
|
|
|
// user agent options.
|
|
|
|
DOMString? locale = null;
|
2013-07-31 19:48:36 +04:00
|
|
|
};
|
|
|
|
|
2014-12-17 09:26:15 +03:00
|
|
|
[Exposed=(Window,Worker)]
|
2013-07-31 19:48:40 +04:00
|
|
|
interface IDBIndex {
|
|
|
|
readonly attribute DOMString name;
|
|
|
|
readonly attribute IDBObjectStore objectStore;
|
|
|
|
|
|
|
|
[Throws]
|
|
|
|
readonly attribute any keyPath;
|
|
|
|
|
|
|
|
readonly attribute boolean multiEntry;
|
|
|
|
readonly attribute boolean unique;
|
|
|
|
|
2015-09-04 22:12:29 +03:00
|
|
|
// <null>: Not locale-aware, uses normal JS sorting.
|
|
|
|
// <string>: Sorted based on the rules of the specified locale.
|
|
|
|
// Note: never returns "auto", only the current locale.
|
|
|
|
[Func="mozilla::dom::indexedDB::IndexedDatabaseManager::ExperimentalFeaturesEnabled"]
|
|
|
|
readonly attribute DOMString? locale;
|
|
|
|
|
|
|
|
[Func="mozilla::dom::indexedDB::IndexedDatabaseManager::ExperimentalFeaturesEnabled"]
|
|
|
|
readonly attribute boolean isAutoLocale;
|
|
|
|
|
2013-07-31 19:48:40 +04:00
|
|
|
[Throws]
|
2014-04-04 07:32:11 +04:00
|
|
|
IDBRequest openCursor (optional any range, optional IDBCursorDirection direction = "next");
|
2013-07-31 19:48:40 +04:00
|
|
|
|
|
|
|
[Throws]
|
2014-04-04 07:32:11 +04:00
|
|
|
IDBRequest openKeyCursor (optional any range, optional IDBCursorDirection direction = "next");
|
2013-07-31 19:48:40 +04:00
|
|
|
|
|
|
|
[Throws]
|
|
|
|
IDBRequest get (any key);
|
|
|
|
|
|
|
|
[Throws]
|
|
|
|
IDBRequest getKey (any key);
|
|
|
|
|
|
|
|
[Throws]
|
2014-04-04 07:32:11 +04:00
|
|
|
IDBRequest count (optional any key);
|
2013-07-31 19:48:40 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
partial interface IDBIndex {
|
|
|
|
[Throws]
|
2015-10-26 18:54:16 +03:00
|
|
|
IDBRequest mozGetAll (optional any key, [EnforceRange] optional unsigned long limit);
|
2013-07-31 19:48:40 +04:00
|
|
|
|
|
|
|
[Throws]
|
2015-10-26 18:54:16 +03:00
|
|
|
IDBRequest mozGetAllKeys (optional any key, [EnforceRange] optional unsigned long limit);
|
2014-09-27 03:21:57 +04:00
|
|
|
|
2015-10-26 18:54:16 +03:00
|
|
|
[Throws]
|
|
|
|
IDBRequest getAll (optional any key, [EnforceRange] optional unsigned long limit);
|
2014-09-27 03:21:57 +04:00
|
|
|
|
2015-10-26 18:54:16 +03:00
|
|
|
[Throws]
|
|
|
|
IDBRequest getAllKeys (optional any key, [EnforceRange] optional unsigned long limit);
|
2013-07-31 19:48:40 +04:00
|
|
|
};
|