* * @author Emmanuel Bigeon */ -public class SWTConsole extends Composite +public final class SWTConsole extends Composite implements ConsoleDelayIO, ConsoleInput, ConsoleOutput { - /** - * - */ + /** The number of columns of the layout. */ private static final int LAYOUT_NB_COLUMNS = 2; - /** The cmd prefix in the output console */ + /** The cmd prefix in the output console. */ private static final String CMD_PREFIX = "[CMD] "; //$NON-NLS-1$ - /** The class logger */ + /** The class logger. */ private static final Logger LOGGER = Logger .getLogger(SWTConsole.class.getName()); - /** The empty string constant */ + /** The empty string constant. */ private static final String EMPTY = ""; //$NON-NLS-1$ - /** The console output text field */ + /** The console output text field. */ private final Text consoleOutput; - /** The console input text field */ + /** The console input text field. */ private final Text consoleInput; - /** The prompt label */ + /** The prompt label. */ private final Label lblPromptlabel; - /** The prompt text */ + /** The prompt text. */ private String prompt = ">"; //$NON-NLS-1$ - /** The command entered by the user */ + /** The command entered by the user. */ private String command = null; - /** If the prompt should be active */ + /** If the prompt should be active. */ private boolean prompting = false; - /** The object for thread synchronization with the prompt */ + /** The object for thread synchronization with the prompt. */ private final Object promptLock = new Object(); /** Create the composite. @@ -121,7 +116,7 @@ public class SWTConsole extends Composite @Override public void close() { synchronized (promptLock) { - promptLock.notify(); + promptLock.notifyAll(); } if (consoleInput.isDisposed()) { return; @@ -149,7 +144,7 @@ public class SWTConsole extends Composite @Override public void interruptPrompt() { synchronized (promptLock) { - promptLock.notify(); + promptLock.notifyAll(); } } @@ -232,6 +227,7 @@ public class SWTConsole extends Composite LOGGER.log(Level.WARNING, "Error in synchronization of prompting", e); //$NON-NLS-1$ command = null; + Thread.currentThread().interrupt(); } } if (isDisposed()) { @@ -281,6 +277,7 @@ public class SWTConsole extends Composite LOGGER.log(Level.WARNING, "Error in synchronization of prompting", e); //$NON-NLS-1$ command = null; + Thread.currentThread().interrupt(); } finally { Display.getDefault().syncExec(new Runnable() { @SuppressWarnings("synthetic-access") diff --git a/gclc-swt/src/main/java/fr/bigeon/gclc/swt/SWTConsoleShell.java b/gclc-swt/src/main/java/fr/bigeon/gclc/swt/SWTConsoleShell.java index a31e659..aa0678b 100644 --- a/gclc-swt/src/main/java/fr/bigeon/gclc/swt/SWTConsoleShell.java +++ b/gclc-swt/src/main/java/fr/bigeon/gclc/swt/SWTConsoleShell.java @@ -1,10 +1,7 @@ /* - * Copyright E. Bigeon (2015) - * - * emmanuel@bigeon.fr - * - * This software is a computer program whose purpose is to - * provide a swt window for console applications. + * GCLC swt, provide a swt window for console applications + * Copyright (C) 2015-2017 E. Bigeon + * mailto:emmanuel@bigeon.fr * * This software is governed by the CeCILL license under French law and * abiding by the rules of distribution of free software. You can use, @@ -47,7 +44,7 @@ import org.eclipse.swt.widgets.Shell; *
* * @author Emmanuel Bigeon */ -public class SWTConsoleShell extends Shell { +public final class SWTConsoleShell extends Shell { /** The console component */ private SWTConsole console; diff --git a/gclc-swt/src/main/java/fr/bigeon/gclc/swt/SWTConsoleView.java b/gclc-swt/src/main/java/fr/bigeon/gclc/swt/SWTConsoleView.java index 396c099..8a94043 100644 --- a/gclc-swt/src/main/java/fr/bigeon/gclc/swt/SWTConsoleView.java +++ b/gclc-swt/src/main/java/fr/bigeon/gclc/swt/SWTConsoleView.java @@ -1,10 +1,7 @@ /* - * Copyright E. Bigeon (2015) - * - * emmanuel@bigeon.fr - * - * This software is a computer program whose purpose is to - * provide a swt window for console applications. + * GCLC swt, provide a swt window for console applications + * Copyright (C) 2015-2017 E. Bigeon + * mailto:emmanuel@bigeon.fr * * This software is governed by the CeCILL license under French law and * abiding by the rules of distribution of free software. You can use, @@ -58,7 +55,7 @@ import fr.bigeon.gclc.tools.AOutputForwardRunnable; *
* * @author Emmanuel Bigeon */ -public class SWTConsoleView extends Composite implements ConsoleDelayIO { +public final class SWTConsoleView extends Composite implements ConsoleDelayIO { /** The local implementation of the forwarding runnable * * @author Emmanuel Bigeon */ @@ -95,8 +92,7 @@ public class SWTConsoleView extends Composite implements ConsoleDelayIO { private final Text consoleOutput; /** The console input text field */ private final Text consoleInput; - /** The actual manager */ - private PipedConsoleOutput manager; + /** The input. */ private PipedConsoleInput input; /** The forwarding runnable */ private ToSWTConsoleForwardRunnable forward; @@ -160,10 +156,12 @@ public class SWTConsoleView extends Composite implements ConsoleDelayIO { consoleInput.setSelection(input.length()); } - /** @param manager the manager to set */ + /** Set the input and output. + * + * @param manager the output to set + * @param input the input */ public void setManager(final PipedConsoleOutput manager, final PipedConsoleInput input) { - this.manager = manager; this.input = input; if (forward != null) { forward.setRunning(false); diff --git a/gclc-swt/src/main/java/fr/bigeon/gclc/swt/package-info.java b/gclc-swt/src/main/java/fr/bigeon/gclc/swt/package-info.java new file mode 100644 index 0000000..62c13ac --- /dev/null +++ b/gclc-swt/src/main/java/fr/bigeon/gclc/swt/package-info.java @@ -0,0 +1,39 @@ +/* + * GCLC swt, provide a swt window for console applications + * Copyright (C) 2015-2017 E. Bigeon + * mailto:emmanuel@bigeon.fr + * + * This software is governed by the CeCILL license under French law and + * abiding by the rules of distribution of free software. You can use, + * modify and/or redistribute the software under the terms of the CeCILL + * license as circulated by CEA, CNRS and INRIA at the following URL + * "http://www.cecill.info". + * + * As a counterpart to the access to the source code and rights to copy, + * modify and redistribute granted by the license, users are provided only + * with a limited warranty and the software's author, the holder of the + * economic rights, and the successive licensors have only limited + * liability. + * + * In this respect, the user's attention is drawn to the risks associated + * with loading, using, modifying and/or developing or reproducing the + * software by the user in light of its specific status of free software, + * that may mean that it is complicated to manipulate, and that also + * therefore means that it is reserved for developers and experienced + * professionals having in-depth computer knowledge. Users are therefore + * encouraged to load and test the software's suitability as regards their + * requirements in conditions enabling the security of their systems and/or + * data to be ensured and, more generally, to use and operate it in the + * same conditions as regards security. + * + * The fact that you are presently reading this means that you have had + * knowledge of the CeCILL license and that you accept its terms. + */ +/** + * gclc-swt:fr.bigeon.gclc.swt.package-info.java + * Created on: Nov 18, 2017 + */ +/** SWT components for a frontend of GCLC applications. + * + * @author Emmanuel Bigeon */ +package fr.bigeon.gclc.swt; diff --git a/gclc-swt/src/test/java/fr/bigeon/gclc/swt/HistoryTextKeyListenerTest.java b/gclc-swt/src/test/java/fr/bigeon/gclc/swt/HistoryTextKeyListenerTest.java index 80b3760..67c670c 100644 --- a/gclc-swt/src/test/java/fr/bigeon/gclc/swt/HistoryTextKeyListenerTest.java +++ b/gclc-swt/src/test/java/fr/bigeon/gclc/swt/HistoryTextKeyListenerTest.java @@ -1,10 +1,7 @@ /* - * Copyright E. Bigeon (2015) - * - * emmanuel@bigeon.fr - * - * This software is a computer program whose purpose is to - * provide a swt window for console applications. + * GCLC swt, provide a swt window for console applications + * Copyright (C) 2015-2017 E. Bigeon + * mailto:emmanuel@bigeon.fr * * This software is governed by the CeCILL license under French law and * abiding by the rules of distribution of free software. You can use, diff --git a/gclc-swt/src/test/java/fr/bigeon/gclc/swt/SWTConsoleShellTest.java b/gclc-swt/src/test/java/fr/bigeon/gclc/swt/SWTConsoleShellTest.java index 1a3d80c..d9c6d54 100644 --- a/gclc-swt/src/test/java/fr/bigeon/gclc/swt/SWTConsoleShellTest.java +++ b/gclc-swt/src/test/java/fr/bigeon/gclc/swt/SWTConsoleShellTest.java @@ -1,10 +1,7 @@ /* - * Copyright E. Bigeon (2015) - * - * emmanuel@bigeon.fr - * - * This software is a computer program whose purpose is to - * provide a swt window for console applications. + * GCLC swt, provide a swt window for console applications + * Copyright (C) 2015-2017 E. Bigeon + * mailto:emmanuel@bigeon.fr * * This software is governed by the CeCILL license under French law and * abiding by the rules of distribution of free software. You can use, diff --git a/gclc-swt/src/test/java/fr/bigeon/gclc/swt/SWTConsoleViewTest.java b/gclc-swt/src/test/java/fr/bigeon/gclc/swt/SWTConsoleViewTest.java index b12cd0c..09a8609 100644 --- a/gclc-swt/src/test/java/fr/bigeon/gclc/swt/SWTConsoleViewTest.java +++ b/gclc-swt/src/test/java/fr/bigeon/gclc/swt/SWTConsoleViewTest.java @@ -1,10 +1,7 @@ /* - * Copyright E. Bigeon (2015) - * - * emmanuel@bigeon.fr - * - * This software is a computer program whose purpose is to - * provide a swt window for console applications. + * GCLC swt, provide a swt window for console applications + * Copyright (C) 2015-2017 E. Bigeon + * mailto:emmanuel@bigeon.fr * * This software is governed by the CeCILL license under French law and * abiding by the rules of distribution of free software. You can use, @@ -72,13 +69,13 @@ public class SWTConsoleViewTest { final Shell shell = new Shell(DISPLAY); final SWTConsoleView swtConsole = new SWTConsoleView(shell, SWT.NONE); try (PipedConsoleOutput manager = new PipedConsoleOutput(); - PipedConsoleInput input = new PipedConsoleInput()) { + PipedConsoleInput input = new PipedConsoleInput(System.out)) { swtConsole.setManager(manager, input); } catch (final IOException e2) { assertNull(e2); } try (PipedConsoleOutput manager = new PipedConsoleOutput(); - PipedConsoleInput input = new PipedConsoleInput()) { + PipedConsoleInput input = new PipedConsoleInput(System.out)) { swtConsole.setManager(manager, input); final ConsoleApplication appl = new ConsoleApplication(manager, input,