10
10
#include < leveldb/filter_policy.h>
11
11
12
12
#include < map>
13
+ #include < optional>
13
14
#include < vector>
14
15
15
16
/* *
@@ -253,19 +254,19 @@ static size_t StringOrBufferLength (napi_env env, napi_value value) {
253
254
* Takes a Buffer or string property 'name' from 'opts'.
254
255
* Returns null if the property does not exist or is zero-length.
255
256
*/
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) {
257
258
if (HasProperty (env, opts, name)) {
258
259
napi_value value = GetProperty (env, opts, name);
259
260
260
261
if (StringOrBufferLength (env, value) >= 0 ) {
261
262
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 ;
265
266
}
266
267
}
267
268
268
- return NULL ;
269
+ return {} ;
269
270
}
270
271
271
272
/* *
@@ -625,20 +626,20 @@ struct PriorityWorker : public BaseWorker {
625
626
struct BaseIterator {
626
627
BaseIterator (Database* database,
627
628
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,
632
633
const int limit,
633
634
const bool fillCache)
634
635
: database_(database),
635
636
hasClosed_ (false ),
636
637
didSeek_(false ),
637
638
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) ),
642
643
limit_(limit),
643
644
count_(0 ) {
644
645
options_ = new leveldb::ReadOptions ();
@@ -650,11 +651,6 @@ struct BaseIterator {
650
651
virtual ~BaseIterator () {
651
652
assert (hasClosed_);
652
653
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
-
658
654
delete options_;
659
655
}
660
656
@@ -668,23 +664,23 @@ struct BaseIterator {
668
664
void SeekToRange () {
669
665
didSeek_ = true ;
670
666
671
- if (!reverse_ && gte_ != NULL ) {
667
+ if (!reverse_ && gte_) {
672
668
dbIterator_->Seek (*gte_);
673
- } else if (!reverse_ && gt_ != NULL ) {
669
+ } else if (!reverse_ && gt_) {
674
670
dbIterator_->Seek (*gt_);
675
671
676
672
if (dbIterator_->Valid () && dbIterator_->key ().compare (*gt_) == 0 ) {
677
673
dbIterator_->Next ();
678
674
}
679
- } else if (reverse_ && lte_ != NULL ) {
675
+ } else if (reverse_ && lte_) {
680
676
dbIterator_->Seek (*lte_);
681
677
682
678
if (!dbIterator_->Valid ()) {
683
679
dbIterator_->SeekToLast ();
684
680
} else if (dbIterator_->key ().compare (*lte_) > 0 ) {
685
681
dbIterator_->Prev ();
686
682
}
687
- } else if (reverse_ && lt_ != NULL ) {
683
+ } else if (reverse_ && lt_) {
688
684
dbIterator_->Seek (*lt_);
689
685
690
686
if (!dbIterator_->Valid ()) {
@@ -784,15 +780,15 @@ struct BaseIterator {
784
780
// }
785
781
786
782
// The lte and gte options take precedence over lt and gt respectively
787
- if (lte_ != NULL ) {
783
+ if (lte_) {
788
784
if (target.compare (*lte_) > 0 ) return true ;
789
- } else if (lt_ != NULL ) {
785
+ } else if (lt_) {
790
786
if (target.compare (*lt_) >= 0 ) return true ;
791
787
}
792
788
793
- if (gte_ != NULL ) {
789
+ if (gte_) {
794
790
if (target.compare (*gte_) < 0 ) return true ;
795
- } else if (gt_ != NULL ) {
791
+ } else if (gt_) {
796
792
if (target.compare (*gt_) <= 0 ) return true ;
797
793
}
798
794
@@ -806,10 +802,10 @@ struct BaseIterator {
806
802
leveldb::Iterator* dbIterator_;
807
803
bool didSeek_;
808
804
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_;
813
809
const int limit_;
814
810
int count_;
815
811
leveldb::ReadOptions* options_;
@@ -825,15 +821,15 @@ struct Iterator final : public BaseIterator {
825
821
const bool keys,
826
822
const bool values,
827
823
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,
832
828
const bool fillCache,
833
829
const bool keyAsBuffer,
834
830
const bool valueAsBuffer,
835
831
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),
837
833
id_ (id),
838
834
keys_(keys),
839
835
values_(values),
@@ -1345,12 +1341,12 @@ struct ClearWorker final : public PriorityWorker {
1345
1341
napi_value callback,
1346
1342
const bool reverse,
1347
1343
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)
1352
1348
: 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 );
1354
1350
writeOptions_ = new leveldb::WriteOptions ();
1355
1351
writeOptions_->sync = false ;
1356
1352
}
@@ -1409,12 +1405,12 @@ NAPI_METHOD(db_clear) {
1409
1405
const bool reverse = BooleanProperty (env, options, " reverse" , false );
1410
1406
const int limit = Int32Property (env, options, " limit" , -1 );
1411
1407
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" );
1416
1412
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) );
1418
1414
worker->Queue (env);
1419
1415
1420
1416
NAPI_RETURN_UNDEFINED ();
@@ -1635,14 +1631,14 @@ NAPI_METHOD(iterator_init) {
1635
1631
const int limit = Int32Property (env, options, " limit" , -1 );
1636
1632
const uint32_t highWaterMarkBytes = Uint32Property (env, options, " highWaterMarkBytes" , 16 * 1024 );
1637
1633
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" );
1642
1638
1643
1639
const uint32_t id = database->currentIteratorId_ ++;
1644
1640
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,
1646
1642
keyAsBuffer, valueAsBuffer, highWaterMarkBytes);
1647
1643
napi_value result;
1648
1644
0 commit comments