-
Notifications
You must be signed in to change notification settings - Fork 0
/
mod.ts
91 lines (72 loc) · 2.76 KB
/
mod.ts
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
// deno-lint-ignore-file no-explicit-any
import type { StorageArea, AllowedKey, Key } from 'https://ghuc.cc/qwtel/kv-storage-interface/index.d.ts';
import { encodeKey, decodeKey, throwForDisallowedKey } from 'https://cdn.skypack.dev/idb-key-to-string?dts';
import * as Structured from 'https://ghuc.cc/worker-tools/structured-json/index.ts';
import type { Adapter, DBProtocol, AdapterClass, DB_URL } from './adapters/mod.ts';
const OLD_DEFAULT_URL_KEY = 'DENO_STORAGE_AREA__DEFAULT_URL';
const DEFAULT_URL_KEY = 'DEFAULT_KV_URL';
const DEFAULT_STORAGE_AREA_NAME = 'default';
export interface DenoStorageAreaOptions {
url?: DB_URL,
[k: string]: any,
}
export class DenoStorageArea implements StorageArea {
#store: Adapter;
static defaultURL?: DB_URL;
constructor(name: string = DEFAULT_STORAGE_AREA_NAME, options: DenoStorageAreaOptions = {}) {
const dbURL = options.url
|| DenoStorageArea.defaultURL
|| Reflect.get(self, DEFAULT_URL_KEY)
|| Reflect.get(self, OLD_DEFAULT_URL_KEY)
|| Deno.env.get(DEFAULT_URL_KEY)
|| Deno.env.get(OLD_DEFAULT_URL_KEY)
|| 'sqlite:https://';
const { protocol } = new URL(dbURL);
const adapters: Map<DBProtocol, AdapterClass> = (<any>globalThis).deno_storage_area__adapters || new Map()
const AdapterCtor = adapters.get(protocol as DBProtocol);
if (!AdapterCtor) {
throw Error(`Adapter for database protocol '${protocol}' not registered. Try importing 'adapters/${protocol.replace(':', '')}.ts'`);
}
this.#store = new AdapterCtor({ area: name, url: dbURL });
}
async get<T>(key: AllowedKey): Promise<T | undefined> {
throwForDisallowedKey(key);
const s = await this.#store.get(encodeKey(key))
return s && Structured.parse(s);
}
async set<T>(key: AllowedKey, value: T | undefined): Promise<void> {
throwForDisallowedKey(key);
if (value === undefined) {
await this.#store.delete(encodeKey(key));
} else {
await this.#store.set(encodeKey(key), Structured.stringify(value));
}
}
async delete(key: AllowedKey) {
throwForDisallowedKey(key);
await this.#store.delete(encodeKey(key));
}
async clear() {
await this.#store.clear();
}
async *keys(): AsyncGenerator<Key> {
for await (const key of this.#store.keys()) {
yield decodeKey(key);
}
}
async *values<T>(): AsyncGenerator<T> {
for await (const value of this.#store.values()) {
yield Structured.parse(value);
}
}
async *entries<T>(): AsyncGenerator<[Key, T]> {
for await (const [key, value] of this.#store.entries()) {
yield [decodeKey(key), Structured.parse(value)];
}
}
backingStore() {
return this.#store.backingStore();
}
}
export type { AllowedKey, Key, DBProtocol, DB_URL };
export { DenoStorageArea as StorageArea };