forked from remkop/picocli
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
4c76e93
commit d2d104e
Showing
6 changed files
with
607 additions
and
1 deletion.
There are no files selected for viewing
128 changes: 128 additions & 0 deletions
128
examples/src/main/java/picocli/examples/PopulateFlagsMain.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,128 @@ | ||
/* | ||
Copyright 2017 Robert 'Bobby' Zenz | ||
Licensed under the Apache License, Version 2.0 (the "License"); | ||
you may not use this file except in compliance with the License. | ||
You may obtain a copy of the License at | ||
http://www.apache.org/licenses/LICENSE-2.0 | ||
Unless required by applicable law or agreed to in writing, software | ||
distributed under the License is distributed on an "AS IS" BASIS, | ||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
See the License for the specific language governing permissions and | ||
limitations under the License. | ||
*/ | ||
|
||
package picocli.examples; | ||
|
||
import picocli.CommandLine; | ||
import picocli.CommandLine.Option; | ||
import picocli.CommandLine.ParameterException; | ||
|
||
/** | ||
* This example demonstrates the usage with a simple flag class. | ||
* | ||
* <p> | ||
* | ||
* When no arguments are provided, the flags will have their default values: | ||
* | ||
* <pre> | ||
* Arguments: | ||
* | ||
* | ||
* Options: | ||
* buffered: false | ||
* overwriteOutput: true | ||
* verbose: false | ||
* </pre> | ||
* | ||
* When the flag is provided in the arguments, the default value of the flag | ||
* will be inverted and set. So if we can provide all flags as arguments: | ||
* | ||
* <pre> | ||
* Arguments: | ||
* "-b" "-o" "-v" | ||
* | ||
* Options: | ||
* buffered: true | ||
* overwriteOutput: false | ||
* verbose: true | ||
* </pre> | ||
* | ||
* Because these flags are single letter names, we can also provide them | ||
* concatenated in one argument: | ||
* | ||
* <pre> | ||
* Arguments: | ||
* "-bov" | ||
* | ||
* Options: | ||
* buffered: true | ||
* overwriteOutput: false | ||
* verbose: true | ||
* </pre> | ||
* | ||
* Or in any derivation there of. | ||
* | ||
* @author Robert 'Bobby' Zenz | ||
*/ | ||
public class PopulateFlagsMain { | ||
public static void main(String[] args) { | ||
// Create a new Options class, which holds our flags. | ||
Options options = new Options(); | ||
|
||
try { | ||
// Populate the created class from the command line arguments. | ||
CommandLine.populateCommand(options, args); | ||
} catch (ParameterException e) { | ||
// The given command line arguments are invalid, for example there | ||
// are options specified which do not exist or one of the options | ||
// is malformed (missing a value, for example). | ||
System.out.println(e.getMessage()); | ||
CommandLine.usage(options, System.out); | ||
return; | ||
} | ||
|
||
// Print the state. | ||
System.out.println("Arguments:"); | ||
System.out.print(" "); | ||
for (String arg : args) { | ||
System.out.print("\"" + arg + "\" "); | ||
} | ||
System.out.println(); | ||
System.out.println(); | ||
|
||
System.out.println("Options:"); | ||
System.out.println(" buffered: " + options.isBuffered()); | ||
System.out.println(" overwriteOutput: " + options.isOverwriteOutput()); | ||
System.out.println(" verbose: " + options.isVerbose()); | ||
} | ||
|
||
/** | ||
* This is the main container which will be populated by picocli with values | ||
* from the arguments. | ||
*/ | ||
private static class Options { | ||
@Option(names = "-b") | ||
private boolean buffered = false; | ||
|
||
@Option(names = "-o") | ||
private boolean overwriteOutput = true; | ||
|
||
@Option(names = "-v") | ||
private boolean verbose = false; | ||
|
||
public boolean isBuffered() { | ||
return buffered; | ||
} | ||
|
||
public boolean isOverwriteOutput() { | ||
return overwriteOutput; | ||
} | ||
|
||
public boolean isVerbose() { | ||
return verbose; | ||
} | ||
} | ||
} |
103 changes: 103 additions & 0 deletions
103
examples/src/main/java/picocli/examples/PopulateFlagsWithLongNamesMain.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,103 @@ | ||
/* | ||
Copyright 2017 Robert 'Bobby' Zenz | ||
Licensed under the Apache License, Version 2.0 (the "License"); | ||
you may not use this file except in compliance with the License. | ||
You may obtain a copy of the License at | ||
http://www.apache.org/licenses/LICENSE-2.0 | ||
Unless required by applicable law or agreed to in writing, software | ||
distributed under the License is distributed on an "AS IS" BASIS, | ||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
See the License for the specific language governing permissions and | ||
limitations under the License. | ||
*/ | ||
|
||
package picocli.examples; | ||
|
||
import picocli.CommandLine; | ||
import picocli.CommandLine.Option; | ||
import picocli.CommandLine.ParameterException; | ||
|
||
/** | ||
* This example demonstrates the usage with a simple flag class with long names. | ||
* | ||
* <p> | ||
* | ||
* When no arguments are provided, the flag will have its default value: | ||
* | ||
* <pre> | ||
* Arguments: | ||
* | ||
* | ||
* Options: | ||
* verbose: false | ||
* </pre> | ||
* | ||
* When the flag is provided in the arguments, the default value of the flag | ||
* will be inverted and set. | ||
* | ||
* <pre> | ||
* Arguments: | ||
* "-v" | ||
* | ||
* Options: | ||
* verbose: true | ||
* </pre> | ||
* | ||
* We can also refer to the flag by its long name: | ||
* | ||
* <pre> | ||
* Arguments: | ||
* "--verbose" | ||
* | ||
* Options: | ||
* verbose: true | ||
* </pre> | ||
* | ||
* @author Robert 'Bobby' Zenz | ||
*/ | ||
public class PopulateFlagsWithLongNamesMain { | ||
public static void main(String[] args) { | ||
// Create a new Options class, which holds our flag. | ||
Options options = new Options(); | ||
|
||
try { | ||
// Populate the created class from the command line arguments. | ||
CommandLine.populateCommand(options, args); | ||
} catch (ParameterException e) { | ||
// The given command line arguments are invalid, for example there | ||
// are options specified which do not exist or one of the options | ||
// is malformed (missing a value, for example). | ||
System.out.println(e.getMessage()); | ||
CommandLine.usage(options, System.out); | ||
return; | ||
} | ||
|
||
// Print the state. | ||
System.out.println("Arguments:"); | ||
System.out.print(" "); | ||
for (String arg : args) { | ||
System.out.print("\"" + arg + "\" "); | ||
} | ||
System.out.println(); | ||
System.out.println(); | ||
|
||
System.out.println("Options:"); | ||
System.out.println(" verbose: " + options.isVerbose()); | ||
} | ||
|
||
/** | ||
* This is the main container which will be populated by picocli with values | ||
* from the arguments. | ||
*/ | ||
private static class Options { | ||
@Option(names = { "-v", "--verbose" }) | ||
private boolean verbose = false; | ||
|
||
public boolean isVerbose() { | ||
return verbose; | ||
} | ||
} | ||
} |
82 changes: 82 additions & 0 deletions
82
examples/src/main/java/picocli/examples/PopulateHelpRequestedMain.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,82 @@ | ||
/* | ||
Copyright 2017 Robert 'Bobby' Zenz | ||
Licensed under the Apache License, Version 2.0 (the "License"); | ||
you may not use this file except in compliance with the License. | ||
You may obtain a copy of the License at | ||
http://www.apache.org/licenses/LICENSE-2.0 | ||
Unless required by applicable law or agreed to in writing, software | ||
distributed under the License is distributed on an "AS IS" BASIS, | ||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
See the License for the specific language governing permissions and | ||
limitations under the License. | ||
*/ | ||
|
||
package picocli.examples; | ||
|
||
import picocli.CommandLine; | ||
import picocli.CommandLine.Option; | ||
import picocli.CommandLine.ParameterException; | ||
|
||
/** | ||
* This example demonstrates the printing of the usage/help message when | ||
* requested. | ||
* | ||
* <p> | ||
* | ||
* When no arguments are provided, no usage/help information will be printed: | ||
* | ||
* <pre> | ||
* No help requested, application can continue. | ||
* </pre> | ||
* | ||
* When the flag is provided in the arguments, with either {@code -h} or | ||
* {@code --help}, the default usage/help text will be printed: | ||
* | ||
* <pre> | ||
* Usage: <main class> [-h] | ||
* -h, --help Prints this help text. | ||
* </pre> | ||
* | ||
* @author Robert 'Bobby' Zenz | ||
*/ | ||
public class PopulateHelpRequestedMain { | ||
public static void main(String[] args) { | ||
// Create a new Options class, which holds our options. | ||
Options options = new Options(); | ||
|
||
try { | ||
// Populate the created class from the command line arguments. | ||
CommandLine.populateCommand(options, args); | ||
} catch (ParameterException e) { | ||
// The given command line arguments are invalid, for example there | ||
// are options specified which do not exist or one of the options | ||
// is malformed (missing a value, for example). | ||
System.out.println(e.getMessage()); | ||
CommandLine.usage(options, System.out); | ||
return; | ||
} | ||
|
||
// Print the state. | ||
if (options.isHelpRequested()) { | ||
CommandLine.usage(options, System.out); | ||
} else { | ||
System.out.println("No help requested, application can continue."); | ||
} | ||
} | ||
|
||
/** | ||
* This is the main container which will be populated by picocli with values | ||
* from the arguments. | ||
*/ | ||
private static class Options { | ||
@Option(names = { "-h", "--help" }, description = "Prints this help text.") | ||
private boolean helpRequested = false; | ||
|
||
public boolean isHelpRequested() { | ||
return helpRequested; | ||
} | ||
} | ||
} |
Oops, something went wrong.