X-Git-Url: https://git.carlh.net/gitweb/?a=blobdiff_plain;f=src%2Ftools%2Fdcpomatic_cli.cc;h=f049c0c919cc6fc12a6b87150ba6b0a0b85a8976;hb=985e727e001e1a92ae035364a9cbf1ff99522ff1;hp=9572c79733284cfaf20593856c6f39cdf52d388f;hpb=29377b18a8cef724c8e2de2316a66ceae89a2e9a;p=dcpomatic.git diff --git a/src/tools/dcpomatic_cli.cc b/src/tools/dcpomatic_cli.cc index 9572c7973..f049c0c91 100644 --- a/src/tools/dcpomatic_cli.cc +++ b/src/tools/dcpomatic_cli.cc @@ -1,5 +1,5 @@ /* - Copyright (C) 2012-2015 Carl Hetherington + Copyright (C) 2012-2017 Carl Hetherington This file is part of DCP-o-matic. @@ -33,6 +33,7 @@ #include "lib/ratio.h" #include "lib/video_content.h" #include "lib/audio_content.h" +#include "lib/dcpomatic_log.h" #include #include #include @@ -54,17 +55,19 @@ static void help (string 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" - << " -n, --no-progress do not print progress to stdout\n" - << " -r, --no-remote do not use any remote servers\n" - << " -t, --threads specify number of local encoding threads (overriding configuration)\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" - << " -d, --dcp-path echo DCP's path to stdout on successful completion (implies -n)\n" - << " --dump just dump a summary of the film's settings; don't encode\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" + << " -n, --no-progress do not print progress to stdout\n" + << " -r, --no-remote do not use any remote servers\n" + << " -t, --threads specify number of local encoding threads (overriding configuration)\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 specify servers to use in a text file\n" + << " -l, --list-servers just display a list of encoding servers that DCP-o-matic is configured to use; don't encode\n" + << " -d, --dcp-path echo DCP's path to stdout on successful completion (implies -n)\n" + << " -c, --config directory containing config.xml and cinemas.xml\n" + << " --dump just dump a summary of the film's settings; don't encode\n" << "\n" << " is the film directory.\n"; } @@ -82,13 +85,13 @@ print_dump (shared_ptr film) cout << "\n" << c->path(0) << "\n" << "\tat " << c->position().seconds () - << " length " << c->full_length().seconds () + << " length " << c->full_length(film).seconds () << " start trim " << c->trim_start().seconds () << " end trim " << c->trim_end().seconds () << "\n"; if (c->video) { cout << "\t" << c->video->size().width << "x" << c->video->size().height << "\n" - << "\t" << c->active_video_frame_rate() << "fps\n" + << "\t" << c->active_video_frame_rate(film) << "fps\n" << "\tcrop left " << c->video->left_crop() << " right " << c->video->right_crop() << " top " << c->video->top_crop() @@ -116,51 +119,62 @@ print_dump (shared_ptr film) } static void -show_servers () +list_servers () { while (true) { int N = 0; - list servers = EncodeServerFinder::instance()->servers (); + list servers = EncodeServerFinder::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 (EncodeServerDescription const & i, servers) { - cout << std::left << setw(24) << i.host_name() << " " << i.threads() << "\n"; - ++N; - } - } + /* This is a bit fiddly because we want to list configured servers that are down as well + as all those (configured and found by broadcast) that are up. + */ + + if (servers.empty() && Config::instance()->servers().empty()) { + cout << "No encoding servers found or configured.\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 (EncodeServerDescription const & j, servers) { - if (i == j.host_name()) { - threads = j.threads(); - } - } - if (static_cast(threads)) { - cout << "UP " << threads.get() << "\n"; + cout << std::left << setw(24) << "Host" << " Status Threads\n"; + ++N; + + /* Report the state of configured servers */ + BOOST_FOREACH (string i, Config::instance()->servers()) { + cout << std::left << setw(24) << i << " "; + + /* See if this server is on the active list; if so, remove it and note + the number of threads it is offering. + */ + optional threads; + list::iterator j = servers.begin (); + while (j != servers.end ()) { + if (i == j->host_name() && j->current_link_version()) { + threads = j->threads(); + list::iterator tmp = j; + ++tmp; + servers.erase (j); + j = tmp; } else { - cout << "DOWN\n"; + ++j; } - ++N; } + if (static_cast(threads)) { + cout << "UP " << threads.get() << "\n"; + } else { + cout << "DOWN\n"; + } + ++N; + } + + /* Now report any left that have been found by broadcast */ + BOOST_FOREACH (EncodeServerDescription const & i, servers) { + if (i.current_link_version()) { + cout << std::left << setw(24) << i.host_name() << " UP " << i.threads() << "\n"; + } else { + cout << std::left << setw(24) << i.host_name() << " bad version\n"; + } + ++N; } } - dcpomatic_sleep (1); for (int i = 0; i < N; ++i) { @@ -180,8 +194,10 @@ main (int argc, char* argv[]) optional json_port; bool keep_going = false; bool dump = false; - bool servers = false; + optional servers; + bool list_servers_ = false; bool dcp_path = false; + optional config; int option_index = 0; while (true) { @@ -194,14 +210,16 @@ main (int argc, char* argv[]) { "threads", required_argument, 0, 't'}, { "json", required_argument, 0, 'j'}, { "keep-going", no_argument, 0, 'k' }, - { "servers", no_argument, 0, 's' }, + { "servers", required_argument, 0, 's' }, + { "list-servers", no_argument, 0, 'l' }, { "dcp-path", no_argument, 0, 'd' }, + { "config", required_argument, 0, 'c' }, /* Just using A, B, C ... from here on */ { "dump", no_argument, 0, 'A' }, { 0, 0, 0, 0 } }; - int c = getopt_long (argc, argv, "vhfnrt:j:kAsd", long_options, &option_index); + int c = getopt_long (argc, argv, "vhfnrt:j:kAs:ldc:", long_options, &option_index); if (c == -1) { break; @@ -236,17 +254,44 @@ main (int argc, char* argv[]) dump = true; break; case 's': - servers = true; + servers = optarg; + break; + case 'l': + list_servers_ = true; break; case 'd': dcp_path = true; progress = false; break; + case 'c': + config = optarg; + break; } } + if (config) { + State::override_path = *config; + } + if (servers) { - show_servers (); + FILE* f = fopen_boost (*servers, "r"); + if (!f) { + cerr << "Could not open servers list file " << *servers << "\n"; + exit (EXIT_FAILURE); + } + vector servers; + while (!feof (f)) { + char buffer[128]; + if (fscanf (f, "%s.127", buffer) == 1) { + servers.push_back (buffer); + } + } + fclose (f); + Config::instance()->set_servers (servers); + } + + if (list_servers_) { + list_servers (); exit (EXIT_SUCCESS); } @@ -287,6 +332,8 @@ main (int argc, char* argv[]) exit (EXIT_SUCCESS); } + dcpomatic_log = film->log (); + ContentList content = film->content (); for (ContentList::const_iterator i = content.begin(); i != content.end(); ++i) { vector paths = (*i)->paths ();