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());
}
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;
}
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();
}
}
}
};
}
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'"));
}
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;
}
Aggregations