Title: [188045] trunk/Source/WebCore
Revision
188045
Author
ander...@apple.com
Date
2015-08-06 10:55:53 -0700 (Thu, 06 Aug 2015)

Log Message

Move the last remnants of DatabaseBackendBase to Database
https://bugs.webkit.org/show_bug.cgi?id=147730

Reviewed by Tim Horton.

* Modules/webdatabase/Database.cpp:
(WebCore::Database::Database):
(WebCore::Database::performOpenAndVerify):
* Modules/webdatabase/Database.h:
* Modules/webdatabase/DatabaseBackendBase.cpp:
(WebCore::DatabaseBackendBase::DatabaseBackendBase):
* Modules/webdatabase/DatabaseBackendBase.h:
(WebCore::DatabaseBackendBase::databaseContext): Deleted.
(WebCore::DatabaseBackendBase::setFrontend): Deleted.

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (188044 => 188045)


--- trunk/Source/WebCore/ChangeLog	2015-08-06 17:44:45 UTC (rev 188044)
+++ trunk/Source/WebCore/ChangeLog	2015-08-06 17:55:53 UTC (rev 188045)
@@ -1,3 +1,20 @@
+2015-08-06  Anders Carlsson  <ander...@apple.com>
+
+        Move the last remnants of DatabaseBackendBase to Database
+        https://bugs.webkit.org/show_bug.cgi?id=147730
+
+        Reviewed by Tim Horton.
+
+        * Modules/webdatabase/Database.cpp:
+        (WebCore::Database::Database):
+        (WebCore::Database::performOpenAndVerify):
+        * Modules/webdatabase/Database.h:
+        * Modules/webdatabase/DatabaseBackendBase.cpp:
+        (WebCore::DatabaseBackendBase::DatabaseBackendBase):
+        * Modules/webdatabase/DatabaseBackendBase.h:
+        (WebCore::DatabaseBackendBase::databaseContext): Deleted.
+        (WebCore::DatabaseBackendBase::setFrontend): Deleted.
+
 2015-08-06  Alex Christensen  <achristen...@webkit.org>
 
         Fix build without ENABLE(VIDEO) after r188030.

Modified: trunk/Source/WebCore/Modules/webdatabase/Database.cpp (188044 => 188045)


--- trunk/Source/WebCore/Modules/webdatabase/Database.cpp	2015-08-06 17:44:45 UTC (rev 188044)
+++ trunk/Source/WebCore/Modules/webdatabase/Database.cpp	2015-08-06 17:55:53 UTC (rev 188045)
@@ -60,6 +60,35 @@
 
 namespace WebCore {
 
+// Registering "opened" databases with the DatabaseTracker
+// =======================================================
+// The DatabaseTracker maintains a list of databases that have been
+// "opened" so that the client can call interrupt or delete on every database
+// associated with a DatabaseContext.
+//
+// We will only call DatabaseTracker::addOpenDatabase() to add the database
+// to the tracker as opened when we've succeeded in opening the database,
+// and will set m_opened to true. Similarly, we only call
+// DatabaseTracker::removeOpenDatabase() to remove the database from the
+// tracker when we set m_opened to false in closeDatabase(). This sets up
+// a simple symmetry between open and close operations, and a direct
+// correlation to adding and removing databases from the tracker's list,
+// thus ensuring that we have a correct list for the interrupt and
+// delete operations to work on.
+//
+// The only databases instances not tracked by the tracker's open database
+// list are the ones that have not been added yet, or the ones that we
+// attempted an open on but failed to. Such instances only exist in the
+// DatabaseServer's factory methods for creating database backends.
+//
+// The factory methods will either call openAndVerifyVersion() or
+// performOpenAndVerify(). These methods will add the newly instantiated
+// database backend if they succeed in opening the requested database.
+// In the case of failure to open the database, the factory methods will
+// simply discard the newly instantiated database backend when they return.
+// The ref counting mechanims will automatically destruct the un-added
+// (and un-returned) databases instances.
+
 static const char versionKey[] = "WebKitDatabaseVersionKey";
 static const char unqualifiedInfoTableName[] = "__WebKitDatabaseInfoTable__";
 
@@ -184,12 +213,17 @@
 }
 
 Database::Database(PassRefPtr<DatabaseContext> databaseContext, const String& name, const String& expectedVersion, const String& displayName, unsigned long estimatedSize)
