| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef COMPONENTS_WEBDATA_COMMON_WEB_DATA_SERVICE_BACKEND_H_ | 5 #ifndef COMPONENTS_WEBDATA_COMMON_WEB_DATABASE_BACKEND_H_ |
| 6 #define COMPONENTS_WEBDATA_COMMON_WEB_DATA_SERVICE_BACKEND_H_ | 6 #define COMPONENTS_WEBDATA_COMMON_WEB_DATABASE_BACKEND_H_ |
| 7 | 7 |
| 8 #include "base/basictypes.h" | 8 #include "base/basictypes.h" |
| 9 #include "base/callback_forward.h" | 9 #include "base/callback_forward.h" |
| 10 #include "base/compiler_specific.h" | 10 #include "base/compiler_specific.h" |
| 11 #include "base/files/file_path.h" | 11 #include "base/files/file_path.h" |
| 12 #include "base/memory/ref_counted.h" | 12 #include "base/memory/ref_counted.h" |
| 13 #include "base/memory/ref_counted_delete_on_message_loop.h" | 13 #include "base/memory/ref_counted_delete_on_message_loop.h" |
| 14 #include "base/memory/scoped_ptr.h" | 14 #include "base/memory/scoped_ptr.h" |
| 15 #include "base/memory/scoped_vector.h" | 15 #include "base/memory/scoped_vector.h" |
| 16 #include "components/webdata/common/web_database_service.h" | 16 #include "components/webdata/common/web_database_service.h" |
| 17 #include "components/webdata/common/webdata_export.h" | 17 #include "components/webdata/common/webdata_export.h" |
| 18 | 18 |
| 19 class WebDatabase; | 19 class WebDatabase; |
| 20 class WebDatabaseTable; | 20 class WebDatabaseTable; |
| 21 class WebDataRequest; | 21 class WebDataRequest; |
| 22 class WebDataRequestManager; | 22 class WebDataRequestManager; |
| 23 | 23 |
| 24 namespace tracked_objects { | 24 namespace tracked_objects { |
| 25 class Location; | 25 class Location; |
| 26 } | 26 } |
| 27 | 27 |
| 28 // WebDataServiceBackend handles all database tasks posted by | 28 // WebDatabaseBackend handles all database tasks posted by |
| 29 // WebDatabaseService. It is refcounted to allow asynchronous destruction on the | 29 // WebDatabaseService. It is refcounted to allow asynchronous destruction on the |
| 30 // DB thread. | 30 // DB thread. |
| 31 | 31 |
| 32 // TODO(caitkp): Rename this class to WebDatabaseBackend. | 32 class WEBDATA_EXPORT WebDatabaseBackend |
| 33 | 33 : public base::RefCountedDeleteOnMessageLoop<WebDatabaseBackend> { |
| 34 class WEBDATA_EXPORT WebDataServiceBackend | |
| 35 : public base::RefCountedDeleteOnMessageLoop<WebDataServiceBackend> { | |
| 36 public: | 34 public: |
| 37 class Delegate { | 35 class Delegate { |
| 38 public: | 36 public: |
| 39 virtual ~Delegate() {} | 37 virtual ~Delegate() {} |
| 40 | 38 |
| 41 // Invoked when the backend has finished loading the db. | 39 // Invoked when the backend has finished loading the db. |
| 42 virtual void DBLoaded(sql::InitStatus status) = 0; | 40 virtual void DBLoaded(sql::InitStatus status) = 0; |
| 43 }; | 41 }; |
| 44 | 42 |
| 45 WebDataServiceBackend(const base::FilePath& path, | 43 WebDatabaseBackend(const base::FilePath& path, |
| 46 Delegate* delegate, | 44 Delegate* delegate, |
| 47 const scoped_refptr<base::MessageLoopProxy>& db_thread); | 45 const scoped_refptr<base::MessageLoopProxy>& db_thread); |
| 48 | 46 |
| 49 // Must call only before InitDatabaseWithCallback. | 47 // Must call only before InitDatabaseWithCallback. |
| 50 void AddTable(scoped_ptr<WebDatabaseTable> table); | 48 void AddTable(scoped_ptr<WebDatabaseTable> table); |
| 51 | 49 |
| 52 // Initializes the database and notifies caller via callback when complete. | 50 // Initializes the database and notifies caller via callback when complete. |
| 53 // Callback is called synchronously. | 51 // Callback is called synchronously. |
| 54 void InitDatabase(); | 52 void InitDatabase(); |
| 55 | 53 |
| 56 // Opens the database file from the profile path if an init has not yet been | 54 // Opens the database file from the profile path if an init has not yet been |
| 57 // attempted. Separated from the constructor to ease construction/destruction | 55 // attempted. Separated from the constructor to ease construction/destruction |
| 58 // of this object on one thread but database access on the DB thread. Returns | 56 // of this object on one thread but database access on the DB thread. Returns |
| 59 // the status of the database. | 57 // the status of the database. |
| 60 sql::InitStatus LoadDatabaseIfNecessary(); | 58 sql::InitStatus LoadDatabaseIfNecessary(); |
| 61 | 59 |
| 62 // Shuts down the database. | 60 // Shuts down the database. |
| 63 void ShutdownDatabase(); | 61 void ShutdownDatabase(); |
| 64 | 62 |
| 65 // Task wrappers to update requests and and notify |request_manager_|. These | 63 // Task wrappers to update requests and and notify |request_manager_|. These |
| 66 // are used in cases where the request is being made from the UI thread and an | 64 // are used in cases where the request is being made from the UI thread and an |
| 67 // asyncronous callback is required to notify the client of |request|'s | 65 // asyncronous callback is required to notify the client of |request|'s |
| 68 // completion. | 66 // completion. |
| 69 void DBWriteTaskWrapper( | 67 void DBWriteTaskWrapper(const WebDatabaseService::WriteTask& task, |
| 70 const WebDatabaseService::WriteTask& task, | 68 scoped_ptr<WebDataRequest> request); |
| 71 scoped_ptr<WebDataRequest> request); | 69 void DBReadTaskWrapper(const WebDatabaseService::ReadTask& task, |
| 72 void DBReadTaskWrapper( | 70 scoped_ptr<WebDataRequest> request); |
| 73 const WebDatabaseService::ReadTask& task, | |
| 74 scoped_ptr<WebDataRequest> request); | |
| 75 | 71 |
| 76 // Task runners to run database tasks. | 72 // Task runners to run database tasks. |
| 77 void ExecuteWriteTask(const WebDatabaseService::WriteTask& task); | 73 void ExecuteWriteTask(const WebDatabaseService::WriteTask& task); |
| 78 scoped_ptr<WDTypedResult> ExecuteReadTask( | 74 scoped_ptr<WDTypedResult> ExecuteReadTask( |
| 79 const WebDatabaseService::ReadTask& task); | 75 const WebDatabaseService::ReadTask& task); |
| 80 | 76 |
| 81 const scoped_refptr<WebDataRequestManager>& request_manager() { | 77 const scoped_refptr<WebDataRequestManager>& request_manager() { |
| 82 return request_manager_; | 78 return request_manager_; |
| 83 } | 79 } |
| 84 | 80 |
| 85 WebDatabase* database() { return db_.get(); } | 81 WebDatabase* database() { return db_.get(); } |
| 86 | 82 |
| 87 protected: | 83 protected: |
| 88 friend class base::RefCountedDeleteOnMessageLoop<WebDataServiceBackend>; | 84 friend class base::RefCountedDeleteOnMessageLoop<WebDatabaseBackend>; |
| 89 friend class base::DeleteHelper<WebDataServiceBackend>; | 85 friend class base::DeleteHelper<WebDatabaseBackend>; |
| 90 | 86 |
| 91 virtual ~WebDataServiceBackend(); | 87 virtual ~WebDatabaseBackend(); |
| 92 | 88 |
| 93 private: | 89 private: |
| 94 // Commit the current transaction. | 90 // Commit the current transaction. |
| 95 void Commit(); | 91 void Commit(); |
| 96 | 92 |
| 97 // Path to database file. | 93 // Path to database file. |
| 98 base::FilePath db_path_; | 94 base::FilePath db_path_; |
| 99 | 95 |
| 100 // The tables that participate in managing the database. These are | 96 // The tables that participate in managing the database. These are |
| 101 // owned here but other than that this class does nothing with | 97 // owned here but other than that this class does nothing with |
| (...skipping 14 matching lines...) Expand all Loading... |
| 116 // before the db is ready. | 112 // before the db is ready. |
| 117 sql::InitStatus init_status_; | 113 sql::InitStatus init_status_; |
| 118 | 114 |
| 119 // True if an attempt has been made to load the database (even if the attempt | 115 // True if an attempt has been made to load the database (even if the attempt |
| 120 // fails), used to avoid continually trying to reinit if the db init fails. | 116 // fails), used to avoid continually trying to reinit if the db init fails. |
| 121 bool init_complete_; | 117 bool init_complete_; |
| 122 | 118 |
| 123 // Delegate. See the class definition above for more information. | 119 // Delegate. See the class definition above for more information. |
| 124 scoped_ptr<Delegate> delegate_; | 120 scoped_ptr<Delegate> delegate_; |
| 125 | 121 |
| 126 DISALLOW_COPY_AND_ASSIGN(WebDataServiceBackend); | 122 DISALLOW_COPY_AND_ASSIGN(WebDatabaseBackend); |
| 127 }; | 123 }; |
| 128 | 124 |
| 129 #endif // COMPONENTS_WEBDATA_COMMON_WEB_DATA_SERVICE_BACKEND_H_ | 125 #endif // COMPONENTS_WEBDATA_COMMON_WEB_DATABASE_BACKEND_H_ |
| OLD | NEW |