silverbullet/lib/data/datastore.ts

122 lines
3.0 KiB
TypeScript
Raw Normal View History

import { applyQueryNoFilterKV } from "$sb/lib/query.ts";
import { FunctionMap, KV, KvKey, KvQuery } from "$type/types.ts";
import { builtinFunctions } from "$lib/builtin_query_functions.ts";
import { KvPrimitives } from "./kv_primitives.ts";
import { evalQueryExpression } from "$sb/lib/query_expression.ts";
2023-09-04 03:15:17 +08:00
/**
* This is the data store class you'll actually want to use, wrapping the primitives
* in a more user-friendly way
*/
export class DataStore {
constructor(
readonly kv: KvPrimitives,
public functionMap: FunctionMap = builtinFunctions,
) {
}
async get<T = any>(key: KvKey): Promise<T | null> {
return (await this.batchGet([key]))[0];
2023-09-04 03:15:17 +08:00
}
batchGet<T = any>(keys: KvKey[]): Promise<(T | null)[]> {
2024-01-14 01:12:48 +08:00
if (keys.length === 0) {
return Promise.resolve([]);
}
return this.kv.batchGet(keys);
2023-09-04 03:15:17 +08:00
}
set(key: KvKey, value: any): Promise<void> {
return this.batchSet([{ key, value }]);
2023-09-04 03:15:17 +08:00
}
batchSet<T = any>(entries: KV<T>[]): Promise<void> {
2024-01-14 01:12:48 +08:00
if (entries.length === 0) {
return Promise.resolve();
}
const allKeyStrings = new Set<string>();
const uniqueEntries: KV[] = [];
for (const { key, value } of entries) {
const keyString = JSON.stringify(key);
if (allKeyStrings.has(keyString)) {
console.warn(`Duplicate key ${keyString} in batchSet, skipping`);
} else {
allKeyStrings.add(keyString);
uniqueEntries.push({ key, value });
}
}
return this.kv.batchSet(uniqueEntries);
2023-09-04 03:15:17 +08:00
}
delete(key: KvKey): Promise<void> {
return this.batchDelete([key]);
2023-09-04 03:15:17 +08:00
}
batchDelete(keys: KvKey[]): Promise<void> {
2024-01-14 01:12:48 +08:00
if (keys.length === 0) {
return Promise.resolve();
}
return this.kv.batchDelete(keys);
2023-09-04 03:15:17 +08:00
}
async query<T = any>(
query: KvQuery,
variables: Record<string, any> = {},
): Promise<KV<T>[]> {
const results: KV<T>[] = [];
2023-09-04 03:15:17 +08:00
let itemCount = 0;
// Accumulate results
let limit = Infinity;
if (query.limit) {
limit = await evalQueryExpression(
query.limit,
{},
variables,
this.functionMap,
);
}
for await (
const entry of this.kv.query(query)
) {
2023-09-04 03:15:17 +08:00
// Filter
if (
query.filter &&
!await evalQueryExpression(
query.filter,
entry.value,
variables,
this.functionMap,
)
) {
2023-09-04 03:15:17 +08:00
continue;
}
results.push(entry);
itemCount++;
// Stop when the limit has been reached
2023-10-03 22:54:03 +08:00
if (itemCount === limit && !query.orderBy) {
// Only break when not also ordering in which case we need all results
2023-09-04 03:15:17 +08:00
break;
}
}
// Apply order by, limit, and select
return applyQueryNoFilterKV(
query,
results,
variables,
this.functionMap,
);
}
2023-09-04 03:15:17 +08:00
async queryDelete(
query: KvQuery,
variables: Record<string, any> = {},
): Promise<void> {
const keys: KvKey[] = [];
for (
const { key } of await this.query(query, variables)
) {
keys.push(key);
2023-09-04 03:15:17 +08:00
}
return this.batchDelete(keys);
}
2023-09-04 03:15:17 +08:00
}