-    : DatabaseBackendBase(databaseContext.get(), name, expectedVersion, displayName, estimatedSize)
+    : m_scriptExecutionContext(databaseContext->scriptExecutionContext())
+    , m_databaseContext(databaseContext)
+    , m_deleted(false)
+    , m_name(name.isolatedCopy())
+    , m_expectedVersion(expectedVersion.isolatedCopy())
+    , m_displayName(displayName.isolatedCopy())
+    , m_estimatedSize(estimatedSize)
+    , m_opened(false)
+    , m_new(false)
     , m_transactionInProgress(false)
     , m_isTransactionQueueEnabled(true)
-    , m_scriptExecutionContext(databaseContext->scriptExecutionContext())
-    , m_databaseContext(databaseContext)
-    , m_deleted(false)
 {
     m_contextThreadSecurityOrigin = m_databaseContext->securityOrigin()->isolatedCopy();
 
@@ -211,7 +245,6 @@
     m_filename = DatabaseManager::singleton().fullPathForDatabase(securityOrigin(), m_name);
 
     m_databaseThreadSecurityOrigin = m_contextThreadSecurityOrigin->isolatedCopy();
-    setFrontend(this);
 
     ASSERT(m_databaseContext->databaseThread());
 }
@@ -365,7 +398,7 @@
                     m_sqliteDatabase.close();
                     return false;
                 }
