-
Notifications
You must be signed in to change notification settings - Fork 35
/
LevelDB.h
105 lines (68 loc) · 2.45 KB
/
LevelDB.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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
/*
Copyright (C) 2019-Present SKALE Labs
This file is part of sgxwallet.
sgxwallet is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published
by the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
sgxwallet is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU Affero General Public License for more details.
You should have received a copy of the GNU Affero General Public License
along with sgxwallet. If not, see <https://www.gnu.org/licenses/>.
@file LevelDB.h
@author Stan Kladko
@date 2019
*/
#ifndef SGXWALLET_LEVELDB_H
#define SGXWALLET_LEVELDB_H
#include "common.h"
#include <memory>
#include <mutex>
#include <sstream>
#include <string>
#include <vector>
namespace leveldb {
class DB;
class Status;
class Slice;
} // namespace leveldb
class LevelDB {
recursive_mutex mutex;
shared_ptr<leveldb::DB> db;
static bool isInited;
static shared_ptr<LevelDB> levelDb;
static shared_ptr<LevelDB> csrDb;
static shared_ptr<LevelDB> csrStatusDb;
static string sgx_data_folder;
public:
static void initDataFolderAndDBs();
static const shared_ptr<LevelDB> &getLevelDb();
static const shared_ptr<LevelDB> &getCsrDb();
static const shared_ptr<LevelDB> &getCsrStatusDb();
public:
shared_ptr<string> readString(const string &_key);
shared_ptr<string> readNewStyleValue(const string &value);
pair<stringstream, uint64_t> getAllKeys();
pair<string, uint64_t> getLatestCreatedKey();
void writeString(const string &key1, const string &value1);
void writeDataUnique(const string &Name, const string &value);
void deleteDHDKGKey(const string &_key);
void deleteTempNEK(const string &_key);
void deleteKey(const string &_key);
public:
void throwExceptionOnError(leveldb::Status result);
LevelDB(string &filename);
class KeyVisitor {
public:
virtual void visitDBKey(const char *_data) = 0;
virtual void writeDBKeysToVector(const char *_data,
vector<const char *> &keys_vect) {}
};
uint64_t visitKeys(KeyVisitor *_visitor, uint64_t _maxKeysToVisit);
vector<string> writeKeysToVector1(uint64_t _maxKeysToVisit);
virtual ~LevelDB();
static const string &getSgxDataFolder();
};
#endif