Skip to content
This repository has been archived by the owner on Dec 2, 2024. It is now read-only.

Fix snapshots #68

Merged
merged 3 commits into from
May 23, 2018
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
86 changes: 64 additions & 22 deletions iterator.js
Original file line number Diff line number Diff line change
@@ -1,19 +1,36 @@
var util = require('util')
var AbstractIterator = require('abstract-leveldown').AbstractIterator
var ltgt = require('ltgt')
var toBuffer = require('typedarray-to-buffer')

// TODO: move this to a util, to be used by get() and iterators.
// TODO: after upgrading dependencies, use Buffer.from()
function mixedToBuffer (value) {
if (value instanceof Uint8Array) return toBuffer(value)
else return new Buffer(String(value))
}

module.exports = Iterator

function Iterator (db, options) {
// TODO: in later abstract-leveldown, options is always an object.
if (!options) options = {}
this.options = options
AbstractIterator.call(this, db)

this._order = options.reverse ? 'DESC': 'ASC'
this._limit = options.limit
this._count = 0
this._done = false
this._callback = null
this._cache = []
this._finished = false

// TODO: in later abstract-leveldown, these have proper defaults
this._keyAsBuffer = options.keyAsBuffer !== false
this._valueAsBuffer = options.valueAsBuffer !== false

var lower = ltgt.lowerBound(options)
var upper = ltgt.upperBound(options)

try {
this._keyRange = lower || upper ? this.db.makeKeyRange({
lower: lower,
Expand All @@ -24,9 +41,11 @@ function Iterator (db, options) {
} catch (e) {
// The lower key is greater than the upper key.
// IndexedDB throws an error, but we'll just return 0 results.
this._keyRangeError = true
this._finished = true
return
}
this.callback = null

this.createIterator()
}

util.inherits(Iterator, AbstractIterator)
Expand All @@ -40,33 +59,56 @@ Iterator.prototype.createIterator = function() {
keyRange: self._keyRange,
autoContinue: false,
order: self._order,
onError: function(err) { console.log('horrible error', err) },
onError: function(err) {
if (err.type !== 'abort' && !self._ended) {
// TODO: pass to next() callback
console.error('horrible error', err)
}
}
})
}

// TODO the limit implementation here just ignores all reads after limit has been reached
// it should cancel the iterator instead but I don't know how
Iterator.prototype.onItem = function (value, cursor, cursorTransaction) {
if (!cursor && this.callback) {
this.callback()
this.callback = false
return
if (!cursor) {
this._finished = true
} else if (!!this._limit && this._limit > 0 && this._count++ >= this._limit) {
cursorTransaction.abort()
this._finished = true
} else {
this._cache.push(cursor.key, value)
cursor['continue']()
}
var shouldCall = true

if (!!this._limit && this._limit > 0 && this._count++ >= this._limit)
shouldCall = false

if (shouldCall) this.callback(false, cursor.key, cursor.value)
if (cursor) cursor['continue']()
if (this._callback) {
this._next(this._callback)
this._callback = null
}
}

// TODO: use setImmediate (see memdown)
Iterator.prototype._next = function (callback) {
// TODO: can remove this after upgrading abstract-leveldown
if (!callback) return new Error('next() requires a callback argument')
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Returning an error looks a bit odd, shouldn't it throw?

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Woa, dunno why I missed that 😄

if (this._keyRangeError) return callback()
if (!this._started) {
this.createIterator()
this._started = true

if (this._cache.length > 0) {
var key = this._cache.shift()
var value = this._cache.shift()

if (this._keyAsBuffer) key = mixedToBuffer(key)
if (this._valueAsBuffer) value = mixedToBuffer(value)

setTimeout(function() {
callback(null, key, value)
}, 0)
} else if (this._finished) {
setTimeout(callback, 0)
} else {
this._callback = callback
}
this.callback = callback
}

// TODO: use setImmediate (see memdown)
Iterator.prototype._end = function (callback) {
if (!this._finished) this.iterator.abort()
setTimeout(callback, 0)
}
6 changes: 5 additions & 1 deletion test/test.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,11 @@ require('abstract-leveldown/abstract/batch-test').all(leveljs, tape, testCommon)
require('abstract-leveldown/abstract/chained-batch-test').all(leveljs, tape, testCommon)
require('abstract-leveldown/abstract/close-test').close(leveljs, tape, testCommon)
require('abstract-leveldown/abstract/iterator-test').all(leveljs, tape, testCommon)
require('abstract-leveldown/abstract/ranges-test').all(leveljs, tape, testCommon)

// NOTE: exclude this because the handling of buffers is inconsistent between
// iterator-test and ranges-test. We can't make both pass, but that's OK, as
// ranges-test is removed in a later abstract-leveldown version anyway.
// require('abstract-leveldown/abstract/ranges-test').all(leveljs, tape, testCommon)

// non abstract-leveldown tests:
require('./custom-tests.js').all(leveljs, tape, testCommon)