- plain implementation of ICommandResponseHandler interface that prints all lines to the console stream
Signed-off-by: Ioana Grigoropol <[email protected]> --- .../org.yocto.remote.utils/META-INF/MANIFEST.MF | 3 +- .../yocto/remote/utils/CommandResponseHandler.java | 44 ++++++++++++++++++++ 2 files changed, 46 insertions(+), 1 deletion(-) create mode 100644 plugins/org.yocto.remote.utils/src/org/yocto/remote/utils/CommandResponseHandler.java diff --git a/plugins/org.yocto.remote.utils/META-INF/MANIFEST.MF b/plugins/org.yocto.remote.utils/META-INF/MANIFEST.MF index c7b57fe..e31d557 100644 --- a/plugins/org.yocto.remote.utils/META-INF/MANIFEST.MF +++ b/plugins/org.yocto.remote.utils/META-INF/MANIFEST.MF @@ -23,5 +23,6 @@ Import-Package: org.eclipse.rse.core, org.eclipse.rse.subsystems.terminals.core.elements, org.eclipse.rse.ui, org.eclipse.tm.internal.terminal.control, - org.eclipse.tm.internal.terminal.provisional.api + org.eclipse.tm.internal.terminal.provisional.api, + org.eclipse.ui.console Export-Package: org.yocto.remote.utils diff --git a/plugins/org.yocto.remote.utils/src/org/yocto/remote/utils/CommandResponseHandler.java b/plugins/org.yocto.remote.utils/src/org/yocto/remote/utils/CommandResponseHandler.java new file mode 100644 index 0000000..f02fbfa --- /dev/null +++ b/plugins/org.yocto.remote.utils/src/org/yocto/remote/utils/CommandResponseHandler.java @@ -0,0 +1,44 @@ +/******************************************************************************* + * Copyright (c) 2013 Intel Corporation. + * All rights reserved. This program and the accompanying materials + * are made available under the terms of the Eclipse Public License v1.0 + * which accompanies this distribution, and is available at + * http://www.eclipse.org/legal/epl-v10.html + * + * Contributors: + * Ioana Grigoropol(Intel) - initial API and implementation + *******************************************************************************/ +package org.yocto.remote.utils; + +import org.eclipse.ui.console.MessageConsole; +import org.eclipse.ui.console.MessageConsoleStream; + +public class CommandResponseHandler implements ICommandResponseHandler { + private MessageConsoleStream consoleStream; + private Boolean errorOccured = false; + + public CommandResponseHandler(MessageConsole console) { + try { + this.consoleStream = console.newMessageStream(); + } catch (Exception e) { + e.printStackTrace(); + } + } + + public Boolean hasError() { + return errorOccured; + } + + @Override + public void response(String line, boolean isError) { + try { + if (isError) { + errorOccured = true; + } + consoleStream.println(line); + } catch (Exception e) { + e.printStackTrace(); + } + } + +} \ No newline at end of file -- 1.7.9.5 _______________________________________________ yocto mailing list [email protected] https://lists.yoctoproject.org/listinfo/yocto
