Add a stored list of DKDMs to the creator rather than just a load button (#767).
authorCarl Hetherington <cth@carlh.net>
Wed, 23 Dec 2015 00:23:19 +0000 (00:23 +0000)
committerCarl Hetherington <cth@carlh.net>
Wed, 23 Dec 2015 00:23:19 +0000 (00:23 +0000)
ChangeLog
cscript
src/lib/config.cc
src/lib/config.h
src/tools/dcpomatic_kdm.cc
src/wx/editable_list.h
src/wx/screen_dialog.cc
src/wx/screen_dialog.h
src/wx/screens_panel.cc

index 560f09ef100049db8e17602d11e4f0127a2b3d81..3e38048903aecb31e4318918d8f8febc67b2bbdd 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2015-12-23  Carl Hetherington  <cth@carlh.net>
+
+       * Add stored list of DKDMs to KDM creator (#767).
+
 2015-12-22  Carl Hetherington  <cth@carlh.net>
 
        * Fix hang when removing screens in some cases.
diff --git a/cscript b/cscript
index 9bee9b4973a75f8ccd920934586c4620ada62591..c25a68e59d527440f11c8805e3aef317c68bc55c 100644 (file)
--- a/cscript
+++ b/cscript
@@ -279,8 +279,8 @@ def dependencies(target):
         ffmpeg_options = {}
 
     return (('ffmpeg-cdist', 'b559555', ffmpeg_options),
-            ('libdcp', 'fb03c08'),
-            ('libsub', 'f368daf'))
+            ('libdcp', '2a4eb72'),
+            ('libsub', '4e6d9c9'))
 
 def configure_options(target):
     opt = ''
index b9e25e37a9afc9720153eb1f65270218412b7ae2..54d42a1b94899b405759673d4acf6e5db01f53f2 100644 (file)
@@ -284,6 +284,12 @@ Config::read ()
        } else {
                _decryption_chain = create_certificate_chain ();
        }
+
+       list<cxml::NodePtr> dkdm = f.node_children ("DKDM");
+       BOOST_FOREACH (cxml::NodePtr i, f.node_children ("DKDM")) {
+               _dkdms.push_back (dcp::EncryptedKDM (i->content ()));
+       }
+
 }
 
 /** @return Filename to write configuration to */
@@ -416,6 +422,10 @@ Config::write () const
                root->add_child("History")->add_child_text (i->string ());
        }
 
+       BOOST_FOREACH (dcp::EncryptedKDM i, _dkdms) {
+               root->add_child("DKDM")->add_child_text (i.as_xml ());
+       }
+
        try {
                doc.write_to_file_formatted (file().string ());
        } catch (xmlpp::exception& e) {
index 664020a2a2fef500a257476bf0825d92375a02bc..6b1f3fb874e16cb13d858e4fa3302ed8bb256733 100644 (file)
@@ -27,6 +27,7 @@
 #include "isdcf_metadata.h"
 #include "types.h"
 #include <dcp/certificate_chain.h>
+#include <dcp/encrypted_kdm.h>
 #include <boost/shared_ptr.hpp>
 #include <boost/signals2.hpp>
 #include <boost/filesystem.hpp>
@@ -244,6 +245,10 @@ public:
                return _history;
        }
 
+       std::vector<dcp::EncryptedKDM> dkdms () const {
+               return _dkdms;
+       }
+
        /** @param n New number of local encoding threads */
        void set_num_local_encoding_threads (int n) {
                maybe_set (_num_local_encoding_threads, n);
@@ -432,6 +437,12 @@ public:
        }
 #endif
 
