X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;f=src%2Ftools%2Fdcpomatic_cli.cc;h=f55a425ce6a521d48719bee761f74a294023d878;hb=f47e576f076ea9134cbee07bec0c201fb6e43dd4;hp=c40ea6662b8f0c7b0b1b476933cb770a03406fcd;hpb=ba003c2a760d0635c818fdc19114b85026df9d81;p=dcpomatic.git diff --git a/src/tools/dcpomatic_cli.cc b/src/tools/dcpomatic_cli.cc index c40ea6662..f55a425ce 100644 --- a/src/tools/dcpomatic_cli.cc +++ b/src/tools/dcpomatic_cli.cc @@ -20,7 +20,7 @@ #include #include #include -#include +#include #include "lib/film.h" #include "lib/filter.h" #include "lib/transcode_job.h" @@ -52,6 +52,7 @@ help (string 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" + << " -k, --keep-going keep running even when the job is complete\n" << "\n" << " is the film directory.\n"; } @@ -62,10 +63,10 @@ main (int argc, char* argv[]) string film_dir; bool progress = true; bool no_remote = false; - int log_level = 0; + bool keep_going = false; int option_index = 0; - while (1) { + while (true) { static struct option long_options[] = { { "version", no_argument, 0, 'v'}, { "help", no_argument, 0, 'h'}, @@ -73,11 +74,11 @@ main (int argc, char* argv[]) { "flags", no_argument, 0, 'f'}, { "no-progress", no_argument, 0, 'n'}, { "no-remote", no_argument, 0, 'r'}, - { "log-level", required_argument, 0, 'l' }, + { "keep-going", no_argument, 0, 'k' }, { 0, 0, 0, 0 } }; - int c = getopt_long (argc, argv, "vhdfnrl:", long_options, &option_index); + int c = getopt_long (argc, argv, "vhdfnrk", long_options, &option_index); if (c == -1) { break; @@ -102,8 +103,8 @@ main (int argc, char* argv[]) case 'r': no_remote = true; break; - case 'l': - log_level = atoi (optarg); + case 'k': + keep_going = true; break; } } @@ -138,12 +139,18 @@ main (int argc, char* argv[]) exit (EXIT_FAILURE); } - film->log()->set_level ((Log::Level) log_level); - + ContentList content = film->content (); + for (ContentList::const_iterator i = content.begin(); i != content.end(); ++i) { + vector paths = (*i)->paths (); + for (vector::const_iterator j = paths.begin(); j != paths.end(); ++j) { + if (!boost::filesystem::exists (*j)) { + cerr << argv[0] << ": content file " << *j << " not found.\n"; + exit (EXIT_FAILURE); + } + } + } + cout << "\nMaking DCP for " << film->name() << "\n"; -// cout << "Content: " << film->content() << "\n"; -// pair const f = Filter::ffmpeg_strings (film->filters ()); -// cout << "Filters: " << f.first << " " << f.second << "\n"; film->make_dcp (); @@ -201,6 +208,12 @@ main (int argc, char* argv[]) } } + if (keep_going) { + while (true) { + dcpomatic_sleep (3600); + } + } + /* This is just to stop valgrind reporting leaks due to JobManager indirectly holding onto codecs. */