Index: chrome/browser/extensions/extension_settings.cc |
diff --git a/chrome/browser/extensions/extension_settings.cc b/chrome/browser/extensions/extension_settings.cc |
index 0d855b95c9acb3747cc00bc25d3195fa4f2ac936..9349ad064428571f81988ef5af66835b551cb2b0 100644 |
--- a/chrome/browser/extensions/extension_settings.cc |
+++ b/chrome/browser/extensions/extension_settings.cc |
@@ -4,76 +4,95 @@ |
#include "chrome/browser/extensions/extension_settings.h" |
-#include "base/bind.h" |
+#include "base/compiler_specific.h" |
+#include "base/file_util.h" |
#include "base/json/json_reader.h" |
#include "base/json/json_writer.h" |
#include "base/logging.h" |
+#include "base/memory/linked_ptr.h" |
#include "base/memory/scoped_ptr.h" |
-#include "content/browser/browser_thread.h" |
#include "chrome/browser/extensions/extension_settings_leveldb_storage.h" |
#include "chrome/browser/extensions/extension_settings_noop_storage.h" |
#include "chrome/browser/extensions/extension_settings_storage_cache.h" |
+#include "chrome/browser/extensions/extension_settings_sync_util.h" |
+#include "chrome/common/extensions/extension.h" |
+#include "content/browser/browser_thread.h" |
#include "third_party/leveldatabase/src/include/leveldb/iterator.h" |
#include "third_party/leveldatabase/src/include/leveldb/write_batch.h" |
ExtensionSettings::ExtensionSettings(const FilePath& base_path) |
- : base_path_(base_path) {} |
+ : base_path_(base_path), |
+ sync_processor_(NULL) { |
+ DCHECK(BrowserThread::CurrentlyOn(BrowserThread::FILE)); |
+} |
ExtensionSettings::~ExtensionSettings() { |
- std::map<std::string, ExtensionSettingsStorage*>::iterator it; |
- for (it = storage_objs_.begin(); it != storage_objs_.end(); ++it) { |
- BrowserThread::DeleteSoon(BrowserThread::FILE, FROM_HERE, it->second); |
- } |
+ DCHECK(BrowserThread::CurrentlyOn(BrowserThread::FILE)); |
} |
ExtensionSettingsStorage* ExtensionSettings::GetStorage( |
- const std::string& extension_id) { |
+ const std::string& extension_id) const { |
DCHECK(BrowserThread::CurrentlyOn(BrowserThread::FILE)); |
+ DictionaryValue empty; |
+ return GetOrCreateStorageWithSyncData(extension_id, empty); |
+} |
- std::map<std::string, ExtensionSettingsStorage*>::iterator existing = |
- storage_objs_.find(extension_id); |
- if (existing != storage_objs_.end()) { |
- return existing->second; |
- } |
- |
- ExtensionSettingsStorage* new_storage = |
- CreateStorage(extension_id, ExtensionSettingsStorage::LEVELDB, true); |
- if (new_storage == NULL) { |
- // Failed to create a leveldb storage for some reason. Use an in memory |
- // storage area (no-op wrapped in a cache) instead. |
- new_storage = |
- CreateStorage(extension_id, ExtensionSettingsStorage::NOOP, true); |
- DCHECK(new_storage != NULL); |
+SyncableExtensionSettingsStorage* |
+ExtensionSettings::GetOrCreateStorageWithSyncData( |
+ const std::string& extension_id, const DictionaryValue& sync_data) const { |
+ DCHECK(BrowserThread::CurrentlyOn(BrowserThread::FILE)); |
+ SyncableExtensionSettingsStorage* storage = GetOrCreateAndInitStorage( |
+ ExtensionSettingsStorage::LEVELDB, |
+ true, |
+ extension_id, |
+ sync_data); |
+ if (!storage) { |
+ // Fall back to an in-memory storage area (cached NOOP). |
+ // It's ok for these to be synced, it just means that on next starting up |
+ // extensions will see the "old" settings, then overwritten (and notified) |
+ // when the sync changes come through. |
+ storage = GetOrCreateAndInitStorage( |
+ ExtensionSettingsStorage::NOOP, |
+ true, |
+ extension_id, |
+ sync_data); |
+ DCHECK(storage); |
} |
- |
- storage_objs_[extension_id] = new_storage; |
- return new_storage; |
+ return storage; |
} |
ExtensionSettingsStorage* ExtensionSettings::GetStorageForTesting( |
ExtensionSettingsStorage::Type type, |
bool cached, |
- const std::string& extension_id) { |
+ const std::string& extension_id) const { |
DCHECK(BrowserThread::CurrentlyOn(BrowserThread::FILE)); |
+ DictionaryValue empty; |
+ ExtensionSettingsStorage* storage = |
+ GetOrCreateAndInitStorage(type, cached, extension_id, empty); |
+ DCHECK(storage); |
+ return storage; |
+} |
- std::map<std::string, ExtensionSettingsStorage*>::iterator existing = |
- storage_objs_.find(extension_id); |
+SyncableExtensionSettingsStorage* ExtensionSettings::GetOrCreateAndInitStorage( |
+ ExtensionSettingsStorage::Type type, |
+ bool cached, |
+ const std::string& extension_id, |
+ const DictionaryValue& initial_sync_data) const { |
+ DCHECK(BrowserThread::CurrentlyOn(BrowserThread::FILE)); |
+ StorageObjMap::iterator existing = storage_objs_.find(extension_id); |
if (existing != storage_objs_.end()) { |
- return existing->second; |
+ return existing->second.get(); |
} |
- |
- ExtensionSettingsStorage* new_storage = |
- CreateStorage(extension_id, type, cached); |
- DCHECK(new_storage != NULL); |
- storage_objs_[extension_id] = new_storage; |
- return new_storage; |
+ return CreateAndInitStorage(type, cached, extension_id, initial_sync_data); |
} |
-ExtensionSettingsStorage* ExtensionSettings::CreateStorage( |
- const std::string& extension_id, |
+SyncableExtensionSettingsStorage* ExtensionSettings::CreateAndInitStorage( |
ExtensionSettingsStorage::Type type, |
- bool cached) { |
+ bool cached, |
+ const std::string& extension_id, |
+ const DictionaryValue& initial_sync_data) const { |
DCHECK(BrowserThread::CurrentlyOn(BrowserThread::FILE)); |
+ DCHECK_EQ(0u, storage_objs_.count(extension_id)); |
ExtensionSettingsStorage* storage = NULL; |
switch (type) { |
case ExtensionSettingsStorage::NOOP: |
@@ -86,8 +105,178 @@ ExtensionSettingsStorage* ExtensionSettings::CreateStorage( |
default: |
NOTREACHED(); |
} |
- if (storage != NULL && cached) { |
+ if (!storage) { |
+ return NULL; |
+ } |
+ if (cached) { |
storage = new ExtensionSettingsStorageCache(storage); |
} |
- return storage; |
+ |
+ SyncableExtensionSettingsStorage* synced_storage = |
+ new SyncableExtensionSettingsStorage(extension_id, storage); |
+ if (sync_processor_) { |
+ // TODO(kalman): do something if StartSyncing fails. |
+ ignore_result( |
+ synced_storage->StartSyncing(initial_sync_data, sync_processor_)); |
+ } |
+ storage_objs_[extension_id] = |
+ linked_ptr<SyncableExtensionSettingsStorage>(synced_storage); |
+ return synced_storage; |
+} |
+ |
+std::set<std::string> ExtensionSettings::GetKnownExtensionIDs() const { |
+ DCHECK(BrowserThread::CurrentlyOn(BrowserThread::FILE)); |
+ std::set<std::string> result; |
+ |
+ // TODO(kalman): we will need to do something to disambiguate between app |
+ // settings and extension settings, since settings for apps should be synced |
+ // iff app sync is turned on, ditto for extensions. |
+ |
+ // Extension IDs live in-memory and/or on disk. The cache will contain all |
+ // that are in-memory. |
+ for (StorageObjMap::iterator it = storage_objs_.begin(); |
+ it != storage_objs_.end(); ++it) { |
+ result.insert(it->first); |
+ } |
+ |
+ // Leveldb databases are directories inside base_path_. |
+ file_util::FileEnumerator::FindInfo find_info; |
+ file_util::FileEnumerator extension_dirs( |
+ base_path_, false, file_util::FileEnumerator::DIRECTORIES); |
+ while (!extension_dirs.Next().empty()) { |
+ extension_dirs.GetFindInfo(&find_info); |
+ FilePath extension_dir(file_util::FileEnumerator::GetFilename(find_info)); |
+ DCHECK(!extension_dir.IsAbsolute()); |
+ // Extension IDs are created as std::strings so they *should* be ASCII. |
+ std::string maybe_as_ascii(extension_dir.MaybeAsASCII()); |
+ if (!maybe_as_ascii.empty()) { |
+ result.insert(maybe_as_ascii); |
+ } |
+ } |
+ |
+ return result; |
+} |
+ |
+SyncDataList ExtensionSettings::GetAllSyncData( |
+ syncable::ModelType type) const { |
+ DCHECK(BrowserThread::CurrentlyOn(BrowserThread::FILE)); |
+ DCHECK_EQ(type, syncable::EXTENSION_SETTINGS); |
+ |
+ // For all extensions, get all their settings. |
+ // This has the effect of bringing in the entire state of extension settings |
+ // in memory; sad. |
+ SyncDataList all_sync_data; |
+ std::set<std::string> known_extension_ids(GetKnownExtensionIDs()); |
+ |
+ for (std::set<std::string>::const_iterator it = known_extension_ids.begin(); |
+ it != known_extension_ids.end(); ++it) { |
+ ExtensionSettingsStorage::Result maybe_settings = GetStorage(*it)->Get(); |
+ if (maybe_settings.HasError()) { |
+ LOG(WARNING) << "Failed to get settings for " << *it << ": " << |
+ maybe_settings.GetError(); |
+ continue; |
+ } |
+ |
+ DictionaryValue* settings = maybe_settings.GetSettings(); |
+ for (DictionaryValue::key_iterator key_it = settings->begin_keys(); |
+ key_it != settings->end_keys(); ++key_it) { |
+ Value *value = NULL; |
+ settings->GetWithoutPathExpansion(*key_it, &value); |
+ all_sync_data.push_back( |
+ extension_settings_sync_util::CreateData(*it, *key_it, *value)); |
+ } |
+ } |
+ |
+ return all_sync_data; |
+} |
+ |
+SyncError ExtensionSettings::MergeDataAndStartSyncing( |
+ syncable::ModelType type, |
+ const SyncDataList& initial_sync_data, |
+ SyncChangeProcessor* sync_processor) { |
+ DCHECK(BrowserThread::CurrentlyOn(BrowserThread::FILE)); |
+ DCHECK_EQ(type, syncable::EXTENSION_SETTINGS); |
+ DCHECK(!sync_processor_); |
+ sync_processor_ = sync_processor; |
+ |
+ // Group the initial sync data by extension id. |
+ std::map<std::string, linked_ptr<DictionaryValue> > grouped_sync_data; |
+ for (SyncDataList::const_iterator it = initial_sync_data.begin(); |
+ it != initial_sync_data.end(); ++it) { |
+ ExtensionSettingSyncData data(*it); |
+ linked_ptr<DictionaryValue> sync_data = |
+ grouped_sync_data[data.extension_id()]; |
+ if (!sync_data.get()) { |
+ sync_data = linked_ptr<DictionaryValue>(new DictionaryValue()); |
+ grouped_sync_data[data.extension_id()] = sync_data; |
+ } |
+ DCHECK(!sync_data->HasKey(data.key())) << |
+ "Duplicate settings for " << data.extension_id() << "/" << data.key(); |
+ sync_data->Set(data.key(), data.value().DeepCopy()); |
+ } |
+ |
+ // Start syncing all existing storage areas. Any storage areas created in |
+ // the future will start being synced as part of the creation process. |
+ for (StorageObjMap::iterator it = storage_objs_.begin(); |
+ it != storage_objs_.end(); ++it) { |
+ std::map<std::string, linked_ptr<DictionaryValue> >::iterator |
+ maybe_sync_data = grouped_sync_data.find(it->first); |
+ if (maybe_sync_data != grouped_sync_data.end()) { |
+ // TODO(kalman): do something if StartSyncing fails. |
+ ignore_result( |
+ it->second->StartSyncing(*maybe_sync_data->second, sync_processor)); |
+ grouped_sync_data.erase(it->first); |
+ } else { |
+ DictionaryValue empty; |
+ // TODO(kalman): do something if StartSyncing fails. |
+ ignore_result(it->second->StartSyncing(empty, sync_processor)); |
+ } |
+ } |
+ |
+ // Eagerly create and init the rest of the storage areas that have sync data. |
+ // Under normal circumstances (i.e. not first-time sync) this will be all of |
+ // them. |
+ for (std::map<std::string, linked_ptr<DictionaryValue> >::iterator it = |
+ grouped_sync_data.begin(); it != grouped_sync_data.end(); ++it) { |
+ GetOrCreateStorageWithSyncData(it->first, *it->second); |
+ } |
+ |
+ return SyncError(); |
+} |
+ |
+SyncError ExtensionSettings::ProcessSyncChanges( |
+ const tracked_objects::Location& from_here, |
+ const SyncChangeList& sync_changes) { |
+ DCHECK(BrowserThread::CurrentlyOn(BrowserThread::FILE)); |
+ DCHECK(sync_processor_); |
+ |
+ // Group changes by extension, to pass all changes in a single method call. |
+ std::map<std::string, ExtensionSettingSyncDataList> grouped_sync_data; |
+ for (SyncChangeList::const_iterator it = sync_changes.begin(); |
+ it != sync_changes.end(); ++it) { |
+ ExtensionSettingSyncData data(*it); |
+ grouped_sync_data[data.extension_id()].push_back(data); |
+ } |
+ |
+ DictionaryValue empty; |
+ for (std::map<std::string, ExtensionSettingSyncDataList>::iterator |
+ it = grouped_sync_data.begin(); it != grouped_sync_data.end(); ++it) { |
+ // TODO(kalman): do something if ProcessSyncChanges fails. |
+ ignore_result( |
+ GetOrCreateStorageWithSyncData(it->first, empty)-> |
+ ProcessSyncChanges(it->second)); |
+ } |
+ |
+ return SyncError(); |
+} |
+ |
+void ExtensionSettings::StopSyncing(syncable::ModelType type) { |
+ DCHECK(BrowserThread::CurrentlyOn(BrowserThread::FILE)); |
+ DCHECK(sync_processor_); |
+ sync_processor_ = NULL; |
+ |
+ for (StorageObjMap::iterator it = storage_objs_.begin(); |
+ it != storage_objs_.end(); ++it) { |
+ it->second->StopSyncing(); |
+ } |
} |