diff --git a/gclc/src/main/java/net/bigeon/gclc/ApplicationAttachement.java b/gclc/src/main/java/net/bigeon/gclc/ApplicationAttachement.java index a496af0..e1391ca 100644 --- a/gclc/src/main/java/net/bigeon/gclc/ApplicationAttachement.java +++ b/gclc/src/main/java/net/bigeon/gclc/ApplicationAttachement.java @@ -11,17 +11,17 @@ package net.bigeon.gclc; * Copyright (C) 2014 - 2018 Bigeon * %% * This software is governed by the CeCILL license under French law and - * abiding by the rules of distribution of free software. You can use, + * 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". - * + * "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. - * + * 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, @@ -29,10 +29,10 @@ package net.bigeon.gclc; * 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. - * + * 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. * #L% @@ -51,7 +51,7 @@ public interface ApplicationAttachement { * application. The attached command should be specific to the attachement * (typically, the generic help command or the script command should not be * added through this mechanism). - * + * * @param application the application * @throws InvalidCommandName if a command name is invalid for the * application. */ diff --git a/gclc/src/main/java/net/bigeon/gclc/CommandRequestListener.java b/gclc/src/main/java/net/bigeon/gclc/CommandRequestListener.java index 290b976..252160b 100644 --- a/gclc/src/main/java/net/bigeon/gclc/CommandRequestListener.java +++ b/gclc/src/main/java/net/bigeon/gclc/CommandRequestListener.java @@ -11,17 +11,17 @@ package net.bigeon.gclc; * Copyright (C) 2014 - 2018 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, + * 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". - * + * "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. - * + * 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, @@ -29,10 +29,10 @@ package net.bigeon.gclc; * 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. - * + * 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. * #L% diff --git a/gclc/src/main/java/net/bigeon/gclc/ConsoleApplication.java b/gclc/src/main/java/net/bigeon/gclc/ConsoleApplication.java index bc560cb..e963e55 100644 --- a/gclc/src/main/java/net/bigeon/gclc/ConsoleApplication.java +++ b/gclc/src/main/java/net/bigeon/gclc/ConsoleApplication.java @@ -43,17 +43,17 @@ package net.bigeon.gclc; * Copyright (C) 2014 - 2018 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, + * 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". - * + * "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. - * + * 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, @@ -61,10 +61,10 @@ package net.bigeon.gclc; * 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. - * + * 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. * #L% @@ -88,9 +88,8 @@ import net.bigeon.gclc.i18n.Messages; import net.bigeon.gclc.manager.ConsoleInput; import net.bigeon.gclc.manager.ConsoleOutput; -/** - * A {@link ConsoleApplication} is an application that require the user to input - * commands. +/** A {@link ConsoleApplication} is an application that require the user to + * input commands. *
* A typical use case is the following:
*
@@ -111,20 +110,20 @@ import net.bigeon.gclc.manager.ConsoleOutput;
public final class ConsoleApplication implements ICommandProvider {
/** The class logger. */
- private static final Logger LOGGER = Logger
+ private static final Logger LOGGER = Logger
.getLogger(ConsoleApplication.class.getName());
/** The welcome message. */
- public final String header;
+ public final String header;
/** The good bye message. */
- public final String footer;
+ public final String footer;
/** The standard output for the application. */
- private final ConsoleOutput out;
+ private final ConsoleOutput out;
/** The standard input for the application. */
- private final ConsoleInput in;
+ private final ConsoleInput in;
/** The container of commands. */
- public final SubedCommand root;
+ public final SubedCommand root;
/** The state of this application. */
- private boolean running;
+ private boolean running;
/** The listeners. */
private final List
- * This method will split the command in its part and execute the command
- * with {@link #executeSub(ConsoleOutput, ConsoleInput, String, String...)}.
+ * This method will split the command in its part and execute the command with
+ * {@link #executeSub(ConsoleOutput, ConsoleInput, String, String...)}.
*
* @param cmd the command
* @throws IOException if the command could not be parsed */
@@ -198,12 +195,11 @@ public final class ConsoleApplication implements ICommandProvider {
}
if (!args.isEmpty()) {
try {
- executeSub(out, in, args.get(0), Arrays.copyOfRange(
- args.toArray(new String[0]), 1, args.size()));
+ executeSub(out, in, args.get(0),
+ Arrays.copyOfRange(args.toArray(new String[0]), 1, args.size()));
} catch (final CommandRunException e) {
LOGGER.log(Level.FINE, "Command failed: " + cmd, e); //$NON-NLS-1$
- out.println(Messages
- .getString("ConsoleApplication.cmd.failed", cmd)); //$NON-NLS-1$
+ out.println(Messages.getString("ConsoleApplication.cmd.failed", cmd)); //$NON-NLS-1$
out.println(e.getLocalizedMessage());
if (e.getType() == CommandRunExceptionType.USAGE) {
get(args.get(0)).help(out);
@@ -228,8 +224,8 @@ public final class ConsoleApplication implements ICommandProvider {
/** The running loop content.
*
- * This consisting in getting the command, executing it and exiting
- * (restarting the loop). */
+ * This consisting in getting the command, executing it and exiting (restarting
+ * the loop). */
private void runLoop() {
try {
final String cmd = in.prompt();
@@ -241,8 +237,7 @@ public final class ConsoleApplication implements ICommandProvider {
}
interpretCommand(cmd);
} catch (final InterruptedIOException e) {
- LOGGER.info(
- "Prompt interrupted. It is likely the application is closing."); //$NON-NLS-1$
+ LOGGER.info("Prompt interrupted. It is likely the application is closing."); //$NON-NLS-1$
LOGGER.log(Level.FINER, "Interruption of the prompt.", //$NON-NLS-1$
e);
} catch (final IOException e) {
@@ -250,8 +245,7 @@ public final class ConsoleApplication implements ICommandProvider {
running = false;
LOGGER.warning(
"The console manager was closed. Closing the application as no one can reach it."); //$NON-NLS-1$
- LOGGER.log(Level.FINE,
- "An exception caused the closing of the application", //$NON-NLS-1$
+ LOGGER.log(Level.FINE, "An exception caused the closing of the application", //$NON-NLS-1$
e);
}
}
@@ -268,8 +262,7 @@ public final class ConsoleApplication implements ICommandProvider {
running = false;
LOGGER.warning(
"The console manager was closed. Closing the application as no one can reach it."); //$NON-NLS-1$
- LOGGER.log(Level.FINE,
- "An exception caused the closing of the application", //$NON-NLS-1$
+ LOGGER.log(Level.FINE, "An exception caused the closing of the application", //$NON-NLS-1$
e);
return;
}
diff --git a/gclc/src/main/java/net/bigeon/gclc/GCLCConstants.java b/gclc/src/main/java/net/bigeon/gclc/GCLCConstants.java
index 00afc20..6a3b28c 100644
--- a/gclc/src/main/java/net/bigeon/gclc/GCLCConstants.java
+++ b/gclc/src/main/java/net/bigeon/gclc/GCLCConstants.java
@@ -45,17 +45,17 @@ package net.bigeon.gclc;
* Copyright (C) 2014 - 2018 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,
+ * 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".
- *
+ * "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.
- *
+ * 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,
@@ -63,10 +63,10 @@ package net.bigeon.gclc;
* 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.
- *
+ * 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.
* #L%
@@ -99,9 +99,9 @@ public final class GCLCConstants {
* @param index the index of the current position
* @return the argument
* @throws CommandParsingException if the end of string does not mark end of
- * command and is not followed by a space */
+ * command and is not followed by a space */
private static String endOfString(final String cmd, final int startIndex,
- final int index) throws CommandParsingException {
+ final int index) throws CommandParsingException {
if (index < cmd.length() && cmd.charAt(index) != ' ') {
throw new CommandParsingException("Misplaced quote"); //$NON-NLS-1$
}
@@ -137,7 +137,8 @@ public final class GCLCConstants {
* @param cmd the command to split in its parts
* @return the list of argument preceded by the command name
* @throws CommandParsingException if the parsing of the command failed */
- public static List
- * This method may be overriden by implementations to improve the help
- * content. The default behavior is to print the tip.
+ * This method may be overriden by implementations to improve the help content.
+ * The default behavior is to print the tip.
*
* @return a brief description of the command
* @see Command#help(ConsoleOutput, String...) */
@@ -112,8 +112,8 @@ public abstract class Command implements ICommand {
*
* @see net.bigeon.gclc.command.ICommand#help(ConsoleOutput, String...) */
@Override
- public final void help(final ConsoleOutput manager,
- final String... args) throws IOException {
+ public final void help(final ConsoleOutput manager, final String... args)
+ throws IOException {
manager.println(getCommandName());
manager.println(brief());
manager.println();
@@ -123,8 +123,8 @@ public abstract class Command implements ICommand {
final String details = usageDetail();
if (details != null && !details.isEmpty()) {
manager.print(details);
- if (!(details.endsWith(EOL_LINUX) ||
- details.endsWith(System.lineSeparator()))) {
+ if (!(details.endsWith(EOL_LINUX)
+ || details.endsWith(System.lineSeparator()))) {
manager.println();
}
}
diff --git a/gclc/src/main/java/net/bigeon/gclc/command/CommandParameters.java b/gclc/src/main/java/net/bigeon/gclc/command/CommandParameters.java
index bb93c59..92e3849 100644
--- a/gclc/src/main/java/net/bigeon/gclc/command/CommandParameters.java
+++ b/gclc/src/main/java/net/bigeon/gclc/command/CommandParameters.java
@@ -11,17 +11,17 @@ package net.bigeon.gclc.command;
* Copyright (C) 2014 - 2018 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,
+ * 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".
- *
+ * "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.
- *
+ * 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,
@@ -29,10 +29,10 @@ package net.bigeon.gclc.command;
* 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.
- *
+ * 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.
* #L%
@@ -54,15 +54,15 @@ import net.bigeon.gclc.exception.CommandParsingException;
* @author Emmanuel BIGEON */
public final class CommandParameters {
/** Number of element for a string argument. */
- private static final int STRINGARG_NUMBER_OF_ELEMENTS = 2;
+ private static final int STRINGARG_NUMBER_OF_ELEMENTS = 2;
/** Boolean arguments. */
private final Map
- * This method return 0 if the parsing was incorrect, or the number of
- * parsed elements.
+ * This method return 0 if the parsing was incorrect, or the number of parsed
+ * elements.
*
* @param arg the argument
* @param next the next element
@@ -174,8 +173,7 @@ public final class CommandParameters {
}
final int p = parseArg(args[i], next);
if (p == 0) {
- throw new CommandParsingException(
- "Invalid parameter " + args[i]); //$NON-NLS-1$
+ throw new CommandParsingException("Invalid parameter " + args[i]); //$NON-NLS-1$
}
i += p;
}
diff --git a/gclc/src/main/java/net/bigeon/gclc/command/CommandProvider.java b/gclc/src/main/java/net/bigeon/gclc/command/CommandProvider.java
index c2d22b6..4eb8027 100644
--- a/gclc/src/main/java/net/bigeon/gclc/command/CommandProvider.java
+++ b/gclc/src/main/java/net/bigeon/gclc/command/CommandProvider.java
@@ -9,17 +9,17 @@ package net.bigeon.gclc.command;
* Copyright (C) 2014 - 2018 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,
+ * 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".
- *
+ * "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.
- *
+ * 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,
@@ -27,10 +27,10 @@ package net.bigeon.gclc.command;
* 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.
- *
+ * 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.
* #L%
@@ -49,9 +49,10 @@ import net.bigeon.gclc.manager.ConsoleOutput;
* @author Emmanuel BIGEON */
public class CommandProvider implements ICommandProvider {
/** The minus character. */
- private static final String MINUS = "-"; //$NON-NLS-1$
+ private static final String MINUS = "-"; //$NON-NLS-1$
/** The space character. */
- private static final String SPACE = " "; //$NON-NLS-1$
+ private static final String SPACE = " "; //$NON-NLS-1$
+
/** The commands set.
*
* The insertion order is conserved through the use of a
@@ -64,17 +65,6 @@ public class CommandProvider implements ICommandProvider {
commands = new LinkedHashSet<>();
}
- /** Test the command name validity.
- *
- * @param name the command name
- * @throws InvalidCommandName if the name is invalid */
- private static void testCommandName(final String name) throws InvalidCommandName {
- if (name == null || name.isEmpty() || name.startsWith(MINUS)
- || name.contains(SPACE)) {
- throw new InvalidCommandName();
- }
- }
-
/* (non-Javadoc)
* @see net.bigeon.gclc.command.ICommandProvider#add(java.lang.String,
* net.bigeon.gclc.command.Command) */
@@ -121,4 +111,15 @@ public class CommandProvider implements ICommandProvider {
}
return null;
}
+
+ /** Test the command name validity.
+ *
+ * @param name the command name
+ * @throws InvalidCommandName if the name is invalid */
+ private static void testCommandName(final String name) throws InvalidCommandName {
+ if (name == null || name.isEmpty() || name.startsWith(MINUS)
+ || name.contains(SPACE)) {
+ throw new InvalidCommandName();
+ }
+ }
}
diff --git a/gclc/src/main/java/net/bigeon/gclc/command/HelpExecutor.java b/gclc/src/main/java/net/bigeon/gclc/command/HelpExecutor.java
index 95c42d7..8fa26e6 100644
--- a/gclc/src/main/java/net/bigeon/gclc/command/HelpExecutor.java
+++ b/gclc/src/main/java/net/bigeon/gclc/command/HelpExecutor.java
@@ -45,17 +45,17 @@ package net.bigeon.gclc.command;
* Copyright (C) 2014 - 2018 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,
+ * 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".
- *
+ * "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.
- *
+ * 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,
@@ -63,10 +63,10 @@ package net.bigeon.gclc.command;
* 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.
- *
+ * 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.
* #L%
@@ -93,8 +93,7 @@ public final class HelpExecutor extends Command {
*
* @param cmdName the command name
* @param cmd the command to execute the help of */
- public HelpExecutor(final String cmdName,
- final ICommand cmd) {
+ public HelpExecutor(final String cmdName, final ICommand cmd) {
super(cmdName);
this.cmd = cmd;
}
@@ -114,7 +113,7 @@ public final class HelpExecutor extends Command {
* String[]) */
@Override
public void execute(final ConsoleOutput out, final ConsoleInput in,
- final String... args) throws CommandRunException {
+ final String... args) throws CommandRunException {
try {
cmd.help(out, args);
} catch (final IOException e) {
@@ -131,8 +130,7 @@ public final class HelpExecutor extends Command {
}
/* (non-Javadoc)
- * @see net.bigeon.gclc.command.Command#usageDetail()
- */
+ * @see net.bigeon.gclc.command.Command#usageDetail() */
@Override
protected String usageDetail() {
return null;
diff --git a/gclc/src/main/java/net/bigeon/gclc/command/ICommand.java b/gclc/src/main/java/net/bigeon/gclc/command/ICommand.java
index 46733a9..0fe8397 100644
--- a/gclc/src/main/java/net/bigeon/gclc/command/ICommand.java
+++ b/gclc/src/main/java/net/bigeon/gclc/command/ICommand.java
@@ -45,17 +45,17 @@ package net.bigeon.gclc.command;
* Copyright (C) 2014 - 2018 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,
+ * 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".
- *
+ * "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.
- *
+ * 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,
@@ -63,10 +63,10 @@ package net.bigeon.gclc.command;
* 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.
- *
+ * 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.
* #L%
@@ -90,11 +90,11 @@ public interface ICommand {
* @param in the input
* @param args the arguments
* @throws CommandRunException if the command failed */
- void execute(ConsoleOutput out, ConsoleInput in,
- String... args) throws CommandRunException;
+ void execute(ConsoleOutput out, ConsoleInput in, String... args)
+ throws CommandRunException;
/** Get teh command name.
- *
+ *
* @return the command's name */
String getCommandName();
diff --git a/gclc/src/main/java/net/bigeon/gclc/command/ICommandProvider.java b/gclc/src/main/java/net/bigeon/gclc/command/ICommandProvider.java
index e736557..1c6ac7b 100644
--- a/gclc/src/main/java/net/bigeon/gclc/command/ICommandProvider.java
+++ b/gclc/src/main/java/net/bigeon/gclc/command/ICommandProvider.java
@@ -43,17 +43,17 @@ package net.bigeon.gclc.command;
* Copyright (C) 2014 - 2018 Bigeon
* %%
* This software is governed by the CeCILL license under French law and
- * abiding by the rules of distribution of free software. You can use,
+ * 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".
- *
+ * "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.
- *
+ * 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,
@@ -61,10 +61,10 @@ package net.bigeon.gclc.command;
* 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.
- *
+ * 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.
* #L%
@@ -81,8 +81,8 @@ import net.bigeon.gclc.manager.ConsoleOutput;
* @author Emmanuel BIGEON */
public interface ICommandProvider {
- /** Adds a command to this provider, if no command was associated with the
- * given key.
+ /** Adds a command to this provider, if no command was associated with the given
+ * key.
*
* @param value the command to execute
* @return if the command was added
@@ -91,25 +91,25 @@ public interface ICommandProvider {
/** Execute the command with the given name.
*
- * If no command with this name is found, an error command is usually
- * executed. If there are several commands with the same name, the behavior
- * is unspecified. Depending on the implementation, it may run an error
- * command or prompt the user for a choice.
+ * If no command with this name is found, an error command is usually executed.
+ * If there are several commands with the same name, the behavior is
+ * unspecified. Depending on the implementation, it may run an error command or
+ * prompt the user for a choice.
*
* @param out the output
* @param in the input
* @param command the name of the command the user wishes to execute
* @param args the arguments for the command
* @throws CommandRunException if the command failed to run */
- void executeSub(ConsoleOutput out, ConsoleInput in, String command,
- String... args) throws CommandRunException;
+ void executeSub(ConsoleOutput out, ConsoleInput in, String command, String... args)
+ throws CommandRunException;
/** Get the command with the given name.
*
- * If no command with this name is found, an error command is usually
- * returned. If there are several commands with the same name, the behavior
- * is unspecified. Depending on the implementation, it may return an error
- * command or the first command with this name found.
+ * If no command with this name is found, an error command is usually returned.
+ * If there are several commands with the same name, the behavior is
+ * unspecified. Depending on the implementation, it may return an error command
+ * or the first command with this name found.
*
* @param command the name of the command the user wishes to execute
* @return the command to execute */
diff --git a/gclc/src/main/java/net/bigeon/gclc/command/ParametrizedCommand.java b/gclc/src/main/java/net/bigeon/gclc/command/ParametrizedCommand.java
index a097a63..5ec1ce6 100644
--- a/gclc/src/main/java/net/bigeon/gclc/command/ParametrizedCommand.java
+++ b/gclc/src/main/java/net/bigeon/gclc/command/ParametrizedCommand.java
@@ -45,17 +45,17 @@ package net.bigeon.gclc.command;
* Copyright (C) 2014 - 2018 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,
+ * 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".
- *
+ * "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.
- *
+ * 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,
@@ -63,10 +63,10 @@ package net.bigeon.gclc.command;
* 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.
- *
+ * 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.
* #L%
@@ -89,9 +89,8 @@ public abstract class ParametrizedCommand extends Command {
/** Create a parametrized command.
*
- * Implementation are supposed to call the
- * {@link #addBooleanParameter(String)} and
- * {@link #addStringParameter(String, boolean)} method to set the
+ * Implementation are supposed to call the {@link #addBooleanParameter(String)}
+ * and {@link #addStringParameter(String, boolean)} method to set the
* parameters.
*
* @param name the name */
@@ -101,9 +100,8 @@ public abstract class ParametrizedCommand extends Command {
/** Create a parametrized command.
*
- * Implementation are supposed to call the
- * {@link #addBooleanParameter(String)} and
- * {@link #addStringParameter(String, boolean)} method to set the
+ * Implementation are supposed to call the {@link #addBooleanParameter(String)}
+ * and {@link #addStringParameter(String, boolean)} method to set the
* parameters.
*
* @param name the name
@@ -116,9 +114,10 @@ public abstract class ParametrizedCommand extends Command {
/** Add a boolean parameter to defined parmaters.
*
* @param flag the boolean flag
- * @throws InvalidParameterException if the parameter is already defined as
- * a string parameter */
- protected final void addBooleanParameter(final String flag) throws InvalidParameterException {
+ * @throws InvalidParameterException if the parameter is already defined as a
+ * string parameter */
+ protected final void addBooleanParameter(final String flag)
+ throws InvalidParameterException {
data.addBooleanParameter(flag);
}
@@ -126,28 +125,27 @@ public abstract class ParametrizedCommand extends Command {
*
* @param flag the parameter flag
* @param needed if the parameter's absence should cause an exception
- * @throws InvalidParameterException if the parameter is already defined as
- * a boolean parameter */
- protected final void addStringParameter(final String flag,
- final boolean needed) throws InvalidParameterException {
+ * @throws InvalidParameterException if the parameter is already defined as a
+ * boolean parameter */
+ protected final void addStringParameter(final String flag, final boolean needed)
+ throws InvalidParameterException {
data.addStringParameter(flag, needed);
}
/** Actually performs the execution after parsing the parameters.
- *
+ *
* @param out the output
* @param in the input
* @param parameters the command parameters
* @throws CommandRunException if the command failed */
protected abstract void doExecute(ConsoleOutput out, ConsoleInput in,
- CommandParameters parameters) throws CommandRunException;
+ CommandParameters parameters) throws CommandRunException;
/* (non-Javadoc)
* @see net.bigeon.gclc.command.Command#execute(java.lang.String[]) */
@Override
- public final void execute(final ConsoleOutput output,
- final ConsoleInput input,
- final String... args) throws CommandRunException {
+ public final void execute(final ConsoleOutput output, final ConsoleInput input,
+ final String... args) throws CommandRunException {
try {
doExecute(output, input, data.getParameters(input, args));
} catch (final IOException e) {
diff --git a/gclc/src/main/java/net/bigeon/gclc/command/ParametrizedCommandData.java b/gclc/src/main/java/net/bigeon/gclc/command/ParametrizedCommandData.java
index 91f4f27..ca1e574 100644
--- a/gclc/src/main/java/net/bigeon/gclc/command/ParametrizedCommandData.java
+++ b/gclc/src/main/java/net/bigeon/gclc/command/ParametrizedCommandData.java
@@ -45,17 +45,17 @@ package net.bigeon.gclc.command;
* Copyright (C) 2014 - 2018 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,
+ * 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".
- *
+ * "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.
- *
+ * 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,
@@ -63,10 +63,10 @@ package net.bigeon.gclc.command;
* 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.
- *
+ * 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.
* #L%
@@ -75,20 +75,18 @@ import java.io.IOException;
import java.text.MessageFormat;
import java.util.ArrayList;
import java.util.Collections;
-import java.util.HashMap;
import java.util.HashSet;
import java.util.List;
import java.util.Map;
import java.util.Map.Entry;
+import java.util.Set;
+import java.util.concurrent.ConcurrentHashMap;
import net.bigeon.gclc.exception.CommandParsingException;
import net.bigeon.gclc.exception.InvalidParameterException;
import net.bigeon.gclc.manager.ConsoleInput;
import net.bigeon.gclc.manager.EmptyInput;
-import java.util.Set;
-import java.util.concurrent.ConcurrentHashMap;
-
/** An object to handle standardized command parameters.
*
* @author Emmanuel BIGEON */
@@ -96,13 +94,14 @@ public final class ParametrizedCommandData {
/** The boolean parameters mandatory status. */
private final Set
* This method prompts the user to fill the needed parameters.
@@ -215,40 +250,4 @@ public final class ParametrizedCommandData {
parameters.set(string, value);
}
}
-
- /** Retrieve the boolean parameters (aka flags).
- *
- * @return the set of boolean parameters */
- public final Set
* This may be null, in which case the command should have arguments. */
- private final ICommand noArgCommand;
+ private final ICommand noArgCommand;
/** A tip on this command. */
- private final String tip;
+ private final String tip;
/** The name of the command. */
- private final String name;
+ private final String name;
/** Create the command that defines sub commands.
*
@@ -111,7 +110,7 @@ public final class SubedCommand extends CommandProvider implements ICommand {
*
* @param name the name of the command
* @param noArgCommand the command to execute when no extra parameter are
- * provided */
+ * provided */
public SubedCommand(final String name, final ICommand noArgCommand) {
super();
this.name = name;
@@ -125,7 +124,7 @@ public final class SubedCommand extends CommandProvider implements ICommand {
* @param noArgCommand the command to execute
* @param tip the help tip associated */
public SubedCommand(final String name, final ICommand noArgCommand,
- final String tip) {
+ final String tip) {
super();
this.name = name;
this.noArgCommand = noArgCommand;
@@ -147,7 +146,7 @@ public final class SubedCommand extends CommandProvider implements ICommand {
* @see fr.bigeon.acide.Command#execute(java.lang.String[]) */
@Override
public void execute(final ConsoleOutput output, final ConsoleInput input,
- final String... args) throws CommandRunException {
+ final String... args) throws CommandRunException {
if (args.length == 0 || args[0].startsWith("-")) { //$NON-NLS-1$
if (noArgCommand != null) {
noArgCommand.execute(output, input, args);
@@ -176,15 +175,15 @@ public final class SubedCommand extends CommandProvider implements ICommand {
/* (non-Javadoc)
* @see net.bigeon.gclc.command.Command#help() */
@Override
- public void help(final ConsoleOutput manager,
- final String... args) throws IOException {
+ public void help(final ConsoleOutput manager, final String... args)
+ throws IOException {
if (args.length != 0 && !args[0].startsWith("-")) { //$NON-NLS-1$
// Specific
final ICommand c = get(args[0]);
if (c != null) {
c.help(manager, Arrays.copyOfRange(args, 1, args.length));
} else {
- manager.println("No command "+Arrays.toString(args));
+ manager.println("No command " + Arrays.toString(args));
}
} else {
// Generic
@@ -196,7 +195,7 @@ public final class SubedCommand extends CommandProvider implements ICommand {
manager.println(TAB + cmd.getCommandName());
} else {
manager.println(TAB + cmd.getCommandName() + ": " + //$NON-NLS-1$
- cmd.tip());
+ cmd.tip());
}
}
}
diff --git a/gclc/src/main/java/net/bigeon/gclc/command/base/ExitCommand.java b/gclc/src/main/java/net/bigeon/gclc/command/base/ExitCommand.java
index a51f06d..b8f79a2 100644
--- a/gclc/src/main/java/net/bigeon/gclc/command/base/ExitCommand.java
+++ b/gclc/src/main/java/net/bigeon/gclc/command/base/ExitCommand.java
@@ -45,17 +45,17 @@ package net.bigeon.gclc.command.base;
* Copyright (C) 2014 - 2018 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,
+ * 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".
- *
+ * "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.
- *
+ * 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,
@@ -63,10 +63,10 @@ package net.bigeon.gclc.command.base;
* 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.
- *
+ * 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.
* #L%
@@ -84,13 +84,13 @@ import net.bigeon.gclc.prompt.CLIPrompterMessages;
* @author Emmanuel BIGEON */
public class ExitCommand implements ICommand {
/** The exit command manual message key. */
- private static final String EXIT_MAN = "exit.man"; //$NON-NLS-1$
+ private static final String EXIT_MAN = "exit.man"; //$NON-NLS-1$
/** The tip of the exit command. */
- private static final String EXIT = "exit.tip"; //$NON-NLS-1$
+ private static final String EXIT = "exit.tip"; //$NON-NLS-1$
/** The application that will be exited when this command runs. */
private final ConsoleApplication app;
/** The exit command name. */
- private final String name;
+ private final String name;
/** Create the exiting command.
*
@@ -109,8 +109,8 @@ public class ExitCommand implements ICommand {
}
@Override
- public final void execute(final ConsoleOutput output,
- final ConsoleInput input, final String... args) {
+ public final void execute(final ConsoleOutput output, final ConsoleInput input,
+ final String... args) {
beforeExit();
app.exit();
}
@@ -123,11 +123,11 @@ public class ExitCommand implements ICommand {
}
@Override
- public final void help(final ConsoleOutput manager,
- final String... args) throws IOException {
- manager.println(
- CLIPrompterMessages.getString(EXIT_MAN, (Object[]) args));
+ public final void help(final ConsoleOutput manager, final String... args)
+ throws IOException {
+ manager.println(CLIPrompterMessages.getString(EXIT_MAN, (Object[]) args));
}
+
@Override
public final String tip() {
return CLIPrompterMessages.getString(EXIT);
diff --git a/gclc/src/main/java/net/bigeon/gclc/command/base/MockCommand.java b/gclc/src/main/java/net/bigeon/gclc/command/base/MockCommand.java
index 82a0123..65baa46 100644
--- a/gclc/src/main/java/net/bigeon/gclc/command/base/MockCommand.java
+++ b/gclc/src/main/java/net/bigeon/gclc/command/base/MockCommand.java
@@ -45,17 +45,17 @@ package net.bigeon.gclc.command.base;
* Copyright (C) 2014 - 2018 Bigeon
* %%
* This software is governed by the CeCILL license under French law and
- * abiding by the rules of distribution of free software. You can use,
+ * 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".
- *
+ * "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.
- *
+ * 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,
@@ -63,10 +63,10 @@ package net.bigeon.gclc.command.base;
* 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.
- *
+ * 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.
* #L%
@@ -98,7 +98,7 @@ public final class MockCommand implements ICommand {
* String[]) */
@Override
public void execute(final ConsoleOutput out, final ConsoleInput in,
- final String... args) {
+ final String... args) {
//
}
@@ -113,8 +113,7 @@ public final class MockCommand implements ICommand {
* @see net.bigeon.gclc.command.ICommand#help(net.bigeon.gclc.manager.
* ConsoleManager, java.lang.String[]) */
@Override
- public void help(final ConsoleOutput manager,
- final String... args) {
+ public void help(final ConsoleOutput manager, final String... args) {
//
}
diff --git a/gclc/src/main/java/net/bigeon/gclc/command/base/ScriptExecution.java b/gclc/src/main/java/net/bigeon/gclc/command/base/ScriptExecution.java
index 8e1a058..8add260 100644
--- a/gclc/src/main/java/net/bigeon/gclc/command/base/ScriptExecution.java
+++ b/gclc/src/main/java/net/bigeon/gclc/command/base/ScriptExecution.java
@@ -45,17 +45,17 @@ package net.bigeon.gclc.command.base;
* Copyright (C) 2014 - 2018 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,
+ * 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".
- *
+ * "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.
- *
+ * 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,
@@ -63,16 +63,15 @@ package net.bigeon.gclc.command.base;
* 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.
- *
+ * 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.
* #L%
*/
import java.io.BufferedReader;
-import java.io.FileInputStream;
import java.io.IOException;
import java.io.InputStreamReader;
import java.nio.charset.Charset;
@@ -100,13 +99,16 @@ import net.bigeon.gclc.manager.ConsoleOutput;
public final class ScriptExecution extends Command {
/** The tab character. */
- private static final String TAB = "\t"; //$NON-NLS-1$
+ private static final String TAB = "\t"; //$NON-NLS-1$
/** the space character. */
- private static final String SPACE = " "; //$NON-NLS-1$
+ private static final String SPACE = " "; //$NON-NLS-1$
+
/** The application. */
private final ConsoleApplication application;
+
/** The commenting prefix. */
private final String commentPrefix;
+
/** The charset for files. */
private final Charset charset;
@@ -117,32 +119,18 @@ public final class ScriptExecution extends Command {
* @param commentPrefix the comment prefix in the script files
* @param charset the charset to use for files */
public ScriptExecution(final String name, final ConsoleApplication application,
- final String commentPrefix, final Charset charset) {
+ final String commentPrefix, final Charset charset) {
super(name);
this.application = application;
this.commentPrefix = commentPrefix;
this.charset = charset;
}
- /** Check the arguments.
- *
- * @param args the arguments
- * @throws CommandRunException if the arguments were not the ones
- * expected */
- private static void checkArgs(final String[] args) throws CommandRunException {
- if (args.length == 0) {
- throw new CommandRunException(CommandRunExceptionType.USAGE,
- "Expecting a file"); //$NON-NLS-1$
- }
- }
-
-
-
/* (non-Javadoc)
* @see net.bigeon.gclc.command.ICommand#execute(java.lang.String[]) */
@Override
public void execute(final ConsoleOutput out, final ConsoleInput in,
- final String... args) throws CommandRunException {
+ final String... args) throws CommandRunException {
checkArgs(args);
final String scriptFile = args[0];
final String[] params = Arrays.copyOfRange(args, 1, args.length);
@@ -150,7 +138,7 @@ public final class ScriptExecution extends Command {
int lineNo = -1;
try (InputStreamReader fReader = new InputStreamReader(
Files.newInputStream(Paths.get(scriptFile)), charset);
- BufferedReader reader = new BufferedReader(fReader)) {
+ BufferedReader reader = new BufferedReader(fReader)) {
while ((cmd = reader.readLine()) != null) {
lineNo++;
final String cmdLine = readCommandLine(cmd, params);
@@ -159,12 +147,12 @@ public final class ScriptExecution extends Command {
}
final List
- * Short timeout will be very responsive to the application actual messages,
- * but may use computation time if the application is not verbose. Long
- * timeout will save computation time, but will read batches of messages at
- * once if the application is verbose. The right length for the timeout is
- * likely to depend on the application and the use of it.
+ * Short timeout will be very responsive to the application actual messages, but
+ * may use computation time if the application is not verbose. Long timeout will
+ * save computation time, but will read batches of messages at once if the
+ * application is verbose. The right length for the timeout is likely to depend
+ * on the application and the use of it.
*
* If you do not know what timeout length to use, please use the
* {@link #AOutputForwardRunnable(PipedConsoleOutput)} constructor.
*
* @param manager the manager
* @param timeout the timeout between message requests. */
- public AOutputForwardRunnable(final PipedConsoleOutput manager,
- final long timeout) {
+ public AOutputForwardRunnable(final PipedConsoleOutput manager, final long timeout) {
super();
this.manager = manager;
this.timeout = timeout;
diff --git a/gclc/src/main/java/net/bigeon/gclc/utils/PipedConsoleInput.java b/gclc/src/main/java/net/bigeon/gclc/utils/PipedConsoleInput.java
index 00a7a19..e9f4dc3 100644
--- a/gclc/src/main/java/net/bigeon/gclc/utils/PipedConsoleInput.java
+++ b/gclc/src/main/java/net/bigeon/gclc/utils/PipedConsoleInput.java
@@ -45,17 +45,17 @@ package net.bigeon.gclc.utils;
* Copyright (C) 2014 - 2018 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,
+ * 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".
- *
+ * "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.
- *
+ * 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,
@@ -63,10 +63,10 @@ package net.bigeon.gclc.utils;
* 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.
- *
+ * 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.
* #L%
@@ -87,17 +87,16 @@ import net.bigeon.gclc.tools.StringProvider;
* used to test application behavior.
*
* @author Emmanuel Bigeon */
-public final class PipedConsoleInput
- implements ConsoleInput {
+public final class PipedConsoleInput implements ConsoleInput {
/** THe inner manager. */
private final StreamConsoleInput innerManager;
/** The stream to pipe commands into. */
- private final PipedOutputStream commandInput;
+ private final PipedOutputStream commandInput;
/** The stream for the application to read commands from. */
- private final PipedInputStream in;
+ private final PipedInputStream in;
/** The writing thread. */
- private final WritingRunnable writing;
+ private final WritingRunnable writing;
/** Create a manager that will write and read through piped stream.
*
@@ -106,11 +105,9 @@ public final class PipedConsoleInput
public PipedConsoleInput(final PrintStream outPrint) throws IOException {
commandInput = new PipedOutputStream();
in = new PipedInputStream(commandInput);
- innerManager = new StreamConsoleInput(outPrint, in,
- StandardCharsets.UTF_8);
+ innerManager = new StreamConsoleInput(outPrint, in, StandardCharsets.UTF_8);
writing = new WritingRunnable(commandInput, StandardCharsets.UTF_8);
- final Thread th = new Thread(writing,
- "GCLC console piped input stream"); //$NON-NLS-1$
+ final Thread th = new Thread(writing, "GCLC console piped input stream"); //$NON-NLS-1$
th.start();
}
@@ -145,8 +142,7 @@ public final class PipedConsoleInput
* @see net.bigeon.gclc.manager.ConsoleInput#prompt() */
@Override
public String prompt() throws IOException {
- return innerManager
- .prompt(innerManager.getPrompt() + System.lineSeparator());
+ return innerManager.prompt(innerManager.getPrompt() + System.lineSeparator());
}
/* (non-Javadoc)
@@ -164,8 +160,7 @@ public final class PipedConsoleInput
}
/* (non-Javadoc)
- * @see net.bigeon.gclc.manager.ConsoleInput#prompt(java.lang.String,
- * long) */
+ * @see net.bigeon.gclc.manager.ConsoleInput#prompt(java.lang.String, long) */
@Override
public String prompt(final String message, final long timeout) throws IOException {
return innerManager.prompt(message + System.lineSeparator(), timeout);
@@ -177,10 +172,10 @@ public final class PipedConsoleInput
public void setPrompt(final String prompt) {
innerManager.setPrompt(prompt);
}
-
+
@Override
public void setPrompt(StringProvider string) {
- innerManager.setPrompt(string);
+ innerManager.setPrompt(string);
}
/** Type a message in the input.
diff --git a/gclc/src/main/java/net/bigeon/gclc/utils/PipedConsoleOutput.java b/gclc/src/main/java/net/bigeon/gclc/utils/PipedConsoleOutput.java
index 531bf36..4602509 100644
--- a/gclc/src/main/java/net/bigeon/gclc/utils/PipedConsoleOutput.java
+++ b/gclc/src/main/java/net/bigeon/gclc/utils/PipedConsoleOutput.java
@@ -45,17 +45,17 @@ package net.bigeon.gclc.utils;
* Copyright (C) 2014 - 2018 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,
+ * 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".
- *
+ * "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.
- *
+ * 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,
@@ -63,10 +63,10 @@ package net.bigeon.gclc.utils;
* 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.
- *
+ * 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.
* #L%
@@ -87,21 +87,20 @@ import net.bigeon.gclc.manager.ConsoleOutput;
* used to test application behavior.
*
* @author Emmanuel Bigeon */
-public final class PipedConsoleOutput
- implements ConsoleOutput {
+public final class PipedConsoleOutput implements ConsoleOutput {
/** The encoding between streams. */
- private static final String UTF_8 = "UTF-8"; //$NON-NLS-1$
+ private static final String UTF_8 = "UTF-8"; //$NON-NLS-1$
/** THe inner manager. */
private final StreamConsoleOutput innerManager;
/** The reader to get application return from. */
- private final BufferedReader commandBuffOutput;
+ private final BufferedReader commandBuffOutput;
/** The stream to get application return from. */
- private final PipedInputStream commandOutput;
+ private final PipedInputStream commandOutput;
/** The print writer for application to write return to. */
- private final PrintStream outPrint;
+ private final PrintStream outPrint;
/** The reading thread. */
- private final ReadingRunnable reading;
+ private final ReadingRunnable reading;
/** Create a manager that will write and read through piped stream.
*
@@ -140,8 +139,8 @@ public final class PipedConsoleOutput
/** Wait for a specific message to arrive.
*
- * When this method returns, the message was appended to the data, it
- * may or may not be the next line of data.
+ * When this method returns, the message was appended to the data, it may or
+ * may not be the next line of data.
*
* @param message the message
* @return the thread to join to wait for message delivery
diff --git a/gclc/src/main/java/net/bigeon/gclc/utils/ReadingRunnable.java b/gclc/src/main/java/net/bigeon/gclc/utils/ReadingRunnable.java
index 2bef78d..c49acbf 100644
--- a/gclc/src/main/java/net/bigeon/gclc/utils/ReadingRunnable.java
+++ b/gclc/src/main/java/net/bigeon/gclc/utils/ReadingRunnable.java
@@ -45,17 +45,17 @@ package net.bigeon.gclc.utils;
* Copyright (C) 2014 - 2018 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,
+ * 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".
- *
+ * "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.
- *
+ * 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,
@@ -63,10 +63,10 @@ package net.bigeon.gclc.utils;
* 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.
- *
+ * 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.
* #L%
@@ -76,7 +76,6 @@ import java.io.IOException;
import java.io.InterruptedIOException;
import java.util.ArrayDeque;
import java.util.Deque;
-import java.util.HashMap;
import java.util.Map;
import java.util.concurrent.ConcurrentHashMap;
import java.util.logging.Level;
@@ -98,7 +97,7 @@ public final class ReadingRunnable implements Runnable {
/** The message. */
private final String message;
/** The started status. */
- private boolean started = false;
+ private boolean started = false;
/** Create the waiting runnable.
*
@@ -106,7 +105,7 @@ public final class ReadingRunnable implements Runnable {
* @param start the object to notify when ready to wait
* @param message the message to wait for */
public ToWaitRunnable(final Object obj, final Object start,
- final String message) {
+ final String message) {
this.obj = obj;
this.start = start;
this.message = message;
@@ -137,8 +136,7 @@ public final class ReadingRunnable implements Runnable {
return;
}
} catch (final InterruptedException e) {
- LOGGER.log(Level.SEVERE, THREAD_INTERRUPTION_EXCEPTION,
- e);
+ LOGGER.log(Level.SEVERE, THREAD_INTERRUPTION_EXCEPTION, e);
Thread.currentThread().interrupt();
}
}
@@ -149,26 +147,28 @@ public final class ReadingRunnable implements Runnable {
/** The thread intteruption logging message. */
private static final String THREAD_INTERRUPTION_EXCEPTION = "Thread interruption exception."; //$NON-NLS-1$
/** The closed pipe message. */
- private static final String CLOSED_PIPE = "Closed pipe"; //$NON-NLS-1$
+ private static final String CLOSED_PIPE = "Closed pipe"; //$NON-NLS-1$
/** Wait timeout. */
- private static final long TIMEOUT = 1000;
+ private static final long TIMEOUT = 1000;
/** Class logger. */
- private static final Logger LOGGER = Logger
+ private static final Logger LOGGER = Logger
.getLogger(ReadingRunnable.class.getName());
+
/** Read messages. */
- private final Deque This method should only be called inside a loop.
+ *
+ * This method should only be called inside a loop.
+ *
* @param timeout the timeout of the wait.
- * @throws IOException if the runnable was stopped and no essage was found.
- */
+ * @throws IOException if the runnable was stopped and no essage was found. */
private void doWaitMessage(final long timeout) throws IOException {
try {
synchronized (lock) {
@@ -262,8 +249,7 @@ public final class ReadingRunnable implements Runnable {
}
final Object obj = messageBlocker.get(message);
final Object start = new Object();
- final ToWaitRunnable waitRunn = new ToWaitRunnable(obj, start,
- message);
+ final ToWaitRunnable waitRunn = new ToWaitRunnable(obj, start, message);
final Thread th = new Thread(waitRunn);
// Wait for the thread to actually start before unlocking the message queue.
@@ -273,8 +259,7 @@ public final class ReadingRunnable implements Runnable {
try {
start.wait(TIMEOUT);
} catch (final InterruptedException e) {
- LOGGER.log(Level.SEVERE, THREAD_INTERRUPTION_EXCEPTION,
- e);
+ LOGGER.log(Level.SEVERE, THREAD_INTERRUPTION_EXCEPTION, e);
Thread.currentThread().interrupt();
}
}
@@ -296,8 +281,7 @@ public final class ReadingRunnable implements Runnable {
}
}
- /** Interrupts the wait on the next message by providing an empty
- * message. */
+ /** Interrupts the wait on the next message by providing an empty message. */
public void interrupt() {
synchronized (lock) {
if (waiting) {
@@ -354,8 +338,8 @@ public final class ReadingRunnable implements Runnable {
if (running) {
LOGGER.info("Reading interrupted"); //$NON-NLS-1$
}
- LOGGER.log(Level.FINER,
- "Read interruption was caused by an exception", e); //$NON-NLS-1$
+ LOGGER.log(Level.FINER, "Read interruption was caused by an exception", //$NON-NLS-1$
+ e);
} catch (final IOException e) {
LOGGER.log(Level.FINE, "The stream reading threw an exception", //$NON-NLS-1$
e);
@@ -380,11 +364,25 @@ public final class ReadingRunnable implements Runnable {
/** Wait for the next message to be integratted.
*
* @param timeout the timeout to wait
- * @throws IOException if the next message was not delivered and the
- * runnable stopped. */
+ * @throws IOException if the next message was not delivered and the runnable
+ * stopped. */
private void waitMessage(final long timeout) throws IOException {
while (messages.isEmpty()) {
doWaitMessage(timeout);
}
}
+
+ /** Strip the string from head NULL characters.
+ *
+ * @param line the line to strip the null character from
+ * @return the resulting string */
+ private static String stripNull(final String line) {
+ String res = line;
+ while (res.length() > 0 && res.charAt(0) == 0) {
+ LOGGER.severe(
+ "NULL character heading the result of the read. This is a stream problem..."); //$NON-NLS-1$
+ res = res.substring(1);
+ }
+ return res;
+ }
}
diff --git a/gclc/src/main/java/net/bigeon/gclc/utils/SinkOutput.java b/gclc/src/main/java/net/bigeon/gclc/utils/SinkOutput.java
index d9bc0e7..a739950 100644
--- a/gclc/src/main/java/net/bigeon/gclc/utils/SinkOutput.java
+++ b/gclc/src/main/java/net/bigeon/gclc/utils/SinkOutput.java
@@ -47,17 +47,17 @@ import net.bigeon.gclc.manager.ConsoleOutput;
* Copyright (C) 2014 - 2018 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,
+ * 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".
- *
+ * "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.
- *
+ * 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,
@@ -65,10 +65,10 @@ import net.bigeon.gclc.manager.ConsoleOutput;
* 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.
- *
+ * 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.
* #L%
@@ -85,6 +85,7 @@ public final class SinkOutput implements ConsoleOutput {
private SinkOutput() {
//
}
+
/* (non-Javadoc)
* @see net.bigeon.gclc.manager.ConsoleOutput#close() */
@Override
@@ -114,8 +115,7 @@ public final class SinkOutput implements ConsoleOutput {
}
/* (non-Javadoc)
- * @see net.bigeon.gclc.manager.ConsoleOutput#println(java.lang.String)
- */
+ * @see net.bigeon.gclc.manager.ConsoleOutput#println(java.lang.String) */
@Override
public void println(final String message) {
//
diff --git a/gclc/src/main/java/net/bigeon/gclc/utils/StreamConsoleInput.java b/gclc/src/main/java/net/bigeon/gclc/utils/StreamConsoleInput.java
index fe319c9..92b6e8e 100644
--- a/gclc/src/main/java/net/bigeon/gclc/utils/StreamConsoleInput.java
+++ b/gclc/src/main/java/net/bigeon/gclc/utils/StreamConsoleInput.java
@@ -45,17 +45,17 @@ package net.bigeon.gclc.utils;
* Copyright (C) 2014 - 2018 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,
+ * 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".
- *
+ * "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.
- *
+ * 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,
@@ -63,10 +63,10 @@ package net.bigeon.gclc.utils;
* 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.
- *
+ * 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.
* #L%
@@ -96,7 +96,7 @@ public final class StreamConsoleInput implements ConsoleInput {
private StringProvider prompt = DEFAULT_PROMPT;
/** The print stream. */
- private final PrintStream out;
+ private final PrintStream out;
/** The input stream. */
private final BufferedReader in;
@@ -109,8 +109,8 @@ public final class StreamConsoleInput implements ConsoleInput {
/** The reading runnable. */
private final ReadingRunnable reading;
- /** This default constructor relies on the system defined standart output
- * and input stream. */
+ /** This default constructor relies on the system defined standart output and
+ * input stream. */
public StreamConsoleInput() {
this(System.out, System.in, Charset.defaultCharset());
}
@@ -121,7 +121,7 @@ public final class StreamConsoleInput implements ConsoleInput {
* @param in the input stream
* @param charset the charset for the input */
public StreamConsoleInput(final PrintStream out, final InputStream in,
- final Charset charset) {
+ final Charset charset) {
super();
this.out = out;
this.in = new BufferedReader(new InputStreamReader(in, charset));
@@ -200,8 +200,7 @@ public final class StreamConsoleInput implements ConsoleInput {
/* (non-Javadoc)
* @see net.bigeon.gclc.ConsoleManager#prompt(java.lang.String) */
@Override
- public String prompt(final String message,
- final long timeout) throws IOException {
+ public String prompt(final String message, final long timeout) throws IOException {
checkOpen();
if (out != null) {
out.print(message);
@@ -219,6 +218,6 @@ public final class StreamConsoleInput implements ConsoleInput {
@Override
public void setPrompt(StringProvider string) {
- this.prompt = string;
+ prompt = string;
}
}
diff --git a/gclc/src/main/java/net/bigeon/gclc/utils/StreamConsoleOutput.java b/gclc/src/main/java/net/bigeon/gclc/utils/StreamConsoleOutput.java
index a77a600..6da1422 100644
--- a/gclc/src/main/java/net/bigeon/gclc/utils/StreamConsoleOutput.java
+++ b/gclc/src/main/java/net/bigeon/gclc/utils/StreamConsoleOutput.java
@@ -45,17 +45,17 @@ package net.bigeon.gclc.utils;
* Copyright (C) 2014 - 2018 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,
+ * 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".
- *
+ * "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.
- *
+ * 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,
@@ -63,10 +63,10 @@ package net.bigeon.gclc.utils;
* 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.
- *
+ * 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.
* #L%
@@ -85,10 +85,10 @@ public final class StreamConsoleOutput implements ConsoleOutput {
/** The print stream. */
private final PrintStream out;
/** If the manager is closed. */
- private boolean closed = false;
+ private boolean closed = false;
- /** This default constructor relies on the system defined standart output
- * and input stream. */
+ /** This default constructor relies on the system defined standart output and
+ * input stream. */
public StreamConsoleOutput() {
this(System.out);
}
diff --git a/gclc/src/main/java/net/bigeon/gclc/utils/WritingRunnable.java b/gclc/src/main/java/net/bigeon/gclc/utils/WritingRunnable.java
index 25256e8..b0fee75 100644
--- a/gclc/src/main/java/net/bigeon/gclc/utils/WritingRunnable.java
+++ b/gclc/src/main/java/net/bigeon/gclc/utils/WritingRunnable.java
@@ -45,17 +45,17 @@ package net.bigeon.gclc.utils;
* Copyright (C) 2014 - 2018 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,
+ * 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".
- *
+ * "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.
- *
+ * 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,
@@ -63,10 +63,10 @@ package net.bigeon.gclc.utils;
* 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.
- *
+ * 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.
* #L%
diff --git a/gclc/src/main/java/net/bigeon/gclc/utils/package-info.java b/gclc/src/main/java/net/bigeon/gclc/utils/package-info.java
index 2e6d899..bef3e62 100644
--- a/gclc/src/main/java/net/bigeon/gclc/utils/package-info.java
+++ b/gclc/src/main/java/net/bigeon/gclc/utils/package-info.java
@@ -1,7 +1,4 @@
-/**
- * @author Emmanuel Bigeon
- *
- */
+/** @author Emmanuel Bigeon */
package net.bigeon.gclc.utils;
/*-
@@ -11,17 +8,17 @@ package net.bigeon.gclc.utils;
* Copyright (C) 2014 - 2018 Bigeon
* %%
* This software is governed by the CeCILL license under French law and
- * abiding by the rules of distribution of free software. You can use,
+ * 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".
- *
+ * "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.
- *
+ * 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,
@@ -29,10 +26,10 @@ package net.bigeon.gclc.utils;
* 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.
- *
+ * 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.
* #L%
diff --git a/gclc/src/test/java/net/bigeon/gclc/CommandTestingApplication.java b/gclc/src/test/java/net/bigeon/gclc/CommandTestingApplication.java
index 2eb1ad8..0abbcda 100644
--- a/gclc/src/test/java/net/bigeon/gclc/CommandTestingApplication.java
+++ b/gclc/src/test/java/net/bigeon/gclc/CommandTestingApplication.java
@@ -45,17 +45,17 @@ package net.bigeon.gclc;
* Copyright (C) 2014 - 2018 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,
+ * 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".
- *
+ * "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.
- *
+ * 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,
@@ -63,17 +63,16 @@ package net.bigeon.gclc;
* 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.
- *
+ * 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.
* #L%
*/
import java.io.IOException;
-import net.bigeon.gclc.ConsoleApplication;
import net.bigeon.gclc.command.ICommand;
import net.bigeon.gclc.exception.InvalidCommandName;
import net.bigeon.gclc.utils.PipedConsoleInput;
@@ -83,16 +82,14 @@ import net.bigeon.gclc.utils.PipedConsoleOutput;
*
* TODO
*
- * @author Emmanuel Bigeon
- *
- */
+ * @author Emmanuel Bigeon */
@SuppressWarnings("javadoc")
public class CommandTestingApplication implements AutoCloseable {
private final ConsoleApplication application;
- private final Thread th;
+ private final Thread th;
private final PipedConsoleOutput out;
- private final PipedConsoleInput in;
+ private final PipedConsoleInput in;
/** @throws IOException if the streams cannot be build */
public CommandTestingApplication() throws IOException {
diff --git a/gclc/src/test/java/net/bigeon/gclc/ConsoleApplicationTest.java b/gclc/src/test/java/net/bigeon/gclc/ConsoleApplicationTest.java
index b08971e..b952e71 100644
--- a/gclc/src/test/java/net/bigeon/gclc/ConsoleApplicationTest.java
+++ b/gclc/src/test/java/net/bigeon/gclc/ConsoleApplicationTest.java
@@ -45,17 +45,17 @@ package net.bigeon.gclc;
* Copyright (C) 2014 - 2018 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,
+ * 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".
- *
+ * "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.
- *
+ * 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,
@@ -63,10 +63,10 @@ package net.bigeon.gclc;
* 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.
- *
+ * 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.
* #L%
@@ -87,8 +87,6 @@ import java.nio.charset.StandardCharsets;
import org.junit.Test;
-import net.bigeon.gclc.CommandRequestListener;
-import net.bigeon.gclc.ConsoleApplication;
import net.bigeon.gclc.command.ICommand;
import net.bigeon.gclc.command.base.ExitCommand;
import net.bigeon.gclc.exception.CommandRunException;
@@ -103,7 +101,7 @@ import net.bigeon.gclc.utils.PipedConsoleOutput;
/** Test class for ConsoleApplication
*
* @author Emmanuel Bigeon */
-@SuppressWarnings({"javadoc", "nls", "static-method"})
+@SuppressWarnings({ "javadoc", "nls", "static-method" })
public class ConsoleApplicationTest {
/** 3 seconds in milliseconds */
@@ -114,13 +112,11 @@ public class ConsoleApplicationTest {
public void testConsoleApplication() {
try (PipedOutputStream pout = new PipedOutputStream();
- PipedInputStream pis = new PipedInputStream(pout);
- BufferedReader buf = new BufferedReader(
- new InputStreamReader(pis, StandardCharsets.UTF_8));
- PipedConsoleInput in = new PipedConsoleInput(
- new PrintStream(pout))) {
- final ConsoleApplication app = new ConsoleApplication(null, in,
- "", "");
+ PipedInputStream pis = new PipedInputStream(pout);
+ BufferedReader buf = new BufferedReader(
+ new InputStreamReader(pis, StandardCharsets.UTF_8));
+ PipedConsoleInput in = new PipedConsoleInput(new PrintStream(pout))) {
+ final ConsoleApplication app = new ConsoleApplication(null, in, "", "");
app.exit();
} catch (final IOException e) {
fail("System Console Manager failed");
@@ -129,14 +125,13 @@ public class ConsoleApplicationTest {
}
@Test
- public void testExecution() throws IOException, InterruptedException,
- InvalidCommandName {
+ public void testExecution()
+ throws IOException, InterruptedException, InvalidCommandName {
try (CommandTestingApplication application = new CommandTestingApplication()) {
// remove welcome
assertEquals("Header should be preserved",
- application.getApplication().header,
- application.readNextLine());
+ application.getApplication().header, application.readNextLine());
// Remove first prompt
application.sendCommand("");
application.sendCommand("test");
@@ -146,15 +141,13 @@ public class ConsoleApplicationTest {
assertEquals("Command fail should dispaly appropriate message",
Messages.getString("ConsoleApplication.cmd.failed", "toto"),
application.readNextLine());
- assertEquals(
- "Unrecognized comment should result in a specific message.",
+ assertEquals("Unrecognized comment should result in a specific message.",
Messages.getString("CommandProvider.unrecognized", "toto"),
application.readNextLine());
application.sendCommand("long");
assertEquals("Before wait should receive message", "Waita minute",
application.readNextLine());
- assertEquals("Unexpected message", "done!",
- application.readNextLine());
+ assertEquals("Unexpected message", "done!", application.readNextLine());
final CommandRequestListener crl = new CommandRequestListener() {
@@ -184,22 +177,20 @@ public class ConsoleApplicationTest {
application.sendCommand("exit");
assertEquals("Footer should be preserved",
- application.getApplication().footer,
- application.readNextLine());
+ application.getApplication().footer, application.readNextLine());
assertFalse("Stopped application should not be running",
application.getApplication().isRunning());
}
ConsoleApplication appli = null;
try (PipedConsoleOutput manager = new PipedConsoleOutput();
- PipedOutputStream pout = new PipedOutputStream();
- PipedInputStream pis = new PipedInputStream(pout);
- BufferedReader buf = new BufferedReader(
- new InputStreamReader(pis, StandardCharsets.UTF_8));
- PipedConsoleInput in = new PipedConsoleInput(
- new PrintStream(pout))) {
- final ConsoleApplication app = new ConsoleApplication(manager, in,
- null, null);
+ PipedOutputStream pout = new PipedOutputStream();
+ PipedInputStream pis = new PipedInputStream(pout);
+ BufferedReader buf = new BufferedReader(
+ new InputStreamReader(pis, StandardCharsets.UTF_8));
+ PipedConsoleInput in = new PipedConsoleInput(new PrintStream(pout))) {
+ final ConsoleApplication app = new ConsoleApplication(manager, in, null,
+ null);
appli = app;
app.add(new ExitCommand("exit", app));
@@ -219,17 +210,15 @@ public class ConsoleApplicationTest {
"Application should still exist even if the console input and output are closed.",
appli);
appli.start();
- assertFalse(
- "Application should not start on closed console input and output",
+ assertFalse("Application should not start on closed console input and output",
appli.isRunning());
}
@Test
public void testInterpretCommand() throws InvalidCommandName, IOException {
try (PipedConsoleInput test = new PipedConsoleInput(null);
- PipedConsoleOutput out = new PipedConsoleOutput()) {
- final ConsoleApplication appl = new ConsoleApplication(out, test,
- "", "");
+ PipedConsoleOutput out = new PipedConsoleOutput()) {
+ final ConsoleApplication appl = new ConsoleApplication(out, test, "", "");
appl.interpretCommand("invalid cmd \"due to misplaced\"quote");
assertEquals("Specific error message expected",
@@ -245,11 +234,9 @@ public class ConsoleApplicationTest {
* manager.ConsoleOutput, net.bigeon.gclc.manager.ConsoleInput,
* java.lang.String[]) */
@Override
- public void execute(final ConsoleOutput out,
- final ConsoleInput in,
- final String... args) throws CommandRunException {
- throw new CommandRunException(CommandRunExceptionType.USAGE,
- message);
+ public void execute(final ConsoleOutput out, final ConsoleInput in,
+ final String... args) throws CommandRunException {
+ throw new CommandRunException(CommandRunExceptionType.USAGE, message);
}
@Override
@@ -258,8 +245,8 @@ public class ConsoleApplicationTest {
}
@Override
- public void help(final ConsoleOutput manager,
- final String... args) throws IOException {
+ public void help(final ConsoleOutput manager, final String... args)
+ throws IOException {
manager.println(message);
}
diff --git a/gclc/src/test/java/net/bigeon/gclc/ConsoleTestApplication.java b/gclc/src/test/java/net/bigeon/gclc/ConsoleTestApplication.java
index 748e96c..d947a70 100644
--- a/gclc/src/test/java/net/bigeon/gclc/ConsoleTestApplication.java
+++ b/gclc/src/test/java/net/bigeon/gclc/ConsoleTestApplication.java
@@ -41,17 +41,17 @@ package net.bigeon.gclc;
* Copyright (C) 2014 - 2018 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,
+ * 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".
- *
+ * "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.
- *
+ * 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,
@@ -59,18 +59,16 @@ package net.bigeon.gclc;
* 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.
- *
+ * 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.
* #L%
*/
import java.io.IOException;
-import net.bigeon.gclc.ApplicationAttachement;
-import net.bigeon.gclc.ConsoleApplication;
import net.bigeon.gclc.command.Command;
import net.bigeon.gclc.command.HelpExecutor;
import net.bigeon.gclc.command.ICommandProvider;
diff --git a/gclc/src/test/java/net/bigeon/gclc/GCLCConstantsTest.java b/gclc/src/test/java/net/bigeon/gclc/GCLCConstantsTest.java
index 7a7f502..fab2288 100644
--- a/gclc/src/test/java/net/bigeon/gclc/GCLCConstantsTest.java
+++ b/gclc/src/test/java/net/bigeon/gclc/GCLCConstantsTest.java
@@ -45,17 +45,17 @@ package net.bigeon.gclc;
* Copyright (C) 2014 - 2018 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,
+ * 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".
- *
+ * "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.
- *
+ * 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,
@@ -63,10 +63,10 @@ package net.bigeon.gclc;
* 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.
- *
+ * 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.
* #L%
@@ -79,13 +79,12 @@ import java.util.List;
import org.junit.Test;
-import net.bigeon.gclc.GCLCConstants;
import net.bigeon.gclc.exception.CommandParsingException;
/** Test class for {@link GCLCConstants}
*
* @author Emmanuel Bigeon */
-@SuppressWarnings({"nls", "static-method"})
+@SuppressWarnings({ "nls", "static-method" })
public class GCLCConstantsTest {
/** Test method for
@@ -96,63 +95,47 @@ public class GCLCConstantsTest {
public void testSplitCommand() throws CommandParsingException {
List
+/**
+ *
* TODO
*
* @author Emmanuel Bigeon */
@@ -98,9 +98,8 @@ public class CommandTest {
cmd = new Command("name") {
@Override
- public void execute(final ConsoleOutput out,
- final ConsoleInput in,
- final String... args) throws CommandRunException {
+ public void execute(final ConsoleOutput out, final ConsoleInput in,
+ final String... args) throws CommandRunException {
//
}
@@ -134,9 +133,8 @@ public class CommandTest {
cmd = new Command("name") {
@Override
- public void execute(final ConsoleOutput out,
- final ConsoleInput in,
- final String... args) throws CommandRunException {
+ public void execute(final ConsoleOutput out, final ConsoleInput in,
+ final String... args) throws CommandRunException {
//
}
@@ -176,9 +174,8 @@ public class CommandTest {
}
@Override
- public void execute(final ConsoleOutput out,
- final ConsoleInput in,
- final String... args) throws CommandRunException {
+ public void execute(final ConsoleOutput out, final ConsoleInput in,
+ final String... args) throws CommandRunException {
//
}
@@ -218,9 +215,8 @@ public class CommandTest {
}
@Override
- public void execute(final ConsoleOutput out,
- final ConsoleInput in,
- final String... args) throws CommandRunException {
+ public void execute(final ConsoleOutput out, final ConsoleInput in,
+ final String... args) throws CommandRunException {
//
}
@@ -253,9 +249,8 @@ public class CommandTest {
cmd = new Command("name") {
@Override
- public void execute(final ConsoleOutput out,
- final ConsoleInput in,
- final String... args) throws CommandRunException {
+ public void execute(final ConsoleOutput out, final ConsoleInput in,
+ final String... args) throws CommandRunException {
//
}
@@ -290,9 +285,8 @@ public class CommandTest {
cmd = new Command("name") {
@Override
- public void execute(final ConsoleOutput out,
- final ConsoleInput in,
- final String... args) throws CommandRunException {
+ public void execute(final ConsoleOutput out, final ConsoleInput in,
+ final String... args) throws CommandRunException {
//
}
@@ -330,9 +324,8 @@ public class CommandTest {
cmd = new Command("name") {
@Override
- public void execute(final ConsoleOutput out,
- final ConsoleInput in,
- final String... args) throws CommandRunException {
+ public void execute(final ConsoleOutput out, final ConsoleInput in,
+ final String... args) throws CommandRunException {
//
}
@@ -369,9 +362,8 @@ public class CommandTest {
cmd = new Command("name") {
@Override
- public void execute(final ConsoleOutput out,
- final ConsoleInput in,
- final String... args) throws CommandRunException {
+ public void execute(final ConsoleOutput out, final ConsoleInput in,
+ final String... args) throws CommandRunException {
//
}
diff --git a/gclc/src/test/java/net/bigeon/gclc/command/HelpExecutorTest.java b/gclc/src/test/java/net/bigeon/gclc/command/HelpExecutorTest.java
index bc6bb72..f5a3237 100644
--- a/gclc/src/test/java/net/bigeon/gclc/command/HelpExecutorTest.java
+++ b/gclc/src/test/java/net/bigeon/gclc/command/HelpExecutorTest.java
@@ -45,17 +45,17 @@ package net.bigeon.gclc.command;
* Copyright (C) 2014 - 2018 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,
+ * 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".
- *
+ * "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.
- *
+ * 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,
@@ -63,10 +63,10 @@ package net.bigeon.gclc.command;
* 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.
- *
+ * 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.
* #L%
@@ -78,9 +78,6 @@ import java.io.IOException;
import org.junit.Test;
-import net.bigeon.gclc.command.Command;
-import net.bigeon.gclc.command.HelpExecutor;
-import net.bigeon.gclc.command.SubedCommand;
import net.bigeon.gclc.command.base.MockCommand;
import net.bigeon.gclc.exception.CommandRunException;
import net.bigeon.gclc.manager.ConsoleInput;
@@ -106,7 +103,7 @@ public class HelpExecutorTest {
@Override
public void execute(final ConsoleOutput out, final ConsoleInput in,
- final String... args) throws CommandRunException {
+ final String... args) throws CommandRunException {
//
}
@@ -139,8 +136,7 @@ public class HelpExecutorTest {
@Test
public final void testTip() throws IOException {
try (PipedConsoleOutput test = new PipedConsoleOutput()) {
- final HelpExecutor help = new HelpExecutor("?",
- new MockCommand("mock"));
+ final HelpExecutor help = new HelpExecutor("?", new MockCommand("mock"));
assertNotNull("Tip should be provided", help.tip());
help.help(test);
}
diff --git a/gclc/src/test/java/net/bigeon/gclc/command/ParametrizedCommandTest.java b/gclc/src/test/java/net/bigeon/gclc/command/ParametrizedCommandTest.java
index 4b8c1f7..830877f 100644
--- a/gclc/src/test/java/net/bigeon/gclc/command/ParametrizedCommandTest.java
+++ b/gclc/src/test/java/net/bigeon/gclc/command/ParametrizedCommandTest.java
@@ -45,17 +45,17 @@ package net.bigeon.gclc.command;
* Copyright (C) 2014 - 2018 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,
+ * 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".
- *
+ * "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.
- *
+ * 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,
@@ -63,10 +63,10 @@ package net.bigeon.gclc.command;
* 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.
- *
+ * 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.
* #L%
@@ -87,8 +87,6 @@ import java.nio.charset.StandardCharsets;
import org.junit.Test;
-import net.bigeon.gclc.command.CommandParameters;
-import net.bigeon.gclc.command.ParametrizedCommand;
import net.bigeon.gclc.exception.CommandRunException;
import net.bigeon.gclc.exception.InvalidParameterException;
import net.bigeon.gclc.manager.ConsoleInput;
@@ -112,9 +110,8 @@ public class ParametrizedCommandTest {
ParametrizedCommand cmd = new ParametrizedCommand("name") {
@Override
- protected void doExecute(final ConsoleOutput out,
- final ConsoleInput in,
- final CommandParameters parameters) {
+ protected void doExecute(final ConsoleOutput out, final ConsoleInput in,
+ final CommandParameters parameters) {
//
}
@@ -131,9 +128,8 @@ public class ParametrizedCommandTest {
cmd = new ParametrizedCommand("name", true) {
@Override
- protected void doExecute(final ConsoleOutput out,
- final ConsoleInput in,
- final CommandParameters parameters) {
+ protected void doExecute(final ConsoleOutput out, final ConsoleInput in,
+ final CommandParameters parameters) {
//
}
@@ -179,8 +175,8 @@ public class ParametrizedCommandTest {
* @throws InterruptedException if the test failed
* @throws IOException if the test failed */
@Test
- public final void testExecute() throws CommandRunException,
- InterruptedException, IOException {
+ public final void testExecute()
+ throws CommandRunException, InterruptedException, IOException {
final String addParam = "additional";
final String str1 = "str1";
final String str2 = "str2";
@@ -192,9 +188,8 @@ public class ParametrizedCommandTest {
private boolean evenCall = true;
@Override
- protected void doExecute(final ConsoleOutput out,
- final ConsoleInput in,
- final CommandParameters parameters) {
+ protected void doExecute(final ConsoleOutput out, final ConsoleInput in,
+ final CommandParameters parameters) {
assertTrue(parameters.getBooleanArgumentKeys().isEmpty());
assertTrue(parameters.getStringArgumentKeys().isEmpty());
if (evenCall) {
@@ -235,9 +230,8 @@ public class ParametrizedCommandTest {
}
@Override
- protected void doExecute(final ConsoleOutput out,
- final ConsoleInput in,
- final CommandParameters parameters) {
+ protected void doExecute(final ConsoleOutput out, final ConsoleInput in,
+ final CommandParameters parameters) {
assertEquals(2, parameters.getBooleanArgumentKeys().size());
assertEquals(2, parameters.getStringArgumentKeys().size());
switch (call) {
@@ -302,9 +296,8 @@ public class ParametrizedCommandTest {
}
@Override
- protected void doExecute(final ConsoleOutput out,
- final ConsoleInput in,
- final CommandParameters parameters) {
+ protected void doExecute(final ConsoleOutput out, final ConsoleInput in,
+ final CommandParameters parameters) {
assertEquals(2, parameters.getBooleanArgumentKeys().size());
assertEquals(2, parameters.getStringArgumentKeys().size());
switch (call) {
@@ -376,9 +369,8 @@ public class ParametrizedCommandTest {
}
@Override
- protected void doExecute(final ConsoleOutput out,
- final ConsoleInput in,
- final CommandParameters parameters) {
+ protected void doExecute(final ConsoleOutput out, final ConsoleInput in,
+ final CommandParameters parameters) {
assertEquals(str2, parameters.get(str1));
}
@@ -419,9 +411,8 @@ public class ParametrizedCommandTest {
}
@Override
- protected void doExecute(final ConsoleOutput out,
- final ConsoleInput in,
- final CommandParameters parameters) {
+ protected void doExecute(final ConsoleOutput out, final ConsoleInput in,
+ final CommandParameters parameters) {
//
assertEquals(str2, parameters.get(str1));
}
@@ -466,9 +457,8 @@ public class ParametrizedCommandTest {
}
@Test
- public void testExecuteInteractive() throws IOException,
- CommandRunException,
- InterruptedException {
+ public void testExecuteInteractive()
+ throws IOException, CommandRunException, InterruptedException {
ParametrizedCommand cmd;
final String addParam = "additional";
final String str1 = "str1";
@@ -490,9 +480,8 @@ public class ParametrizedCommandTest {
}
@Override
- protected void doExecute(final ConsoleOutput out,
- final ConsoleInput in,
- final CommandParameters parameters) throws CommandRunException {
+ protected void doExecute(final ConsoleOutput out, final ConsoleInput in,
+ final CommandParameters parameters) throws CommandRunException {
if (!str2.equals(parameters.get(str1))) {
throw new CommandRunException("Expected other argument");
}
@@ -509,12 +498,11 @@ public class ParametrizedCommandTest {
}
};
try (PipedConsoleOutput out = new PipedConsoleOutput();
- PipedOutputStream pout = new PipedOutputStream();
- PipedInputStream pis = new PipedInputStream(pout);
- BufferedReader buf = new BufferedReader(
- new InputStreamReader(pis, StandardCharsets.UTF_8));
- PipedConsoleInput in = new PipedConsoleInput(
- new PrintStream(pout))) {
+ PipedOutputStream pout = new PipedOutputStream();
+ PipedInputStream pis = new PipedInputStream(pout);
+ BufferedReader buf = new BufferedReader(
+ new InputStreamReader(pis, StandardCharsets.UTF_8));
+ PipedConsoleInput in = new PipedConsoleInput(new PrintStream(pout))) {
cmd.execute(out, in, "-" + str1, str2);
cmd.execute(out, in, "-" + str1, str2, "-" + bool1);
cmd.execute(out, in, "-" + str1, str2, addParam);
@@ -528,12 +516,10 @@ public class ParametrizedCommandTest {
try {
assertEquals("value of " + str1 + "? ", buf.readLine());
in.type("");
- assertEquals(
- "value of " + str1 + "? (cannot be empty) ",
+ assertEquals("value of " + str1 + "? (cannot be empty) ",
buf.readLine());
in.type("");
- assertEquals(
- "value of " + str1 + "? (cannot be empty) ",
+ assertEquals("value of " + str1 + "? (cannot be empty) ",
buf.readLine());
in.type(str2);
} catch (final IOException e) {
@@ -548,12 +534,11 @@ public class ParametrizedCommandTest {
th.join();
}
try (PipedConsoleOutput out = new PipedConsoleOutput();
- PipedOutputStream pout = new PipedOutputStream();
- PipedInputStream pis = new PipedInputStream(pout);
- BufferedReader buf = new BufferedReader(
- new InputStreamReader(pis, StandardCharsets.UTF_8));
- PipedConsoleInput in = new PipedConsoleInput(
- new PrintStream(pout))) {
+ PipedOutputStream pout = new PipedOutputStream();
+ PipedInputStream pis = new PipedInputStream(pout);
+ BufferedReader buf = new BufferedReader(
+ new InputStreamReader(pis, StandardCharsets.UTF_8));
+ PipedConsoleInput in = new PipedConsoleInput(new PrintStream(pout))) {
final Thread th = new Thread(new Runnable() {
@@ -593,9 +578,8 @@ public class ParametrizedCommandTest {
ParametrizedCommand cmd = new ParametrizedCommand("name") {
@Override
- protected void doExecute(final ConsoleOutput out,
- final ConsoleInput in,
- final CommandParameters parameters) {
+ protected void doExecute(final ConsoleOutput out, final ConsoleInput in,
+ final CommandParameters parameters) {
//
}
@@ -612,9 +596,8 @@ public class ParametrizedCommandTest {
assertTrue(cmd.isStrict());
cmd = new ParametrizedCommand("name") {
@Override
- protected void doExecute(final ConsoleOutput out,
- final ConsoleInput in,
- final CommandParameters parameters) {
+ protected void doExecute(final ConsoleOutput out, final ConsoleInput in,
+ final CommandParameters parameters) {
//
}
@@ -631,9 +614,8 @@ public class ParametrizedCommandTest {
assertTrue(cmd.isStrict());
cmd = new ParametrizedCommand("name") {
@Override
- protected void doExecute(final ConsoleOutput out,
- final ConsoleInput in,
- final CommandParameters parameters) {
+ protected void doExecute(final ConsoleOutput out, final ConsoleInput in,
+ final CommandParameters parameters) {
//
}
@@ -656,9 +638,8 @@ public class ParametrizedCommandTest {
public final void testParametrizedCommandConsoleManagerStringBoolean() {
ParametrizedCommand cmd = new ParametrizedCommand("name", false) {
@Override
- protected void doExecute(final ConsoleOutput out,
- final ConsoleInput in,
- final CommandParameters parameters) {
+ protected void doExecute(final ConsoleOutput out, final ConsoleInput in,
+ final CommandParameters parameters) {
//
}
@@ -675,9 +656,8 @@ public class ParametrizedCommandTest {
assertFalse(cmd.isStrict());
cmd = new ParametrizedCommand("name", false) {
@Override
- protected void doExecute(final ConsoleOutput out,
- final ConsoleInput in,
- final CommandParameters parameters) {
+ protected void doExecute(final ConsoleOutput out, final ConsoleInput in,
+ final CommandParameters parameters) {
//
}
@@ -694,9 +674,8 @@ public class ParametrizedCommandTest {
assertFalse(cmd.isStrict());
cmd = new ParametrizedCommand("name", false) {
@Override
- protected void doExecute(final ConsoleOutput out,
- final ConsoleInput in,
- final CommandParameters parameters) {
+ protected void doExecute(final ConsoleOutput out, final ConsoleInput in,
+ final CommandParameters parameters) {
//
}
diff --git a/gclc/src/test/java/net/bigeon/gclc/command/ScriptExecutionTest.java b/gclc/src/test/java/net/bigeon/gclc/command/ScriptExecutionTest.java
index f86b522..e2e8863 100644
--- a/gclc/src/test/java/net/bigeon/gclc/command/ScriptExecutionTest.java
+++ b/gclc/src/test/java/net/bigeon/gclc/command/ScriptExecutionTest.java
@@ -45,17 +45,17 @@ package net.bigeon.gclc.command;
* Copyright (C) 2014 - 2018 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,
+ * 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".
- *
+ * "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.
- *
+ * 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,
@@ -63,10 +63,10 @@ package net.bigeon.gclc.command;
* 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.
- *
+ * 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.
* #L%
@@ -88,7 +88,8 @@ import net.bigeon.gclc.exception.CommandRunExceptionType;
import net.bigeon.gclc.utils.PipedConsoleInput;
import net.bigeon.gclc.utils.PipedConsoleOutput;
-/**
+/**
+ *
* Test class for {@link ScriptExecution}
*
* @author Emmanuel Bigeon */
@@ -108,8 +109,7 @@ public class ScriptExecutionTest {
fail("creation of console manager failed"); //$NON-NLS-1$
return;
}
- final ConsoleApplication app = new ConsoleApplication(
- test, in, "", "");
+ final ConsoleApplication app = new ConsoleApplication(test, in, "", "");
new ConsoleTestApplication().attach(app);
final ScriptExecution exec = new ScriptExecution("script", app, "#", //$NON-NLS-1$ //$NON-NLS-2$
Charset.forName("UTF-8"));
@@ -122,8 +122,7 @@ public class ScriptExecutionTest {
}
try {
- exec.execute(test, in,
- "src/test/resources/scripts/withprependSpace.txt"); //$NON-NLS-1$
+ exec.execute(test, in, "src/test/resources/scripts/withprependSpace.txt"); //$NON-NLS-1$
fail("execution of script with lines begining with space should fail"); //$NON-NLS-1$
} catch (final CommandRunException e1) {
// ok
@@ -131,8 +130,7 @@ public class ScriptExecutionTest {
}
try {
- exec.execute(test, in,
- "src/test/resources/scripts/invalidCmdParse.txt"); //$NON-NLS-1$
+ exec.execute(test, in, "src/test/resources/scripts/invalidCmdParse.txt"); //$NON-NLS-1$
fail("execution of script with invalid command line should fail"); //$NON-NLS-1$
} catch (final CommandRunException e1) {
// ok
@@ -140,8 +138,7 @@ public class ScriptExecutionTest {
}
try {
- exec.execute(test, in,
- "src/test/resources/scripts/invalidCmd.txt"); //$NON-NLS-1$
+ exec.execute(test, in, "src/test/resources/scripts/invalidCmd.txt"); //$NON-NLS-1$
fail("execution of script with invalid command should fail"); //$NON-NLS-1$
} catch (final CommandRunException e1) {
// ok
@@ -149,8 +146,7 @@ public class ScriptExecutionTest {
}
try {
- exec.execute(test, in,
- "src/test/resources/scripts/failingCmdInvoc.txt"); //$NON-NLS-1$
+ exec.execute(test, in, "src/test/resources/scripts/failingCmdInvoc.txt"); //$NON-NLS-1$
fail("execution of script with failing command should fail"); //$NON-NLS-1$
} catch (final CommandRunException e1) {
// ok
@@ -158,8 +154,7 @@ public class ScriptExecutionTest {
}
try {
- exec.execute(test, in,
- "src/test/resources/scripts/someNonExisting.file"); //$NON-NLS-1$
+ exec.execute(test, in, "src/test/resources/scripts/someNonExisting.file"); //$NON-NLS-1$
fail("execution of script with unexisting file should fail"); //$NON-NLS-1$
} catch (final CommandRunException e1) {
// ok
@@ -199,7 +194,8 @@ public class ScriptExecutionTest {
}
}
- /** Test method for {@link net.bigeon.gclc.command.base.ScriptExecution#tip()}. */
+ /** Test method for
+ * {@link net.bigeon.gclc.command.base.ScriptExecution#tip()}. */
@Test
public void testTip() {
final ScriptExecution exec = new ScriptExecution("script", null, "#", //$NON-NLS-1$ //$NON-NLS-2$
diff --git a/gclc/src/test/java/net/bigeon/gclc/command/SubedCommandTest.java b/gclc/src/test/java/net/bigeon/gclc/command/SubedCommandTest.java
index fa6545a..1f5a259 100644
--- a/gclc/src/test/java/net/bigeon/gclc/command/SubedCommandTest.java
+++ b/gclc/src/test/java/net/bigeon/gclc/command/SubedCommandTest.java
@@ -45,17 +45,17 @@ package net.bigeon.gclc.command;
* Copyright (C) 2014 - 2018 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,
+ * 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".
- *
+ * "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.
- *
+ * 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,
@@ -63,10 +63,10 @@ package net.bigeon.gclc.command;
* 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.
- *
+ * 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.
* #L%
@@ -80,9 +80,6 @@ import java.io.IOException;
import org.junit.Test;
-import net.bigeon.gclc.command.Command;
-import net.bigeon.gclc.command.ICommand;
-import net.bigeon.gclc.command.SubedCommand;
import net.bigeon.gclc.command.base.MockCommand;
import net.bigeon.gclc.exception.CommandRunException;
import net.bigeon.gclc.exception.InvalidCommandName;
@@ -136,9 +133,8 @@ public class SubedCommandTest {
cmd.add(new Command("fail") {
@Override
- public void execute(final ConsoleOutput out,
- final ConsoleInput in,
- final String... args) throws CommandRunException {
+ public void execute(final ConsoleOutput out, final ConsoleInput in,
+ final String... args) throws CommandRunException {
throw new CommandRunException("Failing command", null);
}
@@ -182,9 +178,8 @@ public class SubedCommandTest {
cmd.add(new Command("fail") {
@Override
- public void execute(final ConsoleOutput out,
- final ConsoleInput in,
- final String... args) throws CommandRunException {
+ public void execute(final ConsoleOutput out, final ConsoleInput in,
+ final String... args) throws CommandRunException {
throw new CommandRunException("Failing command");
}
@@ -235,9 +230,8 @@ public class SubedCommandTest {
cmd.add(new Command("fail") {
@Override
- public void execute(final ConsoleOutput out,
- final ConsoleInput in,
- final String... args) throws CommandRunException {
+ public void execute(final ConsoleOutput out, final ConsoleInput in,
+ final String... args) throws CommandRunException {
throw new CommandRunException("Failing command");
}
@@ -257,7 +251,7 @@ public class SubedCommandTest {
}
try {
- cmd.executeSub(null, null,"id");
+ cmd.executeSub(null, null, "id");
} catch (final CommandRunException e) {
fail("Unexpected exception when running mock command");
assertNotNull(e);
@@ -349,7 +343,7 @@ public class SubedCommandTest {
@Override
public void execute(final ConsoleOutput out, final ConsoleInput in,
- final String... args) throws CommandRunException {
+ final String... args) throws CommandRunException {
//
}
@@ -359,8 +353,8 @@ public class SubedCommandTest {
}
@Override
- public void help(final ConsoleOutput manager,
- final String... args) throws IOException {
+ public void help(final ConsoleOutput manager, final String... args)
+ throws IOException {
//
}
diff --git a/gclc/src/test/java/net/bigeon/gclc/exception/CommandRunExceptionTest.java b/gclc/src/test/java/net/bigeon/gclc/exception/CommandRunExceptionTest.java
index 4d6875c..962bcb6 100644
--- a/gclc/src/test/java/net/bigeon/gclc/exception/CommandRunExceptionTest.java
+++ b/gclc/src/test/java/net/bigeon/gclc/exception/CommandRunExceptionTest.java
@@ -45,17 +45,17 @@ package net.bigeon.gclc.exception;
* Copyright (C) 2014 - 2018 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,
+ * 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".
- *
+ * "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.
- *
+ * 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,
@@ -63,10 +63,10 @@ package net.bigeon.gclc.exception;
* 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.
- *
+ * 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.
* #L%
@@ -77,28 +77,23 @@ import org.junit.Test;
import net.bigeon.gclc.command.ICommand;
import net.bigeon.gclc.command.base.MockCommand;
-import net.bigeon.gclc.exception.CommandRunException;
/**
*
* TODO
*
- * @author Emmanuel Bigeon
- *
- */
+ * @author Emmanuel Bigeon */
public class CommandRunExceptionTest {
- /**
- * Test method for {@link net.bigeon.gclc.exception.CommandRunException#getLocalizedMessage()}.
- */
+ /** Test method for
+ * {@link net.bigeon.gclc.exception.CommandRunException#getLocalizedMessage()}. */
@Test
public final void testGetLocalizedMessage() {
CommandRunException e;
final ICommand cmd = new MockCommand("name");
final String messageInner = "inner";
final String message = "message";
- e = new CommandRunException(message,
- new CommandRunException(messageInner));
+ e = new CommandRunException(message, new CommandRunException(messageInner));
assertEquals(message + ": " + messageInner, e.getLocalizedMessage());
e = new CommandRunException(message);
diff --git a/gclc/src/test/java/net/bigeon/gclc/manager/ReadingRunnableTest.java b/gclc/src/test/java/net/bigeon/gclc/manager/ReadingRunnableTest.java
index c65200a..a780fb8 100644
--- a/gclc/src/test/java/net/bigeon/gclc/manager/ReadingRunnableTest.java
+++ b/gclc/src/test/java/net/bigeon/gclc/manager/ReadingRunnableTest.java
@@ -45,17 +45,17 @@ package net.bigeon.gclc.manager;
* Copyright (C) 2014 - 2018 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,
+ * 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".
- *
+ * "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.
- *
+ * 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,
@@ -63,10 +63,10 @@ package net.bigeon.gclc.manager;
* 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.
- *
+ * 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.
* #L%
@@ -97,7 +97,8 @@ public class ReadingRunnableTest {
/**
*/
@Before
- public void setUp() {}
+ public void setUp() {
+ }
/** Test method for
* {@link net.bigeon.gclc.utils.ReadingRunnable#getMessage()}. */
@@ -122,19 +123,18 @@ public class ReadingRunnableTest {
* @throws InterruptedException if the test failed
* @throws IOException if the test failed */
@Test
- public final void testGetWaitForDelivery() throws InterruptedException,
- IOException {
+ public final void testGetWaitForDelivery() throws InterruptedException, IOException {
try (PipedOutputStream out = new PipedOutputStream();
- InputStream piped = new PipedInputStream(out);
- BufferedReader reader = new BufferedReader(
- new InputStreamReader(piped, "UTF-8"))) {
+ InputStream piped = new PipedInputStream(out);
+ BufferedReader reader = new BufferedReader(
+ new InputStreamReader(piped, "UTF-8"))) {
final ReadingRunnable runnable = new ReadingRunnable(reader);
final Thread th0 = new Thread(runnable, "read");
th0.start();
final Thread th = runnable.getWaitForDelivery("msg");
- out.write(Charset.forName("UTF-8")
- .encode("msg" + System.lineSeparator()).array());
+ out.write(Charset.forName("UTF-8").encode("msg" + System.lineSeparator())
+ .array());
final Thread th2 = new Thread(new Runnable() {
diff --git a/gclc/src/test/java/net/bigeon/gclc/manager/SystemConsoleManagerTest.java b/gclc/src/test/java/net/bigeon/gclc/manager/SystemConsoleManagerTest.java
index ac0545c..5a18e3b 100644
--- a/gclc/src/test/java/net/bigeon/gclc/manager/SystemConsoleManagerTest.java
+++ b/gclc/src/test/java/net/bigeon/gclc/manager/SystemConsoleManagerTest.java
@@ -45,17 +45,17 @@ package net.bigeon.gclc.manager;
* Copyright (C) 2014 - 2018 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,
+ * 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".
- *
+ * "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.
- *
+ * 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,
@@ -63,10 +63,10 @@ package net.bigeon.gclc.manager;
* 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.
- *
+ * 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.
* #L%
@@ -104,8 +104,8 @@ public class SystemConsoleManagerTest {
final InputStream in = new PipedInputStream(outStream);
final PrintStream out = new PrintStream(outStream);
final String test = "test";
- final StreamConsoleInput manager = new StreamConsoleInput(System.out,
- in, Charset.forName("UTF-8"));
+ final StreamConsoleInput manager = new StreamConsoleInput(System.out, in,
+ Charset.forName("UTF-8"));
final Thread th = new Thread(new Runnable() {
@@ -131,7 +131,7 @@ public class SystemConsoleManagerTest {
}
/** Test method for {@link net.bigeon.gclc.manager.ConsoleInput#prompt()}.
- *
+ *
* @throws IOException if the test failed
* @throws InterruptedException if the test failed */
@Test
@@ -139,10 +139,10 @@ public class SystemConsoleManagerTest {
final String test = "test";
try (PipedOutputStream outStream = new PipedOutputStream();
- InputStream in = new PipedInputStream(outStream);
- final PrintStream out = new PrintStream(outStream);
- StreamConsoleInput manager = new StreamConsoleInput(System.out, in,
- Charset.forName("UTF-8"))) {
+ InputStream in = new PipedInputStream(outStream);
+ final PrintStream out = new PrintStream(outStream);
+ StreamConsoleInput manager = new StreamConsoleInput(System.out, in,
+ Charset.forName("UTF-8"))) {
final Thread th = new Thread(new Runnable() {
@@ -162,15 +162,15 @@ public class SystemConsoleManagerTest {
/** Test method for
* {@link net.bigeon.gclc.manager.ConsoleInput#setPrompt(java.lang.String)}.
- *
+ *
* @throws IOException if the test failed */
@Test
public final void testSetPrompt() throws IOException {
try (PipedOutputStream outStream = new PipedOutputStream();
- InputStream in = new PipedInputStream(outStream);
- final PrintStream out = new PrintStream(outStream);
- StreamConsoleInput manager = new StreamConsoleInput(System.out, in,
- Charset.forName("UTF-8"))) {
+ InputStream in = new PipedInputStream(outStream);
+ final PrintStream out = new PrintStream(outStream);
+ StreamConsoleInput manager = new StreamConsoleInput(System.out, in,
+ Charset.forName("UTF-8"))) {
final String prt = "++";
manager.setPrompt(prt);
diff --git a/gclc/src/test/java/net/bigeon/gclc/prompt/CLIPrompterMessagesTest.java b/gclc/src/test/java/net/bigeon/gclc/prompt/CLIPrompterMessagesTest.java
index 62a498b..a8aca55 100644
--- a/gclc/src/test/java/net/bigeon/gclc/prompt/CLIPrompterMessagesTest.java
+++ b/gclc/src/test/java/net/bigeon/gclc/prompt/CLIPrompterMessagesTest.java
@@ -45,17 +45,17 @@ package net.bigeon.gclc.prompt;
* Copyright (C) 2014 - 2018 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,
+ * 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".
- *
+ * "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.
- *
+ * 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,
@@ -63,10 +63,10 @@ package net.bigeon.gclc.prompt;
* 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.
- *
+ * 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.
* #L%
@@ -75,26 +75,20 @@ import static org.junit.Assert.assertEquals;
import org.junit.Test;
-import net.bigeon.gclc.prompt.CLIPrompterMessages;
-
/**
*
* TODO
*
- * @author Emmanuel Bigeon
- *
- */
+ * @author Emmanuel Bigeon */
public class CLIPrompterMessagesTest {
- /**
- * Test method for {@link net.bigeon.gclc.prompt.CLIPrompterMessages#getString(java.lang.String, java.lang.Object[])}.
- */
+ /** Test method for
+ * {@link net.bigeon.gclc.prompt.CLIPrompterMessages#getString(java.lang.String, java.lang.Object[])}. */
@Test
public final void testGetString() {
String key = "bad.key";
assertEquals('!' + key + '!', CLIPrompterMessages.getString(key));
- assertEquals('!' + key + '!',
- CLIPrompterMessages.getString(key, "some arg"));
+ assertEquals('!' + key + '!', CLIPrompterMessages.getString(key, "some arg"));
assertEquals('!' + key + '!',
CLIPrompterMessages.getString(key, new Object[] {}));
}
diff --git a/gclc/src/test/java/net/bigeon/gclc/prompt/CLIPrompterTest.java b/gclc/src/test/java/net/bigeon/gclc/prompt/CLIPrompterTest.java
index 361dfd8..5bb07ca 100644
--- a/gclc/src/test/java/net/bigeon/gclc/prompt/CLIPrompterTest.java
+++ b/gclc/src/test/java/net/bigeon/gclc/prompt/CLIPrompterTest.java
@@ -45,17 +45,17 @@ package net.bigeon.gclc.prompt;
* Copyright (C) 2014 - 2018 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,
+ * 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".
- *
+ * "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.
- *
+ * 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,
@@ -63,10 +63,10 @@ package net.bigeon.gclc.prompt;
* 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.
- *
+ * 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.
* #L%
@@ -92,8 +92,6 @@ import org.junit.After;
import org.junit.Before;
import org.junit.Test;
-import net.bigeon.gclc.prompt.CLIPrompter;
-import net.bigeon.gclc.prompt.CLIPrompterMessages;
import net.bigeon.gclc.utils.PipedConsoleInput;
import net.bigeon.gclc.utils.PipedConsoleOutput;
@@ -121,25 +119,20 @@ public class CLIPrompterTest {
@Test
public final void testPromptBoolean() {
try (final PipedConsoleOutput out = new PipedConsoleOutput();
- PipedOutputStream pout = new PipedOutputStream();
- PipedInputStream pis = new PipedInputStream(pout);
- BufferedReader buf = new BufferedReader(
- new InputStreamReader(pis, StandardCharsets.UTF_8));
- PipedConsoleInput in = new PipedConsoleInput(
- new PrintStream(pout))) {
+ PipedOutputStream pout = new PipedOutputStream();
+ PipedInputStream pis = new PipedInputStream(pout);
+ BufferedReader buf = new BufferedReader(
+ new InputStreamReader(pis, StandardCharsets.UTF_8));
+ PipedConsoleInput in = new PipedConsoleInput(new PrintStream(pout))) {
final Thread th = new Thread(new Runnable() {
@Override
public void run() {
try {
- assertTrue(CLIPrompter.promptBoolean(out, in,
- "My message")); //$NON-NLS-1$
- assertTrue(CLIPrompter.promptBoolean(out, in,
- "My message")); //$NON-NLS-1$
- assertFalse(CLIPrompter.promptBoolean(out, in,
- "My message")); //$NON-NLS-1$
- assertFalse(CLIPrompter.promptBoolean(out, in,
- "My message")); //$NON-NLS-1$
+ assertTrue(CLIPrompter.promptBoolean(out, in, "My message")); //$NON-NLS-1$
+ assertTrue(CLIPrompter.promptBoolean(out, in, "My message")); //$NON-NLS-1$
+ assertFalse(CLIPrompter.promptBoolean(out, in, "My message")); //$NON-NLS-1$
+ assertFalse(CLIPrompter.promptBoolean(out, in, "My message")); //$NON-NLS-1$
} catch (final IOException e) {
fail("Unexpected io excpetion"); //$NON-NLS-1$
e.printStackTrace();
@@ -171,12 +164,11 @@ public class CLIPrompterTest {
@Test
public final void testPromptChoiceConsoleManagerListOfStringListOfUStringString() {
try (final PipedConsoleOutput out = new PipedConsoleOutput();
- PipedOutputStream pout = new PipedOutputStream();
- PipedInputStream pis = new PipedInputStream(pout);
- BufferedReader buf = new BufferedReader(
- new InputStreamReader(pis, StandardCharsets.UTF_8));
- PipedConsoleInput in = new PipedConsoleInput(
- new PrintStream(pout))) {
+ PipedOutputStream pout = new PipedOutputStream();
+ PipedInputStream pis = new PipedInputStream(pout);
+ BufferedReader buf = new BufferedReader(
+ new InputStreamReader(pis, StandardCharsets.UTF_8));
+ PipedConsoleInput in = new PipedConsoleInput(new PrintStream(pout))) {
final List