Merge.
authorCarl Hetherington <cth@carlh.net>
Thu, 19 Nov 2015 15:57:42 +0000 (15:57 +0000)
committerCarl Hetherington <cth@carlh.net>
Thu, 19 Nov 2015 16:00:07 +0000 (16:00 +0000)
ChangeLog
src/tools/dcpomatic.cc
src/wx/kdm_dialog.cc
src/wx/self_dkdm_dialog.cc [new file with mode: 0644]
src/wx/self_dkdm_dialog.h [new file with mode: 0644]
src/wx/wscript

index c6925b822bea0df43fc69a864c6d867caf58fbe7..8ed733c43e48e8782f77f1005b07596d8dc8fe32 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2015-11-19  c.hetherington  <cth@carlh.net>
+
+       * Add menu option to make a DKDM for DCP-o-matic (#755).
+
 2015-11-18  Carl Hetherington  <cth@carlh.net>
 
        * Version 2.5.6 released.
index 4d74563eb022c742af7159f8150a2b768163bcc7..9a350f814d59c81a93a2d873d0be8f84152c63b0 100644 (file)
@@ -30,6 +30,7 @@
 #include "wx/wx_signal_manager.h"
 #include "wx/about_dialog.h"
 #include "wx/kdm_dialog.h"
+#include "wx/self_dkdm_dialog.h"
 #include "wx/servers_list_dialog.h"
 #include "wx/hints_dialog.h"
 #include "wx/update_dialog.h"
@@ -138,6 +139,7 @@ enum {
        ID_content_scale_to_fit_height,
        ID_jobs_make_dcp,
        ID_jobs_make_kdms,
+       ID_jobs_make_self_dkdm,
        ID_jobs_send_dcp_to_tms,
        ID_jobs_show_dcp,
        ID_tools_video_waveform,
@@ -202,6 +204,7 @@ public:
                Bind (wxEVT_COMMAND_MENU_SELECTED, boost::bind (&DOMFrame::content_scale_to_fit_height, this), ID_content_scale_to_fit_height);
                Bind (wxEVT_COMMAND_MENU_SELECTED, boost::bind (&DOMFrame::jobs_make_dcp, this),           ID_jobs_make_dcp);
                Bind (wxEVT_COMMAND_MENU_SELECTED, boost::bind (&DOMFrame::jobs_make_kdms, this),          ID_jobs_make_kdms);
+               Bind (wxEVT_COMMAND_MENU_SELECTED, boost::bind (&DOMFrame::jobs_make_self_dkdm, this),     ID_jobs_make_self_dkdm);
                Bind (wxEVT_COMMAND_MENU_SELECTED, boost::bind (&DOMFrame::jobs_send_dcp_to_tms, this),    ID_jobs_send_dcp_to_tms);
                Bind (wxEVT_COMMAND_MENU_SELECTED, boost::bind (&DOMFrame::jobs_show_dcp, this),           ID_jobs_show_dcp);
                Bind (wxEVT_COMMAND_MENU_SELECTED, boost::bind (&DOMFrame::tools_video_waveform, this),    ID_tools_video_waveform);
@@ -479,6 +482,41 @@ private:
                d->Destroy ();
        }
 
+       void jobs_make_self_dkdm ()
+       {
+               if (!_film) {
+                       return;
+               }
+
+               SelfDKDMDialog* d = new SelfDKDMDialog (this, _film);
+               if (d->ShowModal () != wxID_OK) {
+                       d->Destroy ();
+                       return;
+               }
+
+               try {
+                       dcp::EncryptedKDM kdm = _film->make_kdm (
+                               Config::instance()->decryption_chain()->leaf(),
+                               vector<dcp::Certificate> (),
+                               d->cpl (),
+                               dcp::LocalTime ("2012-01-01T01:00:00+00:00"),
+                               dcp::LocalTime ("2112-01-01T01:00:00+00:00"),
+                               dcp::MODIFIED_TRANSITIONAL_1
+                               );
+
+                       string const name = tidy_for_filename(_film->name()) + "_DKDM.kdm.xml";
+                       kdm.as_xml (d->directory() / name);
+               } catch (dcp::NotEncryptedError& e) {
+                       error_dialog (this, _("CPL's content is not encrypted."));
+               } catch (exception& e) {
+                       error_dialog (this, e.what ());
+               } catch (...) {
+                       error_dialog (this, _("An unknown exception occurred."));
+               }
+
+               d->Destroy ();
+       }
+
        void content_scale_to_fit_width ()
        {
                VideoContentList vc = _film_editor->content_panel()->selected_video ();
@@ -713,6 +751,7 @@ private:
                wxMenu* jobs_menu = new wxMenu;
                add_item (jobs_menu, _("&Make DCP\tCtrl-M"), ID_jobs_make_dcp, NEEDS_FILM | NOT_DURING_DCP_CREATION);
                add_item (jobs_menu, _("Make &KDMs...\tCtrl-K"), ID_jobs_make_kdms, NEEDS_FILM);
+               add_item (jobs_menu, _("Make DKDM for DCP-o-matic..."), ID_jobs_make_self_dkdm, NEEDS_FILM);
                add_item (jobs_menu, _("&Send DCP to TMS"), ID_jobs_send_dcp_to_tms, NEEDS_FILM | NOT_DURING_DCP_CREATION | NEEDS_CPL);
                add_item (jobs_menu, _("S&how DCP"), ID_jobs_show_dcp, NEEDS_FILM | NOT_DURING_DCP_CREATION | NEEDS_CPL);
 
index a996463c54a6114d5e1c5fb6fa368368b3157a11..7bd256d038a6527b25b4740b76186e6bce988308 100644 (file)
 */
 
 #include "kdm_dialog.h"
-#include "cinema_dialog.h"
-#include "screen_dialog.h"
 #include "wx_util.h"
 #include "screens_panel.h"
 #include "kdm_timing_panel.h"
 #include "kdm_output_panel.h"
 #include "kdm_cpl_panel.h"
-#include "lib/cinema.h"
-#include "lib/config.h"
 #include "lib/film.h"
 #include "lib/screen.h"
 #include <libcxml/cxml.h>
diff --git a/src/wx/self_dkdm_dialog.cc b/src/wx/self_dkdm_dialog.cc
new file mode 100644 (file)
index 0000000..fed233a
--- /dev/null
@@ -0,0 +1,120 @@
+/*
+    Copyright (C) 2012-2015 Carl Hetherington <cth@carlh.net>
+
+    This program 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,
+    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.
+
+*/
+
+#include "self_dkdm_dialog.h"
+#include "wx_util.h"
+#include "kdm_output_panel.h"
+#include "kdm_cpl_panel.h"
+#include "lib/film.h"
+#include "lib/screen.h"
+#include <libcxml/cxml.h>
+#ifdef DCPOMATIC_USE_OWN_PICKER
+#include "dir_picker_ctrl.h"
+#else
+#include <wx/filepicker.h>
+#endif
+#include <wx/treectrl.h>
+#include <wx/listctrl.h>
+#include <wx/stdpaths.h>
+#include <iostream>
+
+using std::string;
+using std::map;
+using std::list;
+using std::pair;
+using std::cout;
+using std::vector;
+using std::make_pair;
+using boost::shared_ptr;
+
+SelfDKDMDialog::SelfDKDMDialog (wxWindow* parent, boost::shared_ptr<const Film> film)
+       : wxDialog (parent, wxID_ANY, _("Make DKDM for DCP-o-matic"))
+{
+       /* Main sizer */
+       wxBoxSizer* vertical = new wxBoxSizer (wxVERTICAL);
+
+       /* Font for sub-headings */
+       wxFont subheading_font (*wxNORMAL_FONT);
+       subheading_font.SetWeight (wxFONTWEIGHT_BOLD);
+
+       /* Sub-heading: CPL */
+       wxStaticText* h = new wxStaticText (this, wxID_ANY, _("CPL"));
+       h->SetFont (subheading_font);
+       vertical->Add (h, 0, wxALIGN_CENTER_VERTICAL, DCPOMATIC_SIZER_Y_GAP * 2);
+       _cpl = new KDMCPLPanel (this, film->cpls ());
+       vertical->Add (_cpl);
+
+       /* Sub-heading: Output */
+       h = new wxStaticText (this, wxID_ANY, _("Output"));
+       h->SetFont (subheading_font);
+       vertical->Add (h, 0, wxALIGN_CENTER_VERTICAL | wxTOP, DCPOMATIC_SIZER_Y_GAP * 2);
+
+       wxFlexGridSizer* table = new wxFlexGridSizer (2, DCPOMATIC_SIZER_X_GAP, DCPOMATIC_SIZER_Y_GAP);
+
+       add_label_to_sizer (table, this, _("Write to"), true);
+
+#ifdef DCPOMATIC_USE_OWN_PICKER
+       _folder = new DirPickerCtrl (this);
+#else
+       _folder = new wxDirPickerCtrl (this, wxID_ANY, wxEmptyString, wxDirSelectorPromptStr, wxDefaultPosition, wxSize (300, -1));
+#endif
+
+       _folder->SetPath (wxStandardPaths::Get().GetDocumentsDir());
+
+       table->Add (_folder, 1, wxEXPAND);
+
+       vertical->Add (table);
+
+       /* Make an overall sizer to get a nice border, and put some buttons in */
+
+       wxBoxSizer* overall_sizer = new wxBoxSizer (wxVERTICAL);
+       overall_sizer->Add (vertical, 0, wxEXPAND | wxTOP | wxLEFT | wxRIGHT, DCPOMATIC_DIALOG_BORDER);
+
+       wxSizer* buttons = CreateSeparatedButtonSizer (wxOK | wxCANCEL);
+       if (buttons) {
+               overall_sizer->Add (buttons, 0, wxEXPAND | wxALL, DCPOMATIC_SIZER_Y_GAP);
+       }
+
+       setup_sensitivity ();
+
+       SetSizer (overall_sizer);
+       overall_sizer->Layout ();
+       overall_sizer->SetSizeHints (this);
+}
+
+void
+SelfDKDMDialog::setup_sensitivity ()
+{
+       wxButton* ok = dynamic_cast<wxButton *> (FindWindowById (wxID_OK, this));
+       if (ok) {
+               ok->Enable (_cpl->has_selected ());
+       }
+}
+
+boost::filesystem::path
+SelfDKDMDialog::cpl () const
+{
+       return _cpl->cpl ();
+}
+
+boost::filesystem::path
+SelfDKDMDialog::directory () const
+{
+       return wx_to_std (_folder->GetPath ());
+}
diff --git a/src/wx/self_dkdm_dialog.h b/src/wx/self_dkdm_dialog.h
new file mode 100644 (file)
index 0000000..edf6413
--- /dev/null
@@ -0,0 +1,49 @@
+/*
+    Copyright (C) 2012 Carl Hetherington <cth@carlh.net>
+
+    This program 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,
+    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.
+
+*/
+
+#include "wx_util.h"
+#include <dcp/types.h>
+#include <wx/wx.h>
+#include <boost/shared_ptr.hpp>
+#include <boost/date_time/posix_time/posix_time.hpp>
+#include <map>
+
+class Film;
+class KDMCPLPanel;
+class DirPickerCtrl;
+class wxDirPickerCtrl;
+
+class SelfDKDMDialog : public wxDialog
+{
+public:
+       SelfDKDMDialog (wxWindow *, boost::shared_ptr<const Film>);
+
+       boost::filesystem::path cpl () const;
+       boost::filesystem::path directory () const;
+
+private:
+       void setup_sensitivity ();
+
+       KDMCPLPanel* _cpl;
+#ifdef DCPOMATIC_USE_OWN_PICKER
+       DirPickerCtrl* _folder;
+#else
+       wxDirPickerCtrl* _folder;
+#endif
+};
index 77fddc09579797fa96781cb98ddd9a217ae9eb85..393cfcd39009579085cc9f1cf73792870dad2154 100644 (file)
@@ -71,6 +71,7 @@ sources = """
           report_problem_dialog.cc
           screen_dialog.cc
           screens_panel.cc
+          self_dkdm_dialog.cc
           server_dialog.cc
           servers_list_dialog.cc
           subtitle_appearance_dialog.cc