OSDN Git Service

Merge WebKit at r78450: Initial merge by git.
[android-x86/external-webkit.git] / Source / WebKit / chromium / src / IDBDatabaseProxy.cpp
1 /*
2  * Copyright (C) 2010 Google Inc. All rights reserved.
3  *
4  * Redistribution and use in source and binary forms, with or without
5  * modification, are permitted provided that the following conditions
6  * are met:
7  *
8  * 1.  Redistributions of source code must retain the above copyright
9  *     notice, this list of conditions and the following disclaimer.
10  * 2.  Redistributions in binary form must reproduce the above copyright
11  *     notice, this list of conditions and the following disclaimer in the
12  *     documentation and/or other materials provided with the distribution.
13  *
14  * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY
15  * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
16  * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
17  * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY
18  * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
19  * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
20  * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
21  * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
22  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
23  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
24  */
25
26 #include "config.h"
27 #include "IDBDatabaseProxy.h"
28
29 #include "DOMStringList.h"
30 #include "IDBCallbacks.h"
31 #include "IDBObjectStoreProxy.h"
32 #include "IDBTransactionBackendProxy.h"
33 #include "WebDOMStringList.h"
34 #include "WebFrameImpl.h"
35 #include "WebIDBCallbacksImpl.h"
36 #include "WebIDBDatabase.h"
37 #include "WebIDBDatabaseError.h"
38 #include "WebIDBObjectStore.h"
39 #include "WebIDBTransaction.h"
40
41 #if ENABLE(INDEXED_DATABASE)
42
43 namespace WebCore {
44
45 PassRefPtr<IDBDatabaseBackendInterface> IDBDatabaseProxy::create(PassOwnPtr<WebKit::WebIDBDatabase> database)
46 {
47     return adoptRef(new IDBDatabaseProxy(database));
48 }
49
50 IDBDatabaseProxy::IDBDatabaseProxy(PassOwnPtr<WebKit::WebIDBDatabase> database)
51     : m_webIDBDatabase(database)
52 {
53 }
54
55 IDBDatabaseProxy::~IDBDatabaseProxy()
56 {
57 }
58
59 String IDBDatabaseProxy::name() const
60 {
61     return m_webIDBDatabase->name();
62 }
63
64 String IDBDatabaseProxy::version() const
65 {
66     return m_webIDBDatabase->version();
67 }
68
69 PassRefPtr<DOMStringList> IDBDatabaseProxy::objectStoreNames() const
70 {
71     return m_webIDBDatabase->objectStoreNames();
72 }
73
74 PassRefPtr<IDBObjectStoreBackendInterface> IDBDatabaseProxy::createObjectStore(const String& name, const String& keyPath, bool autoIncrement, IDBTransactionBackendInterface* transaction, ExceptionCode& ec)
75 {
76     // The transaction pointer is guaranteed to be a pointer to a proxy object as, in the renderer,
77     // all implementations of IDB interfaces are proxy objects.
78     IDBTransactionBackendProxy* transactionProxy = static_cast<IDBTransactionBackendProxy*>(transaction);
79     WebKit::WebIDBObjectStore* objectStore = m_webIDBDatabase->createObjectStore(name, keyPath, autoIncrement, *transactionProxy->getWebIDBTransaction(), ec);
80     if (!objectStore)
81         return 0;
82     return IDBObjectStoreProxy::create(objectStore);
83 }
84
85 void IDBDatabaseProxy::deleteObjectStore(const String& name, IDBTransactionBackendInterface* transaction, ExceptionCode& ec)
86 {
87     // The transaction pointer is guaranteed to be a pointer to a proxy object as, in the renderer,
88     // all implementations of IDB interfaces are proxy objects.
89     IDBTransactionBackendProxy* transactionProxy = static_cast<IDBTransactionBackendProxy*>(transaction);
90     m_webIDBDatabase->deleteObjectStore(name, *transactionProxy->getWebIDBTransaction(), ec);
91 }
92
93 void IDBDatabaseProxy::setVersion(const String& version, PassRefPtr<IDBCallbacks> callbacks, ExceptionCode& ec)
94 {
95     m_webIDBDatabase->setVersion(version, new WebIDBCallbacksImpl(callbacks), ec);
96 }
97
98 PassRefPtr<IDBTransactionBackendInterface> IDBDatabaseProxy::transaction(DOMStringList* storeNames, unsigned short mode, ExceptionCode& ec)
99 {
100     WebKit::WebDOMStringList names(storeNames);
101     WebKit::WebIDBTransaction* transaction = m_webIDBDatabase->transaction(names, mode, ec);
102     if (!transaction) {
103         ASSERT(ec);
104         return 0;
105     }
106     return IDBTransactionBackendProxy::create(transaction);
107 }
108
109 void IDBDatabaseProxy::close()
110 {
111     m_webIDBDatabase->close();
112 }
113
114 } // namespace WebCore
115
116 #endif // ENABLE(INDEXED_DATABASE)