]> git.argeo.org Git - gpl/argeo-slc.git/blobdiff - runtime/org.argeo.slc.launcher/src/main/java/org/argeo/slc/cli/SlcMain.java
Remove useless comments
[gpl/argeo-slc.git] / runtime / org.argeo.slc.launcher / src / main / java / org / argeo / slc / cli / SlcMain.java
index 4aa0d095bdcc7b906fac601366a170560a6a579b..b74d5f0949d178866345cfc4644274a3c36f4b52 100644 (file)
@@ -41,46 +41,6 @@ public class SlcMain {
        /** Unique launch flow */
        public static String UNIQUE_LAUNCH_FLOW_PROPERTY = "slc.launch.flow";
 
-       // public enum Type {
-       // standalone, agent, server
-       // }
-
-       // private static Boolean debug = true;
-
-       // private final static String BOOTSTRAP_LOG4J_CONFIG =
-       // "org/argeo/slc/cli/bootstrapLog4j.properties";
-       // private final static String DEFAULT_AGENT_CONTEXT =
-       // "classpath:org/argeo/slc/cli/spring-agent-default.xml";
-
-       // private final static Option typeOpt = OptionBuilder.withLongOpt("mode")
-       // .withArgName("mode").hasArg()
-       // .withDescription("Execution type, one of: " + listTypeValues())
-       // .create('t');
-       //
-       // private final static Option propertyOpt = OptionBuilder
-       // .withLongOpt("property").withArgName("prop1=val1,prop2=val2")
-       // .hasArgs().withValueSeparator(',')
-       // .withDescription("use value for given property").create('p');
-       //
-       // private final static Option propertiesOpt = OptionBuilder
-       // .withLongOpt("properties").withArgName("properties file").hasArgs()
-       // .withValueSeparator(',')
-       // .withDescription("load properties from file (-p has priority)")
-       // .create('P');
-       //
-       // private final static Option moduleOpt =
-       // OptionBuilder.withLongOpt("module")
-       // .withArgName("module").hasArg().withDescription("Execution module")
-       // .create('m');
-       //
-       // private final static Option flowsOpt = OptionBuilder.withLongOpt("flows")
-       // .withArgName("flows").hasArg().withDescription("Flows to execute")
-       // .create('f');
-       //
-       // private final static Option runtimeOpt = OptionBuilder
-       // .withLongOpt("runtime").withArgName("runtime").hasArg()
-       // .withDescription("Runtime URL").create('r');
-
        private final static Options options;
 
        private final static String commandName = "slc";
@@ -100,21 +60,10 @@ public class SlcMain {
 
        static {
                options = new Options();
-               // options.addOption(typeOpt);
-               // options.addOption(moduleOpt);
-               // options.addOption(flowsOpt);
-               // options.addOption(propertyOpt);
-               // options.addOption(propertiesOpt);
-               // options.addOption(runtimeOpt);
        }
 
        @SuppressWarnings({ "unchecked" })
        public static void main(String[] args) {
-               // Type type = null;
-               // Properties properties = new Properties();
-               // String flows = null;
-               // String urlStr = null;
-
                String module = null;
                String moduleUrl = null;
                String flow = null;
@@ -182,69 +131,6 @@ public class SlcMain {
                        // start runtime
                        osgiBoot.startBundles(bundlesToStart);
 
-                       // Bundle bundle = (Bundle) osgiBoot.getBundlesBySymbolicName().get(
-                       // "org.argeo.slc.specs");
-                       // bundle.loadClass(Execu)
-                       //
-                       // // retrieve modulesManager
-                       // BundlesManager bundlesManager = new
-                       // BundlesManager(bundleContext);
-                       // ExecutionModulesManager modulesManager = bundlesManager
-                       // .getSingleService(ExecutionModulesManager.class, null, true);
-                       //
-                       // RealizedFlow realizedFlow = RealizedFlow.create(module, null,
-                       // flow,
-                       // null);
-                       // modulesManager.start(new BasicNameVersion(module, "0.0.0"));
-                       // modulesManager.execute(realizedFlow);
-
-                       // osgiBoot.bootstrap();
-                       // osgiBoot.bootstrap();
-
-                       // Mode
-                       // String typeStr = cl.getOptionValue(typeOpt.getOpt());
-                       // if (typeStr == null) {
-                       // type = Type.standalone;
-                       // } else {
-                       // try {
-                       // type = Type.valueOf(typeStr);
-                       // } catch (IllegalArgumentException e) {
-                       // throw new SlcException("Unrecognized mode '" + typeStr
-                       // + "'", e);
-                       // }
-                       // }
-                       //
-                       // // Script
-                       // if (type.equals(Type.standalone)) {
-                       // if (!cl.hasOption(moduleOpt.getOpt()))
-                       // throw new SlcException("Type " + Type.standalone
-                       // + " requires option '" + moduleOpt.getLongOpt()
-                       // + "'");
-                       // module = cl.getOptionValue(moduleOpt.getOpt());
-                       //
-                       // // Targets
-                       // if (cl.hasOption(flowsOpt.getOpt()))
-                       // flows = cl.getOptionValue(flowsOpt.getOpt());
-                       // }
-                       //
-                       // // Properties
-                       // if (cl.hasOption(propertiesOpt.getOpt())) {
-                       // for (String propertyFile : cl.getOptionValues(propertiesOpt
-                       // .getOpt())) {
-                       // loadPropertyFile(properties, propertyFile);
-                       // }
-                       // }
-                       // if (cl.hasOption(propertyOpt.getOpt())) {
-                       // for (String property : cl.getOptionValues(propertyOpt.getOpt()))
-                       // {
-                       // addProperty(properties, property);
-                       // }
-                       // }
-                       //
-                       // // Runtime
-                       // if (cl.hasOption(runtimeOpt.getOpt())) {
-                       // urlStr = cl.getOptionValue(runtimeOpt.getOpt());
-                       // }
                } catch (ParseException e) {
                        System.err.println("Problem with command line arguments. "
                                        + e.getMessage());
@@ -257,40 +143,12 @@ public class SlcMain {
                        e.printStackTrace();
                        badExit();
                }
-
-               // if (debug) {
-               // debug("Mode: " + type);
-               // if (urlStr != null)
-               // debug("Runtime: " + urlStr);
-               // debug("User properties: " + properties);
-               // if (module != null)
-               // debug("Module: " + module);
-               // if (flows != null)
-               // debug("Flows: " + flows);
-               // }
-               //
-               // // Standalone
-               // if (type.equals(Type.standalone)) {
-               // }
-               // // Agent
-               // else if (type.equals(Type.agent)) {
-               // }
        }
 
        public static void printUsage() {
                new HelpFormatter().printHelp(commandName, options, true);
        }
 
-       // private static String listTypeValues() {
-       // StringBuffer buf = new StringBuffer("");
-       // for (Type mode : Type.values()) {
-       // buf.append(mode).append(", ");
-       // }
-       // String str = buf.toString();
-       // // unsafe, but there will be at least one value in the enum
-       // return str.substring(0, str.length() - 2);
-       // }
-
        protected static void addProperty(Properties properties, String property) {
                int eqIndex = property.indexOf('=');
                if (eqIndex == 0)