forked from estraier/tkrzw
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tkrzw_dbm_cache.h
373 lines (324 loc) · 12.6 KB
/
tkrzw_dbm_cache.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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
/*************************************************************************************************
* On-memory database manager implementations with LRU deletion
*
* Copyright 2020 Google LLC
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file
* except in compliance with the License. You may obtain a copy of the License at
* https://www.apache.org/licenses/LICENSE-2.0
* Unless required by applicable law or agreed to in writing, software distributed under the
* License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND,
* either express or implied. See the License for the specific language governing permissions
* and limitations under the License.
*************************************************************************************************/
#ifndef _TKRZW_DBM_CACHE_H
#define _TKRZW_DBM_CACHE_H
#include <memory>
#include <string>
#include <string_view>
#include <utility>
#include <vector>
#include <cinttypes>
#include "tkrzw_dbm.h"
#include "tkrzw_file.h"
#include "tkrzw_lib_common.h"
namespace tkrzw {
class CacheDBMImpl;
class CacheDBMIteratorImpl;
/**
* On-memory database manager implementation with LRU deletion.
* @details All operations are thread-safe; Multiple threads can access the same database
* concurrently.
*/
class CacheDBM final : public DBM {
public:
/** The default value of the maximum number of records. */
static constexpr int64_t DEFAULT_CAP_REC_NUM = 1048576;
/**
* Iterator for each record.
* @details When the database is updated, some iterators may or may not be invalided.
* Operations with invalidated iterators fails gracefully with NOT_FOUND_ERROR. One iterator
* cannot be shared by multiple threads.
*/
class Iterator final : public DBM::Iterator {
friend class tkrzw::CacheDBM;
public:
/**
* Destructor.
*/
virtual ~Iterator();
/**
* Copy and assignment are disabled.
*/
explicit Iterator(const Iterator& rhs) = delete;
Iterator& operator =(const Iterator& rhs) = delete;
/**
* Initializes the iterator to indicate the first record.
* @return The result status.
* @details Even if there's no record, the operation doesn't fail.
*/
Status First() override;
/**
* Initializes the iterator to indicate the last record.
* @return The result status.
* @details This method is not supported.
*/
Status Last() override {
return Status(Status::NOT_IMPLEMENTED_ERROR);
}
/**
* Initializes the iterator to indicate a specific record.
* @param key The key of the record to look for.
* @return The result status.
* @details This database is unordered so it doesn't support "lower bound" jump. If there's
* no record matching to the given key, the operation fails.
*/
Status Jump(std::string_view key) override;
/**
* Initializes the iterator to indicate the last record whose key is lower than a given key.
* @param key The key to compare with.
* @param inclusive If true, the considtion is inclusive: equal to or lower than the key.
* @return The result status.
* @details This method is not supported.
*/
Status JumpLower(std::string_view key, bool inclusive = false) override {
return Status(Status::NOT_IMPLEMENTED_ERROR);
}
/**
* Initializes the iterator to indicate the first record whose key is upper than a given key.
* @param key The key to compare with.
* @param inclusive If true, the considtion is inclusive: equal to or upper than the key.
* @return The result status.
* @details This method is not supported.
*/
Status JumpUpper(std::string_view key, bool inclusive = false) override {
return Status(Status::NOT_IMPLEMENTED_ERROR);
}
/**
* Moves the iterator to the next record.
* @return The result status.
* @details If the current record is missing, the operation fails. Even if there's no next
* record, the operation doesn't fail.
*/
Status Next() override;
/**
* Moves the iterator to the previous record.
* @return The result status.
* @details This method is not suppoerted.
*/
Status Previous() override {
return Status(Status::NOT_IMPLEMENTED_ERROR);
}
/**
* Processes the current record with a processor.
* @param proc The pointer to the processor object.
* @param writable True if the processor can edit the record.
* @return The result status.
* @details If the current record exists, the ProcessFull of the processor is called.
* Otherwise, this method fails and no method of the processor is called. If the current
* record is removed, the iterator is moved to the next record.
*/
Status Process(RecordProcessor* proc, bool writable) override;
private:
/**
* Constructor.
* @param dbm_impl The database implementation object.
*/
explicit Iterator(CacheDBMImpl* dbm_impl);
/** Pointer to the actual implementation. */
CacheDBMIteratorImpl* impl_;
};
/**
* Default constructor.
* @param cap_rec_num The maximum number of records. -1 means that the default value 1048576 is
* set.
* @param cap_mem_size The total memory size to use. -1 means unlimited.
* @details If the number of records or the total memory size exceeds the capacity LRU
* (least resente used) records are removed implicitly.
*/
explicit CacheDBM(int64_t cap_rec_num = -1, int64_t cap_mem_size = -1);
/**
* Constructor with a file object.
* @param file The file object to handle the data. The ownership is taken.
* @param cap_rec_num The maximum number of records. -1 means that the default value 1048576 is
* set. As the number of hash buckets is set by the maximum number of records, setting too large
* value is not good for space efficiency.
* @param cap_mem_size The total memory size to use. -1 means unlimited.
* @details If the number of records or the total memory size exceeds the capacity LRU
* (least resente used) records are removed implicitly.
*/
explicit CacheDBM(std::unique_ptr<File> file, int64_t cap_rec_num = -1, int64_t cap_mem_size = -1);
/**
* Destructor.
*/
virtual ~CacheDBM();
/**
* Copy and assignment are disabled.
*/
explicit CacheDBM(const CacheDBM& rhs) = delete;
CacheDBM& operator =(const CacheDBM& rhs) = delete;
/**
* Opens a database file.
* @param path A path of the file.
* @param writable If true, the file is writable. If false, it is read-only.
* @param options Bit-sum options of File::OpenOption enums for opening the file.
* @return The result status.
* @details As this database is an on-memory database, you can set records and retrieve them
* without opening a file. If you open a file, records are loaded from the file.
*/
Status Open(const std::string& path, bool writable,
int32_t options = File::OPEN_DEFAULT) override;
/**
* Closes the database file.
* @return The result status.
* @details If a file is opened as writable, records are saved in the file.
*/
Status Close() override;
/**
* Processes a record with a processor.
* @param key The key of the record.
* @param proc The pointer to the processor object.
* @param writable True if the processor can edit the record.
* @return The result status.
* @details If the specified record exists, the ProcessFull of the processor is called.
* Otherwise, the ProcessEmpty of the processor is called.
*/
Status Process(std::string_view key, RecordProcessor* proc, bool writable) override;
/**
* Processes multiple records with processors.
* @param key_proc_pairs Pairs of the keys and their processor objects.
* @param writable True if the processors can edit the records.
* @return The result status.
* @details Precondition: The database is opened. The writable parameter should be
* consistent to the open mode.
* @details If the specified record exists, the ProcessFull of the processor is called.
* Otherwise, the ProcessEmpty of the processor is called.
*/
Status ProcessMulti(
const std::vector<std::pair<std::string_view, DBM::RecordProcessor*>>& key_proc_pairs,
bool writable) override;
/**
* Processes each and every record in the database with a processor.
* @param proc The pointer to the processor object.
* @param writable True if the processor can edit the record.
* @return The result status.
* @details The ProcessFull of the processor is called repeatedly for each record. The
* ProcessEmpty of the processor is called once before the iteration and once after the
* iteration.
*/
Status ProcessEach(RecordProcessor* proc, bool writable) override;
/**
* Gets the number of records.
* @param count The pointer to an integer object to contain the result count.
* @return The result status.
*/
Status Count(int64_t* count) override;
/**
* Gets the current file size of the database.
* @param size The pointer to an integer object to contain the result size.
* @return The result status.
*/
Status GetFileSize(int64_t* size) override;
/**
* Gets the path of the database file.
* @param path The pointer to a string object to contain the result path.
* @return The result status.
*/
Status GetFilePath(std::string* path) override;
/**
* Removes all records.
* @return The result status.
*/
Status Clear() override;
/**
* Rebuilds the entire database.
* @return The result status.
* @details The number of buckets is calculated implicitly.
*/
Status Rebuild() override {
return RebuildAdvanced(-1);
}
/**
* Rebuilds the entire database, in an advanced way.
* @param cap_rec_num The maximum number of records. -1 means that the current setting is kept.
* @param cap_mem_size The total memory size to use. -1 means that the current setting is kept.
* @return The result status.
*/
Status RebuildAdvanced(int64_t cap_rec_num = -1, int64_t cap_mem_size = -1);
/**
* Checks whether the database should be rebuilt.
* @param tobe The pointer to a boolean object to contain the result decision.
* @return The result status.
* @details There's no need for the database to be rebuilt.
*/
Status ShouldBeRebuilt(bool* tobe) override {
*tobe = false;
return Status(Status::SUCCESS);
}
/**
* Synchronizes the content of the database to the file system.
* @param hard True to do physical synchronization with the hardware or false to do only
* logical synchronization with the file system.
* @param proc The pointer to the file processor object, whose Process method is called while
* the content of the file is synchronized. If it is nullptr, it is ignored.
* @return The result status.
* @details If a file is opened as writable, records are saved in the file.
*/
Status Synchronize(bool hard, FileProcessor* proc = nullptr) override;
/**
* Inspects the database.
* @return A vector of pairs of a property name and its value.
*/
std::vector<std::pair<std::string, std::string>> Inspect() override;
/**
* Checks whether the database is open.
* @return True if the database is open, or false if not.
*/
bool IsOpen() const override;
/**
* Checks whether the database is writable.
* @return True if the database is writable, or false if not.
*/
bool IsWritable() const override;
/**
* Checks whether the database condition is healthy.
* @return Always true. On-memory databases never cause system errors.
*/
bool IsHealthy() const override {
return true;
}
/**
* Checks whether ordered operations are supported.
* @return Always false. Ordered operations are not supported.
*/
bool IsOrdered() const override {
return false;
}
/**
* Makes an iterator for each record.
* @return The iterator for each record.
*/
std::unique_ptr<DBM::Iterator> MakeIterator() override;
/**
* Makes a new DBM object of the same concrete class.
* @return The new DBM object.
*/
std::unique_ptr<DBM> MakeDBM() const override;
/**
* Gets the effective data size.
* @return The effective data size, or -1 on failure.
* @details The effective data size means the total size of the keys and the values.
*/
int64_t GetEffectiveDataSize();
/**
* Gets the current memory usage.
* @return The current memory usage, or -1 on failure.
* @details The memory usage is estimated by the effective data size and the nuber of records.
*/
int64_t GetMemoryUsage();
private:
/** Pointer to the actual implementation. */
CacheDBMImpl* impl_;
};
} // namespace tkrzw
#endif // _TKRZW_DBM_CACHE_H
// END OF FILE