Ejemplo n.º 1
0
        public void ParseCmdLine(string[] args)
        {
            m_config = new BulkerConfig();

            CmdLineConfig cfg = new CmdLineConfig(new CmdLineSwitch[]
            {
                new CmdLineSwitch("R", false, false, "Record file", "Record file", null),
                new CmdLineSwitch("L", false, false, "Log file", "Log file", null),
                new CmdLineSwitch("C", false, false, "Cover source full path to root", "Cover source full path to root", null),
                new CmdLineSwitch("B", true, false, "Bulk update books", "Bulk update books", null),
                new CmdLineSwitch("Bs", true, false, "Update book summary (force)", "Summary", null),
                new CmdLineSwitch("D", true, false, "Bulk update dvds", "Bulk update dvds", null),
                new CmdLineSwitch("Ds", true, false, "Update dvd summary (force)", "Summary", null),
                new CmdLineSwitch("PW", true, false, "Show password", "show password for debugging purposes", null),
            });

            CmdLine cmdLine = new CmdLine(cfg);

            string sError;

            if (!cmdLine.FParse(args, m_config, null, out sError))
            {
                cmdLine.Usage(ConsoleWriteDelegate);
            }
        }
Ejemplo n.º 2
0
 public DvdUpdater(BulkerConfig config)
 {
     m_config = config;
     m_plDvd  = new List <DvdElementEx>();
 }
Ejemplo n.º 3
0
 public BookUpdater(BulkerConfig config)
 {
     m_config  = config;
     m_plBooks = new List <BookElementEx>();
 }