+       void set_dkdms (std::vector<dcp::EncryptedKDM> dkdms)
+       {
+               _dkdms = dkdms;
+               changed ();
+       }
+
        void clear_history () {
                _history.clear ();
                changed ();
@@ -531,6 +542,7 @@ private:
        bool _win32_console;
 #endif
        std::vector<boost::filesystem::path> _history;
+       std::vector<dcp::EncryptedKDM> _dkdms;
 
        /** Singleton instance, or 0 */
        static Config* _instance;
index ae5802e74506a4f4f9e558dc338ad4b2f1886279..929fab37b3fb431d35b58d56473860f9c740d870 100644 (file)
@@ -27,6 +27,8 @@
 #include "wx/kdm_timing_panel.h"
 #include "wx/kdm_output_panel.h"
 #include "wx/job_view_dialog.h"
+#include "wx/file_dialog_wrapper.h"
+#include "wx/editable_list.h"
 #include "lib/config.h"
 #include "lib/util.h"
 #include "lib/screen.h"
@@ -35,6 +37,7 @@
 #include "lib/exceptions.h"
 #include "lib/cinema_kdms.h"
 #include "lib/send_kdm_email_job.h"
+#include "lib/compose.hpp"
 #include <dcp/encrypted_kdm.h>
 #include <dcp/decrypted_kdm.h>
 #include <dcp/exceptions.h>
@@ -54,6 +57,7 @@
 using std::exception;
 using std::list;
 using std::string;
+using std::vector;
 using boost::shared_ptr;
 using boost::bind;
 
@@ -61,6 +65,22 @@ enum {
        ID_help_report_a_problem = 1,
 };
 
+class KDMFileDialogWrapper : public FileDialogWrapper<dcp::EncryptedKDM>
+{
+public:
+       KDMFileDialogWrapper (wxWindow* parent)
+               : FileDialogWrapper (parent, _("Select DKDM file"))
+       {
+
+       }
+};
+
+static string
+column (dcp::EncryptedKDM k)
+{
+       return String::compose ("%1 (%2)", k.content_title_text(), k.cpl_id());
+}
+
 class DOMFrame : public wxFrame
 {
 public:
@@ -118,20 +138,16 @@ public:
                _timing = new KDMTimingPanel (overall_panel);
                vertical->Add (_timing, 0, wxALL, DCPOMATIC_SIZER_Y_GAP);
 
-               wxSizer* dkdm = new wxFlexGridSizer (2, DCPOMATIC_SIZER_X_GAP, DCPOMATIC_SIZER_Y_GAP);
-               add_label_to_sizer (dkdm, overall_panel, _("DKDM file"), true);
-               _dkdm = new FilePickerCtrl (overall_panel, _("Select a DKDM XML file..."), "*.xml");
-               dkdm->Add (_dkdm, 1, wxEXPAND);
-               add_label_to_sizer (dkdm, overall_panel, _("Content title"), true);
-               _content_title_text = new wxStaticText (overall_panel, wxID_ANY, wxT(""));
-               dkdm->Add (_content_title_text, 1, wxEXPAND);
-               add_label_to_sizer (dkdm, overall_panel, _("Annotation"), true);
-               _annotation_text = new wxStaticText (overall_panel, wxID_ANY, wxT(""));
-               dkdm->Add (_annotation_text, 1, wxEXPAND);
-               add_label_to_sizer (dkdm, overall_panel, _("Issue date"), true);
-               _issue_date = new wxStaticText (overall_panel, wxID_ANY, wxT(""));
-               dkdm->Add (_issue_date, 1, wxEXPAND);
-               vertical->Add (dkdm, 0, wxALL, DCPOMATIC_SIZER_X_GAP);
+               h = new wxStaticText (overall_panel, wxID_ANY, _("DKDM"));
+               h->SetFont (subheading_font);
+               vertical->Add (h, 0, wxALIGN_CENTER_VERTICAL | wxTOP, DCPOMATIC_SIZER_Y_GAP * 2);
+
+               vector<string> columns;
+               columns.push_back (wx_to_std (_("CPL")));
+               _dkdm = new EditableList<dcp::EncryptedKDM, KDMFileDialogWrapper> (
+                       overall_panel, columns, bind (&DOMFrame::dkdms, this), bind (&DOMFrame::set_dkdms, this, _1), bind (&column, _1), false
+                       );
+               vertical->Add (_dkdm, 0, wxEXPAND | wxALL, DCPOMATIC_SIZER_Y_GAP);
 
                h = new wxStaticText (overall_panel, wxID_ANY, _("Output"));
                h->SetFont (subheading_font);
@@ -150,13 +166,23 @@ public:
                Config::instance()->Changed.connect (boost::bind (&Config::write, Config::instance ()));
 
                _screens->ScreensChanged.connect (boost::bind (&DOMFrame::setup_sensitivity, this));
-               _dkdm->Bind (wxEVT_COMMAND_FILEPICKER_CHANGED, bind (&DOMFrame::dkdm_changed, this));
                _create->Bind (wxEVT_COMMAND_BUTTON_CLICKED, bind (&DOMFrame::create_kdms, this));
+               _dkdm->SelectionChanged.connect (boost::bind (&DOMFrame::setup_sensitivity, this));
 
                setup_sensitivity ();
        }
 
 private:
+       vector<dcp::EncryptedKDM> dkdms () const
+       {
+               return Config::instance()->dkdms ();
+       }
+
+       void set_dkdms (vector<dcp::EncryptedKDM> dkdms)
+       {
+               Config::instance()->set_dkdms (dkdms);
+       }
+
        void file_exit ()
        {
                /* false here allows the close handler to veto the close request */
@@ -219,41 +245,15 @@ private:
                m->Append (help, _("&Help"));
        }
 
-       void dkdm_changed ()
-       {
-               if (_dkdm->GetPath().IsEmpty()) {
-                       return;
-               }
-
-               try {
-                       dcp::EncryptedKDM encrypted (dcp::file_to_string (wx_to_std (_dkdm->GetPath())));
-                       dcp::DecryptedKDM decrypted (encrypted, Config::instance()->decryption_chain()->key().get());
-                       _annotation_text->Enable (true);
-                       _annotation_text->SetLabel (std_to_wx (decrypted.annotation_text ()));
-                       _content_title_text->Enable (true);
-                       _content_title_text->SetLabel (std_to_wx (decrypted.content_title_text ()));
-                       _issue_date->Enable (true);
-                       _issue_date->SetLabel (std_to_wx (decrypted.issue_date ()));
-               } catch (exception& e) {
-                       error_dialog (this, wxString::Format (_("Could not load DKDM (%s)"), std_to_wx (e.what()).data()));
-                       _dkdm->SetPath (wxT(""));
-                       _annotation_text->SetLabel (wxT(""));
-                       _annotation_text->Enable (false);
-                       _content_title_text->SetLabel (wxT(""));
-                       _content_title_text->Enable (false);
-                       _issue_date->SetLabel (wxT(""));
-                       _issue_date->Enable (false);
-               }
-
-               setup_sensitivity ();
-       }
-
        void create_kdms ()
        {
                try {
+                       if (!_dkdm->selection()) {
+                               return;
+                       }
+
                        /* Decrypt the DKDM */
-                       dcp::EncryptedKDM encrypted (dcp::file_to_string (wx_to_std (_dkdm->GetPath())));
-                       dcp::DecryptedKDM decrypted (encrypted, Config::instance()->decryption_chain()->key().get());
+                       dcp::DecryptedKDM decrypted (_dkdm->selection().get(), Config::instance()->decryption_chain()->key().get());
 
                        /* This is the signer for our new KDMs */
                        shared_ptr<const dcp::CertificateChain> signer = Config::instance()->signer_chain ();
@@ -324,17 +324,13 @@ private:
        {
                _screens->setup_sensitivity ();
                _output->setup_sensitivity ();
-               _create->Enable (!_screens->screens().empty() && !_dkdm->GetPath().IsEmpty());
+               _create->Enable (!_screens->screens().empty() && _dkdm->selection());
        }
 
        wxPreferencesEditor* _config_dialog;
        ScreensPanel* _screens;
        KDMTimingPanel* _timing;
-       /* I can't seem to clear the value in a wxFilePickerCtrl, so use our own */
-       FilePickerCtrl* _dkdm;
-       wxStaticText* _annotation_text;
-       wxStaticText* _content_title_text;
-       wxStaticText* _issue_date;
+       EditableList<dcp::EncryptedKDM, KDMFileDialogWrapper>* _dkdm;
        wxButton* _create;
        KDMOutputPanel* _output;
        JobViewDialog* _job_view;
index f895e4a0a3c0669adeb873ea18579a3ceeea9a0b..1f0ead3cdf09b749c4385e843406f387a03dbf71 100644 (file)
@@ -39,7 +39,8 @@ public:
                boost::function<std::vector<T> ()> get,
                boost::function<void (std::vector<T>)> set,
                boost::function<std::string (T, int)> column,
-               bool can_edit = true
+               bool can_edit = true,
+               bool title = true
                )
                : wxPanel (parent)
                , _get (get)
@@ -55,7 +56,11 @@ public:
                table->AddGrowableCol (0, 1);
                s->Add (table, 1, wxEXPAND);
 
-               _list = new wxListCtrl (this, wxID_ANY, wxDefaultPosition, wxSize (columns.size() * 200, 100), wxLC_REPORT | wxLC_SINGLE_SEL);
+               long style = wxLC_REPORT | wxLC_SINGLE_SEL;
+               if (title) {
+                       style |= wxLC_NO_HEADER;
+               }
+               _list = new wxListCtrl (this, wxID_ANY, wxDefaultPosition, wxSize (columns.size() * 200, 100), style);
 
                for (size_t i = 0; i < columns.size(); ++i) {
                        wxListItem ip;
@@ -104,6 +109,20 @@ public:
                }
        }
 
+       boost::optional<T> selection () const
+       {
+               int item = _list->GetNextItem (-1, wxLIST_NEXT_ALL, wxLIST_STATE_SELECTED);
+               if (item == -1) {
+                       return boost::optional<T> ();
+               }
+
+               std::vector<T> all = _get ();
+               DCPOMATIC_ASSERT (item >= 0 && item < int (all.size ()));
+               return all[item];
+       }
+
+       boost::signals2::signal<void ()> SelectionChanged;
+
 private:
 
        void add_to_control (T item)
@@ -125,13 +144,13 @@ private:
                        _edit->Enable (i >= 0);
                }
                _remove->Enable (i >= 0);
