X-Git-Url: https://git.carlh.net/gitweb/?a=blobdiff_plain;f=src%2Ftools%2Fdcpomatic_cli.cc;h=8c33b7d83a983f4917bf98ee413bf0cf7186d635;hb=6de35d058821acc092d2aae75543024a97026b8a;hp=8623d919468ab3f95d7e2230000a2cc7e667c2f4;hpb=edfd92e5554e3389e6456f497f44ca6e866800bf;p=dcpomatic.git diff --git a/src/tools/dcpomatic_cli.cc b/src/tools/dcpomatic_cli.cc index 8623d9194..8c33b7d83 100644 --- a/src/tools/dcpomatic_cli.cc +++ b/src/tools/dcpomatic_cli.cc @@ -20,17 +20,19 @@ #include #include #include -#include -#include "film.h" -#include "filter.h" -#include "transcode_job.h" -#include "job_manager.h" -#include "util.h" -#include "scaler.h" -#include "version.h" -#include "cross.h" -#include "config.h" -#include "log.h" +#include +#include "lib/film.h" +#include "lib/filter.h" +#include "lib/transcode_job.h" +#include "lib/job_manager.h" +#include "lib/util.h" +#include "lib/scaler.h" +#include "lib/version.h" +#include "lib/cross.h" +#include "lib/config.h" +#include "lib/log.h" +#include "lib/ui_signaller.h" +#include "lib/server_finder.h" using std::string; using std::cerr; @@ -47,8 +49,10 @@ help (string n) << " -v, --version show DCP-o-matic version\n" << " -h, --help show this help\n" << " -d, --deps list DCP-o-matic dependency details and quit\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"; } @@ -59,21 +63,22 @@ 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'}, { "deps", no_argument, 0, 'd'}, + { "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, "vhdnrl:", long_options, &option_index); + int c = getopt_long (argc, argv, "vhdfnrk", long_options, &option_index); if (c == -1) { break; @@ -89,14 +94,17 @@ main (int argc, char* argv[]) case 'd': cout << dependency_version_summary () << "\n"; exit (EXIT_SUCCESS); + case 'f': + cout << dcpomatic_cxx_flags << "\n"; + exit (EXIT_SUCCESS); case 'n': progress = false; break; case 'r': no_remote = true; break; - case 'l': - log_level = atoi (optarg); + case 'k': + keep_going = true; break; } } @@ -109,9 +117,10 @@ main (int argc, char* argv[]) film_dir = argv[optind]; dcpomatic_setup (); + ui_signaller = new UISignaller (); if (no_remote) { - Config::instance()->set_servers (vector ()); + ServerFinder::instance()->disable (); } cout << "DCP-o-matic " << dcpomatic_version << " git " << dcpomatic_git_commit; @@ -130,12 +139,7 @@ main (int argc, char* argv[]) exit (EXIT_FAILURE); } - film->log()->set_level ((Log::Level) log_level); - 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 (); @@ -162,12 +166,12 @@ main (int argc, char* argv[]) if (progress) { cout << (*i)->name() << ": "; - float const p = (*i)->overall_progress (); + float const p = (*i)->progress (); if (p >= 0) { - cout << (*i)->status() << " \n"; + cout << (*i)->status() << " \n"; } else { - cout << ": Running \n"; + cout << ": Running \n"; } } @@ -193,6 +197,17 @@ 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. + */ + JobManager::drop (); + return error ? EXIT_FAILURE : EXIT_SUCCESS; }