Compare commits
35 Commits
ai-branch
...
131ccbeda0
| Author | SHA1 | Date | |
|---|---|---|---|
| 131ccbeda0 | |||
| 14b311be2b | |||
| 1b690582d6 | |||
| 3ca834fa71 | |||
| c6b4a4be1e | |||
| 24a9be3a4e | |||
| 07d241a060 | |||
| 32de0a51c6 | |||
| cbb00e8a0f | |||
| 6596303b7d | |||
| c903b079d3 | |||
| 23d79d1930 | |||
| 2720296d14 | |||
| b8b180ab3d | |||
| fc267c43c6 | |||
| 968601eefc | |||
| e00f4dca81 | |||
| bf82cc3562 | |||
| 24b67be64b | |||
| 9f651e7dc9 | |||
| e06429cb02 | |||
| 9cf2d063b3 | |||
| 073df21395 | |||
| f9e6247eb3 | |||
| 76ac143370 | |||
| 9ca8b2fe37 | |||
| 56cdf96f2d | |||
| c37aa92c78 | |||
| 3ac057618f | |||
| d59f4ac166 | |||
| 19547d3c5f | |||
| ab37eb5d40 | |||
| bf9208d529 | |||
| 7077214c81 | |||
| 344e295106 |
1
TODO.md
1
TODO.md
@@ -1,6 +1,5 @@
|
|||||||
1.extract from all possible formats (ask chatgpt)
|
1.extract from all possible formats (ask chatgpt)
|
||||||
|
|
||||||
[DONE] json
|
|
||||||
[TODO] xml, maybe yaml
|
[TODO] xml, maybe yaml
|
||||||
|
|
||||||
2. [PLAN] Support external dependencies (JARs/compiled classes):
|
2. [PLAN] Support external dependencies (JARs/compiled classes):
|
||||||
|
|||||||
@@ -36,6 +36,7 @@ dependencies {
|
|||||||
implementation 'com.fasterxml.jackson.core:jackson-databind:2.17.1'
|
implementation 'com.fasterxml.jackson.core:jackson-databind:2.17.1'
|
||||||
implementation 'com.fasterxml.jackson.datatype:jackson-datatype-jdk8:2.17.1'
|
implementation 'com.fasterxml.jackson.datatype:jackson-datatype-jdk8:2.17.1'
|
||||||
implementation 'com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.17.1'
|
implementation 'com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.17.1'
|
||||||
|
implementation 'com.fasterxml.jackson.dataformat:jackson-dataformat-yaml:2.17.1'
|
||||||
|
|
||||||
compileOnly 'org.projectlombok:lombok:1.18.46'
|
compileOnly 'org.projectlombok:lombok:1.18.46'
|
||||||
annotationProcessor 'org.projectlombok:lombok:1.18.46'
|
annotationProcessor 'org.projectlombok:lombok:1.18.46'
|
||||||
|
|||||||
@@ -14,6 +14,14 @@ import java.util.List;
|
|||||||
|
|
||||||
public class Main {
|
public class Main {
|
||||||
public static void main(String[] args) {
|
public static void main(String[] args) {
|
||||||
|
// Enable diagnostic mode early before SLF4J initializes
|
||||||
|
for (String arg : args) {
|
||||||
|
if ("--debug".equals(arg)) {
|
||||||
|
System.setProperty("org.slf4j.simpleLogger.defaultLogLevel", "debug");
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
// Manual DI / Wiring
|
// Manual DI / Wiring
|
||||||
var exporters = List.of(new PlantUml(), new Dot(), new Scxml(), new JsonExporter());
|
var exporters = List.of(new PlantUml(), new Dot(), new Scxml(), new JsonExporter());
|
||||||
var exportService = new ExportService(exporters);
|
var exportService = new ExportService(exporters);
|
||||||
|
|||||||
@@ -14,8 +14,16 @@ import java.util.ArrayList;
|
|||||||
import java.util.List;
|
import java.util.List;
|
||||||
import java.util.stream.Collectors;
|
import java.util.stream.Collectors;
|
||||||
|
|
||||||
|
import click.kamil.springstatemachineexporter.analysis.enricher.routing.HeuristicBeanResolutionEngine;
|
||||||
|
import click.kamil.springstatemachineexporter.analysis.enricher.routing.BeanResolutionEngine;
|
||||||
|
import click.kamil.springstatemachineexporter.analysis.enricher.matching.EventMatchingEngine;
|
||||||
|
import click.kamil.springstatemachineexporter.analysis.enricher.matching.HeuristicEventMatchingEngine;
|
||||||
|
|
||||||
public class TransitionLinkerEnricher implements AnalysisEnricher {
|
public class TransitionLinkerEnricher implements AnalysisEnricher {
|
||||||
|
|
||||||
|
private final BeanResolutionEngine routingEngine = new HeuristicBeanResolutionEngine();
|
||||||
|
private final EventMatchingEngine matchingEngine = new HeuristicEventMatchingEngine();
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void enrich(AnalysisResult result, CodebaseContext context, CodebaseIntelligenceProvider intelligence) {
|
public void enrich(AnalysisResult result, CodebaseContext context, CodebaseIntelligenceProvider intelligence) {
|
||||||
if (result.getMetadata() == null || result.getMetadata().getCallChains() == null) {
|
if (result.getMetadata() == null || result.getMetadata().getCallChains() == null) {
|
||||||
@@ -38,40 +46,46 @@ public class TransitionLinkerEnricher implements AnalysisEnricher {
|
|||||||
List<MatchedTransition> matched = new ArrayList<>();
|
List<MatchedTransition> matched = new ArrayList<>();
|
||||||
|
|
||||||
for (Transition t : stateMachineTransitions) {
|
for (Transition t : stateMachineTransitions) {
|
||||||
if (t.getEvent() != null) {
|
if (t.getEvent() != null && matchingEngine.matches(t.getEvent(), tp)) {
|
||||||
String smEventRaw = t.getEvent().fullIdentifier() != null ? t.getEvent().fullIdentifier() : t.getEvent().rawName();
|
String smEventRaw = t.getEvent().fullIdentifier() != null ? t.getEvent().fullIdentifier() : t.getEvent().rawName();
|
||||||
String smEvent = simplify(smEventRaw);
|
// Event matches
|
||||||
if (smEvent.equals(triggerEvent)) {
|
|
||||||
// Event matches. Check source state if provided
|
|
||||||
for (State smSourceState : t.getSourceStates()) {
|
for (State smSourceState : t.getSourceStates()) {
|
||||||
String smSourceRaw = smSourceState.fullIdentifier() != null ? smSourceState.fullIdentifier() : smSourceState.rawName();
|
String smSourceRaw = smSourceState.fullIdentifier() != null ? smSourceState.fullIdentifier() : smSourceState.rawName();
|
||||||
String smSource = simplify(smSourceRaw);
|
String smSource = simplify(smSourceRaw);
|
||||||
if (triggerSource == null || triggerSource.equals(smSource)) {
|
if (triggerSource == null || triggerSource.equals(smSource)) {
|
||||||
|
if (t.getTargetStates() == null || t.getTargetStates().isEmpty()) {
|
||||||
|
MatchedTransition mt = MatchedTransition.builder()
|
||||||
|
.sourceState(smSourceRaw)
|
||||||
|
.targetState(smSourceRaw)
|
||||||
|
.event(smEventRaw)
|
||||||
|
.build();
|
||||||
|
if (isRoutedToCorrectMachine(chain, result.getName())) {
|
||||||
|
matched.add(mt);
|
||||||
|
}
|
||||||
|
} else {
|
||||||
for (State smTargetState : t.getTargetStates()) {
|
for (State smTargetState : t.getTargetStates()) {
|
||||||
String sourceRaw = smSourceState.fullIdentifier() != null ? smSourceState.fullIdentifier() : smSourceState.rawName();
|
|
||||||
String targetRaw = smTargetState.fullIdentifier() != null ? smTargetState.fullIdentifier() : smTargetState.rawName();
|
String targetRaw = smTargetState.fullIdentifier() != null ? smTargetState.fullIdentifier() : smTargetState.rawName();
|
||||||
matched.add(MatchedTransition.builder()
|
MatchedTransition mt = MatchedTransition.builder()
|
||||||
.sourceState(sourceRaw)
|
.sourceState(smSourceRaw)
|
||||||
.targetState(targetRaw)
|
.targetState(targetRaw)
|
||||||
.event(smEventRaw)
|
.event(smEventRaw)
|
||||||
.build());
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// Create a new CallChain with the matched transitions
|
|
||||||
CallChain updatedChain = CallChain.builder()
|
|
||||||
.entryPoint(chain.getEntryPoint())
|
|
||||||
.methodChain(chain.getMethodChain())
|
|
||||||
.triggerPoint(chain.getTriggerPoint())
|
|
||||||
.contextMachineId(chain.getContextMachineId())
|
|
||||||
.matchedTransitions(matched)
|
|
||||||
.build();
|
.build();
|
||||||
|
if (isRoutedToCorrectMachine(chain, result.getName())) {
|
||||||
|
matched.add(mt);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
updatedChains.add(updatedChain);
|
if (!matched.isEmpty()) {
|
||||||
|
CallChain newChain = chain.toBuilder().matchedTransitions(matched).build();
|
||||||
|
updatedChains.add(newChain);
|
||||||
|
} else {
|
||||||
|
updatedChains.add(chain);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// Update the metadata with the new call chains
|
// Update the metadata with the new call chains
|
||||||
@@ -85,12 +99,48 @@ public class TransitionLinkerEnricher implements AnalysisEnricher {
|
|||||||
result.setMetadata(updatedMetadata);
|
result.setMetadata(updatedMetadata);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
private boolean isRoutedToCorrectMachine(CallChain chain, String currentMachineName) {
|
||||||
|
return routingEngine.isRoutedToCorrectMachine(chain, currentMachineName);
|
||||||
|
}
|
||||||
|
|
||||||
private String simplify(String name) {
|
private String simplify(String name) {
|
||||||
if (name == null) return "";
|
if (name == null) return null;
|
||||||
int dot = name.lastIndexOf('.');
|
// Strip common suffixes
|
||||||
if (dot >= 0) {
|
String simplified = name.replaceAll("(?i)(.*)(Event|Action|Transition|Command)(s)?$", "$1");
|
||||||
return name.substring(dot + 1);
|
if (simplified.isEmpty()) {
|
||||||
|
simplified = name;
|
||||||
}
|
}
|
||||||
return name;
|
// Simplify full identifiers to just the last part (enum name)
|
||||||
|
simplified = simplified.replaceAll("^.*\\.([A-Z0-9_]+)$", "$1");
|
||||||
|
// For remaining full caps with underscores (like EVENT_X), keep as is or try to simplify
|
||||||
|
return simplified;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private boolean isGuardedContains(String smEvent, String triggerEvent) {
|
||||||
|
// Only fire if it looks like a simple identifier (no spaces, no parens)
|
||||||
|
// Prevents unresolved AST nodes (e.g. "event.getPayload()") from accidentally matching "Event"
|
||||||
|
if (smEvent.contains(" ") || smEvent.contains("(") || smEvent.contains(")") ||
|
||||||
|
triggerEvent.contains(" ") || triggerEvent.contains("(") || triggerEvent.contains(")")) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
String shorter = smEvent.length() < triggerEvent.length() ? smEvent : triggerEvent;
|
||||||
|
String longer = smEvent.length() >= triggerEvent.length() ? smEvent : triggerEvent;
|
||||||
|
|
||||||
|
shorter = shorter.toLowerCase();
|
||||||
|
longer = longer.toLowerCase();
|
||||||
|
|
||||||
|
if (longer.contains(shorter)) {
|
||||||
|
// Guard: If the matching part is very short (< 4 chars), it must be bounded by word separators
|
||||||
|
// to avoid matching completely unrelated words (e.g., "PAY" matching "PAYMENT" or "E" matching "UPDATE")
|
||||||
|
if (shorter.length() < 4) {
|
||||||
|
return longer.matches(".*(^|_|-)" + shorter + "(_|-|$).*");
|
||||||
|
}
|
||||||
|
// For longer strings, a straight contains is usually safe enough
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
@@ -0,0 +1,11 @@
|
|||||||
|
package click.kamil.springstatemachineexporter.analysis.enricher.matching;
|
||||||
|
|
||||||
|
import click.kamil.springstatemachineexporter.analysis.model.TriggerPoint;
|
||||||
|
import click.kamil.springstatemachineexporter.model.Event;
|
||||||
|
|
||||||
|
public interface EventMatchingEngine {
|
||||||
|
/**
|
||||||
|
* Determines whether the given trigger point is a match for the state machine event.
|
||||||
|
*/
|
||||||
|
boolean matches(Event stateMachineEvent, TriggerPoint triggerPoint);
|
||||||
|
}
|
||||||
@@ -0,0 +1,75 @@
|
|||||||
|
package click.kamil.springstatemachineexporter.analysis.enricher.matching;
|
||||||
|
|
||||||
|
import click.kamil.springstatemachineexporter.analysis.model.TriggerPoint;
|
||||||
|
import click.kamil.springstatemachineexporter.model.Event;
|
||||||
|
import java.util.List;
|
||||||
|
|
||||||
|
public class HeuristicEventMatchingEngine implements EventMatchingEngine {
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public boolean matches(Event stateMachineEvent, TriggerPoint triggerPoint) {
|
||||||
|
if (stateMachineEvent == null || triggerPoint == null || triggerPoint.getEvent() == null) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
String rawTriggerEvent = triggerPoint.getEvent();
|
||||||
|
String smEventRaw = stateMachineEvent.fullIdentifier() != null ? stateMachineEvent.fullIdentifier() : stateMachineEvent.rawName();
|
||||||
|
String smEvent = simplify(smEventRaw);
|
||||||
|
|
||||||
|
boolean isWildcard = isWildcardVariable(rawTriggerEvent);
|
||||||
|
|
||||||
|
List<String> polyEvents = triggerPoint.getPolymorphicEvents() != null ? triggerPoint.getPolymorphicEvents() : java.util.Collections.emptyList();
|
||||||
|
|
||||||
|
boolean hasPolyMatch = false;
|
||||||
|
for (String pe : polyEvents) {
|
||||||
|
if (pe.contains(".") && smEventRaw.contains(".")) {
|
||||||
|
if (smEventRaw.equals(pe) || smEventRaw.endsWith("." + pe)) {
|
||||||
|
hasPolyMatch = true;
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
continue; // Stricter matching: do not fallback if both have qualifiers but don't match
|
||||||
|
}
|
||||||
|
|
||||||
|
String simplePe = pe;
|
||||||
|
if (pe.contains(".")) {
|
||||||
|
simplePe = pe.substring(pe.lastIndexOf('.') + 1);
|
||||||
|
}
|
||||||
|
String simplifiedPe = simplify(simplePe);
|
||||||
|
|
||||||
|
if (simplePe.equals(smEventRaw) || simplePe.equals(smEvent) ||
|
||||||
|
simplePe.equalsIgnoreCase(smEvent) || simplifiedPe.equalsIgnoreCase(smEvent)) {
|
||||||
|
hasPolyMatch = true;
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if (hasPolyMatch) return true;
|
||||||
|
if (polyEvents.isEmpty() && isWildcard) return true;
|
||||||
|
|
||||||
|
if (rawTriggerEvent.contains(".") && smEventRaw.contains(".")) {
|
||||||
|
if (smEventRaw.equals(rawTriggerEvent) || smEventRaw.endsWith("." + rawTriggerEvent)) {
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
String triggerEvent = simplify(rawTriggerEvent);
|
||||||
|
return smEvent.equals(triggerEvent);
|
||||||
|
}
|
||||||
|
|
||||||
|
private boolean isWildcardVariable(String eventStr) {
|
||||||
|
return eventStr.equals("event") || eventStr.equals("e") ||
|
||||||
|
eventStr.equals("msg") || eventStr.equals("message") ||
|
||||||
|
eventStr.equals("payload");
|
||||||
|
}
|
||||||
|
|
||||||
|
private String simplify(String name) {
|
||||||
|
if (name == null) return null;
|
||||||
|
String simplified = name.replaceAll("(?i)(.*)(Event|Action|Transition|Command)(s)?$", "$1");
|
||||||
|
if (simplified.isEmpty()) {
|
||||||
|
simplified = name;
|
||||||
|
}
|
||||||
|
simplified = simplified.replaceAll("^.*\\.([A-Z0-9_]+)$", "$1");
|
||||||
|
return simplified;
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,69 @@
|
|||||||
|
package click.kamil.springstatemachineexporter.analysis.enricher.path;
|
||||||
|
|
||||||
|
import click.kamil.springstatemachineexporter.analysis.enricher.AnalysisEnricher;
|
||||||
|
import click.kamil.springstatemachineexporter.analysis.model.AnalysisResult;
|
||||||
|
import click.kamil.springstatemachineexporter.analysis.model.CallChain;
|
||||||
|
import click.kamil.springstatemachineexporter.analysis.model.TriggerPoint;
|
||||||
|
import click.kamil.springstatemachineexporter.analysis.service.CodebaseIntelligenceProvider;
|
||||||
|
import click.kamil.springstatemachineexporter.ast.common.CodebaseContext;
|
||||||
|
import lombok.extern.slf4j.Slf4j;
|
||||||
|
|
||||||
|
import java.util.ArrayList;
|
||||||
|
import java.util.List;
|
||||||
|
import java.util.stream.Collectors;
|
||||||
|
|
||||||
|
@Slf4j
|
||||||
|
public class ForwardPathEstimationEnricher implements AnalysisEnricher {
|
||||||
|
|
||||||
|
private final boolean isEnabled;
|
||||||
|
private final PathValueEstimator estimator;
|
||||||
|
|
||||||
|
public ForwardPathEstimationEnricher() {
|
||||||
|
this.isEnabled = Boolean.parseBoolean(System.getProperty("analyzer.forward-path-estimation.enabled", "false"));
|
||||||
|
this.estimator = new SymbolicPathValueEstimator();
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void enrich(AnalysisResult result, CodebaseContext context, CodebaseIntelligenceProvider intelligence) {
|
||||||
|
if (!isEnabled || result.getMetadata() == null || result.getMetadata().getCallChains() == null) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
log.info("Running Symbolic Forward Path Analysis for {}", result.getName());
|
||||||
|
|
||||||
|
List<CallChain> chains = result.getMetadata().getCallChains();
|
||||||
|
List<CallChain> updatedChains = chains.stream().map(chain -> {
|
||||||
|
if (chain.getTriggerPoint() == null || chain.getTriggerPoint().getEvent() == null) return chain;
|
||||||
|
|
||||||
|
// If the event looks like a dynamic variable (no dots, not an enum format)
|
||||||
|
if (!chain.getTriggerPoint().getEvent().contains(".")) {
|
||||||
|
List<String> estimatedValues = estimator.estimatePossibleValues(chain, context);
|
||||||
|
if (estimatedValues != null && !estimatedValues.isEmpty()) {
|
||||||
|
log.info("Symbolic Path Analysis estimated values for {} -> {}", chain.getTriggerPoint().getEvent(), estimatedValues);
|
||||||
|
|
||||||
|
List<String> polyEvents = new ArrayList<>();
|
||||||
|
if (chain.getTriggerPoint().getPolymorphicEvents() != null) {
|
||||||
|
polyEvents.addAll(chain.getTriggerPoint().getPolymorphicEvents());
|
||||||
|
}
|
||||||
|
polyEvents.addAll(estimatedValues);
|
||||||
|
|
||||||
|
TriggerPoint newTp = chain.getTriggerPoint().toBuilder()
|
||||||
|
.polymorphicEvents(polyEvents)
|
||||||
|
.build();
|
||||||
|
|
||||||
|
return chain.toBuilder().triggerPoint(newTp).build();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return chain;
|
||||||
|
}).collect(Collectors.toList());
|
||||||
|
click.kamil.springstatemachineexporter.analysis.model.CodebaseMetadata updatedMetadata =
|
||||||
|
click.kamil.springstatemachineexporter.analysis.model.CodebaseMetadata.builder()
|
||||||
|
.triggers(result.getMetadata().getTriggers())
|
||||||
|
.entryPoints(result.getMetadata().getEntryPoints())
|
||||||
|
.callChains(updatedChains)
|
||||||
|
.properties(result.getMetadata().getProperties())
|
||||||
|
.build();
|
||||||
|
|
||||||
|
result.setMetadata(updatedMetadata);
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,10 @@
|
|||||||
|
package click.kamil.springstatemachineexporter.analysis.enricher.path;
|
||||||
|
|
||||||
|
import click.kamil.springstatemachineexporter.analysis.model.CallChain;
|
||||||
|
import click.kamil.springstatemachineexporter.ast.common.CodebaseContext;
|
||||||
|
|
||||||
|
import java.util.List;
|
||||||
|
|
||||||
|
public interface PathValueEstimator {
|
||||||
|
List<String> estimatePossibleValues(CallChain chain, CodebaseContext context);
|
||||||
|
}
|
||||||
@@ -0,0 +1,114 @@
|
|||||||
|
package click.kamil.springstatemachineexporter.analysis.enricher.path;
|
||||||
|
|
||||||
|
import click.kamil.springstatemachineexporter.analysis.model.CallChain;
|
||||||
|
import click.kamil.springstatemachineexporter.ast.common.CodebaseContext;
|
||||||
|
import org.eclipse.jdt.core.dom.*;
|
||||||
|
|
||||||
|
import java.util.ArrayList;
|
||||||
|
import java.util.HashSet;
|
||||||
|
import java.util.List;
|
||||||
|
import java.util.Set;
|
||||||
|
|
||||||
|
public class SymbolicPathValueEstimator implements PathValueEstimator {
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public List<String> estimatePossibleValues(CallChain chain, CodebaseContext context) {
|
||||||
|
if (chain.getMethodChain() == null || chain.getMethodChain().isEmpty()) {
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
|
||||||
|
Set<String> collectedConstants = new HashSet<>();
|
||||||
|
|
||||||
|
for (String methodFqn : chain.getMethodChain()) {
|
||||||
|
int lastDot = methodFqn.lastIndexOf('.');
|
||||||
|
if (lastDot == -1) continue;
|
||||||
|
|
||||||
|
String className = methodFqn.substring(0, lastDot);
|
||||||
|
String methodName = methodFqn.substring(lastDot + 1);
|
||||||
|
|
||||||
|
TypeDeclaration td = context.getTypeDeclaration(className);
|
||||||
|
if (td == null) continue;
|
||||||
|
|
||||||
|
MethodDeclaration md = context.findMethodDeclaration(td, methodName, true);
|
||||||
|
if (md == null || md.getBody() == null) continue;
|
||||||
|
|
||||||
|
md.getBody().accept(new ASTVisitor() {
|
||||||
|
@Override
|
||||||
|
public boolean visit(MethodInvocation node) {
|
||||||
|
if ((node.getName().getIdentifier().equals("equals") || node.getName().getIdentifier().equals("equalsIgnoreCase"))
|
||||||
|
&& node.arguments().size() == 1) {
|
||||||
|
|
||||||
|
Expression caller = node.getExpression();
|
||||||
|
Expression arg = (Expression) node.arguments().get(0);
|
||||||
|
|
||||||
|
click.kamil.springstatemachineexporter.analysis.resolver.ConstantResolver resolver = new click.kamil.springstatemachineexporter.analysis.resolver.ConstantResolver();
|
||||||
|
|
||||||
|
String callerVal = resolver.resolve(caller, context);
|
||||||
|
if (callerVal != null && !callerVal.isEmpty()) {
|
||||||
|
addValue(collectedConstants, callerVal);
|
||||||
|
}
|
||||||
|
|
||||||
|
String argVal = resolver.resolve(arg, context);
|
||||||
|
if (argVal != null && !argVal.isEmpty()) {
|
||||||
|
addValue(collectedConstants, argVal);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return super.visit(node);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public boolean visit(SwitchStatement node) {
|
||||||
|
for (Object stmt : node.statements()) {
|
||||||
|
if (stmt instanceof SwitchCase sc && !sc.isDefault()) {
|
||||||
|
for (Object expr : sc.expressions()) {
|
||||||
|
click.kamil.springstatemachineexporter.analysis.resolver.ConstantResolver resolver = new click.kamil.springstatemachineexporter.analysis.resolver.ConstantResolver();
|
||||||
|
String val = resolver.resolve((Expression) expr, context);
|
||||||
|
if (val != null && !val.isEmpty()) {
|
||||||
|
addValue(collectedConstants, val);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return super.visit(node);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public boolean visit(SwitchExpression node) {
|
||||||
|
for (Object stmt : node.statements()) {
|
||||||
|
if (stmt instanceof SwitchCase sc && !sc.isDefault()) {
|
||||||
|
for (Object expr : sc.expressions()) {
|
||||||
|
click.kamil.springstatemachineexporter.analysis.resolver.ConstantResolver resolver = new click.kamil.springstatemachineexporter.analysis.resolver.ConstantResolver();
|
||||||
|
String val = resolver.resolve((Expression) expr, context);
|
||||||
|
if (val != null && !val.isEmpty()) {
|
||||||
|
addValue(collectedConstants, val);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return super.visit(node);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
if (collectedConstants.isEmpty()) return null;
|
||||||
|
return new ArrayList<>(collectedConstants);
|
||||||
|
}
|
||||||
|
|
||||||
|
private void addValue(Set<String> collectedConstants, String val) {
|
||||||
|
if (val.startsWith("ENUM_SET:")) {
|
||||||
|
for (String eVal : val.substring(9).split(",")) {
|
||||||
|
String parsed = parseEnumSetElement(eVal);
|
||||||
|
if (!collectedConstants.contains(parsed)) collectedConstants.add(parsed);
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
collectedConstants.add(val);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private String parseEnumSetElement(String element) {
|
||||||
|
if (element.contains(".")) {
|
||||||
|
return element.substring(element.lastIndexOf('.') + 1);
|
||||||
|
}
|
||||||
|
return element;
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,7 @@
|
|||||||
|
package click.kamil.springstatemachineexporter.analysis.enricher.routing;
|
||||||
|
|
||||||
|
import click.kamil.springstatemachineexporter.analysis.model.CallChain;
|
||||||
|
|
||||||
|
public interface BeanResolutionEngine {
|
||||||
|
boolean isRoutedToCorrectMachine(CallChain chain, String currentMachineName);
|
||||||
|
}
|
||||||
@@ -0,0 +1,188 @@
|
|||||||
|
package click.kamil.springstatemachineexporter.analysis.enricher.routing;
|
||||||
|
|
||||||
|
import click.kamil.springstatemachineexporter.analysis.model.CallChain;
|
||||||
|
|
||||||
|
import java.util.HashSet;
|
||||||
|
import java.util.Set;
|
||||||
|
|
||||||
|
public class HeuristicBeanResolutionEngine implements BeanResolutionEngine {
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public boolean isRoutedToCorrectMachine(CallChain chain, String currentMachineName) {
|
||||||
|
String targetVar = chain.getContextMachineId();
|
||||||
|
if (targetVar == null && chain.getTriggerPoint() != null) {
|
||||||
|
targetVar = chain.getTriggerPoint().getStateMachineId();
|
||||||
|
}
|
||||||
|
|
||||||
|
String simplifiedMachineName = currentMachineName != null ? currentMachineName.substring(currentMachineName.lastIndexOf('.') + 1).toLowerCase() : "";
|
||||||
|
|
||||||
|
if (targetVar != null && !targetVar.isEmpty()) {
|
||||||
|
targetVar = targetVar.toLowerCase();
|
||||||
|
if (targetVar.endsWith("statemachine")) {
|
||||||
|
String prefix = targetVar.substring(0, targetVar.length() - "statemachine".length());
|
||||||
|
if (!prefix.isEmpty()) {
|
||||||
|
if (simplifiedMachineName.contains(prefix)) {
|
||||||
|
return true; // Explicit positive match
|
||||||
|
} else {
|
||||||
|
return false; // Explicit negative match
|
||||||
|
}
|
||||||
|
}
|
||||||
|
} else if (simplifiedMachineName.contains(targetVar)) {
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if (chain.getMethodChain() != null && !chain.getMethodChain().isEmpty() && currentMachineName != null) {
|
||||||
|
String smPackage = getPackageName(currentMachineName);
|
||||||
|
String smSimple = getSimpleClassName(currentMachineName);
|
||||||
|
String smPrefix = getFirstCamelCaseWord(smSimple);
|
||||||
|
|
||||||
|
boolean hasPositiveMatch = false;
|
||||||
|
boolean hasStrongMismatch = false;
|
||||||
|
|
||||||
|
for (String method : chain.getMethodChain()) {
|
||||||
|
String chainClass = getClassNameOnly(method);
|
||||||
|
String chainPackage = getPackageName(chainClass);
|
||||||
|
String chainSimple = getSimpleClassName(chainClass);
|
||||||
|
String chainPrefix = getFirstCamelCaseWord(chainSimple);
|
||||||
|
|
||||||
|
if (smPrefix != null && chainPrefix != null && smPrefix.equals(chainPrefix)) {
|
||||||
|
hasPositiveMatch = true;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (isDomainMatch(smPackage, chainPackage, smPrefix, chainPrefix)) {
|
||||||
|
hasPositiveMatch = true;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (isDomainMismatch(smPackage, chainPackage, smPrefix, chainPrefix)) {
|
||||||
|
hasStrongMismatch = true;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if (hasPositiveMatch) {
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
if (hasStrongMismatch) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
private boolean isDomainMatch(String smPackage, String chainPackage, String smPrefix, String chainPrefix) {
|
||||||
|
if (smPackage == null || chainPackage == null || smPackage.isEmpty() || chainPackage.isEmpty()) return false;
|
||||||
|
|
||||||
|
if (smPackage.startsWith(chainPackage) || chainPackage.startsWith(smPackage)) {
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Find deepest common package root
|
||||||
|
String[] p1 = smPackage.split("\\.");
|
||||||
|
String[] p2 = chainPackage.split("\\.");
|
||||||
|
int matchIdx = -1;
|
||||||
|
for (int i = 0; i < Math.min(p1.length, p2.length); i++) {
|
||||||
|
if (p1[i].equals(p2[i])) {
|
||||||
|
matchIdx = i;
|
||||||
|
} else {
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// If the state machine's prefix is part of the shared common package,
|
||||||
|
// then the state machine represents the parent domain of the caller.
|
||||||
|
if (smPrefix != null && matchIdx >= 0) {
|
||||||
|
String lowerPrefix = smPrefix.toLowerCase();
|
||||||
|
for (int i = 0; i <= matchIdx; i++) {
|
||||||
|
if (p1[i].toLowerCase().contains(lowerPrefix) || lowerPrefix.contains(p1[i].toLowerCase())) {
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
private boolean isDomainMismatch(String smPackage, String chainPackage, String smPrefix, String chainPrefix) {
|
||||||
|
if (smPackage == null || chainPackage == null || smPackage.isEmpty() || chainPackage.isEmpty()) return false;
|
||||||
|
|
||||||
|
String[] p1 = smPackage.split("\\.");
|
||||||
|
String[] p2 = chainPackage.split("\\.");
|
||||||
|
|
||||||
|
int matchIdx = -1;
|
||||||
|
for (int i = 0; i < Math.min(p1.length, p2.length); i++) {
|
||||||
|
if (p1[i].equals(p2[i])) {
|
||||||
|
matchIdx = i;
|
||||||
|
} else {
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
Set<String> smDivergentTerms = new HashSet<>();
|
||||||
|
if (smPrefix != null) smDivergentTerms.add(smPrefix.toLowerCase());
|
||||||
|
for (int i = matchIdx + 1; i < p1.length; i++) {
|
||||||
|
smDivergentTerms.add(p1[i].toLowerCase());
|
||||||
|
}
|
||||||
|
|
||||||
|
Set<String> chainDivergentTerms = new HashSet<>();
|
||||||
|
if (chainPrefix != null) chainDivergentTerms.add(chainPrefix.toLowerCase());
|
||||||
|
for (int i = matchIdx + 1; i < p2.length; i++) {
|
||||||
|
chainDivergentTerms.add(p2[i].toLowerCase());
|
||||||
|
}
|
||||||
|
|
||||||
|
if (!smDivergentTerms.isEmpty() && !chainDivergentTerms.isEmpty()) {
|
||||||
|
Set<String> intersection = new HashSet<>(smDivergentTerms);
|
||||||
|
intersection.retainAll(chainDivergentTerms);
|
||||||
|
return intersection.isEmpty();
|
||||||
|
}
|
||||||
|
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
private Set<String> extractDomainTerms(String pkg, String prefix) {
|
||||||
|
Set<String> terms = new HashSet<>();
|
||||||
|
if (pkg != null && !pkg.isEmpty()) {
|
||||||
|
String[] segments = pkg.split("\\.");
|
||||||
|
// Take segments from index 2 onwards if length > 2
|
||||||
|
int start = segments.length > 2 ? 2 : 0;
|
||||||
|
for (int i = start; i < segments.length; i++) {
|
||||||
|
terms.add(segments[i].toLowerCase());
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if (prefix != null && !prefix.isEmpty()) {
|
||||||
|
terms.add(prefix.toLowerCase());
|
||||||
|
}
|
||||||
|
return terms;
|
||||||
|
}
|
||||||
|
|
||||||
|
private String getPackageName(String fqn) {
|
||||||
|
if (fqn == null || !fqn.contains(".")) return "";
|
||||||
|
return fqn.substring(0, fqn.lastIndexOf('.'));
|
||||||
|
}
|
||||||
|
|
||||||
|
private String getSimpleClassName(String fqn) {
|
||||||
|
if (fqn == null) return "";
|
||||||
|
if (!fqn.contains(".")) return fqn;
|
||||||
|
return fqn.substring(fqn.lastIndexOf('.') + 1);
|
||||||
|
}
|
||||||
|
|
||||||
|
private String getClassNameOnly(String methodFqn) {
|
||||||
|
if (methodFqn == null) return "";
|
||||||
|
String clean = methodFqn;
|
||||||
|
if (clean.contains("(")) {
|
||||||
|
clean = clean.substring(0, clean.indexOf('('));
|
||||||
|
}
|
||||||
|
if (clean.contains(".")) {
|
||||||
|
clean = clean.substring(0, clean.lastIndexOf('.'));
|
||||||
|
}
|
||||||
|
return clean;
|
||||||
|
}
|
||||||
|
|
||||||
|
private String getFirstCamelCaseWord(String simpleName) {
|
||||||
|
if (simpleName == null || simpleName.isEmpty()) return null;
|
||||||
|
String[] words = simpleName.split("(?<!^)(?=[A-Z])");
|
||||||
|
if (words.length > 0) {
|
||||||
|
return words[0];
|
||||||
|
}
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -8,7 +8,7 @@ import lombok.extern.jackson.Jacksonized;
|
|||||||
import java.util.List;
|
import java.util.List;
|
||||||
|
|
||||||
@Data
|
@Data
|
||||||
@Builder
|
@Builder(toBuilder = true)
|
||||||
@Jacksonized
|
@Jacksonized
|
||||||
@JsonIgnoreProperties(ignoreUnknown = true)
|
@JsonIgnoreProperties(ignoreUnknown = true)
|
||||||
public class CallChain {
|
public class CallChain {
|
||||||
|
|||||||
@@ -0,0 +1,11 @@
|
|||||||
|
package click.kamil.springstatemachineexporter.analysis.model;
|
||||||
|
|
||||||
|
import lombok.Data;
|
||||||
|
|
||||||
|
import java.util.List;
|
||||||
|
|
||||||
|
@Data
|
||||||
|
public class CallEdge {
|
||||||
|
private final String targetMethod;
|
||||||
|
private final List<String> arguments;
|
||||||
|
}
|
||||||
@@ -13,5 +13,7 @@ import java.util.List;
|
|||||||
@JsonIgnoreProperties(ignoreUnknown = true)
|
@JsonIgnoreProperties(ignoreUnknown = true)
|
||||||
public class LibraryHint {
|
public class LibraryHint {
|
||||||
private final String methodFqn; // e.g., "com.thirdparty.Workflow.send"
|
private final String methodFqn; // e.g., "com.thirdparty.Workflow.send"
|
||||||
private final String event; // The event it triggers
|
private final String event; // The event it triggers (static)
|
||||||
|
private final Integer eventArgumentIndex; // e.g., 0 to extract from the 0th argument
|
||||||
|
private final String eventArgumentMethod; // e.g., "getType" to extract from argument method call
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -8,7 +8,7 @@ import lombok.extern.jackson.Jacksonized;
|
|||||||
import java.util.Map;
|
import java.util.Map;
|
||||||
|
|
||||||
@Data
|
@Data
|
||||||
@Builder
|
@Builder(toBuilder = true)
|
||||||
@Jacksonized
|
@Jacksonized
|
||||||
@JsonIgnoreProperties(ignoreUnknown = true)
|
@JsonIgnoreProperties(ignoreUnknown = true)
|
||||||
public class TriggerPoint {
|
public class TriggerPoint {
|
||||||
@@ -20,4 +20,5 @@ public class TriggerPoint {
|
|||||||
private final String stateMachineId; // Optional: to link to a specific SM instance
|
private final String stateMachineId; // Optional: to link to a specific SM instance
|
||||||
private final String sourceState; // Optional: if we can determine the expected current state
|
private final String sourceState; // Optional: if we can determine the expected current state
|
||||||
private final int lineNumber;
|
private final int lineNumber;
|
||||||
|
private final java.util.List<String> polymorphicEvents; // NEW: stores concrete events resolved via deep polymorphism
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -17,6 +17,19 @@ public class ConstantResolver {
|
|||||||
private String resolveInternal(Expression expr, CodebaseContext context, Set<String> visited) {
|
private String resolveInternal(Expression expr, CodebaseContext context, Set<String> visited) {
|
||||||
if (expr == null) return null;
|
if (expr == null) return null;
|
||||||
|
|
||||||
|
// Unwrap common wrappers
|
||||||
|
if (expr instanceof CastExpression ce) {
|
||||||
|
return resolveInternal(ce.getExpression(), context, visited);
|
||||||
|
}
|
||||||
|
if (expr instanceof ParenthesizedExpression pe) {
|
||||||
|
return resolveInternal(pe.getExpression(), context, visited);
|
||||||
|
}
|
||||||
|
if (expr instanceof MethodInvocation mi && (mi.getName().getIdentifier().equals("requireNonNull") || mi.getName().getIdentifier().equals("notNull"))) {
|
||||||
|
if (!mi.arguments().isEmpty()) {
|
||||||
|
return resolveInternal((Expression) mi.arguments().get(0), context, visited);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
// 1. Literal?
|
// 1. Literal?
|
||||||
if (expr instanceof StringLiteral sl) {
|
if (expr instanceof StringLiteral sl) {
|
||||||
return sl.getLiteralValue();
|
return sl.getLiteralValue();
|
||||||
@@ -48,13 +61,43 @@ public class ConstantResolver {
|
|||||||
return resolveInfix(infix, context, visited);
|
return resolveInfix(infix, context, visited);
|
||||||
}
|
}
|
||||||
if (expr instanceof QualifiedName qn) {
|
if (expr instanceof QualifiedName qn) {
|
||||||
return resolveManual(qn, context, visited);
|
String val = resolveManual(qn, context, visited);
|
||||||
|
return val != null ? val : qn.toString();
|
||||||
|
}
|
||||||
|
if (expr instanceof FieldAccess fa) {
|
||||||
|
return resolveManual(fa.getName(), context, visited);
|
||||||
}
|
}
|
||||||
if (expr instanceof SimpleName sn) {
|
if (expr instanceof SimpleName sn) {
|
||||||
return resolveManual(sn, context, visited);
|
return resolveManual(sn, context, visited);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
if (expr instanceof MethodInvocation mi) {
|
if (expr instanceof MethodInvocation mi) {
|
||||||
|
if ((mi.getName().getIdentifier().equals("name") || mi.getName().getIdentifier().equals("toString")) && mi.arguments().isEmpty()) {
|
||||||
|
String val = resolveInternal(mi.getExpression(), context, visited);
|
||||||
|
if (val != null) {
|
||||||
|
// If it was resolved as a fully qualified enum string like "MyEvents.ORDER_PAID", strip it
|
||||||
|
if (val.contains(".")) {
|
||||||
|
return val.substring(val.lastIndexOf('.') + 1);
|
||||||
|
}
|
||||||
|
return val;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Fallback for unresolved AST nodes
|
||||||
|
if (mi.getExpression() instanceof QualifiedName qn) {
|
||||||
|
return qn.getName().getIdentifier();
|
||||||
|
} else if (mi.getExpression() instanceof SimpleName sn) {
|
||||||
|
return sn.getIdentifier();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if ("valueOf".equals(mi.getName().getIdentifier()) && mi.getExpression() != null) {
|
||||||
|
java.util.List<String> enumValues = context.getEnumValues(mi.getExpression().toString());
|
||||||
|
if (enumValues != null && !enumValues.isEmpty()) {
|
||||||
|
return "ENUM_SET:" + String.join(",", enumValues);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
IMethodBinding mb = mi.resolveMethodBinding();
|
IMethodBinding mb = mi.resolveMethodBinding();
|
||||||
if (mb != null) {
|
if (mb != null) {
|
||||||
ITypeBinding returnType = mb.getReturnType();
|
ITypeBinding returnType = mb.getReturnType();
|
||||||
@@ -68,7 +111,11 @@ public class ConstantResolver {
|
|||||||
TypeDeclaration td = findEnclosingType(mi);
|
TypeDeclaration td = findEnclosingType(mi);
|
||||||
if (td != null) {
|
if (td != null) {
|
||||||
MethodDeclaration md = context.findMethodDeclaration(td, mi.getName().getIdentifier(), true);
|
MethodDeclaration md = context.findMethodDeclaration(td, mi.getName().getIdentifier(), true);
|
||||||
if (md != null && md.getReturnType2() != null) {
|
if (md != null) {
|
||||||
|
String evaluated = evaluateMethodOutput(mi, md, context, visited);
|
||||||
|
if (evaluated != null) return evaluated;
|
||||||
|
|
||||||
|
if (md.getReturnType2() != null) {
|
||||||
java.util.List<String> values = context.getEnumValues(md.getReturnType2().toString());
|
java.util.List<String> values = context.getEnumValues(md.getReturnType2().toString());
|
||||||
if (values != null && !values.isEmpty()) {
|
if (values != null && !values.isEmpty()) {
|
||||||
return "ENUM_SET:" + String.join(",", values);
|
return "ENUM_SET:" + String.join(",", values);
|
||||||
@@ -77,10 +124,146 @@ public class ConstantResolver {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private String evaluateMethodOutput(MethodInvocation mi, MethodDeclaration md, CodebaseContext context, Set<String> visited) {
|
||||||
|
if (md.getBody() == null || mi.arguments().size() != md.parameters().size()) return null;
|
||||||
|
|
||||||
|
java.util.Map<String, String> localVars = new java.util.HashMap<>();
|
||||||
|
for (int i = 0; i < mi.arguments().size(); i++) {
|
||||||
|
Expression arg = (Expression) mi.arguments().get(i);
|
||||||
|
String val = resolveInternal(arg, context, visited);
|
||||||
|
if (val != null) {
|
||||||
|
org.eclipse.jdt.core.dom.SingleVariableDeclaration param = (org.eclipse.jdt.core.dom.SingleVariableDeclaration) md.parameters().get(i);
|
||||||
|
localVars.put(param.getName().getIdentifier(), val);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if (localVars.isEmpty()) return null;
|
||||||
|
|
||||||
|
for (Object stmtObj : md.getBody().statements()) {
|
||||||
|
if (stmtObj instanceof org.eclipse.jdt.core.dom.ExpressionStatement es) {
|
||||||
|
if (es.getExpression() instanceof Assignment assignment) {
|
||||||
|
Expression lhs = assignment.getLeftHandSide();
|
||||||
|
String varName = null;
|
||||||
|
if (lhs instanceof SimpleName sn) {
|
||||||
|
varName = sn.getIdentifier();
|
||||||
|
} else if (lhs instanceof FieldAccess fa) {
|
||||||
|
varName = "this." + fa.getName().getIdentifier();
|
||||||
|
}
|
||||||
|
|
||||||
|
String rhsVal = resolveExpressionWithParams(assignment.getRightHandSide(), localVars);
|
||||||
|
if (rhsVal == null) rhsVal = resolveInternal(assignment.getRightHandSide(), context, visited);
|
||||||
|
|
||||||
|
if (varName != null && rhsVal != null) {
|
||||||
|
localVars.put(varName, rhsVal);
|
||||||
|
if (varName.startsWith("this.")) {
|
||||||
|
localVars.put(varName.substring(5), rhsVal); // alias without 'this.'
|
||||||
|
} else {
|
||||||
|
localVars.put("this." + varName, rhsVal); // alias with 'this.'
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
} else if (stmtObj instanceof org.eclipse.jdt.core.dom.SwitchStatement ss) {
|
||||||
|
String result = evaluateSwitchStatement(ss, localVars, context, visited);
|
||||||
|
if (result != null) return result;
|
||||||
|
} else if (stmtObj instanceof org.eclipse.jdt.core.dom.ReturnStatement rs) {
|
||||||
|
if (rs.getExpression() instanceof org.eclipse.jdt.core.dom.SwitchExpression se) {
|
||||||
|
String result = evaluateSwitchExpression(se, localVars, context, visited);
|
||||||
|
if (result != null) return result;
|
||||||
|
} else {
|
||||||
|
String result = resolveExpressionWithParams(rs.getExpression(), localVars);
|
||||||
|
if (result != null) return result;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
|
||||||
|
private String evaluateSwitchStatement(org.eclipse.jdt.core.dom.SwitchStatement ss, java.util.Map<String, String> paramValues, CodebaseContext context, Set<String> visited) {
|
||||||
|
String switchVar = resolveExpressionWithParams(ss.getExpression(), paramValues);
|
||||||
|
if (switchVar == null) return null;
|
||||||
|
|
||||||
|
boolean matchingCase = false;
|
||||||
|
for (Object stmtObj : ss.statements()) {
|
||||||
|
if (stmtObj instanceof org.eclipse.jdt.core.dom.SwitchCase sc) {
|
||||||
|
matchingCase = false;
|
||||||
|
if (sc.isDefault()) {
|
||||||
|
matchingCase = true;
|
||||||
|
} else {
|
||||||
|
for (Object exprObj : sc.expressions()) {
|
||||||
|
String caseVal = resolveExpressionWithParams((Expression) exprObj, paramValues);
|
||||||
|
if (caseVal != null && switchVar.endsWith(caseVal)) {
|
||||||
|
matchingCase = true;
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
} else if (matchingCase) {
|
||||||
|
if (stmtObj instanceof org.eclipse.jdt.core.dom.ReturnStatement rs) {
|
||||||
|
return resolveInternal(rs.getExpression(), context, visited);
|
||||||
|
} else if (stmtObj instanceof org.eclipse.jdt.core.dom.YieldStatement ys) {
|
||||||
|
return resolveInternal(ys.getExpression(), context, visited);
|
||||||
|
} else if (stmtObj instanceof org.eclipse.jdt.core.dom.ExpressionStatement es) {
|
||||||
|
return resolveInternal(es.getExpression(), context, visited);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
|
||||||
|
private String evaluateSwitchExpression(org.eclipse.jdt.core.dom.SwitchExpression se, java.util.Map<String, String> paramValues, CodebaseContext context, Set<String> visited) {
|
||||||
|
String switchVar = resolveExpressionWithParams(se.getExpression(), paramValues);
|
||||||
|
if (switchVar == null) return null;
|
||||||
|
|
||||||
|
boolean matchingCase = false;
|
||||||
|
for (Object stmtObj : se.statements()) {
|
||||||
|
if (stmtObj instanceof org.eclipse.jdt.core.dom.SwitchCase sc) {
|
||||||
|
matchingCase = false;
|
||||||
|
if (sc.isDefault()) {
|
||||||
|
matchingCase = true;
|
||||||
|
} else {
|
||||||
|
for (Object exprObj : sc.expressions()) {
|
||||||
|
String caseVal = resolveExpressionWithParams((Expression) exprObj, paramValues);
|
||||||
|
if (caseVal != null && switchVar.endsWith(caseVal)) {
|
||||||
|
matchingCase = true;
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
} else if (matchingCase) {
|
||||||
|
if (stmtObj instanceof org.eclipse.jdt.core.dom.ExpressionStatement es) {
|
||||||
|
return resolveInternal(es.getExpression(), context, visited);
|
||||||
|
} else if (stmtObj instanceof org.eclipse.jdt.core.dom.YieldStatement ys) {
|
||||||
|
return resolveInternal(ys.getExpression(), context, visited);
|
||||||
|
} else if (stmtObj instanceof org.eclipse.jdt.core.dom.ReturnStatement rs) {
|
||||||
|
return resolveInternal(rs.getExpression(), context, visited);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
|
||||||
|
private String resolveExpressionWithParams(Expression expr, java.util.Map<String, String> paramValues) {
|
||||||
|
if (expr instanceof SimpleName sn) {
|
||||||
|
String name = sn.getIdentifier();
|
||||||
|
if (paramValues.containsKey(name)) return paramValues.get(name);
|
||||||
|
return name;
|
||||||
|
} else if (expr instanceof FieldAccess fa) {
|
||||||
|
String name = "this." + fa.getName().getIdentifier();
|
||||||
|
if (paramValues.containsKey(name)) return paramValues.get(name);
|
||||||
|
return null;
|
||||||
|
} else if (expr instanceof QualifiedName qn) {
|
||||||
|
return qn.getName().getIdentifier();
|
||||||
|
} else if (expr instanceof org.eclipse.jdt.core.dom.StringLiteral sl) {
|
||||||
|
return sl.getLiteralValue();
|
||||||
|
}
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
|
||||||
private String resolveInfix(InfixExpression expr, CodebaseContext context, Set<String> visited) {
|
private String resolveInfix(InfixExpression expr, CodebaseContext context, Set<String> visited) {
|
||||||
if (expr.getOperator() != InfixExpression.Operator.PLUS) return null;
|
if (expr.getOperator() != InfixExpression.Operator.PLUS) return null;
|
||||||
|
|
||||||
@@ -160,6 +343,28 @@ public class ConstantResolver {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Check constructors for assignments
|
||||||
|
for (MethodDeclaration md : td.getMethods()) {
|
||||||
|
if (md.isConstructor() && md.getBody() != null) {
|
||||||
|
for (Object stmtObj : md.getBody().statements()) {
|
||||||
|
if (stmtObj instanceof ExpressionStatement es) {
|
||||||
|
if (es.getExpression() instanceof Assignment assignment) {
|
||||||
|
Expression lhs = assignment.getLeftHandSide();
|
||||||
|
boolean matches = false;
|
||||||
|
if (lhs instanceof SimpleName snLhs && snLhs.getIdentifier().equals(fieldName)) {
|
||||||
|
matches = true;
|
||||||
|
} else if (lhs instanceof FieldAccess fa && fa.getName().getIdentifier().equals(fieldName) && fa.getExpression() instanceof ThisExpression) {
|
||||||
|
matches = true;
|
||||||
|
}
|
||||||
|
if (matches) {
|
||||||
|
return resolveInternal(assignment.getRightHandSide(), context, visited);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
} finally {
|
} finally {
|
||||||
visited.remove(fieldId);
|
visited.remove(fieldId);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -0,0 +1,22 @@
|
|||||||
|
package click.kamil.springstatemachineexporter.analysis.resolver;
|
||||||
|
|
||||||
|
import click.kamil.springstatemachineexporter.analysis.model.TriggerPoint;
|
||||||
|
import click.kamil.springstatemachineexporter.ast.common.CodebaseContext;
|
||||||
|
|
||||||
|
import java.util.List;
|
||||||
|
|
||||||
|
public interface PolymorphicEventResolver {
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Attempts to resolve a dynamically passed event variable into a set of
|
||||||
|
* concrete polymorphic event names.
|
||||||
|
*
|
||||||
|
* @param triggerPoint The original trigger point to resolve.
|
||||||
|
* @param resolvedValue The current String expression (e.g., "event.getType()" or "event")
|
||||||
|
* @param path The call path trace leading up to this variable.
|
||||||
|
* @param context The codebase context for deep type resolution.
|
||||||
|
* @return The updated TriggerPoint with polymorphic events set, or the original if unable to resolve.
|
||||||
|
*/
|
||||||
|
TriggerPoint resolvePolymorphicEvents(TriggerPoint triggerPoint, String resolvedValue, List<String> path, CodebaseContext context);
|
||||||
|
|
||||||
|
}
|
||||||
@@ -105,25 +105,32 @@ public class PropertyResolver {
|
|||||||
}
|
}
|
||||||
|
|
||||||
private Map<String, String> loadYaml(Path path) {
|
private Map<String, String> loadYaml(Path path) {
|
||||||
// Placeholder for future YAML support
|
Map<String, String> props = new HashMap<>();
|
||||||
log.warn("YAML parsing not fully implemented yet for {}", path);
|
try {
|
||||||
return new HashMap<>();
|
com.fasterxml.jackson.databind.ObjectMapper mapper = new com.fasterxml.jackson.databind.ObjectMapper(new com.fasterxml.jackson.dataformat.yaml.YAMLFactory());
|
||||||
|
Map<String, Object> map = mapper.readValue(path.toFile(), new com.fasterxml.jackson.core.type.TypeReference<Map<String, Object>>() {});
|
||||||
|
flattenYaml("", map, props);
|
||||||
|
} catch (IOException e) {
|
||||||
|
log.warn("Failed to load YAML from {}", path);
|
||||||
|
}
|
||||||
|
return props;
|
||||||
|
}
|
||||||
|
|
||||||
|
@SuppressWarnings("unchecked")
|
||||||
|
private void flattenYaml(String prefix, Map<String, Object> map, Map<String, String> result) {
|
||||||
|
if (map == null) return;
|
||||||
|
for (Map.Entry<String, Object> entry : map.entrySet()) {
|
||||||
|
String key = prefix.isEmpty() ? entry.getKey() : prefix + "." + entry.getKey();
|
||||||
|
Object value = entry.getValue();
|
||||||
|
if (value instanceof Map) {
|
||||||
|
flattenYaml(key, (Map<String, Object>) value, result);
|
||||||
|
} else if (value != null) {
|
||||||
|
result.put(key, value.toString());
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public String resolveValue(String placeholder, Map<String, String> properties) {
|
public String resolveValue(String placeholder, Map<String, String> properties) {
|
||||||
if (placeholder == null || !placeholder.contains("${")) return placeholder;
|
return click.kamil.springstatemachineexporter.analysis.util.PlaceholderResolver.resolve(placeholder, properties);
|
||||||
|
|
||||||
// Very basic placeholder extraction: ${key} or ${key:default}
|
|
||||||
String content = placeholder.substring(placeholder.indexOf("${") + 2, placeholder.lastIndexOf("}"));
|
|
||||||
String key = content;
|
|
||||||
String defaultValue = null;
|
|
||||||
|
|
||||||
if (content.contains(":")) {
|
|
||||||
int colonIndex = content.indexOf(":");
|
|
||||||
key = content.substring(0, colonIndex);
|
|
||||||
defaultValue = content.substring(colonIndex + 1);
|
|
||||||
}
|
|
||||||
|
|
||||||
return properties.getOrDefault(key, defaultValue);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
File diff suppressed because it is too large
Load Diff
@@ -1,394 +0,0 @@
|
|||||||
package click.kamil.springstatemachineexporter.analysis.service;
|
|
||||||
|
|
||||||
import click.kamil.springstatemachineexporter.analysis.model.CallChain;
|
|
||||||
import click.kamil.springstatemachineexporter.analysis.model.EntryPoint;
|
|
||||||
import click.kamil.springstatemachineexporter.analysis.model.TriggerPoint;
|
|
||||||
import click.kamil.springstatemachineexporter.ast.common.CodebaseContext;
|
|
||||||
import click.kamil.springstatemachineexporter.analysis.resolver.ConstantResolver;
|
|
||||||
import lombok.extern.slf4j.Slf4j;
|
|
||||||
import org.eclipse.jdt.core.dom.*;
|
|
||||||
|
|
||||||
import java.util.*;
|
|
||||||
|
|
||||||
@Slf4j
|
|
||||||
public class CallGraphBuilder {
|
|
||||||
private final CodebaseContext context;
|
|
||||||
private final ConstantResolver constantResolver;
|
|
||||||
private String currentMethodFqn;
|
|
||||||
private Map<String, List<CallEdge>> graph;
|
|
||||||
|
|
||||||
@lombok.Data
|
|
||||||
private static class CallEdge {
|
|
||||||
private final String targetMethod;
|
|
||||||
private final List<String> arguments;
|
|
||||||
}
|
|
||||||
|
|
||||||
public CallGraphBuilder(CodebaseContext context) {
|
|
||||||
this.context = context;
|
|
||||||
this.constantResolver = new ConstantResolver();
|
|
||||||
}
|
|
||||||
|
|
||||||
public List<CallChain> findChains(List<EntryPoint> entryPoints, List<TriggerPoint> triggers) {
|
|
||||||
Map<String, List<CallEdge>> callGraph = buildCallGraph();
|
|
||||||
List<CallChain> chains = new ArrayList<>();
|
|
||||||
|
|
||||||
for (EntryPoint ep : entryPoints) {
|
|
||||||
String startMethod = ep.getClassName() + "." + ep.getMethodName();
|
|
||||||
for (TriggerPoint tp : triggers) {
|
|
||||||
String targetMethod = tp.getClassName() + "." + tp.getMethodName();
|
|
||||||
List<String> path = findPath(startMethod, targetMethod, callGraph, new HashSet<>());
|
|
||||||
if (path != null) {
|
|
||||||
TriggerPoint resolvedTp = resolveTriggerPointParameters(tp, path, callGraph);
|
|
||||||
String contextMachineId = extractContextMachineId(path, callGraph);
|
|
||||||
chains.add(CallChain.builder()
|
|
||||||
.entryPoint(ep)
|
|
||||||
.triggerPoint(resolvedTp)
|
|
||||||
.methodChain(path)
|
|
||||||
.contextMachineId(contextMachineId)
|
|
||||||
.build());
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return chains;
|
|
||||||
}
|
|
||||||
|
|
||||||
private TriggerPoint resolveTriggerPointParameters(TriggerPoint tp, List<String> path, Map<String, List<CallEdge>> callGraph) {
|
|
||||||
if (path.size() < 2) return tp;
|
|
||||||
|
|
||||||
String event = tp.getEvent();
|
|
||||||
if (event == null || event.isEmpty() || event.contains("\"")) return tp;
|
|
||||||
|
|
||||||
String currentParamName = event;
|
|
||||||
String resolvedValue = event;
|
|
||||||
|
|
||||||
// Walk backwards up the call chain
|
|
||||||
for (int i = path.size() - 1; i > 0; i--) {
|
|
||||||
String target = path.get(i);
|
|
||||||
String caller = path.get(i - 1);
|
|
||||||
|
|
||||||
// Find parameter index in target method
|
|
||||||
int paramIndex = getParameterIndex(target, currentParamName);
|
|
||||||
if (paramIndex < 0) {
|
|
||||||
break; // Parameter name changed or not found, stop tracing
|
|
||||||
}
|
|
||||||
|
|
||||||
// Find the edge from caller to target to get the argument passed
|
|
||||||
List<CallEdge> edges = callGraph.get(caller);
|
|
||||||
boolean found = false;
|
|
||||||
if (edges != null) {
|
|
||||||
for (CallEdge edge : edges) {
|
|
||||||
if (edge.getTargetMethod().equals(target) || isHeuristicMatch(edge.getTargetMethod(), target)) {
|
|
||||||
if (paramIndex < edge.getArguments().size()) {
|
|
||||||
String arg = edge.getArguments().get(paramIndex);
|
|
||||||
if (arg != null) {
|
|
||||||
currentParamName = arg;
|
|
||||||
resolvedValue = arg;
|
|
||||||
found = true;
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
if (!found) break; // Could not map argument
|
|
||||||
}
|
|
||||||
|
|
||||||
if (!resolvedValue.equals(event)) {
|
|
||||||
return TriggerPoint.builder()
|
|
||||||
.event(resolvedValue)
|
|
||||||
.className(tp.getClassName())
|
|
||||||
.methodName(tp.getMethodName())
|
|
||||||
.sourceFile(tp.getSourceFile())
|
|
||||||
.lineNumber(tp.getLineNumber())
|
|
||||||
.build();
|
|
||||||
}
|
|
||||||
|
|
||||||
return tp;
|
|
||||||
}
|
|
||||||
|
|
||||||
private int getParameterIndex(String methodFqn, String paramName) {
|
|
||||||
if (methodFqn == null || !methodFqn.contains(".")) return -1;
|
|
||||||
String className = methodFqn.substring(0, methodFqn.lastIndexOf('.'));
|
|
||||||
String methodName = methodFqn.substring(methodFqn.lastIndexOf('.') + 1);
|
|
||||||
TypeDeclaration td = context.getTypeDeclaration(className);
|
|
||||||
if (td != null) {
|
|
||||||
MethodDeclaration md = context.findMethodDeclaration(td, methodName, true);
|
|
||||||
if (md != null) {
|
|
||||||
for (int i = 0; i < md.parameters().size(); i++) {
|
|
||||||
SingleVariableDeclaration svd = (SingleVariableDeclaration) md.parameters().get(i);
|
|
||||||
if (svd.getName().getIdentifier().equals(paramName)) {
|
|
||||||
return i;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return -1;
|
|
||||||
}
|
|
||||||
|
|
||||||
private String extractContextMachineId(List<String> path, Map<String, List<CallEdge>> callGraph) {
|
|
||||||
for (String node : path) {
|
|
||||||
List<CallEdge> edges = callGraph.get(node);
|
|
||||||
if (edges != null) {
|
|
||||||
for (CallEdge edge : edges) {
|
|
||||||
String target = edge.getTargetMethod();
|
|
||||||
if (target != null && (target.contains(".restore") || target.contains(".read"))) {
|
|
||||||
// Persister signatures usually like: restore(stateMachine, contextObj)
|
|
||||||
if (edge.getArguments().size() >= 2) {
|
|
||||||
return edge.getArguments().get(1); // The contextObj / machineId
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return null;
|
|
||||||
}
|
|
||||||
|
|
||||||
private Map<String, List<CallEdge>> buildCallGraph() {
|
|
||||||
graph = new HashMap<>();
|
|
||||||
for (CompilationUnit cu : context.getCompilationUnits()) {
|
|
||||||
cu.accept(new ASTVisitor() {
|
|
||||||
@Override
|
|
||||||
public boolean visit(MethodDeclaration node) {
|
|
||||||
TypeDeclaration td = findEnclosingType(node);
|
|
||||||
if (td != null) {
|
|
||||||
currentMethodFqn = context.getFqn(td) + "." + node.getName().getIdentifier();
|
|
||||||
}
|
|
||||||
return super.visit(node);
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public boolean visit(MethodInvocation node) {
|
|
||||||
if (currentMethodFqn != null) {
|
|
||||||
List<String> calledMethods = resolveCalledMethodsPolymorphic(node);
|
|
||||||
List<String> args = resolveArguments(node.arguments());
|
|
||||||
for (String calledMethod : calledMethods) {
|
|
||||||
graph.computeIfAbsent(currentMethodFqn, k -> new ArrayList<>()).add(new CallEdge(calledMethod, args));
|
|
||||||
}
|
|
||||||
for (Object argObj : node.arguments()) {
|
|
||||||
if (argObj instanceof ExpressionMethodReference emr) {
|
|
||||||
String typeName = emr.getExpression().toString();
|
|
||||||
if ("this".equals(typeName) || "super".equals(typeName)) {
|
|
||||||
TypeDeclaration td = findEnclosingType(node);
|
|
||||||
if (td != null) {
|
|
||||||
String refMethod = resolveMethodInType(td, emr.getName().getIdentifier());
|
|
||||||
if (refMethod != null) {
|
|
||||||
graph.computeIfAbsent(currentMethodFqn, k -> new ArrayList<>()).add(new CallEdge(refMethod, args));
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return super.visit(node);
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public boolean visit(SuperMethodInvocation node) {
|
|
||||||
if (currentMethodFqn != null) {
|
|
||||||
String methodName = node.getName().getIdentifier();
|
|
||||||
TypeDeclaration td = findEnclosingType(node);
|
|
||||||
if (td != null) {
|
|
||||||
String superFqn = context.getSuperclassFqn(td);
|
|
||||||
if (superFqn != null) {
|
|
||||||
TypeDeclaration superTd = context.getTypeDeclaration(superFqn);
|
|
||||||
String calledMethod = null;
|
|
||||||
if (superTd != null) {
|
|
||||||
calledMethod = resolveMethodInType(superTd, methodName);
|
|
||||||
}
|
|
||||||
if (calledMethod == null) {
|
|
||||||
calledMethod = superFqn + "." + methodName;
|
|
||||||
}
|
|
||||||
List<String> args = resolveArguments(node.arguments());
|
|
||||||
graph.computeIfAbsent(currentMethodFqn, k -> new ArrayList<>()).add(new CallEdge(calledMethod, args));
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return super.visit(node);
|
|
||||||
}
|
|
||||||
});
|
|
||||||
}
|
|
||||||
return graph;
|
|
||||||
}
|
|
||||||
|
|
||||||
private List<String> resolveArguments(List<?> astArguments) {
|
|
||||||
List<String> args = new ArrayList<>();
|
|
||||||
for (Object argObj : astArguments) {
|
|
||||||
Expression expr = (Expression) argObj;
|
|
||||||
|
|
||||||
// Extract from lambda
|
|
||||||
if (expr instanceof LambdaExpression le) {
|
|
||||||
ASTNode body = le.getBody();
|
|
||||||
if (body instanceof Expression bodyExpr) {
|
|
||||||
expr = bodyExpr;
|
|
||||||
} else if (body instanceof Block block) {
|
|
||||||
for (Object stmtObj : block.statements()) {
|
|
||||||
if (stmtObj instanceof ReturnStatement rs && rs.getExpression() != null) {
|
|
||||||
expr = rs.getExpression();
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
if (expr instanceof ExpressionMethodReference emr) {
|
|
||||||
TypeDeclaration td = findEnclosingType(expr);
|
|
||||||
if (td != null) {
|
|
||||||
MethodDeclaration md = context.findMethodDeclaration(td, emr.getName().getIdentifier(), true);
|
|
||||||
if (md != null && md.getBody() != null) {
|
|
||||||
for (Object stmtObj : md.getBody().statements()) {
|
|
||||||
if (stmtObj instanceof ReturnStatement rs && rs.getExpression() != null) {
|
|
||||||
expr = rs.getExpression();
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// Extract from constructor args (e.g., new CustomMessage(OrderEvent.PROCESS, ...))
|
|
||||||
expr = traceVariable(expr);
|
|
||||||
if (expr instanceof ClassInstanceCreation cic) {
|
|
||||||
if (!cic.arguments().isEmpty()) {
|
|
||||||
expr = (Expression) cic.arguments().get(0);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
String val = constantResolver.resolve(expr, context);
|
|
||||||
if (val == null) {
|
|
||||||
val = expr.toString(); // Fallback to raw string (handles Enums, 'new Class()', etc)
|
|
||||||
}
|
|
||||||
args.add(val);
|
|
||||||
}
|
|
||||||
return args;
|
|
||||||
}
|
|
||||||
|
|
||||||
private List<String> resolveCalledMethodsPolymorphic(MethodInvocation node) {
|
|
||||||
String baseCalled = resolveCalledMethod(node);
|
|
||||||
if (baseCalled == null) return Collections.emptyList();
|
|
||||||
|
|
||||||
List<String> allResolved = new ArrayList<>();
|
|
||||||
allResolved.add(baseCalled);
|
|
||||||
|
|
||||||
if (baseCalled.contains(".")) {
|
|
||||||
String className = baseCalled.substring(0, baseCalled.lastIndexOf('.'));
|
|
||||||
String methodName = baseCalled.substring(baseCalled.lastIndexOf('.') + 1);
|
|
||||||
|
|
||||||
List<String> impls = context.getImplementations(className);
|
|
||||||
for (String impl : impls) {
|
|
||||||
allResolved.add(impl + "." + methodName);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
return allResolved;
|
|
||||||
}
|
|
||||||
|
|
||||||
private String resolveCalledMethod(MethodInvocation node) {
|
|
||||||
Expression receiver = node.getExpression();
|
|
||||||
String methodName = node.getName().getIdentifier();
|
|
||||||
|
|
||||||
if (receiver == null) {
|
|
||||||
TypeDeclaration td = findEnclosingType(node);
|
|
||||||
if (td != null) {
|
|
||||||
return resolveMethodInType(td, methodName);
|
|
||||||
}
|
|
||||||
return null;
|
|
||||||
}
|
|
||||||
|
|
||||||
ITypeBinding binding = receiver.resolveTypeBinding();
|
|
||||||
if (binding != null) {
|
|
||||||
return binding.getQualifiedName() + "." + methodName;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (receiver instanceof SimpleName sn) {
|
|
||||||
String receiverName = sn.getIdentifier();
|
|
||||||
return receiverName + "." + methodName;
|
|
||||||
}
|
|
||||||
|
|
||||||
return null;
|
|
||||||
}
|
|
||||||
|
|
||||||
private String resolveMethodInType(TypeDeclaration td, String methodName) {
|
|
||||||
MethodDeclaration md = context.findMethodDeclaration(td, methodName, true);
|
|
||||||
if (md != null) {
|
|
||||||
TypeDeclaration declaringTd = findEnclosingType(md);
|
|
||||||
return context.getFqn(declaringTd) + "." + methodName;
|
|
||||||
}
|
|
||||||
return null;
|
|
||||||
}
|
|
||||||
|
|
||||||
private List<String> findPath(String start, String target, Map<String, List<CallEdge>> graph, Set<String> visited) {
|
|
||||||
if (start.equals(target)) return new ArrayList<>(List.of(start));
|
|
||||||
if (!visited.add(start)) return null; // Path-scoped cycle detection
|
|
||||||
|
|
||||||
List<CallEdge> neighbors = graph.get(start);
|
|
||||||
if (neighbors != null) {
|
|
||||||
for (CallEdge edge : neighbors) {
|
|
||||||
String neighbor = edge.getTargetMethod();
|
|
||||||
if (neighbor.equals(target) || isHeuristicMatch(neighbor, target)) {
|
|
||||||
visited.remove(start);
|
|
||||||
return new ArrayList<>(List.of(start, target));
|
|
||||||
}
|
|
||||||
List<String> path = findPath(neighbor, target, graph, visited);
|
|
||||||
if (path != null) {
|
|
||||||
path.add(0, start);
|
|
||||||
visited.remove(start);
|
|
||||||
return path;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
visited.remove(start);
|
|
||||||
return null;
|
|
||||||
}
|
|
||||||
|
|
||||||
private boolean isHeuristicMatch(String neighbor, String target) {
|
|
||||||
if (target.endsWith("." + neighbor)) return true;
|
|
||||||
String simpleTarget = target.contains(".") ? target.substring(target.lastIndexOf('.') + 1) : target;
|
|
||||||
String simpleNeighbor = neighbor.contains(".") ? neighbor.substring(neighbor.lastIndexOf('.') + 1) : neighbor;
|
|
||||||
return simpleNeighbor.equals(simpleTarget);
|
|
||||||
}
|
|
||||||
|
|
||||||
private TypeDeclaration findEnclosingType(ASTNode node) {
|
|
||||||
ASTNode parent = node.getParent();
|
|
||||||
while (parent != null && !(parent instanceof TypeDeclaration)) {
|
|
||||||
parent = parent.getParent();
|
|
||||||
}
|
|
||||||
return (TypeDeclaration) parent;
|
|
||||||
}
|
|
||||||
private Expression traceVariable(Expression expr) {
|
|
||||||
if (expr instanceof SimpleName sn) {
|
|
||||||
String varName = sn.getIdentifier();
|
|
||||||
MethodDeclaration enclosingMethod = findEnclosingMethod(expr);
|
|
||||||
if (enclosingMethod != null) {
|
|
||||||
final Expression[] initializer = new Expression[1];
|
|
||||||
enclosingMethod.accept(new ASTVisitor() {
|
|
||||||
@Override
|
|
||||||
public boolean visit(VariableDeclarationFragment node) {
|
|
||||||
if (node.getName().getIdentifier().equals(varName) && node.getInitializer() != null) {
|
|
||||||
initializer[0] = node.getInitializer();
|
|
||||||
}
|
|
||||||
return super.visit(node);
|
|
||||||
}
|
|
||||||
@Override
|
|
||||||
public boolean visit(Assignment node) {
|
|
||||||
if (node.getLeftHandSide() instanceof SimpleName asn && asn.getIdentifier().equals(varName)) {
|
|
||||||
initializer[0] = node.getRightHandSide();
|
|
||||||
}
|
|
||||||
return super.visit(node);
|
|
||||||
}
|
|
||||||
});
|
|
||||||
if (initializer[0] != null) {
|
|
||||||
return traceVariable(initializer[0]);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return expr;
|
|
||||||
}
|
|
||||||
|
|
||||||
private MethodDeclaration findEnclosingMethod(ASTNode node) {
|
|
||||||
ASTNode parent = node.getParent();
|
|
||||||
while (parent != null && !(parent instanceof MethodDeclaration)) {
|
|
||||||
parent = parent.getParent();
|
|
||||||
}
|
|
||||||
return (MethodDeclaration) parent;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -0,0 +1,11 @@
|
|||||||
|
package click.kamil.springstatemachineexporter.analysis.service;
|
||||||
|
|
||||||
|
import click.kamil.springstatemachineexporter.analysis.model.CallChain;
|
||||||
|
import click.kamil.springstatemachineexporter.analysis.model.EntryPoint;
|
||||||
|
import click.kamil.springstatemachineexporter.analysis.model.TriggerPoint;
|
||||||
|
|
||||||
|
import java.util.List;
|
||||||
|
|
||||||
|
public interface CallGraphEngine {
|
||||||
|
List<CallChain> findChains(List<EntryPoint> entryPoints, List<TriggerPoint> triggers);
|
||||||
|
}
|
||||||
@@ -0,0 +1,162 @@
|
|||||||
|
package click.kamil.springstatemachineexporter.analysis.service;
|
||||||
|
|
||||||
|
import lombok.extern.slf4j.Slf4j;
|
||||||
|
|
||||||
|
import java.io.BufferedReader;
|
||||||
|
import java.io.File;
|
||||||
|
import java.io.IOException;
|
||||||
|
import java.io.InputStreamReader;
|
||||||
|
import java.nio.file.Files;
|
||||||
|
import java.nio.file.Path;
|
||||||
|
import java.util.ArrayList;
|
||||||
|
import java.util.Arrays;
|
||||||
|
import java.util.Collections;
|
||||||
|
import java.util.List;
|
||||||
|
|
||||||
|
@Slf4j
|
||||||
|
public class DynamicClasspathResolver {
|
||||||
|
|
||||||
|
public List<String> resolveClasspath(Path projectRoot) {
|
||||||
|
log.info("Attempting dynamic classpath resolution for project at {}", projectRoot);
|
||||||
|
if (projectRoot == null || !Files.exists(projectRoot)) {
|
||||||
|
return Collections.emptyList();
|
||||||
|
}
|
||||||
|
|
||||||
|
if (Files.exists(projectRoot.resolve("pom.xml"))) {
|
||||||
|
return resolveMaven(projectRoot);
|
||||||
|
} else if (Files.exists(projectRoot.resolve("build.gradle")) || Files.exists(projectRoot.resolve("build.gradle.kts"))) {
|
||||||
|
return resolveGradle(projectRoot);
|
||||||
|
}
|
||||||
|
|
||||||
|
log.info("No Maven or Gradle configuration found at {}. Proceeding without dynamic classpath.", projectRoot);
|
||||||
|
return Collections.emptyList();
|
||||||
|
}
|
||||||
|
|
||||||
|
protected List<String> resolveMaven(Path projectRoot) {
|
||||||
|
log.info("Maven project detected. Resolving dependencies...");
|
||||||
|
Path cpFile = null;
|
||||||
|
try {
|
||||||
|
cpFile = Files.createTempFile("state_machine_exporter_cp", ".txt");
|
||||||
|
String mvnCmd = getCommand(projectRoot, "mvnw", "mvn");
|
||||||
|
if (mvnCmd == null) {
|
||||||
|
log.warn("Maven executable not found.");
|
||||||
|
return Collections.emptyList();
|
||||||
|
}
|
||||||
|
|
||||||
|
ProcessBuilder pb = new ProcessBuilder(
|
||||||
|
mvnCmd,
|
||||||
|
"-q",
|
||||||
|
"dependency:build-classpath",
|
||||||
|
"-DincludeScope=compile",
|
||||||
|
"-Dmdep.outputFile=" + cpFile.toAbsolutePath().toString()
|
||||||
|
);
|
||||||
|
pb.directory(projectRoot.toFile());
|
||||||
|
|
||||||
|
runProcess(pb);
|
||||||
|
|
||||||
|
if (Files.exists(cpFile)) {
|
||||||
|
String cpString = Files.readString(cpFile).trim();
|
||||||
|
if (!cpString.isEmpty()) {
|
||||||
|
return Arrays.asList(cpString.split(File.pathSeparator));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
} catch (Exception e) {
|
||||||
|
log.error("Failed to dynamically resolve Maven classpath", e);
|
||||||
|
} finally {
|
||||||
|
if (cpFile != null) {
|
||||||
|
try {
|
||||||
|
Files.deleteIfExists(cpFile);
|
||||||
|
} catch (IOException ignored) {}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return Collections.emptyList();
|
||||||
|
}
|
||||||
|
|
||||||
|
protected List<String> resolveGradle(Path projectRoot) {
|
||||||
|
log.info("Gradle project detected. Resolving dependencies...");
|
||||||
|
Path initScript = null;
|
||||||
|
try {
|
||||||
|
initScript = Files.createTempFile("state_machine_exporter_init", ".gradle");
|
||||||
|
String gradleCmd = getCommand(projectRoot, "gradlew", "gradle");
|
||||||
|
if (gradleCmd == null) {
|
||||||
|
log.warn("Gradle executable not found.");
|
||||||
|
return Collections.emptyList();
|
||||||
|
}
|
||||||
|
|
||||||
|
String scriptContent = """
|
||||||
|
allprojects {
|
||||||
|
task smePrintClasspath {
|
||||||
|
doLast {
|
||||||
|
def cp = []
|
||||||
|
if (configurations.findByName("compileClasspath")) {
|
||||||
|
cp = configurations.compileClasspath.files
|
||||||
|
}
|
||||||
|
println "SME_CLASSPATH_MARKER:" + cp.join(File.pathSeparator)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
""";
|
||||||
|
Files.writeString(initScript, scriptContent);
|
||||||
|
|
||||||
|
ProcessBuilder pb = new ProcessBuilder(
|
||||||
|
gradleCmd,
|
||||||
|
"-q",
|
||||||
|
"-I", initScript.toAbsolutePath().toString(),
|
||||||
|
"smePrintClasspath"
|
||||||
|
);
|
||||||
|
pb.directory(projectRoot.toFile());
|
||||||
|
|
||||||
|
String output = runProcessAndGetOutput(pb);
|
||||||
|
for (String line : output.split("\\r?\\n")) {
|
||||||
|
if (line.startsWith("SME_CLASSPATH_MARKER:")) {
|
||||||
|
String cpString = line.substring("SME_CLASSPATH_MARKER:".length()).trim();
|
||||||
|
if (!cpString.isEmpty()) {
|
||||||
|
return Arrays.asList(cpString.split(File.pathSeparator));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
} catch (Exception e) {
|
||||||
|
log.error("Failed to dynamically resolve Gradle classpath", e);
|
||||||
|
} finally {
|
||||||
|
if (initScript != null) {
|
||||||
|
try {
|
||||||
|
Files.deleteIfExists(initScript);
|
||||||
|
} catch (IOException ignored) {}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return Collections.emptyList();
|
||||||
|
}
|
||||||
|
|
||||||
|
private String getCommand(Path projectRoot, String wrapper, String systemBinary) {
|
||||||
|
Path wrapperUnix = projectRoot.resolve(wrapper);
|
||||||
|
Path wrapperWin = projectRoot.resolve(wrapper + ".bat");
|
||||||
|
|
||||||
|
boolean isWin = System.getProperty("os.name").toLowerCase().contains("win");
|
||||||
|
|
||||||
|
if (isWin && Files.exists(wrapperWin)) return wrapperWin.toAbsolutePath().toString();
|
||||||
|
if (!isWin && Files.exists(wrapperUnix)) {
|
||||||
|
// Need absolute path like ./gradlew
|
||||||
|
return wrapperUnix.toAbsolutePath().toString();
|
||||||
|
}
|
||||||
|
|
||||||
|
return systemBinary;
|
||||||
|
}
|
||||||
|
|
||||||
|
protected void runProcess(ProcessBuilder pb) throws IOException, InterruptedException {
|
||||||
|
Process p = pb.start();
|
||||||
|
p.waitFor();
|
||||||
|
}
|
||||||
|
|
||||||
|
protected String runProcessAndGetOutput(ProcessBuilder pb) throws IOException, InterruptedException {
|
||||||
|
Process p = pb.start();
|
||||||
|
StringBuilder out = new StringBuilder();
|
||||||
|
try (BufferedReader br = new BufferedReader(new InputStreamReader(p.getInputStream()))) {
|
||||||
|
String line;
|
||||||
|
while ((line = br.readLine()) != null) {
|
||||||
|
out.append(line).append("\n");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
p.waitFor();
|
||||||
|
return out.toString();
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -64,7 +64,18 @@ public class GenericEventDetector {
|
|||||||
|
|
||||||
for (LibraryHint hint : hints) {
|
for (LibraryHint hint : hints) {
|
||||||
if (calledMethod.equals(hint.getMethodFqn()) || isHintMatch(calledMethod, hint.getMethodFqn())) {
|
if (calledMethod.equals(hint.getMethodFqn()) || isHintMatch(calledMethod, hint.getMethodFqn())) {
|
||||||
List<TriggerPoint> builtTriggers = buildTriggerPoints(node, cu, hint.getEvent());
|
String eventToUse = hint.getEvent();
|
||||||
|
if (eventToUse == null && hint.getEventArgumentIndex() != null) {
|
||||||
|
if (node.arguments().size() > hint.getEventArgumentIndex()) {
|
||||||
|
Expression argExpr = (Expression) node.arguments().get(hint.getEventArgumentIndex());
|
||||||
|
eventToUse = argExpr.toString();
|
||||||
|
if (hint.getEventArgumentMethod() != null && !hint.getEventArgumentMethod().isEmpty()) {
|
||||||
|
eventToUse = eventToUse + "." + hint.getEventArgumentMethod() + "()";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
List<TriggerPoint> builtTriggers = buildTriggerPoints(node, cu, eventToUse);
|
||||||
if (builtTriggers != null) {
|
if (builtTriggers != null) {
|
||||||
for (TriggerPoint trigger : builtTriggers) {
|
for (TriggerPoint trigger : builtTriggers) {
|
||||||
log.debug("Successfully built synthetic trigger point from hint: {}", trigger.getEvent());
|
log.debug("Successfully built synthetic trigger point from hint: {}", trigger.getEvent());
|
||||||
@@ -161,40 +172,97 @@ public class GenericEventDetector {
|
|||||||
}
|
}
|
||||||
|
|
||||||
private String extractSourceState(ASTNode node) {
|
private String extractSourceState(ASTNode node) {
|
||||||
ASTNode current = node.getParent();
|
ASTNode current = node;
|
||||||
while (current != null && !(current instanceof MethodDeclaration)) {
|
while (current != null && !(current instanceof MethodDeclaration)) {
|
||||||
if (current instanceof IfStatement ifStmt) {
|
ASTNode parent = current.getParent();
|
||||||
|
|
||||||
|
// 1. Direct parent is IfStatement wrapper (e.g., if (state == X) { sm.sendEvent() })
|
||||||
|
if (parent instanceof IfStatement ifStmt) {
|
||||||
|
// Only consider if our current node is in the 'then' or 'else' part, not the condition
|
||||||
|
if (ifStmt.getExpression() != current) {
|
||||||
Expression expr = ifStmt.getExpression();
|
Expression expr = ifStmt.getExpression();
|
||||||
String state = extractStateFromExpression(expr);
|
String state = extractStateFromExpression(expr);
|
||||||
if (state != null) return state;
|
if (state != null) return state;
|
||||||
} else if (current instanceof SwitchCase switchCase) {
|
|
||||||
if (!switchCase.expressions().isEmpty()) {
|
|
||||||
return getSimpleNameString((Expression) switchCase.expressions().get(0));
|
|
||||||
}
|
}
|
||||||
} else if (current instanceof SwitchStatement switchStmt) {
|
|
||||||
// If it's a switch block but we haven't hit a SwitchCase directly (AST hierarchy usually has SwitchCase as siblings of block statements)
|
|
||||||
// Actually, walking up from the node, we will hit the SwitchStatement, but we need the SwitchCase right before us in the block.
|
|
||||||
ASTNode parentBlock = current;
|
|
||||||
// It's complex to walk siblings. A simpler heuristic is to just use IfStatement and SwitchCase (if wrapped correctly).
|
|
||||||
}
|
}
|
||||||
current = current.getParent();
|
|
||||||
|
// 2. Parent is a Block or SwitchStatement: perform sibling traversal
|
||||||
|
if (parent instanceof Block block) {
|
||||||
|
String state = extractStateFromSiblings(current, block.statements());
|
||||||
|
if (state != null) return state;
|
||||||
|
} else if (parent instanceof SwitchStatement switchStmt) {
|
||||||
|
String state = extractStateFromSiblings(current, switchStmt.statements());
|
||||||
|
if (state != null) return state;
|
||||||
|
}
|
||||||
|
|
||||||
|
current = parent;
|
||||||
}
|
}
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private String extractStateFromSiblings(ASTNode currentNode, List<?> statements) {
|
||||||
|
int index = statements.indexOf(currentNode);
|
||||||
|
if (index <= 0) return null; // No previous siblings
|
||||||
|
|
||||||
|
// Walk backwards through siblings
|
||||||
|
for (int i = index - 1; i >= 0; i--) {
|
||||||
|
Object stmtObj = statements.get(i);
|
||||||
|
|
||||||
|
if (stmtObj instanceof SwitchCase switchCase) {
|
||||||
|
if (!switchCase.expressions().isEmpty()) {
|
||||||
|
return getSimpleNameString((Expression) switchCase.expressions().get(0));
|
||||||
|
}
|
||||||
|
} else if (stmtObj instanceof IfStatement ifStmt) {
|
||||||
|
// Guard clause detection: check if the 'then' block has a return/throw
|
||||||
|
if (isGuardClause(ifStmt.getThenStatement())) {
|
||||||
|
Expression expr = ifStmt.getExpression();
|
||||||
|
// If it's a guard clause, it usually checks `state != EXPECTED`, so the true state *is* EXPECTED
|
||||||
|
String state = extractStateFromExpression(expr);
|
||||||
|
if (state != null) return state;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
|
||||||
|
private boolean isGuardClause(Statement thenStatement) {
|
||||||
|
if (thenStatement instanceof ReturnStatement || thenStatement instanceof ThrowStatement) {
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
if (thenStatement instanceof Block block) {
|
||||||
|
for (Object obj : block.statements()) {
|
||||||
|
if (obj instanceof ReturnStatement || obj instanceof ThrowStatement) {
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
private String extractStateFromExpression(Expression expr) {
|
private String extractStateFromExpression(Expression expr) {
|
||||||
if (expr instanceof InfixExpression infix) {
|
if (expr instanceof InfixExpression infix) {
|
||||||
if (infix.getOperator() == InfixExpression.Operator.EQUALS) {
|
if (infix.getOperator() == InfixExpression.Operator.EQUALS || infix.getOperator() == InfixExpression.Operator.NOT_EQUALS) {
|
||||||
Expression left = infix.getLeftOperand();
|
Expression left = infix.getLeftOperand();
|
||||||
Expression right = infix.getRightOperand();
|
Expression right = infix.getRightOperand();
|
||||||
// Usually one is a method call like getState(), the other is an enum
|
|
||||||
if (left instanceof QualifiedName || left instanceof SimpleName && !(right instanceof SimpleName)) {
|
// Ignore null checks entirely
|
||||||
|
if (left instanceof NullLiteral || right instanceof NullLiteral) {
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Usually one is a method call like getState() or a variable like `state`
|
||||||
|
// and the other is the constant enum like `OrderState.PENDING` or `"PENDING"`
|
||||||
|
|
||||||
|
// If one is a QualifiedName (enum constant) or StringLiteral, it's likely the state
|
||||||
|
if (left instanceof QualifiedName || left instanceof StringLiteral || left instanceof FieldAccess) {
|
||||||
return getSimpleNameString(left);
|
return getSimpleNameString(left);
|
||||||
}
|
}
|
||||||
if (right instanceof QualifiedName || right instanceof SimpleName && !(left instanceof SimpleName)) {
|
if (right instanceof QualifiedName || right instanceof StringLiteral || right instanceof FieldAccess) {
|
||||||
return getSimpleNameString(right);
|
return getSimpleNameString(right);
|
||||||
}
|
}
|
||||||
return getSimpleNameString(right); // Fallback
|
|
||||||
|
// Fallback
|
||||||
|
return getSimpleNameString(right);
|
||||||
}
|
}
|
||||||
} else if (expr instanceof MethodInvocation mi) {
|
} else if (expr instanceof MethodInvocation mi) {
|
||||||
if ("equals".equals(mi.getName().getIdentifier()) && !mi.arguments().isEmpty()) {
|
if ("equals".equals(mi.getName().getIdentifier()) && !mi.arguments().isEmpty()) {
|
||||||
@@ -257,6 +325,10 @@ public class GenericEventDetector {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (expr instanceof ClassInstanceCreation cic) {
|
||||||
|
return cic.getType().toString();
|
||||||
|
}
|
||||||
|
|
||||||
if (!(expr instanceof MethodInvocation mi)) return null;
|
if (!(expr instanceof MethodInvocation mi)) return null;
|
||||||
|
|
||||||
// Trace back chain: MessageBuilder.withPayload(event).setHeader(...).build()
|
// Trace back chain: MessageBuilder.withPayload(event).setHeader(...).build()
|
||||||
@@ -291,7 +363,8 @@ public class GenericEventDetector {
|
|||||||
} else if (current.arguments().isEmpty() && current.getExpression() instanceof SimpleName sn) {
|
} else if (current.arguments().isEmpty() && current.getExpression() instanceof SimpleName sn) {
|
||||||
// If the event is obtained by calling a method on a provider/supplier parameter,
|
// If the event is obtained by calling a method on a provider/supplier parameter,
|
||||||
// return the provider's name so CallGraphBuilder can trace the lambda argument
|
// return the provider's name so CallGraphBuilder can trace the lambda argument
|
||||||
return sn.getIdentifier();
|
String traced = extractEventFromMessageBuilder(sn);
|
||||||
|
return traced != null ? traced : sn.getIdentifier();
|
||||||
}
|
}
|
||||||
|
|
||||||
Expression receiver = current.getExpression();
|
Expression receiver = current.getExpression();
|
||||||
|
|||||||
@@ -0,0 +1,320 @@
|
|||||||
|
package click.kamil.springstatemachineexporter.analysis.service;
|
||||||
|
|
||||||
|
import click.kamil.springstatemachineexporter.analysis.model.CallChain;
|
||||||
|
import click.kamil.springstatemachineexporter.analysis.model.CallEdge;
|
||||||
|
import click.kamil.springstatemachineexporter.analysis.model.EntryPoint;
|
||||||
|
import click.kamil.springstatemachineexporter.analysis.model.TriggerPoint;
|
||||||
|
import click.kamil.springstatemachineexporter.ast.common.CodebaseContext;
|
||||||
|
import click.kamil.springstatemachineexporter.analysis.resolver.ConstantResolver;
|
||||||
|
import lombok.extern.slf4j.Slf4j;
|
||||||
|
import org.eclipse.jdt.core.dom.*;
|
||||||
|
|
||||||
|
import java.util.*;
|
||||||
|
|
||||||
|
@Slf4j
|
||||||
|
public class HeuristicCallGraphEngine extends AbstractCallGraphEngine {
|
||||||
|
protected String currentMethodFqn;
|
||||||
|
protected Map<String, List<CallEdge>> graph;
|
||||||
|
|
||||||
|
public HeuristicCallGraphEngine(CodebaseContext context) {
|
||||||
|
super(context);
|
||||||
|
}
|
||||||
|
|
||||||
|
protected Map<String, List<CallEdge>> buildCallGraph() {
|
||||||
|
graph = new HashMap<>();
|
||||||
|
for (CompilationUnit cu : context.getCompilationUnits()) {
|
||||||
|
cu.accept(new ASTVisitor() {
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public boolean visit(MethodInvocation node) {
|
||||||
|
MethodDeclaration md = findEnclosingMethod(node);
|
||||||
|
if (md != null) {
|
||||||
|
TypeDeclaration td = findEnclosingType(md);
|
||||||
|
if (td != null) {
|
||||||
|
String currentMethodFqn = context.getFqn(td) + "." + md.getName().getIdentifier();
|
||||||
|
List<String> calledMethods = resolveCalledMethodsPolymorphic(node);
|
||||||
|
List<String> args = resolveArguments(node.arguments());
|
||||||
|
for (String calledMethod : calledMethods) {
|
||||||
|
graph.computeIfAbsent(currentMethodFqn, k -> new ArrayList<>()).add(new CallEdge(calledMethod, args));
|
||||||
|
}
|
||||||
|
for (Object argObj : node.arguments()) {
|
||||||
|
if (argObj instanceof ExpressionMethodReference emr) {
|
||||||
|
String typeName = emr.getExpression().toString();
|
||||||
|
if ("this".equals(typeName) || "super".equals(typeName)) {
|
||||||
|
TypeDeclaration td2 = findEnclosingType(node);
|
||||||
|
if (td2 != null) {
|
||||||
|
String refMethod = resolveMethodInType(td2, emr.getName().getIdentifier());
|
||||||
|
if (refMethod != null) {
|
||||||
|
List<String> implicitArgs = new ArrayList<>();
|
||||||
|
if (click.kamil.springstatemachineexporter.ast.common.AstUtils.isFunctionalCollectionMethod(node)) {
|
||||||
|
implicitArgs.add(node.getExpression().toString());
|
||||||
|
} else {
|
||||||
|
implicitArgs.addAll(args);
|
||||||
|
}
|
||||||
|
graph.computeIfAbsent(currentMethodFqn, k -> new ArrayList<>()).add(new CallEdge(refMethod, implicitArgs));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
String fallbackTypeFqn = null;
|
||||||
|
ITypeBinding binding = emr.getExpression().resolveTypeBinding();
|
||||||
|
if (binding != null) {
|
||||||
|
fallbackTypeFqn = binding.getQualifiedName();
|
||||||
|
} else if (emr.getExpression() instanceof SimpleName sn) {
|
||||||
|
fallbackTypeFqn = resolveReceiverTypeFallback(sn);
|
||||||
|
}
|
||||||
|
if (fallbackTypeFqn != null) {
|
||||||
|
String calledMethod = fallbackTypeFqn + "." + emr.getName().getIdentifier();
|
||||||
|
List<String> implicitArgs = new ArrayList<>();
|
||||||
|
if (click.kamil.springstatemachineexporter.ast.common.AstUtils.isFunctionalCollectionMethod(node)) {
|
||||||
|
implicitArgs.add(node.getExpression().toString());
|
||||||
|
} else {
|
||||||
|
implicitArgs.addAll(args);
|
||||||
|
}
|
||||||
|
graph.computeIfAbsent(currentMethodFqn, k -> new ArrayList<>()).add(new CallEdge(calledMethod, implicitArgs));
|
||||||
|
|
||||||
|
List<String> impls = context.getImplementations(fallbackTypeFqn);
|
||||||
|
for (String impl : impls) {
|
||||||
|
graph.computeIfAbsent(currentMethodFqn, k -> new ArrayList<>()).add(new CallEdge(impl + "." + emr.getName().getIdentifier(), args));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return super.visit(node);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public boolean visit(SuperMethodInvocation node) {
|
||||||
|
MethodDeclaration md = findEnclosingMethod(node);
|
||||||
|
if (md != null) {
|
||||||
|
TypeDeclaration tdOuter = findEnclosingType(md);
|
||||||
|
if (tdOuter != null) {
|
||||||
|
String currentMethodFqn = context.getFqn(tdOuter) + "." + md.getName().getIdentifier();
|
||||||
|
String methodName = node.getName().getIdentifier();
|
||||||
|
TypeDeclaration td = findEnclosingType(node);
|
||||||
|
if (td != null) {
|
||||||
|
String superFqn = context.getSuperclassFqn(td);
|
||||||
|
if (superFqn != null) {
|
||||||
|
TypeDeclaration superTd = context.getTypeDeclaration(superFqn);
|
||||||
|
String calledMethod = null;
|
||||||
|
if (superTd != null) {
|
||||||
|
calledMethod = resolveMethodInType(superTd, methodName);
|
||||||
|
}
|
||||||
|
if (calledMethod == null) {
|
||||||
|
calledMethod = superFqn + "." + methodName;
|
||||||
|
}
|
||||||
|
List<String> args = resolveArguments(node.arguments());
|
||||||
|
graph.computeIfAbsent(currentMethodFqn, k -> new ArrayList<>()).add(new CallEdge(calledMethod, args));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return super.visit(node);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
return graph;
|
||||||
|
}
|
||||||
|
|
||||||
|
protected List<String> resolveArguments(List<?> astArguments) {
|
||||||
|
List<String> args = new ArrayList<>();
|
||||||
|
for (Object argObj : astArguments) {
|
||||||
|
Expression expr = (Expression) argObj;
|
||||||
|
|
||||||
|
// Extract from lambda
|
||||||
|
if (expr instanceof LambdaExpression le) {
|
||||||
|
ASTNode body = le.getBody();
|
||||||
|
if (body instanceof Expression bodyExpr) {
|
||||||
|
expr = bodyExpr;
|
||||||
|
} else if (body instanceof Block block) {
|
||||||
|
for (Object stmtObj : block.statements()) {
|
||||||
|
if (stmtObj instanceof ReturnStatement rs && rs.getExpression() != null) {
|
||||||
|
expr = rs.getExpression();
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if (expr instanceof ExpressionMethodReference emr) {
|
||||||
|
TypeDeclaration td = findEnclosingType(expr);
|
||||||
|
if (td != null) {
|
||||||
|
MethodDeclaration md = context.findMethodDeclaration(td, emr.getName().getIdentifier(), true);
|
||||||
|
if (md != null && md.getBody() != null) {
|
||||||
|
for (Object stmtObj : md.getBody().statements()) {
|
||||||
|
if (stmtObj instanceof ReturnStatement rs && rs.getExpression() != null) {
|
||||||
|
expr = rs.getExpression();
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Removed eager tracing here to allow dynamic tracing in resolveTriggerPointParameters
|
||||||
|
|
||||||
|
if (expr instanceof ClassInstanceCreation cic && !cic.arguments().isEmpty()) {
|
||||||
|
Expression firstArg = (Expression) cic.arguments().get(0);
|
||||||
|
String resolved = constantResolver.resolve(firstArg, context);
|
||||||
|
if (resolved != null) {
|
||||||
|
expr = firstArg; // Only unwrap if it's actually a constant
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
String val = constantResolver.resolve(expr, context);
|
||||||
|
if (val == null) {
|
||||||
|
val = expr.toString(); // Fallback to raw string (handles Enums, 'new Class()', etc)
|
||||||
|
}
|
||||||
|
args.add(val);
|
||||||
|
}
|
||||||
|
System.out.println("DEBUG resolveArguments: " + args);
|
||||||
|
return args;
|
||||||
|
}
|
||||||
|
|
||||||
|
protected List<String> resolveCalledMethodsPolymorphic(MethodInvocation node) {
|
||||||
|
String baseCalled = resolveCalledMethod(node);
|
||||||
|
if (baseCalled == null) return Collections.emptyList();
|
||||||
|
|
||||||
|
List<String> allResolved = new ArrayList<>();
|
||||||
|
allResolved.add(baseCalled);
|
||||||
|
|
||||||
|
if (baseCalled.contains(".")) {
|
||||||
|
String className = baseCalled.substring(0, baseCalled.lastIndexOf('.'));
|
||||||
|
String methodName = baseCalled.substring(baseCalled.lastIndexOf('.') + 1);
|
||||||
|
|
||||||
|
List<String> impls = context.getImplementations(className);
|
||||||
|
for (String impl : impls) {
|
||||||
|
allResolved.add(impl + "." + methodName);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return allResolved;
|
||||||
|
}
|
||||||
|
|
||||||
|
protected String resolveCalledMethod(MethodInvocation node) {
|
||||||
|
Expression receiver = node.getExpression();
|
||||||
|
String methodName = node.getName().getIdentifier();
|
||||||
|
|
||||||
|
if (receiver == null) {
|
||||||
|
TypeDeclaration td = findEnclosingType(node);
|
||||||
|
if (td != null) {
|
||||||
|
return resolveMethodInType(td, methodName);
|
||||||
|
}
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
|
||||||
|
ITypeBinding binding = receiver.resolveTypeBinding();
|
||||||
|
if (binding != null) {
|
||||||
|
return binding.getQualifiedName() + "." + methodName;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (receiver instanceof ThisExpression) {
|
||||||
|
TypeDeclaration td = findEnclosingType(node);
|
||||||
|
if (td != null) {
|
||||||
|
return context.getFqn(td) + "." + methodName;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if (receiver instanceof SimpleName sn) {
|
||||||
|
String fallbackTypeFqn = resolveReceiverTypeFallback(sn);
|
||||||
|
if (fallbackTypeFqn != null) {
|
||||||
|
return fallbackTypeFqn + "." + methodName;
|
||||||
|
}
|
||||||
|
String receiverName = sn.getIdentifier();
|
||||||
|
return receiverName + "." + methodName;
|
||||||
|
}
|
||||||
|
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
|
||||||
|
protected String resolveReceiverTypeFallback(SimpleName receiverNameNode) {
|
||||||
|
String varName = receiverNameNode.getIdentifier();
|
||||||
|
|
||||||
|
// 1. Check local variables in enclosing method
|
||||||
|
MethodDeclaration enclosingMethod = findEnclosingMethod(receiverNameNode);
|
||||||
|
if (enclosingMethod != null) {
|
||||||
|
// Check parameters
|
||||||
|
for (Object paramObj : enclosingMethod.parameters()) {
|
||||||
|
SingleVariableDeclaration svd = (SingleVariableDeclaration) paramObj;
|
||||||
|
if (svd.getName().getIdentifier().equals(varName)) {
|
||||||
|
return resolveTypeToFqn(svd.getType(), receiverNameNode);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
// Check method body (local variables)
|
||||||
|
if (enclosingMethod.getBody() != null) {
|
||||||
|
Type[] foundType = new Type[1];
|
||||||
|
enclosingMethod.getBody().accept(new ASTVisitor() {
|
||||||
|
@Override
|
||||||
|
public boolean visit(VariableDeclarationStatement node) {
|
||||||
|
for (Object fragObj : node.fragments()) {
|
||||||
|
VariableDeclarationFragment frag = (VariableDeclarationFragment) fragObj;
|
||||||
|
if (frag.getName().getIdentifier().equals(varName)) {
|
||||||
|
foundType[0] = node.getType();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return super.visit(node);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
if (foundType[0] != null) {
|
||||||
|
return resolveTypeToFqn(foundType[0], receiverNameNode);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// 2. Check fields in enclosing class
|
||||||
|
TypeDeclaration enclosingType = findEnclosingType(receiverNameNode);
|
||||||
|
if (enclosingType != null) {
|
||||||
|
for (FieldDeclaration field : enclosingType.getFields()) {
|
||||||
|
for (Object fragObj : field.fragments()) {
|
||||||
|
VariableDeclarationFragment frag = (VariableDeclarationFragment) fragObj;
|
||||||
|
if (frag.getName().getIdentifier().equals(varName)) {
|
||||||
|
return resolveTypeToFqn(field.getType(), receiverNameNode);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
|
||||||
|
protected String resolveTypeToFqn(Type type, ASTNode contextNode) {
|
||||||
|
if (type == null) return null;
|
||||||
|
String simpleName;
|
||||||
|
if (type.isSimpleType()) {
|
||||||
|
simpleName = ((SimpleType) type).getName().getFullyQualifiedName();
|
||||||
|
} else if (type.isParameterizedType()) {
|
||||||
|
return resolveTypeToFqn(((ParameterizedType) type).getType(), contextNode);
|
||||||
|
} else {
|
||||||
|
simpleName = type.toString();
|
||||||
|
}
|
||||||
|
|
||||||
|
CompilationUnit cu = (CompilationUnit) contextNode.getRoot();
|
||||||
|
TypeDeclaration td = context.getTypeDeclaration(simpleName, cu);
|
||||||
|
if (td != null) {
|
||||||
|
return context.getFqn(td);
|
||||||
|
}
|
||||||
|
|
||||||
|
// Fallback to import matching if CodebaseContext doesn't know it (e.g., external library)
|
||||||
|
for (Object impObj : cu.imports()) {
|
||||||
|
ImportDeclaration imp = (ImportDeclaration) impObj;
|
||||||
|
String impName = imp.getName().getFullyQualifiedName();
|
||||||
|
if (impName.endsWith("." + simpleName)) {
|
||||||
|
return impName;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return simpleName;
|
||||||
|
}
|
||||||
|
|
||||||
|
protected String resolveMethodInType(TypeDeclaration td, String methodName) {
|
||||||
|
MethodDeclaration md = context.findMethodDeclaration(td, methodName, true);
|
||||||
|
if (md != null) {
|
||||||
|
TypeDeclaration declaringTd = findEnclosingType(md);
|
||||||
|
return context.getFqn(declaringTd) + "." + methodName;
|
||||||
|
}
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
@@ -0,0 +1,372 @@
|
|||||||
|
package click.kamil.springstatemachineexporter.analysis.service;
|
||||||
|
|
||||||
|
import click.kamil.springstatemachineexporter.analysis.model.CallChain;
|
||||||
|
import click.kamil.springstatemachineexporter.analysis.model.CallEdge;
|
||||||
|
import click.kamil.springstatemachineexporter.analysis.model.EntryPoint;
|
||||||
|
import click.kamil.springstatemachineexporter.analysis.model.TriggerPoint;
|
||||||
|
import click.kamil.springstatemachineexporter.ast.common.CodebaseContext;
|
||||||
|
import click.kamil.springstatemachineexporter.analysis.resolver.ConstantResolver;
|
||||||
|
import lombok.extern.slf4j.Slf4j;
|
||||||
|
import org.eclipse.jdt.core.dom.*;
|
||||||
|
|
||||||
|
import java.util.*;
|
||||||
|
|
||||||
|
import click.kamil.springstatemachineexporter.analysis.spring.InjectionPointAnalyzer;
|
||||||
|
|
||||||
|
@Slf4j
|
||||||
|
public class JdtCallGraphEngine extends AbstractCallGraphEngine {
|
||||||
|
private final InjectionPointAnalyzer injectionAnalyzer;
|
||||||
|
private String currentMethodFqn;
|
||||||
|
private Map<String, List<CallEdge>> graph;
|
||||||
|
|
||||||
|
public JdtCallGraphEngine(CodebaseContext context, InjectionPointAnalyzer injectionAnalyzer) {
|
||||||
|
super(context);
|
||||||
|
this.injectionAnalyzer = injectionAnalyzer;
|
||||||
|
}
|
||||||
|
|
||||||
|
protected Map<String, List<CallEdge>> buildCallGraph() {
|
||||||
|
graph = new HashMap<>();
|
||||||
|
for (CompilationUnit cu : context.getCompilationUnits()) {
|
||||||
|
cu.accept(new ASTVisitor() {
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public boolean visit(MethodInvocation node) {
|
||||||
|
MethodDeclaration md = findEnclosingMethod(node);
|
||||||
|
if (md != null) {
|
||||||
|
TypeDeclaration td = findEnclosingType(md);
|
||||||
|
if (td != null) {
|
||||||
|
String currentMethodFqn = context.getFqn(td) + "." + md.getName().getIdentifier();
|
||||||
|
List<String> calledMethods = resolveCalledMethodsPolymorphic(node);
|
||||||
|
List<String> args = resolveArguments(node.arguments());
|
||||||
|
for (String calledMethod : calledMethods) {
|
||||||
|
graph.computeIfAbsent(currentMethodFqn, k -> new ArrayList<>()).add(new CallEdge(calledMethod, args));
|
||||||
|
}
|
||||||
|
for (Object argObj : node.arguments()) {
|
||||||
|
if (argObj instanceof ExpressionMethodReference emr) {
|
||||||
|
String typeName = emr.getExpression().toString();
|
||||||
|
if ("this".equals(typeName) || "super".equals(typeName)) {
|
||||||
|
TypeDeclaration td2 = findEnclosingType(node);
|
||||||
|
if (td2 != null) {
|
||||||
|
String refMethod = resolveMethodInType(td2, emr.getName().getIdentifier());
|
||||||
|
if (refMethod != null) {
|
||||||
|
List<String> implicitArgs = new ArrayList<>();
|
||||||
|
if (click.kamil.springstatemachineexporter.ast.common.AstUtils.isFunctionalCollectionMethod(node)) {
|
||||||
|
implicitArgs.add(node.getExpression().toString());
|
||||||
|
} else {
|
||||||
|
implicitArgs.addAll(args);
|
||||||
|
}
|
||||||
|
graph.computeIfAbsent(currentMethodFqn, k -> new ArrayList<>()).add(new CallEdge(refMethod, implicitArgs));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
String fallbackTypeFqn = null;
|
||||||
|
ITypeBinding binding = emr.getExpression().resolveTypeBinding();
|
||||||
|
if (binding != null) {
|
||||||
|
fallbackTypeFqn = binding.getQualifiedName();
|
||||||
|
} else if (emr.getExpression() instanceof SimpleName sn) {
|
||||||
|
fallbackTypeFqn = resolveReceiverTypeFallback(sn);
|
||||||
|
}
|
||||||
|
if (fallbackTypeFqn != null) {
|
||||||
|
String calledMethod = fallbackTypeFqn + "." + emr.getName().getIdentifier();
|
||||||
|
List<String> implicitArgs = new ArrayList<>();
|
||||||
|
if (click.kamil.springstatemachineexporter.ast.common.AstUtils.isFunctionalCollectionMethod(node)) {
|
||||||
|
implicitArgs.add(node.getExpression().toString());
|
||||||
|
} else {
|
||||||
|
implicitArgs.addAll(args);
|
||||||
|
}
|
||||||
|
graph.computeIfAbsent(currentMethodFqn, k -> new ArrayList<>()).add(new CallEdge(calledMethod, implicitArgs));
|
||||||
|
|
||||||
|
List<String> impls = context.getImplementations(fallbackTypeFqn);
|
||||||
|
for (String impl : impls) {
|
||||||
|
graph.computeIfAbsent(currentMethodFqn, k -> new ArrayList<>()).add(new CallEdge(impl + "." + emr.getName().getIdentifier(), args));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return super.visit(node);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public boolean visit(SuperMethodInvocation node) {
|
||||||
|
MethodDeclaration md = findEnclosingMethod(node);
|
||||||
|
if (md != null) {
|
||||||
|
TypeDeclaration tdOuter = findEnclosingType(md);
|
||||||
|
if (tdOuter != null) {
|
||||||
|
String currentMethodFqn = context.getFqn(tdOuter) + "." + md.getName().getIdentifier();
|
||||||
|
String methodName = node.getName().getIdentifier();
|
||||||
|
TypeDeclaration td = findEnclosingType(node);
|
||||||
|
if (td != null) {
|
||||||
|
String superFqn = context.getSuperclassFqn(td);
|
||||||
|
if (superFqn != null) {
|
||||||
|
TypeDeclaration superTd = context.getTypeDeclaration(superFqn);
|
||||||
|
String calledMethod = null;
|
||||||
|
if (superTd != null) {
|
||||||
|
calledMethod = resolveMethodInType(superTd, methodName);
|
||||||
|
}
|
||||||
|
if (calledMethod == null) {
|
||||||
|
calledMethod = superFqn + "." + methodName;
|
||||||
|
}
|
||||||
|
List<String> args = resolveArguments(node.arguments());
|
||||||
|
graph.computeIfAbsent(currentMethodFqn, k -> new ArrayList<>()).add(new CallEdge(calledMethod, args));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return super.visit(node);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
return graph;
|
||||||
|
}
|
||||||
|
|
||||||
|
private List<String> resolveArguments(List<?> astArguments) {
|
||||||
|
List<String> args = new ArrayList<>();
|
||||||
|
for (Object argObj : astArguments) {
|
||||||
|
Expression expr = (Expression) argObj;
|
||||||
|
|
||||||
|
// Extract from lambda
|
||||||
|
if (expr instanceof LambdaExpression le) {
|
||||||
|
ASTNode body = le.getBody();
|
||||||
|
if (body instanceof Expression bodyExpr) {
|
||||||
|
expr = bodyExpr;
|
||||||
|
} else if (body instanceof Block block) {
|
||||||
|
for (Object stmtObj : block.statements()) {
|
||||||
|
if (stmtObj instanceof ReturnStatement rs && rs.getExpression() != null) {
|
||||||
|
expr = rs.getExpression();
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if (expr instanceof ExpressionMethodReference emr) {
|
||||||
|
TypeDeclaration td = findEnclosingType(expr);
|
||||||
|
if (td != null) {
|
||||||
|
MethodDeclaration md = context.findMethodDeclaration(td, emr.getName().getIdentifier(), true);
|
||||||
|
if (md != null && md.getBody() != null) {
|
||||||
|
for (Object stmtObj : md.getBody().statements()) {
|
||||||
|
if (stmtObj instanceof ReturnStatement rs && rs.getExpression() != null) {
|
||||||
|
expr = rs.getExpression();
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Extract from constructor args (e.g., new CustomMessage(OrderEvent.PROCESS, ...))
|
||||||
|
Expression tracedExpr = traceVariable(expr);
|
||||||
|
if (tracedExpr instanceof QualifiedName || tracedExpr instanceof ClassInstanceCreation || tracedExpr instanceof StringLiteral || tracedExpr instanceof NumberLiteral) {
|
||||||
|
expr = tracedExpr; // Only accept trace if it resolves to a pure constant/primitive/constructor
|
||||||
|
}
|
||||||
|
|
||||||
|
if (expr instanceof ClassInstanceCreation cic && !cic.arguments().isEmpty()) {
|
||||||
|
Expression firstArg = (Expression) cic.arguments().get(0);
|
||||||
|
String resolved = constantResolver.resolve(firstArg, context);
|
||||||
|
if (resolved != null) {
|
||||||
|
expr = firstArg; // Only unwrap if it's actually a constant
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
String val = constantResolver.resolve(expr, context);
|
||||||
|
if (val == null) {
|
||||||
|
val = expr.toString(); // Fallback to raw string (handles Enums, 'new Class()', etc)
|
||||||
|
}
|
||||||
|
args.add(val);
|
||||||
|
}
|
||||||
|
return args;
|
||||||
|
}
|
||||||
|
|
||||||
|
private List<String> resolveCalledMethodsPolymorphic(MethodInvocation node) {
|
||||||
|
String baseCalled = resolveCalledMethod(node);
|
||||||
|
if (baseCalled == null) return Collections.emptyList();
|
||||||
|
|
||||||
|
List<String> allResolved = new ArrayList<>();
|
||||||
|
allResolved.add(baseCalled);
|
||||||
|
|
||||||
|
if (baseCalled.contains(".")) {
|
||||||
|
String className = baseCalled.substring(0, baseCalled.lastIndexOf('.'));
|
||||||
|
String methodName = baseCalled.substring(baseCalled.lastIndexOf('.') + 1);
|
||||||
|
|
||||||
|
List<String> impls = context.getImplementations(className);
|
||||||
|
for (String impl : impls) {
|
||||||
|
allResolved.add(impl + "." + methodName);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return allResolved;
|
||||||
|
}
|
||||||
|
|
||||||
|
protected String resolveCalledMethod(MethodInvocation node) {
|
||||||
|
Expression receiver = node.getExpression();
|
||||||
|
String methodName = node.getName().getIdentifier();
|
||||||
|
|
||||||
|
if (receiver == null) {
|
||||||
|
TypeDeclaration td = findEnclosingType(node);
|
||||||
|
if (td != null) {
|
||||||
|
return resolveMethodInType(td, methodName);
|
||||||
|
}
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (injectionAnalyzer != null) {
|
||||||
|
IBinding nameBinding = null;
|
||||||
|
if (receiver instanceof SimpleName sn) {
|
||||||
|
nameBinding = sn.resolveBinding();
|
||||||
|
} else if (receiver instanceof FieldAccess fa) {
|
||||||
|
nameBinding = fa.resolveFieldBinding();
|
||||||
|
}
|
||||||
|
if (nameBinding instanceof IVariableBinding varBinding) {
|
||||||
|
System.out.println("CALLGRAPH RESOLVING BEAN FOR BINDING: " + varBinding.getName() + " calling " + methodName);
|
||||||
|
String concreteFqn = injectionAnalyzer.resolveInjectedBeanFqn(varBinding);
|
||||||
|
if (concreteFqn != null) {
|
||||||
|
System.out.println(" -> RESOLVED CONCRETE FQN: " + concreteFqn);
|
||||||
|
return concreteFqn + "." + methodName;
|
||||||
|
} else {
|
||||||
|
System.out.println(" -> RESOLVE FAILED, RETURNED NULL");
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
System.out.println("CALLGRAPH NAME BINDING IS NOT VARIABLE: " + nameBinding + " calling " + methodName);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
ITypeBinding binding = receiver.resolveTypeBinding();
|
||||||
|
if (binding != null) {
|
||||||
|
String typeName = null;
|
||||||
|
try {
|
||||||
|
if (binding.getErasure() != null) {
|
||||||
|
typeName = binding.getErasure().getQualifiedName();
|
||||||
|
if (typeName == null || typeName.isEmpty()) {
|
||||||
|
typeName = binding.getErasure().getName();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
} catch (Exception e) {
|
||||||
|
// Ignore JDT internal exceptions
|
||||||
|
}
|
||||||
|
|
||||||
|
if (typeName == null || typeName.isEmpty()) {
|
||||||
|
typeName = binding.getQualifiedName();
|
||||||
|
if (typeName == null || typeName.isEmpty()) {
|
||||||
|
typeName = binding.getName();
|
||||||
|
}
|
||||||
|
if (typeName != null && typeName.contains("<")) {
|
||||||
|
typeName = typeName.replaceAll("<.*>", "");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if (typeName != null && !typeName.isEmpty()) {
|
||||||
|
return typeName + "." + methodName;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if (receiver instanceof ThisExpression) {
|
||||||
|
TypeDeclaration td = findEnclosingType(node);
|
||||||
|
if (td != null) {
|
||||||
|
return context.getFqn(td) + "." + methodName;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if (receiver instanceof SimpleName sn) {
|
||||||
|
String fallbackTypeFqn = resolveReceiverTypeFallback(sn);
|
||||||
|
if (fallbackTypeFqn != null) {
|
||||||
|
return fallbackTypeFqn + "." + methodName;
|
||||||
|
}
|
||||||
|
String receiverName = sn.getIdentifier();
|
||||||
|
return receiverName + "." + methodName;
|
||||||
|
}
|
||||||
|
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
|
||||||
|
private String resolveReceiverTypeFallback(SimpleName receiverNameNode) {
|
||||||
|
String varName = receiverNameNode.getIdentifier();
|
||||||
|
|
||||||
|
// 1. Check local variables in enclosing method
|
||||||
|
MethodDeclaration enclosingMethod = findEnclosingMethod(receiverNameNode);
|
||||||
|
if (enclosingMethod != null) {
|
||||||
|
// Check parameters
|
||||||
|
for (Object paramObj : enclosingMethod.parameters()) {
|
||||||
|
SingleVariableDeclaration svd = (SingleVariableDeclaration) paramObj;
|
||||||
|
if (svd.getName().getIdentifier().equals(varName)) {
|
||||||
|
return resolveTypeToFqn(svd.getType(), receiverNameNode);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
// Check method body (local variables)
|
||||||
|
if (enclosingMethod.getBody() != null) {
|
||||||
|
Type[] foundType = new Type[1];
|
||||||
|
enclosingMethod.getBody().accept(new ASTVisitor() {
|
||||||
|
@Override
|
||||||
|
public boolean visit(VariableDeclarationStatement node) {
|
||||||
|
for (Object fragObj : node.fragments()) {
|
||||||
|
VariableDeclarationFragment frag = (VariableDeclarationFragment) fragObj;
|
||||||
|
if (frag.getName().getIdentifier().equals(varName)) {
|
||||||
|
foundType[0] = node.getType();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return super.visit(node);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
if (foundType[0] != null) {
|
||||||
|
return resolveTypeToFqn(foundType[0], receiverNameNode);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// 2. Check fields in enclosing class
|
||||||
|
TypeDeclaration enclosingType = findEnclosingType(receiverNameNode);
|
||||||
|
if (enclosingType != null) {
|
||||||
|
for (FieldDeclaration field : enclosingType.getFields()) {
|
||||||
|
for (Object fragObj : field.fragments()) {
|
||||||
|
VariableDeclarationFragment frag = (VariableDeclarationFragment) fragObj;
|
||||||
|
if (frag.getName().getIdentifier().equals(varName)) {
|
||||||
|
return resolveTypeToFqn(field.getType(), receiverNameNode);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
|
||||||
|
private String resolveTypeToFqn(Type type, ASTNode contextNode) {
|
||||||
|
if (type == null) return null;
|
||||||
|
String simpleName;
|
||||||
|
if (type.isSimpleType()) {
|
||||||
|
simpleName = ((SimpleType) type).getName().getFullyQualifiedName();
|
||||||
|
} else if (type.isParameterizedType()) {
|
||||||
|
return resolveTypeToFqn(((ParameterizedType) type).getType(), contextNode);
|
||||||
|
} else {
|
||||||
|
simpleName = type.toString();
|
||||||
|
}
|
||||||
|
|
||||||
|
CompilationUnit cu = (CompilationUnit) contextNode.getRoot();
|
||||||
|
TypeDeclaration td = context.getTypeDeclaration(simpleName, cu);
|
||||||
|
if (td != null) {
|
||||||
|
return context.getFqn(td);
|
||||||
|
}
|
||||||
|
|
||||||
|
// Fallback to import matching if CodebaseContext doesn't know it (e.g., external library)
|
||||||
|
for (Object impObj : cu.imports()) {
|
||||||
|
ImportDeclaration imp = (ImportDeclaration) impObj;
|
||||||
|
String impName = imp.getName().getFullyQualifiedName();
|
||||||
|
if (impName.endsWith("." + simpleName)) {
|
||||||
|
return impName;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return simpleName;
|
||||||
|
}
|
||||||
|
|
||||||
|
private String resolveMethodInType(TypeDeclaration td, String methodName) {
|
||||||
|
MethodDeclaration md = context.findMethodDeclaration(td, methodName, true);
|
||||||
|
if (md != null) {
|
||||||
|
TypeDeclaration declaringTd = findEnclosingType(md);
|
||||||
|
return context.getFqn(declaringTd) + "." + methodName;
|
||||||
|
}
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
@@ -4,6 +4,10 @@ import click.kamil.springstatemachineexporter.analysis.model.CallChain;
|
|||||||
import click.kamil.springstatemachineexporter.analysis.model.EntryPoint;
|
import click.kamil.springstatemachineexporter.analysis.model.EntryPoint;
|
||||||
import click.kamil.springstatemachineexporter.analysis.model.TriggerPoint;
|
import click.kamil.springstatemachineexporter.analysis.model.TriggerPoint;
|
||||||
import click.kamil.springstatemachineexporter.analysis.resolver.ConstantResolver;
|
import click.kamil.springstatemachineexporter.analysis.resolver.ConstantResolver;
|
||||||
|
import click.kamil.springstatemachineexporter.analysis.spring.InjectionPointAnalyzer;
|
||||||
|
import click.kamil.springstatemachineexporter.analysis.spring.SpringBeanRegistry;
|
||||||
|
import click.kamil.springstatemachineexporter.analysis.spring.SpringContextScanner;
|
||||||
|
import click.kamil.springstatemachineexporter.analysis.spring.SpringDependencyResolver;
|
||||||
import click.kamil.springstatemachineexporter.ast.common.CodebaseContext;
|
import click.kamil.springstatemachineexporter.ast.common.CodebaseContext;
|
||||||
import lombok.extern.slf4j.Slf4j;
|
import lombok.extern.slf4j.Slf4j;
|
||||||
import org.eclipse.jdt.core.dom.CompilationUnit;
|
import org.eclipse.jdt.core.dom.CompilationUnit;
|
||||||
@@ -21,9 +25,10 @@ public class JdtIntelligenceProvider implements CodebaseIntelligenceProvider {
|
|||||||
private final GenericEventDetector eventDetector;
|
private final GenericEventDetector eventDetector;
|
||||||
private final SpringMvcDetector mvcDetector;
|
private final SpringMvcDetector mvcDetector;
|
||||||
private final MessagingDetector messagingDetector;
|
private final MessagingDetector messagingDetector;
|
||||||
private final CallGraphBuilder callGraphBuilder;
|
private final CallGraphEngine callGraphEngine;
|
||||||
private final LifecycleDetector lifecycleDetector;
|
private final LifecycleDetector lifecycleDetector;
|
||||||
private final InterceptorDetector interceptorDetector;
|
private final InterceptorDetector interceptorDetector;
|
||||||
|
private final SpringComponentDetector componentDetector;
|
||||||
|
|
||||||
public JdtIntelligenceProvider(CodebaseContext context, Path rootDir) {
|
public JdtIntelligenceProvider(CodebaseContext context, Path rootDir) {
|
||||||
this.context = context;
|
this.context = context;
|
||||||
@@ -31,9 +36,20 @@ public class JdtIntelligenceProvider implements CodebaseIntelligenceProvider {
|
|||||||
this.eventDetector = new GenericEventDetector(context, constantResolver, context.getLibraryHints());
|
this.eventDetector = new GenericEventDetector(context, constantResolver, context.getLibraryHints());
|
||||||
this.mvcDetector = new SpringMvcDetector(context, constantResolver);
|
this.mvcDetector = new SpringMvcDetector(context, constantResolver);
|
||||||
this.messagingDetector = new MessagingDetector(context);
|
this.messagingDetector = new MessagingDetector(context);
|
||||||
this.callGraphBuilder = new CallGraphBuilder(context);
|
|
||||||
|
SpringBeanRegistry registry = new SpringBeanRegistry();
|
||||||
|
SpringContextScanner scanner = new SpringContextScanner(registry);
|
||||||
|
for (CompilationUnit cu : context.getCompilationUnits()) {
|
||||||
|
cu.accept(scanner);
|
||||||
|
}
|
||||||
|
SpringDependencyResolver dependencyResolver = new SpringDependencyResolver(registry);
|
||||||
|
InjectionPointAnalyzer injectionAnalyzer = new InjectionPointAnalyzer(dependencyResolver);
|
||||||
|
|
||||||
|
this.callGraphEngine = new JdtCallGraphEngine(context, injectionAnalyzer);
|
||||||
|
|
||||||
this.lifecycleDetector = new LifecycleDetector(context);
|
this.lifecycleDetector = new LifecycleDetector(context);
|
||||||
this.interceptorDetector = new InterceptorDetector(context);
|
this.interceptorDetector = new InterceptorDetector(context);
|
||||||
|
this.componentDetector = new SpringComponentDetector(context);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
@@ -58,6 +74,7 @@ public class JdtIntelligenceProvider implements CodebaseIntelligenceProvider {
|
|||||||
allEntryPoints.addAll(mvcDetector.detect(cu));
|
allEntryPoints.addAll(mvcDetector.detect(cu));
|
||||||
allEntryPoints.addAll(messagingDetector.detect(cu));
|
allEntryPoints.addAll(messagingDetector.detect(cu));
|
||||||
allEntryPoints.addAll(interceptorDetector.detect(cu));
|
allEntryPoints.addAll(interceptorDetector.detect(cu));
|
||||||
|
allEntryPoints.addAll(componentDetector.detect(cu));
|
||||||
}
|
}
|
||||||
log.info("Found {} entry points (including interceptors and listeners) in total", allEntryPoints.size());
|
log.info("Found {} entry points (including interceptors and listeners) in total", allEntryPoints.size());
|
||||||
return allEntryPoints;
|
return allEntryPoints;
|
||||||
@@ -66,7 +83,7 @@ public class JdtIntelligenceProvider implements CodebaseIntelligenceProvider {
|
|||||||
@Override
|
@Override
|
||||||
public List<CallChain> findCallChains(List<EntryPoint> entryPoints, List<TriggerPoint> triggers) {
|
public List<CallChain> findCallChains(List<EntryPoint> entryPoints, List<TriggerPoint> triggers) {
|
||||||
log.info("JdtIntelligenceProvider searching for call chains between {} entry points and {} triggers", entryPoints.size(), triggers.size());
|
log.info("JdtIntelligenceProvider searching for call chains between {} entry points and {} triggers", entryPoints.size(), triggers.size());
|
||||||
return callGraphBuilder.findChains(entryPoints, triggers);
|
return callGraphEngine.findChains(entryPoints, triggers);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
|||||||
@@ -0,0 +1,117 @@
|
|||||||
|
package click.kamil.springstatemachineexporter.analysis.service;
|
||||||
|
|
||||||
|
import click.kamil.springstatemachineexporter.analysis.model.EntryPoint;
|
||||||
|
import click.kamil.springstatemachineexporter.ast.common.CodebaseContext;
|
||||||
|
import lombok.RequiredArgsConstructor;
|
||||||
|
import org.eclipse.jdt.core.dom.ASTVisitor;
|
||||||
|
import org.eclipse.jdt.core.dom.Annotation;
|
||||||
|
import org.eclipse.jdt.core.dom.CompilationUnit;
|
||||||
|
import org.eclipse.jdt.core.dom.MemberValuePair;
|
||||||
|
import org.eclipse.jdt.core.dom.MethodDeclaration;
|
||||||
|
import org.eclipse.jdt.core.dom.NormalAnnotation;
|
||||||
|
import org.eclipse.jdt.core.dom.SingleMemberAnnotation;
|
||||||
|
import org.eclipse.jdt.core.dom.TypeDeclaration;
|
||||||
|
|
||||||
|
import java.util.ArrayList;
|
||||||
|
import java.util.HashMap;
|
||||||
|
import java.util.List;
|
||||||
|
import java.util.Map;
|
||||||
|
|
||||||
|
@RequiredArgsConstructor
|
||||||
|
public class SpringComponentDetector {
|
||||||
|
private final CodebaseContext context;
|
||||||
|
|
||||||
|
public List<EntryPoint> detect(CompilationUnit cu) {
|
||||||
|
List<EntryPoint> entryPoints = new ArrayList<>();
|
||||||
|
cu.accept(new ASTVisitor() {
|
||||||
|
@Override
|
||||||
|
public boolean visit(MethodDeclaration node) {
|
||||||
|
if (!(node.getParent() instanceof TypeDeclaration)) {
|
||||||
|
return super.visit(node);
|
||||||
|
}
|
||||||
|
TypeDeclaration parentTd = (TypeDeclaration) node.getParent();
|
||||||
|
|
||||||
|
for (Object modifier : node.modifiers()) {
|
||||||
|
if (modifier instanceof Annotation annotation) {
|
||||||
|
String typeName = annotation.getTypeName().getFullyQualifiedName();
|
||||||
|
if (typeName.endsWith("Scheduled")) {
|
||||||
|
Map<String, String> meta = new HashMap<>();
|
||||||
|
String cron = extractAnnotationValue(annotation, "cron");
|
||||||
|
if (!cron.isEmpty())
|
||||||
|
meta.put("cron", cron);
|
||||||
|
String fixedRate = extractAnnotationValue(annotation, "fixedRate");
|
||||||
|
if (!fixedRate.isEmpty())
|
||||||
|
meta.put("fixedRate", fixedRate);
|
||||||
|
String fixedDelay = extractAnnotationValue(annotation, "fixedDelay");
|
||||||
|
if (!fixedDelay.isEmpty())
|
||||||
|
meta.put("fixedDelay", fixedDelay);
|
||||||
|
|
||||||
|
entryPoints.add(EntryPoint.builder()
|
||||||
|
.type(EntryPoint.Type.CUSTOM)
|
||||||
|
.name("@Scheduled: " + node.getName().getIdentifier())
|
||||||
|
.className(context.getFqn(parentTd))
|
||||||
|
.methodName(node.getName().getIdentifier())
|
||||||
|
.sourceFile(context.getRelativePath(context.getFqn(parentTd)))
|
||||||
|
.metadata(meta)
|
||||||
|
.build());
|
||||||
|
} else if (typeName.endsWith("EventListener")) {
|
||||||
|
Map<String, String> meta = new HashMap<>();
|
||||||
|
String classes = extractAnnotationValue(annotation, "classes");
|
||||||
|
if (!classes.isEmpty())
|
||||||
|
meta.put("classes", classes);
|
||||||
|
String condition = extractAnnotationValue(annotation, "condition");
|
||||||
|
if (!condition.isEmpty())
|
||||||
|
meta.put("condition", condition);
|
||||||
|
|
||||||
|
entryPoints.add(EntryPoint.builder()
|
||||||
|
.type(EntryPoint.Type.CUSTOM)
|
||||||
|
.name("@EventListener: " + node.getName().getIdentifier())
|
||||||
|
.className(context.getFqn(parentTd))
|
||||||
|
.methodName(node.getName().getIdentifier())
|
||||||
|
.sourceFile(context.getRelativePath(context.getFqn(parentTd)))
|
||||||
|
.metadata(meta)
|
||||||
|
.build());
|
||||||
|
} else if (typeName.endsWith("Around") || typeName.endsWith("Before") || typeName.endsWith("After") || typeName.endsWith("AfterReturning") || typeName.endsWith("AfterThrowing")) {
|
||||||
|
Map<String, String> meta = new HashMap<>();
|
||||||
|
String value = extractAnnotationValue(annotation, "value");
|
||||||
|
if (!value.isEmpty())
|
||||||
|
meta.put("pointcut", value);
|
||||||
|
else {
|
||||||
|
String pointcut = extractAnnotationValue(annotation, "pointcut");
|
||||||
|
if (!pointcut.isEmpty())
|
||||||
|
meta.put("pointcut", pointcut);
|
||||||
|
}
|
||||||
|
|
||||||
|
entryPoints.add(EntryPoint.builder()
|
||||||
|
.type(EntryPoint.Type.CUSTOM)
|
||||||
|
.name("@" + annotation.getTypeName().getFullyQualifiedName() + ": " + node.getName().getIdentifier())
|
||||||
|
.className(context.getFqn(parentTd))
|
||||||
|
.methodName(node.getName().getIdentifier())
|
||||||
|
.sourceFile(context.getRelativePath(context.getFqn(parentTd)))
|
||||||
|
.metadata(meta)
|
||||||
|
.build());
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return super.visit(node);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
return entryPoints;
|
||||||
|
}
|
||||||
|
|
||||||
|
private String extractAnnotationValue(Annotation annotation, String memberName) {
|
||||||
|
if (annotation instanceof SingleMemberAnnotation sma) {
|
||||||
|
if ("value".equals(memberName)) {
|
||||||
|
return sma.getValue().toString();
|
||||||
|
}
|
||||||
|
} else if (annotation instanceof NormalAnnotation na) {
|
||||||
|
for (Object pairObj : na.values()) {
|
||||||
|
MemberValuePair pair = (MemberValuePair) pairObj;
|
||||||
|
if (pair.getName().getIdentifier().equals(memberName)) {
|
||||||
|
return pair.getValue().toString();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return "";
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,93 @@
|
|||||||
|
package click.kamil.springstatemachineexporter.analysis.spring;
|
||||||
|
|
||||||
|
import org.eclipse.jdt.core.dom.IAnnotationBinding;
|
||||||
|
import org.eclipse.jdt.core.dom.IMemberValuePairBinding;
|
||||||
|
import org.eclipse.jdt.core.dom.IVariableBinding;
|
||||||
|
|
||||||
|
import java.util.List;
|
||||||
|
|
||||||
|
public class InjectionPointAnalyzer {
|
||||||
|
|
||||||
|
private final SpringDependencyResolver resolver;
|
||||||
|
|
||||||
|
public InjectionPointAnalyzer(SpringDependencyResolver resolver) {
|
||||||
|
this.resolver = resolver;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Resolves the Spring bean injected into the given variable.
|
||||||
|
*
|
||||||
|
* @param variableBinding The binding of the field or parameter being injected.
|
||||||
|
* @return The FQN of the resolved concrete bean class, or null if unresolved.
|
||||||
|
*/
|
||||||
|
public String resolveInjectedBeanFqn(IVariableBinding variableBinding) {
|
||||||
|
if (variableBinding == null || variableBinding.getType() == null) {
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
|
||||||
|
String requiredTypeFqn = variableBinding.getType().getQualifiedName();
|
||||||
|
String injectionName = variableBinding.getName();
|
||||||
|
String qualifier = extractQualifier(variableBinding);
|
||||||
|
|
||||||
|
List<SpringBean> resolvedBeans = resolver.resolve(requiredTypeFqn, qualifier, injectionName);
|
||||||
|
|
||||||
|
if (resolvedBeans != null && resolvedBeans.size() == 1) {
|
||||||
|
return resolvedBeans.get(0).getTypeFqn();
|
||||||
|
}
|
||||||
|
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
|
||||||
|
private String extractQualifier(IVariableBinding binding) {
|
||||||
|
String qualifier = getQualifierValue(binding.getAnnotations());
|
||||||
|
if (qualifier != null) {
|
||||||
|
return qualifier;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (binding.isField()) {
|
||||||
|
org.eclipse.jdt.core.dom.ITypeBinding declaringClass = binding.getDeclaringClass();
|
||||||
|
if (declaringClass != null) {
|
||||||
|
for (org.eclipse.jdt.core.dom.IMethodBinding method : declaringClass.getDeclaredMethods()) {
|
||||||
|
boolean isAutowiredMethod = false;
|
||||||
|
for (IAnnotationBinding ann : method.getAnnotations()) {
|
||||||
|
if (ann.getAnnotationType() != null && "org.springframework.beans.factory.annotation.Autowired".equals(ann.getAnnotationType().getQualifiedName())) {
|
||||||
|
isAutowiredMethod = true;
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if (method.isConstructor() || isAutowiredMethod) {
|
||||||
|
for (int i = 0; i < method.getParameterTypes().length; i++) {
|
||||||
|
org.eclipse.jdt.core.dom.ITypeBinding paramType = method.getParameterTypes()[i];
|
||||||
|
try {
|
||||||
|
IAnnotationBinding[] paramAnns = method.getParameterAnnotations(i);
|
||||||
|
String paramQual = getQualifierValue(paramAnns);
|
||||||
|
if (paramQual != null && paramType.getErasure().isEqualTo(binding.getType().getErasure())) {
|
||||||
|
// For setters, verify it roughly matches the field name or just rely on type.
|
||||||
|
// We will rely on type equality for now as a heuristic.
|
||||||
|
return paramQual;
|
||||||
|
}
|
||||||
|
} catch (Exception e) {
|
||||||
|
// Ignore
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
|
||||||
|
private String getQualifierValue(IAnnotationBinding[] annotations) {
|
||||||
|
for (IAnnotationBinding ann : annotations) {
|
||||||
|
if (ann.getAnnotationType() != null && "org.springframework.beans.factory.annotation.Qualifier".equals(ann.getAnnotationType().getQualifiedName())) {
|
||||||
|
for (IMemberValuePairBinding pair : ann.getDeclaredMemberValuePairs()) {
|
||||||
|
if ("value".equals(pair.getName()) && pair.getValue() instanceof String) {
|
||||||
|
return (String) pair.getValue();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,27 @@
|
|||||||
|
package click.kamil.springstatemachineexporter.analysis.spring;
|
||||||
|
|
||||||
|
import java.util.HashSet;
|
||||||
|
import java.util.Set;
|
||||||
|
|
||||||
|
import lombok.Builder;
|
||||||
|
import lombok.Data;
|
||||||
|
|
||||||
|
@Data
|
||||||
|
@Builder
|
||||||
|
public class SpringBean {
|
||||||
|
private String typeFqn;
|
||||||
|
|
||||||
|
@Builder.Default
|
||||||
|
private Set<String> assignableTypes = new HashSet<>();
|
||||||
|
|
||||||
|
@Builder.Default
|
||||||
|
private Set<String> beanNames = new HashSet<>();
|
||||||
|
|
||||||
|
@Builder.Default
|
||||||
|
private Set<String> qualifiers = new HashSet<>();
|
||||||
|
|
||||||
|
private boolean isPrimary;
|
||||||
|
private Integer order;
|
||||||
|
private String declaringClassFqn;
|
||||||
|
private String factoryMethodName;
|
||||||
|
}
|
||||||
@@ -0,0 +1,17 @@
|
|||||||
|
package click.kamil.springstatemachineexporter.analysis.spring;
|
||||||
|
|
||||||
|
import java.util.ArrayList;
|
||||||
|
import java.util.Collections;
|
||||||
|
import java.util.List;
|
||||||
|
|
||||||
|
public class SpringBeanRegistry {
|
||||||
|
private final List<SpringBean> beans = new ArrayList<>();
|
||||||
|
|
||||||
|
public void addBean(SpringBean bean) {
|
||||||
|
beans.add(bean);
|
||||||
|
}
|
||||||
|
|
||||||
|
public List<SpringBean> getBeans() {
|
||||||
|
return Collections.unmodifiableList(beans);
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,235 @@
|
|||||||
|
package click.kamil.springstatemachineexporter.analysis.spring;
|
||||||
|
|
||||||
|
import org.eclipse.jdt.core.dom.*;
|
||||||
|
|
||||||
|
import java.util.HashSet;
|
||||||
|
import java.util.Set;
|
||||||
|
|
||||||
|
public class SpringContextScanner extends ASTVisitor {
|
||||||
|
private final SpringBeanRegistry registry;
|
||||||
|
|
||||||
|
public SpringContextScanner(SpringBeanRegistry registry) {
|
||||||
|
this.registry = registry;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public boolean visit(TypeDeclaration node) {
|
||||||
|
ITypeBinding typeBinding = node.resolveBinding();
|
||||||
|
if (typeBinding == null) return true;
|
||||||
|
|
||||||
|
if (isSpringComponent(typeBinding)) {
|
||||||
|
SpringBean bean = SpringBean.builder()
|
||||||
|
.typeFqn(typeBinding.getQualifiedName())
|
||||||
|
.assignableTypes(getAssignableTypes(typeBinding))
|
||||||
|
.isPrimary(hasAnnotation(typeBinding, "org.springframework.context.annotation.Primary"))
|
||||||
|
.qualifiers(extractQualifiers(typeBinding))
|
||||||
|
.order(extractOrder(typeBinding))
|
||||||
|
.declaringClassFqn(typeBinding.getQualifiedName())
|
||||||
|
.build();
|
||||||
|
|
||||||
|
// Default bean name is uncapitalized simple name
|
||||||
|
String defaultName = Character.toLowerCase(node.getName().getIdentifier().charAt(0)) + node.getName().getIdentifier().substring(1);
|
||||||
|
|
||||||
|
// Check if @Component or @Service specifies a name (e.g., @Service("myService"))
|
||||||
|
String explicitName = extractStereotypeValue(typeBinding);
|
||||||
|
if (explicitName != null && !explicitName.isEmpty()) {
|
||||||
|
bean.getBeanNames().add(explicitName);
|
||||||
|
} else {
|
||||||
|
bean.getBeanNames().add(defaultName);
|
||||||
|
}
|
||||||
|
|
||||||
|
registry.addBean(bean);
|
||||||
|
}
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public boolean visit(MethodDeclaration node) {
|
||||||
|
IMethodBinding methodBinding = node.resolveBinding();
|
||||||
|
if (methodBinding == null) return true;
|
||||||
|
|
||||||
|
if (hasAnnotation(methodBinding, "org.springframework.context.annotation.Bean")) {
|
||||||
|
ITypeBinding returnType = methodBinding.getReturnType();
|
||||||
|
if (returnType != null) {
|
||||||
|
Set<String> assignables = getAssignableTypes(returnType);
|
||||||
|
String[] concreteType = new String[] { returnType.getQualifiedName() };
|
||||||
|
|
||||||
|
if (node.getBody() != null) {
|
||||||
|
node.getBody().accept(new ASTVisitor() {
|
||||||
|
@Override
|
||||||
|
public boolean visit(ReturnStatement ret) {
|
||||||
|
if (ret.getExpression() != null) {
|
||||||
|
ITypeBinding exprType = ret.getExpression().resolveTypeBinding();
|
||||||
|
if (exprType != null && exprType.isClass()) {
|
||||||
|
concreteType[0] = exprType.getQualifiedName();
|
||||||
|
assignables.addAll(getAssignableTypes(exprType));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return super.visit(ret);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
SpringBean bean = SpringBean.builder()
|
||||||
|
.typeFqn(concreteType[0])
|
||||||
|
.assignableTypes(assignables)
|
||||||
|
.isPrimary(hasAnnotation(methodBinding, "org.springframework.context.annotation.Primary"))
|
||||||
|
.qualifiers(extractQualifiers(methodBinding))
|
||||||
|
.order(extractOrder(methodBinding))
|
||||||
|
.declaringClassFqn(methodBinding.getDeclaringClass().getQualifiedName())
|
||||||
|
.factoryMethodName(node.getName().getIdentifier())
|
||||||
|
.build();
|
||||||
|
|
||||||
|
// Default bean name is method name
|
||||||
|
String defaultName = node.getName().getIdentifier();
|
||||||
|
|
||||||
|
// Check if @Bean specifies a name (e.g., @Bean("myBean"))
|
||||||
|
String explicitName = extractBeanName(methodBinding);
|
||||||
|
if (explicitName != null && !explicitName.isEmpty()) {
|
||||||
|
bean.getBeanNames().add(explicitName);
|
||||||
|
} else {
|
||||||
|
bean.getBeanNames().add(defaultName);
|
||||||
|
}
|
||||||
|
|
||||||
|
registry.addBean(bean);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
private boolean isSpringComponent(ITypeBinding binding) {
|
||||||
|
return hasMetaAnnotation(binding, "org.springframework.stereotype.Component") ||
|
||||||
|
hasMetaAnnotation(binding, "org.springframework.web.bind.annotation.RestController");
|
||||||
|
}
|
||||||
|
|
||||||
|
private boolean hasMetaAnnotation(ITypeBinding binding, String targetFqn) {
|
||||||
|
return checkMetaAnnotation(binding.getAnnotations(), targetFqn, new HashSet<>());
|
||||||
|
}
|
||||||
|
|
||||||
|
private boolean checkMetaAnnotation(IAnnotationBinding[] annotations, String targetFqn, Set<String> visited) {
|
||||||
|
for (IAnnotationBinding ann : annotations) {
|
||||||
|
ITypeBinding annType = ann.getAnnotationType();
|
||||||
|
if (annType != null) {
|
||||||
|
String fqn = annType.getQualifiedName();
|
||||||
|
if (fqn.equals(targetFqn)) return true;
|
||||||
|
|
||||||
|
// Avoid circular meta-annotations (e.g. Documented -> Documented)
|
||||||
|
if (visited.add(fqn)) {
|
||||||
|
if (checkMetaAnnotation(annType.getAnnotations(), targetFqn, visited)) {
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
private boolean hasAnnotation(IBinding binding, String annotationFqn) {
|
||||||
|
IAnnotationBinding[] annotations = binding.getAnnotations();
|
||||||
|
for (IAnnotationBinding ann : annotations) {
|
||||||
|
if (ann.getAnnotationType() != null && annotationFqn.equals(ann.getAnnotationType().getQualifiedName())) {
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
private Set<String> getAssignableTypes(ITypeBinding binding) {
|
||||||
|
Set<String> types = new HashSet<>();
|
||||||
|
collectAssignableTypes(binding, types);
|
||||||
|
return types;
|
||||||
|
}
|
||||||
|
|
||||||
|
private void collectAssignableTypes(ITypeBinding binding, Set<String> types) {
|
||||||
|
if (binding == null) return;
|
||||||
|
|
||||||
|
String qName = binding.getQualifiedName();
|
||||||
|
if (qName != null && !qName.isEmpty()) {
|
||||||
|
types.add(qName);
|
||||||
|
}
|
||||||
|
|
||||||
|
ITypeBinding erasure = binding.getErasure();
|
||||||
|
if (erasure != null) {
|
||||||
|
String erasureName = erasure.getQualifiedName();
|
||||||
|
if (erasureName != null && !erasureName.isEmpty()) {
|
||||||
|
types.add(erasureName);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
collectAssignableTypes(binding.getSuperclass(), types);
|
||||||
|
if (binding.getInterfaces() != null) {
|
||||||
|
for (ITypeBinding iface : binding.getInterfaces()) {
|
||||||
|
collectAssignableTypes(iface, types);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private Set<String> extractQualifiers(IBinding binding) {
|
||||||
|
Set<String> qualifiers = new HashSet<>();
|
||||||
|
for (IAnnotationBinding ann : binding.getAnnotations()) {
|
||||||
|
if (ann.getAnnotationType() != null && "org.springframework.beans.factory.annotation.Qualifier".equals(ann.getAnnotationType().getQualifiedName())) {
|
||||||
|
for (IMemberValuePairBinding pair : ann.getDeclaredMemberValuePairs()) {
|
||||||
|
if ("value".equals(pair.getName()) && pair.getValue() instanceof String) {
|
||||||
|
qualifiers.add((String) pair.getValue());
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return qualifiers;
|
||||||
|
}
|
||||||
|
|
||||||
|
private Integer extractOrder(IBinding binding) {
|
||||||
|
for (IAnnotationBinding ann : binding.getAnnotations()) {
|
||||||
|
if (ann.getAnnotationType() != null && "org.springframework.core.annotation.Order".equals(ann.getAnnotationType().getQualifiedName())) {
|
||||||
|
for (IMemberValuePairBinding pair : ann.getDeclaredMemberValuePairs()) {
|
||||||
|
if ("value".equals(pair.getName())) {
|
||||||
|
Object val = pair.getValue();
|
||||||
|
if (val instanceof Integer) {
|
||||||
|
return (Integer) val;
|
||||||
|
} else if (val instanceof IVariableBinding) {
|
||||||
|
Object constantValue = ((IVariableBinding) val).getConstantValue();
|
||||||
|
if (constantValue instanceof Integer) {
|
||||||
|
return (Integer) constantValue;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return Integer.MAX_VALUE; // Spring's default for @Order()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
|
||||||
|
private String extractStereotypeValue(ITypeBinding binding) {
|
||||||
|
for (IAnnotationBinding ann : binding.getAnnotations()) {
|
||||||
|
// Check if annotation itself is meta-annotated with @Component
|
||||||
|
if (checkMetaAnnotation(new IAnnotationBinding[]{ann}, "org.springframework.stereotype.Component", new HashSet<>()) ||
|
||||||
|
"org.springframework.stereotype.Component".equals(ann.getAnnotationType().getQualifiedName())) {
|
||||||
|
for (IMemberValuePairBinding pair : ann.getDeclaredMemberValuePairs()) {
|
||||||
|
if ("value".equals(pair.getName()) && pair.getValue() instanceof String) {
|
||||||
|
return (String) pair.getValue();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
|
||||||
|
private String extractBeanName(IMethodBinding binding) {
|
||||||
|
for (IAnnotationBinding ann : binding.getAnnotations()) {
|
||||||
|
if ("org.springframework.context.annotation.Bean".equals(ann.getAnnotationType().getQualifiedName())) {
|
||||||
|
for (IMemberValuePairBinding pair : ann.getDeclaredMemberValuePairs()) {
|
||||||
|
if (("value".equals(pair.getName()) || "name".equals(pair.getName())) && pair.getValue() instanceof String) {
|
||||||
|
return (String) pair.getValue();
|
||||||
|
} else if (("value".equals(pair.getName()) || "name".equals(pair.getName())) && pair.getValue() instanceof Object[]) {
|
||||||
|
Object[] vals = (Object[]) pair.getValue();
|
||||||
|
if (vals.length > 0 && vals[0] instanceof String) {
|
||||||
|
return (String) vals[0];
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,87 @@
|
|||||||
|
package click.kamil.springstatemachineexporter.analysis.spring;
|
||||||
|
|
||||||
|
import java.util.ArrayList;
|
||||||
|
import java.util.List;
|
||||||
|
import java.util.stream.Collectors;
|
||||||
|
|
||||||
|
public class SpringDependencyResolver {
|
||||||
|
private final SpringBeanRegistry registry;
|
||||||
|
|
||||||
|
public SpringDependencyResolver(SpringBeanRegistry registry) {
|
||||||
|
this.registry = registry;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Resolves the exact SpringBean that would be injected for a given injection point.
|
||||||
|
*
|
||||||
|
* @param requiredTypeFqn The exact FQN of the type requested at the injection point.
|
||||||
|
* @param qualifier The value of the @Qualifier annotation on the injection point (if any).
|
||||||
|
* @param injectionName The name of the field or parameter being injected (used as fallback).
|
||||||
|
* @return A list of resolved beans. Usually 1. If 0, unresolved. If > 1, ambiguous.
|
||||||
|
*/
|
||||||
|
public List<SpringBean> resolve(String requiredTypeFqn, String qualifier, String injectionName) {
|
||||||
|
if (requiredTypeFqn == null) return new ArrayList<>();
|
||||||
|
|
||||||
|
// 1. Filter by Type (Exact FQN or Assignable Type)
|
||||||
|
System.out.println("RESOLVING " + requiredTypeFqn + " qual=" + qualifier + " injectionName=" + injectionName);
|
||||||
|
List<SpringBean> candidates = registry.getBeans().stream()
|
||||||
|
.filter(bean -> requiredTypeFqn.equals(bean.getTypeFqn()) || bean.getAssignableTypes().contains(requiredTypeFqn))
|
||||||
|
.collect(Collectors.toList());
|
||||||
|
|
||||||
|
System.out.println("CANDIDATES AFTER TYPE: " + candidates.stream().map(c -> c.getTypeFqn() + " (primary=" + c.isPrimary() + " names=" + c.getBeanNames() + " qual=" + c.getQualifiers() + ")").collect(Collectors.toList()));
|
||||||
|
if (candidates.isEmpty() || candidates.size() == 1) {
|
||||||
|
System.out.println("RETURNING: " + candidates.size());
|
||||||
|
return candidates;
|
||||||
|
}
|
||||||
|
|
||||||
|
// 2. Filter by Qualifier (if provided)
|
||||||
|
if (qualifier != null && !qualifier.isEmpty()) {
|
||||||
|
List<SpringBean> qualifiedCandidates = candidates.stream()
|
||||||
|
.filter(bean -> bean.getQualifiers().contains(qualifier) || bean.getBeanNames().contains(qualifier))
|
||||||
|
.collect(Collectors.toList());
|
||||||
|
if (qualifiedCandidates.size() == 1) {
|
||||||
|
return qualifiedCandidates;
|
||||||
|
} else if (!qualifiedCandidates.isEmpty()) {
|
||||||
|
candidates = qualifiedCandidates;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// 3. Filter by @Primary
|
||||||
|
List<SpringBean> primaryCandidates = candidates.stream()
|
||||||
|
.filter(SpringBean::isPrimary)
|
||||||
|
.collect(Collectors.toList());
|
||||||
|
if (primaryCandidates.size() == 1) {
|
||||||
|
return primaryCandidates;
|
||||||
|
}
|
||||||
|
|
||||||
|
// 4. Fallback to Injection Name (field name or parameter name)
|
||||||
|
if (injectionName != null && !injectionName.isEmpty()) {
|
||||||
|
List<SpringBean> namedCandidates = candidates.stream()
|
||||||
|
.filter(bean -> bean.getBeanNames().contains(injectionName))
|
||||||
|
.collect(Collectors.toList());
|
||||||
|
if (namedCandidates.size() == 1) {
|
||||||
|
return namedCandidates;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// 5. Fallback to @Order (lowest order wins)
|
||||||
|
Integer minOrder = candidates.stream()
|
||||||
|
.map(SpringBean::getOrder)
|
||||||
|
.filter(o -> o != null)
|
||||||
|
.min(Integer::compareTo)
|
||||||
|
.orElse(null);
|
||||||
|
|
||||||
|
if (minOrder != null) {
|
||||||
|
List<SpringBean> orderedCandidates = candidates.stream()
|
||||||
|
.filter(bean -> bean.getOrder() != null && bean.getOrder().equals(minOrder))
|
||||||
|
.collect(Collectors.toList());
|
||||||
|
if (!orderedCandidates.isEmpty()) {
|
||||||
|
candidates = orderedCandidates;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Return whatever candidates remain (could be ambiguous)
|
||||||
|
System.out.println("RETURNING: " + candidates.size());
|
||||||
|
return candidates;
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -292,6 +292,15 @@ public class AstTransitionParser {
|
|||||||
// Try same file
|
// Try same file
|
||||||
ASTNode declNode = cu.findDeclaringNode(binding.getKey());
|
ASTNode declNode = cu.findDeclaringNode(binding.getKey());
|
||||||
if (declNode instanceof MethodDeclaration md) {
|
if (declNode instanceof MethodDeclaration md) {
|
||||||
|
if (md.getBody() != null && md.getBody().statements().size() == 1) {
|
||||||
|
Object stmt = md.getBody().statements().get(0);
|
||||||
|
if (stmt instanceof org.eclipse.jdt.core.dom.ReturnStatement rs) {
|
||||||
|
Expression retExpr = rs.getExpression();
|
||||||
|
if (isLambdaOrAnonymous(retExpr)) {
|
||||||
|
return retExpr.toString();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
return md.toString();
|
return md.toString();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -36,4 +36,62 @@ public final class AstUtils {
|
|||||||
return type.toString(); // fallback
|
return type.toString(); // fallback
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public static boolean isFunctionalCollectionMethod(org.eclipse.jdt.core.dom.MethodInvocation node) {
|
||||||
|
if (node.getExpression() == null) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
org.eclipse.jdt.core.dom.ITypeBinding typeBinding = node.getExpression().resolveTypeBinding();
|
||||||
|
if (typeBinding != null) {
|
||||||
|
if (isCollectionOrStreamType(typeBinding)) {
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
String methodName = node.getName().getIdentifier();
|
||||||
|
if (methodName.equals("forEach") || methodName.equals("map") ||
|
||||||
|
methodName.equals("filter") || methodName.equals("flatMap") ||
|
||||||
|
methodName.equals("anyMatch") || methodName.equals("allMatch") ||
|
||||||
|
methodName.equals("noneMatch") || methodName.equals("reduce") ||
|
||||||
|
methodName.equals("collect") || methodName.equals("removeIf") ||
|
||||||
|
methodName.equals("ifPresent") || methodName.equals("ifPresentOrElse") ||
|
||||||
|
methodName.equals("compute") || methodName.equals("computeIfAbsent") ||
|
||||||
|
methodName.equals("computeIfPresent") || methodName.equals("replaceAll") ||
|
||||||
|
methodName.equals("merge") || methodName.equals("peek") ||
|
||||||
|
methodName.equals("doOnNext") || methodName.equals("doOnSuccess") ||
|
||||||
|
methodName.equals("doOnError") || methodName.equals("concatMap") ||
|
||||||
|
methodName.equals("switchMap")) {
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
private static boolean isCollectionOrStreamType(org.eclipse.jdt.core.dom.ITypeBinding typeBinding) {
|
||||||
|
String fqn = typeBinding.getErasure().getQualifiedName();
|
||||||
|
if (fqn.startsWith("java.util.stream.") ||
|
||||||
|
fqn.equals("java.lang.Iterable") ||
|
||||||
|
fqn.equals("java.util.Collection") ||
|
||||||
|
fqn.equals("java.util.List") ||
|
||||||
|
fqn.equals("java.util.Set") ||
|
||||||
|
fqn.equals("java.util.Map") ||
|
||||||
|
fqn.equals("java.util.Iterator") ||
|
||||||
|
fqn.equals("java.util.Optional") ||
|
||||||
|
fqn.equals("reactor.core.publisher.Flux") ||
|
||||||
|
fqn.equals("reactor.core.publisher.Mono")) {
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
for (org.eclipse.jdt.core.dom.ITypeBinding intf : typeBinding.getInterfaces()) {
|
||||||
|
if (isCollectionOrStreamType(intf)) return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (typeBinding.getSuperclass() != null) {
|
||||||
|
return isCollectionOrStreamType(typeBinding.getSuperclass());
|
||||||
|
}
|
||||||
|
|
||||||
|
return false;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -65,7 +65,7 @@ public class CodebaseContext {
|
|||||||
return Collections.unmodifiableList(libraryHints);
|
return Collections.unmodifiableList(libraryHints);
|
||||||
}
|
}
|
||||||
|
|
||||||
private final Set<String> ignorePatterns = new HashSet<>(Set.of("**/test/**", "**/build/**", "**/node_modules/**", "**/out/**"));
|
private final Set<String> ignorePatterns = new HashSet<>(Set.of("**/test/**", "**/build/classes/**", "**/build/libs/**", "**/build/tmp/**", "**/build/reports/**", "**/build/test-results/**", "**/node_modules/**", "**/out/**"));
|
||||||
private String[] classpath = new String[0];
|
private String[] classpath = new String[0];
|
||||||
private String[] sourcepath = new String[0];
|
private String[] sourcepath = new String[0];
|
||||||
private boolean resolveBindings = false;
|
private boolean resolveBindings = false;
|
||||||
@@ -191,6 +191,8 @@ public class CodebaseContext {
|
|||||||
indexType(td, packageName, javaFile);
|
indexType(td, packageName, javaFile);
|
||||||
} else if (type instanceof EnumDeclaration ed) {
|
} else if (type instanceof EnumDeclaration ed) {
|
||||||
indexEnum(ed, packageName, javaFile);
|
indexEnum(ed, packageName, javaFile);
|
||||||
|
} else if (type instanceof org.eclipse.jdt.core.dom.RecordDeclaration rd) {
|
||||||
|
indexRecord(rd, packageName, javaFile);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -213,10 +215,19 @@ public class CodebaseContext {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// Inheritance Mapping
|
// Inheritance Mapping
|
||||||
for (Object itf : td.superInterfaceTypes()) {
|
// Track implementations (for both interfaces and superclasses)
|
||||||
String itfName = itf.toString();
|
if (td.superInterfaceTypes() != null) {
|
||||||
|
for (Object itfObj : td.superInterfaceTypes()) {
|
||||||
|
Type itf = (Type) itfObj;
|
||||||
|
String itfName = extractTypeName(itf);
|
||||||
interfaceToImpls.computeIfAbsent(itfName, k -> new ArrayList<>()).add(fqn);
|
interfaceToImpls.computeIfAbsent(itfName, k -> new ArrayList<>()).add(fqn);
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
Type superclass = td.getSuperclassType();
|
||||||
|
if (superclass != null) {
|
||||||
|
String superName = extractTypeName(superclass);
|
||||||
|
interfaceToImpls.computeIfAbsent(superName, k -> new ArrayList<>()).add(fqn);
|
||||||
|
}
|
||||||
|
|
||||||
// Recursively index nested types
|
// Recursively index nested types
|
||||||
for (Object type : td.getTypes()) {
|
for (Object type : td.getTypes()) {
|
||||||
@@ -226,29 +237,67 @@ public class CodebaseContext {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private void indexRecord(org.eclipse.jdt.core.dom.RecordDeclaration rd, String parentFqn, Path javaFile) {
|
||||||
|
String simpleName = rd.getName().getIdentifier();
|
||||||
|
String fqn = parentFqn.isEmpty() ? simpleName : parentFqn + "." + simpleName;
|
||||||
|
|
||||||
|
// Treat as a class since it is a type
|
||||||
|
classes.put(fqn, (CompilationUnit) rd.getRoot());
|
||||||
|
classPaths.put(fqn, javaFile);
|
||||||
|
|
||||||
|
if (simpleNameToFqn.containsKey(simpleName)) {
|
||||||
|
String existingFqn = simpleNameToFqn.get(simpleName);
|
||||||
|
if (!existingFqn.equals(fqn)) {
|
||||||
|
ambiguousSimpleNames.add(simpleName);
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
simpleNameToFqn.put(simpleName, fqn);
|
||||||
|
}
|
||||||
|
|
||||||
|
// Recursively index nested types
|
||||||
|
for (Object type : rd.bodyDeclarations()) {
|
||||||
|
if (type instanceof TypeDeclaration nestedTd) {
|
||||||
|
indexType(nestedTd, fqn, javaFile);
|
||||||
|
} else if (type instanceof org.eclipse.jdt.core.dom.RecordDeclaration nestedRd) {
|
||||||
|
indexRecord(nestedRd, fqn, javaFile);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
public List<String> getImplementations(String interfaceName) {
|
public List<String> getImplementations(String interfaceName) {
|
||||||
|
Set<String> allImpls = new HashSet<>();
|
||||||
|
collectImplementations(interfaceName, allImpls, new HashSet<>());
|
||||||
|
System.out.println("GET IMPLEMENTATIONS FOR: " + interfaceName + " -> " + allImpls);
|
||||||
|
return new ArrayList<>(allImpls);
|
||||||
|
}
|
||||||
|
|
||||||
|
private void collectImplementations(String typeName, Set<String> results, Set<String> visited) {
|
||||||
|
if (!visited.add(typeName)) return;
|
||||||
|
|
||||||
// Try direct match
|
// Try direct match
|
||||||
List<String> impls = interfaceToImpls.get(interfaceName);
|
List<String> directImpls = interfaceToImpls.get(typeName);
|
||||||
if (impls != null) return impls;
|
|
||||||
|
|
||||||
// Try FQN match if input was simple name
|
// Try FQN match if input was simple name
|
||||||
String fqn = simpleNameToFqn.get(interfaceName);
|
if (directImpls == null) {
|
||||||
if (fqn != null && interfaceToImpls.containsKey(fqn)) {
|
String fqn = simpleNameToFqn.get(typeName);
|
||||||
return interfaceToImpls.get(fqn);
|
if (fqn != null) {
|
||||||
|
directImpls = interfaceToImpls.get(fqn);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// Try simple name match if input was FQN
|
// Try simple name match if input was FQN
|
||||||
if (interfaceName.contains(".")) {
|
if (directImpls == null && typeName.contains(".")) {
|
||||||
String simpleName = interfaceName.substring(interfaceName.lastIndexOf('.') + 1);
|
String simpleName = typeName.substring(typeName.lastIndexOf('.') + 1);
|
||||||
List<String> simpleImpls = interfaceToImpls.get(simpleName);
|
directImpls = interfaceToImpls.get(simpleName);
|
||||||
if (simpleImpls != null) {
|
|
||||||
// To be perfectly safe, we could check if simpleNameToFqn matches,
|
|
||||||
// but for call graphs, returning potential implementations is fine.
|
|
||||||
return simpleImpls;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
return Collections.emptyList();
|
if (directImpls != null) {
|
||||||
|
for (String impl : directImpls) {
|
||||||
|
results.add(impl);
|
||||||
|
// Recursively find implementations of the implementation (e.g., subclasses of an abstract class)
|
||||||
|
collectImplementations(impl, results, visited);
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private void indexEnum(EnumDeclaration ed, String parentFqn, Path javaFile) {
|
private void indexEnum(EnumDeclaration ed, String parentFqn, Path javaFile) {
|
||||||
|
|||||||
@@ -54,11 +54,22 @@ public class ExporterCommand implements Callable<Integer> {
|
|||||||
@Option(names = {"--state"}, description = "Format for states when they are enums: fn (fullName, default), fqn (fully qualified name), sn (short name)", defaultValue = "fn")
|
@Option(names = {"--state"}, description = "Format for states when they are enums: fn (fullName, default), fqn (fully qualified name), sn (short name)", defaultValue = "fn")
|
||||||
private click.kamil.springstatemachineexporter.exporter.EnumFormat stateFormat;
|
private click.kamil.springstatemachineexporter.exporter.EnumFormat stateFormat;
|
||||||
|
|
||||||
|
@Option(names = {"--debug"}, description = "Enable diagnostic mode to show unresolved call chains and detailed analysis logging.", defaultValue = "false")
|
||||||
|
private boolean debug;
|
||||||
|
|
||||||
|
@Option(names = {"--resolve-classpath"}, description = "Automatically run Maven/Gradle to resolve full classpath dependencies for perfect AST bindings.", defaultValue = "false")
|
||||||
|
private boolean resolveClasspath;
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public Integer call() throws Exception {
|
public Integer call() throws Exception {
|
||||||
var out = spec.commandLine().getOut();
|
var out = spec.commandLine().getOut();
|
||||||
var err = spec.commandLine().getErr();
|
var err = spec.commandLine().getErr();
|
||||||
|
|
||||||
|
if (debug) {
|
||||||
|
System.setProperty("org.slf4j.simpleLogger.defaultLogLevel", "debug");
|
||||||
|
out.println(CommandLine.Help.Ansi.AUTO.string("@|bold,cyan Diagnostic mode enabled|@"));
|
||||||
|
}
|
||||||
|
|
||||||
if (inputDir == null && jsonFile == null) {
|
if (inputDir == null && jsonFile == null) {
|
||||||
inputDir = Path.of(".");
|
inputDir = Path.of(".");
|
||||||
}
|
}
|
||||||
@@ -79,7 +90,7 @@ public class ExporterCommand implements Callable<Integer> {
|
|||||||
if (jsonFile != null) {
|
if (jsonFile != null) {
|
||||||
exportService.runJsonExporter(jsonFile, outputDir, selectedFormats, profiles, eventFormat, stateFormat);
|
exportService.runJsonExporter(jsonFile, outputDir, selectedFormats, profiles, eventFormat, stateFormat);
|
||||||
} else {
|
} else {
|
||||||
exportService.runExporter(inputDir, outputDir, selectedFormats, renderChoicesAsDiamonds, profiles, eventFormat, stateFormat);
|
exportService.runExporter(inputDir, outputDir, selectedFormats, renderChoicesAsDiamonds, profiles, null, null, eventFormat, stateFormat, resolveClasspath);
|
||||||
}
|
}
|
||||||
out.println(CommandLine.Help.Ansi.AUTO.string("%n@|bold,green SUCCESS:|@ All state machines have been exported to " + outputDir.toAbsolutePath()));
|
out.println(CommandLine.Help.Ansi.AUTO.string("%n@|bold,green SUCCESS:|@ All state machines have been exported to " + outputDir.toAbsolutePath()));
|
||||||
return 0;
|
return 0;
|
||||||
|
|||||||
@@ -45,6 +45,7 @@ public class ExportService {
|
|||||||
new EntryPointEnricher(),
|
new EntryPointEnricher(),
|
||||||
new PropertyEnricher(),
|
new PropertyEnricher(),
|
||||||
new CallChainEnricher(),
|
new CallChainEnricher(),
|
||||||
|
new click.kamil.springstatemachineexporter.analysis.enricher.path.ForwardPathEstimationEnricher(),
|
||||||
new click.kamil.springstatemachineexporter.analysis.enricher.TransitionLinkerEnricher()
|
new click.kamil.springstatemachineexporter.analysis.enricher.TransitionLinkerEnricher()
|
||||||
)));
|
)));
|
||||||
}
|
}
|
||||||
@@ -53,22 +54,22 @@ public class ExportService {
|
|||||||
public static final Set<String> STATE_MACHINE_RETURN_TYPES = Set.of("StateMachine", "StateMachineFactory", "StateMachineModelFactory");
|
public static final Set<String> STATE_MACHINE_RETURN_TYPES = Set.of("StateMachine", "StateMachineFactory", "StateMachineModelFactory");
|
||||||
|
|
||||||
public void runExporter(Path inputDir, Path outputDir, List<String> selectedFormats, boolean renderChoicesAsDiamonds) throws IOException {
|
public void runExporter(Path inputDir, Path outputDir, List<String> selectedFormats, boolean renderChoicesAsDiamonds) throws IOException {
|
||||||
runExporter(inputDir, outputDir, selectedFormats, renderChoicesAsDiamonds, Collections.emptyList(), click.kamil.springstatemachineexporter.exporter.EnumFormat.fn, click.kamil.springstatemachineexporter.exporter.EnumFormat.fn);
|
runExporter(inputDir, outputDir, selectedFormats, renderChoicesAsDiamonds, Collections.emptyList(), null, null, click.kamil.springstatemachineexporter.exporter.EnumFormat.fn, click.kamil.springstatemachineexporter.exporter.EnumFormat.fn, false);
|
||||||
}
|
}
|
||||||
|
|
||||||
public void runExporter(Path inputDir, Path outputDir, List<String> selectedFormats, boolean renderChoicesAsDiamonds, List<String> activeProfiles) throws IOException {
|
public void runExporter(Path inputDir, Path outputDir, List<String> selectedFormats, boolean renderChoicesAsDiamonds, List<String> activeProfiles) throws IOException {
|
||||||
runExporter(inputDir, outputDir, selectedFormats, renderChoicesAsDiamonds, activeProfiles, null, null, click.kamil.springstatemachineexporter.exporter.EnumFormat.fn, click.kamil.springstatemachineexporter.exporter.EnumFormat.fn);
|
runExporter(inputDir, outputDir, selectedFormats, renderChoicesAsDiamonds, activeProfiles, null, null, click.kamil.springstatemachineexporter.exporter.EnumFormat.fn, click.kamil.springstatemachineexporter.exporter.EnumFormat.fn, false);
|
||||||
}
|
}
|
||||||
|
|
||||||
public void runExporter(Path inputDir, Path outputDir, List<String> selectedFormats, boolean renderChoicesAsDiamonds, List<String> activeProfiles, Path flowsOverride, String machineFilter) throws IOException {
|
public void runExporter(Path inputDir, Path outputDir, List<String> selectedFormats, boolean renderChoicesAsDiamonds, List<String> activeProfiles, Path flowsOverride, String machineFilter) throws IOException {
|
||||||
runExporter(inputDir, outputDir, selectedFormats, renderChoicesAsDiamonds, activeProfiles, flowsOverride, machineFilter, click.kamil.springstatemachineexporter.exporter.EnumFormat.fn, click.kamil.springstatemachineexporter.exporter.EnumFormat.fn);
|
runExporter(inputDir, outputDir, selectedFormats, renderChoicesAsDiamonds, activeProfiles, flowsOverride, machineFilter, click.kamil.springstatemachineexporter.exporter.EnumFormat.fn, click.kamil.springstatemachineexporter.exporter.EnumFormat.fn, false);
|
||||||
}
|
}
|
||||||
|
|
||||||
public void runExporter(Path inputDir, Path outputDir, List<String> selectedFormats, boolean renderChoicesAsDiamonds, List<String> activeProfiles, click.kamil.springstatemachineexporter.exporter.EnumFormat eventFormat, click.kamil.springstatemachineexporter.exporter.EnumFormat stateFormat) throws IOException {
|
public void runExporter(Path inputDir, Path outputDir, List<String> selectedFormats, boolean renderChoicesAsDiamonds, List<String> activeProfiles, click.kamil.springstatemachineexporter.exporter.EnumFormat eventFormat, click.kamil.springstatemachineexporter.exporter.EnumFormat stateFormat) throws IOException {
|
||||||
runExporter(inputDir, outputDir, selectedFormats, renderChoicesAsDiamonds, activeProfiles, null, null, eventFormat, stateFormat);
|
runExporter(inputDir, outputDir, selectedFormats, renderChoicesAsDiamonds, activeProfiles, null, null, eventFormat, stateFormat, false);
|
||||||
}
|
}
|
||||||
|
|
||||||
public void runExporter(Path inputDir, Path outputDir, List<String> selectedFormats, boolean renderChoicesAsDiamonds, List<String> activeProfiles, Path flowsOverride, String machineFilter, click.kamil.springstatemachineexporter.exporter.EnumFormat eventFormat, click.kamil.springstatemachineexporter.exporter.EnumFormat stateFormat) throws IOException {
|
public void runExporter(Path inputDir, Path outputDir, List<String> selectedFormats, boolean renderChoicesAsDiamonds, List<String> activeProfiles, Path flowsOverride, String machineFilter, click.kamil.springstatemachineexporter.exporter.EnumFormat eventFormat, click.kamil.springstatemachineexporter.exporter.EnumFormat stateFormat, boolean resolveClasspath) throws IOException {
|
||||||
CodebaseContext context = new CodebaseContext();
|
CodebaseContext context = new CodebaseContext();
|
||||||
context.setActiveProfiles(activeProfiles);
|
context.setActiveProfiles(activeProfiles);
|
||||||
|
|
||||||
@@ -94,6 +95,18 @@ public class ExportService {
|
|||||||
.collect(Collectors.toList());
|
.collect(Collectors.toList());
|
||||||
log.info("Setting JDT sourcepath: {}", sourcepaths);
|
log.info("Setting JDT sourcepath: {}", sourcepaths);
|
||||||
context.setSourcepath(sourcepaths);
|
context.setSourcepath(sourcepaths);
|
||||||
|
|
||||||
|
if (resolveClasspath) {
|
||||||
|
click.kamil.springstatemachineexporter.analysis.service.DynamicClasspathResolver classpathResolver = new click.kamil.springstatemachineexporter.analysis.service.DynamicClasspathResolver();
|
||||||
|
List<String> dynamicClasspath = classpathResolver.resolveClasspath(projectRoot);
|
||||||
|
if (!dynamicClasspath.isEmpty()) {
|
||||||
|
context.setClasspath(dynamicClasspath);
|
||||||
|
log.info("Injected {} external JARs into JDT ASTParser", dynamicClasspath.size());
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
log.info("Dynamic classpath resolution disabled. Use --resolve-classpath to enable.");
|
||||||
|
}
|
||||||
|
|
||||||
context.setResolveBindings(true);
|
context.setResolveBindings(true);
|
||||||
|
|
||||||
Path hintsFile = inputDir.resolve("hints.json");
|
Path hintsFile = inputDir.resolve("hints.json");
|
||||||
|
|||||||
@@ -23,8 +23,7 @@ import java.util.List;
|
|||||||
public class GoldenUpdater {
|
public class GoldenUpdater {
|
||||||
|
|
||||||
private static final List<StateMachineExporter> exporters = List.of(new PlantUml(), new Dot(), new Scxml(), new JsonExporter());
|
private static final List<StateMachineExporter> exporters = List.of(new PlantUml(), new Dot(), new Scxml(), new JsonExporter());
|
||||||
private static final EnrichmentService enrichmentService = new EnrichmentService(Collections.emptyList());
|
private static final ExportService exportService = new ExportService(exporters);
|
||||||
private static final ExportService exportService = new ExportService(exporters, enrichmentService);
|
|
||||||
|
|
||||||
public static void main(String[] args) throws Exception {
|
public static void main(String[] args) throws Exception {
|
||||||
List<TestScenario> scenarios = provideTestScenarios();
|
List<TestScenario> scenarios = provideTestScenarios();
|
||||||
|
|||||||
@@ -143,6 +143,12 @@ public class RegressionTest {
|
|||||||
root.resolve("state_machines/complex_multi_module_sm"),
|
root.resolve("state_machines/complex_multi_module_sm"),
|
||||||
Path.of("src/test/resources/golden/StateMachineConfig"),
|
Path.of("src/test/resources/golden/StateMachineConfig"),
|
||||||
"StateMachineConfig"
|
"StateMachineConfig"
|
||||||
|
),
|
||||||
|
new TestScenario(
|
||||||
|
"Polymorphic Events Sample",
|
||||||
|
root.resolve("state_machines/polymorphic_events_sample"),
|
||||||
|
Path.of("src/test/resources/golden/PolymorphicStateMachineConfiguration"),
|
||||||
|
"PolymorphicStateMachineConfiguration"
|
||||||
)
|
)
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
@@ -155,7 +161,7 @@ public class RegressionTest {
|
|||||||
if (scenario.inputPath() == null) System.out.println("inputPath is NULL");
|
if (scenario.inputPath() == null) System.out.println("inputPath is NULL");
|
||||||
if (tempDir == null) System.out.println("tempDir is NULL");
|
if (tempDir == null) System.out.println("tempDir is NULL");
|
||||||
|
|
||||||
exportService.runExporter(scenario.inputPath(), tempDir, List.of("puml", "dot", "scxml", "json"), true, scenario.activeProfiles());
|
exportService.runExporter(scenario.inputPath(), tempDir, List.of("puml", "dot", "scxml", "json"), true, scenario.activeProfiles(), null, null, click.kamil.springstatemachineexporter.exporter.EnumFormat.fn, click.kamil.springstatemachineexporter.exporter.EnumFormat.fn, true);
|
||||||
|
|
||||||
// Find the generated directory (it might be named with FQN)
|
// Find the generated directory (it might be named with FQN)
|
||||||
List<Path> generatedDirs;
|
List<Path> generatedDirs;
|
||||||
|
|||||||
@@ -4,7 +4,7 @@ import click.kamil.springstatemachineexporter.analysis.model.CallChain;
|
|||||||
import click.kamil.springstatemachineexporter.analysis.model.EntryPoint;
|
import click.kamil.springstatemachineexporter.analysis.model.EntryPoint;
|
||||||
import click.kamil.springstatemachineexporter.analysis.model.TriggerPoint;
|
import click.kamil.springstatemachineexporter.analysis.model.TriggerPoint;
|
||||||
import click.kamil.springstatemachineexporter.analysis.resolver.ConstantResolver;
|
import click.kamil.springstatemachineexporter.analysis.resolver.ConstantResolver;
|
||||||
import click.kamil.springstatemachineexporter.analysis.service.CallGraphBuilder;
|
import click.kamil.springstatemachineexporter.analysis.service.HeuristicCallGraphEngine;
|
||||||
import click.kamil.springstatemachineexporter.analysis.service.GenericEventDetector;
|
import click.kamil.springstatemachineexporter.analysis.service.GenericEventDetector;
|
||||||
import click.kamil.springstatemachineexporter.analysis.service.SpringMvcDetector;
|
import click.kamil.springstatemachineexporter.analysis.service.SpringMvcDetector;
|
||||||
import click.kamil.springstatemachineexporter.ast.common.CodebaseContext;
|
import click.kamil.springstatemachineexporter.ast.common.CodebaseContext;
|
||||||
@@ -76,7 +76,7 @@ public class InheritedEventDetectionTest {
|
|||||||
assertThat(tp.getEvent()).isEqualTo("event");
|
assertThat(tp.getEvent()).isEqualTo("event");
|
||||||
|
|
||||||
// Build Call Chains
|
// Build Call Chains
|
||||||
CallGraphBuilder callGraphBuilder = new CallGraphBuilder(context);
|
HeuristicCallGraphEngine callGraphBuilder = new HeuristicCallGraphEngine(context);
|
||||||
List<CallChain> chains = callGraphBuilder.findChains(entryPoints, triggers);
|
List<CallChain> chains = callGraphBuilder.findChains(entryPoints, triggers);
|
||||||
|
|
||||||
assertThat(chains).describedAs("Should link ChildController.trigger to BaseController.send").hasSize(1);
|
assertThat(chains).describedAs("Should link ChildController.trigger to BaseController.send").hasSize(1);
|
||||||
|
|||||||
@@ -118,4 +118,294 @@ class TransitionLinkerEnricherTest {
|
|||||||
CallChain updatedChain = result.getMetadata().getCallChains().get(0);
|
CallChain updatedChain = result.getMetadata().getCallChains().get(0);
|
||||||
assertThat(updatedChain.getMatchedTransitions()).isNull();
|
assertThat(updatedChain.getMatchedTransitions()).isNull();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
void shouldMatchWildcardVariable() {
|
||||||
|
Transition t1 = new Transition();
|
||||||
|
t1.setSourceStates(List.of(State.of("NEW", "NEW")));
|
||||||
|
t1.setTargetStates(List.of(State.of("PAID", "PAID")));
|
||||||
|
t1.setEvent(Event.of("PAY", "PAY"));
|
||||||
|
|
||||||
|
CallChain chain = CallChain.builder()
|
||||||
|
.triggerPoint(TriggerPoint.builder().event("event").build())
|
||||||
|
.contextMachineId("testMachine")
|
||||||
|
.build();
|
||||||
|
|
||||||
|
AnalysisResult result = AnalysisResult.builder()
|
||||||
|
.name("testMachine")
|
||||||
|
.transitions(List.of(t1))
|
||||||
|
.metadata(CodebaseMetadata.builder().callChains(List.of(chain)).build())
|
||||||
|
.build();
|
||||||
|
|
||||||
|
enricher.enrich(result, null, null);
|
||||||
|
|
||||||
|
CallChain updatedChain = result.getMetadata().getCallChains().get(0);
|
||||||
|
assertThat(updatedChain.getMatchedTransitions()).hasSize(1);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
@Test
|
||||||
|
void shouldMatchBaseEventDespiteScrapedPolyEvents() {
|
||||||
|
Transition t1 = new Transition();
|
||||||
|
t1.setSourceStates(List.of(State.of("NEW", "NEW")));
|
||||||
|
t1.setTargetStates(List.of(State.of("PAID", "PAID")));
|
||||||
|
// State machine uses the base event generically
|
||||||
|
t1.setEvent(Event.of("BaseEvent", "BaseEvent"));
|
||||||
|
|
||||||
|
// Trigger point uses "BaseEvent", but polyEvents scraped some implementation/constants
|
||||||
|
CallChain chain = CallChain.builder()
|
||||||
|
.triggerPoint(TriggerPoint.builder()
|
||||||
|
.event("BaseEvent")
|
||||||
|
.polymorphicEvents(List.of("EVENT_A", "EVENT_B"))
|
||||||
|
.build())
|
||||||
|
.contextMachineId("testMachine")
|
||||||
|
.build();
|
||||||
|
|
||||||
|
AnalysisResult result = AnalysisResult.builder()
|
||||||
|
.name("testMachine")
|
||||||
|
.transitions(List.of(t1))
|
||||||
|
.metadata(CodebaseMetadata.builder().callChains(List.of(chain)).build())
|
||||||
|
.build();
|
||||||
|
|
||||||
|
enricher.enrich(result, null, null);
|
||||||
|
|
||||||
|
// It should match because smEvent matches triggerEvent directly, overriding the failed poly search
|
||||||
|
CallChain updatedChain = result.getMetadata().getCallChains().get(0);
|
||||||
|
assertThat(updatedChain.getMatchedTransitions()).hasSize(1);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
void shouldNotMatchArbitraryGetXMethodWildcard() {
|
||||||
|
Transition t1 = new Transition();
|
||||||
|
t1.setSourceStates(List.of(State.of("NEW", "NEW")));
|
||||||
|
t1.setTargetStates(List.of(State.of("PAID", "PAID")));
|
||||||
|
t1.setEvent(Event.of("PAY", "PAY"));
|
||||||
|
|
||||||
|
CallChain chain = CallChain.builder()
|
||||||
|
.triggerPoint(TriggerPoint.builder().event("richEvent.getId()").build())
|
||||||
|
.contextMachineId("testMachine")
|
||||||
|
.build();
|
||||||
|
|
||||||
|
AnalysisResult result = AnalysisResult.builder()
|
||||||
|
.name("testMachine")
|
||||||
|
.transitions(List.of(t1))
|
||||||
|
.metadata(CodebaseMetadata.builder().callChains(List.of(chain)).build())
|
||||||
|
.build();
|
||||||
|
|
||||||
|
enricher.enrich(result, null, null);
|
||||||
|
|
||||||
|
CallChain updatedChain = result.getMetadata().getCallChains().get(0);
|
||||||
|
assertThat(updatedChain.getMatchedTransitions()).isNull();
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
void shouldAllowWildcardWhenContextMachineIdIsMissing() {
|
||||||
|
Transition t1 = new Transition();
|
||||||
|
t1.setSourceStates(List.of(State.of("NEW", "NEW")));
|
||||||
|
t1.setTargetStates(List.of(State.of("PAID", "PAID")));
|
||||||
|
t1.setEvent(Event.of("PAY", "PAY"));
|
||||||
|
|
||||||
|
CallChain chain = CallChain.builder()
|
||||||
|
.triggerPoint(TriggerPoint.builder().event("event").build())
|
||||||
|
// NO contextMachineId or stateMachineId
|
||||||
|
.build();
|
||||||
|
|
||||||
|
AnalysisResult result = AnalysisResult.builder()
|
||||||
|
.name("testMachine")
|
||||||
|
.transitions(List.of(t1))
|
||||||
|
.metadata(CodebaseMetadata.builder().callChains(List.of(chain)).build())
|
||||||
|
.build();
|
||||||
|
|
||||||
|
enricher.enrich(result, null, null);
|
||||||
|
|
||||||
|
CallChain updatedChain = result.getMetadata().getCallChains().get(0);
|
||||||
|
assertThat(updatedChain.getMatchedTransitions()).hasSize(1);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
void shouldNotFalsePositiveOnSubstringContains() {
|
||||||
|
// This test proves that the heuristic is entirely removed and false positives are eliminated
|
||||||
|
Transition t1 = new Transition();
|
||||||
|
t1.setSourceStates(List.of(State.of("NEW", "NEW")));
|
||||||
|
t1.setTargetStates(List.of(State.of("PAID", "PAID")));
|
||||||
|
t1.setEvent(Event.of("PAY", "PAY"));
|
||||||
|
|
||||||
|
// Trigger point sends "PAYMENT" which contains "PAY". Under the old heuristics, this would falsely match!
|
||||||
|
CallChain chain = CallChain.builder()
|
||||||
|
.triggerPoint(TriggerPoint.builder().event("PAYMENT").build())
|
||||||
|
.build();
|
||||||
|
|
||||||
|
AnalysisResult result = AnalysisResult.builder()
|
||||||
|
.transitions(List.of(t1))
|
||||||
|
.metadata(CodebaseMetadata.builder().callChains(List.of(chain)).build())
|
||||||
|
.build();
|
||||||
|
|
||||||
|
enricher.enrich(result, null, null);
|
||||||
|
|
||||||
|
// It should NOT match, because "PAYMENT" != "PAY" strictly.
|
||||||
|
CallChain updatedChain = result.getMetadata().getCallChains().get(0);
|
||||||
|
assertThat(updatedChain.getMatchedTransitions()).isNullOrEmpty();
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@Test
|
||||||
|
void shouldFilterCrossStateMachineRoutingByVertical() {
|
||||||
|
Transition t1 = new Transition();
|
||||||
|
t1.setSourceStates(List.of(State.of("NEW", "NEW")));
|
||||||
|
t1.setTargetStates(List.of(State.of("ASSEMBLED", "ASSEMBLED")));
|
||||||
|
t1.setEvent(Event.of("ASSEMBLE", "ASSEMBLE"));
|
||||||
|
|
||||||
|
CallChain chain = CallChain.builder()
|
||||||
|
.triggerPoint(TriggerPoint.builder().event("ASSEMBLE").build())
|
||||||
|
.methodChain(List.of(
|
||||||
|
"com.example.electronics.ElectronicsOrderController.post()",
|
||||||
|
"com.example.electronics.ElectronicsOrderService.processOrderEvent()"
|
||||||
|
))
|
||||||
|
.build();
|
||||||
|
|
||||||
|
// Testing against Electronics SM - should match
|
||||||
|
AnalysisResult resultElectronics = AnalysisResult.builder()
|
||||||
|
.name("com.example.electronics.ElectronicsOwnDeliveryStateMachineConfiguration")
|
||||||
|
.transitions(List.of(t1))
|
||||||
|
.metadata(CodebaseMetadata.builder().callChains(List.of(chain)).build())
|
||||||
|
.build();
|
||||||
|
|
||||||
|
enricher.enrich(resultElectronics, null, null);
|
||||||
|
CallChain updatedChainElec = resultElectronics.getMetadata().getCallChains().get(0);
|
||||||
|
assertThat(updatedChainElec.getMatchedTransitions()).hasSize(1);
|
||||||
|
|
||||||
|
// Testing against ComputerStore SM - should NOT match because chain has Electronics service
|
||||||
|
AnalysisResult resultComputer = AnalysisResult.builder()
|
||||||
|
.name("com.example.computerstore.OwnDeliveryStateMachineConfiguration") // the non-electronics one
|
||||||
|
.transitions(List.of(t1))
|
||||||
|
.metadata(CodebaseMetadata.builder().callChains(List.of(chain)).build())
|
||||||
|
.build();
|
||||||
|
|
||||||
|
enricher.enrich(resultComputer, null, null);
|
||||||
|
CallChain updatedChainComp = resultComputer.getMetadata().getCallChains().get(0);
|
||||||
|
assertThat(updatedChainComp.getMatchedTransitions()).isNullOrEmpty();
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@Test
|
||||||
|
void shouldAllowSharedServicesToRouteToMultipleStateMachines() {
|
||||||
|
Transition t1 = new Transition();
|
||||||
|
t1.setSourceStates(List.of(State.of("NEW", "NEW")));
|
||||||
|
t1.setTargetStates(List.of(State.of("PROCESSED", "PROCESSED")));
|
||||||
|
t1.setEvent(Event.of("PROCESS", "PROCESS"));
|
||||||
|
|
||||||
|
// Chain contains NO vertical prefix (e.g. CommonOrderService)
|
||||||
|
CallChain chain = CallChain.builder()
|
||||||
|
.triggerPoint(TriggerPoint.builder().event("PROCESS").build())
|
||||||
|
.methodChain(List.of(
|
||||||
|
"com.example.CommonOrderController.post()",
|
||||||
|
"com.example.CommonOrderService.processOrderEvent()"
|
||||||
|
))
|
||||||
|
.build();
|
||||||
|
|
||||||
|
AnalysisResult resultElectronics = AnalysisResult.builder()
|
||||||
|
.name("com.example.electronics.ElectronicsOwnDeliveryStateMachineConfiguration")
|
||||||
|
.transitions(List.of(t1))
|
||||||
|
.metadata(CodebaseMetadata.builder().callChains(List.of(chain)).build())
|
||||||
|
.build();
|
||||||
|
|
||||||
|
enricher.enrich(resultElectronics, null, null);
|
||||||
|
CallChain updatedChainElec = resultElectronics.getMetadata().getCallChains().get(0);
|
||||||
|
|
||||||
|
// Should match Electronics because it's a shared service (no computerstore service in path)
|
||||||
|
assertThat(updatedChainElec.getMatchedTransitions()).hasSize(1);
|
||||||
|
|
||||||
|
AnalysisResult resultComputer = AnalysisResult.builder()
|
||||||
|
.name("com.example.computerstore.OwnDeliveryStateMachineConfiguration")
|
||||||
|
.transitions(List.of(t1))
|
||||||
|
.metadata(CodebaseMetadata.builder().callChains(List.of(chain)).build())
|
||||||
|
.build();
|
||||||
|
|
||||||
|
enricher.enrich(resultComputer, null, null);
|
||||||
|
CallChain updatedChainComp = resultComputer.getMetadata().getCallChains().get(0);
|
||||||
|
|
||||||
|
// Should ALSO match ComputerStore because it's a shared service
|
||||||
|
assertThat(updatedChainComp.getMatchedTransitions()).hasSize(1);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@Test
|
||||||
|
void shouldFilterCrossStateMachineRoutingWithMultipleVerticals() {
|
||||||
|
Transition t1 = new Transition();
|
||||||
|
t1.setSourceStates(List.of(State.of("NEW", "NEW")));
|
||||||
|
t1.setTargetStates(List.of(State.of("ASSEMBLED", "ASSEMBLED")));
|
||||||
|
t1.setEvent(Event.of("ASSEMBLE", "ASSEMBLE"));
|
||||||
|
|
||||||
|
// Chain 1: Electronics
|
||||||
|
CallChain chainElec = CallChain.builder()
|
||||||
|
.triggerPoint(TriggerPoint.builder().event("ASSEMBLE").build())
|
||||||
|
.methodChain(List.of("com.example.electronics.ElectronicsOrderController.post()"))
|
||||||
|
.build();
|
||||||
|
|
||||||
|
// Chain 2: Furniture
|
||||||
|
CallChain chainFurn = CallChain.builder()
|
||||||
|
.triggerPoint(TriggerPoint.builder().event("ASSEMBLE").build())
|
||||||
|
.methodChain(List.of("com.example.furniture.FurnitureOrderController.post()"))
|
||||||
|
.build();
|
||||||
|
|
||||||
|
// Chain 3: Groceries
|
||||||
|
CallChain chainGroc = CallChain.builder()
|
||||||
|
.triggerPoint(TriggerPoint.builder().event("ASSEMBLE").build())
|
||||||
|
.methodChain(List.of("com.example.groceries.GroceriesOrderController.post()"))
|
||||||
|
.build();
|
||||||
|
|
||||||
|
// SM 1: Electronics
|
||||||
|
AnalysisResult resElec = AnalysisResult.builder()
|
||||||
|
.name("com.example.electronics.ElectronicsOwnDeliveryStateMachineConfiguration")
|
||||||
|
.transitions(List.of(t1))
|
||||||
|
.metadata(CodebaseMetadata.builder().callChains(List.of(chainElec, chainFurn, chainGroc)).build())
|
||||||
|
.build();
|
||||||
|
|
||||||
|
// SM 2: Furniture
|
||||||
|
AnalysisResult resFurn = AnalysisResult.builder()
|
||||||
|
.name("com.example.furniture.FurnitureOwnDeliveryStateMachineConfiguration")
|
||||||
|
.transitions(List.of(t1))
|
||||||
|
.metadata(CodebaseMetadata.builder().callChains(List.of(chainElec, chainFurn, chainGroc)).build())
|
||||||
|
.build();
|
||||||
|
|
||||||
|
// SM 3: Groceries
|
||||||
|
AnalysisResult resGroc = AnalysisResult.builder()
|
||||||
|
.name("com.example.groceries.GroceriesStateMachineConfiguration")
|
||||||
|
.transitions(List.of(t1))
|
||||||
|
.metadata(CodebaseMetadata.builder().callChains(List.of(chainElec, chainFurn, chainGroc)).build())
|
||||||
|
.build();
|
||||||
|
|
||||||
|
// SM 4: Computer Store (The catch-all base one in computerstore package)
|
||||||
|
AnalysisResult resComp = AnalysisResult.builder()
|
||||||
|
.name("com.example.computerstore.OwnDeliveryStateMachineConfiguration")
|
||||||
|
.transitions(List.of(t1))
|
||||||
|
.metadata(CodebaseMetadata.builder().callChains(List.of(chainElec, chainFurn, chainGroc)).build())
|
||||||
|
.build();
|
||||||
|
|
||||||
|
// Test Electronics SM - Should only keep Electronics Chain
|
||||||
|
enricher.enrich(resElec, null, null);
|
||||||
|
assertThat(resElec.getMetadata().getCallChains().get(0).getMatchedTransitions()).hasSize(1); // Elec
|
||||||
|
assertThat(resElec.getMetadata().getCallChains().get(1).getMatchedTransitions()).isNullOrEmpty(); // Furn
|
||||||
|
assertThat(resElec.getMetadata().getCallChains().get(2).getMatchedTransitions()).isNullOrEmpty(); // Groc
|
||||||
|
|
||||||
|
// Test Furniture SM - Should only keep Furniture Chain
|
||||||
|
enricher.enrich(resFurn, null, null);
|
||||||
|
assertThat(resFurn.getMetadata().getCallChains().get(0).getMatchedTransitions()).isNullOrEmpty(); // Elec
|
||||||
|
assertThat(resFurn.getMetadata().getCallChains().get(1).getMatchedTransitions()).hasSize(1); // Furn
|
||||||
|
assertThat(resFurn.getMetadata().getCallChains().get(2).getMatchedTransitions()).isNullOrEmpty(); // Groc
|
||||||
|
|
||||||
|
// Test Groceries SM - Should only keep Groceries Chain
|
||||||
|
enricher.enrich(resGroc, null, null);
|
||||||
|
assertThat(resGroc.getMetadata().getCallChains().get(0).getMatchedTransitions()).isNullOrEmpty(); // Elec
|
||||||
|
assertThat(resGroc.getMetadata().getCallChains().get(1).getMatchedTransitions()).isNullOrEmpty(); // Furn
|
||||||
|
assertThat(resGroc.getMetadata().getCallChains().get(2).getMatchedTransitions()).hasSize(1); // Groc
|
||||||
|
|
||||||
|
// Test ComputerStore SM - Should reject ALL because none belong to computerstore
|
||||||
|
enricher.enrich(resComp, null, null);
|
||||||
|
assertThat(resComp.getMetadata().getCallChains().get(0).getMatchedTransitions()).isNullOrEmpty(); // Elec
|
||||||
|
assertThat(resComp.getMetadata().getCallChains().get(1).getMatchedTransitions()).isNullOrEmpty(); // Furn
|
||||||
|
assertThat(resComp.getMetadata().getCallChains().get(2).getMatchedTransitions()).isNullOrEmpty(); // Groc
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
@@ -0,0 +1,78 @@
|
|||||||
|
package click.kamil.springstatemachineexporter.analysis.enricher.matching;
|
||||||
|
|
||||||
|
import click.kamil.springstatemachineexporter.analysis.model.TriggerPoint;
|
||||||
|
import click.kamil.springstatemachineexporter.model.Event;
|
||||||
|
import org.junit.jupiter.api.Test;
|
||||||
|
|
||||||
|
import java.util.List;
|
||||||
|
|
||||||
|
import static org.assertj.core.api.Assertions.assertThat;
|
||||||
|
|
||||||
|
class HeuristicEventMatchingEngineTest {
|
||||||
|
|
||||||
|
private final HeuristicEventMatchingEngine engine = new HeuristicEventMatchingEngine();
|
||||||
|
|
||||||
|
@Test
|
||||||
|
void shouldMatchExactFqn() {
|
||||||
|
Event smEvent = Event.of("PAY", "com.example.OrderEvents.PAY");
|
||||||
|
TriggerPoint triggerPoint = TriggerPoint.builder().event("com.example.OrderEvents.PAY").build();
|
||||||
|
|
||||||
|
assertThat(engine.matches(smEvent, triggerPoint)).isTrue();
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
void shouldMatchEnumQualifierToFqn() {
|
||||||
|
Event smEvent = Event.of("PAY", "com.example.OrderEvents.PAY");
|
||||||
|
TriggerPoint triggerPoint = TriggerPoint.builder().event("OrderEvents.PAY").build();
|
||||||
|
|
||||||
|
assertThat(engine.matches(smEvent, triggerPoint)).isTrue();
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
void shouldPreventCrossEnumContamination() {
|
||||||
|
Event smEvent = Event.of("PAY", "com.example.InvoiceEvents.PAY");
|
||||||
|
TriggerPoint triggerPoint = TriggerPoint.builder().event("OrderEvents.PAY").build();
|
||||||
|
|
||||||
|
assertThat(engine.matches(smEvent, triggerPoint)).isFalse();
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
void shouldPreventCrossEnumContaminationWithPolymorphicEvents() {
|
||||||
|
Event smEvent = Event.of("PAY", "com.example.InvoiceEvents.PAY");
|
||||||
|
TriggerPoint triggerPoint = TriggerPoint.builder().event("getType()").polymorphicEvents(List.of("OrderEvents.PAY")).build();
|
||||||
|
|
||||||
|
assertThat(engine.matches(smEvent, triggerPoint)).isFalse();
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
void shouldMatchPolymorphicEnumQualifierToFqn() {
|
||||||
|
Event smEvent = Event.of("PAY", "com.example.OrderEvents.PAY");
|
||||||
|
TriggerPoint triggerPoint = TriggerPoint.builder().event("getType()").polymorphicEvents(List.of("OrderEvents.PAY")).build();
|
||||||
|
|
||||||
|
assertThat(engine.matches(smEvent, triggerPoint)).isTrue();
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
void shouldMatchRawStringToFqn() {
|
||||||
|
Event smEvent = Event.of("PAY", "com.example.OrderEvents.PAY");
|
||||||
|
TriggerPoint triggerPoint = TriggerPoint.builder().event("PAY").build();
|
||||||
|
|
||||||
|
assertThat(engine.matches(smEvent, triggerPoint)).isTrue();
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
void shouldMatchRawStringToRawString() {
|
||||||
|
Event smEvent = Event.of("PAY", "PAY");
|
||||||
|
TriggerPoint triggerPoint = TriggerPoint.builder().event("PAY").build();
|
||||||
|
|
||||||
|
assertThat(engine.matches(smEvent, triggerPoint)).isTrue();
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
void shouldMatchPolymorphicRawStringToFqn() {
|
||||||
|
Event smEvent = Event.of("PAY", "com.example.OrderEvents.PAY");
|
||||||
|
TriggerPoint triggerPoint = TriggerPoint.builder().event("getType()").polymorphicEvents(List.of("PAY")).build();
|
||||||
|
|
||||||
|
assertThat(engine.matches(smEvent, triggerPoint)).isTrue();
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,103 @@
|
|||||||
|
package click.kamil.springstatemachineexporter.analysis.enricher.routing;
|
||||||
|
|
||||||
|
import click.kamil.springstatemachineexporter.analysis.model.CallChain;
|
||||||
|
import org.junit.jupiter.api.Tag;
|
||||||
|
import org.junit.jupiter.api.Test;
|
||||||
|
|
||||||
|
import java.util.Arrays;
|
||||||
|
|
||||||
|
import static org.junit.jupiter.api.Assertions.*;
|
||||||
|
|
||||||
|
@Tag("heuristic_bean_resolution")
|
||||||
|
public class HeuristicBeanResolutionEngineTest {
|
||||||
|
|
||||||
|
private final HeuristicBeanResolutionEngine engine = new HeuristicBeanResolutionEngine();
|
||||||
|
|
||||||
|
@Test
|
||||||
|
public void testDeepPackageDivergenceMismatch() {
|
||||||
|
// This is the bug case: sharing a deep root, but diverging into different domains
|
||||||
|
CallChain chain = CallChain.builder()
|
||||||
|
.methodChain(Arrays.asList("com.acme.corp.division.project.orders.OrderService.pay()"))
|
||||||
|
.build();
|
||||||
|
|
||||||
|
String machineName = "com.acme.corp.division.project.payments.PaymentStateMachine";
|
||||||
|
|
||||||
|
boolean result = engine.isRoutedToCorrectMachine(chain, machineName);
|
||||||
|
|
||||||
|
// They share com.acme.corp.division.project, but diverge into orders vs payments
|
||||||
|
// This should be a strong mismatch, so it should return false
|
||||||
|
assertFalse(result, "Deep package divergence into different domains should be rejected");
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
public void testSameDomainMatch() {
|
||||||
|
CallChain chain = CallChain.builder()
|
||||||
|
.methodChain(Arrays.asList("com.acme.ecommerce.orders.OrderService.process()"))
|
||||||
|
.build();
|
||||||
|
|
||||||
|
String machineName = "com.acme.ecommerce.orders.OrderStateMachine";
|
||||||
|
|
||||||
|
boolean result = engine.isRoutedToCorrectMachine(chain, machineName);
|
||||||
|
|
||||||
|
// Same exact domain, should match
|
||||||
|
assertTrue(result, "Same domain should be accepted");
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
public void testSubPackageMatch() {
|
||||||
|
CallChain chain = CallChain.builder()
|
||||||
|
.methodChain(Arrays.asList("com.acme.ecommerce.orders.impl.OrderServiceImpl.process()"))
|
||||||
|
.build();
|
||||||
|
|
||||||
|
String machineName = "com.acme.ecommerce.orders.OrderStateMachine";
|
||||||
|
|
||||||
|
boolean result = engine.isRoutedToCorrectMachine(chain, machineName);
|
||||||
|
|
||||||
|
// Subpackage should match
|
||||||
|
assertTrue(result, "Sub-packages of the same domain should be accepted");
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
public void testSharedDomainTermMatch() {
|
||||||
|
CallChain chain = CallChain.builder()
|
||||||
|
.methodChain(Arrays.asList("com.acme.orders.web.OrderController.submit()"))
|
||||||
|
.build();
|
||||||
|
|
||||||
|
String machineName = "com.acme.orders.service.OrderStateMachine";
|
||||||
|
|
||||||
|
boolean result = engine.isRoutedToCorrectMachine(chain, machineName);
|
||||||
|
|
||||||
|
// Different subpackages, but they share the "order" domain term and common prefix
|
||||||
|
assertTrue(result, "Divergent packages that share a domain term should be accepted");
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
public void testExplicitTargetVariableMatch() {
|
||||||
|
CallChain chain = CallChain.builder()
|
||||||
|
.methodChain(Arrays.asList("com.acme.common.GlobalTrigger.fire()"))
|
||||||
|
.contextMachineId("paymentStateMachine") // Explicitly targets payment
|
||||||
|
.build();
|
||||||
|
|
||||||
|
String machineName = "com.acme.corp.payments.PaymentStateMachine";
|
||||||
|
|
||||||
|
boolean result = engine.isRoutedToCorrectMachine(chain, machineName);
|
||||||
|
|
||||||
|
// Mismatched domains, but explicit variable targeting works
|
||||||
|
assertTrue(result, "Explicit variable target matching the machine name should be accepted");
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
public void testExplicitTargetVariableMismatch() {
|
||||||
|
CallChain chain = CallChain.builder()
|
||||||
|
.methodChain(Arrays.asList("com.acme.common.GlobalTrigger.fire()"))
|
||||||
|
.contextMachineId("paymentStateMachine") // Explicitly targets payment
|
||||||
|
.build();
|
||||||
|
|
||||||
|
String machineName = "com.acme.corp.orders.OrderStateMachine"; // But this is Order
|
||||||
|
|
||||||
|
boolean result = engine.isRoutedToCorrectMachine(chain, machineName);
|
||||||
|
|
||||||
|
// Explicit variable targeting completely conflicts
|
||||||
|
assertFalse(result, "Explicit variable target mismatching the machine name should be rejected");
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -152,4 +152,34 @@ public class ConstantResolverTest {
|
|||||||
String result = resolver.resolve(returnExpr, context);
|
String result = resolver.resolve(returnExpr, context);
|
||||||
assertThat(result).isEqualTo("${app.path}");
|
assertThat(result).isEqualTo("${app.path}");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
void testConstructorAssignmentAndFieldAccess(@TempDir Path tempDir) throws IOException {
|
||||||
|
Path dir = tempDir.resolve("com/example");
|
||||||
|
Files.createDirectories(dir);
|
||||||
|
Files.writeString(dir.resolve("EventDto.java"),
|
||||||
|
"package com.example;\n" +
|
||||||
|
"public class EventDto {\n" +
|
||||||
|
" private String eventType;\n" +
|
||||||
|
" public EventDto() {\n" +
|
||||||
|
" this.eventType = \"PAYMENT_SUCCESS\";\n" +
|
||||||
|
" }\n" +
|
||||||
|
" public String getEventType() {\n" +
|
||||||
|
" return this.eventType;\n" +
|
||||||
|
" }\n" +
|
||||||
|
"}");
|
||||||
|
|
||||||
|
CodebaseContext context = new CodebaseContext();
|
||||||
|
context.scan(tempDir);
|
||||||
|
|
||||||
|
TypeDeclaration td = context.getTypeDeclaration("com.example.EventDto");
|
||||||
|
MethodDeclaration method = td.getMethods()[1]; // getEventType
|
||||||
|
ReturnStatement rs = (ReturnStatement) method.getBody().statements().get(0);
|
||||||
|
Expression returnExpr = rs.getExpression(); // this.eventType
|
||||||
|
|
||||||
|
ConstantResolver resolver = new ConstantResolver();
|
||||||
|
String result = resolver.resolve(returnExpr, context);
|
||||||
|
|
||||||
|
assertThat(result).isEqualTo("PAYMENT_SUCCESS");
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -0,0 +1,60 @@
|
|||||||
|
package click.kamil.springstatemachineexporter.analysis.resolver;
|
||||||
|
|
||||||
|
import org.junit.jupiter.api.Test;
|
||||||
|
import org.junit.jupiter.api.io.TempDir;
|
||||||
|
|
||||||
|
import java.io.IOException;
|
||||||
|
import java.nio.file.Files;
|
||||||
|
import java.nio.file.Path;
|
||||||
|
import java.util.Map;
|
||||||
|
|
||||||
|
import static org.assertj.core.api.Assertions.assertThat;
|
||||||
|
|
||||||
|
class PropertyResolverTest {
|
||||||
|
|
||||||
|
@Test
|
||||||
|
void testYamlPropertiesAreLoadedAndFlattened(@TempDir Path tempDir) throws IOException {
|
||||||
|
Path applicationYml = tempDir.resolve("application.yml");
|
||||||
|
Files.writeString(applicationYml, """
|
||||||
|
messaging:
|
||||||
|
sqs:
|
||||||
|
integration-system1:
|
||||||
|
callback:
|
||||||
|
queue: "integration-system1-queue"
|
||||||
|
""");
|
||||||
|
|
||||||
|
PropertyResolver resolver = new PropertyResolver();
|
||||||
|
Map<String, String> props = resolver.resolveProperties(tempDir);
|
||||||
|
|
||||||
|
assertThat(props).containsEntry("messaging.sqs.integration-system1.callback.queue", "integration-system1-queue");
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
void testPropertiesFilesAreLoaded(@TempDir Path tempDir) throws IOException {
|
||||||
|
Path applicationProps = tempDir.resolve("application.properties");
|
||||||
|
Files.writeString(applicationProps, "messaging.sqs.integration-system1.callback.queue=integration-system1-queue-props");
|
||||||
|
|
||||||
|
PropertyResolver resolver = new PropertyResolver();
|
||||||
|
Map<String, String> props = resolver.resolveProperties(tempDir);
|
||||||
|
|
||||||
|
assertThat(props).containsEntry("messaging.sqs.integration-system1.callback.queue", "integration-system1-queue-props");
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
void testPlaceholderResolution() {
|
||||||
|
PropertyResolver resolver = new PropertyResolver();
|
||||||
|
Map<String, String> properties = Map.of("messaging.sqs.integration-system1.callback.queue", "integration-system1-queue");
|
||||||
|
|
||||||
|
String resolved = resolver.resolveValue("SQS: ${messaging.sqs.integration-system1.callback.queue}", properties);
|
||||||
|
assertThat(resolved).isEqualTo("SQS: integration-system1-queue");
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
void testPlaceholderResolutionWithDefault() {
|
||||||
|
PropertyResolver resolver = new PropertyResolver();
|
||||||
|
Map<String, String> properties = Map.of();
|
||||||
|
|
||||||
|
String resolved = resolver.resolveValue("SQS: ${messaging.sqs.queue:default-queue}", properties);
|
||||||
|
assertThat(resolved).isEqualTo("SQS: default-queue");
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,61 @@
|
|||||||
|
package click.kamil.springstatemachineexporter.analysis.service;
|
||||||
|
|
||||||
|
import click.kamil.springstatemachineexporter.ast.common.CodebaseContext;
|
||||||
|
import click.kamil.springstatemachineexporter.analysis.model.TriggerPoint;
|
||||||
|
import org.junit.jupiter.api.Test;
|
||||||
|
import org.junit.jupiter.api.io.TempDir;
|
||||||
|
import java.nio.file.Files;
|
||||||
|
import java.nio.file.Path;
|
||||||
|
import java.util.List;
|
||||||
|
import static org.assertj.core.api.Assertions.assertThat;
|
||||||
|
|
||||||
|
public class AnonymousClassTests {
|
||||||
|
|
||||||
|
@TempDir
|
||||||
|
Path tempDir;
|
||||||
|
|
||||||
|
@Test
|
||||||
|
void shouldResolveEventFromAnonymousClass() throws Exception {
|
||||||
|
String source = """
|
||||||
|
package com.example;
|
||||||
|
public class AnonymousService {
|
||||||
|
private EventService service;
|
||||||
|
|
||||||
|
public void process() {
|
||||||
|
MyEvent event = new MyEvent() {
|
||||||
|
@Override
|
||||||
|
public String getEvent() {
|
||||||
|
return "ANON_EVENT";
|
||||||
|
}
|
||||||
|
};
|
||||||
|
service.trigger(event.getEvent());
|
||||||
|
}
|
||||||
|
}
|
||||||
|
class EventService {
|
||||||
|
public void trigger(String ev) {}
|
||||||
|
}
|
||||||
|
class MyEvent {
|
||||||
|
public String getEvent() { return "BASE_EVENT"; }
|
||||||
|
}
|
||||||
|
""";
|
||||||
|
|
||||||
|
Files.writeString(tempDir.resolve("AnonymousService.java"), source);
|
||||||
|
CodebaseContext context = new CodebaseContext();
|
||||||
|
context.scan(tempDir);
|
||||||
|
|
||||||
|
HeuristicCallGraphEngine engine = new HeuristicCallGraphEngine(context);
|
||||||
|
|
||||||
|
TriggerPoint trigger = TriggerPoint.builder()
|
||||||
|
.className("com.example.EventService")
|
||||||
|
.methodName("trigger")
|
||||||
|
.sourceFile("AnonymousService.java")
|
||||||
|
.sourceModule("com.example")
|
||||||
|
.event("event.getEvent()")
|
||||||
|
.lineNumber(12)
|
||||||
|
.build();
|
||||||
|
|
||||||
|
TriggerPoint result = engine.resolveTriggerPointParameters(trigger, List.of("com.example.AnonymousService.process", "com.example.EventService.trigger"), java.util.Collections.emptyMap());
|
||||||
|
|
||||||
|
assertThat(result.getPolymorphicEvents()).contains("ANON_EVENT");
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,69 @@
|
|||||||
|
package click.kamil.springstatemachineexporter.analysis.service;
|
||||||
|
|
||||||
|
import click.kamil.springstatemachineexporter.analysis.model.CallChain;
|
||||||
|
import click.kamil.springstatemachineexporter.analysis.model.EntryPoint;
|
||||||
|
import click.kamil.springstatemachineexporter.analysis.model.TriggerPoint;
|
||||||
|
import click.kamil.springstatemachineexporter.ast.common.CodebaseContext;
|
||||||
|
import org.junit.jupiter.api.Test;
|
||||||
|
import org.junit.jupiter.api.io.TempDir;
|
||||||
|
import java.io.IOException;
|
||||||
|
import java.nio.file.Files;
|
||||||
|
import java.nio.file.Path;
|
||||||
|
import java.util.List;
|
||||||
|
import static org.assertj.core.api.Assertions.assertThat;
|
||||||
|
|
||||||
|
class BuilderLocalVariableTest {
|
||||||
|
|
||||||
|
@Test
|
||||||
|
void shouldTraceLocalVariableInBuilderPattern(@TempDir Path tempDir) throws IOException {
|
||||||
|
String source = """
|
||||||
|
package com.example;
|
||||||
|
public class OrderController {
|
||||||
|
private OrderService service;
|
||||||
|
public void processOrderEvent() {
|
||||||
|
OrderEvents e = OrderEvents.PAY;
|
||||||
|
RichOrderEvent event = new RichOrderEvent();
|
||||||
|
event.setType(e);
|
||||||
|
service.updateOrderState(event.getType());
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
class OrderService {
|
||||||
|
public void updateOrderState(OrderEvents event) {}
|
||||||
|
}
|
||||||
|
|
||||||
|
class RichOrderEvent {
|
||||||
|
private OrderEvents type;
|
||||||
|
public void setType(OrderEvents type) { this.type = type; }
|
||||||
|
public OrderEvents getType() { return type; }
|
||||||
|
}
|
||||||
|
|
||||||
|
enum OrderEvents { PAY }
|
||||||
|
""";
|
||||||
|
Files.writeString(tempDir.resolve("OrderConfig.java"), source);
|
||||||
|
|
||||||
|
CodebaseContext context = new CodebaseContext();
|
||||||
|
context.scan(tempDir);
|
||||||
|
|
||||||
|
HeuristicCallGraphEngine builder = new HeuristicCallGraphEngine(context);
|
||||||
|
|
||||||
|
EntryPoint entryPoint = EntryPoint.builder()
|
||||||
|
.className("com.example.OrderController")
|
||||||
|
.methodName("processOrderEvent")
|
||||||
|
.build();
|
||||||
|
|
||||||
|
TriggerPoint trigger = TriggerPoint.builder()
|
||||||
|
.className("com.example.OrderService")
|
||||||
|
.methodName("updateOrderState")
|
||||||
|
.event("event")
|
||||||
|
.build();
|
||||||
|
|
||||||
|
List<CallChain> chains = builder.findChains(List.of(entryPoint), List.of(trigger));
|
||||||
|
|
||||||
|
assertThat(chains).hasSize(1);
|
||||||
|
CallChain chain = chains.get(0);
|
||||||
|
System.out.println("POLY EVENTS FOUND: " + chain.getTriggerPoint().getPolymorphicEvents());
|
||||||
|
assertThat(chain.getTriggerPoint().getPolymorphicEvents())
|
||||||
|
.containsExactlyInAnyOrder("OrderEvents.PAY");
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,54 @@
|
|||||||
|
package click.kamil.springstatemachineexporter.analysis.service;
|
||||||
|
|
||||||
|
import click.kamil.springstatemachineexporter.ast.common.CodebaseContext;
|
||||||
|
import click.kamil.springstatemachineexporter.analysis.model.TriggerPoint;
|
||||||
|
import org.junit.jupiter.api.Test;
|
||||||
|
import org.junit.jupiter.api.io.TempDir;
|
||||||
|
import java.nio.file.Files;
|
||||||
|
import java.nio.file.Path;
|
||||||
|
import java.util.List;
|
||||||
|
import static org.assertj.core.api.Assertions.assertThat;
|
||||||
|
|
||||||
|
public class CollectionIndexingTests {
|
||||||
|
|
||||||
|
@TempDir
|
||||||
|
Path tempDir;
|
||||||
|
|
||||||
|
@Test
|
||||||
|
void shouldResolveEventFromArrayAccess() throws Exception {
|
||||||
|
String source = """
|
||||||
|
package com.example;
|
||||||
|
public class ArrayService {
|
||||||
|
private EventService service;
|
||||||
|
|
||||||
|
public void process() {
|
||||||
|
String[] events = new String[] {"EVENT_1", "EVENT_2"};
|
||||||
|
service.trigger(events[0]);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
class EventService {
|
||||||
|
public void trigger(String ev) {}
|
||||||
|
}
|
||||||
|
""";
|
||||||
|
|
||||||
|
Files.writeString(tempDir.resolve("ArrayService.java"), source);
|
||||||
|
CodebaseContext context = new CodebaseContext();
|
||||||
|
context.scan(tempDir);
|
||||||
|
|
||||||
|
HeuristicCallGraphEngine engine = new HeuristicCallGraphEngine(context);
|
||||||
|
|
||||||
|
TriggerPoint trigger = TriggerPoint.builder()
|
||||||
|
.className("com.example.EventService")
|
||||||
|
.methodName("trigger")
|
||||||
|
.sourceFile("ArrayService.java")
|
||||||
|
.sourceModule("com.example")
|
||||||
|
.event("events[0]")
|
||||||
|
.lineNumber(7)
|
||||||
|
.build();
|
||||||
|
|
||||||
|
TriggerPoint result = engine.resolveTriggerPointParameters(trigger, List.of("com.example.ArrayService.process", "com.example.EventService.trigger"), java.util.Collections.emptyMap());
|
||||||
|
|
||||||
|
// When using array indexing, we should ideally extract the indexed element or at least all elements in the array
|
||||||
|
assertThat(result.getPolymorphicEvents()).contains("EVENT_1");
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,412 @@
|
|||||||
|
package click.kamil.springstatemachineexporter.analysis.service;
|
||||||
|
|
||||||
|
import click.kamil.springstatemachineexporter.analysis.model.CallChain;
|
||||||
|
import click.kamil.springstatemachineexporter.analysis.model.EntryPoint;
|
||||||
|
import click.kamil.springstatemachineexporter.analysis.model.TriggerPoint;
|
||||||
|
import click.kamil.springstatemachineexporter.ast.common.CodebaseContext;
|
||||||
|
import org.junit.jupiter.api.Test;
|
||||||
|
import org.junit.jupiter.api.io.TempDir;
|
||||||
|
import java.io.IOException;
|
||||||
|
import java.nio.file.Files;
|
||||||
|
import java.nio.file.Path;
|
||||||
|
import java.util.List;
|
||||||
|
import static org.assertj.core.api.Assertions.assertThat;
|
||||||
|
|
||||||
|
class ConstructorInvocationTest {
|
||||||
|
|
||||||
|
@Test
|
||||||
|
void shouldNotBlindlyAddAllConstructorArguments(@TempDir Path tempDir) throws IOException {
|
||||||
|
String source = """
|
||||||
|
package com.example;
|
||||||
|
public class OrderController {
|
||||||
|
private OrderService service;
|
||||||
|
public void processOrderEvent(RichOrderEvent domainEvent) {
|
||||||
|
service.updateOrderState(domainEvent.getType());
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
class OrderService {
|
||||||
|
public void updateOrderState(OrderEvents event) {}
|
||||||
|
}
|
||||||
|
|
||||||
|
class RichOrderEvent {
|
||||||
|
private OrderEvents type;
|
||||||
|
private String irrelevantInfo;
|
||||||
|
|
||||||
|
public RichOrderEvent() {
|
||||||
|
this(OrderEvents.PAY, "DEFAULT_INFO");
|
||||||
|
}
|
||||||
|
|
||||||
|
public RichOrderEvent(OrderEvents type, String info) {
|
||||||
|
this.type = type;
|
||||||
|
this.irrelevantInfo = info;
|
||||||
|
}
|
||||||
|
|
||||||
|
public OrderEvents getType() { return type; }
|
||||||
|
}
|
||||||
|
|
||||||
|
enum OrderEvents { PAY }
|
||||||
|
""";
|
||||||
|
Files.writeString(tempDir.resolve("OrderConfig.java"), source);
|
||||||
|
|
||||||
|
CodebaseContext context = new CodebaseContext();
|
||||||
|
context.scan(tempDir);
|
||||||
|
|
||||||
|
HeuristicCallGraphEngine builder = new HeuristicCallGraphEngine(context);
|
||||||
|
|
||||||
|
EntryPoint entryPoint = EntryPoint.builder()
|
||||||
|
.className("com.example.OrderController")
|
||||||
|
.methodName("processOrderEvent")
|
||||||
|
.build();
|
||||||
|
|
||||||
|
TriggerPoint trigger = TriggerPoint.builder()
|
||||||
|
.className("com.example.OrderService")
|
||||||
|
.methodName("updateOrderState")
|
||||||
|
.event("event")
|
||||||
|
.build();
|
||||||
|
|
||||||
|
List<CallChain> chains = builder.findChains(List.of(entryPoint), List.of(trigger));
|
||||||
|
|
||||||
|
assertThat(chains).hasSize(1);
|
||||||
|
CallChain chain = chains.get(0);
|
||||||
|
assertThat(chain.getTriggerPoint().getPolymorphicEvents())
|
||||||
|
.contains("OrderEvents.PAY")
|
||||||
|
.doesNotContain("DEFAULT_INFO");
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@Test
|
||||||
|
void shouldHandleOverloadedConstructorsGracefully(@TempDir Path tempDir) throws IOException {
|
||||||
|
String source = """
|
||||||
|
package com.example;
|
||||||
|
public class OrderController {
|
||||||
|
private OrderService service;
|
||||||
|
public void processOrderEvent(RichOrderEvent domainEvent) {
|
||||||
|
service.updateOrderState(domainEvent.getType());
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
class OrderService {
|
||||||
|
public void updateOrderState(OrderEvents event) {}
|
||||||
|
}
|
||||||
|
|
||||||
|
class RichOrderEvent {
|
||||||
|
private OrderEvents type;
|
||||||
|
private String irrelevantInfo;
|
||||||
|
private int count;
|
||||||
|
|
||||||
|
public RichOrderEvent() {
|
||||||
|
this(OrderEvents.PAY, "DEFAULT_INFO");
|
||||||
|
}
|
||||||
|
|
||||||
|
// Overloaded constructor 1
|
||||||
|
public RichOrderEvent(OrderEvents type, String info) {
|
||||||
|
this.type = type;
|
||||||
|
this.irrelevantInfo = info;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Overloaded constructor 2 (same number of arguments!)
|
||||||
|
public RichOrderEvent(String info, int count) {
|
||||||
|
this.irrelevantInfo = info;
|
||||||
|
this.count = count;
|
||||||
|
// type is not set here
|
||||||
|
}
|
||||||
|
|
||||||
|
public OrderEvents getType() { return type; }
|
||||||
|
}
|
||||||
|
|
||||||
|
enum OrderEvents { PAY }
|
||||||
|
""";
|
||||||
|
Files.writeString(tempDir.resolve("OrderConfig.java"), source);
|
||||||
|
|
||||||
|
CodebaseContext context = new CodebaseContext();
|
||||||
|
context.scan(tempDir);
|
||||||
|
|
||||||
|
HeuristicCallGraphEngine builder = new HeuristicCallGraphEngine(context);
|
||||||
|
|
||||||
|
EntryPoint entryPoint = EntryPoint.builder()
|
||||||
|
.className("com.example.OrderController")
|
||||||
|
.methodName("processOrderEvent")
|
||||||
|
.build();
|
||||||
|
|
||||||
|
TriggerPoint trigger = TriggerPoint.builder()
|
||||||
|
.className("com.example.OrderService")
|
||||||
|
.methodName("updateOrderState")
|
||||||
|
.event("event")
|
||||||
|
.build();
|
||||||
|
|
||||||
|
List<CallChain> chains = builder.findChains(List.of(entryPoint), List.of(trigger));
|
||||||
|
|
||||||
|
assertThat(chains).hasSize(1);
|
||||||
|
CallChain chain = chains.get(0);
|
||||||
|
assertThat(chain.getTriggerPoint().getPolymorphicEvents())
|
||||||
|
.contains("OrderEvents.PAY")
|
||||||
|
.doesNotContain("DEFAULT_INFO")
|
||||||
|
.doesNotContain("count");
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@Test
|
||||||
|
void shouldHandleChainedConstructorDelegationGracefully(@TempDir Path tempDir) throws IOException {
|
||||||
|
String source = """
|
||||||
|
package com.example;
|
||||||
|
public class OrderController {
|
||||||
|
private OrderService service;
|
||||||
|
public void processOrderEvent(RichOrderEvent domainEvent) {
|
||||||
|
service.updateOrderState(domainEvent.getType());
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
class OrderService {
|
||||||
|
public void updateOrderState(OrderEvents event) {}
|
||||||
|
}
|
||||||
|
|
||||||
|
class BaseEvent {
|
||||||
|
protected OrderEvents type;
|
||||||
|
public BaseEvent(OrderEvents type) {
|
||||||
|
this.type = type;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
class RichOrderEvent extends BaseEvent {
|
||||||
|
public RichOrderEvent() {
|
||||||
|
this(OrderEvents.PAY);
|
||||||
|
}
|
||||||
|
|
||||||
|
public RichOrderEvent(OrderEvents type) {
|
||||||
|
this(type, "DEFAULT_INFO");
|
||||||
|
}
|
||||||
|
|
||||||
|
public RichOrderEvent(OrderEvents type, String info) {
|
||||||
|
super(type);
|
||||||
|
}
|
||||||
|
|
||||||
|
public OrderEvents getType() { return type; }
|
||||||
|
}
|
||||||
|
|
||||||
|
enum OrderEvents { PAY }
|
||||||
|
""";
|
||||||
|
Files.writeString(tempDir.resolve("OrderConfig.java"), source);
|
||||||
|
|
||||||
|
CodebaseContext context = new CodebaseContext();
|
||||||
|
context.scan(tempDir);
|
||||||
|
|
||||||
|
HeuristicCallGraphEngine builder = new HeuristicCallGraphEngine(context);
|
||||||
|
|
||||||
|
EntryPoint entryPoint = EntryPoint.builder()
|
||||||
|
.className("com.example.OrderController")
|
||||||
|
.methodName("processOrderEvent")
|
||||||
|
.build();
|
||||||
|
|
||||||
|
TriggerPoint trigger = TriggerPoint.builder()
|
||||||
|
.className("com.example.OrderService")
|
||||||
|
.methodName("updateOrderState")
|
||||||
|
.event("event")
|
||||||
|
.build();
|
||||||
|
|
||||||
|
List<CallChain> chains = builder.findChains(List.of(entryPoint), List.of(trigger));
|
||||||
|
|
||||||
|
assertThat(chains).hasSize(1);
|
||||||
|
CallChain chain = chains.get(0);
|
||||||
|
assertThat(chain.getTriggerPoint().getPolymorphicEvents())
|
||||||
|
.contains("OrderEvents.PAY")
|
||||||
|
.doesNotContain("DEFAULT_INFO");
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
void shouldHandleFieldAccessGracefully(@TempDir Path tempDir) throws IOException {
|
||||||
|
String source = """
|
||||||
|
package com.example;
|
||||||
|
public class OrderController {
|
||||||
|
private OrderService service;
|
||||||
|
public void processOrderEvent(RichOrderEvent domainEvent) {
|
||||||
|
service.updateOrderState(domainEvent.getType());
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
class OrderService {
|
||||||
|
public void updateOrderState(OrderEvents event) {}
|
||||||
|
}
|
||||||
|
|
||||||
|
class RichOrderEvent {
|
||||||
|
private OrderEvents type;
|
||||||
|
|
||||||
|
public RichOrderEvent() {
|
||||||
|
this(OrderEvents.PAY);
|
||||||
|
}
|
||||||
|
|
||||||
|
public RichOrderEvent(OrderEvents type) {
|
||||||
|
this.type = type;
|
||||||
|
}
|
||||||
|
|
||||||
|
public OrderEvents getType() {
|
||||||
|
return this.type; // Specifically testing FieldAccess
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
enum OrderEvents { PAY }
|
||||||
|
""";
|
||||||
|
Files.writeString(tempDir.resolve("OrderConfig.java"), source);
|
||||||
|
|
||||||
|
CodebaseContext context = new CodebaseContext();
|
||||||
|
context.scan(tempDir);
|
||||||
|
|
||||||
|
HeuristicCallGraphEngine builder = new HeuristicCallGraphEngine(context);
|
||||||
|
|
||||||
|
EntryPoint entryPoint = EntryPoint.builder()
|
||||||
|
.className("com.example.OrderController")
|
||||||
|
.methodName("processOrderEvent")
|
||||||
|
.build();
|
||||||
|
|
||||||
|
TriggerPoint trigger = TriggerPoint.builder()
|
||||||
|
.className("com.example.OrderService")
|
||||||
|
.methodName("updateOrderState")
|
||||||
|
.event("event")
|
||||||
|
.build();
|
||||||
|
|
||||||
|
List<CallChain> chains = builder.findChains(List.of(entryPoint), List.of(trigger));
|
||||||
|
|
||||||
|
assertThat(chains).hasSize(1);
|
||||||
|
CallChain chain = chains.get(0);
|
||||||
|
assertThat(chain.getTriggerPoint().getPolymorphicEvents())
|
||||||
|
.contains("OrderEvents.PAY");
|
||||||
|
}
|
||||||
|
@Test
|
||||||
|
void shouldTraceThroughWrappedConstructorArguments(@TempDir Path tempDir) throws IOException {
|
||||||
|
String source = """
|
||||||
|
package com.example;
|
||||||
|
import java.util.Objects;
|
||||||
|
|
||||||
|
public class OrderController {
|
||||||
|
private OrderService service;
|
||||||
|
public void processOrderEvent(RichOrderEvent domainEvent) {
|
||||||
|
service.updateOrderState(domainEvent.getType());
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
class OrderService {
|
||||||
|
public void updateOrderState(OrderEvents event) {}
|
||||||
|
}
|
||||||
|
|
||||||
|
class RichOrderEvent {
|
||||||
|
private OrderEvents type;
|
||||||
|
|
||||||
|
public RichOrderEvent() {
|
||||||
|
this(Objects.requireNonNull(OrderEvents.PAY));
|
||||||
|
}
|
||||||
|
|
||||||
|
public RichOrderEvent(OrderEvents type) {
|
||||||
|
this((OrderEvents) type, "DEFAULT_INFO");
|
||||||
|
}
|
||||||
|
|
||||||
|
public RichOrderEvent(OrderEvents type, String info) {
|
||||||
|
this.type = Objects.requireNonNull(type);
|
||||||
|
}
|
||||||
|
|
||||||
|
public OrderEvents getType() { return type; }
|
||||||
|
}
|
||||||
|
|
||||||
|
enum OrderEvents { PAY }
|
||||||
|
""";
|
||||||
|
Files.writeString(tempDir.resolve("OrderConfig.java"), source);
|
||||||
|
|
||||||
|
CodebaseContext context = new CodebaseContext();
|
||||||
|
context.scan(tempDir);
|
||||||
|
|
||||||
|
HeuristicCallGraphEngine builder = new HeuristicCallGraphEngine(context);
|
||||||
|
|
||||||
|
EntryPoint entryPoint = EntryPoint.builder()
|
||||||
|
.className("com.example.OrderController")
|
||||||
|
.methodName("processOrderEvent")
|
||||||
|
.build();
|
||||||
|
|
||||||
|
TriggerPoint trigger = TriggerPoint.builder()
|
||||||
|
.className("com.example.OrderService")
|
||||||
|
.methodName("updateOrderState")
|
||||||
|
.event("event")
|
||||||
|
.build();
|
||||||
|
|
||||||
|
List<CallChain> chains = builder.findChains(List.of(entryPoint), List.of(trigger));
|
||||||
|
|
||||||
|
assertThat(chains).hasSize(1);
|
||||||
|
CallChain chain = chains.get(0);
|
||||||
|
assertThat(chain.getTriggerPoint().getPolymorphicEvents())
|
||||||
|
.contains("OrderEvents.PAY");
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
void shouldTraceThroughComplexOverloadedConstructors(@TempDir Path tempDir) throws IOException {
|
||||||
|
String source = """
|
||||||
|
package com.example;
|
||||||
|
|
||||||
|
public class OrderController {
|
||||||
|
private OrderService service;
|
||||||
|
public void processOrderEvent(EnterpriseEvent domainEvent) {
|
||||||
|
service.updateOrderState(domainEvent.getType());
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
class OrderService {
|
||||||
|
public void updateOrderState(OrderEvents event) {}
|
||||||
|
}
|
||||||
|
|
||||||
|
class EnterpriseEvent {
|
||||||
|
private OrderEvents type;
|
||||||
|
private String info;
|
||||||
|
|
||||||
|
public EnterpriseEvent() {
|
||||||
|
this(OrderEvents.PAY);
|
||||||
|
}
|
||||||
|
|
||||||
|
// Matches by parameter count but wrong type!
|
||||||
|
public EnterpriseEvent(String info) {
|
||||||
|
this.info = info;
|
||||||
|
}
|
||||||
|
|
||||||
|
public EnterpriseEvent(OrderEvents type) {
|
||||||
|
this("info", type);
|
||||||
|
}
|
||||||
|
|
||||||
|
// Target of previous constructor
|
||||||
|
public EnterpriseEvent(String info, OrderEvents type) {
|
||||||
|
this(type, info, null);
|
||||||
|
}
|
||||||
|
|
||||||
|
// Final destination
|
||||||
|
public EnterpriseEvent(OrderEvents type, String info, Object extra) {
|
||||||
|
this.type = type;
|
||||||
|
this.info = info;
|
||||||
|
}
|
||||||
|
|
||||||
|
public OrderEvents getType() { return type; }
|
||||||
|
}
|
||||||
|
|
||||||
|
enum OrderEvents { PAY }
|
||||||
|
""";
|
||||||
|
Files.writeString(tempDir.resolve("OrderConfig.java"), source);
|
||||||
|
|
||||||
|
CodebaseContext context = new CodebaseContext();
|
||||||
|
context.scan(tempDir);
|
||||||
|
|
||||||
|
HeuristicCallGraphEngine builder = new HeuristicCallGraphEngine(context);
|
||||||
|
|
||||||
|
EntryPoint entryPoint = EntryPoint.builder()
|
||||||
|
.className("com.example.OrderController")
|
||||||
|
.methodName("processOrderEvent")
|
||||||
|
.build();
|
||||||
|
|
||||||
|
TriggerPoint trigger = TriggerPoint.builder()
|
||||||
|
.className("com.example.OrderService")
|
||||||
|
.methodName("updateOrderState")
|
||||||
|
.event("event")
|
||||||
|
.build();
|
||||||
|
|
||||||
|
List<CallChain> chains = builder.findChains(List.of(entryPoint), List.of(trigger));
|
||||||
|
|
||||||
|
assertThat(chains).hasSize(1);
|
||||||
|
CallChain chain = chains.get(0);
|
||||||
|
assertThat(chain.getTriggerPoint().getPolymorphicEvents())
|
||||||
|
.contains("OrderEvents.PAY");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
@@ -0,0 +1,72 @@
|
|||||||
|
package click.kamil.springstatemachineexporter.analysis.service;
|
||||||
|
|
||||||
|
import click.kamil.springstatemachineexporter.analysis.model.CallChain;
|
||||||
|
import click.kamil.springstatemachineexporter.analysis.model.EntryPoint;
|
||||||
|
import click.kamil.springstatemachineexporter.analysis.model.TriggerPoint;
|
||||||
|
import click.kamil.springstatemachineexporter.ast.common.CodebaseContext;
|
||||||
|
import org.junit.jupiter.api.Test;
|
||||||
|
import org.junit.jupiter.api.io.TempDir;
|
||||||
|
import java.io.IOException;
|
||||||
|
import java.nio.file.Files;
|
||||||
|
import java.nio.file.Path;
|
||||||
|
import java.util.List;
|
||||||
|
import static org.assertj.core.api.Assertions.assertThat;
|
||||||
|
|
||||||
|
class ConstructorLocalVariableTest {
|
||||||
|
|
||||||
|
@Test
|
||||||
|
void shouldTraceLocalVariableInConstructor(@TempDir Path tempDir) throws IOException {
|
||||||
|
String source = """
|
||||||
|
package com.example;
|
||||||
|
public class OrderController {
|
||||||
|
private OrderService service;
|
||||||
|
public void processOrderEvent(RichOrderEvent domainEvent) {
|
||||||
|
service.updateOrderState(domainEvent.getType());
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
class OrderService {
|
||||||
|
public void updateOrderState(OrderEvents event) {}
|
||||||
|
}
|
||||||
|
|
||||||
|
class RichOrderEvent {
|
||||||
|
private OrderEvents type;
|
||||||
|
|
||||||
|
public RichOrderEvent() {
|
||||||
|
OrderEvents e = OrderEvents.PAY;
|
||||||
|
this.type = e;
|
||||||
|
}
|
||||||
|
|
||||||
|
public OrderEvents getType() {
|
||||||
|
return type;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
enum OrderEvents { PAY }
|
||||||
|
""";
|
||||||
|
Files.writeString(tempDir.resolve("OrderConfig.java"), source);
|
||||||
|
|
||||||
|
CodebaseContext context = new CodebaseContext();
|
||||||
|
context.scan(tempDir);
|
||||||
|
|
||||||
|
HeuristicCallGraphEngine builder = new HeuristicCallGraphEngine(context);
|
||||||
|
|
||||||
|
EntryPoint entryPoint = EntryPoint.builder()
|
||||||
|
.className("com.example.OrderController")
|
||||||
|
.methodName("processOrderEvent")
|
||||||
|
.build();
|
||||||
|
|
||||||
|
TriggerPoint trigger = TriggerPoint.builder()
|
||||||
|
.className("com.example.OrderService")
|
||||||
|
.methodName("updateOrderState")
|
||||||
|
.event("event")
|
||||||
|
.build();
|
||||||
|
|
||||||
|
List<CallChain> chains = builder.findChains(List.of(entryPoint), List.of(trigger));
|
||||||
|
|
||||||
|
assertThat(chains).hasSize(1);
|
||||||
|
CallChain chain = chains.get(0);
|
||||||
|
assertThat(chain.getTriggerPoint().getPolymorphicEvents())
|
||||||
|
.containsExactlyInAnyOrder("OrderEvents.PAY");
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,78 @@
|
|||||||
|
package click.kamil.springstatemachineexporter.analysis.service;
|
||||||
|
|
||||||
|
import org.junit.jupiter.api.Tag;
|
||||||
|
import org.junit.jupiter.api.Test;
|
||||||
|
import org.junit.jupiter.api.io.TempDir;
|
||||||
|
|
||||||
|
import java.io.File;
|
||||||
|
import java.io.IOException;
|
||||||
|
import java.nio.file.Files;
|
||||||
|
import java.nio.file.Path;
|
||||||
|
import java.util.List;
|
||||||
|
|
||||||
|
import static org.assertj.core.api.Assertions.assertThat;
|
||||||
|
|
||||||
|
@Tag("dynamic_classpath_resolver")
|
||||||
|
class DynamicClasspathResolverTest {
|
||||||
|
|
||||||
|
@Test
|
||||||
|
void shouldResolveMavenClasspathDynamically(@TempDir Path tempDir) throws IOException {
|
||||||
|
// Create dummy pom.xml
|
||||||
|
Files.createFile(tempDir.resolve("pom.xml"));
|
||||||
|
|
||||||
|
// Mock the resolver so it doesn't actually run maven, but writes the expected output file
|
||||||
|
DynamicClasspathResolver resolver = new DynamicClasspathResolver() {
|
||||||
|
@Override
|
||||||
|
protected void runProcess(ProcessBuilder pb) throws IOException {
|
||||||
|
// Pretend maven executed and generated the cp.txt
|
||||||
|
String cp = "/fake/m2/repo/spring-core.jar" + File.pathSeparator + "/fake/m2/repo/spring-context.jar";
|
||||||
|
|
||||||
|
String outputFileArg = pb.command().stream()
|
||||||
|
.filter(arg -> arg.startsWith("-Dmdep.outputFile="))
|
||||||
|
.findFirst()
|
||||||
|
.orElseThrow();
|
||||||
|
Path outputFile = Path.of(outputFileArg.substring("-Dmdep.outputFile=".length()));
|
||||||
|
|
||||||
|
Files.writeString(outputFile, cp);
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
List<String> classpath = resolver.resolveClasspath(tempDir);
|
||||||
|
|
||||||
|
assertThat(classpath).containsExactly(
|
||||||
|
"/fake/m2/repo/spring-core.jar",
|
||||||
|
"/fake/m2/repo/spring-context.jar"
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
void shouldResolveGradleClasspathDynamically(@TempDir Path tempDir) throws IOException {
|
||||||
|
// Create dummy build.gradle
|
||||||
|
Files.createFile(tempDir.resolve("build.gradle"));
|
||||||
|
|
||||||
|
DynamicClasspathResolver resolver = new DynamicClasspathResolver() {
|
||||||
|
@Override
|
||||||
|
protected String runProcessAndGetOutput(ProcessBuilder pb) {
|
||||||
|
// Pretend gradle executed and printed the marker
|
||||||
|
String cp = "/fake/gradle/caches/spring-core.jar" + File.pathSeparator + "/fake/gradle/caches/spring-context.jar";
|
||||||
|
return "Some noisy gradle output\n" +
|
||||||
|
"SME_CLASSPATH_MARKER:" + cp + "\n" +
|
||||||
|
"BUILD SUCCESSFUL\n";
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
List<String> classpath = resolver.resolveClasspath(tempDir);
|
||||||
|
|
||||||
|
assertThat(classpath).containsExactly(
|
||||||
|
"/fake/gradle/caches/spring-core.jar",
|
||||||
|
"/fake/gradle/caches/spring-context.jar"
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
void shouldReturnEmptyListIfNoBuildFileFound(@TempDir Path tempDir) {
|
||||||
|
DynamicClasspathResolver resolver = new DynamicClasspathResolver();
|
||||||
|
List<String> classpath = resolver.resolveClasspath(tempDir);
|
||||||
|
assertThat(classpath).isEmpty();
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,132 @@
|
|||||||
|
package click.kamil.springstatemachineexporter.analysis.service;
|
||||||
|
|
||||||
|
import click.kamil.springstatemachineexporter.analysis.model.TriggerPoint;
|
||||||
|
import click.kamil.springstatemachineexporter.analysis.resolver.ConstantResolver;
|
||||||
|
import click.kamil.springstatemachineexporter.ast.common.CodebaseContext;
|
||||||
|
import org.junit.jupiter.api.Tag;
|
||||||
|
import org.junit.jupiter.api.Test;
|
||||||
|
import org.junit.jupiter.api.io.TempDir;
|
||||||
|
|
||||||
|
import java.io.IOException;
|
||||||
|
import java.nio.file.Files;
|
||||||
|
import java.nio.file.Path;
|
||||||
|
import java.util.Collections;
|
||||||
|
import java.util.List;
|
||||||
|
|
||||||
|
import static org.assertj.core.api.Assertions.assertThat;
|
||||||
|
|
||||||
|
@Tag("control_flow_sibling_avoidance")
|
||||||
|
class GenericEventDetectorControlFlowTest {
|
||||||
|
|
||||||
|
@Test
|
||||||
|
void shouldDetectStateFromDirectIfWrapper(@TempDir Path tempDir) throws IOException {
|
||||||
|
String source = """
|
||||||
|
package com.example;
|
||||||
|
public class OrderService {
|
||||||
|
private StateMachine sm;
|
||||||
|
public void processOrder(OrderState state) {
|
||||||
|
if (state == OrderState.PENDING) {
|
||||||
|
sm.sendEvent(OrderEvent.PAY);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
class StateMachine {
|
||||||
|
public void sendEvent(OrderEvent e) {}
|
||||||
|
}
|
||||||
|
|
||||||
|
enum OrderState { PENDING }
|
||||||
|
enum OrderEvent { PAY }
|
||||||
|
""";
|
||||||
|
Files.writeString(tempDir.resolve("OrderService.java"), source);
|
||||||
|
|
||||||
|
CodebaseContext context = new CodebaseContext();
|
||||||
|
context.scan(tempDir);
|
||||||
|
|
||||||
|
GenericEventDetector detector = new GenericEventDetector(context, new ConstantResolver(), Collections.emptyList());
|
||||||
|
List<TriggerPoint> triggers = detector.detect((org.eclipse.jdt.core.dom.CompilationUnit) context.getTypeDeclaration("com.example.OrderService").getRoot());
|
||||||
|
|
||||||
|
assertThat(triggers).hasSize(1);
|
||||||
|
TriggerPoint tp = triggers.get(0);
|
||||||
|
assertThat(tp.getEvent()).isEqualTo("OrderEvent.PAY");
|
||||||
|
assertThat(tp.getSourceState()).isEqualTo("PENDING");
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
void shouldDetectStateFromGuardClauseSibling(@TempDir Path tempDir) throws IOException {
|
||||||
|
String source = """
|
||||||
|
package com.example;
|
||||||
|
public class OrderService {
|
||||||
|
private StateMachine sm;
|
||||||
|
public void processOrder(OrderState state) {
|
||||||
|
if (state != OrderState.PENDING) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
sm.sendEvent(OrderEvent.PAY);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
class StateMachine {
|
||||||
|
public void sendEvent(OrderEvent e) {}
|
||||||
|
}
|
||||||
|
|
||||||
|
enum OrderState { PENDING }
|
||||||
|
enum OrderEvent { PAY }
|
||||||
|
""";
|
||||||
|
Files.writeString(tempDir.resolve("OrderService.java"), source);
|
||||||
|
|
||||||
|
CodebaseContext context = new CodebaseContext();
|
||||||
|
context.scan(tempDir);
|
||||||
|
|
||||||
|
GenericEventDetector detector = new GenericEventDetector(context, new ConstantResolver(), Collections.emptyList());
|
||||||
|
List<TriggerPoint> triggers = detector.detect((org.eclipse.jdt.core.dom.CompilationUnit) context.getTypeDeclaration("com.example.OrderService").getRoot());
|
||||||
|
|
||||||
|
assertThat(triggers).hasSize(1);
|
||||||
|
TriggerPoint tp = triggers.get(0);
|
||||||
|
assertThat(tp.getEvent()).isEqualTo("OrderEvent.PAY");
|
||||||
|
assertThat(tp.getSourceState()).isEqualTo("PENDING");
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
void shouldDetectStateFromSwitchCaseSibling(@TempDir Path tempDir) throws IOException {
|
||||||
|
String source = """
|
||||||
|
package com.example;
|
||||||
|
public class OrderService {
|
||||||
|
private StateMachine sm;
|
||||||
|
public void processOrder(OrderState state) {
|
||||||
|
switch (state) {
|
||||||
|
case PENDING:
|
||||||
|
sm.sendEvent(OrderEvent.PAY);
|
||||||
|
break;
|
||||||
|
case PAID:
|
||||||
|
sm.sendEvent(OrderEvent.SHIP);
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
class StateMachine {
|
||||||
|
public void sendEvent(OrderEvent e) {}
|
||||||
|
}
|
||||||
|
|
||||||
|
enum OrderState { PENDING, PAID }
|
||||||
|
enum OrderEvent { PAY, SHIP }
|
||||||
|
""";
|
||||||
|
Files.writeString(tempDir.resolve("OrderService.java"), source);
|
||||||
|
|
||||||
|
CodebaseContext context = new CodebaseContext();
|
||||||
|
context.scan(tempDir);
|
||||||
|
|
||||||
|
GenericEventDetector detector = new GenericEventDetector(context, new ConstantResolver(), Collections.emptyList());
|
||||||
|
List<TriggerPoint> triggers = detector.detect((org.eclipse.jdt.core.dom.CompilationUnit) context.getTypeDeclaration("com.example.OrderService").getRoot());
|
||||||
|
|
||||||
|
assertThat(triggers).hasSize(2);
|
||||||
|
|
||||||
|
TriggerPoint payTrigger = triggers.stream().filter(t -> t.getEvent().equals("OrderEvent.PAY")).findFirst().get();
|
||||||
|
assertThat(payTrigger.getSourceState()).isEqualTo("PENDING");
|
||||||
|
|
||||||
|
TriggerPoint shipTrigger = triggers.stream().filter(t -> t.getEvent().equals("OrderEvent.SHIP")).findFirst().get();
|
||||||
|
assertThat(shipTrigger.getSourceState()).isEqualTo("PAID");
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -45,6 +45,35 @@ public class GenericEventDetectorTest {
|
|||||||
assertThat(triggers.get(0).getMethodName()).isEqualTo("a");
|
assertThat(triggers.get(0).getMethodName()).isEqualTo("a");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
void testMessageBuilderIntermediateVariable(@TempDir Path tempDir) throws IOException {
|
||||||
|
Path dir = tempDir.resolve("com/example");
|
||||||
|
Files.createDirectories(dir);
|
||||||
|
Files.writeString(dir.resolve("MyService.java"),
|
||||||
|
"package com.example;\n" +
|
||||||
|
"import org.springframework.messaging.support.MessageBuilder;\n" +
|
||||||
|
"import org.springframework.messaging.Message;\n" +
|
||||||
|
"import org.springframework.statemachine.StateMachine;\n" +
|
||||||
|
"public class MyService {\n" +
|
||||||
|
" private StateMachine<String, String> stateMachine;\n" +
|
||||||
|
" private void a(MyInterface myEvent) {\n" +
|
||||||
|
" MessageBuilder<MyInterface> messageBuilder = MessageBuilder.withPayload(myEvent).setHeader(\"k\", \"v\");\n" +
|
||||||
|
" stateMachine.sendEvent(messageBuilder.build());\n" +
|
||||||
|
" }\n" +
|
||||||
|
"}\n");
|
||||||
|
|
||||||
|
CodebaseContext context = new CodebaseContext();
|
||||||
|
context.scan(tempDir);
|
||||||
|
|
||||||
|
GenericEventDetector detector = new GenericEventDetector(context, new ConstantResolver(), List.of());
|
||||||
|
CompilationUnit cu = context.getCompilationUnits().iterator().next();
|
||||||
|
List<TriggerPoint> triggers = detector.detect(cu);
|
||||||
|
|
||||||
|
assertThat(triggers).hasSize(1);
|
||||||
|
assertThat(triggers.get(0).getEvent()).isEqualTo("myEvent");
|
||||||
|
assertThat(triggers.get(0).getMethodName()).isEqualTo("a");
|
||||||
|
}
|
||||||
|
|
||||||
@Test
|
@Test
|
||||||
void testEnumGetterUnionExtraction(@TempDir Path tempDir) throws IOException {
|
void testEnumGetterUnionExtraction(@TempDir Path tempDir) throws IOException {
|
||||||
Path dir = tempDir.resolve("com/example");
|
Path dir = tempDir.resolve("com/example");
|
||||||
|
|||||||
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,285 @@
|
|||||||
|
package click.kamil.springstatemachineexporter.analysis.service;
|
||||||
|
|
||||||
|
import click.kamil.springstatemachineexporter.analysis.model.CallChain;
|
||||||
|
import click.kamil.springstatemachineexporter.analysis.model.EntryPoint;
|
||||||
|
import click.kamil.springstatemachineexporter.analysis.model.TriggerPoint;
|
||||||
|
import click.kamil.springstatemachineexporter.analysis.spring.InjectionPointAnalyzer;
|
||||||
|
import click.kamil.springstatemachineexporter.analysis.spring.SpringBeanRegistry;
|
||||||
|
import click.kamil.springstatemachineexporter.analysis.spring.SpringContextScanner;
|
||||||
|
import click.kamil.springstatemachineexporter.analysis.spring.SpringDependencyResolver;
|
||||||
|
import click.kamil.springstatemachineexporter.ast.common.CodebaseContext;
|
||||||
|
import click.kamil.springstatemachineexporter.analysis.service.DynamicClasspathResolver;
|
||||||
|
import org.junit.jupiter.api.BeforeEach;
|
||||||
|
import org.junit.jupiter.api.Test;
|
||||||
|
|
||||||
|
import java.io.IOException;
|
||||||
|
import java.nio.file.Path;
|
||||||
|
import java.util.Collections;
|
||||||
|
import java.util.List;
|
||||||
|
import java.util.Set;
|
||||||
|
|
||||||
|
import static org.assertj.core.api.Assertions.assertThat;
|
||||||
|
|
||||||
|
class JdtCallGraphEngineIntegrationTest {
|
||||||
|
|
||||||
|
private CodebaseContext context;
|
||||||
|
private SpringBeanRegistry registry;
|
||||||
|
private JdtCallGraphEngine engine;
|
||||||
|
|
||||||
|
@BeforeEach
|
||||||
|
void setUp() throws IOException {
|
||||||
|
Path projectRoot = Path.of("../state_machines/extended_analysis_sample").toAbsolutePath().normalize();
|
||||||
|
|
||||||
|
context = new CodebaseContext();
|
||||||
|
context.setProjectRoot(projectRoot);
|
||||||
|
context.setSourcepath(List.of(projectRoot.resolve("src/main/java").toString()));
|
||||||
|
|
||||||
|
DynamicClasspathResolver resolver = new DynamicClasspathResolver();
|
||||||
|
List<String> cp = resolver.resolveClasspath(projectRoot);
|
||||||
|
if (!cp.isEmpty()) {
|
||||||
|
context.setClasspath(cp);
|
||||||
|
}
|
||||||
|
context.setResolveBindings(true);
|
||||||
|
|
||||||
|
context.scan(Set.of(projectRoot), Collections.emptySet());
|
||||||
|
|
||||||
|
registry = new SpringBeanRegistry();
|
||||||
|
SpringContextScanner scanner = new SpringContextScanner(registry);
|
||||||
|
|
||||||
|
for (var cu : context.getCompilationUnits()) {
|
||||||
|
cu.accept(scanner);
|
||||||
|
}
|
||||||
|
|
||||||
|
SpringDependencyResolver dependencyResolver = new SpringDependencyResolver(registry);
|
||||||
|
InjectionPointAnalyzer injectionAnalyzer = new InjectionPointAnalyzer(dependencyResolver);
|
||||||
|
|
||||||
|
engine = new JdtCallGraphEngine(context, injectionAnalyzer);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
void shouldResolvePrimaryBeanInjection() {
|
||||||
|
EntryPoint ep = EntryPoint.builder()
|
||||||
|
.className("click.kamil.examples.statemachine.extended.web.QuirkController")
|
||||||
|
.methodName("testPrimary")
|
||||||
|
.build();
|
||||||
|
TriggerPoint tp = TriggerPoint.builder()
|
||||||
|
.className("click.kamil.examples.statemachine.extended.service.PrimaryQuirkService")
|
||||||
|
.methodName("doQuirk")
|
||||||
|
.build();
|
||||||
|
|
||||||
|
List<CallChain> chains = engine.findChains(List.of(ep), List.of(tp));
|
||||||
|
System.out.println("CHAINS FOUND: " + chains.size()); assertThat(chains).hasSize(1);
|
||||||
|
assertThat(chains.get(0).getMethodChain())
|
||||||
|
.containsExactly(
|
||||||
|
"click.kamil.examples.statemachine.extended.web.QuirkController.testPrimary",
|
||||||
|
"click.kamil.examples.statemachine.extended.service.PrimaryQuirkService.doQuirk"
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
void shouldResolveQualifierBeanInjection() {
|
||||||
|
EntryPoint ep = EntryPoint.builder()
|
||||||
|
.className("click.kamil.examples.statemachine.extended.web.QuirkController")
|
||||||
|
.methodName("testQualifier")
|
||||||
|
.build();
|
||||||
|
TriggerPoint tp = TriggerPoint.builder()
|
||||||
|
.className("click.kamil.examples.statemachine.extended.service.QualifierQuirkService")
|
||||||
|
.methodName("doQuirk")
|
||||||
|
.build();
|
||||||
|
|
||||||
|
List<CallChain> chains = engine.findChains(List.of(ep), List.of(tp));
|
||||||
|
System.out.println("CHAINS FOUND: " + chains.size()); assertThat(chains).hasSize(1);
|
||||||
|
assertThat(chains.get(0).getMethodChain())
|
||||||
|
.containsExactly(
|
||||||
|
"click.kamil.examples.statemachine.extended.web.QuirkController.testQualifier",
|
||||||
|
"click.kamil.examples.statemachine.extended.service.QualifierQuirkService.doQuirk"
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
void shouldResolveNamedBeanInjection() {
|
||||||
|
EntryPoint ep = EntryPoint.builder()
|
||||||
|
.className("click.kamil.examples.statemachine.extended.web.QuirkController")
|
||||||
|
.methodName("testNamed")
|
||||||
|
.build();
|
||||||
|
TriggerPoint tp = TriggerPoint.builder()
|
||||||
|
.className("click.kamil.examples.statemachine.extended.service.NamedQuirkService")
|
||||||
|
.methodName("doQuirk")
|
||||||
|
.build();
|
||||||
|
|
||||||
|
List<CallChain> chains = engine.findChains(List.of(ep), List.of(tp));
|
||||||
|
System.out.println("CHAINS FOUND: " + chains.size()); assertThat(chains).hasSize(1);
|
||||||
|
assertThat(chains.get(0).getMethodChain())
|
||||||
|
.containsExactly(
|
||||||
|
"click.kamil.examples.statemachine.extended.web.QuirkController.testNamed",
|
||||||
|
"click.kamil.examples.statemachine.extended.service.NamedQuirkService.doQuirk"
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
void shouldResolveFallbackBeanInjection() {
|
||||||
|
EntryPoint ep = EntryPoint.builder()
|
||||||
|
.className("click.kamil.examples.statemachine.extended.web.QuirkController")
|
||||||
|
.methodName("testFallback")
|
||||||
|
.build();
|
||||||
|
TriggerPoint tp = TriggerPoint.builder()
|
||||||
|
.className("click.kamil.examples.statemachine.extended.service.PrimaryQuirkService")
|
||||||
|
.methodName("doQuirk")
|
||||||
|
.build();
|
||||||
|
|
||||||
|
List<CallChain> chains = engine.findChains(List.of(ep), List.of(tp));
|
||||||
|
System.out.println("CHAINS FOUND: " + chains.size()); assertThat(chains).hasSize(1);
|
||||||
|
assertThat(chains.get(0).getMethodChain())
|
||||||
|
.containsExactly(
|
||||||
|
"click.kamil.examples.statemachine.extended.web.QuirkController.testFallback",
|
||||||
|
"click.kamil.examples.statemachine.extended.service.PrimaryQuirkService.doQuirk"
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
void shouldResolveBeanParameterInjection() {
|
||||||
|
EntryPoint ep = EntryPoint.builder()
|
||||||
|
.className("click.kamil.examples.statemachine.extended.config.BeanParameterTestConfig")
|
||||||
|
.methodName("myBeanParamTester")
|
||||||
|
.build();
|
||||||
|
TriggerPoint tp = TriggerPoint.builder()
|
||||||
|
.className("click.kamil.examples.statemachine.extended.service.NamedQuirkService")
|
||||||
|
.methodName("doQuirk")
|
||||||
|
.build();
|
||||||
|
|
||||||
|
List<CallChain> chains = engine.findChains(List.of(ep), List.of(tp));
|
||||||
|
System.out.println("CHAINS FOUND: " + chains.size()); assertThat(chains).hasSize(1);
|
||||||
|
assertThat(chains.get(0).getMethodChain())
|
||||||
|
.containsExactly(
|
||||||
|
"click.kamil.examples.statemachine.extended.config.BeanParameterTestConfig.myBeanParamTester",
|
||||||
|
"click.kamil.examples.statemachine.extended.service.NamedQuirkService.doQuirk"
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
void shouldResolveOrderedBeanInjection() {
|
||||||
|
EntryPoint ep = EntryPoint.builder()
|
||||||
|
.className("click.kamil.examples.statemachine.extended.web.OrderedTestController")
|
||||||
|
.methodName("testOrder")
|
||||||
|
.build();
|
||||||
|
TriggerPoint tp = TriggerPoint.builder()
|
||||||
|
.className("click.kamil.examples.statemachine.extended.service.HighPriorityOrderedService")
|
||||||
|
.methodName("doAction")
|
||||||
|
.build();
|
||||||
|
|
||||||
|
List<CallChain> chains = engine.findChains(List.of(ep), List.of(tp));
|
||||||
|
System.out.println("CHAINS FOUND: " + chains.size()); assertThat(chains).hasSize(1);
|
||||||
|
assertThat(chains.get(0).getMethodChain())
|
||||||
|
.containsExactly(
|
||||||
|
"click.kamil.examples.statemachine.extended.web.OrderedTestController.testOrder",
|
||||||
|
"click.kamil.examples.statemachine.extended.service.HighPriorityOrderedService.doAction"
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
void shouldResolveFieldInjection() {
|
||||||
|
EntryPoint ep = EntryPoint.builder()
|
||||||
|
.className("click.kamil.examples.statemachine.extended.web.FieldInjectionController")
|
||||||
|
.methodName("testField")
|
||||||
|
.build();
|
||||||
|
TriggerPoint tp = TriggerPoint.builder()
|
||||||
|
.className("click.kamil.examples.statemachine.extended.service.NamedQuirkService")
|
||||||
|
.methodName("doQuirk")
|
||||||
|
.build();
|
||||||
|
|
||||||
|
List<CallChain> chains = engine.findChains(List.of(ep), List.of(tp));
|
||||||
|
System.out.println("CHAINS FOUND: " + chains.size()); assertThat(chains).hasSize(1);
|
||||||
|
assertThat(chains.get(0).getMethodChain()).contains(
|
||||||
|
"click.kamil.examples.statemachine.extended.web.FieldInjectionController.testField",
|
||||||
|
"click.kamil.examples.statemachine.extended.service.NamedQuirkService.doQuirk"
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
void shouldResolveSetterInjection() {
|
||||||
|
EntryPoint ep = EntryPoint.builder()
|
||||||
|
.className("click.kamil.examples.statemachine.extended.web.SetterInjectionController")
|
||||||
|
.methodName("testSetter")
|
||||||
|
.build();
|
||||||
|
TriggerPoint tp = TriggerPoint.builder()
|
||||||
|
.className("click.kamil.examples.statemachine.extended.service.NamedQuirkService")
|
||||||
|
.methodName("doQuirk")
|
||||||
|
.build();
|
||||||
|
|
||||||
|
List<CallChain> chains = engine.findChains(List.of(ep), List.of(tp));
|
||||||
|
System.out.println("CHAINS FOUND: " + chains.size()); assertThat(chains).hasSize(1);
|
||||||
|
assertThat(chains.get(0).getMethodChain()).contains(
|
||||||
|
"click.kamil.examples.statemachine.extended.web.SetterInjectionController.testSetter",
|
||||||
|
"click.kamil.examples.statemachine.extended.service.NamedQuirkService.doQuirk"
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
void shouldResolveAbstractInheritedBean() {
|
||||||
|
EntryPoint ep = EntryPoint.builder()
|
||||||
|
.className("click.kamil.examples.statemachine.extended.config.AbstractBaseConfig")
|
||||||
|
.methodName("inheritedBeanTester")
|
||||||
|
.build();
|
||||||
|
TriggerPoint tp = TriggerPoint.builder()
|
||||||
|
.className("click.kamil.examples.statemachine.extended.service.NamedQuirkService")
|
||||||
|
.methodName("doQuirk")
|
||||||
|
.build();
|
||||||
|
|
||||||
|
List<CallChain> chains = engine.findChains(List.of(ep), List.of(tp));
|
||||||
|
System.out.println("CHAINS FOUND: " + chains.size()); assertThat(chains).hasSize(1);
|
||||||
|
assertThat(chains.get(0).getMethodChain()).contains(
|
||||||
|
"click.kamil.examples.statemachine.extended.config.AbstractBaseConfig.inheritedBeanTester",
|
||||||
|
"click.kamil.examples.statemachine.extended.service.NamedQuirkService.doQuirk"
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
void shouldResolveAmbiguousListFallback() {
|
||||||
|
EntryPoint ep = EntryPoint.builder()
|
||||||
|
.className("click.kamil.examples.statemachine.extended.web.ListInjectionController")
|
||||||
|
.methodName("testList")
|
||||||
|
.build();
|
||||||
|
TriggerPoint tp1 = TriggerPoint.builder()
|
||||||
|
.className("click.kamil.examples.statemachine.extended.service.AmbiguousA")
|
||||||
|
.methodName("doAmbig")
|
||||||
|
.build();
|
||||||
|
TriggerPoint tp2 = TriggerPoint.builder()
|
||||||
|
.className("click.kamil.examples.statemachine.extended.service.AmbiguousB")
|
||||||
|
.methodName("doAmbig")
|
||||||
|
.build();
|
||||||
|
|
||||||
|
List<CallChain> chains1 = engine.findChains(List.of(ep), List.of(tp1));
|
||||||
|
List<CallChain> chains2 = engine.findChains(List.of(ep), List.of(tp2));
|
||||||
|
|
||||||
|
assertThat(chains1).isNotEmpty();
|
||||||
|
assertThat(chains1.get(0).getMethodChain()).contains(
|
||||||
|
"click.kamil.examples.statemachine.extended.web.ListInjectionController.testList",
|
||||||
|
"click.kamil.examples.statemachine.extended.service.AmbiguousA.doAmbig"
|
||||||
|
);
|
||||||
|
|
||||||
|
assertThat(chains2).isNotEmpty();
|
||||||
|
assertThat(chains2.get(0).getMethodChain()).contains(
|
||||||
|
"click.kamil.examples.statemachine.extended.web.ListInjectionController.testList",
|
||||||
|
"click.kamil.examples.statemachine.extended.service.AmbiguousB.doAmbig"
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
void shouldResolveConcreteReturnType() {
|
||||||
|
EntryPoint ep = EntryPoint.builder()
|
||||||
|
.className("click.kamil.examples.statemachine.extended.web.ConcreteReturnTypeController")
|
||||||
|
.methodName("testConcrete")
|
||||||
|
.build();
|
||||||
|
TriggerPoint tp = TriggerPoint.builder()
|
||||||
|
.className("click.kamil.examples.statemachine.extended.service.QualifierQuirkService")
|
||||||
|
.methodName("doQuirk")
|
||||||
|
.build();
|
||||||
|
|
||||||
|
List<CallChain> chains = engine.findChains(List.of(ep), List.of(tp));
|
||||||
|
System.out.println("CHAINS FOUND: " + chains.size()); assertThat(chains).hasSize(1);
|
||||||
|
assertThat(chains.get(0).getMethodChain()).contains(
|
||||||
|
"click.kamil.examples.statemachine.extended.web.ConcreteReturnTypeController.testConcrete",
|
||||||
|
"click.kamil.examples.statemachine.extended.service.QualifierQuirkService.doQuirk"
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,122 @@
|
|||||||
|
package click.kamil.springstatemachineexporter.analysis.service;
|
||||||
|
|
||||||
|
import click.kamil.springstatemachineexporter.analysis.model.CallChain;
|
||||||
|
import click.kamil.springstatemachineexporter.analysis.model.EntryPoint;
|
||||||
|
import click.kamil.springstatemachineexporter.analysis.model.TriggerPoint;
|
||||||
|
import click.kamil.springstatemachineexporter.ast.common.CodebaseContext;
|
||||||
|
import org.junit.jupiter.api.Test;
|
||||||
|
import org.junit.jupiter.api.io.TempDir;
|
||||||
|
import java.io.IOException;
|
||||||
|
import java.nio.file.Files;
|
||||||
|
import java.nio.file.Path;
|
||||||
|
import java.util.List;
|
||||||
|
import static org.assertj.core.api.Assertions.assertThat;
|
||||||
|
|
||||||
|
class LocalVariableTest {
|
||||||
|
|
||||||
|
@Test
|
||||||
|
void shouldTraceLocalVariableInGetter(@TempDir Path tempDir) throws IOException {
|
||||||
|
String source = """
|
||||||
|
package com.example;
|
||||||
|
public class OrderController {
|
||||||
|
private OrderService service;
|
||||||
|
public void processOrderEvent(RichOrderEvent domainEvent) {
|
||||||
|
service.updateOrderState(domainEvent.getType());
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
class OrderService {
|
||||||
|
public void updateOrderState(OrderEvents event) {}
|
||||||
|
}
|
||||||
|
|
||||||
|
class RichOrderEvent {
|
||||||
|
public OrderEvents getType() {
|
||||||
|
OrderEvents e = OrderEvents.PAY;
|
||||||
|
return e;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
enum OrderEvents { PAY }
|
||||||
|
""";
|
||||||
|
Files.writeString(tempDir.resolve("OrderConfig.java"), source);
|
||||||
|
|
||||||
|
CodebaseContext context = new CodebaseContext();
|
||||||
|
context.scan(tempDir);
|
||||||
|
|
||||||
|
HeuristicCallGraphEngine builder = new HeuristicCallGraphEngine(context);
|
||||||
|
|
||||||
|
EntryPoint entryPoint = EntryPoint.builder()
|
||||||
|
.className("com.example.OrderController")
|
||||||
|
.methodName("processOrderEvent")
|
||||||
|
.build();
|
||||||
|
|
||||||
|
TriggerPoint trigger = TriggerPoint.builder()
|
||||||
|
.className("com.example.OrderService")
|
||||||
|
.methodName("updateOrderState")
|
||||||
|
.event("event")
|
||||||
|
.build();
|
||||||
|
|
||||||
|
List<CallChain> chains = builder.findChains(List.of(entryPoint), List.of(trigger));
|
||||||
|
|
||||||
|
assertThat(chains).hasSize(1);
|
||||||
|
CallChain chain = chains.get(0);
|
||||||
|
assertThat(chain.getTriggerPoint().getPolymorphicEvents())
|
||||||
|
.contains("OrderEvents.PAY")
|
||||||
|
.doesNotContain("e"); // Should not blindly add the variable name
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
void shouldTraceMultipleAssignments(@TempDir Path tempDir) throws IOException {
|
||||||
|
String source = """
|
||||||
|
package com.example;
|
||||||
|
public class OrderController {
|
||||||
|
private OrderService service;
|
||||||
|
public void processOrderEvent(RichOrderEvent domainEvent) {
|
||||||
|
service.updateOrderState(domainEvent.getType());
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
class OrderService {
|
||||||
|
public void updateOrderState(OrderEvents event) {}
|
||||||
|
}
|
||||||
|
|
||||||
|
class RichOrderEvent {
|
||||||
|
public OrderEvents getType() {
|
||||||
|
OrderEvents e = null;
|
||||||
|
if (System.currentTimeMillis() % 2 == 0) {
|
||||||
|
e = OrderEvents.PAY;
|
||||||
|
} else {
|
||||||
|
e = OrderEvents.CANCEL;
|
||||||
|
}
|
||||||
|
return e;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
enum OrderEvents { PAY, CANCEL }
|
||||||
|
""";
|
||||||
|
Files.writeString(tempDir.resolve("OrderConfig.java"), source);
|
||||||
|
|
||||||
|
CodebaseContext context = new CodebaseContext();
|
||||||
|
context.scan(tempDir);
|
||||||
|
|
||||||
|
HeuristicCallGraphEngine builder = new HeuristicCallGraphEngine(context);
|
||||||
|
|
||||||
|
EntryPoint entryPoint = EntryPoint.builder()
|
||||||
|
.className("com.example.OrderController")
|
||||||
|
.methodName("processOrderEvent")
|
||||||
|
.build();
|
||||||
|
|
||||||
|
TriggerPoint trigger = TriggerPoint.builder()
|
||||||
|
.className("com.example.OrderService")
|
||||||
|
.methodName("updateOrderState")
|
||||||
|
.event("event")
|
||||||
|
.build();
|
||||||
|
|
||||||
|
List<CallChain> chains = builder.findChains(List.of(entryPoint), List.of(trigger));
|
||||||
|
|
||||||
|
assertThat(chains).hasSize(1);
|
||||||
|
CallChain chain = chains.get(0);
|
||||||
|
assertThat(chain.getTriggerPoint().getPolymorphicEvents())
|
||||||
|
.containsExactlyInAnyOrder("OrderEvents.PAY", "OrderEvents.CANCEL");
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,66 @@
|
|||||||
|
package click.kamil.springstatemachineexporter.analysis.service;
|
||||||
|
|
||||||
|
import click.kamil.springstatemachineexporter.analysis.model.CallChain;
|
||||||
|
import click.kamil.springstatemachineexporter.analysis.model.EntryPoint;
|
||||||
|
import click.kamil.springstatemachineexporter.analysis.model.TriggerPoint;
|
||||||
|
import click.kamil.springstatemachineexporter.ast.common.CodebaseContext;
|
||||||
|
import org.junit.jupiter.api.Test;
|
||||||
|
import org.junit.jupiter.api.io.TempDir;
|
||||||
|
import java.io.IOException;
|
||||||
|
import java.nio.file.Files;
|
||||||
|
import java.nio.file.Path;
|
||||||
|
import java.util.List;
|
||||||
|
import static org.assertj.core.api.Assertions.assertThat;
|
||||||
|
|
||||||
|
class ReturnStatementTest {
|
||||||
|
|
||||||
|
@Test
|
||||||
|
void shouldHandleAssignmentInReturn(@TempDir Path tempDir) throws IOException {
|
||||||
|
String source = """
|
||||||
|
package com.example;
|
||||||
|
public class OrderController {
|
||||||
|
private OrderService service;
|
||||||
|
public void processOrderEvent(RichOrderEvent domainEvent) {
|
||||||
|
service.updateOrderState(domainEvent.getType());
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
class OrderService {
|
||||||
|
public void updateOrderState(OrderEvents event) {}
|
||||||
|
}
|
||||||
|
|
||||||
|
class RichOrderEvent {
|
||||||
|
private OrderEvents type;
|
||||||
|
public OrderEvents getType() {
|
||||||
|
return this.type = OrderEvents.PAY;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
enum OrderEvents { PAY }
|
||||||
|
""";
|
||||||
|
Files.writeString(tempDir.resolve("OrderConfig.java"), source);
|
||||||
|
|
||||||
|
CodebaseContext context = new CodebaseContext();
|
||||||
|
context.scan(tempDir);
|
||||||
|
|
||||||
|
HeuristicCallGraphEngine builder = new HeuristicCallGraphEngine(context);
|
||||||
|
|
||||||
|
EntryPoint entryPoint = EntryPoint.builder()
|
||||||
|
.className("com.example.OrderController")
|
||||||
|
.methodName("processOrderEvent")
|
||||||
|
.build();
|
||||||
|
|
||||||
|
TriggerPoint trigger = TriggerPoint.builder()
|
||||||
|
.className("com.example.OrderService")
|
||||||
|
.methodName("updateOrderState")
|
||||||
|
.event("event")
|
||||||
|
.build();
|
||||||
|
|
||||||
|
List<CallChain> chains = builder.findChains(List.of(entryPoint), List.of(trigger));
|
||||||
|
|
||||||
|
assertThat(chains).hasSize(1);
|
||||||
|
CallChain chain = chains.get(0);
|
||||||
|
assertThat(chain.getTriggerPoint().getPolymorphicEvents())
|
||||||
|
.containsExactlyInAnyOrder("OrderEvents.PAY");
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,66 @@
|
|||||||
|
package click.kamil.springstatemachineexporter.analysis.service;
|
||||||
|
|
||||||
|
import click.kamil.springstatemachineexporter.ast.common.CodebaseContext;
|
||||||
|
import click.kamil.springstatemachineexporter.analysis.model.TriggerPoint;
|
||||||
|
import org.junit.jupiter.api.Test;
|
||||||
|
import org.junit.jupiter.api.io.TempDir;
|
||||||
|
import java.nio.file.Files;
|
||||||
|
import java.nio.file.Path;
|
||||||
|
import java.util.List;
|
||||||
|
import static org.assertj.core.api.Assertions.assertThat;
|
||||||
|
|
||||||
|
public class StreamApiTests {
|
||||||
|
|
||||||
|
@TempDir
|
||||||
|
Path tempDir;
|
||||||
|
|
||||||
|
@Test
|
||||||
|
void shouldHandleStreamApiChains() throws Exception {
|
||||||
|
String source = """
|
||||||
|
package com.example;
|
||||||
|
import java.util.List;
|
||||||
|
|
||||||
|
public class StreamService {
|
||||||
|
private EventService service;
|
||||||
|
|
||||||
|
public void process(List<MyEvent> events) {
|
||||||
|
events.stream()
|
||||||
|
.filter(e -> e.isValid())
|
||||||
|
.map(e -> e.toEvent())
|
||||||
|
.forEach(t -> service.trigger(t.getEvent()));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
class EventService {
|
||||||
|
public void trigger(String ev) {}
|
||||||
|
}
|
||||||
|
class MyEvent {
|
||||||
|
public boolean isValid() { return true; }
|
||||||
|
public OrderEvent toEvent() { return new OrderEvent(); }
|
||||||
|
}
|
||||||
|
class OrderEvent {
|
||||||
|
public String getEvent() { return "STREAM_EVENT"; }
|
||||||
|
}
|
||||||
|
""";
|
||||||
|
|
||||||
|
Files.writeString(tempDir.resolve("StreamService.java"), source);
|
||||||
|
CodebaseContext context = new CodebaseContext();
|
||||||
|
context.scan(tempDir);
|
||||||
|
|
||||||
|
HeuristicCallGraphEngine engine = new HeuristicCallGraphEngine(context);
|
||||||
|
|
||||||
|
TriggerPoint trigger = TriggerPoint.builder()
|
||||||
|
.className("com.example.EventService")
|
||||||
|
.methodName("trigger")
|
||||||
|
.sourceFile("StreamService.java")
|
||||||
|
.sourceModule("com.example")
|
||||||
|
.event("t.getEvent()")
|
||||||
|
.lineNumber(11)
|
||||||
|
.build();
|
||||||
|
|
||||||
|
TriggerPoint result = engine.resolveTriggerPointParameters(trigger, List.of("com.example.StreamService.process", "com.example.EventService.trigger"), java.util.Collections.emptyMap());
|
||||||
|
System.out.println("TEST RESULT: " + result);
|
||||||
|
System.out.println("POLY EVENTS: " + result.getPolymorphicEvents());
|
||||||
|
|
||||||
|
assertThat(result.getPolymorphicEvents()).isNotNull().containsExactlyInAnyOrder("STREAM_EVENT");
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,71 @@
|
|||||||
|
package click.kamil.springstatemachineexporter.analysis.service;
|
||||||
|
|
||||||
|
import click.kamil.springstatemachineexporter.analysis.model.CallChain;
|
||||||
|
import click.kamil.springstatemachineexporter.analysis.model.EntryPoint;
|
||||||
|
import click.kamil.springstatemachineexporter.analysis.model.TriggerPoint;
|
||||||
|
import click.kamil.springstatemachineexporter.ast.common.CodebaseContext;
|
||||||
|
import org.junit.jupiter.api.Test;
|
||||||
|
import org.junit.jupiter.api.io.TempDir;
|
||||||
|
import java.io.IOException;
|
||||||
|
import java.nio.file.Files;
|
||||||
|
import java.nio.file.Path;
|
||||||
|
import java.util.List;
|
||||||
|
import static org.assertj.core.api.Assertions.assertThat;
|
||||||
|
|
||||||
|
class SuperMethodInvocationTest {
|
||||||
|
|
||||||
|
@Test
|
||||||
|
void shouldHandleSuperMethodInvocation(@TempDir Path tempDir) throws IOException {
|
||||||
|
String source = """
|
||||||
|
package com.example;
|
||||||
|
public class OrderController {
|
||||||
|
private OrderService service;
|
||||||
|
public void processOrderEvent(DerivedEvent domainEvent) {
|
||||||
|
service.updateOrderState(domainEvent.getType());
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
class OrderService {
|
||||||
|
public void updateOrderState(OrderEvents event) {}
|
||||||
|
}
|
||||||
|
|
||||||
|
class BaseEvent {
|
||||||
|
public OrderEvents getType() {
|
||||||
|
return OrderEvents.PAY;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
class DerivedEvent extends BaseEvent {
|
||||||
|
public OrderEvents getType() {
|
||||||
|
return super.getType();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
enum OrderEvents { PAY }
|
||||||
|
""";
|
||||||
|
Files.writeString(tempDir.resolve("OrderConfig.java"), source);
|
||||||
|
|
||||||
|
CodebaseContext context = new CodebaseContext();
|
||||||
|
context.scan(tempDir);
|
||||||
|
|
||||||
|
HeuristicCallGraphEngine builder = new HeuristicCallGraphEngine(context);
|
||||||
|
|
||||||
|
EntryPoint entryPoint = EntryPoint.builder()
|
||||||
|
.className("com.example.OrderController")
|
||||||
|
.methodName("processOrderEvent")
|
||||||
|
.build();
|
||||||
|
|
||||||
|
TriggerPoint trigger = TriggerPoint.builder()
|
||||||
|
.className("com.example.OrderService")
|
||||||
|
.methodName("updateOrderState")
|
||||||
|
.event("event")
|
||||||
|
.build();
|
||||||
|
|
||||||
|
List<CallChain> chains = builder.findChains(List.of(entryPoint), List.of(trigger));
|
||||||
|
|
||||||
|
assertThat(chains).hasSize(1);
|
||||||
|
CallChain chain = chains.get(0);
|
||||||
|
assertThat(chain.getTriggerPoint().getPolymorphicEvents())
|
||||||
|
.contains("OrderEvents.PAY");
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,89 @@
|
|||||||
|
package click.kamil.springstatemachineexporter.analysis.spring;
|
||||||
|
|
||||||
|
import click.kamil.springstatemachineexporter.ast.common.CodebaseContext;
|
||||||
|
import click.kamil.springstatemachineexporter.analysis.service.DynamicClasspathResolver;
|
||||||
|
import org.junit.jupiter.api.BeforeEach;
|
||||||
|
import org.junit.jupiter.api.Test;
|
||||||
|
|
||||||
|
import java.io.IOException;
|
||||||
|
import java.nio.file.Path;
|
||||||
|
import java.util.Collections;
|
||||||
|
import java.util.List;
|
||||||
|
import java.util.Set;
|
||||||
|
|
||||||
|
import static org.assertj.core.api.Assertions.assertThat;
|
||||||
|
|
||||||
|
class SpringContextScannerIntegrationTest {
|
||||||
|
|
||||||
|
private CodebaseContext context;
|
||||||
|
private SpringBeanRegistry registry;
|
||||||
|
|
||||||
|
@BeforeEach
|
||||||
|
void setUp() throws IOException {
|
||||||
|
Path projectRoot = Path.of("../state_machines/extended_analysis_sample").toAbsolutePath().normalize();
|
||||||
|
|
||||||
|
context = new CodebaseContext();
|
||||||
|
context.setProjectRoot(projectRoot);
|
||||||
|
context.setSourcepath(List.of(projectRoot.resolve("src/main/java").toString()));
|
||||||
|
|
||||||
|
DynamicClasspathResolver resolver = new DynamicClasspathResolver();
|
||||||
|
List<String> cp = resolver.resolveClasspath(projectRoot);
|
||||||
|
if (!cp.isEmpty()) {
|
||||||
|
context.setClasspath(cp);
|
||||||
|
}
|
||||||
|
context.setResolveBindings(true);
|
||||||
|
|
||||||
|
context.scan(Set.of(projectRoot), Collections.emptySet());
|
||||||
|
|
||||||
|
registry = new SpringBeanRegistry();
|
||||||
|
SpringContextScanner scanner = new SpringContextScanner(registry);
|
||||||
|
|
||||||
|
for (var cu : context.getCompilationUnits()) {
|
||||||
|
cu.accept(scanner);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
void shouldFindStereotypeBeans() {
|
||||||
|
List<SpringBean> beans = registry.getBeans();
|
||||||
|
|
||||||
|
// PrimaryQuirkService
|
||||||
|
assertThat(beans).anySatisfy(bean -> {
|
||||||
|
assertThat(bean.getTypeFqn()).isEqualTo("click.kamil.examples.statemachine.extended.service.PrimaryQuirkService");
|
||||||
|
assertThat(bean.isPrimary()).isTrue();
|
||||||
|
assertThat(bean.getAssignableTypes()).contains("click.kamil.examples.statemachine.extended.service.QuirkService");
|
||||||
|
assertThat(bean.getBeanNames()).contains("primaryQuirkService");
|
||||||
|
});
|
||||||
|
|
||||||
|
// QualifierQuirkService
|
||||||
|
assertThat(beans).anySatisfy(bean -> {
|
||||||
|
assertThat(bean.getTypeFqn()).isEqualTo("click.kamil.examples.statemachine.extended.service.QualifierQuirkService");
|
||||||
|
assertThat(bean.isPrimary()).isFalse();
|
||||||
|
assertThat(bean.getBeanNames()).contains("qualifierQuirkService");
|
||||||
|
});
|
||||||
|
|
||||||
|
// NamedQuirkService (should have explicit name via @Service("customName"))
|
||||||
|
assertThat(beans).anySatisfy(bean -> {
|
||||||
|
assertThat(bean.getTypeFqn()).isEqualTo("click.kamil.examples.statemachine.extended.service.NamedQuirkService");
|
||||||
|
assertThat(bean.getBeanNames()).contains("customName");
|
||||||
|
});
|
||||||
|
|
||||||
|
// PaymentController (should be detected via @RestController)
|
||||||
|
assertThat(beans).anySatisfy(bean -> {
|
||||||
|
assertThat(bean.getTypeFqn()).isEqualTo("click.kamil.examples.statemachine.extended.web.PaymentController");
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
void shouldFindMethodBeans() {
|
||||||
|
List<SpringBean> beans = registry.getBeans();
|
||||||
|
|
||||||
|
// Beans created via @Bean
|
||||||
|
assertThat(beans).anySatisfy(bean -> {
|
||||||
|
assertThat(bean.getTypeFqn()).isEqualTo("java.lang.String");
|
||||||
|
assertThat(bean.getFactoryMethodName()).isEqualTo("myStringBean");
|
||||||
|
assertThat(bean.getBeanNames()).contains("customMockBean");
|
||||||
|
assertThat(bean.getDeclaringClassFqn()).isEqualTo("click.kamil.examples.statemachine.extended.config.MockBeanConfig");
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,220 @@
|
|||||||
|
package click.kamil.springstatemachineexporter.analysis.spring;
|
||||||
|
|
||||||
|
import org.junit.jupiter.api.BeforeEach;
|
||||||
|
import org.junit.jupiter.api.Test;
|
||||||
|
|
||||||
|
import java.util.List;
|
||||||
|
import java.util.Set;
|
||||||
|
|
||||||
|
import static org.assertj.core.api.Assertions.assertThat;
|
||||||
|
|
||||||
|
class SpringDependencyResolverTest {
|
||||||
|
|
||||||
|
private SpringBeanRegistry registry;
|
||||||
|
private SpringDependencyResolver resolver;
|
||||||
|
|
||||||
|
@BeforeEach
|
||||||
|
void setUp() {
|
||||||
|
registry = new SpringBeanRegistry();
|
||||||
|
resolver = new SpringDependencyResolver(registry);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
void shouldResolveSingleMatchByType() {
|
||||||
|
registry.addBean(SpringBean.builder()
|
||||||
|
.typeFqn("com.example.PaymentServiceImpl")
|
||||||
|
.assignableTypes(Set.of("com.example.PaymentService"))
|
||||||
|
.build());
|
||||||
|
|
||||||
|
List<SpringBean> resolved = resolver.resolve("com.example.PaymentService", null, "paymentService");
|
||||||
|
|
||||||
|
assertThat(resolved).hasSize(1);
|
||||||
|
assertThat(resolved.get(0).getTypeFqn()).isEqualTo("com.example.PaymentServiceImpl");
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
void shouldResolveByPrimaryWhenMultipleImplementationsExist() {
|
||||||
|
registry.addBean(SpringBean.builder()
|
||||||
|
.typeFqn("com.example.NormalService")
|
||||||
|
.assignableTypes(Set.of("com.example.PaymentService"))
|
||||||
|
.isPrimary(false)
|
||||||
|
.build());
|
||||||
|
|
||||||
|
registry.addBean(SpringBean.builder()
|
||||||
|
.typeFqn("com.example.PrimaryService")
|
||||||
|
.assignableTypes(Set.of("com.example.PaymentService"))
|
||||||
|
.isPrimary(true)
|
||||||
|
.build());
|
||||||
|
|
||||||
|
List<SpringBean> resolved = resolver.resolve("com.example.PaymentService", null, "paymentService");
|
||||||
|
|
||||||
|
assertThat(resolved).hasSize(1);
|
||||||
|
assertThat(resolved.get(0).getTypeFqn()).isEqualTo("com.example.PrimaryService");
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
void shouldResolveByQualifierWhenMultipleImplementationsExist() {
|
||||||
|
registry.addBean(SpringBean.builder()
|
||||||
|
.typeFqn("com.example.ServiceA")
|
||||||
|
.assignableTypes(Set.of("com.example.PaymentService"))
|
||||||
|
.qualifiers(Set.of("serviceA"))
|
||||||
|
.build());
|
||||||
|
|
||||||
|
registry.addBean(SpringBean.builder()
|
||||||
|
.typeFqn("com.example.ServiceB")
|
||||||
|
.assignableTypes(Set.of("com.example.PaymentService"))
|
||||||
|
.qualifiers(Set.of("serviceB"))
|
||||||
|
.build());
|
||||||
|
|
||||||
|
List<SpringBean> resolved = resolver.resolve("com.example.PaymentService", "serviceB", "paymentService");
|
||||||
|
|
||||||
|
assertThat(resolved).hasSize(1);
|
||||||
|
assertThat(resolved.get(0).getTypeFqn()).isEqualTo("com.example.ServiceB");
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
void shouldResolveByInjectionNameFallback() {
|
||||||
|
registry.addBean(SpringBean.builder()
|
||||||
|
.typeFqn("com.example.ServiceA")
|
||||||
|
.assignableTypes(Set.of("com.example.PaymentService"))
|
||||||
|
.beanNames(Set.of("serviceA"))
|
||||||
|
.build());
|
||||||
|
|
||||||
|
registry.addBean(SpringBean.builder()
|
||||||
|
.typeFqn("com.example.ServiceB")
|
||||||
|
.assignableTypes(Set.of("com.example.PaymentService"))
|
||||||
|
.beanNames(Set.of("specialService"))
|
||||||
|
.build());
|
||||||
|
|
||||||
|
// Qualifier is null, Primary is false. Should match by variable name "specialService"
|
||||||
|
List<SpringBean> resolved = resolver.resolve("com.example.PaymentService", null, "specialService");
|
||||||
|
|
||||||
|
assertThat(resolved).hasSize(1);
|
||||||
|
assertThat(resolved.get(0).getTypeFqn()).isEqualTo("com.example.ServiceB");
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
void shouldResolveByOrderWhenOtherFiltersTie() {
|
||||||
|
registry.addBean(SpringBean.builder()
|
||||||
|
.typeFqn("com.example.LowestOrderService")
|
||||||
|
.assignableTypes(Set.of("com.example.PaymentService"))
|
||||||
|
.order(Integer.MAX_VALUE) // Lowest precedence
|
||||||
|
.build());
|
||||||
|
|
||||||
|
registry.addBean(SpringBean.builder()
|
||||||
|
.typeFqn("com.example.HighestOrderService")
|
||||||
|
.assignableTypes(Set.of("com.example.PaymentService"))
|
||||||
|
.order(Integer.MIN_VALUE) // Highest precedence
|
||||||
|
.build());
|
||||||
|
|
||||||
|
registry.addBean(SpringBean.builder()
|
||||||
|
.typeFqn("com.example.MiddleOrderService")
|
||||||
|
.assignableTypes(Set.of("com.example.PaymentService"))
|
||||||
|
.order(0)
|
||||||
|
.build());
|
||||||
|
|
||||||
|
List<SpringBean> resolved = resolver.resolve("com.example.PaymentService", null, "someUnknownName");
|
||||||
|
|
||||||
|
assertThat(resolved).hasSize(1);
|
||||||
|
assertThat(resolved.get(0).getTypeFqn()).isEqualTo("com.example.HighestOrderService");
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
void shouldResolveByOrderWithCustomValues() {
|
||||||
|
registry.addBean(SpringBean.builder()
|
||||||
|
.typeFqn("com.example.ServiceA")
|
||||||
|
.assignableTypes(Set.of("com.example.PaymentService"))
|
||||||
|
.order(400)
|
||||||
|
.build());
|
||||||
|
|
||||||
|
registry.addBean(SpringBean.builder()
|
||||||
|
.typeFqn("com.example.ServiceB")
|
||||||
|
.assignableTypes(Set.of("com.example.PaymentService"))
|
||||||
|
.order(100)
|
||||||
|
.build());
|
||||||
|
|
||||||
|
registry.addBean(SpringBean.builder()
|
||||||
|
.typeFqn("com.example.ServiceC")
|
||||||
|
.assignableTypes(Set.of("com.example.PaymentService"))
|
||||||
|
.order(2147483647 + 400) // This wraps around in Java due to overflow, but let's test a very large valid value
|
||||||
|
.build());
|
||||||
|
|
||||||
|
List<SpringBean> resolved = resolver.resolve("com.example.PaymentService", null, "someUnknownName");
|
||||||
|
|
||||||
|
assertThat(resolved).hasSize(1);
|
||||||
|
assertThat(resolved.get(0).getTypeFqn()).isEqualTo("com.example.ServiceC");
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
void primaryShouldOverrideOrder() {
|
||||||
|
registry.addBean(SpringBean.builder()
|
||||||
|
.typeFqn("com.example.PrimaryButLowestOrder")
|
||||||
|
.assignableTypes(Set.of("com.example.PaymentService"))
|
||||||
|
.isPrimary(true)
|
||||||
|
.order(Integer.MAX_VALUE)
|
||||||
|
.build());
|
||||||
|
|
||||||
|
registry.addBean(SpringBean.builder()
|
||||||
|
.typeFqn("com.example.NotPrimaryButHighestOrder")
|
||||||
|
.assignableTypes(Set.of("com.example.PaymentService"))
|
||||||
|
.isPrimary(false)
|
||||||
|
.order(Integer.MIN_VALUE)
|
||||||
|
.build());
|
||||||
|
|
||||||
|
List<SpringBean> resolved = resolver.resolve("com.example.PaymentService", null, "someUnknownName");
|
||||||
|
|
||||||
|
assertThat(resolved).hasSize(1);
|
||||||
|
assertThat(resolved.get(0).getTypeFqn()).isEqualTo("com.example.PrimaryButLowestOrder");
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
void qualifierShouldOverridePrimaryAndOrder() {
|
||||||
|
registry.addBean(SpringBean.builder()
|
||||||
|
.typeFqn("com.example.PrimaryService")
|
||||||
|
.assignableTypes(Set.of("com.example.PaymentService"))
|
||||||
|
.isPrimary(true)
|
||||||
|
.order(Integer.MIN_VALUE)
|
||||||
|
.qualifiers(Set.of("primary"))
|
||||||
|
.build());
|
||||||
|
|
||||||
|
registry.addBean(SpringBean.builder()
|
||||||
|
.typeFqn("com.example.QualifiedService")
|
||||||
|
.assignableTypes(Set.of("com.example.PaymentService"))
|
||||||
|
.isPrimary(false)
|
||||||
|
.order(Integer.MAX_VALUE)
|
||||||
|
.qualifiers(Set.of("targetQualifier"))
|
||||||
|
.build());
|
||||||
|
|
||||||
|
List<SpringBean> resolved = resolver.resolve("com.example.PaymentService", "targetQualifier", "someUnknownName");
|
||||||
|
|
||||||
|
assertThat(resolved).hasSize(1);
|
||||||
|
assertThat(resolved.get(0).getTypeFqn()).isEqualTo("com.example.QualifiedService");
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
void shouldReturnMultipleWhenOrderIsTied() {
|
||||||
|
registry.addBean(SpringBean.builder()
|
||||||
|
.typeFqn("com.example.ServiceA")
|
||||||
|
.assignableTypes(Set.of("com.example.PaymentService"))
|
||||||
|
.order(10)
|
||||||
|
.build());
|
||||||
|
|
||||||
|
registry.addBean(SpringBean.builder()
|
||||||
|
.typeFqn("com.example.ServiceB")
|
||||||
|
.assignableTypes(Set.of("com.example.PaymentService"))
|
||||||
|
.order(10)
|
||||||
|
.build());
|
||||||
|
|
||||||
|
registry.addBean(SpringBean.builder()
|
||||||
|
.typeFqn("com.example.ServiceC")
|
||||||
|
.assignableTypes(Set.of("com.example.PaymentService"))
|
||||||
|
.order(20)
|
||||||
|
.build());
|
||||||
|
|
||||||
|
List<SpringBean> resolved = resolver.resolve("com.example.PaymentService", null, "someUnknownName");
|
||||||
|
|
||||||
|
assertThat(resolved).hasSize(2);
|
||||||
|
assertThat(resolved.stream().map(SpringBean::getTypeFqn))
|
||||||
|
.containsExactlyInAnyOrder("com.example.ServiceA", "com.example.ServiceB");
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -261,6 +261,56 @@ class AstTransitionParserTest {
|
|||||||
.contains("System.out.println(\"Hello\")");
|
.contains("System.out.println(\"Hello\")");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
void shouldExtractInternalLogicForSameFileMethodReturningLambda() {
|
||||||
|
String source = """
|
||||||
|
import org.springframework.statemachine.config.builders.StateMachineTransitionConfigurer;
|
||||||
|
import org.springframework.statemachine.guard.Guard;
|
||||||
|
public class TestClass {
|
||||||
|
public void configure(StateMachineTransitionConfigurer<String, String> transitions) throws Exception {
|
||||||
|
transitions
|
||||||
|
.withExternal()
|
||||||
|
.source("S1")
|
||||||
|
.target("S2")
|
||||||
|
.guard(guardVarEquals("test"));
|
||||||
|
}
|
||||||
|
|
||||||
|
protected Guard<String, String> guardVarEquals(String expected) {
|
||||||
|
return context -> {
|
||||||
|
return expected.equals(context.getMessage());
|
||||||
|
};
|
||||||
|
}
|
||||||
|
}
|
||||||
|
""";
|
||||||
|
MethodDeclaration method = createMethodDeclarationWithBindings(source);
|
||||||
|
|
||||||
|
List<Transition> transitions = AstTransitionParser.parseTransitions(method, context);
|
||||||
|
|
||||||
|
assertThat(transitions).hasSize(1);
|
||||||
|
assertThat(transitions.getFirst().getGuard().internalLogic())
|
||||||
|
.contains("return expected.equals(context.getMessage());")
|
||||||
|
.doesNotContain("protected Guard<String, String> guardVarEquals");
|
||||||
|
}
|
||||||
|
|
||||||
|
private MethodDeclaration createMethodDeclarationWithBindings(String source) {
|
||||||
|
ASTParser parser = ASTParser.newParser(AST.getJLSLatest());
|
||||||
|
parser.setKind(ASTParser.K_COMPILATION_UNIT);
|
||||||
|
parser.setResolveBindings(true);
|
||||||
|
parser.setBindingsRecovery(true);
|
||||||
|
parser.setEnvironment(new String[0], new String[0], null, true);
|
||||||
|
parser.setUnitName("TestClass.java");
|
||||||
|
parser.setSource(source.toCharArray());
|
||||||
|
CompilationUnit cu = (CompilationUnit) parser.createAST(null);
|
||||||
|
if (cu.types().isEmpty()) {
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
TypeDeclaration typeDecl = (TypeDeclaration) cu.types().getFirst();
|
||||||
|
MethodDeclaration[] methods = typeDecl.getMethods();
|
||||||
|
if (methods.length > 0) {
|
||||||
|
return methods[0];
|
||||||
|
}
|
||||||
|
return null;
|
||||||
|
}
|
||||||
private MethodDeclaration createMethodDeclaration(String source) {
|
private MethodDeclaration createMethodDeclaration(String source) {
|
||||||
ASTParser parser = ASTParser.newParser(AST.getJLSLatest());
|
ASTParser parser = ASTParser.newParser(AST.getJLSLatest());
|
||||||
parser.setKind(ASTParser.K_COMPILATION_UNIT);
|
parser.setKind(ASTParser.K_COMPILATION_UNIT);
|
||||||
|
|||||||
@@ -8,7 +8,8 @@
|
|||||||
"sourceModule" : null,
|
"sourceModule" : null,
|
||||||
"stateMachineId" : null,
|
"stateMachineId" : null,
|
||||||
"sourceState" : null,
|
"sourceState" : null,
|
||||||
"lineNumber" : 17
|
"lineNumber" : 17,
|
||||||
|
"polymorphicEvents" : null
|
||||||
}, {
|
}, {
|
||||||
"event" : "PLACE_ORDER",
|
"event" : "PLACE_ORDER",
|
||||||
"className" : "click.kamil.examples.enterprise.service.OrderServiceImpl",
|
"className" : "click.kamil.examples.enterprise.service.OrderServiceImpl",
|
||||||
@@ -17,7 +18,8 @@
|
|||||||
"sourceModule" : null,
|
"sourceModule" : null,
|
||||||
"stateMachineId" : null,
|
"stateMachineId" : null,
|
||||||
"sourceState" : null,
|
"sourceState" : null,
|
||||||
"lineNumber" : 16
|
"lineNumber" : 16,
|
||||||
|
"polymorphicEvents" : null
|
||||||
}, {
|
}, {
|
||||||
"event" : "CANCEL_ORDER",
|
"event" : "CANCEL_ORDER",
|
||||||
"className" : "click.kamil.examples.enterprise.service.OrderServiceImpl",
|
"className" : "click.kamil.examples.enterprise.service.OrderServiceImpl",
|
||||||
@@ -26,7 +28,8 @@
|
|||||||
"sourceModule" : null,
|
"sourceModule" : null,
|
||||||
"stateMachineId" : null,
|
"stateMachineId" : null,
|
||||||
"sourceState" : null,
|
"sourceState" : null,
|
||||||
"lineNumber" : 21
|
"lineNumber" : 21,
|
||||||
|
"polymorphicEvents" : null
|
||||||
}, {
|
}, {
|
||||||
"event" : "PAY_ORDER",
|
"event" : "PAY_ORDER",
|
||||||
"className" : "click.kamil.examples.enterprise.service.ReactivePaymentService",
|
"className" : "click.kamil.examples.enterprise.service.ReactivePaymentService",
|
||||||
@@ -35,7 +38,8 @@
|
|||||||
"sourceModule" : null,
|
"sourceModule" : null,
|
||||||
"stateMachineId" : null,
|
"stateMachineId" : null,
|
||||||
"sourceState" : null,
|
"sourceState" : null,
|
||||||
"lineNumber" : 18
|
"lineNumber" : 18,
|
||||||
|
"polymorphicEvents" : null
|
||||||
}, {
|
}, {
|
||||||
"event" : "SHIP_ORDER",
|
"event" : "SHIP_ORDER",
|
||||||
"className" : "click.kamil.examples.enterprise.messaging.ShippingJmsListener",
|
"className" : "click.kamil.examples.enterprise.messaging.ShippingJmsListener",
|
||||||
@@ -44,7 +48,8 @@
|
|||||||
"sourceModule" : null,
|
"sourceModule" : null,
|
||||||
"stateMachineId" : null,
|
"stateMachineId" : null,
|
||||||
"sourceState" : null,
|
"sourceState" : null,
|
||||||
"lineNumber" : 17
|
"lineNumber" : 17,
|
||||||
|
"polymorphicEvents" : null
|
||||||
}, {
|
}, {
|
||||||
"event" : "RETURN_ORDER",
|
"event" : "RETURN_ORDER",
|
||||||
"className" : "click.kamil.examples.enterprise.messaging.ReturnsRabbitListener",
|
"className" : "click.kamil.examples.enterprise.messaging.ReturnsRabbitListener",
|
||||||
@@ -53,7 +58,8 @@
|
|||||||
"sourceModule" : null,
|
"sourceModule" : null,
|
||||||
"stateMachineId" : null,
|
"stateMachineId" : null,
|
||||||
"sourceState" : null,
|
"sourceState" : null,
|
||||||
"lineNumber" : 17
|
"lineNumber" : 17,
|
||||||
|
"polymorphicEvents" : null
|
||||||
} ],
|
} ],
|
||||||
"entryPoints" : [ {
|
"entryPoints" : [ {
|
||||||
"type" : "REST",
|
"type" : "REST",
|
||||||
@@ -185,7 +191,8 @@
|
|||||||
"sourceModule" : null,
|
"sourceModule" : null,
|
||||||
"stateMachineId" : null,
|
"stateMachineId" : null,
|
||||||
"sourceState" : null,
|
"sourceState" : null,
|
||||||
"lineNumber" : 16
|
"lineNumber" : 16,
|
||||||
|
"polymorphicEvents" : null
|
||||||
},
|
},
|
||||||
"contextMachineId" : null,
|
"contextMachineId" : null,
|
||||||
"matchedTransitions" : [ {
|
"matchedTransitions" : [ {
|
||||||
@@ -219,7 +226,8 @@
|
|||||||
"sourceModule" : null,
|
"sourceModule" : null,
|
||||||
"stateMachineId" : null,
|
"stateMachineId" : null,
|
||||||
"sourceState" : null,
|
"sourceState" : null,
|
||||||
"lineNumber" : 21
|
"lineNumber" : 21,
|
||||||
|
"polymorphicEvents" : null
|
||||||
},
|
},
|
||||||
"contextMachineId" : null,
|
"contextMachineId" : null,
|
||||||
"matchedTransitions" : [ {
|
"matchedTransitions" : [ {
|
||||||
@@ -248,10 +256,11 @@
|
|||||||
"sourceModule" : null,
|
"sourceModule" : null,
|
||||||
"stateMachineId" : null,
|
"stateMachineId" : null,
|
||||||
"sourceState" : null,
|
"sourceState" : null,
|
||||||
"lineNumber" : 17
|
"lineNumber" : 17,
|
||||||
|
"polymorphicEvents" : null
|
||||||
},
|
},
|
||||||
"contextMachineId" : null,
|
"contextMachineId" : null,
|
||||||
"matchedTransitions" : [ ]
|
"matchedTransitions" : null
|
||||||
}, {
|
}, {
|
||||||
"entryPoint" : {
|
"entryPoint" : {
|
||||||
"type" : "REST",
|
"type" : "REST",
|
||||||
@@ -278,7 +287,8 @@
|
|||||||
"sourceModule" : null,
|
"sourceModule" : null,
|
||||||
"stateMachineId" : null,
|
"stateMachineId" : null,
|
||||||
"sourceState" : null,
|
"sourceState" : null,
|
||||||
"lineNumber" : 18
|
"lineNumber" : 18,
|
||||||
|
"polymorphicEvents" : null
|
||||||
},
|
},
|
||||||
"contextMachineId" : null,
|
"contextMachineId" : null,
|
||||||
"matchedTransitions" : [ {
|
"matchedTransitions" : [ {
|
||||||
@@ -312,7 +322,8 @@
|
|||||||
"sourceModule" : null,
|
"sourceModule" : null,
|
||||||
"stateMachineId" : null,
|
"stateMachineId" : null,
|
||||||
"sourceState" : null,
|
"sourceState" : null,
|
||||||
"lineNumber" : 17
|
"lineNumber" : 17,
|
||||||
|
"polymorphicEvents" : null
|
||||||
},
|
},
|
||||||
"contextMachineId" : null,
|
"contextMachineId" : null,
|
||||||
"matchedTransitions" : [ {
|
"matchedTransitions" : [ {
|
||||||
@@ -346,7 +357,8 @@
|
|||||||
"sourceModule" : null,
|
"sourceModule" : null,
|
||||||
"stateMachineId" : null,
|
"stateMachineId" : null,
|
||||||
"sourceState" : null,
|
"sourceState" : null,
|
||||||
"lineNumber" : 17
|
"lineNumber" : 17,
|
||||||
|
"polymorphicEvents" : null
|
||||||
},
|
},
|
||||||
"contextMachineId" : null,
|
"contextMachineId" : null,
|
||||||
"matchedTransitions" : [ {
|
"matchedTransitions" : [ {
|
||||||
|
|||||||
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@@ -8,7 +8,8 @@
|
|||||||
"sourceModule" : null,
|
"sourceModule" : null,
|
||||||
"stateMachineId" : null,
|
"stateMachineId" : null,
|
||||||
"sourceState" : null,
|
"sourceState" : null,
|
||||||
"lineNumber" : 15
|
"lineNumber" : 15,
|
||||||
|
"polymorphicEvents" : null
|
||||||
} ],
|
} ],
|
||||||
"entryPoints" : [ {
|
"entryPoints" : [ {
|
||||||
"type" : "REST",
|
"type" : "REST",
|
||||||
@@ -55,7 +56,8 @@
|
|||||||
"sourceModule" : null,
|
"sourceModule" : null,
|
||||||
"stateMachineId" : null,
|
"stateMachineId" : null,
|
||||||
"sourceState" : null,
|
"sourceState" : null,
|
||||||
"lineNumber" : 15
|
"lineNumber" : 15,
|
||||||
|
"polymorphicEvents" : null
|
||||||
},
|
},
|
||||||
"contextMachineId" : null,
|
"contextMachineId" : null,
|
||||||
"matchedTransitions" : [ {
|
"matchedTransitions" : [ {
|
||||||
|
|||||||
@@ -8,7 +8,8 @@
|
|||||||
"sourceModule" : null,
|
"sourceModule" : null,
|
||||||
"stateMachineId" : null,
|
"stateMachineId" : null,
|
||||||
"sourceState" : null,
|
"sourceState" : null,
|
||||||
"lineNumber" : 40
|
"lineNumber" : 40,
|
||||||
|
"polymorphicEvents" : null
|
||||||
}, {
|
}, {
|
||||||
"event" : "ORDER_EVENT",
|
"event" : "ORDER_EVENT",
|
||||||
"className" : "click.kamil.maven.core.MavenOrderStateMachine.OrderService",
|
"className" : "click.kamil.maven.core.MavenOrderStateMachine.OrderService",
|
||||||
@@ -17,7 +18,8 @@
|
|||||||
"sourceModule" : null,
|
"sourceModule" : null,
|
||||||
"stateMachineId" : null,
|
"stateMachineId" : null,
|
||||||
"sourceState" : null,
|
"sourceState" : null,
|
||||||
"lineNumber" : 52
|
"lineNumber" : 52,
|
||||||
|
"polymorphicEvents" : null
|
||||||
} ],
|
} ],
|
||||||
"entryPoints" : [ {
|
"entryPoints" : [ {
|
||||||
"type" : "REST",
|
"type" : "REST",
|
||||||
@@ -103,7 +105,8 @@
|
|||||||
"sourceModule" : null,
|
"sourceModule" : null,
|
||||||
"stateMachineId" : null,
|
"stateMachineId" : null,
|
||||||
"sourceState" : null,
|
"sourceState" : null,
|
||||||
"lineNumber" : 40
|
"lineNumber" : 40,
|
||||||
|
"polymorphicEvents" : null
|
||||||
},
|
},
|
||||||
"contextMachineId" : null,
|
"contextMachineId" : null,
|
||||||
"matchedTransitions" : [ {
|
"matchedTransitions" : [ {
|
||||||
|
|||||||
@@ -8,7 +8,8 @@
|
|||||||
"sourceModule" : null,
|
"sourceModule" : null,
|
||||||
"stateMachineId" : null,
|
"stateMachineId" : null,
|
||||||
"sourceState" : null,
|
"sourceState" : null,
|
||||||
"lineNumber" : 18
|
"lineNumber" : 18,
|
||||||
|
"polymorphicEvents" : null
|
||||||
} ],
|
} ],
|
||||||
"entryPoints" : [ {
|
"entryPoints" : [ {
|
||||||
"type" : "REST",
|
"type" : "REST",
|
||||||
@@ -67,7 +68,8 @@
|
|||||||
"sourceModule" : null,
|
"sourceModule" : null,
|
||||||
"stateMachineId" : null,
|
"stateMachineId" : null,
|
||||||
"sourceState" : null,
|
"sourceState" : null,
|
||||||
"lineNumber" : 18
|
"lineNumber" : 18,
|
||||||
|
"polymorphicEvents" : null
|
||||||
},
|
},
|
||||||
"contextMachineId" : null,
|
"contextMachineId" : null,
|
||||||
"matchedTransitions" : [ {
|
"matchedTransitions" : [ {
|
||||||
|
|||||||
@@ -0,0 +1,15 @@
|
|||||||
|
digraph statemachine {
|
||||||
|
rankdir=LR;
|
||||||
|
node [shape=rounded, style=filled, fillcolor=white, fontname="Arial"];
|
||||||
|
edge [fontname="Arial", fontsize=10];
|
||||||
|
|
||||||
|
_start [shape=circle, label="", fillcolor=black, width=0.1];
|
||||||
|
_start -> SUBMITTED;
|
||||||
|
CANCELED [fillcolor=lightgray];
|
||||||
|
FULFILLED [fillcolor=lightgray];
|
||||||
|
SUBMITTED -> PAID [label="OrderEvents.PAY", style="solid", color="black"];
|
||||||
|
PAID -> FULFILLED [label="OrderEvents.FULFILL", style="solid", color="black"];
|
||||||
|
SUBMITTED -> CANCELED [label="OrderEvents.CANCEL", style="solid", color="black"];
|
||||||
|
PAID -> CANCELED [label="OrderEvents.ABCD", style="solid", color="black"];
|
||||||
|
}
|
||||||
|
|
||||||
@@ -0,0 +1,627 @@
|
|||||||
|
{
|
||||||
|
"metadata" : {
|
||||||
|
"triggers" : [ {
|
||||||
|
"event" : "event",
|
||||||
|
"className" : "click.kamil.examples.statemachine.polymorphic.OrderService",
|
||||||
|
"methodName" : "processEvent",
|
||||||
|
"sourceFile" : "src/main/java/click/kamil/examples/statemachine/polymorphic/OrderService.java",
|
||||||
|
"sourceModule" : null,
|
||||||
|
"stateMachineId" : null,
|
||||||
|
"sourceState" : null,
|
||||||
|
"lineNumber" : 13,
|
||||||
|
"polymorphicEvents" : null
|
||||||
|
}, {
|
||||||
|
"event" : "payload",
|
||||||
|
"className" : "click.kamil.examples.statemachine.polymorphic.OrderService",
|
||||||
|
"methodName" : "processPayloadEvent",
|
||||||
|
"sourceFile" : "src/main/java/click/kamil/examples/statemachine/polymorphic/OrderService.java",
|
||||||
|
"sourceModule" : null,
|
||||||
|
"stateMachineId" : null,
|
||||||
|
"sourceState" : null,
|
||||||
|
"lineNumber" : 17,
|
||||||
|
"polymorphicEvents" : null
|
||||||
|
}, {
|
||||||
|
"event" : "event",
|
||||||
|
"className" : "click.kamil.examples.statemachine.polymorphic.OrderService",
|
||||||
|
"methodName" : "processCustomEvent",
|
||||||
|
"sourceFile" : "src/main/java/click/kamil/examples/statemachine/polymorphic/OrderService.java",
|
||||||
|
"sourceModule" : null,
|
||||||
|
"stateMachineId" : null,
|
||||||
|
"sourceState" : null,
|
||||||
|
"lineNumber" : 21,
|
||||||
|
"polymorphicEvents" : null
|
||||||
|
} ],
|
||||||
|
"entryPoints" : [ {
|
||||||
|
"type" : "REST",
|
||||||
|
"name" : "POST /pay",
|
||||||
|
"className" : "click.kamil.examples.statemachine.polymorphic.PolymorphicController",
|
||||||
|
"methodName" : "pay",
|
||||||
|
"sourceFile" : "src/main/java/click/kamil/examples/statemachine/polymorphic/PolymorphicController.java",
|
||||||
|
"metadata" : {
|
||||||
|
"path" : "/pay",
|
||||||
|
"verb" : "POST"
|
||||||
|
},
|
||||||
|
"parameters" : [ ]
|
||||||
|
}, {
|
||||||
|
"type" : "REST",
|
||||||
|
"name" : "POST /fulfill",
|
||||||
|
"className" : "click.kamil.examples.statemachine.polymorphic.PolymorphicController",
|
||||||
|
"methodName" : "fulfill",
|
||||||
|
"sourceFile" : "src/main/java/click/kamil/examples/statemachine/polymorphic/PolymorphicController.java",
|
||||||
|
"metadata" : {
|
||||||
|
"path" : "/fulfill",
|
||||||
|
"verb" : "POST"
|
||||||
|
},
|
||||||
|
"parameters" : [ ]
|
||||||
|
}, {
|
||||||
|
"type" : "REST",
|
||||||
|
"name" : "POST /cancel",
|
||||||
|
"className" : "click.kamil.examples.statemachine.polymorphic.PolymorphicController",
|
||||||
|
"methodName" : "cancel",
|
||||||
|
"sourceFile" : "src/main/java/click/kamil/examples/statemachine/polymorphic/PolymorphicController.java",
|
||||||
|
"metadata" : {
|
||||||
|
"path" : "/cancel",
|
||||||
|
"verb" : "POST"
|
||||||
|
},
|
||||||
|
"parameters" : [ ]
|
||||||
|
}, {
|
||||||
|
"type" : "REST",
|
||||||
|
"name" : "POST /payload-pay",
|
||||||
|
"className" : "click.kamil.examples.statemachine.polymorphic.PolymorphicController",
|
||||||
|
"methodName" : "payloadPay",
|
||||||
|
"sourceFile" : "src/main/java/click/kamil/examples/statemachine/polymorphic/PolymorphicController.java",
|
||||||
|
"metadata" : {
|
||||||
|
"path" : "/payload-pay",
|
||||||
|
"verb" : "POST"
|
||||||
|
},
|
||||||
|
"parameters" : [ ]
|
||||||
|
}, {
|
||||||
|
"type" : "REST",
|
||||||
|
"name" : "POST /pay-variable",
|
||||||
|
"className" : "click.kamil.examples.statemachine.polymorphic.PolymorphicController",
|
||||||
|
"methodName" : "payVariable",
|
||||||
|
"sourceFile" : "src/main/java/click/kamil/examples/statemachine/polymorphic/PolymorphicController.java",
|
||||||
|
"metadata" : {
|
||||||
|
"path" : "/pay-variable",
|
||||||
|
"verb" : "POST"
|
||||||
|
},
|
||||||
|
"parameters" : [ ]
|
||||||
|
}, {
|
||||||
|
"type" : "REST",
|
||||||
|
"name" : "POST /pay-cast",
|
||||||
|
"className" : "click.kamil.examples.statemachine.polymorphic.PolymorphicController",
|
||||||
|
"methodName" : "payCast",
|
||||||
|
"sourceFile" : "src/main/java/click/kamil/examples/statemachine/polymorphic/PolymorphicController.java",
|
||||||
|
"metadata" : {
|
||||||
|
"path" : "/pay-cast",
|
||||||
|
"verb" : "POST"
|
||||||
|
},
|
||||||
|
"parameters" : [ ]
|
||||||
|
}, {
|
||||||
|
"type" : "REST",
|
||||||
|
"name" : "POST /pay-ternary",
|
||||||
|
"className" : "click.kamil.examples.statemachine.polymorphic.PolymorphicController",
|
||||||
|
"methodName" : "payTernary",
|
||||||
|
"sourceFile" : "src/main/java/click/kamil/examples/statemachine/polymorphic/PolymorphicController.java",
|
||||||
|
"metadata" : {
|
||||||
|
"path" : "/pay-ternary",
|
||||||
|
"verb" : "POST"
|
||||||
|
},
|
||||||
|
"parameters" : [ {
|
||||||
|
"name" : "isPay",
|
||||||
|
"type" : "boolean",
|
||||||
|
"annotations" : [ ]
|
||||||
|
} ]
|
||||||
|
}, {
|
||||||
|
"type" : "REST",
|
||||||
|
"name" : "POST /pay-list",
|
||||||
|
"className" : "click.kamil.examples.statemachine.polymorphic.PolymorphicController",
|
||||||
|
"methodName" : "payList",
|
||||||
|
"sourceFile" : "src/main/java/click/kamil/examples/statemachine/polymorphic/PolymorphicController.java",
|
||||||
|
"metadata" : {
|
||||||
|
"path" : "/pay-list",
|
||||||
|
"verb" : "POST"
|
||||||
|
},
|
||||||
|
"parameters" : [ ]
|
||||||
|
}, {
|
||||||
|
"type" : "REST",
|
||||||
|
"name" : "POST /pay-builder-static",
|
||||||
|
"className" : "click.kamil.examples.statemachine.polymorphic.PolymorphicController",
|
||||||
|
"methodName" : "payBuilderStatic",
|
||||||
|
"sourceFile" : "src/main/java/click/kamil/examples/statemachine/polymorphic/PolymorphicController.java",
|
||||||
|
"metadata" : {
|
||||||
|
"path" : "/pay-builder-static",
|
||||||
|
"verb" : "POST"
|
||||||
|
},
|
||||||
|
"parameters" : [ ]
|
||||||
|
}, {
|
||||||
|
"type" : "REST",
|
||||||
|
"name" : "POST /pay-builder-instance",
|
||||||
|
"className" : "click.kamil.examples.statemachine.polymorphic.PolymorphicController",
|
||||||
|
"methodName" : "payBuilderInstance",
|
||||||
|
"sourceFile" : "src/main/java/click/kamil/examples/statemachine/polymorphic/PolymorphicController.java",
|
||||||
|
"metadata" : {
|
||||||
|
"path" : "/pay-builder-instance",
|
||||||
|
"verb" : "POST"
|
||||||
|
},
|
||||||
|
"parameters" : [ ]
|
||||||
|
}, {
|
||||||
|
"type" : "REST",
|
||||||
|
"name" : "POST /abcd",
|
||||||
|
"className" : "click.kamil.examples.statemachine.polymorphic.PolymorphicController",
|
||||||
|
"methodName" : "abcd",
|
||||||
|
"sourceFile" : "src/main/java/click/kamil/examples/statemachine/polymorphic/PolymorphicController.java",
|
||||||
|
"metadata" : {
|
||||||
|
"path" : "/abcd",
|
||||||
|
"verb" : "POST"
|
||||||
|
},
|
||||||
|
"parameters" : [ ]
|
||||||
|
}, {
|
||||||
|
"type" : "REST",
|
||||||
|
"name" : "POST /mystery",
|
||||||
|
"className" : "click.kamil.examples.statemachine.polymorphic.PolymorphicController",
|
||||||
|
"methodName" : "mystery",
|
||||||
|
"sourceFile" : "src/main/java/click/kamil/examples/statemachine/polymorphic/PolymorphicController.java",
|
||||||
|
"metadata" : {
|
||||||
|
"path" : "/mystery",
|
||||||
|
"verb" : "POST"
|
||||||
|
},
|
||||||
|
"parameters" : [ ]
|
||||||
|
} ],
|
||||||
|
"callChains" : [ {
|
||||||
|
"entryPoint" : {
|
||||||
|
"type" : "REST",
|
||||||
|
"name" : "POST /pay",
|
||||||
|
"className" : "click.kamil.examples.statemachine.polymorphic.PolymorphicController",
|
||||||
|
"methodName" : "pay",
|
||||||
|
"sourceFile" : "src/main/java/click/kamil/examples/statemachine/polymorphic/PolymorphicController.java",
|
||||||
|
"metadata" : {
|
||||||
|
"path" : "/pay",
|
||||||
|
"verb" : "POST"
|
||||||
|
},
|
||||||
|
"parameters" : [ ]
|
||||||
|
},
|
||||||
|
"methodChain" : [ "click.kamil.examples.statemachine.polymorphic.PolymorphicController.pay", "click.kamil.examples.statemachine.polymorphic.OrderService.processEvent" ],
|
||||||
|
"triggerPoint" : {
|
||||||
|
"event" : "new PayEvent()",
|
||||||
|
"className" : "click.kamil.examples.statemachine.polymorphic.OrderService",
|
||||||
|
"methodName" : "processEvent",
|
||||||
|
"sourceFile" : "src/main/java/click/kamil/examples/statemachine/polymorphic/OrderService.java",
|
||||||
|
"sourceModule" : null,
|
||||||
|
"stateMachineId" : null,
|
||||||
|
"sourceState" : null,
|
||||||
|
"lineNumber" : 13,
|
||||||
|
"polymorphicEvents" : [ "OrderEvents.PAY" ]
|
||||||
|
},
|
||||||
|
"contextMachineId" : null,
|
||||||
|
"matchedTransitions" : [ {
|
||||||
|
"sourceState" : "OrderStates.SUBMITTED",
|
||||||
|
"targetState" : "OrderStates.PAID",
|
||||||
|
"event" : "OrderEvents.PAY"
|
||||||
|
} ]
|
||||||
|
}, {
|
||||||
|
"entryPoint" : {
|
||||||
|
"type" : "REST",
|
||||||
|
"name" : "POST /fulfill",
|
||||||
|
"className" : "click.kamil.examples.statemachine.polymorphic.PolymorphicController",
|
||||||
|
"methodName" : "fulfill",
|
||||||
|
"sourceFile" : "src/main/java/click/kamil/examples/statemachine/polymorphic/PolymorphicController.java",
|
||||||
|
"metadata" : {
|
||||||
|
"path" : "/fulfill",
|
||||||
|
"verb" : "POST"
|
||||||
|
},
|
||||||
|
"parameters" : [ ]
|
||||||
|
},
|
||||||
|
"methodChain" : [ "click.kamil.examples.statemachine.polymorphic.PolymorphicController.fulfill", "click.kamil.examples.statemachine.polymorphic.OrderService.processEvent" ],
|
||||||
|
"triggerPoint" : {
|
||||||
|
"event" : "new FulfillEvent()",
|
||||||
|
"className" : "click.kamil.examples.statemachine.polymorphic.OrderService",
|
||||||
|
"methodName" : "processEvent",
|
||||||
|
"sourceFile" : "src/main/java/click/kamil/examples/statemachine/polymorphic/OrderService.java",
|
||||||
|
"sourceModule" : null,
|
||||||
|
"stateMachineId" : null,
|
||||||
|
"sourceState" : null,
|
||||||
|
"lineNumber" : 13,
|
||||||
|
"polymorphicEvents" : [ "OrderEvents.FULFILL" ]
|
||||||
|
},
|
||||||
|
"contextMachineId" : null,
|
||||||
|
"matchedTransitions" : [ {
|
||||||
|
"sourceState" : "OrderStates.PAID",
|
||||||
|
"targetState" : "OrderStates.FULFILLED",
|
||||||
|
"event" : "OrderEvents.FULFILL"
|
||||||
|
} ]
|
||||||
|
}, {
|
||||||
|
"entryPoint" : {
|
||||||
|
"type" : "REST",
|
||||||
|
"name" : "POST /cancel",
|
||||||
|
"className" : "click.kamil.examples.statemachine.polymorphic.PolymorphicController",
|
||||||
|
"methodName" : "cancel",
|
||||||
|
"sourceFile" : "src/main/java/click/kamil/examples/statemachine/polymorphic/PolymorphicController.java",
|
||||||
|
"metadata" : {
|
||||||
|
"path" : "/cancel",
|
||||||
|
"verb" : "POST"
|
||||||
|
},
|
||||||
|
"parameters" : [ ]
|
||||||
|
},
|
||||||
|
"methodChain" : [ "click.kamil.examples.statemachine.polymorphic.PolymorphicController.cancel", "click.kamil.examples.statemachine.polymorphic.OrderService.processEvent" ],
|
||||||
|
"triggerPoint" : {
|
||||||
|
"event" : "new CancelEvent()",
|
||||||
|
"className" : "click.kamil.examples.statemachine.polymorphic.OrderService",
|
||||||
|
"methodName" : "processEvent",
|
||||||
|
"sourceFile" : "src/main/java/click/kamil/examples/statemachine/polymorphic/OrderService.java",
|
||||||
|
"sourceModule" : null,
|
||||||
|
"stateMachineId" : null,
|
||||||
|
"sourceState" : null,
|
||||||
|
"lineNumber" : 13,
|
||||||
|
"polymorphicEvents" : [ "OrderEvents.CANCEL" ]
|
||||||
|
},
|
||||||
|
"contextMachineId" : null,
|
||||||
|
"matchedTransitions" : [ {
|
||||||
|
"sourceState" : "OrderStates.SUBMITTED",
|
||||||
|
"targetState" : "OrderStates.CANCELED",
|
||||||
|
"event" : "OrderEvents.CANCEL"
|
||||||
|
} ]
|
||||||
|
}, {
|
||||||
|
"entryPoint" : {
|
||||||
|
"type" : "REST",
|
||||||
|
"name" : "POST /payload-pay",
|
||||||
|
"className" : "click.kamil.examples.statemachine.polymorphic.PolymorphicController",
|
||||||
|
"methodName" : "payloadPay",
|
||||||
|
"sourceFile" : "src/main/java/click/kamil/examples/statemachine/polymorphic/PolymorphicController.java",
|
||||||
|
"metadata" : {
|
||||||
|
"path" : "/payload-pay",
|
||||||
|
"verb" : "POST"
|
||||||
|
},
|
||||||
|
"parameters" : [ ]
|
||||||
|
},
|
||||||
|
"methodChain" : [ "click.kamil.examples.statemachine.polymorphic.PolymorphicController.payloadPay", "click.kamil.examples.statemachine.polymorphic.OrderService.processPayloadEvent" ],
|
||||||
|
"triggerPoint" : {
|
||||||
|
"event" : "new PayEvent()",
|
||||||
|
"className" : "click.kamil.examples.statemachine.polymorphic.OrderService",
|
||||||
|
"methodName" : "processPayloadEvent",
|
||||||
|
"sourceFile" : "src/main/java/click/kamil/examples/statemachine/polymorphic/OrderService.java",
|
||||||
|
"sourceModule" : null,
|
||||||
|
"stateMachineId" : null,
|
||||||
|
"sourceState" : null,
|
||||||
|
"lineNumber" : 17,
|
||||||
|
"polymorphicEvents" : [ "OrderEvents.PAY" ]
|
||||||
|
},
|
||||||
|
"contextMachineId" : null,
|
||||||
|
"matchedTransitions" : [ {
|
||||||
|
"sourceState" : "OrderStates.SUBMITTED",
|
||||||
|
"targetState" : "OrderStates.PAID",
|
||||||
|
"event" : "OrderEvents.PAY"
|
||||||
|
} ]
|
||||||
|
}, {
|
||||||
|
"entryPoint" : {
|
||||||
|
"type" : "REST",
|
||||||
|
"name" : "POST /pay-variable",
|
||||||
|
"className" : "click.kamil.examples.statemachine.polymorphic.PolymorphicController",
|
||||||
|
"methodName" : "payVariable",
|
||||||
|
"sourceFile" : "src/main/java/click/kamil/examples/statemachine/polymorphic/PolymorphicController.java",
|
||||||
|
"metadata" : {
|
||||||
|
"path" : "/pay-variable",
|
||||||
|
"verb" : "POST"
|
||||||
|
},
|
||||||
|
"parameters" : [ ]
|
||||||
|
},
|
||||||
|
"methodChain" : [ "click.kamil.examples.statemachine.polymorphic.PolymorphicController.payVariable", "click.kamil.examples.statemachine.polymorphic.OrderService.processEvent" ],
|
||||||
|
"triggerPoint" : {
|
||||||
|
"event" : "new PayEvent()",
|
||||||
|
"className" : "click.kamil.examples.statemachine.polymorphic.OrderService",
|
||||||
|
"methodName" : "processEvent",
|
||||||
|
"sourceFile" : "src/main/java/click/kamil/examples/statemachine/polymorphic/OrderService.java",
|
||||||
|
"sourceModule" : null,
|
||||||
|
"stateMachineId" : null,
|
||||||
|
"sourceState" : null,
|
||||||
|
"lineNumber" : 13,
|
||||||
|
"polymorphicEvents" : [ "OrderEvents.PAY" ]
|
||||||
|
},
|
||||||
|
"contextMachineId" : null,
|
||||||
|
"matchedTransitions" : [ {
|
||||||
|
"sourceState" : "OrderStates.SUBMITTED",
|
||||||
|
"targetState" : "OrderStates.PAID",
|
||||||
|
"event" : "OrderEvents.PAY"
|
||||||
|
} ]
|
||||||
|
}, {
|
||||||
|
"entryPoint" : {
|
||||||
|
"type" : "REST",
|
||||||
|
"name" : "POST /pay-cast",
|
||||||
|
"className" : "click.kamil.examples.statemachine.polymorphic.PolymorphicController",
|
||||||
|
"methodName" : "payCast",
|
||||||
|
"sourceFile" : "src/main/java/click/kamil/examples/statemachine/polymorphic/PolymorphicController.java",
|
||||||
|
"metadata" : {
|
||||||
|
"path" : "/pay-cast",
|
||||||
|
"verb" : "POST"
|
||||||
|
},
|
||||||
|
"parameters" : [ ]
|
||||||
|
},
|
||||||
|
"methodChain" : [ "click.kamil.examples.statemachine.polymorphic.PolymorphicController.payCast", "click.kamil.examples.statemachine.polymorphic.OrderService.processEvent" ],
|
||||||
|
"triggerPoint" : {
|
||||||
|
"event" : "(BaseEvent)new PayEvent()",
|
||||||
|
"className" : "click.kamil.examples.statemachine.polymorphic.OrderService",
|
||||||
|
"methodName" : "processEvent",
|
||||||
|
"sourceFile" : "src/main/java/click/kamil/examples/statemachine/polymorphic/OrderService.java",
|
||||||
|
"sourceModule" : null,
|
||||||
|
"stateMachineId" : null,
|
||||||
|
"sourceState" : null,
|
||||||
|
"lineNumber" : 13,
|
||||||
|
"polymorphicEvents" : [ "OrderEvents.PAY" ]
|
||||||
|
},
|
||||||
|
"contextMachineId" : null,
|
||||||
|
"matchedTransitions" : [ {
|
||||||
|
"sourceState" : "OrderStates.SUBMITTED",
|
||||||
|
"targetState" : "OrderStates.PAID",
|
||||||
|
"event" : "OrderEvents.PAY"
|
||||||
|
} ]
|
||||||
|
}, {
|
||||||
|
"entryPoint" : {
|
||||||
|
"type" : "REST",
|
||||||
|
"name" : "POST /pay-ternary",
|
||||||
|
"className" : "click.kamil.examples.statemachine.polymorphic.PolymorphicController",
|
||||||
|
"methodName" : "payTernary",
|
||||||
|
"sourceFile" : "src/main/java/click/kamil/examples/statemachine/polymorphic/PolymorphicController.java",
|
||||||
|
"metadata" : {
|
||||||
|
"path" : "/pay-ternary",
|
||||||
|
"verb" : "POST"
|
||||||
|
},
|
||||||
|
"parameters" : [ {
|
||||||
|
"name" : "isPay",
|
||||||
|
"type" : "boolean",
|
||||||
|
"annotations" : [ ]
|
||||||
|
} ]
|
||||||
|
},
|
||||||
|
"methodChain" : [ "click.kamil.examples.statemachine.polymorphic.PolymorphicController.payTernary", "click.kamil.examples.statemachine.polymorphic.OrderService.processEvent" ],
|
||||||
|
"triggerPoint" : {
|
||||||
|
"event" : "isPay ? new PayEvent() : new CancelEvent()",
|
||||||
|
"className" : "click.kamil.examples.statemachine.polymorphic.OrderService",
|
||||||
|
"methodName" : "processEvent",
|
||||||
|
"sourceFile" : "src/main/java/click/kamil/examples/statemachine/polymorphic/OrderService.java",
|
||||||
|
"sourceModule" : null,
|
||||||
|
"stateMachineId" : null,
|
||||||
|
"sourceState" : null,
|
||||||
|
"lineNumber" : 13,
|
||||||
|
"polymorphicEvents" : [ "OrderEvents.PAY", "OrderEvents.CANCEL" ]
|
||||||
|
},
|
||||||
|
"contextMachineId" : null,
|
||||||
|
"matchedTransitions" : [ {
|
||||||
|
"sourceState" : "OrderStates.SUBMITTED",
|
||||||
|
"targetState" : "OrderStates.PAID",
|
||||||
|
"event" : "OrderEvents.PAY"
|
||||||
|
}, {
|
||||||
|
"sourceState" : "OrderStates.SUBMITTED",
|
||||||
|
"targetState" : "OrderStates.CANCELED",
|
||||||
|
"event" : "OrderEvents.CANCEL"
|
||||||
|
} ]
|
||||||
|
}, {
|
||||||
|
"entryPoint" : {
|
||||||
|
"type" : "REST",
|
||||||
|
"name" : "POST /pay-list",
|
||||||
|
"className" : "click.kamil.examples.statemachine.polymorphic.PolymorphicController",
|
||||||
|
"methodName" : "payList",
|
||||||
|
"sourceFile" : "src/main/java/click/kamil/examples/statemachine/polymorphic/PolymorphicController.java",
|
||||||
|
"metadata" : {
|
||||||
|
"path" : "/pay-list",
|
||||||
|
"verb" : "POST"
|
||||||
|
},
|
||||||
|
"parameters" : [ ]
|
||||||
|
},
|
||||||
|
"methodChain" : [ "click.kamil.examples.statemachine.polymorphic.PolymorphicController.payList", "click.kamil.examples.statemachine.polymorphic.OrderService.processEvent" ],
|
||||||
|
"triggerPoint" : {
|
||||||
|
"event" : "new PayEvent()",
|
||||||
|
"className" : "click.kamil.examples.statemachine.polymorphic.OrderService",
|
||||||
|
"methodName" : "processEvent",
|
||||||
|
"sourceFile" : "src/main/java/click/kamil/examples/statemachine/polymorphic/OrderService.java",
|
||||||
|
"sourceModule" : null,
|
||||||
|
"stateMachineId" : null,
|
||||||
|
"sourceState" : null,
|
||||||
|
"lineNumber" : 13,
|
||||||
|
"polymorphicEvents" : [ "OrderEvents.PAY" ]
|
||||||
|
},
|
||||||
|
"contextMachineId" : null,
|
||||||
|
"matchedTransitions" : [ {
|
||||||
|
"sourceState" : "OrderStates.SUBMITTED",
|
||||||
|
"targetState" : "OrderStates.PAID",
|
||||||
|
"event" : "OrderEvents.PAY"
|
||||||
|
} ]
|
||||||
|
}, {
|
||||||
|
"entryPoint" : {
|
||||||
|
"type" : "REST",
|
||||||
|
"name" : "POST /pay-builder-static",
|
||||||
|
"className" : "click.kamil.examples.statemachine.polymorphic.PolymorphicController",
|
||||||
|
"methodName" : "payBuilderStatic",
|
||||||
|
"sourceFile" : "src/main/java/click/kamil/examples/statemachine/polymorphic/PolymorphicController.java",
|
||||||
|
"metadata" : {
|
||||||
|
"path" : "/pay-builder-static",
|
||||||
|
"verb" : "POST"
|
||||||
|
},
|
||||||
|
"parameters" : [ ]
|
||||||
|
},
|
||||||
|
"methodChain" : [ "click.kamil.examples.statemachine.polymorphic.PolymorphicController.payBuilderStatic", "click.kamil.examples.statemachine.polymorphic.OrderService.processEvent" ],
|
||||||
|
"triggerPoint" : {
|
||||||
|
"event" : "EventBuilder.buildEvent()",
|
||||||
|
"className" : "click.kamil.examples.statemachine.polymorphic.OrderService",
|
||||||
|
"methodName" : "processEvent",
|
||||||
|
"sourceFile" : "src/main/java/click/kamil/examples/statemachine/polymorphic/OrderService.java",
|
||||||
|
"sourceModule" : null,
|
||||||
|
"stateMachineId" : null,
|
||||||
|
"sourceState" : null,
|
||||||
|
"lineNumber" : 13,
|
||||||
|
"polymorphicEvents" : [ ]
|
||||||
|
},
|
||||||
|
"contextMachineId" : null,
|
||||||
|
"matchedTransitions" : null
|
||||||
|
}, {
|
||||||
|
"entryPoint" : {
|
||||||
|
"type" : "REST",
|
||||||
|
"name" : "POST /pay-builder-instance",
|
||||||
|
"className" : "click.kamil.examples.statemachine.polymorphic.PolymorphicController",
|
||||||
|
"methodName" : "payBuilderInstance",
|
||||||
|
"sourceFile" : "src/main/java/click/kamil/examples/statemachine/polymorphic/PolymorphicController.java",
|
||||||
|
"metadata" : {
|
||||||
|
"path" : "/pay-builder-instance",
|
||||||
|
"verb" : "POST"
|
||||||
|
},
|
||||||
|
"parameters" : [ ]
|
||||||
|
},
|
||||||
|
"methodChain" : [ "click.kamil.examples.statemachine.polymorphic.PolymorphicController.payBuilderInstance", "click.kamil.examples.statemachine.polymorphic.OrderService.processEvent" ],
|
||||||
|
"triggerPoint" : {
|
||||||
|
"event" : "new EventBuilder().buildInstanceEvent()",
|
||||||
|
"className" : "click.kamil.examples.statemachine.polymorphic.OrderService",
|
||||||
|
"methodName" : "processEvent",
|
||||||
|
"sourceFile" : "src/main/java/click/kamil/examples/statemachine/polymorphic/OrderService.java",
|
||||||
|
"sourceModule" : null,
|
||||||
|
"stateMachineId" : null,
|
||||||
|
"sourceState" : null,
|
||||||
|
"lineNumber" : 13,
|
||||||
|
"polymorphicEvents" : [ ]
|
||||||
|
},
|
||||||
|
"contextMachineId" : null,
|
||||||
|
"matchedTransitions" : null
|
||||||
|
}, {
|
||||||
|
"entryPoint" : {
|
||||||
|
"type" : "REST",
|
||||||
|
"name" : "POST /abcd",
|
||||||
|
"className" : "click.kamil.examples.statemachine.polymorphic.PolymorphicController",
|
||||||
|
"methodName" : "abcd",
|
||||||
|
"sourceFile" : "src/main/java/click/kamil/examples/statemachine/polymorphic/PolymorphicController.java",
|
||||||
|
"metadata" : {
|
||||||
|
"path" : "/abcd",
|
||||||
|
"verb" : "POST"
|
||||||
|
},
|
||||||
|
"parameters" : [ ]
|
||||||
|
},
|
||||||
|
"methodChain" : [ "click.kamil.examples.statemachine.polymorphic.PolymorphicController.abcd", "click.kamil.examples.statemachine.polymorphic.OrderService.processCustomEvent" ],
|
||||||
|
"triggerPoint" : {
|
||||||
|
"event" : "new AbcdEvent()",
|
||||||
|
"className" : "click.kamil.examples.statemachine.polymorphic.OrderService",
|
||||||
|
"methodName" : "processCustomEvent",
|
||||||
|
"sourceFile" : "src/main/java/click/kamil/examples/statemachine/polymorphic/OrderService.java",
|
||||||
|
"sourceModule" : null,
|
||||||
|
"stateMachineId" : null,
|
||||||
|
"sourceState" : null,
|
||||||
|
"lineNumber" : 21,
|
||||||
|
"polymorphicEvents" : [ "OrderEvents.ABCD" ]
|
||||||
|
},
|
||||||
|
"contextMachineId" : null,
|
||||||
|
"matchedTransitions" : [ {
|
||||||
|
"sourceState" : "OrderStates.PAID",
|
||||||
|
"targetState" : "OrderStates.CANCELED",
|
||||||
|
"event" : "OrderEvents.ABCD"
|
||||||
|
} ]
|
||||||
|
}, {
|
||||||
|
"entryPoint" : {
|
||||||
|
"type" : "REST",
|
||||||
|
"name" : "POST /mystery",
|
||||||
|
"className" : "click.kamil.examples.statemachine.polymorphic.PolymorphicController",
|
||||||
|
"methodName" : "mystery",
|
||||||
|
"sourceFile" : "src/main/java/click/kamil/examples/statemachine/polymorphic/PolymorphicController.java",
|
||||||
|
"metadata" : {
|
||||||
|
"path" : "/mystery",
|
||||||
|
"verb" : "POST"
|
||||||
|
},
|
||||||
|
"parameters" : [ ]
|
||||||
|
},
|
||||||
|
"methodChain" : [ "click.kamil.examples.statemachine.polymorphic.PolymorphicController.mystery", "click.kamil.examples.statemachine.polymorphic.OrderService.processCustomEvent" ],
|
||||||
|
"triggerPoint" : {
|
||||||
|
"event" : "new MysteryPayload()",
|
||||||
|
"className" : "click.kamil.examples.statemachine.polymorphic.OrderService",
|
||||||
|
"methodName" : "processCustomEvent",
|
||||||
|
"sourceFile" : "src/main/java/click/kamil/examples/statemachine/polymorphic/OrderService.java",
|
||||||
|
"sourceModule" : null,
|
||||||
|
"stateMachineId" : null,
|
||||||
|
"sourceState" : null,
|
||||||
|
"lineNumber" : 21,
|
||||||
|
"polymorphicEvents" : [ "OrderEvents.ABCD", "OrderEvents.PAY" ]
|
||||||
|
},
|
||||||
|
"contextMachineId" : null,
|
||||||
|
"matchedTransitions" : [ {
|
||||||
|
"sourceState" : "OrderStates.SUBMITTED",
|
||||||
|
"targetState" : "OrderStates.PAID",
|
||||||
|
"event" : "OrderEvents.PAY"
|
||||||
|
}, {
|
||||||
|
"sourceState" : "OrderStates.PAID",
|
||||||
|
"targetState" : "OrderStates.CANCELED",
|
||||||
|
"event" : "OrderEvents.ABCD"
|
||||||
|
} ]
|
||||||
|
} ],
|
||||||
|
"properties" : {
|
||||||
|
"default" : {
|
||||||
|
"spring.application.name" : "statemachinedemo"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"name" : "click.kamil.examples.statemachine.polymorphic.PolymorphicStateMachineConfiguration",
|
||||||
|
"renderChoicesAsDiamonds" : true,
|
||||||
|
"startStates" : [ "OrderStates.SUBMITTED" ],
|
||||||
|
"transitions" : [ {
|
||||||
|
"type" : "EXTERNAL",
|
||||||
|
"sourceStates" : [ {
|
||||||
|
"rawName" : "OrderStates.SUBMITTED",
|
||||||
|
"fullIdentifier" : "OrderStates.SUBMITTED"
|
||||||
|
} ],
|
||||||
|
"targetStates" : [ {
|
||||||
|
"rawName" : "OrderStates.PAID",
|
||||||
|
"fullIdentifier" : "OrderStates.PAID"
|
||||||
|
} ],
|
||||||
|
"event" : {
|
||||||
|
"rawName" : "OrderEvents.PAY",
|
||||||
|
"fullIdentifier" : "OrderEvents.PAY"
|
||||||
|
},
|
||||||
|
"guard" : null,
|
||||||
|
"actions" : [ ],
|
||||||
|
"order" : null
|
||||||
|
}, {
|
||||||
|
"type" : "EXTERNAL",
|
||||||
|
"sourceStates" : [ {
|
||||||
|
"rawName" : "OrderStates.PAID",
|
||||||
|
"fullIdentifier" : "OrderStates.PAID"
|
||||||
|
} ],
|
||||||
|
"targetStates" : [ {
|
||||||
|
"rawName" : "OrderStates.FULFILLED",
|
||||||
|
"fullIdentifier" : "OrderStates.FULFILLED"
|
||||||
|
} ],
|
||||||
|
"event" : {
|
||||||
|
"rawName" : "OrderEvents.FULFILL",
|
||||||
|
"fullIdentifier" : "OrderEvents.FULFILL"
|
||||||
|
},
|
||||||
|
"guard" : null,
|
||||||
|
"actions" : [ ],
|
||||||
|
"order" : null
|
||||||
|
}, {
|
||||||
|
"type" : "EXTERNAL",
|
||||||
|
"sourceStates" : [ {
|
||||||
|
"rawName" : "OrderStates.SUBMITTED",
|
||||||
|
"fullIdentifier" : "OrderStates.SUBMITTED"
|
||||||
|
} ],
|
||||||
|
"targetStates" : [ {
|
||||||
|
"rawName" : "OrderStates.CANCELED",
|
||||||
|
"fullIdentifier" : "OrderStates.CANCELED"
|
||||||
|
} ],
|
||||||
|
"event" : {
|
||||||
|
"rawName" : "OrderEvents.CANCEL",
|
||||||
|
"fullIdentifier" : "OrderEvents.CANCEL"
|
||||||
|
},
|
||||||
|
"guard" : null,
|
||||||
|
"actions" : [ ],
|
||||||
|
"order" : null
|
||||||
|
}, {
|
||||||
|
"type" : "EXTERNAL",
|
||||||
|
"sourceStates" : [ {
|
||||||
|
"rawName" : "OrderStates.PAID",
|
||||||
|
"fullIdentifier" : "OrderStates.PAID"
|
||||||
|
} ],
|
||||||
|
"targetStates" : [ {
|
||||||
|
"rawName" : "OrderStates.CANCELED",
|
||||||
|
"fullIdentifier" : "OrderStates.CANCELED"
|
||||||
|
} ],
|
||||||
|
"event" : {
|
||||||
|
"rawName" : "OrderEvents.ABCD",
|
||||||
|
"fullIdentifier" : "OrderEvents.ABCD"
|
||||||
|
},
|
||||||
|
"guard" : null,
|
||||||
|
"actions" : [ ],
|
||||||
|
"order" : null
|
||||||
|
} ],
|
||||||
|
"endStates" : [ "OrderStates.CANCELED", "OrderStates.FULFILLED" ]
|
||||||
|
}
|
||||||
@@ -0,0 +1,35 @@
|
|||||||
|
@startuml
|
||||||
|
!pragma layout smetana
|
||||||
|
set separator none
|
||||||
|
hide empty description
|
||||||
|
hide stereotype
|
||||||
|
skinparam state {
|
||||||
|
BackgroundColor white
|
||||||
|
BorderColor #94a3b8
|
||||||
|
BorderThickness 1
|
||||||
|
FontName Inter
|
||||||
|
FontSize 9
|
||||||
|
FontStyle bold
|
||||||
|
RoundCorner 20
|
||||||
|
Padding 1
|
||||||
|
}
|
||||||
|
skinparam shadowing false
|
||||||
|
skinparam ArrowFontName JetBrains Mono
|
||||||
|
skinparam ArrowFontSize 8
|
||||||
|
skinparam ArrowColor #cbd5e1
|
||||||
|
skinparam ArrowThickness 1
|
||||||
|
skinparam dpi 110
|
||||||
|
skinparam svgLinkTarget _self
|
||||||
|
|
||||||
|
[*] --> OrderStates.SUBMITTED
|
||||||
|
|
||||||
|
|
||||||
|
OrderStates.SUBMITTED -[#1E90FF,bold]-> OrderStates.PAID <<external>> : OrderEvents.PAY
|
||||||
|
OrderStates.PAID -[#1E90FF,bold]-> OrderStates.FULFILLED <<external>> : OrderEvents.FULFILL
|
||||||
|
OrderStates.SUBMITTED -[#1E90FF,bold]-> OrderStates.CANCELED <<external>> : OrderEvents.CANCEL
|
||||||
|
OrderStates.PAID -[#1E90FF,bold]-> OrderStates.CANCELED <<external>> : OrderEvents.ABCD
|
||||||
|
|
||||||
|
OrderStates.CANCELED --> [*]
|
||||||
|
OrderStates.FULFILLED --> [*]
|
||||||
|
@enduml
|
||||||
|
|
||||||
@@ -0,0 +1,16 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<scxml xmlns="http://www.w3.org/2005/07/scxml" version="1.0" initial="SUBMITTED">
|
||||||
|
<state id="SUBMITTED">
|
||||||
|
<transition target="PAID" event="OrderEvents.PAY"/>
|
||||||
|
<transition target="CANCELED" event="OrderEvents.CANCEL"/>
|
||||||
|
</state>
|
||||||
|
<state id="PAID">
|
||||||
|
<transition target="FULFILLED" event="OrderEvents.FULFILL"/>
|
||||||
|
<transition target="CANCELED" event="OrderEvents.ABCD"/>
|
||||||
|
</state>
|
||||||
|
<state id="FULFILLED">
|
||||||
|
</state>
|
||||||
|
<state id="CANCELED">
|
||||||
|
</state>
|
||||||
|
</scxml>
|
||||||
|
|
||||||
@@ -8,7 +8,8 @@
|
|||||||
"sourceModule" : null,
|
"sourceModule" : null,
|
||||||
"stateMachineId" : null,
|
"stateMachineId" : null,
|
||||||
"sourceState" : null,
|
"sourceState" : null,
|
||||||
"lineNumber" : 25
|
"lineNumber" : 25,
|
||||||
|
"polymorphicEvents" : null
|
||||||
}, {
|
}, {
|
||||||
"event" : "eventProvider",
|
"event" : "eventProvider",
|
||||||
"className" : "click.kamil.service.StateMachineServiceImpl",
|
"className" : "click.kamil.service.StateMachineServiceImpl",
|
||||||
@@ -17,7 +18,8 @@
|
|||||||
"sourceModule" : null,
|
"sourceModule" : null,
|
||||||
"stateMachineId" : null,
|
"stateMachineId" : null,
|
||||||
"sourceState" : null,
|
"sourceState" : null,
|
||||||
"lineNumber" : 50
|
"lineNumber" : 50,
|
||||||
|
"polymorphicEvents" : null
|
||||||
}, {
|
}, {
|
||||||
"event" : "customMessage",
|
"event" : "customMessage",
|
||||||
"className" : "click.kamil.service.StateMachineServiceImpl",
|
"className" : "click.kamil.service.StateMachineServiceImpl",
|
||||||
@@ -26,7 +28,8 @@
|
|||||||
"sourceModule" : null,
|
"sourceModule" : null,
|
||||||
"stateMachineId" : null,
|
"stateMachineId" : null,
|
||||||
"sourceState" : null,
|
"sourceState" : null,
|
||||||
"lineNumber" : 78
|
"lineNumber" : 78,
|
||||||
|
"polymorphicEvents" : null
|
||||||
} ],
|
} ],
|
||||||
"entryPoints" : [ {
|
"entryPoints" : [ {
|
||||||
"type" : "REST",
|
"type" : "REST",
|
||||||
@@ -140,7 +143,8 @@
|
|||||||
"sourceModule" : null,
|
"sourceModule" : null,
|
||||||
"stateMachineId" : null,
|
"stateMachineId" : null,
|
||||||
"sourceState" : null,
|
"sourceState" : null,
|
||||||
"lineNumber" : 25
|
"lineNumber" : 25,
|
||||||
|
"polymorphicEvents" : [ "OrderEvent.PROCESS" ]
|
||||||
},
|
},
|
||||||
"contextMachineId" : null,
|
"contextMachineId" : null,
|
||||||
"matchedTransitions" : [ {
|
"matchedTransitions" : [ {
|
||||||
@@ -170,7 +174,8 @@
|
|||||||
"sourceModule" : null,
|
"sourceModule" : null,
|
||||||
"stateMachineId" : null,
|
"stateMachineId" : null,
|
||||||
"sourceState" : null,
|
"sourceState" : null,
|
||||||
"lineNumber" : 25
|
"lineNumber" : 25,
|
||||||
|
"polymorphicEvents" : [ "OrderEvent.COMPLETE" ]
|
||||||
},
|
},
|
||||||
"contextMachineId" : null,
|
"contextMachineId" : null,
|
||||||
"matchedTransitions" : [ {
|
"matchedTransitions" : [ {
|
||||||
@@ -200,7 +205,8 @@
|
|||||||
"sourceModule" : null,
|
"sourceModule" : null,
|
||||||
"stateMachineId" : null,
|
"stateMachineId" : null,
|
||||||
"sourceState" : null,
|
"sourceState" : null,
|
||||||
"lineNumber" : 25
|
"lineNumber" : 25,
|
||||||
|
"polymorphicEvents" : [ "OrderEvent.CANCEL" ]
|
||||||
},
|
},
|
||||||
"contextMachineId" : null,
|
"contextMachineId" : null,
|
||||||
"matchedTransitions" : [ {
|
"matchedTransitions" : [ {
|
||||||
@@ -234,7 +240,8 @@
|
|||||||
"sourceModule" : null,
|
"sourceModule" : null,
|
||||||
"stateMachineId" : null,
|
"stateMachineId" : null,
|
||||||
"sourceState" : null,
|
"sourceState" : null,
|
||||||
"lineNumber" : 25
|
"lineNumber" : 25,
|
||||||
|
"polymorphicEvents" : [ "OrderEvent.COMPLETE" ]
|
||||||
},
|
},
|
||||||
"contextMachineId" : null,
|
"contextMachineId" : null,
|
||||||
"matchedTransitions" : [ {
|
"matchedTransitions" : [ {
|
||||||
@@ -268,7 +275,8 @@
|
|||||||
"sourceModule" : null,
|
"sourceModule" : null,
|
||||||
"stateMachineId" : null,
|
"stateMachineId" : null,
|
||||||
"sourceState" : null,
|
"sourceState" : null,
|
||||||
"lineNumber" : 78
|
"lineNumber" : 78,
|
||||||
|
"polymorphicEvents" : [ "OrderEvent.PROCESS" ]
|
||||||
},
|
},
|
||||||
"contextMachineId" : null,
|
"contextMachineId" : null,
|
||||||
"matchedTransitions" : [ {
|
"matchedTransitions" : [ {
|
||||||
@@ -302,7 +310,8 @@
|
|||||||
"sourceModule" : null,
|
"sourceModule" : null,
|
||||||
"stateMachineId" : null,
|
"stateMachineId" : null,
|
||||||
"sourceState" : null,
|
"sourceState" : null,
|
||||||
"lineNumber" : 25
|
"lineNumber" : 25,
|
||||||
|
"polymorphicEvents" : [ "OrderEvent.PROCESS" ]
|
||||||
},
|
},
|
||||||
"contextMachineId" : null,
|
"contextMachineId" : null,
|
||||||
"matchedTransitions" : [ {
|
"matchedTransitions" : [ {
|
||||||
@@ -336,7 +345,8 @@
|
|||||||
"sourceModule" : null,
|
"sourceModule" : null,
|
||||||
"stateMachineId" : null,
|
"stateMachineId" : null,
|
||||||
"sourceState" : null,
|
"sourceState" : null,
|
||||||
"lineNumber" : 50
|
"lineNumber" : 50,
|
||||||
|
"polymorphicEvents" : [ "OrderEvent.CANCEL" ]
|
||||||
},
|
},
|
||||||
"contextMachineId" : null,
|
"contextMachineId" : null,
|
||||||
"matchedTransitions" : [ {
|
"matchedTransitions" : [ {
|
||||||
|
|||||||
@@ -13,6 +13,14 @@ import java.util.List;
|
|||||||
|
|
||||||
public class Main {
|
public class Main {
|
||||||
public static void main(String[] args) {
|
public static void main(String[] args) {
|
||||||
|
// Enable diagnostic mode early before SLF4J initializes
|
||||||
|
for (String arg : args) {
|
||||||
|
if ("--debug".equals(arg)) {
|
||||||
|
System.setProperty("org.slf4j.simpleLogger.defaultLogLevel", "debug");
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
// Wiring including the specialized HTML exporter
|
// Wiring including the specialized HTML exporter
|
||||||
var exporters = List.of(new PlantUml(), new Dot(), new Scxml(), new JsonExporter(), new HtmlExporter());
|
var exporters = List.of(new PlantUml(), new Dot(), new Scxml(), new JsonExporter(), new HtmlExporter());
|
||||||
var exportService = new ExportService(exporters);
|
var exportService = new ExportService(exporters);
|
||||||
|
|||||||
@@ -59,11 +59,19 @@ public class HtmlExporterCommand implements Callable<Integer> {
|
|||||||
@Option(names = {"--no-metadata-pane"}, description = "Disable rendering the left metadata pane (entry points, flows) in the HTML viewer.")
|
@Option(names = {"--no-metadata-pane"}, description = "Disable rendering the left metadata pane (entry points, flows) in the HTML viewer.")
|
||||||
private boolean noMetadataPane;
|
private boolean noMetadataPane;
|
||||||
|
|
||||||
|
@Option(names = {"--debug"}, description = "Enable diagnostic mode to show unresolved call chains and detailed analysis logging.", defaultValue = "false")
|
||||||
|
private boolean debug;
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public Integer call() throws Exception {
|
public Integer call() throws Exception {
|
||||||
var out = spec.commandLine().getOut();
|
var out = spec.commandLine().getOut();
|
||||||
var err = spec.commandLine().getErr();
|
var err = spec.commandLine().getErr();
|
||||||
|
|
||||||
|
if (debug) {
|
||||||
|
System.setProperty("org.slf4j.simpleLogger.defaultLogLevel", "debug");
|
||||||
|
out.println(CommandLine.Help.Ansi.AUTO.string("@|bold,cyan Diagnostic mode enabled|@"));
|
||||||
|
}
|
||||||
|
|
||||||
if (inputDir == null && jsonFile == null) {
|
if (inputDir == null && jsonFile == null) {
|
||||||
inputDir = Path.of(".");
|
inputDir = Path.of(".");
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -238,10 +238,27 @@
|
|||||||
.tooltip-content {
|
.tooltip-content {
|
||||||
padding: 20px;
|
padding: 20px;
|
||||||
max-width: 500px;
|
max-width: 500px;
|
||||||
|
max-height: 60vh;
|
||||||
|
overflow-y: auto;
|
||||||
word-break: break-word;
|
word-break: break-word;
|
||||||
overflow-wrap: anywhere;
|
overflow-wrap: anywhere;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* Custom Scrollbar for Tooltips */
|
||||||
|
.tooltip-content::-webkit-scrollbar {
|
||||||
|
width: 6px;
|
||||||
|
}
|
||||||
|
.tooltip-content::-webkit-scrollbar-track {
|
||||||
|
background: transparent;
|
||||||
|
}
|
||||||
|
.tooltip-content::-webkit-scrollbar-thumb {
|
||||||
|
background: #cbd5e1;
|
||||||
|
border-radius: 4px;
|
||||||
|
}
|
||||||
|
.tooltip-content::-webkit-scrollbar-thumb:hover {
|
||||||
|
background: #94a3b8;
|
||||||
|
}
|
||||||
|
|
||||||
.payload-box {
|
.payload-box {
|
||||||
background: #0f172a;
|
background: #0f172a;
|
||||||
color: #e2e8f0;
|
color: #e2e8f0;
|
||||||
|
|||||||
@@ -81,13 +81,6 @@ public class HtmlExporterTest {
|
|||||||
|
|
||||||
// 7. Assertions - Surgical SVG Identification
|
// 7. Assertions - Surgical SVG Identification
|
||||||
// Every event should be wrapped in an identifying hyperlink for robust JS selection
|
// Every event should be wrapped in an identifying hyperlink for robust JS selection
|
||||||
java.nio.file.Files.writeString(java.nio.file.Paths.get("debug_html.html"), html);
|
|
||||||
|
|
||||||
click.kamil.springstatemachineexporter.exporter.ExportOptions plantUmlOptions = click.kamil.springstatemachineexporter.exporter.ExportOptions.builder()
|
|
||||||
.embedIdentifiers(true)
|
|
||||||
.build();
|
|
||||||
click.kamil.springstatemachineexporter.exporter.PlantUml pumlExporter = new click.kamil.springstatemachineexporter.exporter.PlantUml();
|
|
||||||
java.nio.file.Files.writeString(java.nio.file.Paths.get("debug_puml.puml"), pumlExporter.export(result, plantUmlOptions));
|
|
||||||
|
|
||||||
assertThat(html).contains("__CREATE");
|
assertThat(html).contains("__CREATE");
|
||||||
assertThat(html).contains("__ASSIGN");
|
assertThat(html).contains("__ASSIGN");
|
||||||
|
|||||||
@@ -1,6 +1,37 @@
|
|||||||
|
HELP.md
|
||||||
|
.gradle
|
||||||
build/
|
build/
|
||||||
|
!gradle/wrapper/gradle-wrapper.jar
|
||||||
|
!**/src/main/**/build/
|
||||||
|
!**/src/test/**/build/
|
||||||
|
|
||||||
|
### STS ###
|
||||||
|
.apt_generated
|
||||||
|
.classpath
|
||||||
|
.factorypath
|
||||||
|
.project
|
||||||
|
.settings
|
||||||
|
.springBeans
|
||||||
|
.sts4-cache
|
||||||
|
bin/
|
||||||
|
!**/src/main/**/bin/
|
||||||
|
!**/src/test/**/bin/
|
||||||
|
|
||||||
|
### IntelliJ IDEA ###
|
||||||
|
.idea
|
||||||
|
*.iws
|
||||||
|
*.iml
|
||||||
|
*.ipr
|
||||||
out/
|
out/
|
||||||
.gradle/
|
!**/src/main/**/out/
|
||||||
.idea/
|
!**/src/test/**/out/
|
||||||
*.class
|
|
||||||
*.log
|
### NetBeans ###
|
||||||
|
/nbproject/private/
|
||||||
|
/nbbuild/
|
||||||
|
/dist/
|
||||||
|
/nbdist/
|
||||||
|
/.nb-gradle/
|
||||||
|
|
||||||
|
### VS Code ###
|
||||||
|
.vscode/
|
||||||
|
|||||||
@@ -0,0 +1,14 @@
|
|||||||
|
package click.kamil.examples.statemachine.extended.config;
|
||||||
|
|
||||||
|
import click.kamil.examples.statemachine.extended.service.QuirkService;
|
||||||
|
import org.springframework.beans.factory.annotation.Qualifier;
|
||||||
|
import org.springframework.context.annotation.Bean;
|
||||||
|
|
||||||
|
public abstract class AbstractBaseConfig {
|
||||||
|
|
||||||
|
@Bean
|
||||||
|
public String inheritedBeanTester(@Qualifier("customName") QuirkService someService) {
|
||||||
|
someService.doQuirk();
|
||||||
|
return "inherited";
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,17 @@
|
|||||||
|
package click.kamil.examples.statemachine.extended.config;
|
||||||
|
|
||||||
|
import click.kamil.examples.statemachine.extended.service.QuirkService;
|
||||||
|
import org.springframework.beans.factory.annotation.Qualifier;
|
||||||
|
import org.springframework.context.annotation.Bean;
|
||||||
|
import org.springframework.context.annotation.Configuration;
|
||||||
|
|
||||||
|
@Configuration
|
||||||
|
public class BeanParameterTestConfig extends AbstractBaseConfig {
|
||||||
|
|
||||||
|
@Bean
|
||||||
|
public String myBeanParamTester(@Qualifier("customName") QuirkService someService) {
|
||||||
|
// We will use this method as an entry point in the test
|
||||||
|
someService.doQuirk();
|
||||||
|
return "tested";
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,15 @@
|
|||||||
|
package click.kamil.examples.statemachine.extended.config;
|
||||||
|
|
||||||
|
import click.kamil.examples.statemachine.extended.service.QuirkService;
|
||||||
|
import click.kamil.examples.statemachine.extended.service.QualifierQuirkService;
|
||||||
|
import org.springframework.context.annotation.Bean;
|
||||||
|
import org.springframework.context.annotation.Configuration;
|
||||||
|
|
||||||
|
@Configuration
|
||||||
|
public class ConcreteReturnTypeConfig {
|
||||||
|
|
||||||
|
@Bean
|
||||||
|
public QuirkService hiddenConcreteService() {
|
||||||
|
return new QualifierQuirkService(); // It returns an interface, but the concrete type is QualifierQuirkService
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,13 @@
|
|||||||
|
package click.kamil.examples.statemachine.extended.config;
|
||||||
|
|
||||||
|
import org.springframework.context.annotation.Bean;
|
||||||
|
import org.springframework.context.annotation.Configuration;
|
||||||
|
|
||||||
|
@Configuration
|
||||||
|
public class MockBeanConfig {
|
||||||
|
|
||||||
|
@Bean(name = {"customMockBean", "aliasMockBean"})
|
||||||
|
public String myStringBean() {
|
||||||
|
return "Hello World";
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,58 @@
|
|||||||
|
package click.kamil.examples.statemachine.extended.config;
|
||||||
|
|
||||||
|
import org.springframework.context.annotation.Configuration;
|
||||||
|
import org.springframework.statemachine.config.EnableStateMachine;
|
||||||
|
import org.springframework.statemachine.config.StateMachineConfigurerAdapter;
|
||||||
|
import org.springframework.statemachine.config.builders.StateMachineStateConfigurer;
|
||||||
|
import org.springframework.statemachine.config.builders.StateMachineTransitionConfigurer;
|
||||||
|
|
||||||
|
@Configuration
|
||||||
|
@EnableStateMachine(name = "paymentStateMachine")
|
||||||
|
public class PaymentStateMachineConfig extends StateMachineConfigurerAdapter<String, String> {
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void configure(StateMachineStateConfigurer<String, String> states) throws Exception {
|
||||||
|
states
|
||||||
|
.withStates()
|
||||||
|
.initial("NEW")
|
||||||
|
.state("AUTHORIZED")
|
||||||
|
.state("CAPTURED")
|
||||||
|
.state("DECLINED")
|
||||||
|
.state("QUIRK1")
|
||||||
|
.state("QUIRK2")
|
||||||
|
.state("QUIRK3")
|
||||||
|
.state("QUIRK4");
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void configure(StateMachineTransitionConfigurer<String, String> transitions) throws Exception {
|
||||||
|
transitions
|
||||||
|
.withExternal()
|
||||||
|
.source("NEW").target("AUTHORIZED")
|
||||||
|
.event("AUTHORIZE")
|
||||||
|
.and()
|
||||||
|
.withExternal()
|
||||||
|
.source("AUTHORIZED").target("CAPTURED")
|
||||||
|
.event("CAPTURE")
|
||||||
|
.and()
|
||||||
|
.withExternal()
|
||||||
|
.source("NEW").target("DECLINED")
|
||||||
|
.event("DECLINE")
|
||||||
|
.and()
|
||||||
|
.withExternal()
|
||||||
|
.source("NEW").target("QUIRK1")
|
||||||
|
.event("PRIMARY_EVENT")
|
||||||
|
.and()
|
||||||
|
.withExternal()
|
||||||
|
.source("NEW").target("QUIRK2")
|
||||||
|
.event("NAMED_EVENT")
|
||||||
|
.and()
|
||||||
|
.withExternal()
|
||||||
|
.source("NEW").target("QUIRK3")
|
||||||
|
.event("QUALIFIER_EVENT")
|
||||||
|
.and()
|
||||||
|
.withExternal()
|
||||||
|
.source("NEW").target("QUIRK4")
|
||||||
|
.event("FALLBACK_EVENT");
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,9 @@
|
|||||||
|
package click.kamil.examples.statemachine.extended.service;
|
||||||
|
|
||||||
|
import org.springframework.stereotype.Service;
|
||||||
|
|
||||||
|
@Service
|
||||||
|
public class AmbiguousA implements AmbiguousService {
|
||||||
|
@Override
|
||||||
|
public void doAmbig() {}
|
||||||
|
}
|
||||||
@@ -0,0 +1,9 @@
|
|||||||
|
package click.kamil.examples.statemachine.extended.service;
|
||||||
|
|
||||||
|
import org.springframework.stereotype.Service;
|
||||||
|
|
||||||
|
@Service
|
||||||
|
public class AmbiguousB implements AmbiguousService {
|
||||||
|
@Override
|
||||||
|
public void doAmbig() {}
|
||||||
|
}
|
||||||
@@ -0,0 +1,5 @@
|
|||||||
|
package click.kamil.examples.statemachine.extended.service;
|
||||||
|
|
||||||
|
public interface AmbiguousService {
|
||||||
|
void doAmbig();
|
||||||
|
}
|
||||||
@@ -0,0 +1,19 @@
|
|||||||
|
package click.kamil.examples.statemachine.extended.service;
|
||||||
|
|
||||||
|
import org.springframework.beans.factory.annotation.Autowired;
|
||||||
|
import org.springframework.beans.factory.annotation.Qualifier;
|
||||||
|
import org.springframework.statemachine.StateMachine;
|
||||||
|
import org.springframework.stereotype.Service;
|
||||||
|
|
||||||
|
@Service
|
||||||
|
public class FallbackQuirkService implements QuirkService {
|
||||||
|
|
||||||
|
@Autowired
|
||||||
|
@Qualifier("paymentStateMachine")
|
||||||
|
private StateMachine<String, String> stateMachine;
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void doQuirk() {
|
||||||
|
stateMachine.sendEvent("FALLBACK_EVENT");
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,12 @@
|
|||||||
|
package click.kamil.examples.statemachine.extended.service;
|
||||||
|
|
||||||
|
import org.springframework.core.Ordered;
|
||||||
|
import org.springframework.core.annotation.Order;
|
||||||
|
import org.springframework.stereotype.Service;
|
||||||
|
|
||||||
|
@Service
|
||||||
|
@Order(Ordered.HIGHEST_PRECEDENCE)
|
||||||
|
public class HighPriorityOrderedService implements OrderedService {
|
||||||
|
@Override
|
||||||
|
public void doAction() {}
|
||||||
|
}
|
||||||
@@ -0,0 +1,11 @@
|
|||||||
|
package click.kamil.examples.statemachine.extended.service;
|
||||||
|
|
||||||
|
import org.springframework.core.annotation.Order;
|
||||||
|
import org.springframework.stereotype.Service;
|
||||||
|
|
||||||
|
@Service
|
||||||
|
@Order(10)
|
||||||
|
public class LowPriorityOrderedService implements OrderedService {
|
||||||
|
@Override
|
||||||
|
public void doAction() {}
|
||||||
|
}
|
||||||
@@ -0,0 +1,19 @@
|
|||||||
|
package click.kamil.examples.statemachine.extended.service;
|
||||||
|
|
||||||
|
import org.springframework.beans.factory.annotation.Autowired;
|
||||||
|
import org.springframework.beans.factory.annotation.Qualifier;
|
||||||
|
import org.springframework.statemachine.StateMachine;
|
||||||
|
import org.springframework.stereotype.Service;
|
||||||
|
|
||||||
|
@Service("customName")
|
||||||
|
public class NamedQuirkService implements QuirkService {
|
||||||
|
|
||||||
|
@Autowired
|
||||||
|
@Qualifier("paymentStateMachine")
|
||||||
|
private StateMachine<String, String> stateMachine;
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void doQuirk() {
|
||||||
|
stateMachine.sendEvent("NAMED_EVENT");
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,5 @@
|
|||||||
|
package click.kamil.examples.statemachine.extended.service;
|
||||||
|
|
||||||
|
public interface OrderedService {
|
||||||
|
void doAction();
|
||||||
|
}
|
||||||
@@ -0,0 +1,6 @@
|
|||||||
|
package click.kamil.examples.statemachine.extended.service;
|
||||||
|
|
||||||
|
public interface PaymentService {
|
||||||
|
void processPayment(String paymentId);
|
||||||
|
void capturePayment(String paymentId);
|
||||||
|
}
|
||||||
@@ -0,0 +1,37 @@
|
|||||||
|
package click.kamil.examples.statemachine.extended.service;
|
||||||
|
|
||||||
|
import org.springframework.beans.factory.annotation.Autowired;
|
||||||
|
import org.springframework.beans.factory.annotation.Qualifier;
|
||||||
|
import org.springframework.statemachine.StateMachine;
|
||||||
|
import org.springframework.statemachine.persist.StateMachinePersister;
|
||||||
|
import org.springframework.stereotype.Service;
|
||||||
|
|
||||||
|
@Service
|
||||||
|
public class PaymentServiceImpl implements PaymentService {
|
||||||
|
|
||||||
|
@Autowired
|
||||||
|
@Qualifier("paymentStateMachine")
|
||||||
|
private StateMachine<String, String> stateMachine;
|
||||||
|
|
||||||
|
@Autowired
|
||||||
|
private StateMachinePersister<String, String, String> persister;
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void processPayment(String paymentId) {
|
||||||
|
// Send a trigger mapped strictly to PaymentStateMachineConfig
|
||||||
|
stateMachine.sendEvent("AUTHORIZE");
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void capturePayment(String paymentId) {
|
||||||
|
try {
|
||||||
|
persister.restore(stateMachine, paymentId);
|
||||||
|
} catch (Exception e) {}
|
||||||
|
|
||||||
|
org.springframework.messaging.Message<String> msg = org.springframework.messaging.support.MessageBuilder
|
||||||
|
.withPayload("CAPTURE")
|
||||||
|
.setHeader("paymentId", paymentId)
|
||||||
|
.build();
|
||||||
|
stateMachine.sendEvent(msg);
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,21 @@
|
|||||||
|
package click.kamil.examples.statemachine.extended.service;
|
||||||
|
|
||||||
|
import org.springframework.beans.factory.annotation.Autowired;
|
||||||
|
import org.springframework.beans.factory.annotation.Qualifier;
|
||||||
|
import org.springframework.context.annotation.Primary;
|
||||||
|
import org.springframework.statemachine.StateMachine;
|
||||||
|
import org.springframework.stereotype.Service;
|
||||||
|
|
||||||
|
@Service
|
||||||
|
@Primary
|
||||||
|
public class PrimaryQuirkService implements QuirkService {
|
||||||
|
|
||||||
|
@Autowired
|
||||||
|
@Qualifier("paymentStateMachine")
|
||||||
|
private StateMachine<String, String> stateMachine;
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void doQuirk() {
|
||||||
|
stateMachine.sendEvent("PRIMARY_EVENT");
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,21 @@
|
|||||||
|
package click.kamil.examples.statemachine.extended.service;
|
||||||
|
|
||||||
|
import org.springframework.beans.factory.annotation.Autowired;
|
||||||
|
import org.springframework.beans.factory.annotation.Qualifier;
|
||||||
|
import org.springframework.context.annotation.Profile;
|
||||||
|
import org.springframework.statemachine.StateMachine;
|
||||||
|
import org.springframework.stereotype.Service;
|
||||||
|
|
||||||
|
@Service
|
||||||
|
@Profile("nonexistent")
|
||||||
|
public class ProfiledQuirkService implements QuirkService {
|
||||||
|
|
||||||
|
@Autowired
|
||||||
|
@Qualifier("paymentStateMachine")
|
||||||
|
private StateMachine<String, String> stateMachine;
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void doQuirk() {
|
||||||
|
stateMachine.sendEvent("PROFILED_EVENT");
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,19 @@
|
|||||||
|
package click.kamil.examples.statemachine.extended.service;
|
||||||
|
|
||||||
|
import org.springframework.beans.factory.annotation.Autowired;
|
||||||
|
import org.springframework.beans.factory.annotation.Qualifier;
|
||||||
|
import org.springframework.statemachine.StateMachine;
|
||||||
|
import org.springframework.stereotype.Service;
|
||||||
|
|
||||||
|
@Service
|
||||||
|
public class QualifierQuirkService implements QuirkService {
|
||||||
|
|
||||||
|
@Autowired
|
||||||
|
@Qualifier("paymentStateMachine")
|
||||||
|
private StateMachine<String, String> stateMachine;
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void doQuirk() {
|
||||||
|
stateMachine.sendEvent("QUALIFIER_EVENT");
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,5 @@
|
|||||||
|
package click.kamil.examples.statemachine.extended.service;
|
||||||
|
|
||||||
|
public interface QuirkService {
|
||||||
|
void doQuirk();
|
||||||
|
}
|
||||||
@@ -0,0 +1,10 @@
|
|||||||
|
package click.kamil.examples.statemachine.extended.web;
|
||||||
|
|
||||||
|
import org.springframework.web.bind.annotation.GetMapping;
|
||||||
|
import org.springframework.web.bind.annotation.PathVariable;
|
||||||
|
|
||||||
|
public interface BaseController {
|
||||||
|
|
||||||
|
@GetMapping("/api/base/{id}")
|
||||||
|
String processBaseEndpoint(@PathVariable String id);
|
||||||
|
}
|
||||||
@@ -0,0 +1,21 @@
|
|||||||
|
package click.kamil.examples.statemachine.extended.web;
|
||||||
|
|
||||||
|
import click.kamil.examples.statemachine.extended.service.QuirkService;
|
||||||
|
import org.springframework.beans.factory.annotation.Qualifier;
|
||||||
|
import org.springframework.web.bind.annotation.GetMapping;
|
||||||
|
import org.springframework.web.bind.annotation.RestController;
|
||||||
|
|
||||||
|
@RestController
|
||||||
|
public class ConcreteReturnTypeController {
|
||||||
|
|
||||||
|
private final QuirkService hiddenConcreteService;
|
||||||
|
|
||||||
|
public ConcreteReturnTypeController(@Qualifier("hiddenConcreteService") QuirkService hiddenConcreteService) {
|
||||||
|
this.hiddenConcreteService = hiddenConcreteService;
|
||||||
|
}
|
||||||
|
|
||||||
|
@GetMapping("/test-concrete")
|
||||||
|
public void testConcrete() {
|
||||||
|
hiddenConcreteService.doQuirk();
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,20 @@
|
|||||||
|
package click.kamil.examples.statemachine.extended.web;
|
||||||
|
|
||||||
|
import click.kamil.examples.statemachine.extended.service.QuirkService;
|
||||||
|
import org.springframework.beans.factory.annotation.Autowired;
|
||||||
|
import org.springframework.beans.factory.annotation.Qualifier;
|
||||||
|
import org.springframework.web.bind.annotation.GetMapping;
|
||||||
|
import org.springframework.web.bind.annotation.RestController;
|
||||||
|
|
||||||
|
@RestController
|
||||||
|
public class FieldInjectionController {
|
||||||
|
|
||||||
|
@Autowired
|
||||||
|
@Qualifier("customName")
|
||||||
|
private QuirkService myFieldService;
|
||||||
|
|
||||||
|
@GetMapping("/test-field")
|
||||||
|
public void testField() {
|
||||||
|
myFieldService.doQuirk();
|
||||||
|
}
|
||||||
|
}
|
||||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user