@temporalio/common
Version:
Common library for code that's used across the Client, Worker, and/or Workflow
413 lines (369 loc) • 15 kB
text/typescript
import type { temporal } from '@temporalio/proto';
import { errorMessage, isRecord, SymbolBasedInstanceOfError } from './type-helpers';
import { Duration } from './time';
import { makeProtoEnumConverters } from './internal-workflow';
export const FAILURE_SOURCE = 'TypeScriptSDK';
export type ProtoFailure = temporal.api.failure.v1.IFailure;
export const TimeoutType = {
START_TO_CLOSE: 'START_TO_CLOSE',
SCHEDULE_TO_START: 'SCHEDULE_TO_START',
SCHEDULE_TO_CLOSE: 'SCHEDULE_TO_CLOSE',
HEARTBEAT: 'HEARTBEAT',
/** @deprecated Use {@link START_TO_CLOSE} instead. */
TIMEOUT_TYPE_START_TO_CLOSE: 'START_TO_CLOSE', // eslint-disable-line deprecation/deprecation
/** @deprecated Use {@link SCHEDULE_TO_START} instead. */
TIMEOUT_TYPE_SCHEDULE_TO_START: 'SCHEDULE_TO_START', // eslint-disable-line deprecation/deprecation
/** @deprecated Use {@link SCHEDULE_TO_CLOSE} instead. */
TIMEOUT_TYPE_SCHEDULE_TO_CLOSE: 'SCHEDULE_TO_CLOSE', // eslint-disable-line deprecation/deprecation
/** @deprecated Use {@link HEARTBEAT} instead. */
TIMEOUT_TYPE_HEARTBEAT: 'HEARTBEAT', // eslint-disable-line deprecation/deprecation
/** @deprecated Use `undefined` instead. */
TIMEOUT_TYPE_UNSPECIFIED: undefined, // eslint-disable-line deprecation/deprecation
} as const;
export type TimeoutType = (typeof TimeoutType)[keyof typeof TimeoutType];
export const [encodeTimeoutType, decodeTimeoutType] = makeProtoEnumConverters<
temporal.api.enums.v1.TimeoutType,
typeof temporal.api.enums.v1.TimeoutType,
keyof typeof temporal.api.enums.v1.TimeoutType,
typeof TimeoutType,
'TIMEOUT_TYPE_'
>(
{
[TimeoutType.START_TO_CLOSE]: 1,
[TimeoutType.SCHEDULE_TO_START]: 2,
[TimeoutType.SCHEDULE_TO_CLOSE]: 3,
[TimeoutType.HEARTBEAT]: 4,
UNSPECIFIED: 0,
} as const,
'TIMEOUT_TYPE_'
);
export const RetryState = {
IN_PROGRESS: 'IN_PROGRESS',
NON_RETRYABLE_FAILURE: 'NON_RETRYABLE_FAILURE',
TIMEOUT: 'TIMEOUT',
MAXIMUM_ATTEMPTS_REACHED: 'MAXIMUM_ATTEMPTS_REACHED',
RETRY_POLICY_NOT_SET: 'RETRY_POLICY_NOT_SET',
INTERNAL_SERVER_ERROR: 'INTERNAL_SERVER_ERROR',
CANCEL_REQUESTED: 'CANCEL_REQUESTED',
/** @deprecated Use {@link IN_PROGRESS} instead. */
RETRY_STATE_IN_PROGRESS: 'IN_PROGRESS', // eslint-disable-line deprecation/deprecation
/** @deprecated Use {@link NON_RETRYABLE_FAILURE} instead. */
RETRY_STATE_NON_RETRYABLE_FAILURE: 'NON_RETRYABLE_FAILURE', // eslint-disable-line deprecation/deprecation
/** @deprecated Use {@link TIMEOUT} instead. */
RETRY_STATE_TIMEOUT: 'TIMEOUT', // eslint-disable-line deprecation/deprecation
/** @deprecated Use {@link MAXIMUM_ATTEMPTS_REACHED} instead. */
RETRY_STATE_MAXIMUM_ATTEMPTS_REACHED: 'MAXIMUM_ATTEMPTS_REACHED', // eslint-disable-line deprecation/deprecation
/** @deprecated Use {@link RETRY_POLICY_NOT_SET} instead. */
RETRY_STATE_RETRY_POLICY_NOT_SET: 'RETRY_POLICY_NOT_SET', // eslint-disable-line deprecation/deprecation
/** @deprecated Use {@link INTERNAL_SERVER_ERROR} instead. */
RETRY_STATE_INTERNAL_SERVER_ERROR: 'INTERNAL_SERVER_ERROR', // eslint-disable-line deprecation/deprecation
/** @deprecated Use {@link CANCEL_REQUESTED} instead. */
RETRY_STATE_CANCEL_REQUESTED: 'CANCEL_REQUESTED', // eslint-disable-line deprecation/deprecation
/** @deprecated Use `undefined` instead. */
RETRY_STATE_UNSPECIFIED: undefined, // eslint-disable-line deprecation/deprecation
} as const;
export type RetryState = (typeof RetryState)[keyof typeof RetryState];
export const [encodeRetryState, decodeRetryState] = makeProtoEnumConverters<
temporal.api.enums.v1.RetryState,
typeof temporal.api.enums.v1.RetryState,
keyof typeof temporal.api.enums.v1.RetryState,
typeof RetryState,
'RETRY_STATE_'
>(
{
[RetryState.IN_PROGRESS]: 1,
[RetryState.NON_RETRYABLE_FAILURE]: 2,
[RetryState.TIMEOUT]: 3,
[RetryState.MAXIMUM_ATTEMPTS_REACHED]: 4,
[RetryState.RETRY_POLICY_NOT_SET]: 5,
[RetryState.INTERNAL_SERVER_ERROR]: 6,
[RetryState.CANCEL_REQUESTED]: 7,
UNSPECIFIED: 0,
} as const,
'RETRY_STATE_'
);
export type WorkflowExecution = temporal.api.common.v1.IWorkflowExecution;
/**
* Represents failures that can cross Workflow and Activity boundaries.
*
* **Never extend this class or any of its children.**
*
* The only child class you should ever throw from your code is {@link ApplicationFailure}.
*/
('TemporalFailure')
export class TemporalFailure extends Error {
/**
* The original failure that constructed this error.
*
* Only present if this error was generated from an external operation.
*/
public failure?: ProtoFailure;
constructor(
message?: string | undefined | null,
public readonly cause?: Error
) {
super(message ?? undefined);
}
}
/** Exceptions originated at the Temporal service. */
('ServerFailure')
export class ServerFailure extends TemporalFailure {
constructor(
message: string | undefined,
public readonly nonRetryable: boolean,
cause?: Error
) {
super(message, cause);
}
}
/**
* `ApplicationFailure`s are used to communicate application-specific failures in Workflows and Activities.
*
* The {@link type} property is matched against {@link RetryPolicy.nonRetryableErrorTypes} to determine if an instance
* of this error is retryable. Another way to avoid retrying is by setting the {@link nonRetryable} flag to `true`.
*
* In Workflows, if you throw a non-`ApplicationFailure`, the Workflow Task will fail and be retried. If you throw an
* `ApplicationFailure`, the Workflow Execution will fail.
*
* In Activities, you can either throw an `ApplicationFailure` or another `Error` to fail the Activity Task. In the
* latter case, the `Error` will be converted to an `ApplicationFailure`. The conversion is done as following:
*
* - `type` is set to `error.constructor?.name ?? error.name`
* - `message` is set to `error.message`
* - `nonRetryable` is set to false
* - `details` are set to null
* - stack trace is copied from the original error
*
* When an {@link https://docs.temporal.io/concepts/what-is-an-activity-execution | Activity Execution} fails, the
* `ApplicationFailure` from the last Activity Task will be the `cause` of the {@link ActivityFailure} thrown in the
* Workflow.
*/
('ApplicationFailure')
export class ApplicationFailure extends TemporalFailure {
/**
* Alternatively, use {@link fromError} or {@link create}.
*/
constructor(
message?: string | undefined | null,
public readonly type?: string | undefined | null,
public readonly nonRetryable?: boolean | undefined | null,
public readonly details?: unknown[] | undefined | null,
cause?: Error,
public readonly nextRetryDelay?: Duration | undefined | null
) {
super(message, cause);
}
/**
* Create a new `ApplicationFailure` from an Error object.
*
* First calls {@link ensureApplicationFailure | `ensureApplicationFailure(error)`} and then overrides any fields
* provided in `overrides`.
*/
public static fromError(error: Error | unknown, overrides?: ApplicationFailureOptions): ApplicationFailure {
const failure = ensureApplicationFailure(error);
Object.assign(failure, overrides);
return failure;
}
/**
* Create a new `ApplicationFailure`.
*
* By default, will be retryable (unless its `type` is included in {@link RetryPolicy.nonRetryableErrorTypes}).
*/
public static create(options: ApplicationFailureOptions): ApplicationFailure {
const { message, type, nonRetryable = false, details, nextRetryDelay, cause } = options;
return new this(message, type, nonRetryable, details, cause, nextRetryDelay);
}
/**
* Get a new `ApplicationFailure` with the {@link nonRetryable} flag set to false. Note that this error will still
* not be retried if its `type` is included in {@link RetryPolicy.nonRetryableErrorTypes}.
*
* @param message Optional error message
* @param type Optional error type (used by {@link RetryPolicy.nonRetryableErrorTypes})
* @param details Optional details about the failure. Serialized by the Worker's {@link PayloadConverter}.
*/
public static retryable(message?: string | null, type?: string | null, ...details: unknown[]): ApplicationFailure {
return new this(message, type ?? 'Error', false, details);
}
/**
* Get a new `ApplicationFailure` with the {@link nonRetryable} flag set to true.
*
* When thrown from an Activity or Workflow, the Activity or Workflow will not be retried (even if `type` is not
* listed in {@link RetryPolicy.nonRetryableErrorTypes}).
*
* @param message Optional error message
* @param type Optional error type
* @param details Optional details about the failure. Serialized by the Worker's {@link PayloadConverter}.
*/
public static nonRetryable(message?: string | null, type?: string | null, ...details: unknown[]): ApplicationFailure {
return new this(message, type ?? 'Error', true, details);
}
}
export interface ApplicationFailureOptions {
/**
* Error message
*/
message?: string;
/**
* Error type (used by {@link RetryPolicy.nonRetryableErrorTypes})
*/
type?: string;
/**
* Whether the current Activity or Workflow can be retried
*
* @default false
*/
nonRetryable?: boolean;
/**
* Details about the failure. Serialized by the Worker's {@link PayloadConverter}.
*/
details?: unknown[];
/**
* If set, overrides the delay until the next retry of this Activity / Workflow Task.
*
* Retry attempts will still be subject to the maximum retries limit and total time limit defined
* by the policy.
*/
nextRetryDelay?: Duration;
/**
* Cause of the failure
*/
cause?: Error;
}
/**
* This error is thrown when Cancellation has been requested. To allow Cancellation to happen, let it propagate. To
* ignore Cancellation, catch it and continue executing. Note that Cancellation can only be requested a single time, so
* your Workflow/Activity Execution will not receive further Cancellation requests.
*
* When a Workflow or Activity has been successfully cancelled, a `CancelledFailure` will be the `cause`.
*/
('CancelledFailure')
export class CancelledFailure extends TemporalFailure {
constructor(
message: string | undefined,
public readonly details: unknown[] = [],
cause?: Error
) {
super(message, cause);
}
}
/**
* Used as the `cause` when a Workflow has been terminated
*/
('TerminatedFailure')
export class TerminatedFailure extends TemporalFailure {
constructor(message: string | undefined, cause?: Error) {
super(message, cause);
}
}
/**
* Used to represent timeouts of Activities and Workflows
*/
('TimeoutFailure')
export class TimeoutFailure extends TemporalFailure {
constructor(
message: string | undefined,
public readonly lastHeartbeatDetails: unknown,
public readonly timeoutType: TimeoutType
) {
super(message);
}
}
/**
* Contains information about an Activity failure. Always contains the original reason for the failure as its `cause`.
* For example, if an Activity timed out, the cause will be a {@link TimeoutFailure}.
*
* This exception is expected to be thrown only by the framework code.
*/
('ActivityFailure')
export class ActivityFailure extends TemporalFailure {
public constructor(
message: string | undefined,
public readonly activityType: string,
public readonly activityId: string | undefined,
public readonly retryState: RetryState,
public readonly identity: string | undefined,
cause?: Error
) {
super(message, cause);
}
}
/**
* Contains information about a Child Workflow failure. Always contains the reason for the failure as its {@link cause}.
* For example, if the Child was Terminated, the `cause` is a {@link TerminatedFailure}.
*
* This exception is expected to be thrown only by the framework code.
*/
('ChildWorkflowFailure')
export class ChildWorkflowFailure extends TemporalFailure {
public constructor(
public readonly namespace: string | undefined,
public readonly execution: WorkflowExecution,
public readonly workflowType: string,
public readonly retryState: RetryState,
cause?: Error
) {
super('Child Workflow execution failed', cause);
}
}
/**
* This exception is thrown in the following cases:
* - Workflow with the same Workflow ID is currently running and the {@link WorkflowOptions.workflowIdConflictPolicy} is `WORKFLOW_ID_CONFLICT_POLICY_FAIL`
* - There is a closed Workflow with the same Workflow Id and the {@link WorkflowOptions.workflowIdReusePolicy}
* is `WORKFLOW_ID_REUSE_POLICY_REJECT_DUPLICATE`
* - There is closed Workflow in the `Completed` state with the same Workflow Id and the {@link WorkflowOptions.workflowIdReusePolicy}
* is `WORKFLOW_ID_REUSE_POLICY_ALLOW_DUPLICATE_FAILED_ONLY`
*/
('WorkflowExecutionAlreadyStartedError')
export class WorkflowExecutionAlreadyStartedError extends TemporalFailure {
constructor(
message: string,
public readonly workflowId: string,
public readonly workflowType: string
) {
super(message);
}
}
/**
* If `error` is already an `ApplicationFailure`, returns `error`.
*
* Otherwise, converts `error` into an `ApplicationFailure` with:
*
* - `message`: `error.message` or `String(error)`
* - `type`: `error.constructor.name` or `error.name`
* - `stack`: `error.stack` or `''`
*/
export function ensureApplicationFailure(error: unknown): ApplicationFailure {
if (error instanceof ApplicationFailure) {
return error;
}
const message = (isRecord(error) && String(error.message)) || String(error);
const type = (isRecord(error) && (error.constructor?.name ?? error.name)) || undefined;
const failure = ApplicationFailure.create({ message, type, nonRetryable: false });
failure.stack = (isRecord(error) && String(error.stack)) || '';
return failure;
}
/**
* If `err` is an Error it is turned into an `ApplicationFailure`.
*
* If `err` was already a `TemporalFailure`, returns the original error.
*
* Otherwise returns an `ApplicationFailure` with `String(err)` as the message.
*/
export function ensureTemporalFailure(err: unknown): TemporalFailure {
if (err instanceof TemporalFailure) {
return err;
}
return ensureApplicationFailure(err);
}
/**
* Get the root cause message of given `error`.
*
* In case `error` is a {@link TemporalFailure}, recurse the `cause` chain and return the root `cause.message`.
* Otherwise, return `error.message`.
*/
export function rootCause(error: unknown): string | undefined {
if (error instanceof TemporalFailure) {
return error.cause ? rootCause(error.cause) : error.message;
}
return errorMessage(error);
}