Search in sources :

Example 1 with LocationImpl

use of org.eclipse.che.api.debug.shared.model.impl.LocationImpl in project che by eclipse.

the class GdbInfoBreak method parse.

/**
     * Factory method.
     */
public static GdbInfoBreak parse(GdbOutput gdbOutput) throws GdbParseException {
    String output = gdbOutput.getOutput();
    List<Breakpoint> breakpoints = new ArrayList<>();
    for (String line : output.split("\n")) {
        Matcher matcher = GDB_INFO_B.matcher(line);
        if (matcher.find()) {
            String file = matcher.group(2);
            String lineNumber = matcher.group(3);
            Location location = new LocationImpl(file, Integer.parseInt(lineNumber));
            breakpoints.add(new BreakpointImpl(location));
        }
    }
    return new GdbInfoBreak(breakpoints);
}
Also used : Breakpoint(org.eclipse.che.api.debug.shared.model.Breakpoint) BreakpointImpl(org.eclipse.che.api.debug.shared.model.impl.BreakpointImpl) Matcher(java.util.regex.Matcher) ArrayList(java.util.ArrayList) LocationImpl(org.eclipse.che.api.debug.shared.model.impl.LocationImpl) Location(org.eclipse.che.api.debug.shared.model.Location)

Example 2 with LocationImpl

use of org.eclipse.che.api.debug.shared.model.impl.LocationImpl in project che by eclipse.

the class NodeJsDebugCommandsLibrary method getBreakpoints.

/**
     * Execute {@code breakpoints} command.
     * @see NodeJsBackTraceParser
     */
public List<Breakpoint> getBreakpoints() throws NodeJsDebuggerException {
    NodeJsDebugCommand<Breakpoints> breakpointsCommand = createCommand("breakpoints", NodeJsBreakpointsParser.INSTANCE);
    List<Breakpoint> breakpoints = doExecute(breakpointsCommand).getAll();
    NodeJsDebugCommand<Scripts> scriptsCommand = createCommand("scripts", NodeJsScriptsParser.INSTANCE);
    Map<Integer, String> scripts = doExecute(scriptsCommand).getAll();
    for (int i = 0; i < breakpoints.size(); i++) {
        Breakpoint breakpoint = breakpoints.get(i);
        Location location = breakpoint.getLocation();
        String newTarget;
        String[] target = location.getTarget().split(":");
        if (target.length != 2) {
            LOG.error(format("Illegal breakpoint location format %s", target[0]));
            continue;
        }
        if (target[0].equals("scriptId")) {
            newTarget = scripts.get((int) Double.parseDouble(target[1]));
        } else {
            newTarget = target[1];
        }
        Location newLocation = new LocationImpl(newTarget, location.getLineNumber());
        Breakpoint newBreakpoint = new BreakpointImpl(newLocation, breakpoint.isEnabled(), breakpoint.getCondition());
        breakpoints.set(i, newBreakpoint);
    }
    return breakpoints;
}
Also used : Breakpoints(org.eclipse.che.plugin.nodejsdbg.server.parser.NodeJsBreakpointsParser.Breakpoints) Breakpoint(org.eclipse.che.api.debug.shared.model.Breakpoint) BreakpointImpl(org.eclipse.che.api.debug.shared.model.impl.BreakpointImpl) Scripts(org.eclipse.che.plugin.nodejsdbg.server.parser.NodeJsScriptsParser.Scripts) Breakpoint(org.eclipse.che.api.debug.shared.model.Breakpoint) LocationImpl(org.eclipse.che.api.debug.shared.model.impl.LocationImpl) Location(org.eclipse.che.api.debug.shared.model.Location)

Example 3 with LocationImpl

use of org.eclipse.che.api.debug.shared.model.impl.LocationImpl in project che by eclipse.

the class NodeJsBreakpointsParser method parse.

@Override
public Breakpoints parse(NodeJsOutput nodeJsOutput) throws NodeJsDebuggerParseException {
    final List<Breakpoint> breakpoints = new ArrayList<>();
    JsonObject json = new JsonParser().parse(nodeJsOutput.getOutput()).getAsJsonObject();
    if (json.has("breakpoints")) {
        Iterator<JsonElement> iter = json.getAsJsonArray("breakpoints").iterator();
        while (iter.hasNext()) {
            JsonObject item = iter.next().getAsJsonObject();
            try {
                final String condition = item.has("condition") && !item.get("condition").isJsonNull() ? item.get("condition").getAsString() : null;
                final boolean isEnabled = item.has("active") && !item.get("active").isJsonNull() && item.get("active").getAsBoolean();
                final int lineNumber = item.get("line").getAsInt();
                final String target;
                String targetType = item.get("type").getAsString();
                switch(targetType) {
                    case "scriptId":
                        target = String.valueOf(item.get("script_id").getAsInt());
                        break;
                    case "scriptRegExp":
                        target = item.get("script_regexp").getAsString();
                        break;
                    default:
                        throw new IllegalArgumentException("Unsupported 'type' value: " + targetType);
                }
                Location location = new LocationImpl(targetType + ":" + target, lineNumber + 1);
                Breakpoint breakpoint = new BreakpointImpl(location, isEnabled, condition);
                breakpoints.add(breakpoint);
            } catch (Exception e) {
                LOG.error("Failed to parse breakpoint: " + item.toString(), e);
            }
        }
    }
    return new Breakpoints(breakpoints);
}
Also used : Breakpoint(org.eclipse.che.api.debug.shared.model.Breakpoint) BreakpointImpl(org.eclipse.che.api.debug.shared.model.impl.BreakpointImpl) ArrayList(java.util.ArrayList) JsonObject(com.google.gson.JsonObject) Breakpoint(org.eclipse.che.api.debug.shared.model.Breakpoint) NodeJsDebuggerParseException(org.eclipse.che.plugin.nodejsdbg.server.exception.NodeJsDebuggerParseException) JsonElement(com.google.gson.JsonElement) LocationImpl(org.eclipse.che.api.debug.shared.model.impl.LocationImpl) JsonParser(com.google.gson.JsonParser) Location(org.eclipse.che.api.debug.shared.model.Location)

