tachybase_todo/packages/plugins/@nocobase/plugin-workflow-parallel/src/server/ParallelInstruction.ts
Junyi a4b9544944
Fix/plugin workflow migration (#3404)
* fix(plugin-workflow): fix migration

* fix(plugin-workflow): add job.nodeKey when saving
2024-01-17 20:09:24 +08:00

121 lines
3.8 KiB
TypeScript

import { Processor, Instruction, JOB_STATUS, FlowNodeModel, JobModel } from '@nocobase/plugin-workflow';
export const PARALLEL_MODE = {
ALL: 'all',
ANY: 'any',
RACE: 'race',
} as const;
const Modes = {
[PARALLEL_MODE.ALL]: {
next(previous) {
return previous.status >= JOB_STATUS.PENDING;
},
getStatus(result) {
const failedStatus = result.find((status) => status != null && status < JOB_STATUS.PENDING);
if (typeof failedStatus !== 'undefined') {
return failedStatus;
}
if (result.every((status) => status != null && status === JOB_STATUS.RESOLVED)) {
return JOB_STATUS.RESOLVED;
}
return JOB_STATUS.PENDING;
},
},
[PARALLEL_MODE.ANY]: {
next(previous) {
return previous.status <= JOB_STATUS.PENDING;
},
getStatus(result) {
if (result.some((status) => status != null && status === JOB_STATUS.RESOLVED)) {
return JOB_STATUS.RESOLVED;
}
if (result.some((status) => (status != null ? status === JOB_STATUS.PENDING : true))) {
return JOB_STATUS.PENDING;
}
return JOB_STATUS.FAILED;
},
},
[PARALLEL_MODE.RACE]: {
next(previous) {
return previous.status === JOB_STATUS.PENDING;
},
getStatus(result) {
if (result.some((status) => status != null && status === JOB_STATUS.RESOLVED)) {
return JOB_STATUS.RESOLVED;
}
const failedStatus = result.find((status) => status != null && status < JOB_STATUS.PENDING);
if (typeof failedStatus !== 'undefined') {
return failedStatus;
}
return JOB_STATUS.PENDING;
},
},
};
export default class extends Instruction {
async run(node: FlowNodeModel, prevJob: JobModel, processor: Processor) {
const branches = processor.getBranches(node);
const job = await processor.saveJob({
status: JOB_STATUS.PENDING,
result: Array(branches.length).fill(null),
nodeId: node.id,
nodeKey: node.key,
upstreamId: prevJob?.id ?? null,
});
// NOTE:
// use `reduce` but not `Promise.all` here to avoid racing manupulating db.
// for users, this is almost equivalent to `Promise.all`,
// because of the delay is not significant sensible.
// another benifit of this is, it could handle sequenced branches in future.
const { mode = PARALLEL_MODE.ALL } = node.config;
await branches.reduce(
(promise: Promise<any>, branch, i) =>
promise.then(async (previous) => {
if (i && !Modes[mode].next(previous)) {
return previous;
}
await processor.run(branch, job);
// find last job of the branch
return processor.findBranchLastJob(branch, job);
}),
Promise.resolve(),
);
return null;
}
async resume(node: FlowNodeModel, branchJob, processor: Processor) {
const job = processor.findBranchParentJob(branchJob, node) as JobModel;
const { result, status } = job;
// if parallel has been done (resolved / rejected), do not care newly executed branch jobs.
if (status !== JOB_STATUS.PENDING) {
return processor.exit();
}
// find the index of the node which start the branch
const jobNode = processor.nodesMap.get(branchJob.nodeId) as FlowNodeModel;
const branchStartNode = processor.findBranchStartNode(jobNode, node) as FlowNodeModel;
const branches = processor.getBranches(node);
const branchIndex = branches.indexOf(branchStartNode);
const { mode = PARALLEL_MODE.ALL } = node.config || {};
const newResult = [...result.slice(0, branchIndex), branchJob.status, ...result.slice(branchIndex + 1)];
job.set({
result: newResult,
status: Modes[mode].getStatus(newResult),
});
if (job.status === JOB_STATUS.PENDING) {
await job.save();
return processor.exit();
}
return job;
}
}