-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathdb.h
73 lines (60 loc) · 1.95 KB
/
db.h
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
64
65
66
67
68
69
70
71
72
73
// Aleth: Ethereum C++ client, tools and libraries.
// Copyright 2014-2019 Aleth Authors.
// Licensed under the GNU General Public License, Version 3.
#pragma once
#include "Exceptions.h"
#include "dbfwd.h"
#include <memory>
#include <string>
namespace dev
{
namespace db
{
// WriteBatchFace implements database write batch for a specific concrete
// database implementation.
class WriteBatchFace
{
public:
virtual ~WriteBatchFace() = default;
virtual void insert(Slice _key, Slice _value) = 0;
virtual void kill(Slice _key) = 0;
protected:
WriteBatchFace() = default;
// Noncopyable
WriteBatchFace(WriteBatchFace const&) = delete;
WriteBatchFace& operator=(WriteBatchFace const&) = delete;
// Nonmovable
WriteBatchFace(WriteBatchFace&&) = delete;
WriteBatchFace& operator=(WriteBatchFace&&) = delete;
};
class DatabaseFace
{
public:
virtual ~DatabaseFace() = default;
virtual std::string lookup(Slice _key) const = 0;
virtual bool exists(Slice _key) const = 0;
virtual void insert(Slice _key, Slice _value) = 0;
virtual void kill(Slice _key) = 0;
virtual std::unique_ptr<WriteBatchFace> createWriteBatch() const = 0;
virtual void commit(std::unique_ptr<WriteBatchFace> _batch) = 0;
// A database must implement the `forEach` method that allows the caller
// to pass in a function `f`, which will be called with the key and value
// of each record in the database. If `f` returns false, the `forEach`
// method must return immediately.
virtual void forEach(std::function<bool(Slice, Slice)> f) const = 0;
};
DEV_SIMPLE_EXCEPTION(DatabaseError);
enum class DatabaseStatus
{
Ok,
NotFound,
Corruption,
NotSupported,
InvalidArgument,
IOError,
Unknown
};
using errinfo_dbStatusCode = boost::error_info<struct tag_dbStatusCode, DatabaseStatus>;
using errinfo_dbStatusString = boost::error_info<struct tag_dbStatusString, std::string>;
} // namespace db
} // namespace dev