Example 4 with LocationImpl

use of org.eclipse.che.api.debug.shared.model.impl.LocationImpl in project che by eclipse.

the class NodeJsStepParser method parse.

@Override
public Location parse(NodeJsOutput nodeJsOutput) throws NodeJsDebuggerParseException {
    String output = nodeJsOutput.getOutput();
    for (String line : output.split("\n")) {
        Matcher matcher = PATTERN.matcher(line);
        if (matcher.find()) {
            String file = matcher.group(1);
            String lineNumber = matcher.group(2);
            return new LocationImpl(file, Integer.parseInt(lineNumber));
        }
    }
    throw new NodeJsDebuggerParseException(Location.class, output);
}
Also used : NodeJsDebuggerParseException(org.eclipse.che.plugin.nodejsdbg.server.exception.NodeJsDebuggerParseException) Matcher(java.util.regex.Matcher) LocationImpl(org.eclipse.che.api.debug.shared.model.impl.LocationImpl)

Example 5 with LocationImpl

use of org.eclipse.che.api.debug.shared.model.impl.LocationImpl in project che by eclipse.

the class NodeJsDebuggerTest method testManageBreakpoints.

@Test
public void testManageBreakpoints() throws Exception {
    List<Breakpoint> breakpoints = debugger.getAllBreakpoints();
    assertEquals(breakpoints.size(), 1);
    debugger.addBreakpoint(new BreakpointImpl(new LocationImpl("app.js", 2)));
    ArgumentCaptor<BreakpointActivatedEvent> breakpointActivated = ArgumentCaptor.forClass(BreakpointActivatedEvent.class);
    verify(callback).onEvent(breakpointActivated.capture());
    BreakpointActivatedEvent event = breakpointActivated.getValue();
    Breakpoint breakpoint = event.getBreakpoint();
    assertEquals(breakpoint.getLocation().getTarget(), "app.js");
    assertEquals(breakpoint.getLocation().getLineNumber(), 2);
    debugger.addBreakpoint(new BreakpointImpl(new LocationImpl("app.js", 5)));
    breakpoints = debugger.getAllBreakpoints();
    assertEquals(breakpoints.size(), 3);
    debugger.deleteBreakpoint(new LocationImpl("app.js", 2));
    breakpoints = debugger.getAllBreakpoints();
    assertEquals(breakpoints.size(), 2);
    debugger.deleteAllBreakpoints();
    breakpoints = debugger.getAllBreakpoints();
    assertEquals(breakpoints.size(), 1);
}
Also used : Breakpoint(org.eclipse.che.api.debug.shared.model.Breakpoint) BreakpointImpl(org.eclipse.che.api.debug.shared.model.impl.BreakpointImpl) LocationImpl(org.eclipse.che.api.debug.shared.model.impl.LocationImpl) BreakpointActivatedEvent(org.eclipse.che.api.debug.shared.model.event.BreakpointActivatedEvent) Test(org.testng.annotations.Test)

Aggregations

LocationImpl (org.eclipse.che.api.debug.shared.model.impl.LocationImpl)22 Location (org.eclipse.che.api.debug.shared.model.Location)11 BreakpointImpl (org.eclipse.che.api.debug.shared.model.impl.BreakpointImpl)11 Breakpoint (org.eclipse.che.api.debug.shared.model.Breakpoint)8 Matcher (java.util.regex.Matcher)7 Test (org.testng.annotations.Test)7 BreakpointActivatedEvent (org.eclipse.che.api.debug.shared.model.event.BreakpointActivatedEvent)6 DebuggerEvent (org.eclipse.che.api.debug.shared.model.event.DebuggerEvent)5 NodeJsDebuggerParseException (org.eclipse.che.plugin.nodejsdbg.server.exception.NodeJsDebuggerParseException)3 ArrayList (java.util.ArrayList)2 SuspendEvent (org.eclipse.che.api.debug.shared.model.event.SuspendEvent)2 DebuggerException (org.eclipse.che.api.debugger.server.exceptions.DebuggerException)2 GdbParseException (org.eclipse.che.plugin.gdb.server.exception.GdbParseException)2 JsonElement (com.google.gson.JsonElement)1 JsonObject (com.google.gson.JsonObject)1 JsonParser (com.google.gson.JsonParser)1 HashMap (java.util.HashMap)1 DELETE (javax.ws.rs.DELETE)1 Path (javax.ws.rs.Path)1 VariablePath (org.eclipse.che.api.debug.shared.model.VariablePath)1