From: Carl Hetherington Date: Fri, 2 Oct 2015 09:51:27 +0000 (+0100) Subject: Add --servers option to dcpomatic_cli. X-Git-Tag: v2.3.13~2 X-Git-Url: https://main.carlh.net/gitweb/?p=dcpomatic.git;a=commitdiff_plain;h=e42d143c9d8271c018ce3139804727a41a26c97b Add --servers option to dcpomatic_cli. --- diff --git a/src/tools/dcpomatic_cli.cc b/src/tools/dcpomatic_cli.cc index af148b2fa..14b08d299 100644 --- a/src/tools/dcpomatic_cli.cc +++ b/src/tools/dcpomatic_cli.cc @@ -43,6 +43,7 @@ using std::cerr; using std::cout; using std::vector; using std::pair; +using std::setw; using std::list; using boost::shared_ptr; using boost::optional; @@ -51,7 +52,7 @@ using boost::dynamic_pointer_cast; static void help (string n) { - cerr << "Syntax: " << n << " [OPTION] \n" + cerr << "Syntax: " << n << " [OPTION] []\n" << " -v, --version show DCP-o-matic version\n" << " -h, --help show this help\n" << " -f, --flags show flags passed to C++ compiler on build\n" @@ -59,6 +60,7 @@ help (string n) << " -r, --no-remote do not use any remote servers\n" << " -j, --json run a JSON server on the specified port\n" << " -k, --keep-going keep running even when the job is complete\n" + << " -s, --servers just display a list of encoding servers that DCP-o-matic is configured to use; don't encode\n" << " --dump just dump a summary of the film's settings; don't encode\n" << "\n" << " is the film directory.\n"; @@ -112,6 +114,61 @@ print_dump (shared_ptr film) } } +static void +show_servers () +{ + while (true) { + int N = 0; + list servers = ServerFinder::instance()->servers (); + + if (Config::instance()->use_any_servers ()) { + if (servers.empty ()) { + cout << "No encoding servers found.\n"; + ++N; + } else { + cout << std::left << setw(24) << "Host" << " Threads\n"; + ++N; + BOOST_FOREACH (ServerDescription const & i, servers) { + cout << std::left << setw(24) << i.host_name() << " " << i.threads() << "\n"; + ++N; + } + } + } else { + vector configured_servers = Config::instance()->servers(); + if (configured_servers.empty()) { + cout << "No configured servers, and DCP-o-matic is not set to search for any server.\n"; + ++N; + } else { + cout << std::left << setw(24) << "Host" << " Status Threads\n"; + ++N; + BOOST_FOREACH (string const & i, Config::instance()->servers()) { + cout << std::left << setw(24) << i << " "; + optional threads; + BOOST_FOREACH (ServerDescription const & j, servers) { + if (i == j.host_name()) { + threads = j.threads(); + } + } + if (static_cast(threads)) { + cout << "UP " << threads.get() << "\n"; + } else { + cout << "DOWN\n"; + } + ++N; + } + } + } + + + dcpomatic_sleep (1); + + for (int i = 0; i < N; ++i) { + cout << "\033[1A\033[2K"; + } + } +} + + int main (int argc, char* argv[]) { @@ -121,6 +178,7 @@ main (int argc, char* argv[]) optional json_port; bool keep_going = false; bool dump = false; + bool servers = false; int option_index = 0; while (true) { @@ -132,12 +190,13 @@ main (int argc, char* argv[]) { "no-remote", no_argument, 0, 'r'}, { "json", required_argument, 0, 'j'}, { "keep-going", no_argument, 0, 'k' }, + { "servers", no_argument, 0, 's' }, /* Just using A, B, C ... from here on */ { "dump", no_argument, 0, 'A' }, { 0, 0, 0, 0 } }; - int c = getopt_long (argc, argv, "vhfnrj:kA", long_options, &option_index); + int c = getopt_long (argc, argv, "vhfnrj:kAs", long_options, &option_index); if (c == -1) { break; @@ -168,9 +227,17 @@ main (int argc, char* argv[]) case 'A': dump = true; break; + case 's': + servers = true; + break; } } + if (servers) { + show_servers (); + exit (EXIT_SUCCESS); + } + if (optind >= argc) { help (argv[0]); exit (EXIT_FAILURE); @@ -231,7 +298,9 @@ main (int argc, char* argv[]) list > jobs = JobManager::instance()->get (); if (!first && progress) { - cout << "\033[" << jobs.size() << "A"; + for (size_t i = 0; i < jobs.size(); ++i) { + cout << "\033[1A\033[2K"; + } cout.flush (); }