-
Notifications
You must be signed in to change notification settings - Fork 0
/
api.ts
287 lines (244 loc) · 6.78 KB
/
api.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
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
import { SqliteArguments, SqliteRowObject } from '@sqlite-js/driver';
export type SqliteDatabase = SqliteConnectionPool & SqliteConnection;
export interface SqliteConnectionPool extends SqliteConnection {
/**
* Reserve a connection for the duration of the callback.
*
* @param callback
* @param options
*/
withReservedConnection<T>(
callback: (connection: SqliteConnection) => Promise<T>,
options?: ReserveConnectionOptions
): Promise<T>;
/**
* Reserve a connection until released.
*
* @param options
*/
reserveConnection(
options?: ReserveConnectionOptions
): Promise<ReservedSqliteConnection>;
/**
* Start a transaction.
*/
transaction<T>(
callback: (tx: SqliteTransaction) => Promise<T>,
options?: TransactionOptions & ReserveConnectionOptions
): Promise<T>;
/**
* Usage:
*
* await using tx = await db.usingTransaction();
* ...
* await tx.commit();
*
* If commit is not called, the transaction is rolled back automatically.
*/
begin(
options?: TransactionOptions & ReserveConnectionOptions
): Promise<SqliteBeginTransaction>;
close(): Promise<void>;
[Symbol.asyncDispose](): Promise<void>;
}
export interface ReserveConnectionOptions {
readonly?: boolean;
}
export interface ReservedSqliteConnection extends SqliteConnection {
/** Direct handle to the underlying connection. */
connection: SqliteConnection;
release(): Promise<void>;
[Symbol.asyncDispose](): Promise<void>;
}
export interface QueryInterface {
prepare<T extends SqliteRowObject>(
query: string,
args?: SqliteArguments,
options?: QueryOptions
): PreparedQuery<T>;
run(
query: string,
args?: SqliteArguments,
options?: ReserveConnectionOptions
): Promise<RunResult>;
stream<T extends SqliteRowObject>(
query: string,
args: SqliteArguments,
options?: StreamOptions & ReserveConnectionOptions
): AsyncGenerator<T[]>;
/**
* Convenience method, same as query(query, args).select(options).
*
* When called on a connection pool, uses readonly: true by default.
*/
select<T extends SqliteRowObject>(
query: string,
args?: SqliteArguments,
options?: QueryOptions & ReserveConnectionOptions
): Promise<T[]>;
/**
* Get a single row.
*
* Throws an exception if the query returns no results.
*
* @param query
* @param args
* @param options
*/
get<T extends SqliteRowObject>(
query: string,
args?: SqliteArguments,
options?: QueryOptions & ReserveConnectionOptions
): Promise<T>;
/**
* Get a single row.
*
* Returns null if the query returns no results.
*
* @param query
* @param args
* @param options
*/
getOptional<T extends SqliteRowObject>(
query: string,
args?: SqliteArguments,
options?: QueryOptions & ReserveConnectionOptions
): Promise<T | null>;
pipeline(options?: ReserveConnectionOptions): QueryPipeline;
}
export interface SqliteConnection extends QueryInterface {
/**
* Start a transaction.
*/
transaction<T>(
callback: (tx: SqliteTransaction) => Promise<T>,
options?: TransactionOptions
): Promise<T>;
/**
* Usage:
*
* await using tx = await db.begin();
* ...
* await tx.commit();
*
* If commit is not called, the transaction is rolled back automatically.
*/
begin(options?: TransactionOptions): Promise<SqliteBeginTransaction>;
/**
* Listen for individual update events as they occur.
*
* For efficiency, multiple updates may be batched together.
*
* These events may be batched together for efficiency.
* Either way, all events in a transaction must be emitted before
* "onTransactionClose" is emitted for that transaction.
*
* Use options.tables to limit the events to specific tables.
*
* Use options.batchLimit == 1 to disable event batching.
*/
onUpdate(
listener: UpdateListener,
options?: { tables?: string[]; batchLimit?: number }
): () => void;
/**
* Listen for transaction events. Fired when either:
* 1. Transaction is rolled back.
* 2. Transaction is committed and persisted.
*
* @param listener
*/
onTransactionClose(listener: TransactionCloseListener): () => void;
/**
* Listen for committed updates to tables.
*
* This can be achieved by combining `onUpdate()` and `onTransactionClose()`, although
* implementations may optimize this version for large transactions.
*/
onTablesChanged(listener: TablesChangedListener): () => void;
close(): Promise<void>;
}
export interface BatchedUpdateEvent {
events: UpdateEvent[];
}
export interface UpdateEvent {
table: string;
type: 'insert' | 'update' | 'delete';
rowId: bigint;
}
export interface TablesChangedEvent {
tables: string[];
}
export type UpdateListener = (event: BatchedUpdateEvent) => void;
export type TablesChangedListener = (event: TablesChangedEvent) => void;
export interface TransactionCloseEvent {
rollback: boolean;
}
export type TransactionCloseListener = (event: TransactionCloseEvent) => void;
export interface SqliteTransaction extends QueryInterface {
rollback(): Promise<void>;
}
export interface SqliteBeginTransaction extends SqliteTransaction {
commit(): Promise<void>;
/**
* Rolls back the transaction.
*
* Does nothing if the transansaction is already committed or rolled back.
*/
dispose(): Promise<void>;
[Symbol.asyncDispose](): Promise<void>;
}
export interface TransactionOptions {
/**
* See SQLite docs on the type.
*
* For WAL mode, immediate and exclusive are the same.
*
* Read transactions should use "deferred".
*/
type?: 'exclusive' | 'immediate' | 'deferred';
}
export interface RunResult {
changes: number;
lastInsertRowId: bigint;
}
export interface PreparedQuery<T extends SqliteRowObject> {
parse(): Promise<{ columns: string[] }>;
/**
* Run the statement and stream results back.
*
* @param options.chunkSize size of each chunk to stream
*/
stream(args?: SqliteArguments, options?: StreamOptions): AsyncGenerator<T[]>;
/**
* Returns an array of rows.
*/
select(args?: SqliteArguments): Promise<T[]>;
/**
* Run the statement and return the number of changes.
*/
run(args?: SqliteArguments): Promise<RunResult>;
dispose(): void;
[Symbol.dispose](): void;
}
export interface QueryOptions {
/** true to return all integers as bigint */
bigint?: boolean;
}
export interface StreamOptions extends QueryOptions {
/** Size limit in bytes for each chunk */
chunkSize?: number;
}
export interface QueryPipeline {
/**
* Enqueue a query.
*/
run(query: string | PreparedQuery<any>, args?: SqliteArguments): void;
/**
* Flush all existing queries, wait for the last query to complete.
*
* TODO: define error handling.
*/
flush(): Promise<void>;
readonly count: number;
}