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 |
x1
x4
x4
x4
x4
x4
x4
x4
x4
x4
x4
x1
x4
x4
x4
x4
x51
x51
x51
x106
x53
x53
x53
x53
x51
x52
x52
x95
x51
x4
x4
x8
x8
x8
x8
x20
x10
x10
x8
x8
x55
x275
x55
x55
x55
x55
x331
x331
x55
x55
x233
x233
x233
x55
x55
x90
x90
x55
x55
x269
x269
x55
x55
x55
x55
x139
x556
x139
x139
x55
x55
x459
x153
x55
x55
x8
x8
x8
x8
x263
x263
x8
x8
x8
x8
x99
x99
x8
x8
x8
x8
x8
x8
x125
x125
x8
x8
x8
x8
x12
x12
x4
x4
x4
x4
x153
x153
x4
x4
x390
x130
x153
x177
x177
x153
x130
x4
x4
x48
x48
x204
x153
x153
x51
x51
x51
x52
x52
x53
x53
x53
x153
x48
x394
x871
x356
x89
x127
x128
x128
x127
x123
x267
x89
x84
x84
x84
x84
x48
x56
x56
x48
x4
x4
x9
x27
x9
x46
x54
x60
x12
x12
x27
x9
x9
x4
x4
x7
x21
x7
x7
x7
x7
x24
x8
x8
x9
x9
x21
x7
x7
x4
x4
x37
x111
x148
x37
x264
x66
x69
x69
x69
x69
x69
x69
x111
x37
x37
x4
x4
x10
x30
x10
x10
x36
x12
x12
x14
x14
x70
x14
x30
x10
x10
x4
x4
x46
x192
x48
x46
x48
x48
x86
x46
x4
x4
x49
x244
x61
x49
x216
x54
x54
x89
x49
x208
x52
x52
x49
x64
x64
x49
x49
x4
x4
x10
x10
x52
x13
x13
x13
x10
x4
x4
x12
x14
x14
x12
x13
x52
x13
x13
x52
x13
x12
x19
x76
x19
x19
x12
x12
x48
x12
x20
x48
x48
x12
x12
x12
x4
x4
x4
x4
x10
x10
x4
x4
x4
x4
x4
x31
x31
x31
x31
x31
x58
x58
x456
x58
x232
x371
x31
x63
x63
x63
x31
x93
x31
x31
x31
x4 |
I
I
I
|
import type { key, Store, version } from "./store/store.ts"
import type { Logger } from "@libs/logger"
import { ulid } from "@std/ulid"
import type { Arg, Arrayable, callback, DeepPartial, Nullable, record, rw } from "@libs/typing"
import { is, schema } from "./is/mod.ts"
export type { _model, DeepPartial, Logger, Nullable, ulid }
export type id = ReturnType<typeof ulid>
export type shape = is.ZodRawShape
const _model = {
id: is.string().describe("Unique identifier. @readonly"),
created: is.number().int().min(0).nullable().default(null).describe("Creation timestamp. @readonly"),
updated: is.number().int().min(0).nullable().default(null).describe("Last update timestamp. @readonly"),
} as {
id: is.ZodString
created: is.ZodDefault<is.ZodNullable<is.ZodNumber>>
updated: is.ZodDefault<is.ZodNullable<is.ZodNumber>>
}
const model = is.object(_model) as is.ZodObject<typeof _model>
export type model = is.infer<typeof model>
export type model_extended<U extends {}> = is.infer<is.ZodObject<U>> & model
export class Resource<T extends model> {
constructor(data: DeepPartial<T>)
constructor(id?: Nullable<id>)
constructor(id?: Nullable<id> | DeepPartial<T>) {
const { promise, resolve, reject } = Promise.withResolvers<this>()
this.ready = promise
if ((typeof id === "string") && (Resource.#cache.has(id))) {
Resource.log?.with({ id }).debug("restored from cache")
const resource = Resource.#cache.get(id)!.deref() as Resource<T>
resolve(resource as this)
return resource
}
if (!this.store) {
throw new ReferenceError(`${this.constructor.name} has no store instance associated. Was constructor extended using Resource.with() method ?`)
}
this.#fetch(resolve, reject, id)
}
static #cache = new Map<id, WeakRef<Resource<rw>>>()
static #gc = new FinalizationRegistry(Resource.uncache)
static uncache(id: id) {
Resource.log?.with({ id }).debug("garbage collected")
Resource.#cache.delete(id)
}
readonly ready: Promise<this>
#_data = { id: null as unknown as id, created: null, updated: null } as T
#_data_readonly = Object.freeze(this.#_data)
get #data() {
return this.#_data
}
set #data(data: T) {
this.#_data = data
this.#_data_readonly = JSON.parse(JSON.stringify(this.#_data), (_, v) => Object.freeze(v))
}
get data(): Readonly<T> {
return this.#_data_readonly
}
get id(): id {
return this.#_data?.id
}
version = null as Nullable<version>
get keys(): key[] {
return [
[...(this.constructor as typeof Resource).lookup, this.id],
]
}
static get lookup(): key {
return [this.name]
}
protected static readonly log = null as Nullable<Logger>
#log = null as Nullable<Logger>
get log(): Nullable<Logger> {
return this.#log
}
protected static readonly store = null as unknown as Store
protected get store(): Store {
return (this.constructor as typeof Resource).store
}
protected static readonly model = model as is.ZodObject<any>
protected get model(): is.ZodObject<any> {
return (this.constructor as typeof Resource).model
}
protected static readonly readonly = {} as record<true>
protected get readonly(): record<true> {
return (this.constructor as typeof Resource).readonly
}
protected static readonly listeners = {} as record<Array<callback>>
get #listeners() {
return (this.constructor as typeof Resource).listeners
}
async #dispatch(event: "created" | "fetch" | "fetched" | "load" | "loaded" | "patch" | "patched" | "save" | "saved" | "delete" | "deleted") {
this.log?.with({ event }).trace("dispatching")
if (this.#listeners[event]) {
for (const listener of this.#listeners[event]) {
await listener()
}
}
}
async #fetch(resolve: callback, reject: callback, id?: Nullable<id> | DeepPartial<T>) {
try {
if (typeof id === "string") {
this.#data = { ...this.#data, id } as T
this.#log = (this.constructor as typeof Resource).log?.with({ type: this.constructor.name, id: this.id }) ?? null
this.log?.with({ op: "fetch" }).trace("fetching")
await this.#dispatch("fetch")
const { value, version } = await this.store.get<T>(this.keys[0])
if (!version) {
throw new Error(`Resource not found: [${this.keys[0].join(", ")}]`)
}
this.version = version
this.#data = value!
await this.#dispatch("fetched")
this.log?.with({ op: "fetch" }).debug("fetched")
} else {
const picked = Object.fromEntries(Object.keys(id ?? {}).map((key) => [key, true]))
this.#data = { ...this.#data, ...await this.model.strict().omit({ id: true, created: true, updated: true }).pick(picked as rw).parseAsync(id ?? {}), id: ulid() } as T
this.#log = (this.constructor as typeof Resource).log?.with({ type: this.constructor.name, id: this.id }) ?? null
for (const key of this.keys) {
if (await (this.constructor as typeof Resource).has(key)) {
throw new TypeError(`Resource already exists: [${key.join(", ")}]`)
}
}
await this.#dispatch("created")
this.log?.with({ op: "created" }).debug("created")
}
Resource.#cache.set(this.id, new WeakRef(this))
Resource.#gc.register(this, this.id)
this.#data = await this.model.strict().parseAsync(this.#data) as T
resolve(this)
} catch (error) {
reject(error)
}
}
async patch(patch: Omit<DeepPartial<T>, "id" | "created" | "updated">, { readonly = true } = {}): Promise<this> {
await this.ready
this.log?.with({ op: "patch" }).trace("patching")
await this.#dispatch("patch")
const picked = Object.fromEntries(Object.keys(patch).map((key) => [key, true]))
patch = await this.model.strict().omit({ id: true, created: true, updated: true, ...(readonly ? this.readonly : {}) }).pick(picked as rw).parseAsync(patch) as DeepPartial<T>
this.#data = { ...this.#data, ...patch, updated: Date.now() }
await this.model.strict().parseAsync(this.#data)
await this.#dispatch("patched")
this.log?.with({ op: "patch" }).debug("patched")
return this
}
async load(): Promise<Nullable<this>> {
await this.ready
this.log?.with({ op: "load" }).trace("loading")
await this.#dispatch("load")
const { value, version } = await this.store.get<T>(this.keys[0])
this.version = version
if (!this.version) {
this.log?.with({ op: "load" }).wdebug("no result")
return null
}
this.#data = value!
await this.#dispatch("loaded")
this.log?.with({ op: "load" }).debug("loaded")
return this
}
async save(): Promise<this> {
await this.ready
this.log?.with({ op: "save" }).trace("saving")
this.#data = { ...this.#data, updated: Date.now() }
if (!this.#data.created) {
this.#data = { ...this.#data, created: this.#data.updated }
}
await this.#dispatch("save")
await this.model.strict().parseAsync(this.#data)
const { version, value } = await this.store.set(this.keys, this.#data, this.version)
this.version = version
this.#data = value
await this.#dispatch("saved")
this.log?.with({ op: "save" }).debug("saved")
return this
}
async delete(): Promise<Nullable<this>> {
await this.ready
this.log?.with({ op: "delete" }).trace("deleting")
await this.#dispatch("delete")
if ((!this.version) || (!await this.store.has(this.keys[0]))) {
this.log?.with({ op: "delete" }).wdebug("no result")
return null
}
await this.store.delete(this.keys, this.version)
this.version = null
this.#data = { ...this.#data, created: null, updated: null }
await this.#dispatch("deleted")
this.log?.with({ op: "delete" }).debug("deleted")
return this
}
static async has<U extends shape, T extends typeof Resource<model_extended<U>>>(this: T, key: id | key): Promise<boolean> {
if (!Array.isArray(key)) {
key = [...this.lookup, key] as key
}
if (key.includes(null as rw)) {
return false
}
return await this.store.has(key)
}
static async get<U extends shape, T extends typeof Resource<model_extended<U>>>(this: T, key: id | key, options: { raw: false }): Promise<Nullable<T>>
static async get<U extends shape, T extends typeof Resource<model_extended<U>>>(this: T, key: id | key, options?: { raw?: true }): Promise<Nullable<InstanceType<T>>>
static async get<U extends shape, T extends typeof Resource<model_extended<U>>>(this: T, key: id | key, options?: { raw?: boolean }) {
if (!Array.isArray(key)) {
key = [...this.lookup, key] as key
}
if (key.includes(null as rw)) {
this.log?.with({ op: "get", key }).wdebug("no result as key is partially null")
return null
}
const { value } = await this.store.get<InstanceType<T>>(key)
if (!value) {
this.log?.with({ op: "get", key }).wdebug("no result")
return null
}
if (options?.raw) {
return value
}
return Resource.#cache.get(value.id)?.deref() as rw ?? new this(value.id).ready
}
static async delete<U extends shape, T extends typeof Resource<model_extended<U>>>(this: T, key: id | key): Promise<Nullable<InstanceType<T>>> {
const resource = await this.get(key)
if (!resource) {
this.log?.with({ op: "delete", key }).wdebug("no result")
return null
}
return await resource.delete()
}
static async list<U extends shape, T extends typeof Resource<model_extended<U>>>(this: T, key?: key | [key, key], options?: Omit<Arg<Store["list"], 1>, "array"> & { array: true; raw: true }): Promise<Array<T>>
static async list<U extends shape, T extends typeof Resource<model_extended<U>>>(this: T, key?: key | [key, key], options?: Omit<Arg<Store["list"], 1>, "array"> & { array?: false; raw: true }): Promise<AsyncGenerator<T>>
static async list<U extends shape, T extends typeof Resource<model_extended<U>>>(this: T, key?: key | [key, key], options?: Omit<Arg<Store["list"], 1>, "array"> & { array: true; raw?: false }): Promise<Array<InstanceType<T>>>
static async list<U extends shape, T extends typeof Resource<model_extended<U>>>(this: T, key?: key | [key, key], options?: Omit<Arg<Store["list"], 1>, "array"> & { array?: false; raw?: false }): Promise<AsyncGenerator<InstanceType<T>>>
static async list<U extends shape, T extends typeof Resource<model_extended<U>>>(this: T, key?: key | [key, key], options?: Omit<Arg<Store["list"], 1>, "array"> & { array?: boolean; raw?: boolean }) {
if (!key) {
key = []
}
if ((Array.isArray(key[0])) && (Array.isArray(key[1]))) {
if (key[0][0] !== this.name) {
key[0] = [this.name, ...key[0]] as key
}
if (key[1][0] !== this.name) {
key[1] = [this.name, ...key[1]] as key
}
} else {
if (key[0] !== this.name) {
key = [this.name, ...key] as key
}
}
const self = this
const list = await this.store.list(key, { ...options, array: false })
const iterator = (async function* () {
for await (const { key } of list) {
yield await self.get(key, options as Arg<typeof self["get"], 1>)
}
})()
return options?.array ? Array.fromAsync(iterator) : iterator
}
protected static async init() {}
static get schema(): ReturnType<typeof schema> {
return schema(this.model)
}
static with<U extends shape, V extends record, W extends record, T extends typeof Resource<model_extended<U>>, Z extends typeof Resource<rw>, X = T & Z & { ready: Promise<T & Z & { bound: V & W }>; bound: V & W }>(
this: Z,
{ store = this.store, name = this.name, log = this.log, listeners = {}, init = () => Promise.resolve(), model: _model = is.object({} as U), bind }: {
store?: Store
name?: string
log?: Nullable<Logger>
listeners?: record<Arrayable<callback>>
init?: (_: T) => Promise<unknown>
model?: is.ZodObject<U>
bind?: V
},
): X {
const { promise, resolve, reject } = Promise.withResolvers()
const that = this as rw
const extended = class extends this {
static override log = log
static override store = store
static ready = promise
static override listeners = Object.fromEntries(Object.entries(listeners).map(([key, value]) => [key, [...(this.listeners[key] ?? []), value].flat()])) as typeof Resource["listeners"]
static override model = that.model.merge(_model)
static bound = { ...that.bound, ...bind }
static override readonly = Object.fromEntries(Object.entries(that.model.merge(_model).shape).filter(([_, value]) => (value as { description?: string }).description?.includes("@readonly")).map(([key]) => [key, true]))
protected static override async init() {
await super.init()
await init(this as unknown as T)
}
} as unknown as X
Object.defineProperty(extended, "name", { value: name })
;(extended as rw).init().then(() => resolve(extended)).catch(reject)
return extended
}
}
|