Search in sources :

Example 1 with DebuggerInfo

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

the class GdbDebuggerTest method initializeDebugger.

private void initializeDebugger() throws DebuggerException {
    Map<String, String> properties = ImmutableMap.of("host", "localhost", "port", "1111", "binary", file, "sources", sourceDirectory.getParent().toString());
    GdbDebuggerFactory gdbDebuggerFactory = new GdbDebuggerFactory();
    gdbDebugger = gdbDebuggerFactory.create(properties, events::add);
    DebuggerInfo debuggerInfo = gdbDebugger.getInfo();
    assertEquals(debuggerInfo.getFile(), file);
    assertEquals(debuggerInfo.getHost(), "localhost");
    assertEquals(debuggerInfo.getPort(), 1111);
    assertNotNull(debuggerInfo.getName());
    assertNotNull(debuggerInfo.getVersion());
}
Also used : DebuggerInfo(org.eclipse.che.api.debug.shared.model.DebuggerInfo)

Example 2 with DebuggerInfo

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

the class DebuggerService method getDebugSession.

@GET
@Path("{id}")
@Produces(MediaType.APPLICATION_JSON)
public DebugSessionDto getDebugSession(@PathParam("id") String sessionId) throws DebuggerException {
    DebuggerInfo debuggerInfo = debuggerManager.getDebugger(sessionId).getInfo();
    DebugSessionDto debugSessionDto = newDto(DebugSessionDto.class);
    debugSessionDto.setDebuggerInfo(asDto(debuggerInfo));
    debugSessionDto.setId(sessionId);
    debugSessionDto.setType(debuggerManager.getDebuggerType(sessionId));
    return debugSessionDto;
}
Also used : DebuggerInfo(org.eclipse.che.api.debug.shared.model.DebuggerInfo) DebugSessionDto(org.eclipse.che.api.debug.shared.dto.DebugSessionDto) Path(javax.ws.rs.Path) VariablePath(org.eclipse.che.api.debug.shared.model.VariablePath) Produces(javax.ws.rs.Produces) GET(javax.ws.rs.GET)

Example 3 with DebuggerInfo

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

the class AbstractDebugger method addHandlers.

private void addHandlers(final MessageBusProvider messageBusProvider) {
    eventBus.addHandler(WsAgentStateEvent.TYPE, new WsAgentStateHandler() {

        @Override
        public void onWsAgentStarted(WsAgentStateEvent event) {
            messageBus = messageBusProvider.getMachineMessageBus();
            if (!isConnected()) {
                return;
            }
            Promise<DebugSessionDto> promise = service.getSessionInfo(debugSessionDto.getId());
            promise.then(new Operation<DebugSessionDto>() {

                @Override
                public void apply(DebugSessionDto arg) throws OperationException {
                    debuggerManager.setActiveDebugger(AbstractDebugger.this);
                    setDebugSession(arg);
                    DebuggerInfo debuggerInfo = arg.getDebuggerInfo();
                    String info = debuggerInfo.getName() + " " + debuggerInfo.getVersion();
                    String address = debuggerInfo.getHost() + ":" + debuggerInfo.getPort();
                    DebuggerDescriptor debuggerDescriptor = new DebuggerDescriptor(info, address);
                    JsPromise<Void> promise = Promises.resolve(null);
                    for (DebuggerObserver observer : observers) {
                        observer.onDebuggerAttached(debuggerDescriptor, promise);
                    }
                    startCheckingEvents();
                }
            }).catchError(new Operation<PromiseError>() {

                @Override
                public void apply(PromiseError arg) throws OperationException {
                    if (!isConnected()) {
                        invalidateDebugSession();
                    }
                }
            });
        }

        @Override
        public void onWsAgentStopped(WsAgentStateEvent event) {
        }
    });
    this.debuggerEventsHandler = new SubscriptionHandler<DebuggerEventDto>(new DebuggerEventUnmarshaller(dtoFactory)) {

        @Override
        public void onMessageReceived(DebuggerEventDto result) {
            if (!isConnected()) {
                return;
            }
            onEventListReceived(result);
        }

        @Override
        public void onErrorReceived(Throwable exception) {
            if (!isConnected()) {
                return;
            }
            try {
                messageBus.unsubscribe(eventChannel, this);
            } catch (WebSocketException e) {
                Log.error(AbstractDebugger.class, e);
            }
            if (exception instanceof ServerException) {
                ServerException serverException = (ServerException) exception;
                if (HTTPStatus.INTERNAL_ERROR == serverException.getHTTPStatus() && serverException.getMessage() != null && serverException.getMessage().contains("not found")) {
                    disconnect();
                }
            }
        }
    };
}
Also used : DebuggerInfo(org.eclipse.che.api.debug.shared.model.DebuggerInfo) ServerException(org.eclipse.che.ide.websocket.rest.exceptions.ServerException) WebSocketException(org.eclipse.che.ide.websocket.WebSocketException) WsAgentStateHandler(org.eclipse.che.ide.api.machine.events.WsAgentStateHandler) DebuggerDescriptor(org.eclipse.che.ide.debug.DebuggerDescriptor) JsPromise(org.eclipse.che.api.promises.client.js.JsPromise) Operation(org.eclipse.che.api.promises.client.Operation) JsPromise(org.eclipse.che.api.promises.client.js.JsPromise) Promise(org.eclipse.che.api.promises.client.Promise) DebuggerEventDto(org.eclipse.che.api.debug.shared.dto.event.DebuggerEventDto) JsPromiseError(org.eclipse.che.api.promises.client.js.JsPromiseError) PromiseError(org.eclipse.che.api.promises.client.PromiseError) DebugSessionDto(org.eclipse.che.api.debug.shared.dto.DebugSessionDto) WsAgentStateEvent(org.eclipse.che.ide.api.machine.events.WsAgentStateEvent) DebuggerObserver(org.eclipse.che.ide.debug.DebuggerObserver) OperationException(org.eclipse.che.api.promises.client.OperationException)

