[rfc][icedtea-web][itweb-settings] itweb-settings use Option Parser
Lukasz Dracz
ldracz at redhat.com
Thu Sep 25 21:28:51 UTC 2014
Hello,
> Ufff... Much more mayor hints.
>
>
> Again. On one side I really like the possibility. On the other side, I'm not
> sure if it is worthy of
> introduced complexity. And from dark side, I'm definitely not with way how
> it is done (see inline).
> And from darkest side, I must disagree with your usecase.
>
> If you decide to go on with this "suport everything" approach, I will need to
> ask you also for few
> reproducers, to be sure that:
> itweb-settings set whatever set whatever2 get whatever reset whatever2
> get whatever2
> resetall set whatever get whatever
> really do the same as
> that itweb-settings set whatever ; itweb-settings set whatever2 ;
> itweb-settings get whatever
> itweb-settings reset whatever2 ; itweb-settings get whatever2 ;
> itweb-settings resetall
> itweb-settings set whatever ; itweb-settings get whatever
>
>
> For your usecase. I would nnever ever lunch
>
> iwebsettings set whatever tosomething get whatever reset whatever set
> whatever tosomethingeelse get
> whatever.
>
> I will always lunch it as separate commands and watch return values/outputs
> of commands - and so
> stop if something goes wrong.
Yeah, that's how I would do it too, I just wanted to give the ability to do it :)
> So Although on one side it is really cool to have such an powerful parser,
> I'm not sure if it
> worthy. It is bringing a lot of responsibility and maybe it have no target
> audience.
Yeah you are right, this adds too much responsibility for no target audience. I thought it would be cool to have
but my current implementation is too 'hackish'. I think the best way for itweb-settings to work is support
only 1 command/option at a time, and just tell the user to use only one if they try to use more than one. The only other options
allowed to be used at the same time are help and headless. Each option such as get or set still works with multiple values and I think
that is a feature we should have.
> >
> >
> > itweb-settingsOptionParser-5.patch
> >
> >
> > diff -r e1c7156ed0a1 launcher/launchers.in
> > --- a/launcher/launchers.in Thu Sep 18 13:18:11 2014 -0400
> > +++ b/launcher/launchers.in Mon Sep 22 16:47:47 2014 -0400
> > @@ -53,7 +53,7 @@
> > *)
> > ARGS[$j]="$1"
> > j=$((j+1))
> > - if [ "$1" = "-headless" ] ; then
> > + if [ "$1" = "-headless" ] || [ "$1" = "headless" ] ; then
>
>
> ouch. Where have you find this? This should not have reason to live...
> Well probably depends on taste, but test function have its own or. You shold
> uuse that.
>
> Anyway - your parser is supporting headless -headless --headless ...
> ------------*--------headless ...
>
> So even splash should.
>
> Please turn to regex/match (test *have* thisalready)
I changed the line to use a regex.
> > SPLASH="false"
> > fi
> > ;;
> > diff -r e1c7156ed0a1 netx/net/sourceforge/jnlp/OptionsDefinitions.java
> > --- a/netx/net/sourceforge/jnlp/OptionsDefinitions.java Thu Sep 18 13:18:11
> > 2014 -0400
> > +++ b/netx/net/sourceforge/jnlp/OptionsDefinitions.java Mon Sep 22 16:47:47
> > 2014 -0400
> > @@ -75,11 +75,11 @@
> > //itweb settings
> > NODASHHELP("help", "IBOHelp"),
>
> I think this also needs fix now - when your parser is no longer forcing - to
> swithces, then we don
> otneed HELP and NODASHHELP.
I still have both, since each one has a different message it displays. Do we want to give them just one message and use only one ?
> But not sure how to keep in align with consistency
> javaws man looks like
>
> -option1
> -option2
> -help
> -optionN
>
> itweb-settings man loks like
> option1
> option2
> help
> OptionN
>
> So it would not be nice to have
>
> -option1
> -option2
> help
> -optionN
>
> or
>
> option1
> option2
> -help
> OptionN
>
>
> As PolicyEditor is using also -dash versions, maybe we can unify on them?
>
> And whats best, with your new parser we are automatically backward
> compatible.
Yeah I agree -option is better to use for all three since two of them use it already.
> > LIST("list", "IBOList"),
> > - GET("get", "name", "IBOGet"),
> > - INFO("info", "name", "IBOInfo"),
> > - SET("set", "name value", "IBOSet"),
> > + GET("get", "name", "IBOGet", NumberOfArguments.ONE_OR_MORE),
> > + INFO("info", "name", "IBOInfo", NumberOfArguments.ONE_OR_MORE),
> > + SET("set", "name value", "IBOSet", NumberOfArguments.ONE_OR_MORE),
> > RESETALL("reset", "all", "IBOResetAll"),
> > - RESET("reset", "name", "IBOReset"),
> > + RESET("reset", "name", "IBOReset", NumberOfArguments.ONE_OR_MORE),
> > CHECK("check", "name", "IBOCheck"),
>
>
> I think we have an bug here.
>
>
> if you really decide to go with multiple set | get | reset | whatever you
> will need to add an field
> to the constructor.
> And if you will not decide to do so, resetall will force you
>
> The new field should be "expected quantity"
>
> so - in my world - eg
> restall - shouldbe EXACTLY_ONE_AND_ALONE
> get and set EXACTLY_ONE (and maybe alone?)
> list, info - shouldbe EXACTLY_ONE_AND_ALONE
>
> For javaws, most of the switches would be EXACTLY_ONE or ONE_OR_NONE (which I
> would set as default)
> - well except help :) Wchich shouldbe exactly one and alone :)
>
>
> In your world, for itwebsettings
> restall, get, and set or list, info - shouldbe ZERO_ONE_OR_MORETIMES ...
>
>
> Dependes how we agree here, but htis is the palce where to define it. Not
> hack *outside* parser
> ..somehow.
>
>
> According to ths change, different handling of arguments must be done. See
> later.
>
> *Anyway, the paresr must kill applciation if invalid combination/number of
> options apear.*
>
> minor note - if this field will be added, new enum will be probably created.
> Thsi enum will need
> same localizable schema as have NumberOfArguments. And Must be later added to
> docs generator.
Hmm okay I am a little unclear about this part since I thought NumberOfArguments's purpose was to outline the expected
quantity of arguments. Also I changed it to work with only one command at a time so not sure if you still wanted this implemented.
Also thought I would mention that RESETALL is *not really* supported, well it is supported but not tied to RESETALL but RESET instead.
If two options have the same name in this case RESET and RESETALL, when parsing for it will match the one that is added to the list first in
the getItwsettingsCommands(), which is why I moved RESET to be above RESETALL, since RESET expects one or more arguements. In handleResetCommand(),
I also handle reset all. The only reason RESETALL exists is for when the user types itweb-settings help to see that reset all is a special case that is possible alongside
reset name.
> > //policyeditor
> > //-help
> > @@ -160,8 +160,9 @@
> > OPTIONS.GET,
> > OPTIONS.INFO,
> > OPTIONS.SET,
> > + OPTIONS.RESET,
> > OPTIONS.RESETALL,
> > - OPTIONS.RESET,
> > + OPTIONS.HEADLESS,
> > OPTIONS.CHECK
> > });
> > }
> > diff -r e1c7156ed0a1
> > netx/net/sourceforge/jnlp/controlpanel/CommandLine.java
> > --- a/netx/net/sourceforge/jnlp/controlpanel/CommandLine.java Thu Sep 18
> > 13:18:11 2014 -0400
> > +++ b/netx/net/sourceforge/jnlp/controlpanel/CommandLine.java Mon Sep 22
> > 16:47:47 2014 -0400
> > @@ -21,8 +21,6 @@
> > import static net.sourceforge.jnlp.runtime.Translator.R;
> >
> > import java.io.IOException;
> > -import java.util.ArrayList;
> > -import java.util.Arrays;
> > import java.util.List;
> > import java.util.Map;
> >
> > @@ -37,16 +35,17 @@
> > import net.sourceforge.jnlp.util.docprovider.TextsProvider;
> > import
> > net.sourceforge.jnlp.util.docprovider.formatters.formatters.PlainTextFormatter;
> > import net.sourceforge.jnlp.util.logging.OutputController;
> > +import net.sourceforge.jnlp.util.optionparser.OptionParser;
> >
> > /**
> > * Encapsulates a command line interface to the deployment configuration.
> > * <p>
> > - * The central method is {@link #handle(String[])}, which calls one of the
> > - * various 'handle' methods. The commands listed in {@link #allCommands}
> > are
> > + * The central method is {@link #handle()}, which calls one of the
> > + * various 'handle' methods. The commands listed in OptionsDefinitions are
> > * supported. For each supported command, a method handleCOMMANDCommand
> > exists.
> > * This method actually takes action based on the command. Generally, a
> > * printCOMMANDHelp method also exists, and prints out the help message
> > for
> > - * that specific command. For example, see {@link
> > #handleListCommand(List)}
> > + * that specific command. For example, see {@link #handleListCommand(int)}
> > * and {@link #printListHelp()}.
> > * </p>
> > * Sample usage:
> > @@ -72,6 +71,7 @@
> >
> >
> > DeploymentConfiguration config = null;
> > + private static OptionParser optionParser;
> >
> > /**
> > * Creates a new instance
> > @@ -125,11 +125,11 @@
> > /**
> > * Handles the 'list' command
> > *
> > - * @param args the arguments to the list command
> > * @return result of handling the command. SUCCESS if no errors
> > occurred.
> > */
> > - public int handleListCommand(List<String> args) {
> > - if (args.contains("help")) {
> > + public int handleListCommand(int order) {
> > + List<String> args = optionParser.getValuesFromOrder(order);
> > + if (optionParser.getOptionFromOrder(order + 1) ==
> > OptionsDefinitions.OPTIONS.NODASHHELP) {
>
> No op on this +1. It is terribly untrasnaprrent. See below.
> > printListHelp();
> > return SUCCESS;
> > }
> > @@ -169,33 +169,29 @@
> > /**
> > * Handles the 'get' command.
> > *
> > - * @param args the arguments to the get command
> > * @return an integer representing success (SUCCESS) or error
> > handling the
> > * get command.
> > */
> > - public int handleGetCommand(List<String> args) {
> > - if (args.contains("help")) {
> > + public int handleGetCommand(int order) {
> > + List<String> args = optionParser.getValuesFromOrder(order);
> > + if (optionParser.getOptionFromOrder(order + 1) ==
> > OptionsDefinitions.OPTIONS.NODASHHELP) {
> > printGetHelp();
> > return SUCCESS;
> > }
> >
> > - if (args.size() != 1) {
> > - printGetHelp();
> > - return ERROR;
> > - }
> > -
> > Map<String, Setting<String>> all = config.getRaw();
> >
> > - String key = args.get(0);
> > - String value = null;
> > - if (all.containsKey(key)) {
> > - value = all.get(key).getValue();
> > - OutputController.getLogger().printOutLn(value);
> > - return SUCCESS;
> > - } else {
> > -
> > OutputController.getLogger().log(OutputController.Level.MESSAGE_ALL,
> > R("CLUnknownProperty", key));
> > - return ERROR;
> > + for (String key : args) {
> > + String value = null;
> > + if (all.containsKey(key)) {
> > + value = all.get(key).getValue();
> > + OutputController.getLogger().printOutLn(key+": "+value);
> > + } else {
> > +
> > OutputController.getLogger().log(OutputController.Level.MESSAGE_ALL,
> > R("CLUnknownProperty", key));
> > + return ERROR;
> > + }
> > }
> > + return SUCCESS;
> > }
> >
> > /**
> > @@ -210,39 +206,46 @@
> > /**
> > * Handles the 'set' command
> > *
> > - * @param args the arguments to the set command
> > * @return an integer indicating success (SUCCESS) or error in
> > handling
> > * the command
> > */
> > - public int handleSetCommand(List<String> args) {
> > - if (args.contains("help")) {
> > + public int handleSetCommand(int order) {
> > + List<String> args = optionParser.getValuesFromOrder(order);
> > + args = OptionParser.splitListOnEquals(args);
> > + if (optionParser.getOptionFromOrder(order + 1) ==
> > OptionsDefinitions.OPTIONS.NODASHHELP) {
> > printSetHelp();
> > return SUCCESS;
> > }
> >
> > - if (args.size() != 2) {
> > + if (args.size() % 2 != 0) {
> > printSetHelp();
> > return ERROR;
> > }
> > + String key = "";
> > + String value;
> >
> > - String key = args.get(0);
> > - String value = args.get(1);
> > -
> > - if (config.getRaw().containsKey(key)) {
> > - Setting<String> old = config.getRaw().get(key);
> > - if (old.getValidator() != null) {
> > - try {
> > - old.getValidator().validate(value);
> > - } catch (IllegalArgumentException e) {
> > -
> > OutputController.getLogger().log(OutputController.Level.WARNING_ALL,
> > R("CLIncorrectValue", old.getName(), value,
> > old.getValidator().getPossibleValues()));
> > - OutputController.getLogger().log(e);
> > - return ERROR;
> > + for (String arg : args) {
> > + if (args.indexOf(arg) % 2 == 0) {
> > + key = arg;
> > + } else {
> > + value = arg;
> > + if (config.getRaw().containsKey(key)) {
> > + Setting<String> old = config.getRaw().get(key);
> > + if (old.getValidator() != null) {
> > + try {
> > + old.getValidator().validate(value);
> > + } catch (IllegalArgumentException e) {
> > +
> > OutputController.getLogger().log(OutputController.Level.WARNING_ALL,
> > R("CLIncorrectValue", old.getName(), value,
> > old.getValidator().getPossibleValues()));
> > + OutputController.getLogger().log(e);
> > + return ERROR;
> > + }
> > + }
> > + config.setProperty(key, value);
> > + } else {
> > +
> > OutputController.getLogger().printOutLn(R("CLWarningUnknownProperty",
> > key));
> > + config.setProperty(key, value);
> > }
> > }
> > - config.setProperty(key, value);
> > - } else {
> > -
> > OutputController.getLogger().printOutLn(R("CLWarningUnknownProperty",
> > key));
> > - config.setProperty(key, value);
> > }
> >
> > try {
> > @@ -267,33 +270,29 @@
> > /**
> > * Handles the 'reset' command
> > *
> > - * @param args the arguments to the reset command
> > * @return an integer indicating success (SUCCESS) or error in
> > handling
> > * the command
> > */
> > - public int handleResetCommand(List<String> args) {
> > - if (args.contains("help")) {
> > + public int handleResetCommand(int order) {
> > + List<String> args = optionParser.getValuesFromOrder(order);
> > + if (optionParser.getOptionFromOrder(order + 1) ==
> > OptionsDefinitions.OPTIONS.NODASHHELP) {
> > printResetHelp();
> > return SUCCESS;
> > }
> >
> > - if (args.size() != 1) {
> > - printResetHelp();
> > - return ERROR;
> > - }
> > -
> > - String key = args.get(0);
> > -
> > boolean resetAll = false;
> > - if (key.equals("all")) {
> > + if (args.contains("all")) {
> > resetAll = true;
> > + if (args.size() > 1) {
> > + for (String arg : args) {
> > + if (!arg.equals("all")) {
> > +
> > OutputController.getLogger().log(OutputController.Level.MESSAGE_ALL,
> > R("CLUnknownCommand", arg));
> > + }
> > + }
> > + }
> > }
> >
> > Map<String, Setting<String>> all = config.getRaw();
> > - if (!resetAll && !all.containsKey(key)) {
> > -
> > OutputController.getLogger().log(OutputController.Level.MESSAGE_ALL,
> > R("CLUnknownProperty", key));
> > - return ERROR;
> > - }
> >
> > if (resetAll) {
> > for (String aKey: all.keySet()) {
> > @@ -301,8 +300,15 @@
> > setting.setValue(setting.getDefaultValue());
> > }
> > } else {
> > - Setting<String> setting = all.get(key);
> > - setting.setValue(setting.getDefaultValue());
> > + for(String key : args) {
> > + if (!all.containsKey(key)) {
> > +
> > OutputController.getLogger().log(OutputController.Level.MESSAGE_ALL,
> > R("CLUnknownProperty", key));
> > + return ERROR;
> > + } else {
> > + Setting<String> setting = all.get(key);
> > + setting.setValue(setting.getDefaultValue());
> > + }
> > + }
> > }
> >
> > try {
> > @@ -325,42 +331,6 @@
> > }
> >
> > /**
> > - * Handles the 'info' command
> > - *
> > - * @param args the arguments to the info command
> > - * @return an integer indicating success (SUCCESS) or error in
> > handling
> > - * the command
> > - */
> > - public int handleInfoCommand(List<String> args) {
> > - if (args.contains("help")) {
> > - printInfoHelp();
> > - return SUCCESS;
> > - }
> > -
> > - if (args.size() != 1) {
> > - printInfoHelp();
> > - return ERROR;
> > - }
> > -
> > - Map<String, Setting<String>> all = config.getRaw();
> > -
> > - String key = args.get(0);
> > - Setting<String> value = all.get(key);
> > - if (value == null) {
> > -
> > OutputController.getLogger().log(OutputController.Level.MESSAGE_ALL,
> > R("CLNoInfo"));
> > - return ERROR;
> > - } else {
> > - OutputController.getLogger().printOutLn(R("CLDescription",
> > value.getDescription()));
> > - OutputController.getLogger().printOutLn(R("CLValue",
> > value.getValue()));
> > - if (value.getValidator() != null) {
> > - OutputController.getLogger().printOutLn("\t" +
> > R("VVPossibleValues", value.getValidator().getPossibleValues()));
> > - }
> > - OutputController.getLogger().printOutLn(R("CLValueSource",
> > value.getSource()));
> > - return SUCCESS;
> > - }
> > - }
> > -
> > - /**
> > * Prints a help message for the 'check' command
> > */
> > public void printCheckHelp() {
> > @@ -370,14 +340,46 @@
> > }
> >
> > /**
> > - * Handles the 'check' command
> > + * Handles the 'info' command
> > *
> > - * @param args the arguments to the check command.
> > * @return an integer indicating success (SUCCESS) or error in
> > handling
> > * the command
> > */
> > - public int handleCheckCommand(List<String> args) {
> > - if (args.contains("help")) {
> > + public int handleInfoCommand(int order) {
> > + List<String> args = optionParser.getValuesFromOrder(order);
> > + if (optionParser.getOptionFromOrder(order + 1) ==
> > OptionsDefinitions.OPTIONS.NODASHHELP) {
> > + printInfoHelp();
> > + return SUCCESS;
> > + }
> > +
> > + Map<String, Setting<String>> all = config.getRaw();
> > +
> > + for (String key : args) {
> > + Setting<String> value = all.get(key);
> > + if (value == null) {
> > +
> > OutputController.getLogger().log(OutputController.Level.MESSAGE_ALL,
> > R("CLNoInfo"));
> > + return ERROR;
> > + } else {
> > + OutputController.getLogger().printOutLn(R("CLDescription",
> > value.getDescription()));
> > + OutputController.getLogger().printOutLn(R("CLValue",
> > value.getValue()));
> > + if (value.getValidator() != null) {
> > + OutputController.getLogger().printOutLn("\t" +
> > R("VVPossibleValues", value.getValidator().getPossibleValues()));
> > + }
> > + OutputController.getLogger().printOutLn(R("CLValueSource",
> > value.getSource()));
> > + }
> > + }
> > + return SUCCESS;
> > + }
> > +
> > + /**
> > + * Handles the 'check' command
> > + *
> > + * @return an integer indicating success (SUCCESS) or error in
> > handling
> > + * the command
> > + */
> > + public int handleCheckCommand(int order) {
> > + List<String> args = optionParser.getValuesFromOrder(order);
> > + if (optionParser.getOptionFromOrder(order + 1) ==
> > OptionsDefinitions.OPTIONS.NODASHHELP) {
> > printCheckHelp();
> > return SUCCESS;
> > }
> > @@ -416,48 +418,41 @@
> > * into two pieces: the first element is assumend to be the command,
> > and
> > * everything after is taken to be the argument to the command.
> > *
> > - * @param commandAndArgs A string array representing the command and
> > - * arguments to take action on
> > * @return an integer representing an error code or SUCCESS if no
> > problems
> > * occurred.
> > */
> > - public int handle(String[] commandAndArgs) {
> > + public int handle() {
> >
> > - if (commandAndArgs == null) {
> > - throw new NullPointerException("command is null");
> > + int val = ERROR;
> > + int order = 0;
> > + for (OptionsDefinitions.OPTIONS option :
> > optionParser.getOptionsOrder()) {
> > + if (option.equals(OptionsDefinitions.OPTIONS.RESET)) {
> > + val = handleResetCommand(order);
> > + }
> > + if (option.equals(OptionsDefinitions.OPTIONS.LIST)) {
> > + val = handleListCommand(order);
> > + }
> > + if (option.equals(OptionsDefinitions.OPTIONS.SET)) {
> > + val = handleSetCommand(order);
> > + }
> > + if (option.equals(OptionsDefinitions.OPTIONS.GET)) {
> > + val = handleGetCommand(order);
> > + }
> > + if (option.equals(OptionsDefinitions.OPTIONS.INFO)) {
> > + val = handleInfoCommand(order);
> > + }
> > + if (option.equals(OptionsDefinitions.OPTIONS.CHECK)) {
> > + val = handleCheckCommand(order);
> > + }
> > + if (optionParser.mainArgExists()) {
> > +
> > OutputController.getLogger().log(OutputController.Level.MESSAGE_ALL,
> > R("CLUnknownCommand", optionParser.getMainArgs()));
> > + handleHelpCommand();
> > + val = ERROR;
> > + } else if
> > (option.equals(OptionsDefinitions.OPTIONS.NODASHHELP) && (order == 0 ||
> > (optionParser.getOptionFromOrder(0) == OptionsDefinitions.OPTIONS.HEADLESS
> > && order == 1))) {
> > + val = handleHelpCommand();
> > + }
> > + order++;
> > }
> > -
> > - if (commandAndArgs.length == 0) {
> > - handleHelpCommand();
> > - return ERROR;
> > - }
> > -
> > - String command = commandAndArgs[0];
> > - String[] argsArray = new String[commandAndArgs.length - 1];
> > - System.arraycopy(commandAndArgs, 1, argsArray, 0,
> > commandAndArgs.length - 1);
> > - List<String> arguments = new
> > ArrayList<>(Arrays.asList(argsArray));
> > -
> > - int val;
> > - if (command.equals(OptionsDefinitions.OPTIONS.NODASHHELP.option))
> > {
> > - val = handleHelpCommand();
> > - } else if (command.equals(OptionsDefinitions.OPTIONS.LIST.option))
> > {
> > - val = handleListCommand(arguments);
> > - } else if (command.equals(OptionsDefinitions.OPTIONS.SET.option))
> > {
> > - val = handleSetCommand(arguments);
> > - } else if
> > (command.equals(OptionsDefinitions.OPTIONS.RESET.option)) {
> > - val = handleResetCommand(arguments);
> > - } else if (command.equals(OptionsDefinitions.OPTIONS.GET.option))
> > {
> > - val = handleGetCommand(arguments);
> > - } else if (command.equals(OptionsDefinitions.OPTIONS.INFO.option))
> > {
> > - val = handleInfoCommand(arguments);
> > - } else if
> > (command.equals(OptionsDefinitions.OPTIONS.CHECK.option)) {
> > - val = handleCheckCommand(arguments);
> > - } else {
> > -
> > OutputController.getLogger().log(OutputController.Level.MESSAGE_ALL,
> > R("CLUnknownCommand", command));
> > - handleHelpCommand();
> > - val = ERROR;
> > - }
> > -
> > return val;
> > }
> >
> > @@ -466,12 +461,17 @@
> > * @param args the command line arguments to this program
> > */
> > public static void main(String[] args) throws Exception {
> > + optionParser = new OptionParser(args,
> > OptionsDefinitions.getItwsettingsCommands());
> > + if (optionParser.hasOption(OptionsDefinitions.OPTIONS.HEADLESS)) {
> > + JNLPRuntime.setHeadless(true);
> > + }
>
> Yes. this is working for me. ty!
Glad to hear, thanks for your help ! I finally managed to get the pop up window to appear
thanks to your help :)
>
> > DeploymentConfiguration.move14AndOlderFilesTo15StructureCatched();
> > +
> > if (args.length == 0) {
> > ControlPanel.main(new String[] {});
> > } else {
> > CommandLine cli = new CommandLine();
> > - int result = cli.handle(args);
> > + int result = cli.handle();
> >
> > // instead of returning, use JNLPRuntime.exit() so we can
> > pass back
> > // error codes indicating success or failure. Otherwise using
> > diff -r e1c7156ed0a1
> > netx/net/sourceforge/jnlp/resources/Messages.properties
> > --- a/netx/net/sourceforge/jnlp/resources/Messages.properties Thu Sep 18
> > 13:18:11 2014 -0400
> > +++ b/netx/net/sourceforge/jnlp/resources/Messages.properties Mon Sep 22
> > 16:47:47 2014 -0400
> > @@ -297,7 +297,7 @@
> > IBOSet=Sets the setting to the new value, after checking that it is an
> > appropriate value.
> > IBOResetAll= Resets all settings to their original values.
> > IBOReset=Resets the named setting to its original value.
> > -IBOCheck=Checks that the current value of the setting is a valid value.
> > +IBOCheck=Checks that the current settings have valid values.
> >
> > PBOFile=Specifies a policy file path to open. If exactly one argument is
> > given, and it is not this flag, it is interpreted as a file path to
> > open, as if this flag was given first. This flag exists \
> > mostly for compatibility with Policy Tool, but is also needed when
> > opening a policy file and also using the -codebase flag.
> > diff -r e1c7156ed0a1
> > netx/net/sourceforge/jnlp/util/optionparser/OptionParser.java
> > --- a/netx/net/sourceforge/jnlp/util/optionparser/OptionParser.java Thu Sep
> > 18 13:18:11 2014 -0400
> > +++ b/netx/net/sourceforge/jnlp/util/optionparser/OptionParser.java Mon Sep
> > 22 16:47:47 2014 -0400
> > @@ -40,6 +40,7 @@
> >
> > import java.util.ArrayList;
> > import java.util.Arrays;
> > +import java.util.Collections;
> > import java.util.HashMap;
> > import java.util.List;
> > import java.util.Map;
> > @@ -58,7 +59,8 @@
> > //null represents all values that are parsed that don't have a
> > corresponding option which are potential main args
> > private final OptionsDefinitions.OPTIONS mainArg = null;
> > private List<String> result;
> > -
> > + private List<OptionsDefinitions.OPTIONS> orderedOptions;
> > + private List<Integer> orderedAmountOfValues;
>
>
> Ok. This is weekpoint. You cannot go by this hackisch way:(
Agreed :) I was not happy with my implementation either, I could make another attempt
if we want to support this but I think it is much simpler/better to allow only one command at a time,
especially since you mentioned there is probably no target audience for this feature.
> If you wont to support this ferature, you have to go by some deffinition
> similar to the one I
> suggested above, and adapt internal implementation of parser.
>
> In result the api of this parser will change. I'm c urrently not sure how.
> Probably return some list
> (arguments) of lists (their values)? But how to sanitize the order of
> different swithces. Some
> kind of iterable? In that case the
>
> Well This seems to me like in that case the parser will becoime moreover
> verifier and sanitizer. But
> also the transferer from string to objects... Well think about it :)
>
> See your reply!
Yeah like I mentioned I agree we don't need this feature and keeping it
simple is better in this case. I don't think it adds much benefit and I could
see users preferring to use one command at a time like you mentioned to see
each step is working as intended.
> J.
Thank you,
Lukasz Dracz
-------------- next part --------------
A non-text attachment was scrubbed...
Name: itweb-settingsOptionParser-6.patch
Type: text/x-patch
Size: 24530 bytes
Desc: not available
URL: <http://mail.openjdk.java.net/pipermail/distro-pkg-dev/attachments/20140925/6763a228/itweb-settingsOptionParser-6-0001.patch>
More information about the distro-pkg-dev
mailing list