X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;ds=sidebyside;f=src%2Futility-types.ts;h=f13cce6a70d9f60ed7417b9d2a45675c5179fb72;hb=HEAD;hp=60ec2f546fe50f2ab14ea96b49b60d839dd12ea0;hpb=7379799cccb092ed5e83b388977a25a8a23ac37b;p=poolifier.git diff --git a/src/utility-types.ts b/src/utility-types.ts index 60ec2f54..8ccb1a74 100644 --- a/src/utility-types.ts +++ b/src/utility-types.ts @@ -1,99 +1,124 @@ +import type { AsyncResource } from 'node:async_hooks' import type { EventLoopUtilization } from 'node:perf_hooks' import type { MessagePort, TransferListItem } from 'node:worker_threads' -import type { KillBehavior } from './worker/worker-options' + +import type { WorkerChoiceStrategy } from './pools/selection-strategies/selection-strategies-types.js' +import type { KillBehavior } from './worker/worker-options.js' /** * Worker error. - * * @typeParam Data - Type of data sent to the worker triggering an error. This can only be structured-cloneable data. */ export interface WorkerError { /** - * Task function name triggering the error. + * Data triggering the error. */ - readonly name: string + readonly data?: Data /** * Error message. */ readonly message: string /** - * Data triggering the error. + * Task function name triggering the error. */ - readonly data?: Data + readonly name: string } /** * Task performance. - * * @internal */ export interface TaskPerformance { /** - * Task name. + * Task event loop utilization. */ - readonly name: string + readonly elu?: EventLoopUtilization /** - * Task performance timestamp. + * Task name. */ - readonly timestamp: number + readonly name: string /** * Task runtime. */ readonly runTime?: number /** - * Task event loop utilization. + * Task performance timestamp. */ - readonly elu?: EventLoopUtilization + readonly timestamp: number } /** * Worker task performance statistics computation settings. - * * @internal */ export interface WorkerStatistics { + /** + * Whether the worker computes the task event loop utilization (ELU) or not. + */ + readonly elu: boolean /** * Whether the worker computes the task runtime or not. */ readonly runTime: boolean +} + +/** + * Task function properties. + */ +export interface TaskFunctionProperties { /** - * Whether the worker computes the task event loop utilization (ELU) or not. + * Task function name. */ - readonly elu: boolean + readonly name: string + /** + * Task function priority. Lower values have higher priority. + */ + readonly priority?: number + /** + * Task function worker choice strategy. + */ + readonly strategy?: WorkerChoiceStrategy } /** * Message object that is passed as a task between main worker and worker. - * * @typeParam Data - Type of data sent to the worker. This can only be structured-cloneable data. * @internal */ export interface Task { + /** + * Task input data that will be passed to the worker. + */ + readonly data?: Data /** * Task name. */ readonly name?: string /** - * Task input data that will be passed to the worker. + * Task priority. Lower values have higher priority. + * @defaultValue 0 */ - readonly data?: Data + readonly priority?: number /** - * Array of transferable objects. + * Task worker choice strategy. + */ + readonly strategy?: WorkerChoiceStrategy + /** + * Task UUID. */ - readonly transferList?: TransferListItem[] + readonly taskId?: `${string}-${string}-${string}-${string}-${string}` /** * Timestamp. */ readonly timestamp?: number /** - * Task UUID. + * Array of transferable objects. */ - readonly taskId?: string + readonly transferList?: readonly TransferListItem[] } /** * Message object that is passed between main worker and worker. - * * @typeParam Data - Type of data sent to the worker or execution response. This can only be structured-cloneable data. * @typeParam ErrorData - Type of data sent to the worker triggering an error. This can only be structured-cloneable data. * @internal @@ -101,81 +126,89 @@ export interface Task { export interface MessageValue extends Task { /** - * Worker id. + * Whether the worker starts or stops its activity check. */ - readonly workerId?: number + readonly checkActive?: boolean /** * Kill code. */ - readonly kill?: KillBehavior | true | 'success' | 'failure' + readonly kill?: 'failure' | 'success' | KillBehavior | true /** - * Worker error. + * Message port. */ - readonly workerError?: WorkerError + readonly port?: MessagePort /** - * Task performance. + * Whether the worker is ready or not. */ - readonly taskPerformance?: TaskPerformance + readonly ready?: boolean + /** + * Whether the worker computes the given statistics or not. + */ + readonly statistics?: WorkerStatistics + /** + * Task function serialized to string. + */ + readonly taskFunction?: string /** * Task function operation: * - `'add'` - Add a task function. * - `'remove'` - Remove a task function. * - `'default'` - Set a task function as default. */ - readonly taskFunctionOperation?: 'add' | 'remove' | 'default' + readonly taskFunctionOperation?: 'add' | 'default' | 'remove' /** * Whether the task function operation is successful or not. */ readonly taskFunctionOperationStatus?: boolean /** - * Task function serialized to string. - */ - readonly taskFunction?: string - /** - * Task function name. - */ - readonly taskFunctionName?: string - /** - * Task function names. + * Task function properties. */ - readonly taskFunctionNames?: string[] + readonly taskFunctionProperties?: TaskFunctionProperties /** - * Whether the worker computes the given statistics or not. + * Task functions properties. */ - readonly statistics?: WorkerStatistics + readonly taskFunctionsProperties?: TaskFunctionProperties[] /** - * Whether the worker is ready or not. + * Task performance. */ - readonly ready?: boolean + readonly taskPerformance?: TaskPerformance /** - * Whether the worker starts or stops its activity check. + * Worker error. */ - readonly checkActive?: boolean + readonly workerError?: WorkerError /** - * Message port. + * Worker id. */ - readonly port?: MessagePort + readonly workerId?: number } /** * An object holding the task execution response promise resolve/reject callbacks. - * * @typeParam Response - Type of execution response. This can only be structured-cloneable data. * @internal */ export interface PromiseResponseWrapper { /** - * Resolve callback to fulfill the promise. + * The asynchronous resource used to track the task execution. */ - readonly resolve: (value: Response | PromiseLike) => void + readonly asyncResource?: AsyncResource /** * Reject callback to reject the promise. */ readonly reject: (reason?: unknown) => void + /** + * Resolve callback to fulfill the promise. + */ + readonly resolve: (value: PromiseLike | Response) => void /** * The worker node key executing the task. */ readonly workerNodeKey: number } +/** + * Remove readonly modifier from all properties of T. + * @typeParam T - Type to remove readonly modifier. + * @internal + */ export type Writable = { -readonly [P in keyof T]: T[P] }