Skip to content
Snippets Groups Projects
Commit 971c2867 authored by Sören Henning's avatar Sören Henning
Browse files

store the operation calls in which are aggregated to a new one

parent 3238abca
No related branches found
No related tags found
1 merge request!17Get impletemented stages and Java 8
package kieker.analysis.dev;
import java.util.LinkedList;
import java.util.List;
import kieker.analysis.traceanalysisdomain.AggregatedOperationCall;
import kieker.analysis.traceanalysisdomain.OperationCall;
public class CollectedAggrOperationCall extends AggregatedOperationCall {
private List<AggregatedOperationCall> baseOperationCalls = new LinkedList<>();
public CollectedAggrOperationCall(final OperationCall call) {
super(call);
}
public CollectedAggrOperationCall(final String container, final String component, final String operation, final int orderIndex, final String failedCause,
final long totalDuration,
final long medianDuration, final long minDuration, final long maxDuration, final long meanDuration, final int calls) {
super(container, component, operation, orderIndex, failedCause, totalDuration, medianDuration, minDuration, maxDuration, meanDuration, calls);
}
public CollectedAggrOperationCall(final String container, final String component, final String operation, final int orderIndex, final String failedCause) {
super(container, component, operation, orderIndex, failedCause);
}
public CollectedAggrOperationCall(final String container, final String component, final String operation, final int orderIndex) {
super(container, component, operation, orderIndex);
}
public List<AggregatedOperationCall> getBaseOperationCalls() {
return baseOperationCalls;
}
public void setBaseOperationCalls(final List<AggregatedOperationCall> baseOperationCalls) {
this.baseOperationCalls = baseOperationCalls;
}
public void addBaseOperartionCall(final AggregatedOperationCall operationCall) {
baseOperationCalls.add(operationCall);
}
}
...@@ -18,7 +18,7 @@ public class OperationsDependency { ...@@ -18,7 +18,7 @@ public class OperationsDependency {
// TODO Move to Domain package // TODO Move to Domain package
private final Map<String, AggregatedOperationCall> operations = new HashMap<>(); private final Map<String, CollectedAggrOperationCall> operations = new HashMap<>();
private final Map<String, OperationsDependencyRelation> relations = new HashMap<>(); private final Map<String, OperationsDependencyRelation> relations = new HashMap<>();
...@@ -32,10 +32,9 @@ public class OperationsDependency { ...@@ -32,10 +32,9 @@ public class OperationsDependency {
String key = call.getIdentifier(); String key = call.getIdentifier();
if (!operations.containsKey(key)) { if (!operations.containsKey(key)) {
operations.put(key, new AggregatedOperationCall(call.getContainer(), call.getComponent(), call.getOperation(), 0)); operations.put(key, new CollectedAggrOperationCall(call.getContainer(), call.getComponent(), call.getOperation(), 0));
} }
// TODO Dont't add the call as child but as something different operations.get(key).addBaseOperartionCall(call);
// operations.get(key).addChild(call);
} }
private void addRelation(final AggregatedOperationCall call) { private void addRelation(final AggregatedOperationCall call) {
...@@ -72,13 +71,13 @@ public class OperationsDependency { ...@@ -72,13 +71,13 @@ public class OperationsDependency {
System.out.println("Operations:"); System.out.println("Operations:");
System.out.println(); System.out.println();
for (Entry<String, AggregatedOperationCall> call : operations.entrySet()) { for (Entry<String, CollectedAggrOperationCall> call : operations.entrySet()) {
System.out.println("Key: " + call.getKey()); System.out.println("Key: " + call.getKey());
System.out.println("Value: " + call.getValue().getOperation()); System.out.println("Value: " + call.getValue().getOperation());
System.out.println("Calls:"); System.out.println("Calls:");
for (AggregatedOperationCall call2 : call.getValue().getChildren()) { for (AggregatedOperationCall call2 : call.getValue().getBaseOperationCalls()) {
System.out.println(call2.getOperation() + ": " + call2.getCalls()); System.out.println(call2.getOperation() + ": " + call2.getCalls());
// System.out.println(call2.getFailedCause()); // System.out.println(call2.getFailedCause());
......
...@@ -22,7 +22,7 @@ package kieker.analysis.traceanalysisdomain; ...@@ -22,7 +22,7 @@ package kieker.analysis.traceanalysisdomain;
* *
* @author Nils Christian Ehmke * @author Nils Christian Ehmke
*/ */
public final class AggregatedOperationCall extends AbstractOperationCall<AggregatedOperationCall> { public class AggregatedOperationCall extends AbstractOperationCall<AggregatedOperationCall> {
private AggregatedOperationCall parent; private AggregatedOperationCall parent;
private long totalDuration; private long totalDuration;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment