Skip to content

Commit 8dc8e48

Browse files
committed
use std::optional<std::string> over std::string*
1 parent 081701d commit 8dc8e48

File tree

2 files changed

+129
-50
lines changed

2 files changed

+129
-50
lines changed

.vscode/settings.json

+83
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,83 @@
1+
{
2+
"files.associations": {
3+
"__bit_reference": "cpp",
4+
"__bits": "cpp",
5+
"__config": "cpp",
6+
"__debug": "cpp",
7+
"__errc": "cpp",
8+
"__functional_base": "cpp",
9+
"__hash_table": "cpp",
10+
"__locale": "cpp",
11+
"__mutex_base": "cpp",
12+
"__node_handle": "cpp",
13+
"__nullptr": "cpp",
14+
"__split_buffer": "cpp",
15+
"__string": "cpp",
16+
"__threading_support": "cpp",
17+
"__tree": "cpp",
18+
"__tuple": "cpp",
19+
"algorithm": "cpp",
20+
"array": "cpp",
21+
"atomic": "cpp",
22+
"bit": "cpp",
23+
"bitset": "cpp",
24+
"cctype": "cpp",
25+
"chrono": "cpp",
26+
"clocale": "cpp",
27+
"cmath": "cpp",
28+
"compare": "cpp",
29+
"complex": "cpp",
30+
"concepts": "cpp",
31+
"condition_variable": "cpp",
32+
"cstdarg": "cpp",
33+
"cstddef": "cpp",
34+
"cstdint": "cpp",
35+
"cstdio": "cpp",
36+
"cstdlib": "cpp",
37+
"cstring": "cpp",
38+
"ctime": "cpp",
39+
"cwchar": "cpp",
40+
"cwctype": "cpp",
41+
"deque": "cpp",
42+
"exception": "cpp",
43+
"functional": "cpp",
44+
"initializer_list": "cpp",
45+
"ios": "cpp",
46+
"iosfwd": "cpp",
47+
"iostream": "cpp",
48+
"istream": "cpp",
49+
"iterator": "cpp",
50+
"limits": "cpp",
51+
"locale": "cpp",
52+
"map": "cpp",
53+
"memory": "cpp",
54+
"mutex": "cpp",
55+
"new": "cpp",
56+
"numbers": "cpp",
57+
"numeric": "cpp",
58+
"optional": "cpp",
59+
"ostream": "cpp",
60+
"queue": "cpp",
61+
"random": "cpp",
62+
"ratio": "cpp",
63+
"semaphore": "cpp",
64+
"set": "cpp",
65+
"sstream": "cpp",
66+
"stdexcept": "cpp",
67+
"streambuf": "cpp",
68+
"string": "cpp",
69+
"string_view": "cpp",
70+
"system_error": "cpp",
71+
"thread": "cpp",
72+
"tuple": "cpp",
73+
"type_traits": "cpp",
74+
"typeinfo": "cpp",
75+
"unordered_map": "cpp",
76+
"utility": "cpp",
77+
"vector": "cpp",
78+
"*.tcc": "cpp",
79+
"memory_resource": "cpp",
80+
"stop_token": "cpp",
81+
"__memory": "cpp"
82+
}
83+
}

binding.cc

+46-50
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
#include <leveldb/filter_policy.h>
1111

1212
#include <map>
13+
#include <optional>
1314
#include <vector>
1415

