1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #ifndef COMPONENTS_LEVELDB_PROTO_LEVELDB_DATABASE_H_
6 #define COMPONENTS_LEVELDB_PROTO_LEVELDB_DATABASE_H_
11 #include "base/files/file_path.h"
12 #include "base/memory/scoped_ptr.h"
13 #include "base/strings/string_split.h"
14 #include "base/threading/thread_collision_warner.h"
19 } // namespace leveldb
21 namespace leveldb_proto
{
23 // Interacts with the LevelDB third party module.
24 // Once constructed, function calls and destruction should all occur on the
25 // same thread (not necessarily the same as the constructor).
31 virtual bool InitWithOptions(const base::FilePath
& database_dir
,
32 const leveldb::Options
& options
);
33 virtual bool Init(const base::FilePath
& database_dir
);
34 virtual bool Save(const base::StringPairs
& pairs_to_save
,
35 const std::vector
<std::string
>& keys_to_remove
);
36 virtual bool Load(std::vector
<std::string
>* entries
);
39 DFAKE_MUTEX(thread_checker_
);
40 scoped_ptr
<leveldb::DB
> db_
;
43 } // namespace leveldb_proto
45 #endif // COMPONENTS_LEVELDB_PROTO_LEVELDB_DATABASE_H_