@xyo-network/archivist-leveldb 3.9.17 → 3.9.19
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/browser/Archivist.d.ts +48 -0
- package/dist/browser/Archivist.d.ts.map +1 -0
- package/dist/browser/Config.d.ts +24 -0
- package/dist/browser/Config.d.ts.map +1 -0
- package/dist/browser/Params.d.ts +5 -0
- package/dist/browser/Params.d.ts.map +1 -0
- package/dist/browser/Schema.d.ts +3 -0
- package/dist/browser/Schema.d.ts.map +1 -0
- package/dist/browser/index.d.ts +5 -64
- package/dist/browser/index.d.ts.map +1 -0
- package/package.json +15 -15
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
import { Hash, Hex } from '@xylabs/hex';
|
|
2
|
+
import { Promisable } from '@xylabs/promise';
|
|
3
|
+
import { AbstractArchivist } from '@xyo-network/archivist-abstract';
|
|
4
|
+
import { ArchivistModuleEventData, ArchivistNextOptions } from '@xyo-network/archivist-model';
|
|
5
|
+
import { BoundWitness } from '@xyo-network/boundwitness-model';
|
|
6
|
+
import { Payload, Schema, WithStorageMeta } from '@xyo-network/payload-model';
|
|
7
|
+
import { AbstractLevel, AbstractSublevel } from 'abstract-level-2';
|
|
8
|
+
import { LevelDbArchivistParams } from './Params.ts';
|
|
9
|
+
/** Note: We have indexes as top level sublevels since making them a sublevel of a store, getting all the values of that store includes the sublevels */
|
|
10
|
+
export interface PayloadStore {
|
|
11
|
+
[s: string]: WithStorageMeta;
|
|
12
|
+
}
|
|
13
|
+
export type AbstractPayloadLevel = AbstractLevel<string | Buffer | Uint8Array, Hash, WithStorageMeta<Payload>>;
|
|
14
|
+
export type AbstractPayloadSubLevel = AbstractSublevel<AbstractPayloadLevel, string | Buffer | Uint8Array, Hash, WithStorageMeta<Payload>>;
|
|
15
|
+
export type AbstractIndexSubLevel<T> = AbstractSublevel<AbstractPayloadLevel, string | Buffer | Uint8Array, T, Hash>;
|
|
16
|
+
export declare abstract class AbstractLevelDbArchivist<TParams extends LevelDbArchivistParams = LevelDbArchivistParams, TEventData extends ArchivistModuleEventData = ArchivistModuleEventData> extends AbstractArchivist<TParams, TEventData> {
|
|
17
|
+
static readonly configSchemas: Schema[];
|
|
18
|
+
static readonly defaultConfigSchema: Schema;
|
|
19
|
+
private static readonly dataHashIndex;
|
|
20
|
+
private static readonly sequenceIndex;
|
|
21
|
+
static readonly dataHashIndexName: string;
|
|
22
|
+
static readonly sequenceIndexName: string;
|
|
23
|
+
get dbName(): string;
|
|
24
|
+
get folderPath(): string;
|
|
25
|
+
get location(): string;
|
|
26
|
+
get queries(): string[];
|
|
27
|
+
get storeName(): string;
|
|
28
|
+
private static findIndexFromCursor;
|
|
29
|
+
protected allHandler(): Promise<WithStorageMeta<Payload>[]>;
|
|
30
|
+
protected clearHandler(): Promise<void>;
|
|
31
|
+
protected commitHandler(): Promise<BoundWitness[]>;
|
|
32
|
+
protected deleteHandler(hashes: Hash[]): Promise<Hash[]>;
|
|
33
|
+
protected getHandler(hashes: Hash[]): Promise<WithStorageMeta<Payload>[]>;
|
|
34
|
+
protected insertHandler(payloads: WithStorageMeta<Payload>[]): Promise<WithStorageMeta<Payload>[]>;
|
|
35
|
+
protected nextHandler(options?: ArchivistNextOptions): Promise<WithStorageMeta<Payload>[]>;
|
|
36
|
+
protected startHandler(): Promise<boolean>;
|
|
37
|
+
protected withDataHashIndex<T>(func: (index: AbstractIndexSubLevel<string>) => Promisable<T>): Promisable<T>;
|
|
38
|
+
protected withSequenceIndex<T>(func: (index: AbstractIndexSubLevel<Hex>) => Promisable<T>): Promisable<T>;
|
|
39
|
+
protected withStore<T>(func: (store: AbstractPayloadSubLevel) => Promisable<T>): Promise<T>;
|
|
40
|
+
protected abstract withDb<T>(func: (db: AbstractPayloadLevel) => Promisable<T>): Promisable<T>;
|
|
41
|
+
}
|
|
42
|
+
export declare class LevelDbArchivist extends AbstractLevelDbArchivist {
|
|
43
|
+
private _db;
|
|
44
|
+
private _dbMutex;
|
|
45
|
+
protected stopHandler(timeout?: number): Promise<boolean>;
|
|
46
|
+
protected withDb<T>(func: (db: AbstractPayloadLevel) => Promisable<T>): Promise<T>;
|
|
47
|
+
}
|
|
48
|
+
//# sourceMappingURL=Archivist.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Archivist.d.ts","sourceRoot":"","sources":["../../src/Archivist.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import type { ArchivistConfig } from '@xyo-network/archivist-model';
|
|
2
|
+
import { LevelDbArchivistSchema } from './Schema.ts';
|
|
3
|
+
export type LevelDbArchivistConfigSchema = `${LevelDbArchivistSchema}.config`;
|
|
4
|
+
export declare const LevelDbArchivistConfigSchema: LevelDbArchivistConfigSchema;
|
|
5
|
+
export type LevelDbArchivistConfig<TStoreName extends string = string> = ArchivistConfig<{
|
|
6
|
+
/**
|
|
7
|
+
* If true, the store will be cleared on start
|
|
8
|
+
*/
|
|
9
|
+
clearStoreOnStart?: boolean;
|
|
10
|
+
/**
|
|
11
|
+
* The database name - also used as the filename for the db
|
|
12
|
+
*/
|
|
13
|
+
dbName?: string;
|
|
14
|
+
/**
|
|
15
|
+
* The location where the folder for the db will be created
|
|
16
|
+
*/
|
|
17
|
+
location?: string;
|
|
18
|
+
schema: LevelDbArchivistConfigSchema;
|
|
19
|
+
/**
|
|
20
|
+
* The name of the object store - becomes a sub-level
|
|
21
|
+
*/
|
|
22
|
+
storeName?: TStoreName;
|
|
23
|
+
}>;
|
|
24
|
+
//# sourceMappingURL=Config.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Config.d.ts","sourceRoot":"","sources":["../../src/Config.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,8BAA8B,CAAA;AAEnE,OAAO,EAAE,sBAAsB,EAAE,MAAM,aAAa,CAAA;AAEpD,MAAM,MAAM,4BAA4B,GAAG,GAAG,sBAAsB,SAAS,CAAA;AAC7E,eAAO,MAAM,4BAA4B,EAAE,4BAAiE,CAAA;AAE5G,MAAM,MAAM,sBAAsB,CAAC,UAAU,SAAS,MAAM,GAAG,MAAM,IAAI,eAAe,CAAC;IACvF;;OAEG;IACH,iBAAiB,CAAC,EAAE,OAAO,CAAA;IAC3B;;OAEG;IACH,MAAM,CAAC,EAAE,MAAM,CAAA;IACf;;OAEG;IACH,QAAQ,CAAC,EAAE,MAAM,CAAA;IACjB,MAAM,EAAE,4BAA4B,CAAA;IACpC;;OAEG;IACH,SAAS,CAAC,EAAE,UAAU,CAAA;CACvB,CAAC,CAAA"}
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import type { ArchivistParams } from '@xyo-network/archivist-model';
|
|
2
|
+
import type { AnyConfigSchema } from '@xyo-network/module-model';
|
|
3
|
+
import type { LevelDbArchivistConfig } from './Config.ts';
|
|
4
|
+
export type LevelDbArchivistParams = ArchivistParams<AnyConfigSchema<LevelDbArchivistConfig>, {}>;
|
|
5
|
+
//# sourceMappingURL=Params.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Params.d.ts","sourceRoot":"","sources":["../../src/Params.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,8BAA8B,CAAA;AACnE,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,2BAA2B,CAAA;AAEhE,OAAO,KAAK,EAAE,sBAAsB,EAAE,MAAM,aAAa,CAAA;AAEzD,MAAM,MAAM,sBAAsB,GAAG,eAAe,CAAC,eAAe,CAAC,sBAAsB,CAAC,EAAE,EAE7F,CAAC,CAAA"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Schema.d.ts","sourceRoot":"","sources":["../../src/Schema.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,sBAAsB,EAAG,+BAAwC,CAAA;AAC9E,MAAM,MAAM,sBAAsB,GAAG,OAAO,sBAAsB,CAAA"}
|
package/dist/browser/index.d.ts
CHANGED
|
@@ -1,64 +1,5 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
import { WithStorageMeta, Payload, Schema } from '@xyo-network/payload-model';
|
|
7
|
-
import { AbstractLevel, AbstractSublevel } from 'abstract-level-2';
|
|
8
|
-
import { AnyConfigSchema } from '@xyo-network/module-model';
|
|
9
|
-
|
|
10
|
-
declare const LevelDbArchivistSchema: "network.xyo.archivist.leveldb";
|
|
11
|
-
type LevelDbArchivistSchema = typeof LevelDbArchivistSchema;
|
|
12
|
-
|
|
13
|
-
type LevelDbArchivistConfigSchema = `${LevelDbArchivistSchema}.config`;
|
|
14
|
-
declare const LevelDbArchivistConfigSchema: LevelDbArchivistConfigSchema;
|
|
15
|
-
type LevelDbArchivistConfig<TStoreName extends string = string> = ArchivistConfig<{
|
|
16
|
-
clearStoreOnStart?: boolean;
|
|
17
|
-
dbName?: string;
|
|
18
|
-
location?: string;
|
|
19
|
-
schema: LevelDbArchivistConfigSchema;
|
|
20
|
-
storeName?: TStoreName;
|
|
21
|
-
}>;
|
|
22
|
-
|
|
23
|
-
type LevelDbArchivistParams = ArchivistParams<AnyConfigSchema<LevelDbArchivistConfig>, {}>;
|
|
24
|
-
|
|
25
|
-
interface PayloadStore {
|
|
26
|
-
[s: string]: WithStorageMeta;
|
|
27
|
-
}
|
|
28
|
-
type AbstractPayloadLevel = AbstractLevel<string | Buffer | Uint8Array, Hash, WithStorageMeta<Payload>>;
|
|
29
|
-
type AbstractPayloadSubLevel = AbstractSublevel<AbstractPayloadLevel, string | Buffer | Uint8Array, Hash, WithStorageMeta<Payload>>;
|
|
30
|
-
type AbstractIndexSubLevel<T> = AbstractSublevel<AbstractPayloadLevel, string | Buffer | Uint8Array, T, Hash>;
|
|
31
|
-
declare abstract class AbstractLevelDbArchivist<TParams extends LevelDbArchivistParams = LevelDbArchivistParams, TEventData extends ArchivistModuleEventData = ArchivistModuleEventData> extends AbstractArchivist<TParams, TEventData> {
|
|
32
|
-
static readonly configSchemas: Schema[];
|
|
33
|
-
static readonly defaultConfigSchema: Schema;
|
|
34
|
-
private static readonly dataHashIndex;
|
|
35
|
-
private static readonly sequenceIndex;
|
|
36
|
-
static readonly dataHashIndexName: string;
|
|
37
|
-
static readonly sequenceIndexName: string;
|
|
38
|
-
get dbName(): string;
|
|
39
|
-
get folderPath(): string;
|
|
40
|
-
get location(): string;
|
|
41
|
-
get queries(): string[];
|
|
42
|
-
get storeName(): string;
|
|
43
|
-
private static findIndexFromCursor;
|
|
44
|
-
protected allHandler(): Promise<WithStorageMeta<Payload>[]>;
|
|
45
|
-
protected clearHandler(): Promise<void>;
|
|
46
|
-
protected commitHandler(): Promise<BoundWitness[]>;
|
|
47
|
-
protected deleteHandler(hashes: Hash[]): Promise<Hash[]>;
|
|
48
|
-
protected getHandler(hashes: Hash[]): Promise<WithStorageMeta<Payload>[]>;
|
|
49
|
-
protected insertHandler(payloads: WithStorageMeta<Payload>[]): Promise<WithStorageMeta<Payload>[]>;
|
|
50
|
-
protected nextHandler(options?: ArchivistNextOptions): Promise<WithStorageMeta<Payload>[]>;
|
|
51
|
-
protected startHandler(): Promise<boolean>;
|
|
52
|
-
protected withDataHashIndex<T>(func: (index: AbstractIndexSubLevel<string>) => Promisable<T>): Promisable<T>;
|
|
53
|
-
protected withSequenceIndex<T>(func: (index: AbstractIndexSubLevel<Hex>) => Promisable<T>): Promisable<T>;
|
|
54
|
-
protected withStore<T>(func: (store: AbstractPayloadSubLevel) => Promisable<T>): Promise<T>;
|
|
55
|
-
protected abstract withDb<T>(func: (db: AbstractPayloadLevel) => Promisable<T>): Promisable<T>;
|
|
56
|
-
}
|
|
57
|
-
declare class LevelDbArchivist extends AbstractLevelDbArchivist {
|
|
58
|
-
private _db;
|
|
59
|
-
private _dbMutex;
|
|
60
|
-
protected stopHandler(timeout?: number): Promise<boolean>;
|
|
61
|
-
protected withDb<T>(func: (db: AbstractPayloadLevel) => Promisable<T>): Promise<T>;
|
|
62
|
-
}
|
|
63
|
-
|
|
64
|
-
export { type AbstractIndexSubLevel, AbstractLevelDbArchivist, type AbstractPayloadLevel, type AbstractPayloadSubLevel, LevelDbArchivist, type LevelDbArchivistConfig, LevelDbArchivistConfigSchema, type LevelDbArchivistParams, LevelDbArchivistSchema, type PayloadStore };
|
|
1
|
+
export * from './Archivist.ts';
|
|
2
|
+
export * from './Config.ts';
|
|
3
|
+
export * from './Params.ts';
|
|
4
|
+
export * from './Schema.ts';
|
|
5
|
+
//# sourceMappingURL=index.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,gBAAgB,CAAA;AAC9B,cAAc,aAAa,CAAA;AAC3B,cAAc,aAAa,CAAA;AAC3B,cAAc,aAAa,CAAA"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@xyo-network/archivist-leveldb",
|
|
3
|
-
"version": "3.9.
|
|
3
|
+
"version": "3.9.19",
|
|
4
4
|
"description": "Primary SDK for using XYO Protocol 2.0",
|
|
5
5
|
"homepage": "https://xyo.network",
|
|
6
6
|
"bugs": {
|
|
@@ -33,12 +33,12 @@
|
|
|
33
33
|
"@xylabs/exists": "^4.5.1",
|
|
34
34
|
"@xylabs/hex": "^4.5.1",
|
|
35
35
|
"@xylabs/promise": "^4.5.1",
|
|
36
|
-
"@xyo-network/archivist-abstract": "^3.9.
|
|
37
|
-
"@xyo-network/archivist-model": "^3.9.
|
|
38
|
-
"@xyo-network/boundwitness-model": "^3.9.
|
|
39
|
-
"@xyo-network/module-model": "^3.9.
|
|
40
|
-
"@xyo-network/payload-builder": "^3.9.
|
|
41
|
-
"@xyo-network/payload-model": "^3.9.
|
|
36
|
+
"@xyo-network/archivist-abstract": "^3.9.19",
|
|
37
|
+
"@xyo-network/archivist-model": "^3.9.19",
|
|
38
|
+
"@xyo-network/boundwitness-model": "^3.9.19",
|
|
39
|
+
"@xyo-network/module-model": "^3.9.19",
|
|
40
|
+
"@xyo-network/payload-builder": "^3.9.19",
|
|
41
|
+
"@xyo-network/payload-model": "^3.9.19",
|
|
42
42
|
"abstract-level-2": "npm:abstract-level@^2",
|
|
43
43
|
"async-mutex": "^0.5.0",
|
|
44
44
|
"level": "^9.0.0"
|
|
@@ -46,16 +46,16 @@
|
|
|
46
46
|
"devDependencies": {
|
|
47
47
|
"@xylabs/delay": "^4.5.1",
|
|
48
48
|
"@xylabs/object": "^4.5.1",
|
|
49
|
-
"@xylabs/ts-scripts-yarn3": "^5.0.
|
|
50
|
-
"@xylabs/tsconfig": "^5.0.
|
|
49
|
+
"@xylabs/ts-scripts-yarn3": "^5.0.39",
|
|
50
|
+
"@xylabs/tsconfig": "^5.0.39",
|
|
51
51
|
"@xylabs/vitest-extended": "^4.5.1",
|
|
52
|
-
"@xyo-network/account": "^3.9.
|
|
53
|
-
"@xyo-network/archivist-acceptance-tests": "^3.9.
|
|
54
|
-
"@xyo-network/id-payload-plugin": "^3.9.
|
|
55
|
-
"@xyo-network/payload-wrapper": "^3.9.
|
|
56
|
-
"typescript": "^5.
|
|
52
|
+
"@xyo-network/account": "^3.9.19",
|
|
53
|
+
"@xyo-network/archivist-acceptance-tests": "^3.9.19",
|
|
54
|
+
"@xyo-network/id-payload-plugin": "^3.9.19",
|
|
55
|
+
"@xyo-network/payload-wrapper": "^3.9.19",
|
|
56
|
+
"typescript": "^5.8.2",
|
|
57
57
|
"uuid": "^11.1.0",
|
|
58
|
-
"vitest": "^3.0.
|
|
58
|
+
"vitest": "^3.0.7"
|
|
59
59
|
},
|
|
60
60
|
"publishConfig": {
|
|
61
61
|
"access": "public"
|