generated from shgysk8zer0/npm-template
-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathattempt.js
More file actions
527 lines (482 loc) · 14.7 KB
/
attempt.js
File metadata and controls
527 lines (482 loc) · 14.7 KB
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
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
const VALUE_INDEX = 0;
const ERROR_INDEX = 1;
const OK_INDEX = 2;
/**
* @type {unique symbol}
*/
export const NONE = Symbol('attempt:value:none');
/**
* @type {unique symbol}
*/
export const SUCCEEDED = Symbol('attempt:status:succeeded');
/**
* @type {unique symbol}
*/
export const FAILED = Symbol('attempt:status:failed');
/**
* Returns the status of an attempt result.
* @enum {unique symbol}
* @property {unique symbol} succeeded - Represents a successful attempt result.
* @property {unique symbol} failed - Represents a failed attempt result.
*/
export const ATTEMPT_STATUSES = Object.freeze({
succeeded: SUCCEEDED,
failed: FAILED,
});
/**
* Union of all error types.
* @typedef {Error|DOMException|TypeError|RangeError|AggregateError|ReferenceError|EvalError|URIError|SyntaxError} AnyError
*/
/**
* @template T
* @template {AnyError} E
* @typedef {AttemptSuccess<T> | AttemptFailure<E>} AttemptResult<T, E>
* Union type for both possible attempt outcomes.
*/
class ResultTuple extends Array {
/**
* @param {T} value
* @param {E} error
* @param {boolean} ok
*/
constructor(value, error, ok = value !== NONE) {
if (new.target === ResultTuple) {
throw new TypeError('Cannot construct `ResultTuple` instances directly. Use `succeed()` or `fail()` instead.');
}
super(value, error, ok);
Object.freeze(this);
}
get [Symbol.toStringTag]() {
return 'ResultTuple';
}
toString() {
return `[object ${this[Symbol.toStringTag]}]`;
}
/**
* @returns {Error|NONE}
*/
get error() {
return this[ERROR_INDEX];
}
/**
* @returns {boolean}
*/
get ok() {
return this[OK_INDEX];
}
/**
* @returns {T}
*/
get value() {
return this[VALUE_INDEX];
}
/**
* @returns {typeof SUCCEEDED}
*/
static get SUCCEEDED() {
return SUCCEEDED;
}
/**
* @returns {typeof FAILED}
*/
static get FAILED() {
return FAILED;
}
}
/**
* @template T
* @typedef {readonly [T, NONE, true] & { value: T, error: NONE, status: typeof SUCCEEDED, ok: true }} AttemptSuccess
* Represents a successful outcome tuple with hidden metadata. Named differently in class to avoid JSDocs confusion.
*/
class SuccessTuple extends ResultTuple {
/**
*
* @param {T} value
*/
constructor(value) {
if (value === NONE) {
throw new TypeError('Cannot succeed with `NONE` as value.');
} else {
super(value, NONE, true);
}
}
get [Symbol.toStringTag]() {
return 'AttemptSuccess';
}
/**
* @returns {SUCCEEDED}
*/
get status() {
return SUCCEEDED;
}
}
/**
* @template E
* @typedef {readonly [NONE, E, false] & { value: NONE, error: E, status: typeof FAILED, ok: false }} AttemptFailure
* Represents a failed outcome tuple with hidden metadata. Named differently in class to avoid JSDocs confusion.
*/
class FailureTuple extends ResultTuple {
/**
*
* @param {E} error
*/
constructor(error) {
if (error === NONE) {
throw new TypeError('Cannot fail with `NONE` as error.');
} else if (typeof error === 'string') {
super(NONE, new Error(error), false);
} else if (Error.isError(error)) {
super(NONE, error, false);
} else if (! (error instanceof AbortSignal)) {
super(NONE, new TypeError('Invalid error type provided.'), false);
} else if (! error.aborted) {
super(NONE, new TypeError('Failed with a non-aborted `AbortSignal`.'), false);
} else if (Error.isError(error.reason)) {
super(NONE, error.reason, false);
} else {
super(NONE, new Error(error.reason), false);
}
}
get [Symbol.toStringTag]() {
return 'AttemptFailure';
}
/**
* @returns {FAILED}
*/
get status() {
return FAILED;
}
}
/**
* @template T
* @param {T} input
* @returns {T}
*/
const _successHandler = input => input;
/**
* @template E
* @param {E} err
* @throws {E}
*/
const _failHandler = err => {
throw err;
};
/**
* Returns `true` if the given value is an AttemptResult (a frozen tuple with hidden metadata).
*
* @param {unknown} result The value to check.
* @returns {result is AttemptResult}
*/
export const isAttemptResult = result => result instanceof ResultTuple;
/**
* Returns `true` if the given result is a successful AttemptResult.
*
* @param {unknown} result
* @returns {result is AttemptSuccess}
*/
export const succeeded = result => result instanceof SuccessTuple;
/**
*
* @param {any} val The value to check
* @returns {boolean} If the value is `NONE`
*/
export const isNone = val => val === NONE;
/**
* Returns `true` if the given result is a failed AttemptResult.
*
* @param {unknown} result
* @returns {result is AttemptFailure<AnyError>}
*/
export const failed = result => result instanceof FailureTuple;
/**
* Creates an `AttemptSuccess`
*
* @template T
* @param {T} value
* @returns {AttemptSuccess<T>}
*/
export const succeed = value => value instanceof ResultTuple ? value : new SuccessTuple(value);
/**
* @overload
* @param {string} err
* @returns {AttemptFailure<Error>}
*/
/**
* @overload
* @template E
* @param {AttemptFailure<E>} err
* @returns {AttemptFailure<E>}
*/
/**
* @overload
* @param {AnyError} err
* @returns {AttemptFailure<AnyError>}
*/
/**
* Creates an `AttemptFailure`
*
* @param {AnyError|AttemptFailure<AnyError>|string} err
* @returns {AttemptFailure<AnyError>}
*/
export function fail(err) {
if (err instanceof ResultTuple) {
return err;
} else {
return new FailureTuple(err);
}
}
/**
*
* @template T
* @template {AnyError} E
* @param {AttemptResult<T, E>} result
* @returns {T}
* @throws {E}
*/
export function unwrap(result) {
if (! (result instanceof ResultTuple)) {
throw new TypeError('Cannot unwrap a non-Result object.');
} else if (result.ok) {
return result[VALUE_INDEX];
} else {
throw result[ERROR_INDEX];
}
}
/**
* Extracts the value from a successful `AttemptResult`.
*
* @template T
* @param {AttemptSuccess<T>} result The result to extract from.
* @returns {T} The successful result value.
* @throws {TypeError} If the result is not a successful `AttemptSuccess`.
*/
export function getResultValue(result) {
if (result instanceof SuccessTuple) {
return result[VALUE_INDEX];
} else {
throw new TypeError('Result must be an `AttemptSuccess` tuple.');
}
}
/**
* Extracts the error from a failed `AttemptResult`.
*
* @template E
* @param {AttemptFailure<E>} result The result to extract from.
* @returns {E} The error object if the result is a failure.
* @throws {TypeError} If the result is not a failed `AttemptFailure`.
*/
export function getResultError(result) {
if (result instanceof FailureTuple){
return result[ERROR_INDEX];
} else {
throw new TypeError('Result must be an `AttemptFailure` tuple.');
}
}
/**
* Gets the status of an attempt result.
*
* @param {AttemptResult} result The result to check.
* @returns {ATTEMPT_STATUSES.succeeded|ATTEMPT_STATUSES.failed}
* @throws {TypeError} If the result is not an `AttemptResult`.
*/
export function getAttemptStatus(result) {
if (result instanceof ResultTuple) {
return result.status;
} else {
throw new TypeError('Result must be an `AttemptResult` tuple.');
}
}
/**
* Attempts to execute a given callback function, catching any synchronous errors or Promise rejections,
* and returning the result in a consistent [value, error] tuple format.
* All returned arrays are Object.frozen() for immutability.
* Non-Error rejections are normalized into standard Error objects for consistency.
*
* @template T
* @param {(...any) => T | PromiseLike<T>} callback The function to execute. It can be synchronous or return a Promise.
* @param {(...any)} args Arguments to pass to the callback function.
* @returns {Promise<AttemptResult<Awaited<T>|NONE, AnyError|NONE>>} A Promise that resolves to a tuple:
* - `[result, NONE, true]` on success, where `result` is the resolved value of `T`.
* - `[NONE, Error, false]` on failure, where `Error` is the caught error (normalized to an Error object).
* @throws {TypeError} If `callback` is not a function.
*/
export async function attemptAsync(callback, ...args) {
if (typeof callback !== 'function') {
throw new TypeError('callback must be a function.');
} else {
return await Promise.try(callback, ...args).then(succeed, fail);
}
}
/**
* Attempts to execute a given callback function synchronously, catching any errors,
* and returning the result in a consistent [value, error] tuple format.
* All returned arrays are Object.frozen() for immutability.
* Non-Errors thrown are normalized into standard Error objects for consistency.
*
* @template T
* @param {(...any) => T} callback The function to execute.
* @param {(...any)} args Arguments to pass to the callback function.
* @returns {AttemptResult<T, AnyError|NONE>} A tuple:
* - `[result, NONE, true]` on success, where `result` is the value of `T`.
* - `[NONE, Error, false]` on failure, where `Error` is the caught error (normalized to an Error object).
* @throws {TypeError} If `callback` is not a function or is an async function.
*/
export function attemptSync(callback, ...args) {
if (typeof callback !== 'function') {
throw new TypeError('callback must be a function.');
} else if (callback.constructor.name === 'AsyncFunction') {
throw new TypeError('callback cannot be an async function.');
} else {
try {
const result = callback(...args);
return result instanceof Promise ? result.then(succeed, fail) : succeed(result);
} catch(err) {
return fail(err);
}
}
}
/**
* Return a new function that forwards its arguments to `attemptAsync`.
*
* @template T
* @param {(...any) => T | PromiseLike<T>} callback The function to execute.
* @returns {(...any) => Promise<AttemptSuccess<Awaited<T>>|AttemptFailure<Error>>} A wrapped function that returns a tuple:
* - `[result, NONE, true]` on success, where `result` is the value of `T`.
* - `[NONE, Error, false]` on failure, where `Error` is the caught error (normalized to an Error object).
* @throws {TypeError} If `callback` is not a function.
*/
export const createSafeAsyncCallback = callback => async (...args) => await attemptAsync(callback, ...args);
/**
* Return a new function that forwards its arguments to `attemptSync`.
*
* @template T
* @param {(...any) => T} callback The function to execute.
* @returns {(...any) => AttemptSuccess<T>|AttemptFailure<Error>} A wrapped function that returns a tuple:
* - `[result, NONE, true]` on success, where `result` is the value of `T`.
* - `[NONE, Error, false]` on failure, where `Error` is the caught error (normalized to an Error object).
* @throws {TypeError} If `callback` is not a function or is an async function.
*/
export const createSafeSyncCallback = callback => (...args) => attemptSync(callback, ...args);
/**
* Handles an `AttemptResult` asynchronously by invoking the appropriate callback.
*
* - If the result is successful, `success` is called with the result value.
* - If the result is a failure, `failure` is called with the error.
* - If the result is not a valid `AttemptResult`, a failed result is returned with a `TypeError`.
*
* All callbacks are wrapped in `attemptAsync()` to preserve consistent result formatting and error handling.
*
* @template T
* @template E
* @template U
* @template V
* @param {AttemptResult<T, E>} result The result to handle.
* @param {{
* success?: (value: T) => U | PromiseLike<U>,
* failure?: (err: E) => V | PromiseLike<V>
* signal?: AbortSignal
* }} callbacks Handlers for success or failure cases.
* @returns @returns {Promise<AttemptSuccess<Awaited<U|V>>|AttemptFailure<Error>>} A Promise resolving to a new `AttemptResult` from the callback execution,
* or a failure if the input is invalid.
*/
export async function handleResultAsync(result, {
success = _successHandler,
failure = _failHandler,
signal,
}) {
if (! (result instanceof ResultTuple)) {
throw new TypeError('Result must be an `AttemptResult` tuple.');
} else if (typeof success !== 'function' || typeof failure !== 'function') {
throw new TypeError('Both success and failure handlers must be functions.');
} else if (signal instanceof AbortSignal && signal.aborted) {
return fail(signal.reason);
} else {
switch (result.status) {
case ResultTuple.SUCCEEDED:
return await attemptAsync(success, result[VALUE_INDEX]);
case ResultTuple.FAILED:
return await attemptAsync(failure, result[ERROR_INDEX]);
}
}
}
/**
* Handles an `AttemptResult` synchronously by invoking the appropriate callback.
*
* - If the result is successful, `success` is called with the result value.
* - If the result is a failure, `failure` is called with the error.
* - If the result is not a valid `AttemptResult`, a failed result is returned with a `TypeError`.
*
* All callbacks are wrapped in `attemptSync()` to preserve consistent result formatting and error handling.
*
* @template T
* @template E
* @template U
* @template V
* @param {AttemptResult<T, E>} result The result to handle.
* @param {{
* success?: (value: T) => U,
* failure?: (err: E) => V
* }} callbacks Handlers for success or failure cases.
* @returns {AttemptSuccess<U|V>|AttemptFailure<Error>>} A new `AttemptResult` from the callback execution,
* or a failure if the input is invalid.
*/
export function handleResultSync(result, {
success = _successHandler,
failure = _failHandler,
}) {
if (! (result instanceof ResultTuple)) {
throw new TypeError('Result must be an `AttemptResult` tuple.');
} else if (typeof success !== 'function' || typeof failure !== 'function') {
throw new TypeError('Both success and failure handlers must be functions.');
} else {
switch (result.status) {
case ResultTuple.SUCCEEDED:
return attemptSync(success, result[VALUE_INDEX]);
case ResultTuple.FAILED:
return attemptSync(failure, result[ERROR_INDEX]);
}
}
}
/**
* Attempts to execute multiple callbacks sequentially, passing the result of each callback to the next.
*
* @template T,R
* @param {...Function} callbacks
* @returns {Promise<AttemptSuccess<any>|AttemptFailure<Error>>}
*/
export async function attemptAll(...callbacks) {
if (callbacks.some(cb => typeof cb !== 'function')) {
throw new TypeError('All callbacks must be functions.');
} else {
return await callbacks.reduce(
/**
* @param {Promise<T>} promise
* @param {(T) => R|PromiseLike<R>} callback
* @returns {Promise<R>}
*/
(promise, callback) => promise.then(callback),
Promise.resolve(NONE),
).then(succeed, fail);
}
}
/**
* Throws the error if `result` is an `AttemptFailure`.
* @template E
* @param {AttemptResult<any, E>} result The result tuple
* @throws {E} The error if result is an `AttemptFailure`
*/
export function throwIfFailed(result) {
if (result instanceof FailureTuple) {
throw result[ERROR_INDEX];
}
}
// Aliased to avoid confusion with types and for easier usage
export {
ResultTuple as AttemptResult,
SuccessTuple as AttemptSuccess,
FailureTuple as AttemptFailure,
createSafeAsyncCallback as createSafeCallback,
attemptAsync as attempt,
succeed as ok,
fail as err,
};