2 * Copyright (C) 2009 Google Inc. All rights reserved.
4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are
8 * * Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer.
10 * * Redistributions in binary form must reproduce the above
11 * copyright notice, this list of conditions and the following disclaimer
12 * in the documentation and/or other materials provided with the
14 * * Neither the name of Google Inc. nor the names of its
15 * contributors may be used to endorse or promote products derived from
16 * this software without specific prior written permission.
18 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
19 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
20 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
21 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
22 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
23 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
24 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
25 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
26 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
27 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
32 #include "WebDatabase.h"
34 #include "DatabaseBackendBase.h"
35 #include "DatabaseManager.h"
36 #include "QuotaTracker.h"
37 #include "SecurityOrigin.h"
38 #include "WebDatabaseObserver.h"
39 #include <public/WebString.h>
40 #include <wtf/PassRefPtr.h>
41 #include <wtf/RefPtr.h>
43 #if !ENABLE(SQL_DATABASE)
45 class DatabaseBackendBase {
47 String stringIdentifier() const { return String(); }
48 String displayName() const { return String(); }
49 unsigned long long estimatedSize() const { return 0; }
50 SecurityOrigin* securityOrigin() const { return 0; }
51 bool isSyncDatabase() const { return false; }
54 #endif // !ENABLE(SQL_DATABASE)
56 using namespace WebCore;
60 static WebDatabaseObserver* databaseObserver = 0;
62 WebString WebDatabase::name() const
65 return m_database->stringIdentifier();
68 WebString WebDatabase::displayName() const
71 return m_database->displayName();
74 unsigned long WebDatabase::estimatedSize() const
77 return m_database->estimatedSize();
80 WebSecurityOrigin WebDatabase::securityOrigin() const
83 return WebSecurityOrigin(m_database->securityOrigin());
86 bool WebDatabase::isSyncDatabase() const
89 return m_database->isSyncDatabase();
92 void WebDatabase::setObserver(WebDatabaseObserver* observer)
94 databaseObserver = observer;
97 WebDatabaseObserver* WebDatabase::observer()
99 return databaseObserver;
102 void WebDatabase::updateDatabaseSize(const WebString& originIdentifier, const WebString& name, long long size)
104 #if ENABLE(SQL_DATABASE)
105 QuotaTracker::instance().updateDatabaseSize(originIdentifier, name, size);
109 void WebDatabase::updateSpaceAvailable(const WebString& originIdentifier, long long spaceAvailable)
111 #if ENABLE(SQL_DATABASE)
112 QuotaTracker::instance().updateSpaceAvailableToOrigin(originIdentifier, spaceAvailable);
116 void WebDatabase::resetSpaceAvailable(const WebString& originIdentifier)
118 #if ENABLE(SQL_DATABASE)
119 QuotaTracker::instance().resetSpaceAvailableToOrigin(originIdentifier);
123 void WebDatabase::closeDatabaseImmediately(const WebString& originIdentifier, const WebString& databaseName)
125 #if ENABLE(SQL_DATABASE)
126 DatabaseManager::manager().closeDatabasesImmediately(originIdentifier, databaseName);
130 WebDatabase::WebDatabase(const DatabaseBackendBase* database)
131 : m_database(database)
135 } // namespace WebKit