-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathresult.ts
264 lines (223 loc) · 7.13 KB
/
result.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
import { DatabaseError } from './protocol.js';
type Resolution = null | string;
type Callback<T> = (item: T) => void;
type ResultHandler = (
resolve: Callback<Resolution>,
reject: Callback<Error | DatabaseError>,
) => void;
/** The default result type, used if no generic type parameter is specified. */
export type ResultRecord<T = any> = Record<string, T>;
function makeRecord<T>(names: string[], data: ReadonlyArray<any>): T {
const result: Record<string, any> = {};
names.forEach((key, j) => (result[key] = data[j]));
return result as T;
}
class ResultRowImpl<T> extends Array<any> {
#names?: string[];
#lookup?: Map<keyof T, number>;
set(names: string[], lookup: Map<keyof T, number>, values: any[]) {
this.#names = names;
this.#lookup = lookup;
this.push(...values);
}
/**
* Return value for the provided column name.
*/
get<K extends string & keyof T>(name: keyof T): T[K] {
const i = this.#lookup?.get(name);
if (i === undefined)
throw new Error(`Invalid column name: ${String(name)}`);
return this[i];
}
/**
* Return an object mapping column names to values.
*/
reify() {
if (this.#names === undefined)
throw new Error('Column names not available');
return makeRecord<T>(this.#names, this);
}
}
/**
* A result row provides access to data for a single row, extending an array.
* @interface
*
* The generic type parameter is carried over from the query method.
*
* To retrieve a column value by name use the {@link get} method; or use {@link reify} to convert
* the row into an object.
*
*/
export type ResultRow<T> = ReadonlyArray<any> &
Pick<ResultRowImpl<T>, 'get' | 'reify'>;
/**
* The awaited query result.
*
* Iterating over the result yields objects of the generic type parameter.
*/
export class Result<T = ResultRecord> {
constructor(
public names: string[],
public rows: ResultRow<T>[],
public status: null | string,
) {}
[Symbol.iterator](): Iterator<T> {
let i = 0;
const rows = this.rows;
const length = rows.length;
const names = this.names;
const shift = () => {
const data = rows[i++];
return makeRecord<T>(names, data);
};
return {
next: () => {
if (i === length) return { done: true, value: undefined! };
return { done: false, value: shift() };
},
};
}
}
/**
* The query result iterator.
*
* Iterating asynchronously yields objects of the generic type parameter.
*/
class ResultIteratorImpl<T> extends Promise<Result<T>> {
private subscribers: ((
done: boolean,
error?: string | DatabaseError | Error,
) => void)[] = [];
private done = false;
constructor(
private names: string[],
private data: any[][],
executor: ResultHandler,
) {
super((resolve, reject) => {
executor((status) => {
const names = this.names || [];
const data = this.data || [];
const lookup: Map<keyof T, number> = new Map();
let i = 0;
for (const name of names) {
lookup.set(name as keyof T, i);
i++;
}
resolve(
new Result(
names,
data.map((values) => {
const row = new ResultRowImpl<T>();
row.set(names, lookup, values);
return row;
}),
status,
),
);
}, reject);
});
}
/**
* Return the first item (if any) from the query results.
*/
async first() {
for await (const row of this) {
return row;
}
}
/**
* Return the first item from the query results, or throw an error.
*/
async one() {
for await (const row of this) {
return row;
}
throw new Error('Query returned an empty result');
}
notify(done: boolean, status?: string | DatabaseError | Error) {
if (done) this.done = true;
for (const subscriber of this.subscribers) subscriber(done, status);
this.subscribers.length = 0;
}
[Symbol.asyncIterator](): AsyncIterator<T> {
let i = 0;
//const container = this.container;
const shift = () => {
const names = this.names;
const values = this.data[i];
i++;
if (names === null) {
throw new Error('Column name mapping missing.');
}
return makeRecord<T>(names, values);
};
/* eslint-disable-next-line @typescript-eslint/no-explicit-any */
let error: any = null;
this.catch((reason) => {
error = new Error(reason);
});
return {
next: async () => {
if (error) {
throw error;
}
if (this.data.length <= i) {
if (this.done) {
return { done: true, value: undefined! };
}
if (
await new Promise<boolean>((resolve, reject) => {
this.subscribers.push((done, status) => {
if (typeof status !== 'undefined') {
reject(status);
} else {
resolve(done);
}
});
})
) {
return { done: true, value: undefined! };
}
}
return { value: shift(), done: false };
},
};
}
}
export type DataHandler = Callback<any[] | Resolution | Error>;
export type NameHandler = Callback<string[]>;
ResultIteratorImpl.prototype.constructor = Promise;
export interface ResultIterator<T> extends ResultIteratorImpl<T> {
}
export function makeResult<T>(transform?: (name: string) => string) {
let dataHandler: DataHandler | null = null;
const names: string[] = [];
const rows: any[][] = [];
const p = new ResultIteratorImpl<T>(names, rows, (resolve, reject) => {
dataHandler = (row: any[] | Resolution | Error) => {
if (row === null || typeof row === 'string') {
resolve(row);
p.notify(true);
} else if (Array.isArray(row)) {
rows.push(row);
p.notify(false);
} else {
reject(row);
p.notify(true, row);
}
};
});
const nameHandler = (ns: string[]) => {
names.length = 0;
if (transform) {
ns = ns.map(transform);
}
names.push(...ns);
};
return {
iterator: p,
dataHandler: dataHandler!,
nameHandler: nameHandler,
};
}