-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCodigosJava.txt
8254 lines (6873 loc) · 265 KB
/
CodigosJava.txt
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
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
=== CONSOLIDADO DE CÓDIGOS JAVA ===
Gerado em: Sáb 22 Fev 2025 13:54:56 -03
Diretório base: .
===================================
// ==================================================
// Arquivo: archflow-core/src/main/java/br/com/archflow/engine/core/ExecutionManager.java
// ==================================================
package br.com.archflow.engine.core;
import br.com.archflow.model.flow.Flow;
import br.com.archflow.model.engine.ExecutionContext;
import br.com.archflow.model.flow.FlowResult;
public interface ExecutionManager {
/**
* Gerencia a execução de um fluxo
*/
FlowResult executeFlow(Flow flow, ExecutionContext context);
/**
* Pausa a execução de um fluxo
*/
void pauseFlow(String flowId);
/**
* Para a execução de um fluxo
*/
void stopFlow(String flowId);
}
// ==================================================
// Arquivo: archflow-core/src/main/java/br/com/archflow/engine/core/DefaultFlowEngine.java
// ==================================================
package br.com.archflow.engine.core;
import br.com.archflow.engine.api.FlowEngine;
import br.com.archflow.engine.exceptions.FlowEngineException;
import br.com.archflow.engine.exceptions.FlowNotFoundException;
import br.com.archflow.engine.persistence.FlowRepository;
import br.com.archflow.model.engine.DefaultExecutionContext;
import br.com.archflow.model.engine.ExecutionContext;
import br.com.archflow.model.error.ExecutionError;
import br.com.archflow.model.flow.*;
import br.com.archflow.engine.validation.FlowValidator;
import dev.langchain4j.memory.chat.MessageWindowChatMemory;
import java.util.*;
import java.util.concurrent.CompletableFuture;
import java.util.concurrent.ConcurrentHashMap;
import java.util.logging.Logger;
public class DefaultFlowEngine implements FlowEngine {
private static final Logger logger = Logger.getLogger(DefaultFlowEngine.class.getName());
private final ExecutionManager executionManager;
private final FlowRepository flowRepository;
private final StateManager stateManager;
private final FlowValidator flowValidator;
private final Map<String, FlowExecution> activeExecutions;
public DefaultFlowEngine(ExecutionManager executionManager,
FlowRepository flowRepository,
StateManager stateManager,
FlowValidator flowValidator) {
this.executionManager = executionManager;
this.flowRepository = flowRepository;
this.stateManager = stateManager;
this.flowValidator = flowValidator;
this.activeExecutions = new ConcurrentHashMap<>();
}
@Override
public CompletableFuture<FlowResult> startFlow(String flowId, Map<String, Object> input) {
return CompletableFuture.supplyAsync(() -> {
try {
Flow flow = flowRepository.findById(flowId)
.orElseThrow(() -> new FlowNotFoundException(flowId));
flowValidator.validate(flow);
ExecutionContext context = createInitialContext(flow, input);
FlowExecution execution = new FlowExecution(flow, context);
activeExecutions.put(flowId, execution);
return executionManager.executeFlow(flow, context);
} catch (Exception e) {
handleExecutionError(flowId, e);
throw new FlowEngineException("Error starting flow: " + flowId, e);
}
});
}
@Override
public CompletableFuture<FlowResult> execute(Flow flow, ExecutionContext context) {
return CompletableFuture.supplyAsync(() -> {
try {
flowValidator.validate(flow);
if (context.getState() == null) {
FlowState initialState = createInitialState(flow.getId());
context.setState(initialState);
}
FlowExecution execution = new FlowExecution(flow, context);
activeExecutions.put(flow.getId(), execution);
return executionManager.executeFlow(flow, context);
} catch (Exception e) {
handleExecutionError(flow.getId(), e);
throw new FlowEngineException("Error executing flow: " + flow.getId(), e);
}
});
}
@Override
public CompletableFuture<FlowResult> resumeFlow(String flowId, ExecutionContext context) {
return CompletableFuture.supplyAsync(() -> {
try {
Flow flow = flowRepository.findById(flowId)
.orElseThrow(() -> new FlowNotFoundException(flowId));
FlowState state = stateManager.loadState(flowId);
if (state == null) {
throw new FlowEngineException("No state found for flow: " + flowId);
}
if (state.getStatus().isFinal()) {
throw new FlowEngineException("Cannot resume flow in final state: " + state.getStatus());
}
context.setState(state);
FlowExecution execution = new FlowExecution(flow, context);
activeExecutions.put(flowId, execution);
return executionManager.executeFlow(flow, context);
} catch (Exception e) {
handleExecutionError(flowId, e);
throw new FlowEngineException("Error resuming flow: " + flowId, e);
}
});
}
@Override
public FlowStatus getFlowStatus(String flowId) {
try {
FlowExecution execution = activeExecutions.get(flowId);
if (execution != null) {
return execution.getContext().getState().getStatus();
}
FlowState state = stateManager.loadState(flowId);
if (state == null) {
throw new FlowNotFoundException(flowId);
}
return state.getStatus();
} catch (Exception e) {
throw new FlowEngineException("Error getting flow status: " + flowId, e);
}
}
@Override
public void pause(String flowId) {
try {
FlowExecution execution = activeExecutions.get(flowId);
if (execution == null) {
throw new FlowNotFoundException(flowId);
}
execution.pause();
stateManager.saveState(flowId, execution.getContext().getState());
executionManager.pauseFlow(flowId);
} catch (Exception e) {
throw new FlowEngineException("Error pausing flow: " + flowId, e);
}
}
@Override
public void cancel(String flowId) {
try {
FlowExecution execution = activeExecutions.get(flowId);
if (execution == null) {
throw new FlowNotFoundException(flowId);
}
execution.cancel();
stateManager.saveState(flowId, execution.getContext().getState());
activeExecutions.remove(flowId);
executionManager.stopFlow(flowId);
} catch (Exception e) {
throw new FlowEngineException("Error canceling flow: " + flowId, e);
}
}
private ExecutionContext createInitialContext(Flow flow, Map<String, Object> input) {
ExecutionContext context = new DefaultExecutionContext(MessageWindowChatMemory.builder().build());
FlowState initialState = FlowState.builder()
.flowId(flow.getId())
.status(FlowStatus.INITIALIZED)
.variables(new HashMap<>(input != null ? input : new HashMap<>()))
.executionPaths(new ArrayList<>())
.metrics(FlowMetrics.builder().build())
.build();
context.setState(initialState);
return context;
}
private FlowState createInitialState(String flowId) {
return FlowState.builder()
.flowId(flowId)
.status(FlowStatus.INITIALIZED)
.variables(new HashMap<>())
.executionPaths(new ArrayList<>())
.metrics(FlowMetrics.builder().build())
.build();
}
private void handleExecutionError(String flowId, Exception e) {
try {
FlowExecution execution = activeExecutions.remove(flowId);
if (execution != null) {
FlowState currentState = execution.getContext().getState();
ExecutionError error = ExecutionError.fromException(
"FLOW_EXECUTION_ERROR",
e,
"FlowEngine"
);
FlowState errorState = FlowState.builder()
.flowId(currentState.getFlowId())
.status(FlowStatus.FAILED)
.currentStepId(currentState.getCurrentStepId())
.variables(currentState.getVariables())
.executionPaths(currentState.getExecutionPaths())
.metrics(currentState.getMetrics())
.error(error)
.build();
stateManager.saveState(flowId, errorState);
}
} catch (Exception ex) {
logger.severe("Error handling execution error for flow: " + flowId + " - " + ex.getMessage());
}
}
private static class FlowExecution {
private final Flow flow;
private final ExecutionContext context;
public FlowExecution(Flow flow, ExecutionContext context) {
this.flow = flow;
this.context = context;
}
public void pause() {
updateState(FlowStatus.PAUSED);
}
public void cancel() {
updateState(FlowStatus.STOPPED);
}
private void updateState(FlowStatus newStatus) {
FlowState currentState = context.getState();
FlowState updatedState = FlowState.builder()
.flowId(currentState.getFlowId())
.status(newStatus)
.currentStepId(currentState.getCurrentStepId())
.variables(currentState.getVariables())
.executionPaths(currentState.getExecutionPaths())
.metrics(currentState.getMetrics())
.error(currentState.getError())
.build();
context.setState(updatedState);
}
public ExecutionContext getContext() {
return context;
}
}
@Override
public Set<String> getActiveFlows() {
return new HashSet<>(activeExecutions.keySet());
}
}
// ==================================================
// Arquivo: archflow-core/src/main/java/br/com/archflow/engine/core/StateManager.java
// ==================================================
package br.com.archflow.engine.core;
import br.com.archflow.model.flow.FlowState;
import br.com.archflow.model.flow.StateUpdate;
public interface StateManager {
/**
* Salva o estado do fluxo
*/
void saveState(String flowId, FlowState state);
/**
* Carrega o estado do fluxo
*/
FlowState loadState(String flowId);
/**
* Atualiza o estado do fluxo
*/
void updateState(String flowId, StateUpdate update);
}
// ==================================================
// Arquivo: archflow-core/src/main/java/br/com/archflow/engine/exceptions/StepExecutionException.java
// ==================================================
package br.com.archflow.engine.exceptions;
import br.com.archflow.model.flow.StepError;
/**
* Exceção lançada durante execução de um passo.
*/
public class StepExecutionException extends FlowException {
private final String stepId;
private final StepError error;
public StepExecutionException(String stepId, StepError error) {
super("Step execution failed: " + stepId);
this.stepId = stepId;
this.error = error;
}
public String getStepId() {
return stepId;
}
public StepError getError() {
return error;
}
}
// ==================================================
// Arquivo: archflow-core/src/main/java/br/com/archflow/engine/exceptions/FlowValidationException.java
// ==================================================
package br.com.archflow.engine.exceptions;
import java.util.Collections;
import java.util.List;
/**
* Exceção lançada durante validação de fluxos.
*/
public class FlowValidationException extends FlowException {
private final List<ValidationError> errors;
public FlowValidationException(List<ValidationError> errors) {
super("Flow validation failed: " + errors.size() + " errors found");
this.errors = errors;
}
public List<ValidationError> getErrors() {
return Collections.unmodifiableList(errors);
}
}
// ==================================================
// Arquivo: archflow-core/src/main/java/br/com/archflow/engine/exceptions/FlowException.java
// ==================================================
package br.com.archflow.engine.exceptions;
/**
* Exceção base para erros relacionados a fluxos.
*/
public class FlowException extends RuntimeException {
public FlowException(String message) {
super(message);
}
public FlowException(String message, Throwable cause) {
super(message, cause);
}
}
// ==================================================
// Arquivo: archflow-core/src/main/java/br/com/archflow/engine/exceptions/FlowNotFoundException.java
// ==================================================
package br.com.archflow.engine.exceptions;
/**
* Exceção lançada quando um fluxo não é encontrado.
*/
public class FlowNotFoundException extends FlowException {
private final String flowId;
public FlowNotFoundException(String flowId) {
super("Flow not found: " + flowId);
this.flowId = flowId;
}
public String getFlowId() {
return flowId;
}
}
// ==================================================
// Arquivo: archflow-core/src/main/java/br/com/archflow/engine/exceptions/ValidationError.java
// ==================================================
package br.com.archflow.engine.exceptions;
import java.util.Map;
/**
* Erro de validação específico.
*/
public record ValidationError(
String field,
String message,
String code,
Map<String, Object> context
) {}
// ==================================================
// Arquivo: archflow-core/src/main/java/br/com/archflow/engine/exceptions/FlowEngineException.java
// ==================================================
package br.com.archflow.engine.exceptions;
/**
* Exceção lançada quando ocorre erro no engine de execução.
*/
public class FlowEngineException extends FlowException {
public FlowEngineException(String message) {
super(message);
}
public FlowEngineException(String message, Throwable cause) {
super(message, cause);
}
}
// ==================================================
// Arquivo: archflow-core/src/main/java/br/com/archflow/engine/execution/FlowExecutor.java
// ==================================================
package br.com.archflow.engine.execution;
import br.com.archflow.model.flow.Flow;
import br.com.archflow.model.engine.ExecutionContext;
import br.com.archflow.model.flow.FlowResult;
import br.com.archflow.model.flow.StepResult;
public interface FlowExecutor {
/**
* Executa um fluxo específico
*/
FlowResult execute(Flow flow, ExecutionContext context);
/**
* Processa o resultado de um passo
*/
void handleResult(StepResult result);
}
// ==================================================
// Arquivo: archflow-core/src/main/java/br/com/archflow/engine/execution/ParallelExecutor.java
// ==================================================
package br.com.archflow.engine.execution;
import br.com.archflow.model.flow.FlowStep;
import br.com.archflow.model.flow.StepResult;
import java.util.List;
public interface ParallelExecutor {
/**
* Executa passos em paralelo
*/
List<StepResult> executeParallel(List<FlowStep> steps);
/**
* Aguarda a conclusão da execução paralela
*/
void awaitCompletion();
}
// ==================================================
// Arquivo: archflow-core/src/main/java/br/com/archflow/engine/persistence/StateRepository.java
// ==================================================
package br.com.archflow.engine.persistence;
import br.com.archflow.model.flow.AuditLog;
import br.com.archflow.model.flow.FlowState;
public interface StateRepository {
void saveState(String flowId, FlowState state);
FlowState getState(String flowId);
void saveAuditLog(String flowId, AuditLog log);
}
// ==================================================
// Arquivo: archflow-core/src/main/java/br/com/archflow/engine/persistence/FlowRepository.java
// ==================================================
package br.com.archflow.engine.persistence;
import br.com.archflow.model.flow.Flow;
import java.util.Optional;
public interface FlowRepository {
void save(Flow flow);
Optional<Flow> findById(String id);
void delete(String id);
}
// ==================================================
// Arquivo: archflow-core/src/main/java/br/com/archflow/engine/api/FlowEngine.java
// ==================================================
package br.com.archflow.engine.api;
import br.com.archflow.engine.exceptions.FlowEngineException;
import br.com.archflow.engine.exceptions.FlowNotFoundException;
import br.com.archflow.model.engine.ExecutionContext;
import br.com.archflow.model.flow.Flow;
import br.com.archflow.model.flow.FlowResult;
import br.com.archflow.model.flow.FlowStatus;
import java.util.Map;
import java.util.Set;
import java.util.concurrent.CompletableFuture;
/**
* Engine principal do archflow, responsável pela execução de fluxos.
* Integra-se com componentes de IA para processamento.
*
* @since 1.0.0
*/
public interface FlowEngine {
/**
* Inicia a execução de um fluxo
*
* @param flowId identificador do fluxo
* @param input variáveis iniciais do fluxo
* @return resultado da execução
* @throws FlowNotFoundException se o fluxo não for encontrado
* @throws FlowEngineException se houver erro na execução
*/
CompletableFuture<FlowResult> startFlow(String flowId, Map<String, Object> input);
/**
* Executa um fluxo de forma assíncrona.
*
* @param flow fluxo a ser executado
* @param context contexto inicial de execução
* @return future com o resultado da execução
* @throws FlowEngineException se houver erro na execução
*/
CompletableFuture<FlowResult> execute(Flow flow, ExecutionContext context);
/**
* Retoma a execução de um fluxo pausado
*
* @param flowId identificador do fluxo
* @param context contexto atualizado para continuação
* @return resultado da execução
* @throws FlowNotFoundException se o fluxo não for encontrado
*/
CompletableFuture<FlowResult> resumeFlow(String flowId, ExecutionContext context);
/**
* Obtém o status atual do fluxo
*
* @param flowId identificador do fluxo
* @return status atual do fluxo
* @throws FlowNotFoundException se o fluxo não for encontrado
*/
FlowStatus getFlowStatus(String flowId);
/**
* Pausa a execução de um fluxo em andamento.
*
* @param flowId identificador do fluxo
* @throws FlowNotFoundException se o fluxo não for encontrado
*/
void pause(String flowId);
/**
* Cancela a execução de um fluxo em andamento.
*
* @param flowId identificador do fluxo
* @throws FlowNotFoundException se o fluxo não for encontrado
*/
void cancel(String flowId);
/**
* Retorna o conjunto de IDs dos fluxos ativos
*/
Set<String> getActiveFlows();
}
// ==================================================
// Arquivo: archflow-core/src/main/java/br/com/archflow/engine/validation/DefaultFlowValidator.java
// ==================================================
package br.com.archflow.engine.validation;
import br.com.archflow.engine.exceptions.FlowValidationException;
import br.com.archflow.engine.exceptions.ValidationError;
import br.com.archflow.model.flow.Flow;
import br.com.archflow.model.flow.FlowStep;
import br.com.archflow.model.flow.StepConnection;
import java.util.*;
import java.util.stream.Collectors;
/**
* Implementação padrão do validador de fluxos.
*/
public class DefaultFlowValidator implements FlowValidator {
@Override
public void validate(Flow flow) throws FlowValidationException {
List<ValidationError> errors = new ArrayList<>();
ValidationContext context = new ValidationContext(flow);
// Valida identificação básica
validateBasicInfo(flow, errors);
// Valida passos
for (FlowStep step : flow.getSteps()) {
try {
validateStep(step, context);
} catch (FlowValidationException e) {
errors.addAll(e.getErrors());
}
}
// Valida conexões
validateConnections(flow, errors);
// Valida ciclos
validateCycles(flow, errors);
if (!errors.isEmpty()) {
throw new FlowValidationException(errors);
}
}
@Override
public void validateStep(FlowStep step, ValidationContext context) throws FlowValidationException {
List<ValidationError> errors = new ArrayList<>();
// Valida identificação do passo
if (step.getId() == null || step.getId().trim().isEmpty()) {
errors.add(new ValidationError(
"step.id",
"Step ID is required",
"STEP_ID_REQUIRED",
Map.of("step", step)
));
}
// Valida tipo do passo
if (step.getType() == null) {
errors.add(new ValidationError(
"step.type",
"Step type is required",
"STEP_TYPE_REQUIRED",
Map.of("step", step)
));
}
// Valida configuração do passo
validateStepConfiguration(step, errors);
// Valida conexões do passo
validateStepConnections(step, context, errors);
if (!errors.isEmpty()) {
throw new FlowValidationException(errors);
}
}
private void validateBasicInfo(Flow flow, List<ValidationError> errors) {
if (flow.getId() == null || flow.getId().trim().isEmpty()) {
errors.add(new ValidationError(
"flow.id",
"Flow ID is required",
"FLOW_ID_REQUIRED",
Map.of()
));
}
if (flow.getSteps().isEmpty()) {
errors.add(new ValidationError(
"flow.steps",
"Flow must have at least one step",
"FLOW_EMPTY",
Map.of()
));
}
}
private void validateConnections(Flow flow, List<ValidationError> errors) {
Set<String> stepIds = flow.getSteps().stream()
.map(FlowStep::getId)
.collect(Collectors.toSet());
for (FlowStep step : flow.getSteps()) {
for (StepConnection connection : step.getConnections()) {
// Valida existência dos passos conectados
if (!stepIds.contains(connection.getSourceId())) {
errors.add(new ValidationError(
"connection.source",
"Source step does not exist: " + connection.getSourceId(),
"INVALID_CONNECTION_SOURCE",
Map.of("connection", connection)
));
}
if (!stepIds.contains(connection.getTargetId())) {
errors.add(new ValidationError(
"connection.target",
"Target step does not exist: " + connection.getTargetId(),
"INVALID_CONNECTION_TARGET",
Map.of("connection", connection)
));
}
// Valida condições
connection.getCondition().ifPresent(condition ->
validateCondition(condition, errors, connection)
);
}
}
}
private void validateCycles(Flow flow, List<ValidationError> errors) {
// Implementa detecção de ciclos usando DFS
Set<String> visited = new HashSet<>();
Set<String> currentPath = new HashSet<>();
for (FlowStep step : flow.getSteps()) {
if (hasCycle(step, visited, currentPath, flow)) {
errors.add(new ValidationError(
"flow.cycle",
"Flow contains cycles",
"FLOW_CYCLE_DETECTED",
Map.of("startStep", step.getId())
));
break;
}
}
}
private boolean hasCycle(FlowStep step, Set<String> visited, Set<String> currentPath, Flow flow) {
String stepId = step.getId();
if (currentPath.contains(stepId)) {
return true;
}
if (visited.contains(stepId)) {
return false;
}
visited.add(stepId);
currentPath.add(stepId);
for (StepConnection connection : step.getConnections()) {
String targetId = connection.getTargetId();
Optional<FlowStep> targetStep = flow.getSteps().stream()
.filter(s -> s.getId().equals(targetId))
.findFirst();
if (targetStep.isPresent() && hasCycle(targetStep.get(), visited, currentPath, flow)) {
return true;
}
}
currentPath.remove(stepId);
return false;
}
private void validateStepConfiguration(FlowStep step, List<ValidationError> errors) {
// Validações específicas para cada tipo de passo
switch (step.getType()) {
case CHAIN:
validateChainConfiguration(step, errors);
break;
case AGENT:
validateAgentConfiguration(step, errors);
break;
case TOOL:
validateToolConfiguration(step, errors);
break;
default:
errors.add(new ValidationError(
"step.type",
"Unsupported step type: " + step.getType(),
"UNSUPPORTED_STEP_TYPE",
Map.of("step", step)
));
}
}
private void validateChainConfiguration(FlowStep step, List<ValidationError> errors) {
// Implementar validações específicas para Chains
}
private void validateAgentConfiguration(FlowStep step, List<ValidationError> errors) {
// Implementar validações específicas para Agents
}
private void validateToolConfiguration(FlowStep step, List<ValidationError> errors) {
// Implementar validações específicas para Tools
}
private void validateStepConnections(FlowStep step, ValidationContext context, List<ValidationError> errors) {
// Implementar validações de conexões do passo
}
private void validateCondition(String condition, List<ValidationError> errors, StepConnection connection) {
// Implementar validação de expressões de condição
}
}
// ==================================================
// Arquivo: archflow-core/src/main/java/br/com/archflow/engine/validation/FlowValidator.java
// ==================================================
package br.com.archflow.engine.validation;
import br.com.archflow.model.flow.Flow;
import br.com.archflow.model.flow.FlowStep;
import br.com.archflow.engine.exceptions.FlowValidationException;
/**
* Responsável por validar a estrutura e integridade de um fluxo.
* Verifica conexões, parâmetros e configurações antes da execução.
*/
public interface FlowValidator {
/**
* Valida um fluxo completo.
*
* @param flow fluxo a ser validado
* @throws FlowValidationException se houver erros de validação
*/
void validate(Flow flow) throws FlowValidationException;
/**
* Valida um passo específico do fluxo.
*
* @param step passo a ser validado
* @param context contexto do fluxo para validação
* @throws FlowValidationException se houver erros de validação
*/
void validateStep(FlowStep step, ValidationContext context) throws FlowValidationException;
}
// ==================================================
// Arquivo: archflow-core/src/main/java/br/com/archflow/engine/validation/ValidationContext.java
// ==================================================
package br.com.archflow.engine.validation;
import br.com.archflow.model.flow.Flow;
import java.util.HashMap;
import java.util.Map;
/**
* Contexto usado durante a validação.
* Mantém informações relevantes para validação de passos e conexões.
*/
public class ValidationContext {
private final Flow flow;
private final Map<String, Object> attributes = new HashMap<>();
public ValidationContext(Flow flow) {
this.flow = flow;
}
public Flow getFlow() {
return flow;
}
public void setAttribute(String key, Object value) {
attributes.put(key, value);
}
public Object getAttribute(String key) {
return attributes.get(key);
}
}
// ==================================================
// Arquivo: archflow-plugin-loader/src/main/java/br/com/archflow/plugin/loader/ComponentLoadException.java
// ==================================================
package br.com.archflow.plugin.loader;
import br.com.archflow.model.ai.type.ComponentType;
public class ComponentLoadException extends PluginLoadException {
private final ComponentType type;
private final String componentId;
public ComponentLoadException(String message, ComponentType type, String componentId) {
super(message);
this.type = type;
this.componentId = componentId;
}
public ComponentLoadException(String message, ComponentType type, String componentId, Throwable cause) {
super(message, cause);
this.type = type;
this.componentId = componentId;
}
public ComponentType getType() {
return type;
}
public String getComponentId() {
return componentId;
}
}
// ==================================================
// Arquivo: archflow-plugin-loader/src/main/java/br/com/archflow/plugin/loader/PluginLoadException.java
// ==================================================
package br.com.archflow.plugin.loader;
/**
* Exceção lançada durante o carregamento de plugins.
*/
class PluginLoadException extends RuntimeException {
public PluginLoadException(String message) {
super(message);
}
public PluginLoadException(String message, Throwable cause) {
super(message, cause);
}
}
// ==================================================
// Arquivo: archflow-plugin-loader/src/main/java/br/com/archflow/plugin/loader/ArchflowPluginClassLoader.java
// ==================================================
package br.com.archflow.plugin.loader;
import java.net.URL;
import java.net.URLClassLoader;
import java.util.*;
/**
* ClassLoader específico para plugins do archflow.
* Garante isolamento e controle de acesso às classes compartilhadas.
*/
public class ArchflowPluginClassLoader extends URLClassLoader {
private static final List<String> SHARED_PACKAGES = Arrays.asList(
"br.com.archflow.model", // Novo - para acessar interfaces base
"br.com.archflow.plugin.api", // Atualizado - novo pacote
"dev.langchain4j", // Mantido
"org.apache.camel" // Novo - para suporte a rotas
);
private final ClassLoader parentClassLoader;
public ArchflowPluginClassLoader(URL[] urls, ClassLoader parent) {
super(urls, null);
this.parentClassLoader = parent;
}
@Override
protected Class<?> loadClass(String name, boolean resolve)