Revert "Use make_shared<>."
[dcpomatic.git] / src / tools / dcpomatic_create.cc
index 3d07933e28d68c55443911c5741126e606de0a72..fd950807c3eed51480ed75ecdccea160c0e935a6 100644 (file)
@@ -1,28 +1,23 @@
 /*
-    Copyright (C) 2013-2015 Carl Hetherington <cth@carlh.net>
+    Copyright (C) 2013-2016 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/dcp_content_type.h"
 #include "lib/ratio.h"
 #include "lib/image_content.h"
+#include "lib/video_content.h"
+#include <libxml++/libxml++.h>
+#include <boost/filesystem.hpp>
+#include <getopt.h>
+#include <string>
+#include <iostream>
+#include <cstdlib>
+#include <stdexcept>
 
 using std::string;
 using std::cout;
@@ -54,6 +57,8 @@ syntax (string 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"
             << "      --standard <standard>     SMPTE or interop (default SMPTE)\n"
+            << "      --no-use-isdcf-name       do not use an ISDCF name; use the specified name unmodified\n"
+            << "      --no-sign                 do not sign the DCP\n"
             << "  -o, --output <dir>            output directory\n";
 }
 
@@ -63,6 +68,8 @@ 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);
 }
 
 class SimpleSignalManager : public SignalManager
@@ -77,6 +84,7 @@ public:
 int
 main (int argc, char* argv[])
 {
+       dcpomatic_setup_path_encoding ();
        dcpomatic_setup ();
 
        string name;
@@ -86,6 +94,8 @@ main (int argc, char* argv[])
        int still_length = 10;
        dcp::Standard standard = dcp::SMPTE;
        boost::filesystem::path output;
+       bool sign = true;
+       bool use_isdcf_name = true;
 
        int option_index = 0;
        while (true) {
@@ -98,11 +108,13 @@ main (int argc, char* argv[])
                        { "content-ratio", required_argument, 0, 'B'},
                        { "still-length", required_argument, 0, 's'},
                        { "standard", required_argument, 0, 'C'},
+                       { "no-use-isdcf-name", no_argument, 0, 'D'},
+                       { "no-sign", no_argument, 0, 'E'},
                        { "output", required_argument, 0, 'o'},
                        { 0, 0, 0, 0}
                };
 
-               int c = getopt_long (argc, argv, "vhn:c:A:B:C:s:o:", long_options, &option_index);
+               int c = getopt_long (argc, argv, "vhn:c:A:B:C:s:o:DE", long_options, &option_index);
                if (c == -1) {
                        break;
                }
@@ -150,12 +162,21 @@ main (int argc, char* argv[])
                                exit (EXIT_FAILURE);
                        }
                        break;
+               case 'D':
+                       use_isdcf_name = false;
+                       break;
+               case 'E':
+                       sign = false;
+                       break;
                case 's':
                        still_length = atoi (optarg);
                        break;
                case 'o':
                        output = optarg;
                        break;
+               case '?':
+                       syntax (argv[0]);
+                       exit (EXIT_FAILURE);
                }
        }
 
@@ -180,21 +201,24 @@ main (int argc, char* argv[])
 
        signal_manager = new SimpleSignalManager ();
 
+       if (name.empty ()) {
+               name = boost::filesystem::path (argv[optind]).leaf().string ();
+       }
+
        try {
                shared_ptr<Film> film (new Film (output, false));
-               if (!name.empty ()) {
-                       film->set_name (name);
-               }
+               film->set_name (name);
 
                film->set_container (container_ratio);
                film->set_dcp_content_type (dcp_content_type);
                film->set_interop (standard == dcp::INTEROP);
+               film->set_use_isdcf_name (use_isdcf_name);
+               film->set_signed (sign);
 
                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));
+                       shared_ptr<Content> c = content_factory (film, boost::filesystem::canonical (argv[i]));
+                       if (c->video) {
+                               c->video->set_scale (VideoContentScale (content_ratio));
                        }
                        film->examine_and_add_content (c);
                }
@@ -208,7 +232,7 @@ main (int argc, char* argv[])
                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 (still_length * 24);
+                               ic->video->set_length (still_length * 24);
                        }
                }