Package ca.eandb.jdcp.console

Source Code of ca.eandb.jdcp.console.ConsoleMain

/*
* Copyright (c) 2008 Bradley W. Kimmel
*
* Permission is hereby granted, free of charge, to any person
* obtaining a copy of this software and associated documentation
* files (the "Software"), to deal in the Software without
* restriction, including without limitation the rights to use,
* copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the
* Software is furnished to do so, subject to the following
* conditions:
*
* The above copyright notice and this permission notice shall be
* included in all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
* OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
* NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
* HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
* WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
* OTHER DEALINGS IN THE SOFTWARE.
*/

package ca.eandb.jdcp.console;

import java.io.IOException;
import java.util.Properties;

import org.apache.log4j.PropertyConfigurator;

import ca.eandb.jdcp.JdcpUtil;
import ca.eandb.jdcp.client.Configuration;
import ca.eandb.jdcp.client.ConnectCommand;
import ca.eandb.jdcp.client.ScriptCommand;
import ca.eandb.jdcp.client.SetIdleTimeCommand;
import ca.eandb.jdcp.client.SynchronizeCommand;
import ca.eandb.jdcp.client.VerifyCommand;
import ca.eandb.util.args.ArgumentProcessor;
import ca.eandb.util.args.BooleanFieldOption;
import ca.eandb.util.args.StringFieldOption;
import ca.eandb.util.args.UnrecognizedCommand;

/**
* @author Brad
*
*/
public final class ConsoleMain {

  /**
   * @param args
   * @throws IOException
   */
  public static void main(String[] args) throws IOException {
    Properties props = new Properties(System.getProperties());
    props.load(ConsoleMain.class.getResourceAsStream("system.properties"));
    System.setProperties(props);

    JdcpUtil.initialize();
    PropertyConfigurator.configure(System.getProperties());

    ArgumentProcessor<ConsoleState> argProcessor = new ArgumentProcessor<ConsoleState>("");

    argProcessor.addOption("verbose", 'V', new BooleanFieldOption<Configuration>("verbose"));
    argProcessor.addOption("host", 'h', new StringFieldOption<Configuration>("host"));
    argProcessor.addOption("username", 'u', new StringFieldOption<Configuration>("username"));
    argProcessor.addOption("password", 'p', new StringFieldOption<Configuration>("password"));

    argProcessor.addCommand("verify", new VerifyCommand());
    argProcessor.addCommand("sync", new SynchronizeCommand());
    argProcessor.addCommand("idle", new SetIdleTimeCommand());
    argProcessor.addCommand("script", new ScriptCommand());
    argProcessor.addCommand("connect", new ConnectCommand());

    argProcessor.setDefaultCommand(UnrecognizedCommand.getInstance());

    argProcessor.processAnnotations(ConsoleState.class);
    argProcessor.process(args, new ConsoleState());
  }

}
TOP

Related Classes of ca.eandb.jdcp.console.ConsoleMain

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.