15c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles)/*
25c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) * Copyright (C) 2010 Google Inc. All rights reserved.
35c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) *
45c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) * Redistribution and use in source and binary forms, with or without
55c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) * modification, are permitted provided that the following conditions
65c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) * are met:
75c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) *
85c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) * 1.  Redistributions of source code must retain the above copyright
95c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) *     notice, this list of conditions and the following disclaimer.
105c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) * 2.  Redistributions in binary form must reproduce the above copyright
115c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) *     notice, this list of conditions and the following disclaimer in the
125c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) *     documentation and/or other materials provided with the distribution.
135c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) *
145c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY
155c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
165c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
175c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY
185c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
195c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
205c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
215c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
225c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
235c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
245c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) */
255c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles)
26d6cdb82654e8f3343a693ca752d5c4cee0324e17Torne (Richard Coles)// https://dvcs.w3.org/hg/IndexedDB/raw-file/default/Overview.html#idl-def-IDBObjectStore
27d6cdb82654e8f3343a693ca752d5c4cee0324e17Torne (Richard Coles)
28197021e6b966cfb06891637935ef33fff06433d1Ben Murdoch// FIXME: de-duplicate this when crbug.com/390758 is fixed.
29197021e6b966cfb06891637935ef33fff06433d1Ben Murdochenum IDBCursorDirection {
30197021e6b966cfb06891637935ef33fff06433d1Ben Murdoch    "next",
31197021e6b966cfb06891637935ef33fff06433d1Ben Murdoch    "nextunique",
32197021e6b966cfb06891637935ef33fff06433d1Ben Murdoch    "prev",
33197021e6b966cfb06891637935ef33fff06433d1Ben Murdoch    "prevunique"
34197021e6b966cfb06891637935ef33fff06433d1Ben Murdoch};
35197021e6b966cfb06891637935ef33fff06433d1Ben Murdoch
365c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles)[
37d6cdb82654e8f3343a693ca752d5c4cee0324e17Torne (Richard Coles)    GarbageCollected,
385c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles)] interface IDBObjectStore {
39197021e6b966cfb06891637935ef33fff06433d1Ben Murdoch    readonly attribute DOMString? name;
40f91f5fa1608c2cdd9af1842fb5dadbe78275be2aBo Liu    [CallWith=ScriptState] readonly attribute any keyPath;
415c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles)    readonly attribute DOMStringList indexNames;
425c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles)    readonly attribute IDBTransaction transaction;
435c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles)    readonly attribute boolean autoIncrement;
445c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles)
45d6cdb82654e8f3343a693ca752d5c4cee0324e17Torne (Richard Coles)    [CallWith=ScriptState, RaisesException] IDBRequest put(any value, [Default=Undefined] optional any key);
46d6cdb82654e8f3343a693ca752d5c4cee0324e17Torne (Richard Coles)    [CallWith=ScriptState, RaisesException] IDBRequest add(any value, [Default=Undefined] optional any key);
47d6cdb82654e8f3343a693ca752d5c4cee0324e17Torne (Richard Coles)    [CallWith=ScriptState, ImplementedAs=deleteFunction, RaisesException] IDBRequest delete(any key);
48d6cdb82654e8f3343a693ca752d5c4cee0324e17Torne (Richard Coles)    [CallWith=ScriptState, RaisesException] IDBRequest get(any key);
49d6cdb82654e8f3343a693ca752d5c4cee0324e17Torne (Richard Coles)    [CallWith=ScriptState, RaisesException] IDBRequest clear();
50197021e6b966cfb06891637935ef33fff06433d1Ben Murdoch    [CallWith=ScriptState, RaisesException] IDBRequest openCursor([Default=Undefined] optional any range, optional DOMString direction = "next");
51197021e6b966cfb06891637935ef33fff06433d1Ben Murdoch    [CallWith=ScriptState, RaisesException, RuntimeEnabled=IndexedDBExperimental] IDBRequest openKeyCursor([Default=Undefined] optional any range, optional IDBCursorDirection direction = "next");
52d6cdb82654e8f3343a693ca752d5c4cee0324e17Torne (Richard Coles)    // FIXME: should be union type http://crbug.com/240176
537242dc3dbeb210b5e876a3c42d1ec1a667fc621aPrimiano Tucci    [CallWith=ScriptState, RaisesException] IDBIndex createIndex(DOMString name, DOMString keyPath, optional IDBIndexParameters options);
547242dc3dbeb210b5e876a3c42d1ec1a667fc621aPrimiano Tucci    [CallWith=ScriptState, RaisesException] IDBIndex createIndex(DOMString name, sequence<DOMString> keyPath, optional IDBIndexParameters options);
5553e740f4a82e17f3ae59772501622dc354e42336Torne (Richard Coles)    [RaisesException] IDBIndex index(DOMString name);
5653e740f4a82e17f3ae59772501622dc354e42336Torne (Richard Coles)    [RaisesException] void deleteIndex(DOMString name);
57d6cdb82654e8f3343a693ca752d5c4cee0324e17Torne (Richard Coles)    [CallWith=ScriptState, RaisesException] IDBRequest count([Default=Undefined] optional any key);
585c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles)};
59