+
+               SelectionChanged ();
        }
 
        void add_clicked ()
        {
-               T new_item;
                S* dialog = new S (this);
-               dialog->set (new_item);
 
                if (dialog->ShowModal() == wxID_OK) {
                        add_to_control (dialog->get ());
index 6c95c0baee7a98f62de7e432744293c89b134864..fcb878bc0911af1be4b2ffff0980cb9b23806682 100644 (file)
@@ -19,6 +19,7 @@
 
 #include "screen_dialog.h"
 #include "wx_util.h"
+#include "file_dialog_wrapper.h"
 #include "download_certificate_dialog.h"
 #include "lib/compose.hpp"
 #include "lib/util.h"
@@ -33,44 +34,22 @@ using std::vector;
 using boost::optional;
 using boost::bind;
 
-class FileDialogWrapper
+static string
+column (dcp::Certificate c)
 {
-public:
-       FileDialogWrapper (wxWindow* parent)
-               : _parent (parent)
-       {
-               _dialog = new wxFileDialog (parent, _("Select certificate file"));
-       }
-
-       void set (dcp::Certificate) {}
-
-       dcp::Certificate get () {
-               return dcp::Certificate (dcp::file_to_string (wx_to_std (_dialog->GetPath ())));
-       }
+       return c.thumbprint ();
+}
 
-       int ShowModal ()
+class CertificateFileDialogWrapper : public FileDialogWrapper<dcp::Certificate>
+{
+public:
+       CertificateFileDialogWrapper (wxWindow* parent)
+               : FileDialogWrapper (parent, _("Select certificate file"))
        {
-               return _dialog->ShowModal ();
-       }
 
-       void Destroy ()
-       {
-               _dialog->Destroy ();
-               /* eek! */
-               delete this;
        }
-
-private:
-       wxWindow* _parent;
-       wxFileDialog* _dialog;
 };
 
-static string
-column (dcp::Certificate c)
-{
-       return c.thumbprint ();
-}
-
 ScreenDialog::ScreenDialog (wxWindow* parent, string title, string name, optional<dcp::Certificate> recipient, vector<dcp::Certificate> trusted_devices)
        : wxDialog (parent, wxID_ANY, std_to_wx (title))
        , _recipient (recipient)
@@ -112,7 +91,7 @@ ScreenDialog::ScreenDialog (wxWindow* parent, string title, string name, optiona
 
        vector<string> columns;
        columns.push_back (wx_to_std (_("Thumbprint")));
-       _trusted_device_list = new EditableList<dcp::Certificate, FileDialogWrapper> (
+       _trusted_device_list = new EditableList<dcp::Certificate, CertificateFileDialogWrapper> (
                this, columns, bind (&ScreenDialog::trusted_devices, this), bind (&ScreenDialog::set_trusted_devices, this, _1), bind (&column, _1), false
                );
 
index 2985516c48870a6f6d68cb1613eef8b288c3470c..5ae369415e001cdf9cf145adeafdbf1bcb0d1573 100644 (file)
@@ -24,7 +24,7 @@
 #include <boost/optional.hpp>
 
 class Progress;
-class FileDialogWrapper;
+class CertificateFileDialogWrapper;
 
 class ScreenDialog : public wxDialog
 {
@@ -59,7 +59,7 @@ private:
        wxStaticText* _recipient_thumbprint;
        wxButton* _get_recipient_from_file;
        wxButton* _download_recipient;
-       EditableList<dcp::Certificate, FileDialogWrapper>* _trusted_device_list;
+       EditableList<dcp::Certificate, CertificateFileDialogWrapper>* _trusted_device_list;
 
        boost::optional<dcp::Certificate> _recipient;
        std::vector<dcp::Certificate> _trusted_devices;
index e45f036d29b600487943713a631eaf99672ecd80..bc7fd43df69efe75e216674833120f7b4f1142d9 100644 (file)
@@ -39,7 +39,7 @@ ScreensPanel::ScreensPanel (wxWindow* parent)
 
        wxBoxSizer* targets = new wxBoxSizer (wxHORIZONTAL);
        _targets = new wxTreeCtrl (this, wxID_ANY, wxDefaultPosition, wxDefaultSize, wxTR_HIDE_ROOT | wxTR_MULTIPLE | wxTR_HAS_BUTTONS | wxTR_LINES_AT_ROOT);
-       targets->Add (_targets, 1, wxEXPAND | wxTOP | wxRIGHT, DCPOMATIC_SIZER_GAP);
+       targets->Add (_targets, 1, wxEXPAND | wxRIGHT, DCPOMATIC_SIZER_GAP);
 
        _root = _targets->AddRoot ("Foo");