@@ -49,12 +49,14 @@ public abstract class AbstractTaskExecutor<T extends TaskBase> implements TaskEx
49
49
private final Optional <SchemaValidator > inputSchemaValidator ;
50
50
private final Optional <SchemaValidator > outputSchemaValidator ;
51
51
private final Optional <SchemaValidator > contextSchemaValidator ;
52
+ private final Optional <WorkflowFilter > ifFilter ;
52
53
53
54
public abstract static class AbstractTaskExecutorBuilder <T extends TaskBase >
54
55
implements TaskExecutorBuilder <T > {
55
56
private Optional <WorkflowFilter > inputProcessor = Optional .empty ();
56
57
private Optional <WorkflowFilter > outputProcessor = Optional .empty ();
57
58
private Optional <WorkflowFilter > contextProcessor = Optional .empty ();
59
+ private Optional <WorkflowFilter > ifFilter = Optional .empty ();
58
60
private Optional <SchemaValidator > inputSchemaValidator = Optional .empty ();
59
61
private Optional <SchemaValidator > outputSchemaValidator = Optional .empty ();
60
62
private Optional <SchemaValidator > contextSchemaValidator = Optional .empty ();
@@ -100,6 +102,7 @@ protected AbstractTaskExecutorBuilder(
100
102
this .contextSchemaValidator =
101
103
getSchemaValidator (application .validatorFactory (), resourceLoader , export .getSchema ());
102
104
}
105
+ this .ifFilter = optionalFilter (application .expressionFactory (), task .getIf ());
103
106
}
104
107
105
108
protected final TransitionInfoBuilder next (
@@ -153,6 +156,7 @@ protected AbstractTaskExecutor(AbstractTaskExecutorBuilder<T> builder) {
153
156
this .inputSchemaValidator = builder .inputSchemaValidator ;
154
157
this .outputSchemaValidator = builder .outputSchemaValidator ;
155
158
this .contextSchemaValidator = builder .contextSchemaValidator ;
159
+ this .ifFilter = builder .ifFilter ;
156
160
}
157
161
158
162
protected final CompletableFuture <TaskContext > executeNext (
@@ -177,40 +181,49 @@ public CompletableFuture<TaskContext> apply(
177
181
if (!TaskExecutorHelper .isActive (workflowContext )) {
178
182
return completable ;
179
183
}
180
- return executeNext (
181
- completable
182
- .thenApply (
183
- t -> {
184
- workflowContext
185
- .definition ()
186
- .listeners ()
187
- .forEach (l -> l .onTaskStarted (position , task ));
188
- inputSchemaValidator .ifPresent (s -> s .validate (t .rawInput ()));
189
- inputProcessor .ifPresent (
190
- p -> taskContext .input (p .apply (workflowContext , t , t .rawInput ())));
191
- return t ;
192
- })
193
- .thenCompose (t -> execute (workflowContext , t ))
194
- .thenApply (
195
- t -> {
196
- outputProcessor .ifPresent (
197
- p -> t .output (p .apply (workflowContext , t , t .rawOutput ())));
198
- outputSchemaValidator .ifPresent (s -> s .validate (t .output ()));
199
- contextProcessor .ifPresent (
200
- p ->
201
- workflowContext .context (
202
- p .apply (workflowContext , t , workflowContext .context ())));
203
- contextSchemaValidator .ifPresent (s -> s .validate (workflowContext .context ()));
204
- t .completedAt (Instant .now ());
205
- workflowContext
206
- .definition ()
207
- .listeners ()
208
- .forEach (l -> l .onTaskEnded (position , task ));
209
- return t ;
210
- }),
211
- workflowContext );
184
+ if (ifFilter
185
+ .map (f -> f .apply (workflowContext , taskContext , input ).asBoolean (true ))
186
+ .orElse (true )) {
187
+ return executeNext (
188
+ completable
189
+ .thenApply (
190
+ t -> {
191
+ workflowContext
192
+ .definition ()
193
+ .listeners ()
194
+ .forEach (l -> l .onTaskStarted (position , task ));
195
+ inputSchemaValidator .ifPresent (s -> s .validate (t .rawInput ()));
196
+ inputProcessor .ifPresent (
197
+ p -> taskContext .input (p .apply (workflowContext , t , t .rawInput ())));
198
+ return t ;
199
+ })
200
+ .thenCompose (t -> execute (workflowContext , t ))
201
+ .thenApply (
202
+ t -> {
203
+ outputProcessor .ifPresent (
204
+ p -> t .output (p .apply (workflowContext , t , t .rawOutput ())));
205
+ outputSchemaValidator .ifPresent (s -> s .validate (t .output ()));
206
+ contextProcessor .ifPresent (
207
+ p ->
208
+ workflowContext .context (
209
+ p .apply (workflowContext , t , workflowContext .context ())));
210
+ contextSchemaValidator .ifPresent (s -> s .validate (workflowContext .context ()));
211
+ t .completedAt (Instant .now ());
212
+ workflowContext
213
+ .definition ()
214
+ .listeners ()
215
+ .forEach (l -> l .onTaskEnded (position , task ));
216
+ return t ;
217
+ }),
218
+ workflowContext );
219
+ } else {
220
+ taskContext .transition (getSkipTransition ());
221
+ return executeNext (completable , workflowContext );
222
+ }
212
223
}
213
224
225
+ protected abstract TransitionInfo getSkipTransition ();
226
+
214
227
protected abstract CompletableFuture <TaskContext > execute (
215
228
WorkflowContext workflow , TaskContext taskContext );
216
229
}
0 commit comments