2023-03-22 00:13:24 -04:00
|
|
|
// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
|
|
|
|
|
|
|
|
// @ts-ignore internal api
|
|
|
|
const {
|
|
|
|
AsyncGeneratorPrototype,
|
2023-05-03 07:44:00 -04:00
|
|
|
BigIntPrototypeToString,
|
|
|
|
ObjectFreeze,
|
|
|
|
ObjectGetPrototypeOf,
|
|
|
|
ObjectPrototypeIsPrototypeOf,
|
|
|
|
StringPrototypeReplace,
|
|
|
|
SymbolFor,
|
|
|
|
SymbolToStringTag,
|
|
|
|
Uint8ArrayPrototype,
|
2023-03-22 00:13:24 -04:00
|
|
|
} = globalThis.__bootstrap.primordials;
|
|
|
|
const core = Deno.core;
|
|
|
|
const ops = core.ops;
|
|
|
|
|
|
|
|
const encodeCursor: (
|
|
|
|
selector: [Deno.KvKey | null, Deno.KvKey | null, Deno.KvKey | null],
|
|
|
|
boundaryKey: Deno.KvKey,
|
|
|
|
) => string = (selector, boundaryKey) =>
|
|
|
|
ops.op_kv_encode_cursor(selector, boundaryKey);
|
|
|
|
|
2023-03-22 15:23:36 -04:00
|
|
|
async function openKv(path: string) {
|
2023-03-22 00:13:24 -04:00
|
|
|
const rid = await core.opAsync("op_kv_database_open", path);
|
2023-05-03 17:08:42 -04:00
|
|
|
return new Kv(rid, kvSymbol);
|
2023-03-22 00:13:24 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
interface RawKvEntry {
|
|
|
|
key: Deno.KvKey;
|
|
|
|
value: RawValue;
|
|
|
|
versionstamp: string;
|
|
|
|
}
|
|
|
|
|
|
|
|
type RawValue = {
|
|
|
|
kind: "v8";
|
|
|
|
value: Uint8Array;
|
|
|
|
} | {
|
|
|
|
kind: "bytes";
|
|
|
|
value: Uint8Array;
|
|
|
|
} | {
|
|
|
|
kind: "u64";
|
|
|
|
value: bigint;
|
|
|
|
};
|
|
|
|
|
2023-05-03 17:08:42 -04:00
|
|
|
const kvSymbol = Symbol("KvRid");
|
|
|
|
|
2023-03-22 00:13:24 -04:00
|
|
|
class Kv {
|
|
|
|
#rid: number;
|
|
|
|
|
2023-05-03 17:08:42 -04:00
|
|
|
constructor(rid: number = undefined, symbol: symbol = undefined) {
|
|
|
|
if (kvSymbol !== symbol) {
|
|
|
|
throw new TypeError(
|
|
|
|
"Deno.Kv can not be constructed, use Deno.openKv instead.",
|
|
|
|
);
|
|
|
|
}
|
2023-03-22 00:13:24 -04:00
|
|
|
this.#rid = rid;
|
|
|
|
}
|
|
|
|
|
|
|
|
atomic() {
|
|
|
|
return new AtomicOperation(this.#rid);
|
|
|
|
}
|
|
|
|
|
|
|
|
async get(key: Deno.KvKey, opts?: { consistency?: Deno.KvConsistencyLevel }) {
|
|
|
|
const [entries]: [RawKvEntry[]] = await core.opAsync(
|
|
|
|
"op_kv_snapshot_read",
|
|
|
|
this.#rid,
|
|
|
|
[[
|
|
|
|
null,
|
|
|
|
key,
|
|
|
|
null,
|
|
|
|
1,
|
|
|
|
false,
|
|
|
|
null,
|
|
|
|
]],
|
|
|
|
opts?.consistency ?? "strong",
|
|
|
|
);
|
|
|
|
if (!entries.length) {
|
|
|
|
return {
|
|
|
|
key,
|
|
|
|
value: null,
|
|
|
|
versionstamp: null,
|
|
|
|
};
|
|
|
|
}
|
|
|
|
return deserializeValue(entries[0]);
|
|
|
|
}
|
|
|
|
|
2023-03-24 08:06:27 -04:00
|
|
|
async getMany(
|
|
|
|
keys: Deno.KvKey[],
|
|
|
|
opts?: { consistency?: Deno.KvConsistencyLevel },
|
2023-03-30 16:52:31 -04:00
|
|
|
): Promise<Deno.KvEntry<unknown>[]> {
|
2023-03-24 08:06:27 -04:00
|
|
|
const ranges: RawKvEntry[][] = await core.opAsync(
|
|
|
|
"op_kv_snapshot_read",
|
|
|
|
this.#rid,
|
|
|
|
keys.map((key) => [
|
|
|
|
null,
|
|
|
|
key,
|
|
|
|
null,
|
|
|
|
1,
|
|
|
|
false,
|
|
|
|
null,
|
|
|
|
]),
|
|
|
|
opts?.consistency ?? "strong",
|
|
|
|
);
|
|
|
|
return ranges.map((entries, i) => {
|
|
|
|
if (!entries.length) {
|
|
|
|
return {
|
|
|
|
key: keys[i],
|
|
|
|
value: null,
|
|
|
|
versionstamp: null,
|
|
|
|
};
|
|
|
|
}
|
|
|
|
return deserializeValue(entries[0]);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2023-03-22 00:13:24 -04:00
|
|
|
async set(key: Deno.KvKey, value: unknown) {
|
|
|
|
value = serializeValue(value);
|
|
|
|
|
|
|
|
const checks: Deno.AtomicCheck[] = [];
|
|
|
|
const mutations = [
|
|
|
|
[key, "set", value],
|
|
|
|
];
|
|
|
|
|
2023-03-30 14:57:21 -04:00
|
|
|
const versionstamp = await core.opAsync(
|
2023-03-22 00:13:24 -04:00
|
|
|
"op_kv_atomic_write",
|
|
|
|
this.#rid,
|
|
|
|
checks,
|
|
|
|
mutations,
|
|
|
|
[],
|
|
|
|
);
|
2023-03-30 14:57:21 -04:00
|
|
|
if (versionstamp === null) throw new TypeError("Failed to set value");
|
2023-04-27 10:59:02 -04:00
|
|
|
return { ok: true, versionstamp };
|
2023-03-22 00:13:24 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
async delete(key: Deno.KvKey) {
|
|
|
|
const checks: Deno.AtomicCheck[] = [];
|
|
|
|
const mutations = [
|
|
|
|
[key, "delete", null],
|
|
|
|
];
|
|
|
|
|
|
|
|
const result = await core.opAsync(
|
|
|
|
"op_kv_atomic_write",
|
|
|
|
this.#rid,
|
|
|
|
checks,
|
|
|
|
mutations,
|
|
|
|
[],
|
|
|
|
);
|
|
|
|
if (!result) throw new TypeError("Failed to set value");
|
|
|
|
}
|
|
|
|
|
|
|
|
list(
|
|
|
|
selector: Deno.KvListSelector,
|
|
|
|
options: {
|
|
|
|
limit?: number;
|
|
|
|
batchSize?: number;
|
|
|
|
cursor?: string;
|
|
|
|
reverse?: boolean;
|
|
|
|
consistency?: Deno.KvConsistencyLevel;
|
|
|
|
} = {},
|
|
|
|
): KvListIterator {
|
|
|
|
if (options.limit !== undefined && options.limit <= 0) {
|
|
|
|
throw new Error("limit must be positive");
|
|
|
|
}
|
|
|
|
|
|
|
|
let batchSize = options.batchSize ?? (options.limit ?? 100);
|
|
|
|
if (batchSize <= 0) throw new Error("batchSize must be positive");
|
2023-03-25 03:29:36 -04:00
|
|
|
if (options.batchSize === undefined && batchSize > 500) batchSize = 500;
|
2023-03-22 00:13:24 -04:00
|
|
|
|
|
|
|
return new KvListIterator({
|
|
|
|
limit: options.limit,
|
|
|
|
selector,
|
|
|
|
cursor: options.cursor,
|
|
|
|
reverse: options.reverse ?? false,
|
|
|
|
consistency: options.consistency ?? "strong",
|
|
|
|
batchSize,
|
|
|
|
pullBatch: this.#pullBatch(batchSize),
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
#pullBatch(batchSize: number): (
|
|
|
|
selector: Deno.KvListSelector,
|
|
|
|
cursor: string | undefined,
|
|
|
|
reverse: boolean,
|
|
|
|
consistency: Deno.KvConsistencyLevel,
|
2023-03-30 16:52:31 -04:00
|
|
|
) => Promise<Deno.KvEntry<unknown>[]> {
|
2023-03-22 00:13:24 -04:00
|
|
|
return async (selector, cursor, reverse, consistency) => {
|
|
|
|
const [entries]: [RawKvEntry[]] = await core.opAsync(
|
|
|
|
"op_kv_snapshot_read",
|
|
|
|
this.#rid,
|
|
|
|
[[
|
|
|
|
"prefix" in selector ? selector.prefix : null,
|
|
|
|
"start" in selector ? selector.start : null,
|
|
|
|
"end" in selector ? selector.end : null,
|
|
|
|
batchSize,
|
|
|
|
reverse,
|
|
|
|
cursor,
|
|
|
|
]],
|
|
|
|
consistency,
|
|
|
|
);
|
|
|
|
|
|
|
|
return entries.map(deserializeValue);
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
close() {
|
|
|
|
core.close(this.#rid);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
class AtomicOperation {
|
|
|
|
#rid: number;
|
|
|
|
|
|
|
|
#checks: [Deno.KvKey, string | null][] = [];
|
|
|
|
#mutations: [Deno.KvKey, string, RawValue | null][] = [];
|
|
|
|
|
|
|
|
constructor(rid: number) {
|
|
|
|
this.#rid = rid;
|
|
|
|
}
|
|
|
|
|
|
|
|
check(...checks: Deno.AtomicCheck[]): this {
|
|
|
|
for (const check of checks) {
|
2023-04-11 10:36:01 -04:00
|
|
|
this.#checks.push([check.key, check.versionstamp]);
|
2023-03-22 00:13:24 -04:00
|
|
|
}
|
|
|
|
return this;
|
|
|
|
}
|
|
|
|
|
|
|
|
mutate(...mutations: Deno.KvMutation[]): this {
|
|
|
|
for (const mutation of mutations) {
|
2023-04-11 10:36:01 -04:00
|
|
|
const key = mutation.key;
|
2023-03-22 00:13:24 -04:00
|
|
|
let type: string;
|
|
|
|
let value: RawValue | null;
|
|
|
|
switch (mutation.type) {
|
|
|
|
case "delete":
|
|
|
|
type = "delete";
|
|
|
|
if (mutation.value) {
|
|
|
|
throw new TypeError("invalid mutation 'delete' with value");
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case "set":
|
|
|
|
case "sum":
|
|
|
|
case "min":
|
|
|
|
case "max":
|
|
|
|
type = mutation.type;
|
|
|
|
if (!("value" in mutation)) {
|
|
|
|
throw new TypeError(`invalid mutation '${type}' without value`);
|
|
|
|
}
|
|
|
|
value = serializeValue(mutation.value);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
throw new TypeError("Invalid mutation type");
|
|
|
|
}
|
|
|
|
this.#mutations.push([key, type, value]);
|
|
|
|
}
|
|
|
|
return this;
|
|
|
|
}
|
|
|
|
|
2023-04-26 13:14:01 -04:00
|
|
|
sum(key: Deno.KvKey, n: bigint): this {
|
|
|
|
this.#mutations.push([key, "sum", serializeValue(new KvU64(n))]);
|
|
|
|
return this;
|
|
|
|
}
|
|
|
|
|
|
|
|
min(key: Deno.KvKey, n: bigint): this {
|
|
|
|
this.#mutations.push([key, "min", serializeValue(new KvU64(n))]);
|
|
|
|
return this;
|
|
|
|
}
|
|
|
|
|
|
|
|
max(key: Deno.KvKey, n: bigint): this {
|
|
|
|
this.#mutations.push([key, "max", serializeValue(new KvU64(n))]);
|
|
|
|
return this;
|
|
|
|
}
|
|
|
|
|
2023-03-22 00:13:24 -04:00
|
|
|
set(key: Deno.KvKey, value: unknown): this {
|
2023-04-11 10:36:01 -04:00
|
|
|
this.#mutations.push([key, "set", serializeValue(value)]);
|
2023-03-22 00:13:24 -04:00
|
|
|
return this;
|
|
|
|
}
|
|
|
|
|
|
|
|
delete(key: Deno.KvKey): this {
|
2023-04-11 10:36:01 -04:00
|
|
|
this.#mutations.push([key, "delete", null]);
|
2023-03-22 00:13:24 -04:00
|
|
|
return this;
|
|
|
|
}
|
|
|
|
|
2023-04-27 10:59:02 -04:00
|
|
|
async commit(): Promise<Deno.KvCommitResult | Deno.KvCommitError> {
|
2023-03-30 14:57:21 -04:00
|
|
|
const versionstamp = await core.opAsync(
|
2023-03-22 00:13:24 -04:00
|
|
|
"op_kv_atomic_write",
|
|
|
|
this.#rid,
|
|
|
|
this.#checks,
|
|
|
|
this.#mutations,
|
|
|
|
[], // TODO(@losfair): enqueue
|
|
|
|
);
|
2023-04-27 10:59:02 -04:00
|
|
|
if (versionstamp === null) return { ok: false };
|
|
|
|
return { ok: true, versionstamp };
|
2023-03-22 00:13:24 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
then() {
|
|
|
|
throw new TypeError(
|
|
|
|
"`Deno.AtomicOperation` is not a promise. Did you forget to call `commit()`?",
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-04-25 16:43:39 -04:00
|
|
|
const MIN_U64 = BigInt("0");
|
|
|
|
const MAX_U64 = BigInt("0xffffffffffffffff");
|
2023-03-22 00:13:24 -04:00
|
|
|
|
|
|
|
class KvU64 {
|
2023-05-03 07:44:00 -04:00
|
|
|
value: bigint;
|
2023-03-22 00:13:24 -04:00
|
|
|
|
|
|
|
constructor(value: bigint) {
|
|
|
|
if (typeof value !== "bigint") {
|
|
|
|
throw new TypeError("value must be a bigint");
|
|
|
|
}
|
|
|
|
if (value < MIN_U64) {
|
|
|
|
throw new RangeError("value must be a positive bigint");
|
|
|
|
}
|
|
|
|
if (value > MAX_U64) {
|
2023-05-03 07:44:00 -04:00
|
|
|
throw new RangeError("value must fit in a 64-bit unsigned integer");
|
2023-03-22 00:13:24 -04:00
|
|
|
}
|
|
|
|
this.value = value;
|
|
|
|
Object.freeze(this);
|
|
|
|
}
|
2023-05-03 07:44:00 -04:00
|
|
|
|
|
|
|
valueOf() {
|
|
|
|
return this.value;
|
|
|
|
}
|
|
|
|
|
|
|
|
toString() {
|
|
|
|
return BigIntPrototypeToString(this.value);
|
|
|
|
}
|
|
|
|
|
|
|
|
get [SymbolToStringTag]() {
|
|
|
|
return "Deno.KvU64";
|
|
|
|
}
|
|
|
|
|
|
|
|
[SymbolFor("Deno.privateCustomInspect")](inspect, inspectOptions) {
|
|
|
|
return StringPrototypeReplace(
|
|
|
|
inspect(Object(this.value), inspectOptions),
|
|
|
|
"BigInt",
|
|
|
|
"Deno.KvU64",
|
|
|
|
);
|
|
|
|
}
|
2023-03-22 00:13:24 -04:00
|
|
|
}
|
|
|
|
|
2023-03-30 16:52:31 -04:00
|
|
|
function deserializeValue(entry: RawKvEntry): Deno.KvEntry<unknown> {
|
2023-03-22 00:13:24 -04:00
|
|
|
const { kind, value } = entry.value;
|
|
|
|
switch (kind) {
|
|
|
|
case "v8":
|
|
|
|
return {
|
|
|
|
...entry,
|
2023-04-29 11:43:07 -04:00
|
|
|
value: core.deserialize(value, { forStorage: true }),
|
2023-03-22 00:13:24 -04:00
|
|
|
};
|
|
|
|
case "bytes":
|
|
|
|
return {
|
|
|
|
...entry,
|
|
|
|
value,
|
|
|
|
};
|
|
|
|
case "u64":
|
|
|
|
return {
|
|
|
|
...entry,
|
|
|
|
value: new KvU64(value),
|
|
|
|
};
|
|
|
|
default:
|
|
|
|
throw new TypeError("Invalid value type");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function serializeValue(value: unknown): RawValue {
|
2023-05-03 07:44:00 -04:00
|
|
|
if (ObjectPrototypeIsPrototypeOf(Uint8ArrayPrototype, value)) {
|
2023-03-22 00:13:24 -04:00
|
|
|
return {
|
|
|
|
kind: "bytes",
|
|
|
|
value,
|
|
|
|
};
|
2023-05-03 07:44:00 -04:00
|
|
|
} else if (ObjectPrototypeIsPrototypeOf(KvU64.prototype, value)) {
|
2023-03-22 00:13:24 -04:00
|
|
|
return {
|
|
|
|
kind: "u64",
|
2023-05-03 07:44:00 -04:00
|
|
|
value: value.valueOf(),
|
2023-03-22 00:13:24 -04:00
|
|
|
};
|
|
|
|
} else {
|
|
|
|
return {
|
|
|
|
kind: "v8",
|
2023-04-29 11:43:07 -04:00
|
|
|
value: core.serialize(value, { forStorage: true }),
|
2023-03-22 00:13:24 -04:00
|
|
|
};
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// This gets the %AsyncIteratorPrototype% object (which exists but is not a
|
|
|
|
// global). We extend the KvListIterator iterator from, so that we immediately
|
|
|
|
// support async iterator helpers once they land. The %AsyncIterator% does not
|
|
|
|
// yet actually exist however, so right now the AsyncIterator binding refers to
|
|
|
|
// %Object%. I know.
|
|
|
|
// Once AsyncIterator is a global, we can just use it (from primordials), rather
|
|
|
|
// than doing this here.
|
|
|
|
const AsyncIteratorPrototype = ObjectGetPrototypeOf(AsyncGeneratorPrototype);
|
|
|
|
const AsyncIterator = AsyncIteratorPrototype.constructor;
|
|
|
|
|
|
|
|
class KvListIterator extends AsyncIterator
|
2023-03-30 16:52:31 -04:00
|
|
|
implements AsyncIterator<Deno.KvEntry<unknown>> {
|
2023-03-22 00:13:24 -04:00
|
|
|
#selector: Deno.KvListSelector;
|
2023-03-30 16:52:31 -04:00
|
|
|
#entries: Deno.KvEntry<unknown>[] | null = null;
|
2023-03-22 00:13:24 -04:00
|
|
|
#cursorGen: (() => string) | null = null;
|
|
|
|
#done = false;
|
|
|
|
#lastBatch = false;
|
|
|
|
#pullBatch: (
|
|
|
|
selector: Deno.KvListSelector,
|
|
|
|
cursor: string | undefined,
|
|
|
|
reverse: boolean,
|
|
|
|
consistency: Deno.KvConsistencyLevel,
|
2023-03-30 16:52:31 -04:00
|
|
|
) => Promise<Deno.KvEntry<unknown>[]>;
|
2023-03-22 00:13:24 -04:00
|
|
|
#limit: number | undefined;
|
|
|
|
#count = 0;
|
|
|
|
#reverse: boolean;
|
|
|
|
#batchSize: number;
|
|
|
|
#consistency: Deno.KvConsistencyLevel;
|
|
|
|
|
|
|
|
constructor(
|
|
|
|
{ limit, selector, cursor, reverse, consistency, batchSize, pullBatch }: {
|
|
|
|
limit?: number;
|
|
|
|
selector: Deno.KvListSelector;
|
|
|
|
cursor?: string;
|
|
|
|
reverse: boolean;
|
|
|
|
batchSize: number;
|
|
|
|
consistency: Deno.KvConsistencyLevel;
|
|
|
|
pullBatch: (
|
|
|
|
selector: Deno.KvListSelector,
|
|
|
|
cursor: string | undefined,
|
|
|
|
reverse: boolean,
|
|
|
|
consistency: Deno.KvConsistencyLevel,
|
2023-03-30 16:52:31 -04:00
|
|
|
) => Promise<Deno.KvEntry<unknown>[]>;
|
2023-03-22 00:13:24 -04:00
|
|
|
},
|
|
|
|
) {
|
|
|
|
super();
|
|
|
|
let prefix: Deno.KvKey | undefined;
|
|
|
|
let start: Deno.KvKey | undefined;
|
|
|
|
let end: Deno.KvKey | undefined;
|
|
|
|
if ("prefix" in selector && selector.prefix !== undefined) {
|
2023-05-03 07:44:00 -04:00
|
|
|
prefix = ObjectFreeze([...selector.prefix]);
|
2023-03-22 00:13:24 -04:00
|
|
|
}
|
|
|
|
if ("start" in selector && selector.start !== undefined) {
|
2023-05-03 07:44:00 -04:00
|
|
|
start = ObjectFreeze([...selector.start]);
|
2023-03-22 00:13:24 -04:00
|
|
|
}
|
|
|
|
if ("end" in selector && selector.end !== undefined) {
|
2023-05-03 07:44:00 -04:00
|
|
|
end = ObjectFreeze([...selector.end]);
|
2023-03-22 00:13:24 -04:00
|
|
|
}
|
|
|
|
if (prefix) {
|
|
|
|
if (start && end) {
|
|
|
|
throw new TypeError(
|
|
|
|
"Selector can not specify both 'start' and 'end' key when specifying 'prefix'.",
|
|
|
|
);
|
|
|
|
}
|
|
|
|
if (start) {
|
|
|
|
this.#selector = { prefix, start };
|
|
|
|
} else if (end) {
|
|
|
|
this.#selector = { prefix, end };
|
|
|
|
} else {
|
|
|
|
this.#selector = { prefix };
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if (start && end) {
|
|
|
|
this.#selector = { start, end };
|
|
|
|
} else {
|
|
|
|
throw new TypeError(
|
|
|
|
"Selector must specify either 'prefix' or both 'start' and 'end' key.",
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
Object.freeze(this.#selector);
|
|
|
|
this.#pullBatch = pullBatch;
|
|
|
|
this.#limit = limit;
|
|
|
|
this.#reverse = reverse;
|
|
|
|
this.#consistency = consistency;
|
|
|
|
this.#batchSize = batchSize;
|
|
|
|
this.#cursorGen = cursor ? () => cursor : null;
|
|
|
|
}
|
|
|
|
|
|
|
|
get cursor(): string {
|
|
|
|
if (this.#cursorGen === null) {
|
|
|
|
throw new Error("Cannot get cursor before first iteration");
|
|
|
|
}
|
|
|
|
|
|
|
|
return this.#cursorGen();
|
|
|
|
}
|
|
|
|
|
2023-03-30 16:52:31 -04:00
|
|
|
async next(): Promise<IteratorResult<Deno.KvEntry<unknown>>> {
|
2023-03-22 00:13:24 -04:00
|
|
|
// Fused or limit exceeded
|
|
|
|
if (
|
|
|
|
this.#done ||
|
|
|
|
(this.#limit !== undefined && this.#count >= this.#limit)
|
|
|
|
) {
|
|
|
|
return { done: true, value: undefined };
|
|
|
|
}
|
|
|
|
|
|
|
|
// Attempt to fill the buffer
|
|
|
|
if (!this.#entries?.length && !this.#lastBatch) {
|
|
|
|
const batch = await this.#pullBatch(
|
|
|
|
this.#selector,
|
|
|
|
this.#cursorGen ? this.#cursorGen() : undefined,
|
|
|
|
this.#reverse,
|
|
|
|
this.#consistency,
|
|
|
|
);
|
|
|
|
|
|
|
|
// Reverse the batch so we can pop from the end
|
|
|
|
batch.reverse();
|
|
|
|
this.#entries = batch;
|
|
|
|
|
|
|
|
// Last batch, do not attempt to pull more
|
|
|
|
if (batch.length < this.#batchSize) {
|
|
|
|
this.#lastBatch = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
const entry = this.#entries?.pop();
|
|
|
|
if (!entry) {
|
|
|
|
this.#done = true;
|
|
|
|
this.#cursorGen = () => "";
|
|
|
|
return { done: true, value: undefined };
|
|
|
|
}
|
|
|
|
|
|
|
|
this.#cursorGen = () => {
|
|
|
|
const selector = this.#selector;
|
|
|
|
return encodeCursor([
|
|
|
|
"prefix" in selector ? selector.prefix : null,
|
|
|
|
"start" in selector ? selector.start : null,
|
|
|
|
"end" in selector ? selector.end : null,
|
|
|
|
], entry.key);
|
|
|
|
};
|
|
|
|
this.#count++;
|
|
|
|
return {
|
|
|
|
done: false,
|
|
|
|
value: entry,
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2023-03-30 16:52:31 -04:00
|
|
|
[Symbol.asyncIterator](): AsyncIterator<Deno.KvEntry<unknown>> {
|
2023-03-22 00:13:24 -04:00
|
|
|
return this;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-03-22 15:23:36 -04:00
|
|
|
export { Kv, KvListIterator, KvU64, openKv };
|