blob: 2e57657f81fbf72b608c91b3b28ada203358a663 [file] [log] [blame]
// Copyright 2016 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef EXTENSIONS_BROWSER_VALUE_STORE_LEGACY_VALUE_STORE_FACTORY_H_
#define EXTENSIONS_BROWSER_VALUE_STORE_LEGACY_VALUE_STORE_FACTORY_H_
#include <memory>
#include <set>
#include <string>
#include "base/files/file_path.h"
#include "base/memory/ref_counted.h"
#include "extensions/browser/value_store/value_store.h"
#include "extensions/browser/value_store/value_store_factory.h"
#include "extensions/common/extension_id.h"
namespace extensions {
// A factory to create legacy ValueStore instances for storing extension
// state/rules/settings. "legacy" refers to the initial storage implementation
// which created a settings database per extension.
class LegacyValueStoreFactory : public ValueStoreFactory {
public:
explicit LegacyValueStoreFactory(const base::FilePath& profile_path);
bool RulesDBExists() const;
bool StateDBExists() const;
// ValueStoreFactory:
std::unique_ptr<ValueStore> CreateRulesStore() override;
std::unique_ptr<ValueStore> CreateStateStore() override;
std::unique_ptr<ValueStore> CreateSettingsStore(
settings_namespace::Namespace settings_namespace,
ModelType model_type,
const ExtensionId& extension_id) override;
void DeleteSettings(settings_namespace::Namespace settings_namespace,
ModelType model_type,
const ExtensionId& extension_id) override;
bool HasSettings(settings_namespace::Namespace settings_namespace,
ModelType model_type,
const ExtensionId& extension_id) override;
std::set<ExtensionId> GetKnownExtensionIDs(
settings_namespace::Namespace settings_namespace,
ModelType model_type) const override;
private:
friend class base::RefCounted<LegacyValueStoreFactory>;
// Manages a collection of legacy settings databases all within a common
// directory.
class ModelSettings {
public:
explicit ModelSettings(const base::FilePath& data_path);
base::FilePath GetDBPath(const ExtensionId& extension_id) const;
bool DeleteData(const ExtensionId& extension_id);
bool DataExists(const ExtensionId& extension_id) const;
std::set<ExtensionId> GetKnownExtensionIDs() const;
private:
// The path containing all settings databases under this root.
const base::FilePath data_path_;
DISALLOW_COPY_AND_ASSIGN(ModelSettings);
};
// Manages two collections of legacy settings databases (apps & extensions)
// within a common base directory.
class SettingsRoot {
public:
// If either |extension_dirname| or |app_dirname| are empty then that
// ModelSetting will *not* be created.
SettingsRoot(const base::FilePath& base_path,
const std::string& extension_dirname,
const std::string& app_dirname);
~SettingsRoot();
std::set<ExtensionId> GetKnownExtensionIDs(ModelType model_type) const;
const ModelSettings* GetModel(ModelType model_type) const;
ModelSettings* GetModel(ModelType model_type);
private:
std::unique_ptr<ModelSettings> extensions_;
std::unique_ptr<ModelSettings> apps_;
DISALLOW_COPY_AND_ASSIGN(SettingsRoot);
};
~LegacyValueStoreFactory() override;
const SettingsRoot& GetSettingsRoot(
settings_namespace::Namespace settings_namespace) const;
SettingsRoot& GetSettingsRoot(
settings_namespace::Namespace settings_namespace);
base::FilePath GetRulesDBPath() const;
base::FilePath GetStateDBPath() const;
const base::FilePath profile_path_;
SettingsRoot local_settings_;
SettingsRoot sync_settings_;
SettingsRoot managed_settings_;
DISALLOW_COPY_AND_ASSIGN(LegacyValueStoreFactory);
};
} // namespace extensions
#endif // EXTENSIONS_BROWSER_VALUE_STORE_LEGACY_VALUE_STORE_FACTORY_H_