summaryrefslogtreecommitdiffstats
path: root/chrome/browser/extensions/extension_settings_leveldb_storage.h
blob: 5090f9a9a81ec8682d4a56ac7ffab96d3bb54de3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
// Copyright (c) 2011 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 CHROME_BROWSER_EXTENSIONS_EXTENSION_SETTINGS_LEVELDB_STORAGE_H_
#define CHROME_BROWSER_EXTENSIONS_EXTENSION_SETTINGS_LEVELDB_STORAGE_H_
#pragma once

#include <string>

#include "base/compiler_specific.h"
#include "base/file_path.h"
#include "base/memory/ref_counted.h"
#include "base/memory/scoped_ptr.h"
#include "base/task.h"
#include "chrome/browser/extensions/extension_settings_storage.h"
#include "third_party/leveldatabase/src/include/leveldb/db.h"

// Extension settings storage object, backed by a leveldb database.
//
// No caching is done; that should be handled by wrapping with an
// ExtensionSettingsStorageCache.
// All methods must be run on the FILE thread.
class ExtensionSettingsLeveldbStorage : public ExtensionSettingsStorage {
 public:
  // Tries to create a leveldb storage area for an extension at a base path.
  // Returns NULL if creation fails.
  static ExtensionSettingsLeveldbStorage* Create(
      const FilePath& base_path, const std::string& extension_id);

  // Must be deleted on the FILE thread.
  virtual ~ExtensionSettingsLeveldbStorage();

  // ExtensionSettingsStorage implementation.
  virtual Result Get(const std::string& key) OVERRIDE;
  virtual Result Get(const std::vector<std::string>& keys) OVERRIDE;
  virtual Result Get() OVERRIDE;
  virtual Result Set(const std::string& key, const Value& value) OVERRIDE;
  virtual Result Set(const DictionaryValue& settings) OVERRIDE;
  virtual Result Remove(const std::string& key) OVERRIDE;
  virtual Result Remove(const std::vector<std::string>& keys) OVERRIDE;
  virtual Result Clear() OVERRIDE;

 private:
  // Ownership of db is taken.
  explicit ExtensionSettingsLeveldbStorage(leveldb::DB* db);

  // Reads a key from the database, settings the resulting key/value pair in
  // a given settings object if successful.
  // Returns whether the get was successful.
  bool ReadFromDb(
      leveldb::ReadOptions options,
      const std::string& key,
      // Ownership NOT taken.
      DictionaryValue* settings);

  // leveldb backend.
  scoped_ptr<leveldb::DB> db_;

  DISALLOW_COPY_AND_ASSIGN(ExtensionSettingsLeveldbStorage);
};

#endif  // CHROME_BROWSER_EXTENSIONS_EXTENSION_SETTINGS_LEVELDB_STORAGE_H_