-            } else if (!m_frontend->getVersionFromDatabase(currentVersion, false)) {
+            } else if (!getVersionFromDatabase(currentVersion, false)) {
                 errorMessage = formatErrorMessage("unable to open database, failed to read current version", m_sqliteDatabase.lastError(), m_sqliteDatabase.lastErrorMsg());
                 transaction.rollback();
                 m_sqliteDatabase.close();
@@ -376,7 +409,7 @@
                 LOG(StorageAPI, "Retrieved current version %s from database %s", currentVersion.ascii().data(), databaseDebugName().ascii().data());
             } else if (!m_new || shouldSetVersionInNewDatabase) {
                 LOG(StorageAPI, "Setting version %s in database %s that was just created", m_expectedVersion.ascii().data(), databaseDebugName().ascii().data());
-                if (!m_frontend->setVersionInDatabase(m_expectedVersion, false)) {
+                if (!setVersionInDatabase(m_expectedVersion, false)) {
                     errorMessage = formatErrorMessage("unable to open database, failed to write current version", m_sqliteDatabase.lastError(), m_sqliteDatabase.lastErrorMsg());
                     transaction.rollback();
                     m_sqliteDatabase.close();

Modified: trunk/Source/WebCore/Modules/webdatabase/Database.h (188044 => 188045)


--- trunk/Source/WebCore/Modules/webdatabase/Database.h	2015-08-06 17:44:45 UTC (rev 188044)
+++ trunk/Source/WebCore/Modules/webdatabase/Database.h	2015-08-06 17:55:53 UTC (rev 188045)
@@ -138,18 +138,33 @@
     String databaseDebugName() const;
 #endif
 
-    Deque<RefPtr<SQLTransactionBackend>> m_transactionQueue;
-    Mutex m_transactionInProgressMutex;
-    bool m_transactionInProgress;
-    bool m_isTransactionQueueEnabled;
-
     RefPtr<ScriptExecutionContext> m_scriptExecutionContext;
+    RefPtr<SecurityOrigin> m_contextThreadSecurityOrigin;
     RefPtr<SecurityOrigin> m_databaseThreadSecurityOrigin;
     RefPtr<DatabaseContext> m_databaseContext;
 
     bool m_deleted;
     bool m_hasPendingCreationEvent { false };
 
+    String m_name;
+    String m_expectedVersion;
+    String m_displayName;
+    unsigned long m_estimatedSize;
+    String m_filename;
+
+    DatabaseGuid m_guid;
+    bool m_opened;
+    bool m_new;
+
+    SQLiteDatabase m_sqliteDatabase;
+
+    RefPtr<DatabaseAuthorizer> m_databaseAuthorizer;
+
+    Deque<RefPtr<SQLTransactionBackend>> m_transactionQueue;
+    Mutex m_transactionInProgressMutex;
+    bool m_transactionInProgress;
+    bool m_isTransactionQueueEnabled;
+
     friend class ChangeVersionWrapper;
     friend class DatabaseBackendBase;
     friend class DatabaseManager;

Modified: trunk/Source/WebCore/Modules/webdatabase/DatabaseBackendBase.cpp (188044 => 188045)


--- trunk/Source/WebCore/Modules/webdatabase/DatabaseBackendBase.cpp	2015-08-06 17:44:45 UTC (rev 188044)
+++ trunk/Source/WebCore/Modules/webdatabase/DatabaseBackendBase.cpp	2015-08-06 17:55:53 UTC (rev 188045)
@@ -49,45 +49,9 @@
 #include <wtf/text/CString.h>
 #include <wtf/text/StringHash.h>
 
-// Registering "opened" databases with the DatabaseTracker
-// =======================================================
-// The DatabaseTracker maintains a list of databases that have been
-// "opened" so that the client can call interrupt or delete on every database
-// associated with a DatabaseContext.
-//
-// We will only call DatabaseTracker::addOpenDatabase() to add the database
-// to the tracker as opened when we've succeeded in opening the database,
-// and will set m_opened to true. Similarly, we only call
-// DatabaseTracker::removeOpenDatabase() to remove the database from the
-// tracker when we set m_opened to false in closeDatabase(). This sets up
-// a simple symmetry between open and close operations, and a direct
-// correlation to adding and removing databases from the tracker's list,
-// thus ensuring that we have a correct list for the interrupt and
-// delete operations to work on.
-//
-// The only databases instances not tracked by the tracker's open database
-// list are the ones that have not been added yet, or the ones that we
-// attempted an open on but failed to. Such instances only exist in the
-// DatabaseServer's factory methods for creating database backends.
-//
-// The factory methods will either call openAndVerifyVersion() or
-// performOpenAndVerify(). These methods will add the newly instantiated
-// database backend if they succeed in opening the requested database.
-// In the case of failure to open the database, the factory methods will
-// simply discard the newly instantiated database backend when they return.
-// The ref counting mechanims will automatically destruct the un-added
-// (and un-returned) databases instances.
-
 namespace WebCore {
 
-DatabaseBackendBase::DatabaseBackendBase(PassRefPtr<DatabaseContext> databaseContext, const String& name, const String& expectedVersion, const String& displayName, unsigned long estimatedSize)
-    : m_databaseContext(databaseContext)
-    , m_name(name.isolatedCopy())
-    , m_expectedVersion(expectedVersion.isolatedCopy())
-    , m_displayName(displayName.isolatedCopy())
-    , m_estimatedSize(estimatedSize)
-    , m_opened(false)
-    , m_new(false)
+DatabaseBackendBase::DatabaseBackendBase()
 {
 }
 

Modified: trunk/Source/WebCore/Modules/webdatabase/DatabaseBackendBase.h (188044 => 188045)


--- trunk/Source/WebCore/Modules/webdatabase/DatabaseBackendBase.h	2015-08-06 17:44:45 UTC (rev 188044)
+++ trunk/Source/WebCore/Modules/webdatabase/DatabaseBackendBase.h	2015-08-06 17:55:53 UTC (rev 188045)
@@ -51,9 +51,6 @@
     virtual ~DatabaseBackendBase();
 
 
-    DatabaseContext* databaseContext() const { return m_databaseContext.get(); }
-    void setFrontend(Database* frontend) { m_frontend = frontend; }
-
 protected:
     friend class ChangeVersionWrapper;
     friend class SQLStatementBackend;
@@ -61,27 +58,8 @@
     friend class SQLTransactionBackend;
     friend class SQLTransactionBackendSync;
 
-    DatabaseBackendBase(PassRefPtr<DatabaseContext>, const String& name, const String& expectedVersion, const String& displayName, unsigned long estimatedSize);
+    DatabaseBackendBase();
 
-    RefPtr<SecurityOrigin> m_contextThreadSecurityOrigin;
-    RefPtr<DatabaseContext> m_databaseContext; // Associated with m_scriptExecutionContext.
-
-    String m_name;
-    String m_expectedVersion;
-    String m_displayName;
-    unsigned long m_estimatedSize;
-    String m_filename;
-
-    Database* m_frontend;
-
-    DatabaseGuid m_guid;
-    bool m_opened;
-    bool m_new;
-
-    SQLiteDatabase m_sqliteDatabase;
-
-    RefPtr<DatabaseAuthorizer> m_databaseAuthorizer;
-
     friend class DatabaseServer;
 };
 
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to