Fix missing log in dcpomatic_create (#1597).
[dcpomatic.git] / src / tools / dcpomatic_create.cc
index 304f4f697ab6e8a031c44dd2a74c3b896f2c448a..f1df658c3626b6cf4406b755a5786dafc4a5572b 100644 (file)
@@ -1,38 +1,49 @@
 /*
-    Copyright (C) 2013 Carl Hetherington <cth@carlh.net>
+    Copyright (C) 2013-2019 Carl Hetherington <cth@carlh.net>
 
-    This program is free software; you can redistribute it and/or modify
+    This file is part of DCP-o-matic.
+
+    DCP-o-matic is free software; you can redistribute it and/or modify
     it under the terms of the GNU General Public License as published by
     the Free Software Foundation; either version 2 of the License, or
     (at your option) any later version.
 
-    This program is distributed in the hope that it will be useful,
+    DCP-o-matic is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
     GNU General Public License for more details.
 
     You should have received a copy of the GNU General Public License
-    along with this program; if not, write to the Free Software
-    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+    along with DCP-o-matic.  If not, see <http://www.gnu.org/licenses/>.
 
 */
 
-#include <string>
-#include <iostream>
-#include <cstdlib>
-#include <stdexcept>
-#include <getopt.h>
-#include <boost/filesystem.hpp>
 #include "lib/version.h"
 #include "lib/film.h"
 #include "lib/util.h"
 #include "lib/content_factory.h"
 #include "lib/job_manager.h"
-#include "lib/ui_signaller.h"
+#include "lib/signal_manager.h"
 #include "lib/job.h"
 #include "lib/dcp_content_type.h"
 #include "lib/ratio.h"
 #include "lib/image_content.h"
+#include "lib/video_content.h"
+#include "lib/cross.h"
+#include "lib/config.h"
+#include "lib/dcp_content.h"
+#include "lib/create_cli.h"
+#include "lib/version.h"
+#include "lib/dcpomatic_log.h"
+#include <dcp/exceptions.h>
+#include <libxml++/libxml++.h>
+#include <boost/filesystem.hpp>
+#include <boost/foreach.hpp>
+#include <getopt.h>
+#include <string>
+#include <iostream>
+#include <cstdlib>
+#include <stdexcept>
 
 using std::string;
 using std::cout;
@@ -41,29 +52,13 @@ using std::list;
 using std::exception;
 using boost::shared_ptr;
 using boost::dynamic_pointer_cast;
+using boost::optional;
 
-static void
-help (string n)
-{
-       cerr << "Create a film directory (ready for making a DCP) or metadata file from some content files.\n"
-            << "A film directory will be created if -o or --output is specified, otherwise a metadata file\n"
-            << "will be written to stdout.\n"
-            << "Syntax: " << n << " [OPTION] <CONTENT> [<CONTENT> ...]\n"
-            << "  -v, --version                 show DCP-o-matic version\n"
-            << "  -h, --help                    show this help\n"
-            << "  -n, --name <name>             film name\n"
-            << "  -c, --dcp-content-type <type> FTR, SHR, TLR, TST, XSN, RTG, TSR, POL, PSA or ADV\n"
-            << "      --container-ratio <ratio> 119, 133, 137, 138, 166, 178, 185 or 239\n"
-            << "      --content-ratio <ratio>   119, 133, 137, 138, 166, 178, 185 or 239\n"
-            << "  -s, --still-length <n>        number of seconds that still content should last\n"
-            << "  -o, --output <dir>            output directory\n";
-}
-
-class SimpleUISignaller : public UISignaller
+class SimpleSignalManager : public SignalManager
 {
 public:
        /* Do nothing in this method so that UI events happen in our thread
-          when we call UISignaller::ui_idle().
+          when we call SignalManager::ui_idle().
        */
        void wake_ui () {}
 };
@@ -71,149 +66,107 @@ public:
 int
 main (int argc, char* argv[])
 {
+       dcpomatic_setup_path_encoding ();
        dcpomatic_setup ();
 
-       string name;
-       DCPContentType const * dcp_content_type = DCPContentType::from_isdcf_name ("TST");
-       Ratio const * container_ratio = 0;
-       Ratio const * content_ratio = 0;
-       int still_length = 10;
-       boost::filesystem::path output;
-       
-       int option_index = 0;
-       while (true) {
-               static struct option long_options[] = {
-                       { "version", no_argument, 0, 'v'},
-                       { "help", no_argument, 0, 'h'},
-                       { "name", required_argument, 0, 'n'},
-                       { "dcp-content-type", required_argument, 0, 'c'},
-                       { "container-ratio", required_argument, 0, 'A'},
-                       { "content-ratio", required_argument, 0, 'B'},
-                       { "still-length", required_argument, 0, 's'},
-                       { "output", required_argument, 0, 'o'},
-                       { 0, 0, 0, 0}
-               };
-
-               int c = getopt_long (argc, argv, "vhn:c:A:B:s:o:", long_options, &option_index);
-               if (c == -1) {
-                       break;
-               }
-
-               switch (c) {
-               case 'v':
-                       cout << "dcpomatic version " << dcpomatic_version << " " << dcpomatic_git_commit << "\n";
-                       exit (EXIT_SUCCESS);
-               case 'h':
-                       help (argv[0]);
-                       exit (EXIT_SUCCESS);
-               case 'n':
-                       name = optarg;
-                       break;
-               case 'c':
-                       dcp_content_type = DCPContentType::from_isdcf_name (optarg);
-                       if (dcp_content_type == 0) {
-                               cerr << "Bad DCP content type.\n";
-                               help (argv[0]);
-                               exit (EXIT_FAILURE);
-                       }
-                       break;
-               case 'A':
-                       container_ratio = Ratio::from_id (optarg);
-                       if (container_ratio == 0) {
-                               cerr << "Bad container ratio.\n";
-                               help (argv[0]);
-                               exit (EXIT_FAILURE);
-                       }
-                       break;
-               case 'B':
-                       content_ratio = Ratio::from_id (optarg);
-                       if (content_ratio == 0) {
-                               cerr << "Bad content ratio " << optarg << ".\n";
-                               help (argv[0]);
-                               exit (EXIT_FAILURE);
-                       }
-                       break;
-               case 's':
-                       still_length = atoi (optarg);
-                       break;
-               case 'o':
-                       output = optarg;
-                       break;
-               }
-       }
-
-       if (optind > argc) {
-               help (argv[0]);
-               exit (EXIT_FAILURE);
+       CreateCLI cc (argc, argv);
+       if (cc.error) {
+               cerr << *cc.error << "\n";
+               exit (1);
        }
 
-       if (!content_ratio) {
-               cerr << argv[0] << ": missing required option --content-ratio.\n";
-               exit (EXIT_FAILURE);
+       if (cc.version) {
+               cerr << "dcpomatic version " << dcpomatic_version << " " << dcpomatic_git_commit << "\n";
+               exit (EXIT_SUCCESS);
        }
 
-       if (!container_ratio) {
-               container_ratio = content_ratio;
+       if (cc.config_dir) {
+               State::override_path = *cc.config_dir;
        }
 
-       if (optind == argc) {
-               cerr << argv[0] << ": no content specified.\n";
-               exit (EXIT_FAILURE);
-       }
-
-       ui_signaller = new SimpleUISignaller ();
+       signal_manager = new SimpleSignalManager ();
+       JobManager* jm = JobManager::instance ();
 
        try {
-               shared_ptr<Film> film (new Film (output, false));
-               if (!name.empty ()) {
-                       film->set_name (name);
+               shared_ptr<Film> film (new Film(cc.output_dir));
+               dcpomatic_log = film->log ();
+               dcpomatic_log->set_types (Config::instance()->log_types());
+               if (cc.template_name) {
+                       film->use_template (cc.template_name.get());
                }
+               film->set_name (cc.name);
+
+               film->set_container (cc.container_ratio);
+               film->set_dcp_content_type (cc.dcp_content_type);
+               film->set_interop (cc.standard == dcp::INTEROP);
+               film->set_use_isdcf_name (!cc.no_use_isdcf_name);
+               film->set_signed (!cc.no_sign);
+               film->set_encrypted (cc.encrypt);
+               film->set_three_d (cc.threed);
+               film->set_resolution (cc.fourk ? RESOLUTION_4K : RESOLUTION_2K);
+               if (cc.j2k_bandwidth) {
+                       film->set_j2k_bandwidth (*cc.j2k_bandwidth);
+               }
+
+               BOOST_FOREACH (CreateCLI::Content i, cc.content) {
+                       boost::filesystem::path const can = boost::filesystem::canonical (i.path);
+                       list<shared_ptr<Content> > content;
 
-               film->set_container (container_ratio);
-               film->set_dcp_content_type (dcp_content_type);
-               
-               for (int i = optind; i < argc; ++i) {
-                       shared_ptr<Content> c = content_factory (film, argv[i]);
-                       shared_ptr<VideoContent> vc = dynamic_pointer_cast<VideoContent> (c);
-                       if (vc) {
-                               vc->set_scale (VideoContentScale (content_ratio));
+                       if (boost::filesystem::exists (can / "ASSETMAP") || (boost::filesystem::exists (can / "ASSETMAP.xml"))) {
+                               content.push_back (shared_ptr<DCPContent>(new DCPContent(can)));
+                       } else {
+                               /* I guess it's not a DCP */
+                               content = content_factory (can);
+                       }
+
+                       BOOST_FOREACH (shared_ptr<Content> j, content) {
+                               film->examine_and_add_content (j);
+                       }
+
+                       while (jm->work_to_do ()) {
+                               dcpomatic_sleep (1);
+                       }
+
+                       while (signal_manager->ui_idle() > 0) {}
+
+                       BOOST_FOREACH (shared_ptr<Content> j, content) {
+                               if (j->video) {
+                                       j->video->set_scale (VideoContentScale(cc.content_ratio));
+                                       j->video->set_frame_type (i.frame_type);
+                               }
                        }
-                       film->examine_and_add_content (c);
                }
-               
-               JobManager* jm = JobManager::instance ();
 
-               while (jm->work_to_do ()) {}
-               while (ui_signaller->ui_idle() > 0) {}
+               if (cc.dcp_frame_rate) {
+                       film->set_video_frame_rate (*cc.dcp_frame_rate);
+               }
 
-               ContentList content = film->content ();
-               for (ContentList::iterator i = content.begin(); i != content.end(); ++i) {
-                       shared_ptr<ImageContent> ic = dynamic_pointer_cast<ImageContent> (*i);
-                       if (ic) {
-                               ic->set_video_length (ContentTime::from_seconds (still_length));
+               BOOST_FOREACH (shared_ptr<Content> i, film->content()) {
+                       shared_ptr<ImageContent> ic = dynamic_pointer_cast<ImageContent> (i);
+                       if (ic && ic->still()) {
+                               ic->video->set_length (cc.still_length * 24);
                        }
                }
 
                if (jm->errors ()) {
-                       list<shared_ptr<Job> > jobs = jm->get ();
-                       for (list<shared_ptr<Job> >::iterator i = jobs.begin(); i != jobs.end(); ++i) {
-                               if ((*i)->finished_in_error ()) {
-                                       cerr << (*i)->error_summary () << "\n"
-                                            << (*i)->error_details () << "\n";
+                       BOOST_FOREACH (shared_ptr<Job> i, jm->get()) {
+                               if (i->finished_in_error()) {
+                                       cerr << i->error_summary() << "\n"
+                                            << i->error_details() << "\n";
                                }
                        }
                        exit (EXIT_FAILURE);
                }
 
-               if (!output.empty ()) {
+               if (cc.output_dir) {
                        film->write_metadata ();
                } else {
-                       film->metadata()->write_to_stream_formatted (cout, "UTF-8");
+                       film->metadata()->write_to_stream_formatted(cout, "UTF-8");
                }
        } catch (exception& e) {
                cerr << argv[0] << ": " << e.what() << "\n";
                exit (EXIT_FAILURE);
        }
-               
+
        return 0;
 }