forked from estraier/tkrzw
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtkrzw_dbm_poly.h
528 lines (472 loc) · 20.1 KB
/
tkrzw_dbm_poly.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
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
/*************************************************************************************************
* Polymorphic database manager adapter
*
* 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_POLY_H
#define _TKRZW_DBM_POLY_H
#include <map>
#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"
#include "tkrzw_str_util.h"
namespace tkrzw {
/**
* Parametric database manager interface.
* @details This is commonly used by the PolyDBM and ShardDBM.
*/
class ParamDBM : public DBM {
public:
/**
* Destructor.
*/
virtual ~ParamDBM() = default;
/**
* Opens a database file, in an advanced way.
* @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 for opening the file.
* @param params Optional parameters.
* @return The result status.
*/
virtual Status OpenAdvanced(const std::string& path, bool writable,
int32_t options = File::OPEN_DEFAULT,
const std::map<std::string, std::string>& params = {}) = 0;
/**
* Rebuilds the entire database, in an advanced way.
* @param params Optional parameters.
* @return The result status.
*/
virtual Status RebuildAdvanced(const std::map<std::string, std::string>& params = {}) = 0;
/**
* Synchronizes the content of the database to the file system, in an advanced way.
* @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.
* @param params Optional parameters.
* @return The result status.
*/
virtual Status SynchronizeAdvanced(bool hard, FileProcessor* proc = nullptr,
const std::map<std::string, std::string>& params = {}) = 0;
};
/**
* Polymorphic database manager adapter.
* @details All operations except for Open and Close are thread-safe; Multiple threads can
* access the same database concurrently. Every opened database must be closed explicitly to
* avoid data corruption.
* @details This class is a wrapper of HashDBM, TreeDBM, SkipDBM, TinyDBM, BabyDBM, StdHashDBM,
* and StdTreeDBM. The open method specifies the actuall class used internally.
*/
class PolyDBM final : public ParamDBM {
public:
/**
* 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::PolyDBM;
public:
/**
* Destructor.
*/
virtual ~Iterator() = default;
/**
* 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 {
return iter_->First();
}
/**
* Initializes the iterator to indicate the last record.
* @return The result status.
* @details Even if there's no record, the operation doesn't fail. This method is suppoerted
* only by ordered databases.
*/
Status Last() override {
return iter_->Last();
}
/**
* Initializes the iterator to indicate a specific record.
* @param key The key of the record to look for.
* @return The result status.
* @details Ordered databases can support "lower bound" jump; If there's no record with the
* same key, the iterator refers to the first record whose key is greater than the given key.
* The operation fails with unordered databases if there's no record with the same key.
*/
Status Jump(std::string_view key) override {
return iter_->Jump(key);
}
/**
* 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 Even if there's no matching record, the operation doesn't fail. This method is
* suppoerted only by ordered databases.
*/
Status JumpLower(std::string_view key, bool inclusive = false) override {
return iter_->JumpLower(key, inclusive);
}
/**
* 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 Even if there's no matching record, the operation doesn't fail. This method is
* suppoerted only by ordered databases.
*/
Status JumpUpper(std::string_view key, bool inclusive = false) override {
return iter_->JumpUpper(key, inclusive);
}
/**
* 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 {
return iter_->Next();
}
/**
* Moves the iterator to the previous record.
* @return The result status.
* @details If the current record is missing, the operation fails. Even if there's no previous
* record, the operation doesn't fail. This method is suppoerted only by ordered databases.
*/
Status Previous() override {
return iter_->Previous();
}
/**
* 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 {
return iter_->Process(proc, writable);
}
/**
* Gets the key and the value of the current record of the iterator.
* @param key The pointer to a string object to contain the record key. If it is nullptr,
* the key data is ignored.
* @param value The pointer to a string object to contain the record value. If it is nullptr,
* the value data is ignored.
* @return The result status.
*/
Status Get(std::string* key = nullptr, std::string* value = nullptr) override {
return iter_->Get(key, value);
}
/**
* Sets the value of the current record.
* @param value The value of the record.
* @return The result status.
*/
Status Set(std::string_view value) override {
return iter_->Set(value);
}
/**
* Removes the current record.
* @return The result status.
* @details If possible, the iterator moves to the next record.
*/
Status Remove() override {
return iter_->Remove();
}
private:
explicit Iterator(std::unique_ptr<DBM::Iterator> iter) : iter_(std::move(iter)) {}
/** The internal iterator object. */
std::unique_ptr<DBM::Iterator> iter_;
};
/**
* Default constructor.
*/
PolyDBM();
/**
* 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 for opening the file.
* @return The result status.
*/
Status Open(const std::string& path, bool writable,
int32_t options = File::OPEN_DEFAULT) override {
return OpenAdvanced(path, writable, options);
}
/**
* Opens a database file, in an advanced way.
* @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 for opening the file.
* @param params Optional parameters.
* @return The result status.
* @details The extension of the path indicates the type of the database.
* - .thh : File hash database (HashDBM)
* - .tkt : File tree database (TreeDBM)
* - .tks : File skip database (SkipDBM)
* - .tkmt : On-memory hash database (TinyDBM)
* - .tkmb : On-memory tree database (BabyDBM)
* - .tkmc : On-memory LRU cache database (CacheDBM)
* - .tksh : On-memory STL hash database (StdHashDBM)
* - .tkst : On-memory STL tree database (StdTreeDBM)
* @details The optional parameters can include options for the file opening operation.
* - truncate (bool): True to truncate the file.
* - no_create (bool): True to omit file creation.
* - no_wait (bool): True to fail if the file is locked by another process.
* - no_lock (bool): True to omit file locking.
* @details The optional parameter "dbm" supercedes the decision of the database type by the
* extension. The value is the type name: "HashDBM", "TreeDBM", "SkipDBM", "TinyDBM",
* "BabyDBM", "CacheDBM", "StdHashDBM", "StdTreeDBM".
* @details For HashDBM, these optional parameters are supported.
* - update_mode (string): How to update the database file: "UPDATE_IN_PLACE" for the
* in-palce and "UPDATE_APPENDING" for the appending mode.
* - offset_width (int): The width to represent the offset of records.
* - align_pow (int): The power to align records.
* - num_buckets (int): The number of buckets for hashing.
* - fbp_capacity (int): The capacity of the free block pool.
* - lock_mem_buckets (bool): True to lock the memory for the hash buckets.
* @details For TreeDBM, all optional parameters for HashDBM are available. In addition,
* these optional parameters are supported.
* - max_page_size (int): The maximum size of a page.
* - max_branches (int): The maximum number of branches each inner node can have.
* - max_cached_pages (int): The maximum number of cached pages.
* - key_comparator (string): The comparator of record keys: "LexicalKeyComparator" for the
* lexical order, "LexicalCaseKeyComparator" for the lexical order ignoring case,
* "DecimalKeyComparator" for the order of the decimal integer numeric expressions,
* "HexadecimalKeyComparato" for the order of the hexadecimal integer numeric expressions,
* "RealNumberKeyComparator" for the order of the decimal real number expressions.
* @details For SkipDBM, these optional parameters are supported.
* - offset_width (int): The width to represent the offset of records.
* - step_unit (int): The step unit of the skip list.
* - max_level (int): The maximum level of the skip list.
* - sort_mem_size (int): The memory size used for sorting to build the database in the
* at-random mode.
* - insert_in_order (bool): If true, records are assumed to be inserted in ascending
* order of the key.
* - max_cached_records (int): The maximum number of cached records.
* @details For TinyDBM, these optional parameters are supported.
* - num_buckets (int): The number of buckets for hashing.
* @details For BabyDBM, these optional parameters are supported.
* - key_comparator (string): The comparator of record keys. The same ones as TreeDBM.
* @details For CacheDBM, these optional parameters are supported.
* - cap_rec_num (int): The maximum number of records.
* - cap_mem_size (int): The total memory size to use.
*/
Status OpenAdvanced(const std::string& path, bool writable,
int32_t options = File::OPEN_DEFAULT,
const std::map<std::string, std::string>& params = {});
/**
* Closes the database file.
* @return The result status.
*/
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;
/**
* Gets the value of a record of a key.
* @param key The key of the record.
* @param value The pointer to a string object to contain the result value. If it is nullptr,
* the value data is ignored.
* @return The result status.
*/
Status Get(std::string_view key, std::string* value = nullptr) override;
/**
* Sets a record of a key and a value.
* @param key The key of the record.
* @param value The value of the record.
* @param overwrite Whether to overwrite the existing value if there's a record with the same
* key. If true, the existing value is overwritten by the new value. If false, the operation
* is given up and an error status is returned.
* @return The result status.
*/
Status Set(std::string_view key, std::string_view value, bool overwrite = true) override;
/**
* Removes a record of a key.
* @param key The key of the record.
* @return The result status.
*/
Status Remove(std::string_view key) override;
/**
* Appends data at the end of a record of a key.
* @param key The key of the record.
* @param value The value to append.
* @param delim The delimiter to put after the existing record.
* @return The result status.
* @details If there's no existing record, the value is set without the delimiter.
*/
Status Append(
std::string_view key, std::string_view value, std::string_view delim = "") 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.
*/
Status Rebuild() override {
return RebuildAdvanced();
}
/**
* Rebuilds the entire database, in an advanced way.
* @param params Optional parameters.
* @return The result status.
* @details Tuning options can be given by the optional parameters, as with the Open method.
*/
Status RebuildAdvanced(const std::map<std::string, std::string>& params = {});
/**
* Checks whether the database should be rebuilt.
* @param tobe The pointer to a boolean object to contain the result decision.
* @return The result status.
*/
Status ShouldBeRebuilt(bool* tobe) override;
/**
* 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.
*/
Status Synchronize(bool hard, FileProcessor* proc = nullptr) override {
return SynchronizeAdvanced(hard, proc);
}
/**
* Synchronizes the content of the database to the file system, in an advanced way.
* @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.
* @param params Optional parameters.
* @return The result status.
* @details Only SkipDBM uses the optional parameters. The "merge" parameter specifies paths
* of databases to merge, separated by colon. The "reducer" parameter specifies the reducer
* to apply to records of the same key. "ReduceToFirst", "ReduceToSecond", "ReduceToLast",
* etc are supported.
*/
Status SynchronizeAdvanced(bool hard, FileProcessor* proc = nullptr,
const std::map<std::string, std::string>& params = {});
/**
* 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 True if the database condition is healthy, or false if not.
*/
bool IsHealthy() const override;
/**
* Checks whether ordered operations are supported.
* @return True if ordered operations are supported, or false if not.
*/
bool IsOrdered() const override;
/**
* Makes an iterator for each record.
* @return The iterator for each record.
*/
std::unique_ptr<DBM::Iterator> MakeIterator() override;
/**
* Make a new DBM object of the same concrete class.
* @return The new file object.
*/
std::unique_ptr<DBM> MakeDBM() const override;
/**
* Gets the pointer to the internal database object.
* @return The pointer to the internal database object, or nullptr on failure.
*/
DBM* GetInternalDBM() const;
/**
* Restores a broken database as a new healthy database.
* @param old_file_path The path of the broken database.
* @param new_file_path The path of the new database to be created.
* @param class_name The name of the database class. If it is empty, the class is guessed from
* the file extension.
* @param end_offset The exclusive end offset of records to read. Negative means unlimited.
* 0 means the size when the database is synched or closed properly.
* @return The result status.
*/
static Status RestoreDatabase(
const std::string& old_file_path, const std::string& new_file_path,
const std::string& class_name = "", int64_t end_offset = -1);
private:
/** The internal database object. */
std::unique_ptr<DBM> dbm_;
/** Whether the internal database is open. */
bool open_;
};
} // namespace tkrzw
#endif // _TKRZW_DBM_POLY_H
// END OF FILE