Search in sources :

Example 1 with BreakpointManager

use of org.intellij.plugins.xsltDebugger.rt.engine.BreakpointManager in project intellij-community by JetBrains.

the class XsltDebuggerSession method start.

public void start() {
    myClient.start();
    myState = Debugger.State.RUNNING;
    final BreakpointManager breakpointManager = myClient.getBreakpointManager();
    final Listener multicaster = myEventDispatcher.getMulticaster();
    try {
        if (!myClient.waitForDebuggee()) {
            multicaster.debuggerStopped();
            return;
        }
        myState = Debugger.State.SUSPENDED;
        do {
            if (myState == Debugger.State.SUSPENDED) {
                if (myTempBreakpoint != null) {
                    breakpointManager.removeBreakpoint(myTempBreakpoint);
                    myTempBreakpoint = null;
                }
                multicaster.debuggerSuspended();
            } else if (myState == Debugger.State.RUNNING) {
                multicaster.debuggerResumed();
            } else if (myState == Debugger.State.STOPPED) {
                break;
            }
        } while ((myState = myClient.waitForStateChange(myState)) != null);
        multicaster.debuggerStopped();
    } catch (DebuggerStoppedException e) {
        multicaster.debuggerStopped();
    } catch (RuntimeException e) {
        if (e.getCause() instanceof RemoteException) {
            if (e.getCause().getCause() instanceof SocketException) {
                multicaster.debuggerStopped();
                return;
            }
        }
        throw e;
    } finally {
        myState = Debugger.State.STOPPED;
        close();
    }
}
Also used : SocketException(java.net.SocketException) EventListener(java.util.EventListener) RemoteException(java.rmi.RemoteException) BreakpointManager(org.intellij.plugins.xsltDebugger.rt.engine.BreakpointManager) DebuggerStoppedException(org.intellij.plugins.xsltDebugger.rt.engine.DebuggerStoppedException)

Example 2 with BreakpointManager

use of org.intellij.plugins.xsltDebugger.rt.engine.BreakpointManager in project intellij-community by JetBrains.

the class XsltBreakpointHandler method registerBreakpoint.

@Override
public void registerBreakpoint(@NotNull XLineBreakpoint<XBreakpointProperties> breakpoint) {
    final XSourcePosition sourcePosition = breakpoint.getSourcePosition();
    if (sourcePosition == null || !sourcePosition.getFile().exists() || !sourcePosition.getFile().isValid()) {
        // ???
        return;
    }
    final VirtualFile file = sourcePosition.getFile();
    final Project project = myXsltDebugProcess.getSession().getProject();
    final String fileURL = getFileURL(file);
    final int lineNumber = getActualLineNumber(breakpoint, project);
    if (lineNumber == -1) {
        final XDebugSession session = myXsltDebugProcess.getSession();
        session.updateBreakpointPresentation(breakpoint, AllIcons.Debugger.Db_invalid_breakpoint, "Unsupported breakpoint position");
        return;
    }
    try {
        final BreakpointManager manager = myXsltDebugProcess.getBreakpointManager();
        Breakpoint bp;
        if ((bp = manager.getBreakpoint(fileURL, lineNumber)) != null) {
            bp.setEnabled(true);
        } else {
            manager.setBreakpoint(fileURL, lineNumber);
        }
    } catch (DebuggerStoppedException ignore) {
    } catch (VMPausedException e) {
        final XDebugSession session = myXsltDebugProcess.getSession();
        session.reportMessage("Target VM is not responding. Breakpoint can not be set", MessageType.ERROR);
        session.updateBreakpointPresentation(breakpoint, AllIcons.Debugger.Db_invalid_breakpoint, "Target VM is not responding. Breakpoint can not be set");
    }
}
Also used : VirtualFile(com.intellij.openapi.vfs.VirtualFile) Project(com.intellij.openapi.project.Project) XDebugSession(com.intellij.xdebugger.XDebugSession) Breakpoint(org.intellij.plugins.xsltDebugger.rt.engine.Breakpoint) XLineBreakpoint(com.intellij.xdebugger.breakpoints.XLineBreakpoint) XSourcePosition(com.intellij.xdebugger.XSourcePosition) VMPausedException(org.intellij.plugins.xsltDebugger.VMPausedException) BreakpointManager(org.intellij.plugins.xsltDebugger.rt.engine.BreakpointManager) Breakpoint(org.intellij.plugins.xsltDebugger.rt.engine.Breakpoint) XLineBreakpoint(com.intellij.xdebugger.breakpoints.XLineBreakpoint) DebuggerStoppedException(org.intellij.plugins.xsltDebugger.rt.engine.DebuggerStoppedException)

Example 3 with BreakpointManager

use of org.intellij.plugins.xsltDebugger.rt.engine.BreakpointManager in project intellij-community by JetBrains.

the class XsltBreakpointHandler method unregisterBreakpoint.

