@rotorsoft/act 0.24.0 → 0.25.0
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/README.md +23 -0
- package/dist/.tsbuildinfo +1 -1
- package/dist/@types/act.d.ts.map +1 -1
- package/dist/@types/adapters/ConsoleLogger.d.ts +39 -0
- package/dist/@types/adapters/ConsoleLogger.d.ts.map +1 -0
- package/dist/@types/adapters/index.d.ts +1 -0
- package/dist/@types/adapters/index.d.ts.map +1 -1
- package/dist/@types/event-sourcing.d.ts.map +1 -1
- package/dist/@types/merge.d.ts.map +1 -1
- package/dist/@types/ports.d.ts +118 -146
- package/dist/@types/ports.d.ts.map +1 -1
- package/dist/@types/state-builder.d.ts.map +1 -1
- package/dist/@types/types/ports.d.ts +28 -0
- package/dist/@types/types/ports.d.ts.map +1 -1
- package/dist/index.cjs +165 -43
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +163 -42
- package/dist/index.js.map +1 -1
- package/package.json +1 -3
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @module adapters/ConsoleLogger
|
|
3
|
+
*
|
|
4
|
+
* High-performance console logger inspired by pino's design:
|
|
5
|
+
* - Numeric level comparison for O(1) gating
|
|
6
|
+
* - stdout.write() in production for raw JSON lines (no console overhead)
|
|
7
|
+
* - Colorized single-line output in development
|
|
8
|
+
* - No-op method replacement when level is above threshold
|
|
9
|
+
* - Child logger support with merged bindings
|
|
10
|
+
*/
|
|
11
|
+
import type { Logger } from "../types/index.js";
|
|
12
|
+
/**
|
|
13
|
+
* Default console logger for the Act framework.
|
|
14
|
+
*
|
|
15
|
+
* Production mode emits newline-delimited JSON (compatible with GCP, AWS
|
|
16
|
+
* CloudWatch, Datadog, and other structured log ingestion systems).
|
|
17
|
+
*
|
|
18
|
+
* Development mode emits colorized, human-readable output.
|
|
19
|
+
*/
|
|
20
|
+
export declare class ConsoleLogger implements Logger {
|
|
21
|
+
level: string;
|
|
22
|
+
private readonly _pretty;
|
|
23
|
+
readonly fatal: Logger["fatal"];
|
|
24
|
+
readonly error: Logger["error"];
|
|
25
|
+
readonly warn: Logger["warn"];
|
|
26
|
+
readonly info: Logger["info"];
|
|
27
|
+
readonly debug: Logger["debug"];
|
|
28
|
+
readonly trace: Logger["trace"];
|
|
29
|
+
constructor(options?: {
|
|
30
|
+
level?: string;
|
|
31
|
+
pretty?: boolean;
|
|
32
|
+
bindings?: Record<string, unknown>;
|
|
33
|
+
});
|
|
34
|
+
dispose(): Promise<void>;
|
|
35
|
+
child(bindings: Record<string, unknown>): Logger;
|
|
36
|
+
private _jsonWrite;
|
|
37
|
+
private _prettyWrite;
|
|
38
|
+
}
|
|
39
|
+
//# sourceMappingURL=ConsoleLogger.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ConsoleLogger.d.ts","sourceRoot":"","sources":["../../../src/adapters/ConsoleLogger.ts"],"names":[],"mappings":"AAAA;;;;;;;;;GASG;AACH,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,mBAAmB,CAAC;AAwBhD;;;;;;;GAOG;AACH,qBAAa,aAAc,YAAW,MAAM;IAC1C,KAAK,EAAE,MAAM,CAAC;IACd,OAAO,CAAC,QAAQ,CAAC,OAAO,CAAU;IAElC,QAAQ,CAAC,KAAK,EAAE,MAAM,CAAC,OAAO,CAAC,CAAC;IAChC,QAAQ,CAAC,KAAK,EAAE,MAAM,CAAC,OAAO,CAAC,CAAC;IAChC,QAAQ,CAAC,IAAI,EAAE,MAAM,CAAC,MAAM,CAAC,CAAC;IAC9B,QAAQ,CAAC,IAAI,EAAE,MAAM,CAAC,MAAM,CAAC,CAAC;IAC9B,QAAQ,CAAC,KAAK,EAAE,MAAM,CAAC,OAAO,CAAC,CAAC;IAChC,QAAQ,CAAC,KAAK,EAAE,MAAM,CAAC,OAAO,CAAC,CAAC;gBAG9B,OAAO,GAAE;QACP,KAAK,CAAC,EAAE,MAAM,CAAC;QACf,MAAM,CAAC,EAAE,OAAO,CAAC;QACjB,QAAQ,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,CAAC;KAC/B;IAwBF,OAAO,IAAI,OAAO,CAAC,IAAI,CAAC;IAE9B,KAAK,CAAC,QAAQ,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,GAAG,MAAM;IAQhD,OAAO,CAAC,UAAU;IA2BlB,OAAO,CAAC,YAAY;CAmCrB"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/adapters/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,aAAa,EAAE,MAAM,oBAAoB,CAAC;AACnD,OAAO,EAAE,aAAa,EAAE,MAAM,oBAAoB,CAAC"}
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/adapters/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,aAAa,EAAE,MAAM,oBAAoB,CAAC;AACnD,OAAO,EAAE,aAAa,EAAE,MAAM,oBAAoB,CAAC;AACnD,OAAO,EAAE,aAAa,EAAE,MAAM,oBAAoB,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"event-sourcing.d.ts","sourceRoot":"","sources":["../../src/event-sourcing.ts"],"names":[],"mappings":"AAAA;;;;;GAKG;AAMH,OAAO,KAAK,EACV,SAAS,EAGT,MAAM,EACN,OAAO,EACP,QAAQ,EACR,KAAK,EACL,MAAM,EACP,MAAM,kBAAkB,CAAC;
|
|
1
|
+
{"version":3,"file":"event-sourcing.d.ts","sourceRoot":"","sources":["../../src/event-sourcing.ts"],"names":[],"mappings":"AAAA;;;;;GAKG;AAMH,OAAO,KAAK,EACV,SAAS,EAGT,MAAM,EACN,OAAO,EACP,QAAQ,EACR,KAAK,EACL,MAAM,EACP,MAAM,kBAAkB,CAAC;AAK1B;;;GAGG;AAEH;;;;;;;;;;;;GAYG;AACH,wBAAsB,IAAI,CAAC,MAAM,SAAS,MAAM,EAAE,OAAO,SAAS,OAAO,EACvE,QAAQ,EAAE,QAAQ,CAAC,MAAM,EAAE,OAAO,CAAC,GAClC,OAAO,CAAC,IAAI,CAAC,CAgBf;AAED;;;;;;;;;;;;;;;;;GAiBG;AACH,wBAAsB,IAAI,CACxB,MAAM,SAAS,MAAM,EACrB,OAAO,SAAS,OAAO,EACvB,QAAQ,SAAS,OAAO,EAExB,EAAE,EAAE,KAAK,CAAC,MAAM,EAAE,OAAO,EAAE,QAAQ,CAAC,EACpC,MAAM,EAAE,MAAM,EACd,QAAQ,CAAC,EAAE,CAAC,QAAQ,EAAE,QAAQ,CAAC,MAAM,EAAE,OAAO,CAAC,KAAK,IAAI,GACvD,OAAO,CAAC,QAAQ,CAAC,MAAM,EAAE,OAAO,CAAC,CAAC,CA4BpC;AAED;;;;;;;;;;;;;;;;;;;GAmBG;AACH,wBAAsB,MAAM,CAC1B,MAAM,SAAS,MAAM,EACrB,OAAO,SAAS,OAAO,EACvB,QAAQ,SAAS,OAAO,EACxB,IAAI,SAAS,MAAM,QAAQ,EAE3B,EAAE,EAAE,KAAK,CAAC,MAAM,EAAE,OAAO,EAAE,QAAQ,CAAC,EACpC,MAAM,EAAE,IAAI,EACZ,MAAM,EAAE,MAAM,EACd,OAAO,EAAE,QAAQ,CAAC,QAAQ,CAAC,IAAI,CAAC,CAAC,EACjC,UAAU,CAAC,EAAE,SAAS,CAAC,OAAO,EAAE,MAAM,OAAO,CAAC,EAC9C,cAAc,UAAQ,GACrB,OAAO,CAAC,QAAQ,CAAC,MAAM,EAAE,OAAO,CAAC,EAAE,CAAC,CAmHtC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"merge.d.ts","sourceRoot":"","sources":["../../src/merge.ts"],"names":[],"mappings":"AAAA;;;;;GAKG;AACH,OAAO,EAAa,KAAK,OAAO,EAAE,MAAM,KAAK,CAAC;AAC9C,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,yBAAyB,CAAC;AAC1D,OAAO,KAAK,EAAE,MAAM,EAAE,KAAK,EAAE,MAAM,kBAAkB,CAAC;AAEtD;;;GAGG;AACH,wBAAgB,YAAY,CAAC,OAAO,EAAE,OAAO,GAAG,MAAM,CAMrD;AAED;;;;;GAKG;AACH,wBAAgB,YAAY,CAC1B,QAAQ,EAAE,OAAO,EACjB,QAAQ,EAAE,OAAO,EACjB,SAAS,EAAE,MAAM,GAChB,OAAO,CAkBT;AAED;;;GAGG;AACH,wBAAgB,UAAU,CAAC,MAAM,SAAS,MAAM,EAC9C,QAAQ,EAAE,MAAM,QAAQ,CAAC,MAAM,CAAC,EAChC,QAAQ,EAAE,MAAM,QAAQ,CAAC,MAAM,CAAC,GAC/B,MAAM,QAAQ,CAAC,MAAM,CAAC,CAExB;AAED;;;GAGG;AACH,wBAAgB,aAAa,CAC3B,KAAK,EAAE,KAAK,CAAC,GAAG,EAAE,GAAG,EAAE,GAAG,CAAC,EAC3B,MAAM,EAAE,GAAG,CAAC,MAAM,EAAE,KAAK,CAAC,GAAG,EAAE,GAAG,EAAE,GAAG,CAAC,CAAC,EACzC,OAAO,EAAE,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,EAC5B,MAAM,EAAE,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,GAC1B,IAAI,
|
|
1
|
+
{"version":3,"file":"merge.d.ts","sourceRoot":"","sources":["../../src/merge.ts"],"names":[],"mappings":"AAAA;;;;;GAKG;AACH,OAAO,EAAa,KAAK,OAAO,EAAE,MAAM,KAAK,CAAC;AAC9C,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,yBAAyB,CAAC;AAC1D,OAAO,KAAK,EAAE,MAAM,EAAE,KAAK,EAAE,MAAM,kBAAkB,CAAC;AAEtD;;;GAGG;AACH,wBAAgB,YAAY,CAAC,OAAO,EAAE,OAAO,GAAG,MAAM,CAMrD;AAED;;;;;GAKG;AACH,wBAAgB,YAAY,CAC1B,QAAQ,EAAE,OAAO,EACjB,QAAQ,EAAE,OAAO,EACjB,SAAS,EAAE,MAAM,GAChB,OAAO,CAkBT;AAED;;;GAGG;AACH,wBAAgB,UAAU,CAAC,MAAM,SAAS,MAAM,EAC9C,QAAQ,EAAE,MAAM,QAAQ,CAAC,MAAM,CAAC,EAChC,QAAQ,EAAE,MAAM,QAAQ,CAAC,MAAM,CAAC,GAC/B,MAAM,QAAQ,CAAC,MAAM,CAAC,CAExB;AAED;;;GAGG;AACH,wBAAgB,aAAa,CAC3B,KAAK,EAAE,KAAK,CAAC,GAAG,EAAE,GAAG,EAAE,GAAG,CAAC,EAC3B,MAAM,EAAE,GAAG,CAAC,MAAM,EAAE,KAAK,CAAC,GAAG,EAAE,GAAG,EAAE,GAAG,CAAC,CAAC,EACzC,OAAO,EAAE,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,EAC5B,MAAM,EAAE,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,GAC1B,IAAI,CAiFN;AAED;;;GAGG;AACH,wBAAgB,eAAe,CAC7B,IAAI,EAAE,UAAU,CAAC,GAAG,CAAC,EACrB,MAAM,EAAE,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,GAC1B,IAAI,CAiBN;AAGD,eAAO,MAAM,MAAM,GAAI,YAAY;IAAE,MAAM,EAAE,MAAM,CAAA;CAAE;;;CAGnD,CAAC;AAGH,eAAO,MAAM,MAAM,iBAAkB,CAAC"}
|
package/dist/@types/ports.d.ts
CHANGED
|
@@ -1,12 +1,16 @@
|
|
|
1
|
-
import
|
|
1
|
+
import { ConsoleLogger } from "./adapters/ConsoleLogger.js";
|
|
2
|
+
import type { Cache, Disposable, Disposer, Fetch, Lease, Logger, LogLevel, Schemas, Store } from "./types/index.js";
|
|
2
3
|
/**
|
|
3
|
-
* Port
|
|
4
|
+
* Port/adapter infrastructure for the Act framework.
|
|
4
5
|
*
|
|
5
|
-
*
|
|
6
|
+
* All infrastructure concerns (logging, storage, caching) are managed as
|
|
7
|
+
* singleton adapters injected via port functions. Each port follows the same
|
|
8
|
+
* pattern: first call wins with a sensible default, optional adapter injection.
|
|
6
9
|
*
|
|
7
|
-
* -
|
|
8
|
-
* -
|
|
9
|
-
* -
|
|
10
|
+
* - `log()` — structured logging (default: ConsoleLogger)
|
|
11
|
+
* - `store()` — event persistence (default: InMemoryStore)
|
|
12
|
+
* - `cache()` — state checkpoints (default: InMemoryCache)
|
|
13
|
+
* - `dispose()` — register cleanup functions for graceful shutdown
|
|
10
14
|
*
|
|
11
15
|
* @module ports
|
|
12
16
|
*/
|
|
@@ -16,120 +20,73 @@ import type { Cache, Disposable, Disposer, Fetch, Lease, LogLevel, Schemas, Stor
|
|
|
16
20
|
export declare const ExitCodes: readonly ["ERROR", "EXIT"];
|
|
17
21
|
/**
|
|
18
22
|
* Type for allowed exit codes.
|
|
19
|
-
*/
|
|
20
|
-
export type ExitCode = (typeof ExitCodes)[number];
|
|
21
|
-
/**
|
|
22
|
-
* Singleton logger instance (Pino).
|
|
23
23
|
*
|
|
24
|
-
*
|
|
25
|
-
*
|
|
26
|
-
* @example
|
|
27
|
-
* logger.info("Application started");
|
|
24
|
+
* - `"ERROR"` — abnormal termination (uncaught exception, unhandled rejection)
|
|
25
|
+
* - `"EXIT"` — clean shutdown (SIGINT, SIGTERM, or manual trigger)
|
|
28
26
|
*/
|
|
29
|
-
export
|
|
27
|
+
export type ExitCode = (typeof ExitCodes)[number];
|
|
30
28
|
/**
|
|
31
|
-
*
|
|
32
|
-
*
|
|
33
|
-
* @param injector The function that creates the port/adapter
|
|
34
|
-
* @returns A function to get or inject the singleton instance
|
|
35
|
-
*
|
|
36
|
-
* @example
|
|
37
|
-
* const store = port((adapter) => adapter || new InMemoryStore());
|
|
38
|
-
* const myStore = store();
|
|
29
|
+
* Factory function that creates or returns the injected adapter.
|
|
30
|
+
* @internal
|
|
39
31
|
*/
|
|
40
32
|
type Injector<Port extends Disposable> = (adapter?: Port) => Port;
|
|
41
|
-
export declare function port<Port extends Disposable>(injector: Injector<Port>): (adapter?: Port) => Port;
|
|
42
|
-
export declare function disposeAndExit(code?: ExitCode): Promise<void>;
|
|
43
33
|
/**
|
|
44
|
-
*
|
|
34
|
+
* Creates a singleton port with optional adapter injection.
|
|
45
35
|
*
|
|
46
|
-
*
|
|
47
|
-
*
|
|
48
|
-
*
|
|
36
|
+
* The first call initializes the adapter (using the provided adapter or the
|
|
37
|
+
* injector's default). Subsequent calls return the cached singleton. Adapters
|
|
38
|
+
* are disposed in reverse registration order during {@link disposeAndExit}.
|
|
49
39
|
*
|
|
50
|
-
*
|
|
51
|
-
*
|
|
52
|
-
*
|
|
40
|
+
* @param injector - Named function that creates the default adapter
|
|
41
|
+
* @returns Port function: call with no args to get the singleton, or pass an
|
|
42
|
+
* adapter on the first call to override the default
|
|
53
43
|
*
|
|
54
|
-
* @
|
|
55
|
-
* @returns Function to manually trigger disposal and exit
|
|
56
|
-
*
|
|
57
|
-
* @example Register custom resource cleanup
|
|
44
|
+
* @example
|
|
58
45
|
* ```typescript
|
|
59
|
-
*
|
|
60
|
-
*
|
|
61
|
-
* const redis = createRedisClient();
|
|
62
|
-
*
|
|
63
|
-
* dispose(async () => {
|
|
64
|
-
* console.log("Closing Redis connection...");
|
|
65
|
-
* await redis.quit();
|
|
46
|
+
* const store = port(function store(adapter?: Store) {
|
|
47
|
+
* return adapter || new InMemoryStore();
|
|
66
48
|
* });
|
|
67
|
-
*
|
|
68
|
-
* // On SIGINT/SIGTERM, Redis will be cleaned up automatically
|
|
49
|
+
* const s = store(); // InMemoryStore
|
|
69
50
|
* ```
|
|
51
|
+
*/
|
|
52
|
+
export declare function port<Port extends Disposable>(injector: Injector<Port>): (adapter?: Port) => Port;
|
|
53
|
+
/**
|
|
54
|
+
* Gets or injects the singleton logger.
|
|
70
55
|
*
|
|
71
|
-
*
|
|
72
|
-
*
|
|
73
|
-
*
|
|
74
|
-
*
|
|
75
|
-
* const db = connectDatabase();
|
|
76
|
-
* dispose(async () => {
|
|
77
|
-
* console.log("Closing database...");
|
|
78
|
-
* await db.close();
|
|
79
|
-
* });
|
|
56
|
+
* By default, Act uses a built-in {@link ConsoleLogger} that emits JSON lines
|
|
57
|
+
* in production (compatible with GCP, AWS CloudWatch, Datadog) and colorized
|
|
58
|
+
* output in development — zero external dependencies.
|
|
80
59
|
*
|
|
81
|
-
*
|
|
82
|
-
*
|
|
83
|
-
* console.log("Closing cache...");
|
|
84
|
-
* await cache.disconnect();
|
|
85
|
-
* });
|
|
60
|
+
* For pino, inject a `PinoLogger` from `@rotorsoft/act-pino` before building
|
|
61
|
+
* your application.
|
|
86
62
|
*
|
|
87
|
-
*
|
|
88
|
-
*
|
|
63
|
+
* @param adapter - Optional logger implementation to inject
|
|
64
|
+
* @returns The singleton logger instance
|
|
89
65
|
*
|
|
90
|
-
* @example
|
|
66
|
+
* @example Default console logger
|
|
91
67
|
* ```typescript
|
|
92
|
-
* import {
|
|
93
|
-
*
|
|
94
|
-
*
|
|
95
|
-
* await cleanup();
|
|
96
|
-
* });
|
|
97
|
-
*
|
|
98
|
-
* // Manually trigger cleanup and exit
|
|
99
|
-
* process.on("SIGUSR2", async () => {
|
|
100
|
-
* console.log("Manual shutdown requested");
|
|
101
|
-
* await shutdown("EXIT");
|
|
102
|
-
* });
|
|
68
|
+
* import { log } from "@rotorsoft/act";
|
|
69
|
+
* const logger = log();
|
|
70
|
+
* logger.info("Application started");
|
|
103
71
|
* ```
|
|
104
72
|
*
|
|
105
|
-
* @example
|
|
73
|
+
* @example Injecting pino
|
|
106
74
|
* ```typescript
|
|
107
|
-
* import {
|
|
108
|
-
*
|
|
109
|
-
*
|
|
110
|
-
* try {
|
|
111
|
-
* await expensiveCleanup();
|
|
112
|
-
* } catch (error) {
|
|
113
|
-
* console.error("Cleanup failed:", error);
|
|
114
|
-
* // Error doesn't prevent other disposers from running
|
|
115
|
-
* }
|
|
116
|
-
* });
|
|
75
|
+
* import { log } from "@rotorsoft/act";
|
|
76
|
+
* import { PinoLogger } from "@rotorsoft/act-pino";
|
|
77
|
+
* log(new PinoLogger({ level: "debug", pretty: true }));
|
|
117
78
|
* ```
|
|
118
79
|
*
|
|
119
|
-
* @see {@link
|
|
120
|
-
* @see {@link
|
|
80
|
+
* @see {@link Logger} for the interface contract
|
|
81
|
+
* @see {@link ConsoleLogger} for the default implementation
|
|
121
82
|
*/
|
|
122
|
-
export declare
|
|
123
|
-
/**
|
|
124
|
-
* Special event name for snapshot events in the event store.
|
|
125
|
-
*/
|
|
126
|
-
export declare const SNAP_EVENT = "__snapshot__";
|
|
83
|
+
export declare const log: (adapter?: Logger | ConsoleLogger | undefined) => Logger | ConsoleLogger;
|
|
127
84
|
/**
|
|
128
85
|
* Gets or injects the singleton event store.
|
|
129
86
|
*
|
|
130
|
-
* By default, Act uses an
|
|
131
|
-
* For production, inject a persistent store like PostgresStore
|
|
132
|
-
* your application.
|
|
87
|
+
* By default, Act uses an {@link InMemoryStore} suitable for development and
|
|
88
|
+
* testing. For production, inject a persistent store like `PostgresStore` from
|
|
89
|
+
* `@rotorsoft/act-pg` before building your application.
|
|
133
90
|
*
|
|
134
91
|
* **Important:** Store injection must happen before creating any Act instances.
|
|
135
92
|
* Once set, the store cannot be changed without restarting the application.
|
|
@@ -137,87 +94,102 @@ export declare const SNAP_EVENT = "__snapshot__";
|
|
|
137
94
|
* @param adapter - Optional store implementation to inject
|
|
138
95
|
* @returns The singleton store instance
|
|
139
96
|
*
|
|
140
|
-
* @example
|
|
97
|
+
* @example Default in-memory store
|
|
141
98
|
* ```typescript
|
|
142
99
|
* import { store } from "@rotorsoft/act";
|
|
143
|
-
*
|
|
144
|
-
* const currentStore = store(); // Returns InMemoryStore
|
|
100
|
+
* const s = store();
|
|
145
101
|
* ```
|
|
146
102
|
*
|
|
147
|
-
* @example Injecting PostgreSQL
|
|
103
|
+
* @example Injecting PostgreSQL
|
|
148
104
|
* ```typescript
|
|
149
105
|
* import { store } from "@rotorsoft/act";
|
|
150
106
|
* import { PostgresStore } from "@rotorsoft/act-pg";
|
|
151
107
|
*
|
|
152
|
-
* // Inject before building your app
|
|
153
108
|
* store(new PostgresStore({
|
|
154
109
|
* host: "localhost",
|
|
155
110
|
* port: 5432,
|
|
156
111
|
* database: "myapp",
|
|
157
112
|
* user: "postgres",
|
|
158
113
|
* password: "secret",
|
|
159
|
-
* schema: "public",
|
|
160
|
-
* table: "events"
|
|
161
114
|
* }));
|
|
162
|
-
*
|
|
163
|
-
* // Now build your app - it will use PostgreSQL
|
|
164
|
-
* const app = act()
|
|
165
|
-
* .withState(Counter)
|
|
166
|
-
* .build();
|
|
167
|
-
* ```
|
|
168
|
-
*
|
|
169
|
-
* @example With environment-based configuration
|
|
170
|
-
* ```typescript
|
|
171
|
-
* import { store } from "@rotorsoft/act";
|
|
172
|
-
* import { PostgresStore } from "@rotorsoft/act-pg";
|
|
173
|
-
*
|
|
174
|
-
* if (process.env.NODE_ENV === "production") {
|
|
175
|
-
* store(new PostgresStore({
|
|
176
|
-
* host: process.env.DB_HOST,
|
|
177
|
-
* port: parseInt(process.env.DB_PORT || "5432"),
|
|
178
|
-
* database: process.env.DB_NAME,
|
|
179
|
-
* user: process.env.DB_USER,
|
|
180
|
-
* password: process.env.DB_PASSWORD
|
|
181
|
-
* }));
|
|
182
|
-
* }
|
|
183
|
-
* // Development uses default in-memory store
|
|
184
|
-
* ```
|
|
185
|
-
*
|
|
186
|
-
* @example Testing with fresh store
|
|
187
|
-
* ```typescript
|
|
188
|
-
* import { store } from "@rotorsoft/act";
|
|
189
|
-
*
|
|
190
|
-
* beforeEach(async () => {
|
|
191
|
-
* // Reset store between tests
|
|
192
|
-
* await store().seed();
|
|
193
|
-
* });
|
|
194
|
-
*
|
|
195
|
-
* afterAll(async () => {
|
|
196
|
-
* // Cleanup
|
|
197
|
-
* await store().drop();
|
|
198
|
-
* });
|
|
199
115
|
* ```
|
|
200
116
|
*
|
|
201
|
-
* @see {@link Store} for the
|
|
117
|
+
* @see {@link Store} for the interface contract
|
|
202
118
|
* @see {@link InMemoryStore} for the default implementation
|
|
203
|
-
* @see {@link PostgresStore} for production use
|
|
204
119
|
*/
|
|
205
120
|
export declare const store: (adapter?: Store | undefined) => Store;
|
|
206
121
|
/**
|
|
207
122
|
* Gets or injects the singleton cache.
|
|
208
123
|
*
|
|
209
|
-
* By default, Act uses an
|
|
210
|
-
* inject a Redis-backed cache before building your
|
|
211
|
-
*
|
|
212
|
-
* Cache unifies snapshotting — `snap()` writes to cache instead of the event store,
|
|
213
|
-
* and `load()` checks cache before querying the store for tail events.
|
|
124
|
+
* By default, Act uses an {@link InMemoryCache} (LRU, maxSize 1000). For
|
|
125
|
+
* distributed deployments, inject a Redis-backed cache before building your
|
|
126
|
+
* application.
|
|
214
127
|
*
|
|
215
128
|
* @param adapter - Optional cache implementation to inject
|
|
216
129
|
* @returns The singleton cache instance
|
|
130
|
+
*
|
|
131
|
+
* @see {@link Cache} for the interface contract
|
|
132
|
+
* @see {@link InMemoryCache} for the default implementation
|
|
217
133
|
*/
|
|
218
134
|
export declare const cache: (adapter?: Cache | undefined) => Cache;
|
|
219
135
|
/**
|
|
220
|
-
*
|
|
136
|
+
* Disposes all registered adapters and disposers, then exits the process.
|
|
137
|
+
*
|
|
138
|
+
* Execution order:
|
|
139
|
+
* 1. Custom disposers (registered via {@link dispose}) — in reverse order
|
|
140
|
+
* 2. Port adapters (log, store, cache) — in reverse registration order
|
|
141
|
+
* 3. Adapter registry is cleared
|
|
142
|
+
* 4. Process exits (skipped in test environment)
|
|
143
|
+
*
|
|
144
|
+
* In production, `"ERROR"` exits are silently ignored to avoid crashing on
|
|
145
|
+
* transient failures (e.g. an uncaught promise in a non-critical path).
|
|
146
|
+
*
|
|
147
|
+
* @param code - Exit code: `"EXIT"` for clean shutdown (exit 0),
|
|
148
|
+
* `"ERROR"` for abnormal termination (exit 1)
|
|
149
|
+
*/
|
|
150
|
+
export declare function disposeAndExit(code?: ExitCode): Promise<void>;
|
|
151
|
+
/**
|
|
152
|
+
* Registers a cleanup function for graceful shutdown.
|
|
153
|
+
*
|
|
154
|
+
* Disposers are called automatically on SIGINT, SIGTERM, uncaught exceptions,
|
|
155
|
+
* and unhandled rejections. They execute in reverse registration order before
|
|
156
|
+
* port adapters are disposed.
|
|
157
|
+
*
|
|
158
|
+
* @param disposer - Async function to call during cleanup. Omit to get a
|
|
159
|
+
* reference to {@link disposeAndExit} without registering.
|
|
160
|
+
* @returns Function to manually trigger disposal and exit
|
|
161
|
+
*
|
|
162
|
+
* @example
|
|
163
|
+
* ```typescript
|
|
164
|
+
* import { dispose } from "@rotorsoft/act";
|
|
165
|
+
*
|
|
166
|
+
* const db = connectDatabase();
|
|
167
|
+
* dispose(async () => await db.close());
|
|
168
|
+
*
|
|
169
|
+
* // In tests
|
|
170
|
+
* afterAll(async () => await dispose()());
|
|
171
|
+
* ```
|
|
172
|
+
*
|
|
173
|
+
* @see {@link disposeAndExit} for the full shutdown sequence
|
|
174
|
+
*/
|
|
175
|
+
export declare function dispose(disposer?: Disposer): (code?: ExitCode) => Promise<void>;
|
|
176
|
+
/**
|
|
177
|
+
* Event name used internally for snapshot events in the event store.
|
|
178
|
+
* Snapshot events store a full state checkpoint, enabling efficient cold-start
|
|
179
|
+
* recovery without replaying the entire event stream.
|
|
180
|
+
*/
|
|
181
|
+
export declare const SNAP_EVENT = "__snapshot__";
|
|
182
|
+
/**
|
|
183
|
+
* Creates a tracer for detailed drain-cycle logging.
|
|
184
|
+
*
|
|
185
|
+
* When `logLevel` is `"trace"`, returns functions that log fetch, correlate,
|
|
186
|
+
* lease, ack, and block operations. At any other level, returns no-op
|
|
187
|
+
* functions to avoid overhead.
|
|
188
|
+
*
|
|
189
|
+
* @param logLevel - Current log level from configuration
|
|
190
|
+
* @returns Object with tracer methods (active or no-op)
|
|
191
|
+
*
|
|
192
|
+
* @internal Used by {@link Act} to instrument drain cycles.
|
|
221
193
|
*/
|
|
222
194
|
export declare function build_tracer(logLevel: LogLevel): {
|
|
223
195
|
fetched: <E extends Schemas>(fetched: Fetch<E>) => void;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ports.d.ts","sourceRoot":"","sources":["../../src/ports.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"ports.d.ts","sourceRoot":"","sources":["../../src/ports.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,aAAa,EAAE,MAAM,6BAA6B,CAAC;AAI5D,OAAO,KAAK,EACV,KAAK,EACL,UAAU,EACV,QAAQ,EACR,KAAK,EACL,KAAK,EACL,MAAM,EACN,QAAQ,EACR,OAAO,EACP,KAAK,EACN,MAAM,kBAAkB,CAAC;AAE1B;;;;;;;;;;;;;GAaG;AAEH;;GAEG;AACH,eAAO,MAAM,SAAS,4BAA6B,CAAC;AAEpD;;;;;GAKG;AACH,MAAM,MAAM,QAAQ,GAAG,CAAC,OAAO,SAAS,CAAC,CAAC,MAAM,CAAC,CAAC;AAMlD;;;GAGG;AACH,KAAK,QAAQ,CAAC,IAAI,SAAS,UAAU,IAAI,CAAC,OAAO,CAAC,EAAE,IAAI,KAAK,IAAI,CAAC;AAKlE;;;;;;;;;;;;;;;;;;GAkBG;AACH,wBAAgB,IAAI,CAAC,IAAI,SAAS,UAAU,EAAE,QAAQ,EAAE,QAAQ,CAAC,IAAI,CAAC,IACnD,UAAU,IAAI,KAAG,IAAI,CAQvC;AAMD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA6BG;AACH,eAAO,MAAM,GAAG,0EASd,CAAC;AAEH;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAmCG;AACH,eAAO,MAAM,KAAK,wCAEhB,CAAC;AAEH;;;;;;;;;;;;GAYG;AACH,eAAO,MAAM,KAAK,wCAEhB,CAAC;AASH;;;;;;;;;;;;;;GAcG;AACH,wBAAsB,cAAc,CAAC,IAAI,GAAE,QAAiB,GAAG,OAAO,CAAC,IAAI,CAAC,CAY3E;AAED;;;;;;;;;;;;;;;;;;;;;;;GAuBG;AACH,wBAAgB,OAAO,CACrB,QAAQ,CAAC,EAAE,QAAQ,GAClB,CAAC,IAAI,CAAC,EAAE,QAAQ,KAAK,OAAO,CAAC,IAAI,CAAC,CAGpC;AAMD;;;;GAIG;AACH,eAAO,MAAM,UAAU,iBAAiB,CAAC;AAMzC;;;;;;;;;;;GAWG;AACH,wBAAgB,YAAY,CAAC,QAAQ,EAAE,QAAQ,GAAG;IAChD,OAAO,EAAE,CAAC,CAAC,SAAS,OAAO,EAAE,OAAO,EAAE,KAAK,CAAC,CAAC,CAAC,KAAK,IAAI,CAAC;IACxD,UAAU,EAAE,CAAC,OAAO,EAAE,KAAK,CAAC;QAAE,MAAM,EAAE,MAAM,CAAC;QAAC,MAAM,CAAC,EAAE,MAAM,CAAA;KAAE,CAAC,KAAK,IAAI,CAAC;IAC1E,MAAM,EAAE,CAAC,MAAM,EAAE,KAAK,EAAE,KAAK,IAAI,CAAC;IAClC,KAAK,EAAE,CAAC,MAAM,EAAE,KAAK,EAAE,KAAK,IAAI,CAAC;IACjC,OAAO,EAAE,CAAC,MAAM,EAAE,KAAK,CAAC,KAAK,GAAG;QAAE,KAAK,EAAE,MAAM,CAAA;KAAE,CAAC,KAAK,IAAI,CAAC;CAC7D,CAmDA"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"state-builder.d.ts","sourceRoot":"","sources":["../../src/state-builder.ts"],"names":[],"mappings":"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
|
|
1
|
+
{"version":3,"file":"state-builder.d.ts","sourceRoot":"","sources":["../../src/state-builder.ts"],"names":[],"mappings":"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"}
|
|
@@ -78,6 +78,34 @@ export type Disposable = {
|
|
|
78
78
|
* @see {@link InMemoryStore} for the default implementation
|
|
79
79
|
* @see {@link PostgresStore} for the PostgreSQL implementation
|
|
80
80
|
*/
|
|
81
|
+
/**
|
|
82
|
+
* Minimal logger port compatible with pino, winston, bunyan, and console.
|
|
83
|
+
*
|
|
84
|
+
* Each log method accepts either:
|
|
85
|
+
* - `(msg: string)` — plain message
|
|
86
|
+
* - `(obj: unknown, msg?: string)` — structured data with optional message
|
|
87
|
+
*
|
|
88
|
+
* Implementations should respect `level` to gate output.
|
|
89
|
+
*
|
|
90
|
+
* @see {@link ConsoleLogger} for the default implementation
|
|
91
|
+
* @see {@link https://www.npmjs.com/package/@rotorsoft/act-pino | @rotorsoft/act-pino} for the Pino adapter
|
|
92
|
+
*/
|
|
93
|
+
export interface Logger extends Disposable {
|
|
94
|
+
level: string;
|
|
95
|
+
fatal(obj: unknown, msg?: string): void;
|
|
96
|
+
fatal(msg: string): void;
|
|
97
|
+
error(obj: unknown, msg?: string): void;
|
|
98
|
+
error(msg: string): void;
|
|
99
|
+
warn(obj: unknown, msg?: string): void;
|
|
100
|
+
warn(msg: string): void;
|
|
101
|
+
info(obj: unknown, msg?: string): void;
|
|
102
|
+
info(msg: string): void;
|
|
103
|
+
debug(obj: unknown, msg?: string): void;
|
|
104
|
+
debug(msg: string): void;
|
|
105
|
+
trace(obj: unknown, msg?: string): void;
|
|
106
|
+
trace(msg: string): void;
|
|
107
|
+
child(bindings: Record<string, unknown>): Logger;
|
|
108
|
+
}
|
|
81
109
|
export interface Store extends Disposable {
|
|
82
110
|
/**
|
|
83
111
|
* Initializes or resets the store.
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ports.d.ts","sourceRoot":"","sources":["../../../src/types/ports.ts"],"names":[],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"ports.d.ts","sourceRoot":"","sources":["../../../src/types/ports.ts"],"names":[],"mappings":"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"}
|