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
529
530
531
532
533
use std::ops::Bound;
use crate::*;
fn move_on_range_end<'txn>(
cursor: &mut RoCursor<'txn>,
end_bound: &Bound<Vec<u8>>,
) -> Result<Option<(&'txn [u8], &'txn [u8])>> {
match end_bound {
Bound::Included(end) => match cursor.move_on_key_greater_than_or_equal_to(end) {
Ok(Some((key, data))) if key == &end[..] => Ok(Some((key, data))),
Ok(_) => cursor.move_on_prev(),
Err(e) => Err(e),
},
Bound::Excluded(end) => cursor
.move_on_key_greater_than_or_equal_to(end)
.and_then(|_| cursor.move_on_prev()),
Bound::Unbounded => cursor.move_on_last(),
}
}
fn move_on_range_start<'txn>(
cursor: &mut RoCursor<'txn>,
start_bound: &Bound<Vec<u8>>,
) -> Result<Option<(&'txn [u8], &'txn [u8])>> {
match start_bound {
Bound::Included(start) => cursor.move_on_key_greater_than_or_equal_to(start),
Bound::Excluded(start) => match cursor.move_on_key_greater_than_or_equal_to(start)? {
Some((key, _)) if key == start => cursor.move_on_next(),
Some((key, val)) => Ok(Some((key, val))),
None => Ok(None),
},
Bound::Unbounded => cursor.move_on_first(),
}
}
pub struct RoRange<'txn> {
cursor: RoCursor<'txn>,
move_on_start: bool,
start_bound: Bound<Vec<u8>>,
end_bound: Bound<Vec<u8>>,
}
impl<'txn> RoRange<'txn> {
pub(crate) fn new(
cursor: RoCursor<'txn>,
start_bound: Bound<Vec<u8>>,
end_bound: Bound<Vec<u8>>,
) -> RoRange<'txn> {
RoRange {
cursor,
move_on_start: true,
start_bound,
end_bound,
}
}
}
impl<'txn> Iterator for RoRange<'txn> {
type Item = Result<(&'txn [u8], &'txn [u8])>;
fn next(&mut self) -> Option<Self::Item> {
let result = if self.move_on_start {
self.move_on_start = false;
move_on_range_start(&mut self.cursor, &mut self.start_bound)
} else {
self.cursor.move_on_next()
};
match result {
Ok(Some((key, data))) => {
let must_be_returned = match &self.end_bound {
Bound::Included(end) => key <= end,
Bound::Excluded(end) => key < end,
Bound::Unbounded => true,
};
if must_be_returned {
Some(Ok((key, data)))
} else {
None
}
}
Ok(None) => None,
Err(e) => Some(Err(e)),
}
}
fn last(mut self) -> Option<Self::Item> {
let result = if self.move_on_start {
move_on_range_end(&mut self.cursor, &self.end_bound)
} else {
match (
self.cursor.current(),
move_on_range_end(&mut self.cursor, &self.end_bound),
) {
(Ok(Some((ckey, _))), Ok(Some((key, data)))) if ckey != key => {
Ok(Some((key, data)))
}
(Ok(_), Ok(_)) => Ok(None),
(Err(e), _) | (_, Err(e)) => Err(e),
}
};
match result {
Ok(Some((key, data))) => {
let must_be_returned = match &self.start_bound {
Bound::Included(start) => key >= start,
Bound::Excluded(start) => key > start,
Bound::Unbounded => true,
};
if must_be_returned {
Some(Ok((key, data)))
} else {
None
}
}
Ok(None) => None,
Err(e) => Some(Err(e)),
}
}
}
pub struct RwRange<'txn> {
cursor: RwCursor<'txn>,
move_on_start: bool,
start_bound: Bound<Vec<u8>>,
end_bound: Bound<Vec<u8>>,
}
impl<'txn> RwRange<'txn> {
pub(crate) fn new(
cursor: RwCursor<'txn>,
start_bound: Bound<Vec<u8>>,
end_bound: Bound<Vec<u8>>,
) -> RwRange<'txn> {
RwRange {
cursor,
move_on_start: true,
start_bound,
end_bound,
}
}
/// Delete the entry the cursor is currently pointing to.
///
/// Returns `true` if the entry was successfully deleted.
///
/// # Safety
///
/// It is _[undefined behavior]_ to keep a reference of a value from this database
/// while modifying it.
///
/// > [Values returned from the database are valid only until a subsequent update operation,
/// or the end of the transaction.](http://www.lmdb.tech/doc/group__mdb.html#structMDB__val).
///
/// [undefined behavior]: https://doc.rust-lang.org/reference/behavior-considered-undefined.html
pub unsafe fn del_current(&mut self) -> Result<bool> {
self.cursor.del_current()
}
/// Write a new value to the current entry.
///
/// The given key **must** be equal to the one this cursor is pointing otherwise the database
/// can be put into an inconsistent state.
///
/// Returns `true` if the entry was successfully written.
///
/// > This is intended to be used when the new data is the same size as the old.
/// > Otherwise it will simply perform a delete of the old record followed by an insert.
///
/// # Safety
///
/// It is _[undefined behavior]_ to keep a reference of a value from this database while
/// modifying it, so you can't use the key/value that comes from the cursor to feed
/// this function.
///
/// In other words: Tranform the key and value that you borrow from this database into an owned
/// version of them i.e. `&str` into `String`.
///
/// > [Values returned from the database are valid only until a subsequent update operation,
/// or the end of the transaction.](http://www.lmdb.tech/doc/group__mdb.html#structMDB__val).
///
/// [undefined behavior]: https://doc.rust-lang.org/reference/behavior-considered-undefined.html
pub unsafe fn put_current<A, B>(&mut self, key: A, data: B) -> Result<bool>
where
A: AsRef<[u8]>,
B: AsRef<[u8]>,
{
self.cursor.put_current(key.as_ref(), data.as_ref())
}
/// Append the given key/value pair to the end of the database.
///
/// If a key is inserted that is less than any previous key a `KeyExist` error
/// is returned and the key is not inserted into the database.
///
/// # Safety
///
/// It is _[undefined behavior]_ to keep a reference of a value from this database while
/// modifying it, so you can't use the key/value that comes from the cursor to feed
/// this function.
///
/// In other words: Tranform the key and value that you borrow from this database into an owned
/// version of them i.e. `&str` into `String`.
///
/// > [Values returned from the database are valid only until a subsequent update operation,
/// or the end of the transaction.](http://www.lmdb.tech/doc/group__mdb.html#structMDB__val).
///
/// [undefined behavior]: https://doc.rust-lang.org/reference/behavior-considered-undefined.html
pub unsafe fn append<A, B>(&mut self, key: A, data: B) -> Result<()>
where
A: AsRef<[u8]>,
B: AsRef<[u8]>,
{
self.cursor.append(key.as_ref(), data.as_ref())
}
}
impl<'txn> Iterator for RwRange<'txn> {
type Item = Result<(&'txn [u8], &'txn [u8])>;
fn next(&mut self) -> Option<Self::Item> {
let result = if self.move_on_start {
self.move_on_start = false;
move_on_range_start(&mut self.cursor, &mut self.start_bound)
} else {
self.cursor.move_on_next()
};
match result {
Ok(Some((key, data))) => {
let must_be_returned = match self.end_bound {
Bound::Included(ref end) => key <= end,
Bound::Excluded(ref end) => key < end,
Bound::Unbounded => true,
};
if must_be_returned {
Some(Ok((key, data)))
} else {
None
}
}
Ok(None) => None,
Err(e) => Some(Err(e)),
}
}
fn last(mut self) -> Option<Self::Item> {
let result = if self.move_on_start {
move_on_range_end(&mut self.cursor, &self.end_bound)
} else {
match (
self.cursor.current(),
move_on_range_end(&mut self.cursor, &self.end_bound),
) {
(Ok(Some((ckey, _))), Ok(Some((key, data)))) if ckey != key => {
Ok(Some((key, data)))
}
(Ok(_), Ok(_)) => Ok(None),
(Err(e), _) | (_, Err(e)) => Err(e),
}
};
match result {
Ok(Some((key, data))) => {
let must_be_returned = match &self.start_bound {
Bound::Included(start) => key >= start,
Bound::Excluded(start) => key > start,
Bound::Unbounded => true,
};
if must_be_returned {
Some(Ok((key, data)))
} else {
None
}
}
Ok(None) => None,
Err(e) => Some(Err(e)),
}
}
}
pub struct RoRevRange<'txn> {
cursor: RoCursor<'txn>,
move_on_end: bool,
start_bound: Bound<Vec<u8>>,
end_bound: Bound<Vec<u8>>,
}
impl<'txn> RoRevRange<'txn> {
pub(crate) fn new(
cursor: RoCursor<'txn>,
start_bound: Bound<Vec<u8>>,
end_bound: Bound<Vec<u8>>,
) -> RoRevRange<'txn> {
RoRevRange {
cursor,
move_on_end: true,
start_bound,
end_bound,
}
}
}
impl<'txn> Iterator for RoRevRange<'txn> {
type Item = Result<(&'txn [u8], &'txn [u8])>;
fn next(&mut self) -> Option<Self::Item> {
let result = if self.move_on_end {
self.move_on_end = false;
move_on_range_end(&mut self.cursor, &self.end_bound)
} else {
self.cursor.move_on_prev()
};
match result {
Ok(Some((key, data))) => {
let must_be_returned = match &self.start_bound {
Bound::Included(start) => key >= start,
Bound::Excluded(start) => key > start,
Bound::Unbounded => true,
};
if must_be_returned {
Some(Ok((key, data)))
} else {
None
}
}
Ok(None) => None,
Err(e) => Some(Err(e)),
}
}
fn last(mut self) -> Option<Self::Item> {
let result = if self.move_on_end {
move_on_range_start(&mut self.cursor, &mut self.start_bound)
} else {
let current = self.cursor.current();
let start = move_on_range_start(&mut self.cursor, &mut self.start_bound);
match (current, start) {
(Ok(Some((ckey, _))), Ok(Some((key, data)))) if ckey != key => {
Ok(Some((key, data)))
}
(Ok(_), Ok(_)) => Ok(None),
(Err(e), _) | (_, Err(e)) => Err(e),
}
};
match result {
Ok(Some((key, data))) => {
let must_be_returned = match &self.end_bound {
Bound::Included(end) => key <= end,
Bound::Excluded(end) => key < end,
Bound::Unbounded => true,
};
if must_be_returned {
Some(Ok((key, data)))
} else {
None
}
}
Ok(None) => None,
Err(e) => Some(Err(e)),
}
}
}
pub struct RwRevRange<'txn> {
cursor: RwCursor<'txn>,
move_on_end: bool,
start_bound: Bound<Vec<u8>>,
end_bound: Bound<Vec<u8>>,
}
impl<'txn> RwRevRange<'txn> {
pub(crate) fn new(
cursor: RwCursor<'txn>,
start_bound: Bound<Vec<u8>>,
end_bound: Bound<Vec<u8>>,
) -> RwRevRange<'txn> {
RwRevRange {
cursor,
move_on_end: true,
start_bound,
end_bound,
}
}
/// Delete the entry the cursor is currently pointing to.
///
/// Returns `true` if the entry was successfully deleted.
///
/// # Safety
///
/// It is _[undefined behavior]_ to keep a reference of a value from this database
/// while modifying it.
///
/// > [Values returned from the database are valid only until a subsequent update operation,
/// or the end of the transaction.](http://www.lmdb.tech/doc/group__mdb.html#structMDB__val).
///
/// [undefined behavior]: https://doc.rust-lang.org/reference/behavior-considered-undefined.html
pub unsafe fn del_current(&mut self) -> Result<bool> {
self.cursor.del_current()
}
/// Write a new value to the current entry.
///
/// The given key **must** be equal to the one this cursor is pointing otherwise the database
/// can be put into an inconsistent state.
///
/// Returns `true` if the entry was successfully written.
///
/// > This is intended to be used when the new data is the same size as the old.
/// > Otherwise it will simply perform a delete of the old record followed by an insert.
///
/// # Safety
///
/// It is _[undefined behavior]_ to keep a reference of a value from this database while
/// modifying it, so you can't use the key/value that comes from the cursor to feed
/// this function.
///
/// In other words: Tranform the key and value that you borrow from this database into an owned
/// version of them i.e. `&str` into `String`.
///
/// > [Values returned from the database are valid only until a subsequent update operation,
/// or the end of the transaction.](http://www.lmdb.tech/doc/group__mdb.html#structMDB__val).
///
/// [undefined behavior]: https://doc.rust-lang.org/reference/behavior-considered-undefined.html
pub unsafe fn put_current<A, B>(&mut self, key: A, data: B) -> Result<bool>
where
A: AsRef<[u8]>,
B: AsRef<[u8]>,
{
self.cursor.put_current(key.as_ref(), data.as_ref())
}
/// Append the given key/value pair to the end of the database.
///
/// If a key is inserted that is less than any previous key a `KeyExist` error
/// is returned and the key is not inserted into the database.
///
/// # Safety
///
/// It is _[undefined behavior]_ to keep a reference of a value from this database while
/// modifying it, so you can't use the key/value that comes from the cursor to feed
/// this function.
///
/// In other words: Tranform the key and value that you borrow from this database into an owned
/// version of them i.e. `&str` into `String`.
///
/// > [Values returned from the database are valid only until a subsequent update operation,
/// or the end of the transaction.](http://www.lmdb.tech/doc/group__mdb.html#structMDB__val).
///
/// [undefined behavior]: https://doc.rust-lang.org/reference/behavior-considered-undefined.html
pub unsafe fn append<A, B>(&mut self, key: A, data: B) -> Result<()>
where
A: AsRef<[u8]>,
B: AsRef<[u8]>,
{
self.cursor.append(key.as_ref(), data.as_ref())
}
}
impl<'txn> Iterator for RwRevRange<'txn> {
type Item = Result<(&'txn [u8], &'txn [u8])>;
fn next(&mut self) -> Option<Self::Item> {
let result = if self.move_on_end {
self.move_on_end = false;
move_on_range_end(&mut self.cursor, &self.end_bound)
} else {
self.cursor.move_on_prev()
};
match result {
Ok(Some((key, data))) => {
let must_be_returned = match &self.start_bound {
Bound::Included(start) => key >= start,
Bound::Excluded(start) => key > start,
Bound::Unbounded => true,
};
if must_be_returned {
Some(Ok((key, data)))
} else {
None
}
}
Ok(None) => None,
Err(e) => Some(Err(e)),
}
}
fn last(mut self) -> Option<Self::Item> {
let result = if self.move_on_end {
move_on_range_start(&mut self.cursor, &mut self.start_bound)
} else {
let current = self.cursor.current();
let start = move_on_range_start(&mut self.cursor, &mut self.start_bound);
match (current, start) {
(Ok(Some((ckey, _))), Ok(Some((key, data)))) if ckey != key => {
Ok(Some((key, data)))
}
(Ok(_), Ok(_)) => Ok(None),
(Err(e), _) | (_, Err(e)) => Err(e),
}
};
match result {
Ok(Some((key, data))) => {
let must_be_returned = match &self.end_bound {
Bound::Included(end) => key <= end,
Bound::Excluded(end) => key < end,
Bound::Unbounded => true,
};
if must_be_returned {
Some(Ok((key, data)))
} else {
None
}
}
Ok(None) => None,
Err(e) => Some(Err(e)),
}
}
}