org.snapscript.agent.debug.FaultContextExtractor Maven / Gradle / Ivy
package org.snapscript.agent.debug;
import java.io.PrintWriter;
import java.io.StringWriter;
import java.util.Collections;
import java.util.HashSet;
import java.util.Iterator;
import java.util.Map;
import java.util.Set;
import java.util.concurrent.atomic.AtomicInteger;
import org.snapscript.agent.event.FaultEvent;
import org.snapscript.agent.event.ProcessEventChannel;
import org.snapscript.agent.log.ProcessLogger;
import org.snapscript.core.Context;
import org.snapscript.core.Module;
import org.snapscript.core.Path;
import org.snapscript.core.Scope;
import org.snapscript.core.State;
import org.snapscript.core.error.InternalError;
import org.snapscript.core.error.InternalErrorBuilder;
import org.snapscript.core.stack.ThreadStack;
import org.snapscript.core.trace.Trace;
public class FaultContextExtractor extends TraceAdapter {
private final ProcessEventChannel channel;
private final AtomicInteger counter;
private final ProcessLogger logger;
private final String process;
public FaultContextExtractor(ProcessEventChannel channel, ProcessLogger logger, String process) {
this.counter = new AtomicInteger();
this.channel = channel;
this.logger = logger;
this.process = process;
}
@Override
public void error(Scope scope, Trace trace, Exception cause) {
if(logger.isDebug()) {
ScopeVariableTree variables = createVariables(scope);
String error = createException(scope, cause);
String thread = Thread.currentThread().getName();
Path path = trace.getPath();
String resource = path.getPath();
int line = trace.getLine();
FaultEvent event = new FaultEvent.Builder(process)
.withVariables(variables)
.withCause(error)
.withLine(line)
.withResource(resource)
.withThread(thread)
.build();
try {
channel.send(event);
}catch(Exception e) {
logger.debug("Could not send fault context", e);
}
}
}
private ScopeVariableTree createVariables(Scope scope) {
Module module = scope.getModule();
Context context = module.getContext();
State state = scope.getState();
Iterator iterator = state.iterator();
int change = counter.getAndIncrement();
if(iterator.hasNext() && logger.isDebug()) {
Set expand = new HashSet();
ScopeNodeTraverser traverser = new ScopeNodeTraverser(context, scope);
while(iterator.hasNext()) {
String name = iterator.next();
expand.add(name+".*");
}
Map> variables = traverser.expand(expand);
return new ScopeVariableTree.Builder(change)
.withEvaluation(Collections.EMPTY_MAP)
.withLocal(variables)
.build();
}
return new ScopeVariableTree.Builder(change)
.withEvaluation(Collections.EMPTY_MAP)
.withLocal(Collections.EMPTY_MAP)
.build();
}
private String createException(Scope scope, Exception cause) {
Module module = scope.getModule();
Context context = module.getContext();
ThreadStack stack = context.getStack();
if(logger.isDebug()) {
InternalErrorBuilder converter = new InternalErrorBuilder(stack, true);
StringWriter builder = new StringWriter();
PrintWriter writer = new PrintWriter(builder);
InternalError error = converter.create(cause);
Object inner = error.getValue();
if(Throwable.class.isInstance(inner)) {
Throwable throwable = (Throwable)inner;
throwable.printStackTrace(writer);
writer.flush();
} else {
error.printStackTrace(writer);
writer.flush();
}
return builder.toString();
}
return "";
}
}