X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;f=src%2Ftools%2Fmakedcp.cc;h=c0fb7ccee3dff138d88370541261fd706daf3c4e;hb=4811c9ad4eaaaf584b9d87d4d9082d9c8e252d0a;hp=d3608059c3c0e47fde5c4a46d9f8d35fad1ca60c;hpb=c55d8bcda8f4da74bbc9489127354211cea8f2ff;p=dcpomatic.git diff --git a/src/tools/makedcp.cc b/src/tools/makedcp.cc index d3608059c..c0fb7ccee 100644 --- a/src/tools/makedcp.cc +++ b/src/tools/makedcp.cc @@ -36,8 +36,13 @@ #include "config.h" #include "log.h" -using namespace std; -using namespace boost; +using std::string; +using std::cerr; +using std::cout; +using std::vector; +using std::pair; +using std::list; +using boost::shared_ptr; static void help (string n) @@ -49,6 +54,7 @@ help (string n) << " -c, --config list configuration settings that affect output and quit\n" << " -t, --test run in test mode (repeatable UUID generation, timestamps etc.)\n" << " -n, --no-progress do not print progress to stdout\n" + << " -r, --no-remote do not use any remote servers\n" << "\n" << " is the film directory.\n"; } @@ -59,6 +65,7 @@ main (int argc, char* argv[]) string film_dir; bool test_mode = false; bool progress = true; + bool no_remote = false; int log_level = 1; int option_index = 0; @@ -70,11 +77,12 @@ main (int argc, char* argv[]) { "config", no_argument, 0, 'c'}, { "test", no_argument, 0, 't'}, { "no-progress", no_argument, 0, 'n'}, + { "no-remote", no_argument, 0, 'r'}, { "log-level", required_argument, 0, 'l' }, { 0, 0, 0, 0 } }; - int c = getopt_long (argc, argv, "vhdctnl:", long_options, &option_index); + int c = getopt_long (argc, argv, "vhdctnrl:", long_options, &option_index); if (c == -1) { break; @@ -96,6 +104,9 @@ main (int argc, char* argv[]) case 'n': progress = false; break; + case 'r': + no_remote = true; + break; case 'c': cout << "Colour LUT " << colour_lut_index_to_name (Config::instance()->colour_lut_index()) << "; " << "J2K bandwidth " << Config::instance()->j2k_bandwidth() << "; "; @@ -120,6 +131,10 @@ main (int argc, char* argv[]) dvdomatic_setup (); + if (no_remote) { + Config::instance()->set_servers (vector ()); + } + cout << "DVD-o-matic " << dvdomatic_version << " git " << dvdomatic_git_commit; char buf[256]; if (gethostname (buf, 256) == 0) { @@ -132,9 +147,9 @@ main (int argc, char* argv[]) cout << dependency_version_summary() << "\n"; } - Film* film = 0; + shared_ptr film; try { - film = new Film (film_dir, true); + film.reset (new Film (film_dir, true)); } catch (std::exception& e) { cerr << argv[0] << ": error reading film `" << film_dir << "' (" << e.what() << ")\n"; exit (EXIT_FAILURE); @@ -143,7 +158,7 @@ main (int argc, char* argv[]) film->log()->set_level ((Log::Level) log_level); cout << "\nMaking "; - if (film->dcp_ab ()) { + if (film->dcp_ab()) { cout << "A/B "; } cout << "DCP for " << film->name() << "\n"; @@ -154,22 +169,24 @@ main (int argc, char* argv[]) film->make_dcp (true); - list > jobs = JobManager::instance()->get (); - - bool all_done = false; + bool should_stop = false; bool first = true; - while (!all_done) { + while (!should_stop) { dvdomatic_sleep (5); + list > jobs = JobManager::instance()->get (); + if (!first && progress) { cout << "\033[" << jobs.size() << "A"; cout.flush (); } first = false; - - all_done = true; + + int unfinished = 0; + int finished_in_error = 0; + for (list >::iterator i = jobs.begin(); i != jobs.end(); ++i) { if (progress) { cout << (*i)->name() << ": "; @@ -182,9 +199,13 @@ main (int argc, char* argv[]) cout << ": Running \n"; } } - + if (!(*i)->finished ()) { - all_done = false; + ++unfinished; + } + + if ((*i)->finished_in_error ()) { + ++finished_in_error; } if (!progress && (*i)->finished_in_error ()) { @@ -194,6 +215,10 @@ main (int argc, char* argv[]) cout << (*i)->status() << "\n"; } } + + if (unfinished == 0 || finished_in_error != 0) { + should_stop = true; + } } return 0;