Example 4 with DebuggerInfo

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

the class NodeJsDebuggerTest method testGetInfo.

@Test
public void testGetInfo() throws Exception {
    DebuggerInfo info = debugger.getInfo();
    assertTrue(info.getFile().endsWith("app.js"));
    assertTrue(!isNullOrEmpty(info.getVersion()));
    assertTrue(info.getName().equals("'node'") || info.getName().equals("'nodejs'"));
}
Also used : DebuggerInfo(org.eclipse.che.api.debug.shared.model.DebuggerInfo) Test(org.testng.annotations.Test)

Example 5 with DebuggerInfo

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

the class AbstractDebugger method connect.

@Override
public Promise<Void> connect(Map<String, String> connectionProperties) {
    if (isConnected()) {
        return Promises.reject(JsPromiseError.create("Debugger already connected"));
    }
    Promise<DebugSessionDto> connect = service.connect(debuggerType, connectionProperties);
    final DebuggerDescriptor debuggerDescriptor = toDescriptor(connectionProperties);
    Promise<Void> promise = connect.then(new Function<DebugSessionDto, Void>() {

        @Override
        public Void apply(final DebugSessionDto arg) throws FunctionException {
            DebuggerInfo debuggerInfo = arg.getDebuggerInfo();
            debuggerDescriptor.setInfo(debuggerInfo.getName() + " " + debuggerInfo.getVersion());
            setDebugSession(arg);
            preserveDebuggerState();
            startCheckingEvents();
            startDebugger(arg);
            return null;
        }
    }).catchError(new Operation<PromiseError>() {

        @Override
        public void apply(PromiseError arg) throws OperationException {
            Log.error(AbstractDebugger.class, arg.getMessage());
            throw new OperationException(arg.getCause());
        }
    });
    for (DebuggerObserver observer : observers) {
        observer.onDebuggerAttached(debuggerDescriptor, promise);
    }
    return promise;
}
Also used : DebuggerInfo(org.eclipse.che.api.debug.shared.model.DebuggerInfo) DebuggerDescriptor(org.eclipse.che.ide.debug.DebuggerDescriptor) Function(org.eclipse.che.api.promises.client.Function) JsPromiseError(org.eclipse.che.api.promises.client.js.JsPromiseError) PromiseError(org.eclipse.che.api.promises.client.PromiseError) DebugSessionDto(org.eclipse.che.api.debug.shared.dto.DebugSessionDto) DebuggerObserver(org.eclipse.che.ide.debug.DebuggerObserver) OperationException(org.eclipse.che.api.promises.client.OperationException)

Aggregations

DebuggerInfo (org.eclipse.che.api.debug.shared.model.DebuggerInfo)7 DebugSessionDto (org.eclipse.che.api.debug.shared.dto.DebugSessionDto)3 Test (org.testng.annotations.Test)3 OperationException (org.eclipse.che.api.promises.client.OperationException)2 PromiseError (org.eclipse.che.api.promises.client.PromiseError)2 JsPromiseError (org.eclipse.che.api.promises.client.js.JsPromiseError)2 DebuggerDescriptor (org.eclipse.che.ide.debug.DebuggerDescriptor)2 DebuggerObserver (org.eclipse.che.ide.debug.DebuggerObserver)2 GET (javax.ws.rs.GET)1 Path (javax.ws.rs.Path)1 Produces (javax.ws.rs.Produces)1 DebuggerEventDto (org.eclipse.che.api.debug.shared.dto.event.DebuggerEventDto)1 VariablePath (org.eclipse.che.api.debug.shared.model.VariablePath)1 Function (org.eclipse.che.api.promises.client.Function)1 Operation (org.eclipse.che.api.promises.client.Operation)1 Promise (org.eclipse.che.api.promises.client.Promise)1 JsPromise (org.eclipse.che.api.promises.client.js.JsPromise)1 WsAgentStateEvent (org.eclipse.che.ide.api.machine.events.WsAgentStateEvent)1 WsAgentStateHandler (org.eclipse.che.ide.api.machine.events.WsAgentStateHandler)1 WebSocketException (org.eclipse.che.ide.websocket.WebSocketException)1