Beispiel #1
0
        public static void Configure(CommandLineApplication app)
        {
            app.Name = "dbtool";
            app.HelpOption("-?|-h|--help");

            var options = new GlobalOptions();

            options.LocalConfigFilePathOption =
                app.Option("--config|-c",
                           "Config file path",
                           CommandOptionType.SingleValue)
                .Accepts(configure => configure.ExistingFile("Configuration file does not exist"));

            options.FormatOption = app.Option("--format|-f",
                                              "Exporting/importing format (xml | json)",
                                              CommandOptionType.SingleValue)
                                   .Accepts(config => config.Values(true, "xml", "json"));


            // Internal commands
            app.Command("actualize", c => ActualizeCommand.Configure(c, options));

            // Register commands
            app.Command("export", c => ExportCommand.Configure(c, options));
            app.Command("import", c => ImportCommand.Configure(c, options));
            app.Command("connections", c => ConnectionsCommand.Configure(c, options));
            app.Command("filter-tables", c => FilterTablesCommand.Configure(c, options));

            Func <int> runCommandFunc = new RootCommand(app, options).Run;

            app.OnExecute(runCommandFunc);
        }
        public static void Configure(CommandLineApplication command, GlobalOptions options)
        {
            command.Description = "Updates the connection filter: sets the list of tables which will be processed on export. ";
            command.HelpOption("-?|-h|--help");

            command.Options.Add(options.LocalConfigFilePathOption);

            var connectionArg = command.Argument("<сonnection ID>", "The ID of some previously registered connection")
                                .IsRequired();

            var tablesArg = command.Argument("<tables>", "Table names separeated by comma. Leave this argument empty to clear the connection filter.");

            Func <int> runCommandFunc = new FilterTablesCommand(connectionArg, tablesArg, options).Run;

            command.OnExecute(runCommandFunc);
        }