1516
/**
@@ -253,19 +254,19 @@ static size_t StringOrBufferLength (napi_env env, napi_value value) {
253254
* Takes a Buffer or string property 'name' from 'opts'.
254255
* Returns null if the property does not exist or is zero-length.
255256
*/
256-
static std::string* RangeOption (napi_env env, napi_value opts, const char* name) {
257+
static std::optional<std::string> RangeOption (napi_env env, napi_value opts, const char* name) {
257258
if (HasProperty(env, opts, name)) {
258259
napi_value value = GetProperty(env, opts, name);
259260

260261
if (StringOrBufferLength(env, value) >= 0) {
261262
LD_STRING_OR_BUFFER_TO_COPY(env, value, to);
262-
std::string* result = new std::string(toCh_, toSz_);
263-
delete [] toCh_;
264-
return result;
263+
auto str = std::string(toCh_, toSz_);
264+
delete[] toCh_;
265+
return str;
265266
}
266267
}
267268

268-
return NULL;
269+
return {};
269270
}
270271

271272
/**
@@ -625,20 +626,20 @@ struct PriorityWorker : public BaseWorker {
625626
struct BaseIterator {
626627
BaseIterator(Database* database,
627628
const bool reverse,
628-
std::string* lt,
629-
std::string* lte,
630-
std::string* gt,
631-
std::string* gte,
629+
std::optional<std::string> lt,
630+
std::optional<std::string> lte,
631+
std::optional<std::string> gt,
632+
std::optional<std::string> gte,
632633
const int limit,
633634
const bool fillCache)
634635
: database_(database),
635636
hasClosed_(false),
636637
didSeek_(false),
637638
reverse_(reverse),
638-
lt_(lt),
639-
lte_(lte),
640-
gt_(gt),
641-
gte_(gte),
639+
lt_(std::move(lt)),
640+
lte_(std::move(lte)),
641+
gt_(std::move(gt)),
642+
gte_(std::move(gte)),
642643
limit_(limit),
643644
count_(0) {
644645
options_ = new leveldb::ReadOptions();
@@ -650,11 +651,6 @@ struct BaseIterator {
650651
virtual ~BaseIterator () {
651652
assert(hasClosed_);
652653

653-
if (lt_ != NULL) delete lt_;
654-
if (gt_ != NULL) delete gt_;
655-
if (lte_ != NULL) delete lte_;
656-
if (gte_ != NULL) delete gte_;
657-
658654
delete options_;
659655
}
660656

@@ -668,23 +664,23 @@ struct BaseIterator {
668664
void SeekToRange () {
669665
didSeek_ = true;
670666

671-
if (!reverse_ && gte_ != NULL) {
667+
if (!reverse_ && gte_) {
672668
dbIterator_->Seek(*gte_);
673-
} else if (!reverse_ && gt_ != NULL) {
669+
} else if (!reverse_ && gt_) {
674670
dbIterator_->Seek(*gt_);
675671

676672
if (dbIterator_->Valid() && dbIterator_->key().compare(*gt_) == 0) {
677673
dbIterator_->Next();
678674
}
679-
} else if (reverse_ && lte_ != NULL) {
675+
} else if (reverse_ && lte_) {
680676
dbIterator_->Seek(*lte_);
681677

682678
if (!dbIterator_->Valid()) {
683679
dbIterator_->SeekToLast();
684680
} else if (dbIterator_->key().compare(*lte_) > 0) {
685681
dbIterator_->Prev();
686682
}
687-
} else if (reverse_ && lt_ != NULL) {
683+
} else if (reverse_ && lt_) {
688684
dbIterator_->Seek(*lt_);
689685

690686
if (!dbIterator_->Valid()) {
@@ -784,15 +780,15 @@ struct BaseIterator {
784780
// }
785781

786782
// The lte and gte options take precedence over lt and gt respectively
787-
if (lte_ != NULL) {
783+
if (lte_) {
788784
if (target.compare(*lte_) > 0) return true;
789-
} else if (lt_ != NULL) {
785+
} else if (lt_) {
790786
if (target.compare(*lt_) >= 0) return true;
791787
}
792788

793-
if (gte_ != NULL) {
789+
if (gte_) {
794790
if (target.compare(*gte_) < 0) return true;
795-
} else if (gt_ != NULL) {
791+
} else if (gt_) {
796792
if (target.compare(*gt_) <= 0) return true;
797793
}
798794

@@ -806,10 +802,10 @@ struct BaseIterator {
806802
leveldb::Iterator* dbIterator_;
807803
bool didSeek_;
808804
const bool reverse_;
809-
std::string* lt_;
810-
std::string* lte_;
811-
std::string* gt_;
812-
std::string* gte_;
805+
std::optional<std::string> lt_;
806+
std::optional<std::string> lte_;
807+
std::optional<std::string> gt_;
808+
std::optional<std::string> gte_;
813809
const int limit_;
814810
int count_;
815811
leveldb::ReadOptions* options_;
@@ -825,15 +821,15 @@ struct Iterator final : public BaseIterator {
825821
const bool keys,
826822
const bool values,
827823
const int limit,
828-
std::string* lt,
829-
std::string* lte,
830-
std::string* gt,
831-
std::string* gte,
824+
std::optional<std::string> lt,
825+
std::optional<std::string> lte,
826+
std::optional<std::string> gt,
827+
std::optional<std::string> gte,
832828
const bool fillCache,
833829
const bool keyAsBuffer,
834830
const bool valueAsBuffer,
835831
const uint32_t highWaterMarkBytes)
836-
: BaseIterator(database, reverse, lt, lte, gt, gte, limit, fillCache),
832+
: BaseIterator(database, reverse, std::move(lt), std::move(lte), std::move(gt), std::move(gte), limit, fillCache),
837833
id_(id),
838834
keys_(keys),
839835
values_(values),
@@ -1345,12 +1341,12 @@ struct ClearWorker final : public PriorityWorker {
13451341
napi_value callback,
13461342
const bool reverse,
13471343
const int limit,
1348-
std::string* lt,
1349-
std::string* lte,
1350-
std::string* gt,
1351-
std::string* gte)
1344+
std::optional<std::string> lt,
1345+
std::optional<std::string> lte,
1346+
std::optional<std::string> gt,
1347+
std::optional<std::string> gte)
13521348
: PriorityWorker(env, database, callback, "classic_level.db.clear") {
1353-
iterator_ = new BaseIterator(database, reverse, lt, lte, gt, gte, limit, false);
1349+
iterator_ = new BaseIterator(database, reverse, std::move(lt), std::move(lte), std::move(gt), std::move(gte), limit, false);
13541350
writeOptions_ = new leveldb::WriteOptions();
13551351
writeOptions_->sync = false;
13561352
}
@@ -1409,12 +1405,12 @@ NAPI_METHOD(db_clear) {
14091405
const bool reverse = BooleanProperty(env, options, "reverse", false);
14101406
const int limit = Int32Property(env, options, "limit", -1);
14111407

1412-
std::string* lt = RangeOption(env, options, "lt");
1413-
std::string* lte = RangeOption(env, options, "lte");
1414-
std::string* gt = RangeOption(env, options, "gt");
1415-
std::string* gte = RangeOption(env, options, "gte");
1408+
const auto lt = RangeOption(env, options, "lt");
1409+
const auto lte = RangeOption(env, options, "lte");
1410+
const auto gt = RangeOption(env, options, "gt");
1411+
const auto gte = RangeOption(env, options, "gte");
14161412

1417-
ClearWorker* worker = new ClearWorker(env, database, callback, reverse, limit, lt, lte, gt, gte);
1413+
ClearWorker* worker = new ClearWorker(env, database, callback, reverse, limit, std::move(lt), std::move(lte), std::move(gt), std::move(gte));
14181414
worker->Queue(env);
14191415

14201416
NAPI_RETURN_UNDEFINED();
@@ -1635,14 +1631,14 @@ NAPI_METHOD(iterator_init) {
16351631
const int limit = Int32Property(env, options, "limit", -1);
16361632
const uint32_t highWaterMarkBytes = Uint32Property(env, options, "highWaterMarkBytes", 16 * 1024);
16371633

1638-
std::string* lt = RangeOption(env, options, "lt");
1639-
std::string* lte = RangeOption(env, options, "lte");
1640-
std::string* gt = RangeOption(env, options, "gt");
1641-
std::string* gte = RangeOption(env, options, "gte");
1634+
auto lt = RangeOption(env, options, "lt");
1635+
auto lte = RangeOption(env, options, "lte");
1636+
auto gt = RangeOption(env, options, "gt");
1637+
auto gte = RangeOption(env, options, "gte");
16421638

16431639
const uint32_t id = database->currentIteratorId_++;
16441640
Iterator* iterator = new Iterator(database, id, reverse, keys,
1645-
values, limit, lt, lte, gt, gte, fillCache,
1641+
values, limit, std::move(lt), std::move(lte), std::move(gt), std::move(gte), fillCache,
16461642
keyAsBuffer, valueAsBuffer, highWaterMarkBytes);
16471643
napi_value result;
16481644

0 commit comments

Comments
 (0)