@Override
public void unregisterBreakpoint(@NotNull XLineBreakpoint<XBreakpointProperties> breakpoint, final boolean temporary) {
    final XSourcePosition sourcePosition = breakpoint.getSourcePosition();
    if (sourcePosition == null || !sourcePosition.getFile().exists() || !sourcePosition.getFile().isValid()) {
        // ???
        return;
    }
    final VirtualFile file = sourcePosition.getFile();
    final Project project = myXsltDebugProcess.getSession().getProject();
    final String fileURL = getFileURL(file);
    final int lineNumber = getActualLineNumber(breakpoint, project);
    try {
        final BreakpointManager manager = myXsltDebugProcess.getBreakpointManager();
        if (temporary) {
            final Breakpoint bp = manager.getBreakpoint(fileURL, lineNumber);
            if (bp != null) {
                bp.setEnabled(false);
            }
        } else {
            manager.removeBreakpoint(fileURL, lineNumber);
        }
    } catch (DebuggerStoppedException ignore) {
    } catch (VMPausedException e) {
        myXsltDebugProcess.getSession().reportMessage("Target VM is not responding. Breakpoint can not be removed", MessageType.ERROR);
    }
}
Also used : VirtualFile(com.intellij.openapi.vfs.VirtualFile) Project(com.intellij.openapi.project.Project) Breakpoint(org.intellij.plugins.xsltDebugger.rt.engine.Breakpoint) XLineBreakpoint(com.intellij.xdebugger.breakpoints.XLineBreakpoint) XSourcePosition(com.intellij.xdebugger.XSourcePosition) VMPausedException(org.intellij.plugins.xsltDebugger.VMPausedException) BreakpointManager(org.intellij.plugins.xsltDebugger.rt.engine.BreakpointManager) Breakpoint(org.intellij.plugins.xsltDebugger.rt.engine.Breakpoint) XLineBreakpoint(com.intellij.xdebugger.breakpoints.XLineBreakpoint) DebuggerStoppedException(org.intellij.plugins.xsltDebugger.rt.engine.DebuggerStoppedException)

Example 4 with BreakpointManager

use of org.intellij.plugins.xsltDebugger.rt.engine.BreakpointManager in project intellij-community by JetBrains.

the class XsltDebugProcess method init.

public void init(Debugger client) {
    myDebuggerSession = XsltDebuggerSession.getInstance(myProcessHandler);
    myDebuggerSession.addListener(new XsltDebuggerSession.Listener() {

        @Override
        public void debuggerSuspended() {
            final Debugger c = myDebuggerSession.getClient();
            getSession().positionReached(new MySuspendContext(myDebuggerSession, c.getCurrentFrame(), c.getSourceFrame()));
        }

        @Override
        public void debuggerResumed() {
        }

        @Override
        public void debuggerStopped() {
            myBreakpointManager = new BreakpointManagerImpl();
        }
    });
    final BreakpointManager mgr = client.getBreakpointManager();
    if (myBreakpointManager != mgr) {
        final List<Breakpoint> breakpoints = myBreakpointManager.getBreakpoints();
        for (Breakpoint breakpoint : breakpoints) {
            final Breakpoint bp = mgr.setBreakpoint(breakpoint.getUri(), breakpoint.getLine());
            bp.setEnabled(breakpoint.isEnabled());
            bp.setLogMessage(breakpoint.getLogMessage());
            bp.setTraceMessage(breakpoint.getTraceMessage());
            bp.setCondition(breakpoint.getCondition());
            bp.setSuspend(breakpoint.isSuspend());
        }
        myBreakpointManager = mgr;
    }
}
Also used : Debugger(org.intellij.plugins.xsltDebugger.rt.engine.Debugger) Breakpoint(org.intellij.plugins.xsltDebugger.rt.engine.Breakpoint) BreakpointManager(org.intellij.plugins.xsltDebugger.rt.engine.BreakpointManager) XsltDebuggerSession(org.intellij.plugins.xsltDebugger.XsltDebuggerSession) BreakpointManagerImpl(org.intellij.plugins.xsltDebugger.rt.engine.BreakpointManagerImpl)

Aggregations

BreakpointManager (org.intellij.plugins.xsltDebugger.rt.engine.BreakpointManager)4 Breakpoint (org.intellij.plugins.xsltDebugger.rt.engine.Breakpoint)3 DebuggerStoppedException (org.intellij.plugins.xsltDebugger.rt.engine.DebuggerStoppedException)3 Project (com.intellij.openapi.project.Project)2 VirtualFile (com.intellij.openapi.vfs.VirtualFile)2 XSourcePosition (com.intellij.xdebugger.XSourcePosition)2 XLineBreakpoint (com.intellij.xdebugger.breakpoints.XLineBreakpoint)2 VMPausedException (org.intellij.plugins.xsltDebugger.VMPausedException)2 XDebugSession (com.intellij.xdebugger.XDebugSession)1 SocketException (java.net.SocketException)1 RemoteException (java.rmi.RemoteException)1 EventListener (java.util.EventListener)1 XsltDebuggerSession (org.intellij.plugins.xsltDebugger.XsltDebuggerSession)1 BreakpointManagerImpl (org.intellij.plugins.xsltDebugger.rt.engine.BreakpointManagerImpl)1 Debugger (org.intellij.plugins.xsltDebugger.rt.engine.Debugger)1