Merge master.
[dcpomatic.git] / src / lib / film.cc
index 67605ffcaba2c6836fd69be1be20d7202db5792a..8fed87122977bdf311d9640f1cd2c8a4d92ab496 100644 (file)
@@ -93,11 +93,12 @@ Film::Film (string d, bool must_exist)
        : _playlist (new Playlist)
        , _use_dci_name (true)
        , _trust_content_headers (true)
-       , _dcp_content_type (0)
-       , _format (Format::from_id ("185"))
+       , _dcp_content_type (Config::instance()->default_dcp_content_type ())
+       , _format (Config::instance()->default_format ())
        , _scaler (Scaler::from_id ("bicubic"))
        , _trim_start (0)
        , _trim_end (0)
+       , _trim_type (CPL)
        , _ab (false)
        , _audio_gain (0)
        , _audio_delay (0)
@@ -112,7 +113,8 @@ Film::Film (string d, bool must_exist)
 {
        set_dci_date_today ();
 
-       _playlist->ContentChanged.connect (bind (&Film::content_changed, this, _1, _2));
+       _playlist->Changed.connect (bind (&Film::playlist_changed, this));
+       _playlist->ContentChanged.connect (bind (&Film::playlist_content_changed, this, _1, _2));
        
        /* Make state.directory a complete path without ..s (where possible)
           (Code swiped from Adam Bowen on stackoverflow)
@@ -144,6 +146,8 @@ Film::Film (string d, bool must_exist)
 
        if (must_exist) {
                read_metadata ();
+       } else {
+               write_metadata ();
        }
 
        _log.reset (new FileLog (file ("log")));
@@ -153,7 +157,7 @@ Film::Film (Film const & o)
        : boost::enable_shared_from_this<Film> (o)
        /* note: the copied film shares the original's log */
        , _log               (o._log)
-       , _playlist          (new Playlist)
+       , _playlist          (new Playlist (o._playlist))
        , _directory         (o._directory)
        , _name              (o._name)
        , _use_dci_name      (o._use_dci_name)
@@ -165,6 +169,7 @@ Film::Film (Film const & o)
        , _scaler            (o._scaler)
        , _trim_start        (o._trim_start)
        , _trim_end          (o._trim_end)
+       , _trim_type         (o._trim_type)
        , _ab                (o._ab)
        , _audio_gain        (o._audio_gain)
        , _audio_delay       (o._audio_delay)
@@ -178,19 +183,14 @@ Film::Film (Film const & o)
        , _dci_date          (o._dci_date)
        , _dirty             (o._dirty)
 {
-       for (ContentList::const_iterator i = o._content.begin(); i != o._content.end(); ++i) {
-               _content.push_back ((*i)->clone ());
-       }
-       
-       _playlist->ContentChanged.connect (bind (&Film::content_changed, this, _1, _2));
-       
-       _playlist->setup (_content);
+       _playlist->ContentChanged.connect (bind (&Film::playlist_content_changed, this, _1, _2));
 }
 
 string
 Film::video_state_identifier () const
 {
        assert (format ());
+       LocaleGuard lg;
 
        pair<string, string> f = Filter::ffmpeg_strings (filters());
 
@@ -223,18 +223,46 @@ Film::info_dir () const
 }
 
 string
-Film::video_mxf_dir () const
+Film::internal_video_mxf_dir () const
 {
        boost::filesystem::path p;
        return dir ("video");
 }
 
 string
-Film::video_mxf_filename () const
+Film::internal_video_mxf_filename () const
 {
        return video_state_identifier() + ".mxf";
 }
 
+string
+Film::dcp_video_mxf_filename () const
+{
+       return filename_safe_name() + "_video.mxf";
+}
+
+string
+Film::dcp_audio_mxf_filename () const
+{
+       return filename_safe_name() + "_audio.mxf";
+}
+
+string
+Film::filename_safe_name () const
+{
+       string const n = name ();
+       string o;
+       for (size_t i = 0; i < n.length(); ++i) {
+               if (isalnum (n[i])) {
+                       o += n[i];
+               } else {
+                       o += "_";
+               }
+       }
+
+       return o;
+}
+
 string
 Film::audio_analysis_path () const
 {
@@ -287,7 +315,7 @@ Film::make_dcp ()
                throw MissingSettingError (_("format"));
        }
 
-       if (content().empty ()) {
+       if (_playlist->content().empty ()) {
                throw MissingSettingError (_("content"));
        }
 
@@ -372,9 +400,8 @@ Film::encoded_frames () const
 void
 Film::write_metadata () const
 {
-       ContentList the_content = content ();
-       
        boost::mutex::scoped_lock lm (_state_mutex);
+       LocaleGuard lg;
 
        boost::filesystem::create_directories (directory());
 
@@ -385,12 +412,23 @@ Film::write_metadata () const
        root->add_child("Name")->add_child_text (_name);
        root->add_child("UseDCIName")->add_child_text (_use_dci_name ? "1" : "0");
        root->add_child("TrustContentHeaders")->add_child_text (_trust_content_headers ? "1" : "0");
+
        if (_dcp_content_type) {
                root->add_child("DCPContentType")->add_child_text (_dcp_content_type->dci_name ());
        }
+
        if (_format) {
                root->add_child("Format")->add_child_text (_format->id ());
        }
+
+       switch (_trim_type) {
+       case CPL:
+               root->add_child("TrimType")->add_child_text ("CPL");
+               break;
+       case ENCODE:
+               root->add_child("TrimType")->add_child_text ("Encode");
+       }
+                       
        root->add_child("LeftCrop")->add_child_text (boost::lexical_cast<string> (_crop.left));
        root->add_child("RightCrop")->add_child_text (boost::lexical_cast<string> (_crop.right));
        root->add_child("TopCrop")->add_child_text (boost::lexical_cast<string> (_crop.top));
@@ -415,10 +453,7 @@ Film::write_metadata () const
        root->add_child("DCPFrameRate")->add_child_text (boost::lexical_cast<string> (_dcp_frame_rate));
        root->add_child("DCIDate")->add_child_text (boost::gregorian::to_iso_string (_dci_date));
        _audio_mapping.as_xml (root->add_child("AudioMapping"));
-
-       for (ContentList::iterator i = the_content.begin(); i != the_content.end(); ++i) {
-               (*i)->as_xml (root->add_child ("Content"));
-       }
+       _playlist->as_xml (root->add_child ("Playlist"));
 
        doc.write_to_file_formatted (file ("metadata.xml"));
        
@@ -430,6 +465,7 @@ void
 Film::read_metadata ()
 {
        boost::mutex::scoped_lock lm (_state_mutex);
+       LocaleGuard lg;
 
        if (boost::filesystem::exists (file ("metadata")) && !boost::filesystem::exists (file ("metadata.xml"))) {
                throw StringError (_("This film was created with an older version of DCP-o-matic, and unfortunately it cannot be loaded into this version.  You will need to create a new Film, re-add your content and set it up again.  Sorry!"));
@@ -455,6 +491,15 @@ Film::read_metadata ()
                }
        }
 
+       {
+               optional<string> c = f.optional_string_child ("TrimType");
+               if (!c || c.get() == "CPL") {
+                       _trim_type = CPL;
+               } else if (c && c.get() == "Encode") {
+                       _trim_type = ENCODE;
+               }
+       }
+
        _crop.left = f.number_child<int> ("LeftCrop");
        _crop.right = f.number_child<int> ("RightCrop");
        _crop.top = f.number_child<int> ("TopCrop");
@@ -482,29 +527,10 @@ Film::read_metadata ()
        _dcp_frame_rate = f.number_child<int> ("DCPFrameRate");
        _dci_date = boost::gregorian::from_undelimited_string (f.string_child ("DCIDate"));
 
-       list<shared_ptr<cxml::Node> > c = f.node_children ("Content");
-       for (list<shared_ptr<cxml::Node> >::iterator i = c.begin(); i != c.end(); ++i) {
-
-               string const type = (*i)->string_child ("Type");
-               boost::shared_ptr<Content> c;
-               
-               if (type == "FFmpeg") {
-                       c.reset (new FFmpegContent (*i));
-               } else if (type == "ImageMagick") {
-                       c.reset (new ImageMagickContent (*i));
-               } else if (type == "Sndfile") {
-                       c.reset (new SndfileContent (*i));
-               }
-
-               _content.push_back (c);
-       }
-
-       /* This must come after we've loaded the content, as we're looking things up in _content */
-       _audio_mapping.set_from_xml (_content, f.node_child ("AudioMapping"));
+       _playlist->set_from_xml (f.node_child ("Playlist"));
+       _audio_mapping.set_from_xml (_playlist->content(), f.node_child ("AudioMapping"));
 
        _dirty = false;
-
-       _playlist->setup (_content);
 }
 
 libdcp::Size
@@ -711,10 +737,11 @@ Film::set_trust_content_headers (bool t)
        
        signal_changed (TRUST_CONTENT_HEADERS);
 
-       if (!_trust_content_headers && !content().empty()) {
+       
+       ContentList content = _playlist->content ();
+       if (!_trust_content_headers && !content.empty()) {
                /* We just said that we don't trust the content's header */
-               ContentList c = content ();
-               for (ContentList::iterator i = c.begin(); i != c.end(); ++i) {
+               for (ContentList::iterator i = content.begin(); i != content.end(); ++i) {
                        examine_content (*i);
                }
        }
@@ -847,6 +874,16 @@ Film::set_trim_end (int t)
        signal_changed (TRIM_END);
 }
 
+void
+Film::set_trim_type (TrimType t)
+{
+       {
+               boost::mutex::scoped_lock lm (_state_mutex);
+               _trim_type = t;
+       }
+       signal_changed (TRIM_TYPE);
+}
+
 void
 Film::set_ab (bool a)
 {
@@ -958,7 +995,6 @@ Film::signal_changed (Property p)
 
        switch (p) {
        case Film::CONTENT:
-               _playlist->setup (content ());
                set_dcp_frame_rate (best_dcp_frame_rate (video_frame_rate ()));
                set_audio_mapping (_playlist->default_audio_mapping ());
                break;
@@ -1039,73 +1075,35 @@ Film::player () const
        return shared_ptr<Player> (new Player (shared_from_this (), _playlist));
 }
 
+ContentList
+Film::content () const
+{
+       return _playlist->content ();
+}
+
 void
 Film::add_content (shared_ptr<Content> c)
 {
-       {
-               boost::mutex::scoped_lock lm (_state_mutex);
-               _content.push_back (c);
-       }
-
-       signal_changed (CONTENT);
-
+       _playlist->add (c);
        examine_content (c);
 }
 
 void
 Film::remove_content (shared_ptr<Content> c)
 {
-       {
-               boost::mutex::scoped_lock lm (_state_mutex);
-               ContentList::iterator i = find (_content.begin(), _content.end(), c);
-               if (i != _content.end ()) {
-                       _content.erase (i);
-               }
-       }
-
-       signal_changed (CONTENT);
+       _playlist->remove (c);
 }
 
 void
 Film::move_content_earlier (shared_ptr<Content> c)
 {
-       {
-               boost::mutex::scoped_lock lm (_state_mutex);
-               ContentList::iterator i = find (_content.begin(), _content.end(), c);
-               if (i == _content.begin () || i == _content.end()) {
-                       return;
-               }
-
-               ContentList::iterator j = i;
-               --j;
-
-               swap (*i, *j);
-       }
-
-       signal_changed (CONTENT);
+       _playlist->move_earlier (c);
 }
 
 void
 Film::move_content_later (shared_ptr<Content> c)
 {
-       {
-               boost::mutex::scoped_lock lm (_state_mutex);
-               ContentList::iterator i = find (_content.begin(), _content.end(), c);
-               if (i == _content.end()) {
-                       return;
-               }
-
-               ContentList::iterator j = i;
-               ++j;
-               if (j == _content.end ()) {
-                       return;
-               }
-
-               swap (*i, *j);
-       }
-
-       signal_changed (CONTENT);
-
+       _playlist->move_later (c);
 }
 
 ContentAudioFrame
@@ -1150,26 +1148,16 @@ Film::video_length () const
        return _playlist->video_length ();
 }
 
-/** Unfortunately this is needed as the GUI has FFmpeg-specific controls */
-shared_ptr<FFmpegContent>
-Film::ffmpeg () const
+ContentVideoFrame
+Film::content_length () const
 {
-       boost::mutex::scoped_lock lm (_state_mutex);
-       
-       for (ContentList::const_iterator i = _content.begin (); i != _content.end(); ++i) {
-               shared_ptr<FFmpegContent> f = boost::dynamic_pointer_cast<FFmpegContent> (*i);
-               if (f) {
-                       return f;
-               }
-       }
-
-       return shared_ptr<FFmpegContent> ();
+       return _playlist->content_length ();
 }
 
 vector<FFmpegSubtitleStream>
 Film::ffmpeg_subtitle_streams () const
 {
-       shared_ptr<FFmpegContent> f = ffmpeg ();
+       shared_ptr<FFmpegContent> f = _playlist->ffmpeg ();
        if (f) {
                return f->subtitle_streams ();
        }
@@ -1180,7 +1168,7 @@ Film::ffmpeg_subtitle_streams () const
 boost::optional<FFmpegSubtitleStream>
 Film::ffmpeg_subtitle_stream () const
 {
-       shared_ptr<FFmpegContent> f = ffmpeg ();
+       shared_ptr<FFmpegContent> f = _playlist->ffmpeg ();
        if (f) {
                return f->subtitle_stream ();
        }
@@ -1191,7 +1179,7 @@ Film::ffmpeg_subtitle_stream () const
 vector<FFmpegAudioStream>
 Film::ffmpeg_audio_streams () const
 {
-       shared_ptr<FFmpegContent> f = ffmpeg ();
+       shared_ptr<FFmpegContent> f = _playlist->ffmpeg ();
        if (f) {
                return f->audio_streams ();
        }
@@ -1202,7 +1190,7 @@ Film::ffmpeg_audio_streams () const
 boost::optional<FFmpegAudioStream>
 Film::ffmpeg_audio_stream () const
 {
-       shared_ptr<FFmpegContent> f = ffmpeg ();
+       shared_ptr<FFmpegContent> f = _playlist->ffmpeg ();
        if (f) {
                return f->audio_stream ();
        }
@@ -1213,7 +1201,7 @@ Film::ffmpeg_audio_stream () const
 void
 Film::set_ffmpeg_subtitle_stream (FFmpegSubtitleStream s)
 {
-       shared_ptr<FFmpegContent> f = ffmpeg ();
+       shared_ptr<FFmpegContent> f = _playlist->ffmpeg ();
        if (f) {
                f->set_subtitle_stream (s);
        }
@@ -1222,7 +1210,7 @@ Film::set_ffmpeg_subtitle_stream (FFmpegSubtitleStream s)
 void
 Film::set_ffmpeg_audio_stream (FFmpegAudioStream s)
 {
-       shared_ptr<FFmpegContent> f = ffmpeg ();
+       shared_ptr<FFmpegContent> f = _playlist->ffmpeg ();
        if (f) {
                f->set_audio_stream (s);
        }
@@ -1240,15 +1228,33 @@ Film::set_audio_mapping (AudioMapping m)
 }
 
 void
-Film::content_changed (boost::weak_ptr<Content> c, int p)
+Film::playlist_content_changed (boost::weak_ptr<Content> c, int p)
 {
        if (p == VideoContentProperty::VIDEO_FRAME_RATE) {
                set_dcp_frame_rate (best_dcp_frame_rate (video_frame_rate ()));
        } else if (p == AudioContentProperty::AUDIO_CHANNELS) {
                set_audio_mapping (_playlist->default_audio_mapping ());
-       }               
+       } 
 
        if (ui_signaller) {
                ui_signaller->emit (boost::bind (boost::ref (ContentChanged), c, p));
        }
 }
+
+void
+Film::playlist_changed ()
+{
+       signal_changed (CONTENT);
+}      
+
+int
+Film::loop () const
+{
+       return _playlist->loop ();
+}
+
+void
+Film::set_loop (int c)
+{
+       _playlist->set_loop (c);
+}