boost exception test.
[dcpomatic.git] / src / tools / dcpomatic.cc
1 /*
2     Copyright (C) 2012-2019 Carl Hetherington <cth@carlh.net>
3
4     This file is part of DCP-o-matic.
5
6     DCP-o-matic is free software; you can redistribute it and/or modify
7     it under the terms of the GNU General Public License as published by
8     the Free Software Foundation; either version 2 of the License, or
9     (at your option) any later version.
10
11     DCP-o-matic is distributed in the hope that it will be useful,
12     but WITHOUT ANY WARRANTY; without even the implied warranty of
13     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14     GNU General Public License for more details.
15
16     You should have received a copy of the GNU General Public License
17     along with DCP-o-matic.  If not, see <http://www.gnu.org/licenses/>.
18
19 */
20
21 /** @file  src/tools/dcpomatic.cc
22  *  @brief The main DCP-o-matic GUI.
23  */
24
25 #include "wx/standard_controls.h"
26 #include "wx/film_viewer.h"
27 #include "wx/film_editor.h"
28 #include "wx/job_manager_view.h"
29 #include "wx/full_config_dialog.h"
30 #include "wx/wx_util.h"
31 #include "wx/film_name_location_dialog.h"
32 #include "wx/wx_signal_manager.h"
33 #include "wx/recreate_chain_dialog.h"
34 #include "wx/about_dialog.h"
35 #include "wx/kdm_dialog.h"
36 #include "wx/self_dkdm_dialog.h"
37 #include "wx/servers_list_dialog.h"
38 #include "wx/hints_dialog.h"
39 #include "wx/update_dialog.h"
40 #include "wx/content_panel.h"
41 #include "wx/report_problem_dialog.h"
42 #include "wx/video_waveform_dialog.h"
43 #include "wx/system_information_dialog.h"
44 #include "wx/save_template_dialog.h"
45 #include "wx/templates_dialog.h"
46 #include "wx/nag_dialog.h"
47 #include "wx/export_dialog.h"
48 #include "wx/paste_dialog.h"
49 #include "wx/focus_manager.h"
50 #include "wx/html_dialog.h"
51 #include "wx/initial_setup_dialog.h"
52 #include "wx/send_i18n_dialog.h"
53 #include "wx/i18n_hook.h"
54 #include "lib/film.h"
55 #include "lib/analytics.h"
56 #include "lib/emailer.h"
57 #include "lib/config.h"
58 #include "lib/util.h"
59 #include "lib/video_content.h"
60 #include "lib/content.h"
61 #include "lib/version.h"
62 #include "lib/signal_manager.h"
63 #include "lib/log.h"
64 #include "lib/screen.h"
65 #include "lib/job_manager.h"
66 #include "lib/exceptions.h"
67 #include "lib/cinema.h"
68 #include "lib/screen_kdm.h"
69 #include "lib/send_kdm_email_job.h"
70 #include "lib/encode_server_finder.h"
71 #include "lib/update_checker.h"
72 #include "lib/cross.h"
73 #include "lib/content_factory.h"
74 #include "lib/compose.hpp"
75 #include "lib/cinema_kdms.h"
76 #include "lib/dcpomatic_socket.h"
77 #include "lib/hints.h"
78 #include "lib/dcp_content.h"
79 #include "lib/ffmpeg_encoder.h"
80 #include "lib/transcode_job.h"
81 #include "lib/dkdm_wrapper.h"
82 #include "lib/audio_content.h"
83 #include "lib/check_content_change_job.h"
84 #include "lib/text_content.h"
85 #include "lib/dcpomatic_log.h"
86 #include "lib/subtitle_encoder.h"
87 #include <dcp/exceptions.h>
88 #include <dcp/raw_convert.h>
89 #include <wx/generic/aboutdlgg.h>
90 #include <wx/stdpaths.h>
91 #include <wx/cmdline.h>
92 #include <wx/preferences.h>
93 #include <wx/splash.h>
94 #include <wx/wxhtml.h>
95 #ifdef __WXGTK__
96 #include <X11/Xlib.h>
97 #endif
98 #ifdef __WXMSW__
99 #include <shellapi.h>
100 #endif
101 #ifdef __WXOSX__
102 #include <ApplicationServices/ApplicationServices.h>
103 #endif
104 #include <boost/filesystem.hpp>
105 #include <boost/noncopyable.hpp>
106 #include <boost/foreach.hpp>
107 #include <boost/algorithm/string.hpp>
108 #include <iostream>
109 #include <fstream>
110 /* This is OK as it's only used with DCPOMATIC_WINDOWS */
111 #include <sstream>
112
113 #ifdef check
114 #undef check
115 #endif
116
117 using std::cout;
118 using std::wcout;
119 using std::string;
120 using std::vector;
121 using std::wstring;
122 using std::wstringstream;
123 using std::map;
124 using std::make_pair;
125 using std::list;
126 using std::exception;
127 using boost::shared_ptr;
128 using boost::dynamic_pointer_cast;
129 using boost::optional;
130 using boost::function;
131 using boost::is_any_of;
132 using boost::algorithm::find;
133 using dcp::raw_convert;
134
135 class FilmChangedClosingDialog : public boost::noncopyable
136 {
137 public:
138         explicit FilmChangedClosingDialog (string name)
139         {
140                 _dialog = new wxMessageDialog (
141                         0,
142                         wxString::Format (_("Save changes to film \"%s\" before closing?"), std_to_wx (name).data()),
143                         /// TRANSLATORS: this is the heading for a dialog box, which tells the user that the current
144                         /// project (Film) has been changed since it was last saved.
145                         _("Film changed"),
146                         wxYES_NO | wxCANCEL | wxYES_DEFAULT | wxICON_QUESTION
147                         );
148
149                 _dialog->SetYesNoCancelLabels (
150                         _("Save film and close"), _("Close without saving film"), _("Don't close")
151                         );
152         }
153
154         ~FilmChangedClosingDialog ()
155         {
156                 _dialog->Destroy ();
157         }
158
159         int run ()
160         {
161                 return _dialog->ShowModal ();
162         }
163
164 private:
165         wxMessageDialog* _dialog;
166 };
167
168 class FilmChangedDuplicatingDialog : public boost::noncopyable
169 {
170 public:
171         explicit FilmChangedDuplicatingDialog (string name)
172         {
173                 _dialog = new wxMessageDialog (
174                         0,
175                         wxString::Format (_("Save changes to film \"%s\" before duplicating?"), std_to_wx (name).data()),
176                         /// TRANSLATORS: this is the heading for a dialog box, which tells the user that the current
177                         /// project (Film) has been changed since it was last saved.
178                         _("Film changed"),
179                         wxYES_NO | wxCANCEL | wxYES_DEFAULT | wxICON_QUESTION
180                         );
181
182                 _dialog->SetYesNoCancelLabels (
183                         _("Save film and duplicate"), _("Duplicate without saving film"), _("Don't duplicate")
184                         );
185         }
186
187         ~FilmChangedDuplicatingDialog ()
188         {
189                 _dialog->Destroy ();
190         }
191
192         int run ()
193         {
194                 return _dialog->ShowModal ();
195         }
196
197 private:
198         wxMessageDialog* _dialog;
199 };
200
201 #define ALWAYS                        0x0
202 #define NEEDS_FILM                    0x1
203 #define NOT_DURING_DCP_CREATION       0x2
204 #define NEEDS_CPL                     0x4
205 #define NEEDS_SINGLE_SELECTED_CONTENT 0x8
206 #define NEEDS_SELECTED_CONTENT        0x10
207 #define NEEDS_SELECTED_VIDEO_CONTENT  0x20
208 #define NEEDS_CLIPBOARD               0x40
209 #define NEEDS_ENCRYPTION              0x80
210
211 map<wxMenuItem*, int> menu_items;
212
213 enum {
214         ID_file_new = 1,
215         ID_file_open,
216         ID_file_save,
217         ID_file_save_as_template,
218         ID_file_duplicate,
219         ID_file_duplicate_and_open,
220         ID_file_history,
221         /* Allow spare IDs after _history for the recent files list */
222         ID_file_close = 100,
223         ID_edit_copy,
224         ID_edit_paste,
225         ID_content_scale_to_fit_width,
226         ID_content_scale_to_fit_height,
227         ID_jobs_make_dcp,
228         ID_jobs_make_dcp_batch,
229         ID_jobs_make_kdms,
230         ID_jobs_make_self_dkdm,
231         ID_jobs_export,
232         ID_jobs_send_dcp_to_tms,
233         ID_jobs_show_dcp,
234         ID_jobs_open_dcp_in_player,
235         ID_view_closed_captions,
236         ID_view_video_waveform,
237         ID_tools_hints,
238         ID_tools_encoding_servers,
239         ID_tools_manage_templates,
240         ID_tools_check_for_updates,
241         ID_tools_send_translations,
242         ID_tools_system_information,
243         ID_tools_restore_default_preferences,
244         ID_help_report_a_problem,
245         /* IDs for shortcuts (with no associated menu item) */
246         ID_add_file,
247         ID_remove,
248         ID_start_stop,
249         ID_timeline,
250         ID_back_frame,
251         ID_forward_frame
252 };
253
254 class DOMFrame : public wxFrame
255 {
256 public:
257         explicit DOMFrame (wxString const & title)
258                 : wxFrame (NULL, -1, title)
259                 , _video_waveform_dialog (0)
260                 , _system_information_dialog (0)
261                 , _hints_dialog (0)
262                 , _servers_list_dialog (0)
263                 , _config_dialog (0)
264                 , _kdm_dialog (0)
265                 , _templates_dialog (0)
266                 , _file_menu (0)
267                 , _history_items (0)
268                 , _history_position (0)
269                 , _history_separator (0)
270                 , _update_news_requested (false)
271         {
272 #if defined(DCPOMATIC_WINDOWS)
273                 if (Config::instance()->win32_console ()) {
274                         AllocConsole();
275
276                         HANDLE handle_out = GetStdHandle(STD_OUTPUT_HANDLE);
277                         int hCrt = _open_osfhandle((intptr_t) handle_out, _O_TEXT);
278                         FILE* hf_out = _fdopen(hCrt, "w");
279                         setvbuf(hf_out, NULL, _IONBF, 1);
280                         *stdout = *hf_out;
281
282                         HANDLE handle_in = GetStdHandle(STD_INPUT_HANDLE);
283                         hCrt = _open_osfhandle((intptr_t) handle_in, _O_TEXT);
284                         FILE* hf_in = _fdopen(hCrt, "r");
285                         setvbuf(hf_in, NULL, _IONBF, 128);
286                         *stdin = *hf_in;
287
288                         cout << "DCP-o-matic is starting." << "\n";
289                 }
290 #endif
291
292                 wxMenuBar* bar = new wxMenuBar;
293                 setup_menu (bar);
294                 SetMenuBar (bar);
295
296 #ifdef DCPOMATIC_WINDOWS
297                 SetIcon (wxIcon (std_to_wx ("id")));
298 #endif
299
300                 _config_changed_connection = Config::instance()->Changed.connect (boost::bind (&DOMFrame::config_changed, this, _1));
301                 config_changed (Config::OTHER);
302
303                 _analytics_message_connection = Analytics::instance()->Message.connect(boost::bind(&DOMFrame::analytics_message, this, _1, _2));
304
305                 Bind (wxEVT_MENU, boost::bind (&DOMFrame::file_new, this),                ID_file_new);
306                 Bind (wxEVT_MENU, boost::bind (&DOMFrame::file_open, this),               ID_file_open);
307                 Bind (wxEVT_MENU, boost::bind (&DOMFrame::file_save, this),               ID_file_save);
308                 Bind (wxEVT_MENU, boost::bind (&DOMFrame::file_save_as_template, this),   ID_file_save_as_template);
309                 Bind (wxEVT_MENU, boost::bind (&DOMFrame::file_duplicate, this),          ID_file_duplicate);
310                 Bind (wxEVT_MENU, boost::bind (&DOMFrame::file_duplicate_and_open, this), ID_file_duplicate_and_open);
311                 Bind (wxEVT_MENU, boost::bind (&DOMFrame::file_close, this),              ID_file_close);
312                 Bind (wxEVT_MENU, boost::bind (&DOMFrame::file_history, this, _1),        ID_file_history, ID_file_history + HISTORY_SIZE);
313                 Bind (wxEVT_MENU, boost::bind (&DOMFrame::file_exit, this),               wxID_EXIT);
314                 Bind (wxEVT_MENU, boost::bind (&DOMFrame::edit_copy, this),               ID_edit_copy);
315                 Bind (wxEVT_MENU, boost::bind (&DOMFrame::edit_paste, this),              ID_edit_paste);
316                 Bind (wxEVT_MENU, boost::bind (&DOMFrame::edit_preferences, this),        wxID_PREFERENCES);
317                 Bind (wxEVT_MENU, boost::bind (&DOMFrame::content_scale_to_fit_width, this), ID_content_scale_to_fit_width);
318                 Bind (wxEVT_MENU, boost::bind (&DOMFrame::content_scale_to_fit_height, this), ID_content_scale_to_fit_height);
319                 Bind (wxEVT_MENU, boost::bind (&DOMFrame::jobs_make_dcp, this),           ID_jobs_make_dcp);
320                 Bind (wxEVT_MENU, boost::bind (&DOMFrame::jobs_make_kdms, this),          ID_jobs_make_kdms);
321                 Bind (wxEVT_MENU, boost::bind (&DOMFrame::jobs_make_dcp_batch, this),     ID_jobs_make_dcp_batch);
322                 Bind (wxEVT_MENU, boost::bind (&DOMFrame::jobs_make_self_dkdm, this),     ID_jobs_make_self_dkdm);
323                 Bind (wxEVT_MENU, boost::bind (&DOMFrame::jobs_export, this),             ID_jobs_export);
324                 Bind (wxEVT_MENU, boost::bind (&DOMFrame::jobs_send_dcp_to_tms, this),    ID_jobs_send_dcp_to_tms);
325                 Bind (wxEVT_MENU, boost::bind (&DOMFrame::jobs_show_dcp, this),           ID_jobs_show_dcp);
326                 Bind (wxEVT_MENU, boost::bind (&DOMFrame::jobs_open_dcp_in_player, this), ID_jobs_open_dcp_in_player);
327                 Bind (wxEVT_MENU, boost::bind (&DOMFrame::view_closed_captions, this),    ID_view_closed_captions);
328                 Bind (wxEVT_MENU, boost::bind (&DOMFrame::view_video_waveform, this),     ID_view_video_waveform);
329                 Bind (wxEVT_MENU, boost::bind (&DOMFrame::tools_hints, this),             ID_tools_hints);
330                 Bind (wxEVT_MENU, boost::bind (&DOMFrame::tools_encoding_servers, this),  ID_tools_encoding_servers);
331                 Bind (wxEVT_MENU, boost::bind (&DOMFrame::tools_manage_templates, this),  ID_tools_manage_templates);
332                 Bind (wxEVT_MENU, boost::bind (&DOMFrame::tools_check_for_updates, this), ID_tools_check_for_updates);
333                 Bind (wxEVT_MENU, boost::bind (&DOMFrame::tools_send_translations, this), ID_tools_send_translations);
334                 Bind (wxEVT_MENU, boost::bind (&DOMFrame::tools_system_information, this),ID_tools_system_information);
335                 Bind (wxEVT_MENU, boost::bind (&DOMFrame::tools_restore_default_preferences, this), ID_tools_restore_default_preferences);
336                 Bind (wxEVT_MENU, boost::bind (&DOMFrame::help_about, this),              wxID_ABOUT);
337                 Bind (wxEVT_MENU, boost::bind (&DOMFrame::help_report_a_problem, this),   ID_help_report_a_problem);
338
339                 Bind (wxEVT_CLOSE_WINDOW, boost::bind (&DOMFrame::close, this, _1));
340
341                 /* Use a panel as the only child of the Frame so that we avoid
342                    the dark-grey background on Windows.
343                 */
344                 wxPanel* overall_panel = new wxPanel (this, wxID_ANY);
345
346                 _film_viewer.reset (new FilmViewer (overall_panel));
347                 _controls = new StandardControls (overall_panel, _film_viewer, true);
348                 _film_editor = new FilmEditor (overall_panel, _film_viewer);
349                 JobManagerView* job_manager_view = new JobManagerView (overall_panel, false);
350
351                 wxBoxSizer* right_sizer = new wxBoxSizer (wxVERTICAL);
352                 right_sizer->Add (_film_viewer->panel(), 2, wxEXPAND | wxALL, 6);
353                 right_sizer->Add (_controls, 0, wxEXPAND | wxALL, 6);
354                 right_sizer->Add (job_manager_view, 1, wxEXPAND | wxALL, 6);
355
356                 wxBoxSizer* main_sizer = new wxBoxSizer (wxHORIZONTAL);
357                 main_sizer->Add (_film_editor, 0, wxEXPAND | wxALL, 6);
358                 main_sizer->Add (right_sizer, 1, wxEXPAND | wxALL, 6);
359
360                 set_menu_sensitivity ();
361
362                 _film_editor->FileChanged.connect (bind (&DOMFrame::file_changed, this, _1));
363                 _film_editor->content_panel()->SelectionChanged.connect (boost::bind (&DOMFrame::set_menu_sensitivity, this));
364                 file_changed ("");
365
366                 JobManager::instance()->ActiveJobsChanged.connect (boost::bind (&DOMFrame::set_menu_sensitivity, this));
367
368                 overall_panel->SetSizer (main_sizer);
369
370                 UpdateChecker::instance()->StateChanged.connect (boost::bind (&DOMFrame::update_checker_state_changed, this));
371
372                 FocusManager::instance()->SetFocus.connect (boost::bind (&DOMFrame::remove_accelerators, this));
373                 FocusManager::instance()->KillFocus.connect (boost::bind (&DOMFrame::add_accelerators, this));
374                 add_accelerators ();
375         }
376
377         void add_accelerators ()
378         {
379 #ifdef __WXOSX__
380                 int accelerators = 7;
381 #else
382                 int accelerators = 6;
383 #endif
384                 wxAcceleratorEntry* accel = new wxAcceleratorEntry[accelerators];
385                 accel[0].Set (wxACCEL_CTRL, static_cast<int>('A'), ID_add_file);
386                 accel[1].Set (wxACCEL_NORMAL, WXK_DELETE, ID_remove);
387                 accel[2].Set (wxACCEL_NORMAL, WXK_SPACE, ID_start_stop);
388                 accel[3].Set (wxACCEL_CTRL, static_cast<int>('T'), ID_timeline);
389                 accel[4].Set (wxACCEL_NORMAL, WXK_LEFT, ID_back_frame);
390                 accel[5].Set (wxACCEL_NORMAL, WXK_RIGHT, ID_forward_frame);
391 #ifdef __WXOSX__
392                 accel[6].Set (wxACCEL_CTRL, static_cast<int>('W'), ID_file_close);
393 #endif
394                 Bind (wxEVT_MENU, boost::bind (&ContentPanel::add_file_clicked, _film_editor->content_panel()), ID_add_file);
395                 Bind (wxEVT_MENU, boost::bind (&DOMFrame::remove_clicked, this, _1), ID_remove);
396                 Bind (wxEVT_MENU, boost::bind (&DOMFrame::start_stop_pressed, this), ID_start_stop);
397                 Bind (wxEVT_MENU, boost::bind (&DOMFrame::timeline_pressed, this), ID_timeline);
398                 Bind (wxEVT_MENU, boost::bind (&DOMFrame::back_frame, this), ID_back_frame);
399                 Bind (wxEVT_MENU, boost::bind (&DOMFrame::forward_frame, this), ID_forward_frame);
400                 wxAcceleratorTable accel_table (accelerators, accel);
401                 SetAcceleratorTable (accel_table);
402                 delete[] accel;
403         }
404
405         void remove_accelerators ()
406         {
407                 SetAcceleratorTable (wxAcceleratorTable ());
408         }
409
410         void remove_clicked (wxCommandEvent& ev)
411         {
412                 if (_film_editor->content_panel()->remove_clicked (true)) {
413                         ev.Skip ();
414                 }
415         }
416
417         void new_film (boost::filesystem::path path, optional<string> template_name)
418         {
419                 shared_ptr<Film> film (new Film (path));
420                 if (template_name) {
421                         film->use_template (template_name.get());
422                 }
423                 film->set_name (path.filename().generic_string());
424                 film->write_metadata ();
425                 set_film (film);
426         }
427
428         void load_film (boost::filesystem::path file)
429         try
430         {
431                 shared_ptr<Film> film (new Film (file));
432                 list<string> const notes = film->read_metadata ();
433
434                 if (film->state_version() == 4) {
435                         error_dialog (
436                                 0,
437                                 _("This film was created with an old version of DVD-o-matic and may not load correctly "
438                                   "in this version.  Please check the film's settings carefully.")
439                                 );
440                 }
441
442                 BOOST_FOREACH (string i, notes) {
443                         error_dialog (0, std_to_wx(i));
444                 }
445
446                 set_film (film);
447
448                 JobManager::instance()->add(shared_ptr<Job>(new CheckContentChangeJob(film)));
449         }
450         catch (std::exception& e) {
451                 wxString p = std_to_wx (file.string ());
452                 wxCharBuffer b = p.ToUTF8 ();
453                 boost::stacktrace::stacktrace* st = boost::get_error_info<traced>(e);
454                 std::cout << "Amiga!\n";
455                 if (st) {
456                         std::cout << "Awooga! " << *st << "\n";
457                 }
458                 error_dialog (this, wxString::Format (_("Could not open film at %s"), p.data()), std_to_wx (e.what()));
459         }
460
461         void set_film (shared_ptr<Film> film)
462         {
463                 _film = film;
464                 _film_viewer->set_film (_film);
465                 _film_editor->set_film (_film);
466                 _controls->set_film (_film);
467                 if (_video_waveform_dialog) {
468                         _video_waveform_dialog->Destroy ();
469                         _video_waveform_dialog = 0;
470                 }
471                 set_menu_sensitivity ();
472                 if (_film && _film->directory()) {
473                         Config::instance()->add_to_history (_film->directory().get());
474                 }
475                 if (_film) {
476                         _film->Change.connect (boost::bind (&DOMFrame::film_change, this, _1));
477                         _film->Message.connect (boost::bind(&DOMFrame::film_message, this, _1));
478                         dcpomatic_log = _film->log ();
479                 }
480         }
481
482         shared_ptr<Film> film () const {
483                 return _film;
484         }
485
486 private:
487
488         void film_message (string m)
489         {
490                 message_dialog (this, std_to_wx(m));
491         }
492
493         void film_change (ChangeType type)
494         {
495                 if (type == CHANGE_TYPE_DONE) {
496                         set_menu_sensitivity ();
497                 }
498         }
499
500         void file_changed (boost::filesystem::path f)
501         {
502                 string s = wx_to_std (_("DCP-o-matic"));
503                 if (!f.empty ()) {
504                         s += " - " + f.string ();
505                 }
506
507                 SetTitle (std_to_wx (s));
508         }
509
510         void file_new ()
511         {
512                 FilmNameLocationDialog* d = new FilmNameLocationDialog (this, _("New Film"), true);
513                 int const r = d->ShowModal ();
514
515                 if (r == wxID_OK && d->check_path() && maybe_save_then_delete_film<FilmChangedClosingDialog>()) {
516                         try {
517                                 new_film (d->path(), d->template_name());
518                         } catch (boost::filesystem::filesystem_error& e) {
519 #ifdef DCPOMATIC_WINDOWS
520                                 string bad_chars = "<>:\"/|?*";
521                                 string const filename = d->path().filename().string();
522                                 string found_bad_chars;
523                                 for (size_t i = 0; i < bad_chars.length(); ++i) {
524                                         if (filename.find(bad_chars[i]) != string::npos && found_bad_chars.find(bad_chars[i]) == string::npos) {
525                                                 found_bad_chars += bad_chars[i];
526                                         }
527                                 }
528                                 wxString message = _("Could not create folder to store film.");
529                                 message += "  ";
530                                 if (!found_bad_chars.empty()) {
531                                         message += wxString::Format (_("Try removing the %s characters from your folder name."), std_to_wx(found_bad_chars).data());
532                                 } else {
533                                         message += _("Please check that you do not have Windows controlled folder access enabled for DCP-o-matic.");
534                                 }
535                                 error_dialog (this, message, std_to_wx(e.what()));
536 #else
537                                 error_dialog (this, _("Could not create folder to store film."), std_to_wx(e.what()));
538 #endif
539                         }
540                 }
541
542                 d->Destroy ();
543         }
544
545         void file_open ()
546         {
547                 wxDirDialog* c = new wxDirDialog (
548                         this,
549                         _("Select film to open"),
550                         std_to_wx (Config::instance()->default_directory_or (wx_to_std (wxStandardPaths::Get().GetDocumentsDir())).string ()),
551                         wxDEFAULT_DIALOG_STYLE | wxDD_DIR_MUST_EXIST
552                         );
553
554                 int r;
555                 while (true) {
556                         r = c->ShowModal ();
557                         if (r == wxID_OK && c->GetPath() == wxStandardPaths::Get().GetDocumentsDir()) {
558                                 error_dialog (this, _("You did not select a folder.  Make sure that you select a folder before clicking Open."));
559                         } else {
560                                 break;
561                         }
562                 }
563
564                 if (r == wxID_OK && maybe_save_then_delete_film<FilmChangedClosingDialog>()) {
565                         load_film (wx_to_std (c->GetPath ()));
566                 }
567
568                 c->Destroy ();
569         }
570
571         void file_save ()
572         {
573                 _film->write_metadata ();
574         }
575
576         void file_save_as_template ()
577         {
578                 SaveTemplateDialog* d = new SaveTemplateDialog (this);
579                 int const r = d->ShowModal ();
580                 if (r == wxID_OK) {
581                         Config::instance()->save_template (_film, d->name ());
582                 }
583                 d->Destroy ();
584         }
585
586         void file_duplicate ()
587         {
588                 FilmNameLocationDialog* d = new FilmNameLocationDialog (this, _("Duplicate Film"), false);
589                 int const r = d->ShowModal ();
590
591                 if (r == wxID_OK && d->check_path() && maybe_save_film<FilmChangedDuplicatingDialog>()) {
592                         shared_ptr<Film> film (new Film (d->path()));
593                         film->copy_from (_film);
594                         film->set_name (d->path().filename().generic_string());
595                         film->write_metadata ();
596                 }
597
598                 d->Destroy ();
599         }
600
601         void file_duplicate_and_open ()
602         {
603                 FilmNameLocationDialog* d = new FilmNameLocationDialog (this, _("Duplicate Film"), false);
604                 int const r = d->ShowModal ();
605
606                 if (r == wxID_OK && d->check_path() && maybe_save_film<FilmChangedDuplicatingDialog>()) {
607                         shared_ptr<Film> film (new Film (d->path()));
608                         film->copy_from (_film);
609                         film->set_name (d->path().filename().generic_string());
610                         film->write_metadata ();
611                         set_film (film);
612                 }
613
614                 d->Destroy ();
615         }
616
617         void file_close ()
618         {
619                 if (_film && _film->dirty ()) {
620
621                         FilmChangedClosingDialog* dialog = new FilmChangedClosingDialog (_film->name ());
622                         int const r = dialog->run ();
623                         delete dialog;
624
625                         switch (r) {
626                         case wxID_NO:
627                                 /* Don't save and carry on to close */
628                                 break;
629                         case wxID_YES:
630                                 /* Save and carry on to close */
631                                 _film->write_metadata ();
632                                 break;
633                         case wxID_CANCEL:
634                                 /* Stop */
635                                 return;
636                         }
637                 }
638
639                 set_film (shared_ptr<Film>());
640         }
641
642         void file_history (wxCommandEvent& event)
643         {
644                 vector<boost::filesystem::path> history = Config::instance()->history ();
645                 int n = event.GetId() - ID_file_history;
646                 if (n >= 0 && n < static_cast<int> (history.size ()) && maybe_save_then_delete_film<FilmChangedClosingDialog>()) {
647                         load_film (history[n]);
648                 }
649         }
650
651         void file_exit ()
652         {
653                 /* false here allows the close handler to veto the close request */
654                 Close (false);
655         }
656
657         void edit_copy ()
658         {
659                 ContentList const sel = _film_editor->content_panel()->selected();
660                 DCPOMATIC_ASSERT (sel.size() == 1);
661                 _clipboard = sel.front()->clone();
662         }
663
664         void edit_paste ()
665         {
666                 DCPOMATIC_ASSERT (_clipboard);
667
668                 PasteDialog* d = new PasteDialog (this, static_cast<bool>(_clipboard->video), static_cast<bool>(_clipboard->audio), !_clipboard->text.empty());
669                 if (d->ShowModal() == wxID_OK) {
670                         BOOST_FOREACH (shared_ptr<Content> i, _film_editor->content_panel()->selected()) {
671                                 if (d->video() && i->video) {
672                                         DCPOMATIC_ASSERT (_clipboard->video);
673                                         i->video->take_settings_from (_clipboard->video);
674                                 }
675                                 if (d->audio() && i->audio) {
676                                         DCPOMATIC_ASSERT (_clipboard->audio);
677                                         i->audio->take_settings_from (_clipboard->audio);
678                                 }
679
680                                 if (d->text()) {
681                                         list<shared_ptr<TextContent> >::iterator j = i->text.begin ();
682                                         list<shared_ptr<TextContent> >::const_iterator k = _clipboard->text.begin ();
683                                         while (j != i->text.end() && k != _clipboard->text.end()) {
684                                                 (*j)->take_settings_from (*k);
685                                                 ++j;
686                                                 ++k;
687                                         }
688                                 }
689                         }
690                 }
691                 d->Destroy ();
692         }
693
694         void edit_preferences ()
695         {
696                 if (!_config_dialog) {
697                         _config_dialog = create_full_config_dialog ();
698                 }
699                 _config_dialog->Show (this);
700         }
701
702         void tools_restore_default_preferences ()
703         {
704                 wxMessageDialog* d = new wxMessageDialog (
705                         0,
706                         _("Are you sure you want to restore preferences to their defaults?  This cannot be undone."),
707                         _("Restore default preferences"),
708                         wxYES_NO | wxYES_DEFAULT | wxICON_QUESTION
709                         );
710
711                 int const r = d->ShowModal ();
712                 d->Destroy ();
713
714                 if (r == wxID_YES) {
715                         Config::restore_defaults ();
716                 }
717         }
718
719         void jobs_make_dcp ()
720         {
721                 double required;
722                 double available;
723                 bool can_hard_link;
724
725                 if (!_film->should_be_enough_disk_space (required, available, can_hard_link)) {
726                         wxString message;
727                         if (can_hard_link) {
728                                 message = wxString::Format (_("The DCP for this film will take up about %.1f GB, and the disk that you are using only has %.1f GB available.  Do you want to continue anyway?"), required, available);
729                         } else {
730                                 message = wxString::Format (_("The DCP and intermediate files for this film will take up about %.1f GB, and the disk that you are using only has %.1f GB available.  You would need half as much space if the filesystem supported hard links, but it does not.  Do you want to continue anyway?"), required, available);
731                         }
732                         if (!confirm_dialog (this, message)) {
733                                 return;
734                         }
735                 }
736
737                 if (Config::instance()->show_hints_before_make_dcp()) {
738                         HintsDialog* hints = new HintsDialog (this, _film, false);
739                         int const r = hints->ShowModal();
740                         hints->Destroy ();
741                         if (r == wxID_CANCEL) {
742                                 return;
743                         }
744                 }
745
746                 if (_film->encrypted ()) {
747                         NagDialog::maybe_nag (
748                                 this,
749                                 Config::NAG_ENCRYPTED_METADATA,
750                                 _("You are making an encrypted DCP.  It will not be possible to make KDMs for this DCP unless you have copies of "
751                                   "the <tt>metadata.xml</tt> file within the film and the metadata files within the DCP.\n\n"
752                                   "You should ensure that these files are <span weight=\"bold\" size=\"larger\">BACKED UP</span> "
753                                   "if you want to make KDMs for this film.")
754                                 );
755                 }
756
757                 /* Remove any existing DCP if the user agrees */
758                 boost::filesystem::path const dcp_dir = _film->dir (_film->dcp_name(), false);
759                 if (boost::filesystem::exists (dcp_dir)) {
760                         if (!confirm_dialog (this, wxString::Format (_("Do you want to overwrite the existing DCP %s?"), std_to_wx(dcp_dir.string()).data()))) {
761                                 return;
762                         }
763                         boost::filesystem::remove_all (dcp_dir);
764                 }
765
766                 try {
767                         /* It seems to make sense to auto-save metadata here, since the make DCP may last
768                            a long time, and crashes/power failures are moderately likely.
769                         */
770                         _film->write_metadata ();
771                         _film->make_dcp (true);
772                 } catch (BadSettingError& e) {
773                         error_dialog (this, wxString::Format (_("Bad setting for %s."), std_to_wx(e.setting()).data()), std_to_wx(e.what()));
774                 } catch (std::exception& e) {
775                         error_dialog (this, wxString::Format (_("Could not make DCP.")), std_to_wx(e.what()));
776                 }
777         }
778
779         void jobs_make_kdms ()
780         {
781                 if (!_film) {
782                         return;
783                 }
784
785                 if (_kdm_dialog) {
786                         _kdm_dialog->Destroy ();
787                         _kdm_dialog = 0;
788                 }
789
790                 _kdm_dialog = new KDMDialog (this, _film);
791                 _kdm_dialog->Show ();
792         }
793
794         /** @return false if we succeeded, true if not */
795         bool send_to_other_tool (int port, function<void(boost::filesystem::path)> start, string message)
796         {
797                 /* i = 0; try to connect via socket
798                    i = 1; try again, and then try to start the tool
799                    i = 2 onwards; try again.
800                 */
801                 for (int i = 0; i < 8; ++i) {
802                         try {
803                                 boost::asio::io_service io_service;
804                                 boost::asio::ip::tcp::resolver resolver (io_service);
805                                 boost::asio::ip::tcp::resolver::query query ("127.0.0.1", raw_convert<string> (port));
806                                 boost::asio::ip::tcp::resolver::iterator endpoint_iterator = resolver.resolve (query);
807                                 Socket socket (5);
808                                 socket.connect (*endpoint_iterator);
809                                 DCPOMATIC_ASSERT (_film->directory ());
810                                 socket.write (message.length() + 1);
811                                 socket.write ((uint8_t *) message.c_str(), message.length() + 1);
812                                 /* OK\0 */
813                                 uint8_t ok[3];
814                                 socket.read (ok, 3);
815                                 return false;
816                         } catch (exception& e) {
817
818                         }
819
820                         if (i == 1) {
821                                 start (wx_to_std (wxStandardPaths::Get().GetExecutablePath()));
822                         }
823
824                         dcpomatic_sleep_seconds (1);
825                 }
826
827                 return true;
828         }
829
830         void jobs_make_dcp_batch ()
831         {
832                 if (!_film) {
833                         return;
834                 }
835
836                 if (Config::instance()->show_hints_before_make_dcp()) {
837                         HintsDialog* hints = new HintsDialog (this, _film, false);
838                         int const r = hints->ShowModal();
839                         hints->Destroy ();
840                         if (r == wxID_CANCEL) {
841                                 return;
842                         }
843                 }
844
845                 _film->write_metadata ();
846
847                 if (send_to_other_tool (BATCH_JOB_PORT, bind (&start_batch_converter, _1), _film->directory()->string())) {
848                         error_dialog (this, _("Could not find batch converter."));
849                 }
850         }
851
852         void jobs_open_dcp_in_player ()
853         {
854                 if (!_film) {
855                         return;
856                 }
857
858                 if (send_to_other_tool (PLAYER_PLAY_PORT, bind (&start_player, _1), _film->dir(_film->dcp_name(false)).string())) {
859                         error_dialog (this, _("Could not find player."));
860                 }
861         }
862
863         void jobs_make_self_dkdm ()
864         {
865                 if (!_film) {
866                         return;
867                 }
868
869                 SelfDKDMDialog* d = new SelfDKDMDialog (this, _film);
870                 if (d->ShowModal () != wxID_OK) {
871                         d->Destroy ();
872                         return;
873                 }
874
875                 NagDialog::maybe_nag (
876                         this,
877                         Config::NAG_DKDM_CONFIG,
878                         wxString::Format (
879                                 _("You are making a DKDM which is encrypted by a private key held in"
880                                   "\n\n<tt>%s</tt>\n\nIt is <span weight=\"bold\" size=\"larger\">VITALLY IMPORTANT</span> "
881                                   "that you <span weight=\"bold\" size=\"larger\">BACK UP THIS FILE</span> since if it is lost "
882                                   "your DKDMs (and the DCPs they protect) will become useless."), std_to_wx(Config::config_file().string()).data()
883                                 )
884                         );
885
886
887                 dcp::LocalTime from (Config::instance()->decryption_chain()->leaf().not_before());
888                 from.add_months (1);
889                 dcp::LocalTime to (Config::instance()->decryption_chain()->leaf().not_after());
890                 to.add_months (-1);
891
892                 optional<dcp::EncryptedKDM> kdm;
893                 try {
894                         kdm = _film->make_kdm (
895                                 Config::instance()->decryption_chain()->leaf(),
896                                 vector<string>(),
897                                 d->cpl (),
898                                 from, to,
899                                 dcp::MODIFIED_TRANSITIONAL_1,
900                                 true,
901                                 0
902                                 );
903                 } catch (dcp::NotEncryptedError& e) {
904                         error_dialog (this, _("CPL's content is not encrypted."));
905                 } catch (exception& e) {
906                         error_dialog (this, e.what ());
907                 } catch (...) {
908                         error_dialog (this, _("An unknown exception occurred."));
909                 }
910
911                 if (kdm) {
912                         if (d->internal ()) {
913                                 shared_ptr<DKDMGroup> dkdms = Config::instance()->dkdms ();
914                                 dkdms->add (shared_ptr<DKDM> (new DKDM (kdm.get())));
915                                 Config::instance()->changed ();
916                         } else {
917                                 boost::filesystem::path path = d->directory() / (_film->dcp_name(false) + "_DKDM.xml");
918                                 kdm->as_xml (path);
919                         }
920                 }
921
922                 d->Destroy ();
923         }
924
925         void jobs_export ()
926         {
927                 ExportDialog* d = new ExportDialog (this, _film->isdcf_name(true));
928                 if (d->ShowModal() == wxID_OK) {
929                         if (boost::filesystem::exists(d->path())) {
930                                 bool ok = confirm_dialog(
931                                                 this,
932                                                 wxString::Format (_("File %s already exists.  Do you want to overwrite it?"), std_to_wx(d->path().string()).data())
933                                                 );
934
935                                 if (!ok) {
936                                         d->Destroy ();
937                                         return;
938                                 }
939                         }
940
941                         shared_ptr<TranscodeJob> job (new TranscodeJob (_film));
942                         if (d->format() == EXPORT_FORMAT_SUBTITLES_DCP) {
943                                 job->set_encoder (
944                                         shared_ptr<SubtitleEncoder>(new SubtitleEncoder(_film, job, d->path(), d->split_reels()))
945                                         );
946                         } else {
947                                 job->set_encoder (
948                                         shared_ptr<FFmpegEncoder> (
949                                                 new FFmpegEncoder (_film, job, d->path(), d->format(), d->mixdown_to_stereo(), d->split_reels(), d->x264_crf()
950 #ifdef DCPOMATIC_VARIANT_SWAROOP
951                                                                    , optional<dcp::Key>(), optional<string>()
952 #endif
953                                                         )
954                                                 )
955                                         );
956                         }
957                         JobManager::instance()->add (job);
958                 }
959                 d->Destroy ();
960         }
961
962         void content_scale_to_fit_width ()
963         {
964                 ContentList vc = _film_editor->content_panel()->selected_video ();
965                 for (ContentList::iterator i = vc.begin(); i != vc.end(); ++i) {
966                         (*i)->video->scale_and_crop_to_fit_width (_film);
967                 }
968         }
969
970         void content_scale_to_fit_height ()
971         {
972                 ContentList vc = _film_editor->content_panel()->selected_video ();
973                 for (ContentList::iterator i = vc.begin(); i != vc.end(); ++i) {
974                         (*i)->video->scale_and_crop_to_fit_height (_film);
975                 }
976         }
977
978         void jobs_send_dcp_to_tms ()
979         {
980                 _film->send_dcp_to_tms ();
981         }
982
983         void jobs_show_dcp ()
984         {
985                 DCPOMATIC_ASSERT (_film->directory ());
986 #ifdef DCPOMATIC_WINDOWS
987                 wstringstream args;
988                 args << "/select," << _film->dir (_film->dcp_name(false));
989                 ShellExecute (0, L"open", L"explorer.exe", args.str().c_str(), 0, SW_SHOWDEFAULT);
990 #endif
991
992 #ifdef DCPOMATIC_LINUX
993                 int r = system ("which nautilus");
994                 if (WEXITSTATUS (r) == 0) {
995                         r = system (String::compose("nautilus \"%1\"", _film->directory()->string()).c_str());
996                         if (WEXITSTATUS (r)) {
997                                 error_dialog (this, _("Could not show DCP."), _("Could not run nautilus"));
998                         }
999                 } else {
1000                         int r = system ("which konqueror");
1001                         if (WEXITSTATUS (r) == 0) {
1002                                 r = system (String::compose ("konqueror \"%1\"", _film->directory()->string()).c_str());
1003                                 if (WEXITSTATUS (r)) {
1004                                         error_dialog (this, _("Could not show DCP"), _("Could not run konqueror"));
1005                                 }
1006                         }
1007                 }
1008 #endif
1009
1010 #ifdef DCPOMATIC_OSX
1011                 int r = system (String::compose ("open -R \"%1\"", _film->dir (_film->dcp_name(false)).string()).c_str());
1012                 if (WEXITSTATUS (r)) {
1013                         error_dialog (this, _("Could not show DCP"));
1014                 }
1015 #endif
1016         }
1017
1018         void view_closed_captions ()
1019         {
1020                 _film_viewer->show_closed_captions ();
1021         }
1022
1023         void view_video_waveform ()
1024         {
1025                 if (!_video_waveform_dialog) {
1026                         _video_waveform_dialog = new VideoWaveformDialog (this, _film, _film_viewer);
1027                 }
1028
1029                 _video_waveform_dialog->Show ();
1030         }
1031
1032         void tools_system_information ()
1033         {
1034                 if (!_system_information_dialog) {
1035                         _system_information_dialog = new SystemInformationDialog (this, _film_viewer);
1036                 }
1037
1038                 _system_information_dialog->Show ();
1039         }
1040
1041         void tools_hints ()
1042         {
1043                 if (!_hints_dialog) {
1044                         _hints_dialog = new HintsDialog (this, _film, true);
1045                 }
1046
1047                 _hints_dialog->Show ();
1048         }
1049
1050         void tools_encoding_servers ()
1051         {
1052                 if (!_servers_list_dialog) {
1053                         _servers_list_dialog = new ServersListDialog (this);
1054                 }
1055
1056                 _servers_list_dialog->Show ();
1057         }
1058
1059         void tools_manage_templates ()
1060         {
1061                 if (!_templates_dialog) {
1062                         _templates_dialog = new TemplatesDialog (this);
1063                 }
1064
1065                 _templates_dialog->Show ();
1066         }
1067
1068         void tools_check_for_updates ()
1069         {
1070                 UpdateChecker::instance()->run ();
1071                 _update_news_requested = true;
1072         }
1073
1074         void tools_send_translations ()
1075         {
1076                 SendI18NDialog* d = new SendI18NDialog (this);
1077                 if (d->ShowModal() == wxID_OK) {
1078                         string body;
1079                         body += d->name() + "\n";
1080                         body += d->language() + "\n";
1081                         body += string(dcpomatic_version) + " " + string(dcpomatic_git_commit) + "\n";
1082                         body += "--\n";
1083                         map<string, string> translations = I18NHook::translations ();
1084                         for (map<string, string>::const_iterator i = translations.begin(); i != translations.end(); ++i) {
1085                                 body += i->first + "\n" + i->second + "\n\n";
1086                         }
1087                         list<string> to;
1088                         to.push_back ("carl@dcpomatic.com");
1089                         Emailer emailer (d->email(), to, "DCP-o-matic translations", body);
1090                         emailer.send ("main.carlh.net", 2525, EMAIL_PROTOCOL_STARTTLS);
1091                 }
1092
1093                 d->Destroy ();
1094         }
1095
1096         void help_about ()
1097         {
1098                 AboutDialog* d = new AboutDialog (this);
1099                 d->ShowModal ();
1100                 d->Destroy ();
1101         }
1102
1103         void help_report_a_problem ()
1104         {
1105                 ReportProblemDialog* d = new ReportProblemDialog (this, _film);
1106                 if (d->ShowModal () == wxID_OK) {
1107                         d->report ();
1108                 }
1109                 d->Destroy ();
1110         }
1111
1112         bool should_close ()
1113         {
1114                 if (!JobManager::instance()->work_to_do ()) {
1115                         return true;
1116                 }
1117
1118                 wxMessageDialog* d = new wxMessageDialog (
1119                         0,
1120                         _("There are unfinished jobs; are you sure you want to quit?"),
1121                         _("Unfinished jobs"),
1122                         wxYES_NO | wxYES_DEFAULT | wxICON_QUESTION
1123                         );
1124
1125                 bool const r = d->ShowModal() == wxID_YES;
1126                 d->Destroy ();
1127                 return r;
1128         }
1129
1130         void close (wxCloseEvent& ev)
1131         {
1132                 if (!should_close ()) {
1133                         ev.Veto ();
1134                         return;
1135                 }
1136
1137                 if (_film && _film->dirty ()) {
1138
1139                         FilmChangedClosingDialog* dialog = new FilmChangedClosingDialog (_film->name ());
1140                         int const r = dialog->run ();
1141                         delete dialog;
1142
1143                         switch (r) {
1144                         case wxID_NO:
1145                                 /* Don't save and carry on to close */
1146                                 break;
1147                         case wxID_YES:
1148                                 /* Save and carry on to close */
1149                                 _film->write_metadata ();
1150                                 break;
1151                         case wxID_CANCEL:
1152                                 /* Veto the event and stop */
1153                                 ev.Veto ();
1154                                 return;
1155                         }
1156                 }
1157
1158                 /* We don't want to hear about any more configuration changes, since they
1159                    cause the File menu to be altered, which itself will be deleted around
1160                    now (without, as far as I can see, any way for us to find out).
1161                 */
1162                 _config_changed_connection.disconnect ();
1163
1164                 /* Also stop hearing about analytics-related stuff */
1165                 _analytics_message_connection.disconnect ();
1166
1167                 ev.Skip ();
1168         }
1169
1170         void set_menu_sensitivity ()
1171         {
1172                 list<shared_ptr<Job> > jobs = JobManager::instance()->get ();
1173                 list<shared_ptr<Job> >::iterator i = jobs.begin();
1174                 while (i != jobs.end() && (*i)->json_name() != "transcode") {
1175                         ++i;
1176                 }
1177                 bool const dcp_creation = (i != jobs.end ()) && !(*i)->finished ();
1178                 bool const have_cpl = _film && !_film->cpls().empty ();
1179                 bool const have_single_selected_content = _film_editor->content_panel()->selected().size() == 1;
1180                 bool const have_selected_content = !_film_editor->content_panel()->selected().empty();
1181                 bool const have_selected_video_content = !_film_editor->content_panel()->selected_video().empty();
1182
1183                 for (map<wxMenuItem*, int>::iterator j = menu_items.begin(); j != menu_items.end(); ++j) {
1184
1185                         bool enabled = true;
1186
1187                         if ((j->second & NEEDS_FILM) && !_film) {
1188                                 enabled = false;
1189                         }
1190
1191                         if ((j->second & NOT_DURING_DCP_CREATION) && dcp_creation) {
1192                                 enabled = false;
1193                         }
1194
1195                         if ((j->second & NEEDS_CPL) && !have_cpl) {
1196                                 enabled = false;
1197                         }
1198
1199                         if ((j->second & NEEDS_SELECTED_CONTENT) && !have_selected_content) {
1200                                 enabled = false;
1201                         }
1202
1203                         if ((j->second & NEEDS_SINGLE_SELECTED_CONTENT) && !have_single_selected_content) {
1204                                 enabled = false;
1205                         }
1206
1207                         if ((j->second & NEEDS_SELECTED_VIDEO_CONTENT) && !have_selected_video_content) {
1208                                 enabled = false;
1209                         }
1210
1211                         if ((j->second & NEEDS_CLIPBOARD) && !_clipboard) {
1212                                 enabled = false;
1213                         }
1214
1215                         if ((j->second & NEEDS_ENCRYPTION) && (!_film || !_film->encrypted())) {
1216                                 enabled = false;
1217                         }
1218
1219                         j->first->Enable (enabled);
1220                 }
1221         }
1222
1223         /** @return true if the operation that called this method
1224          *  should continue, false to abort it.
1225          */
1226         template <class T>
1227         bool maybe_save_film ()
1228         {
1229                 if (!_film) {
1230                         return true;
1231                 }
1232
1233                 if (_film->dirty ()) {
1234                         T d (_film->name ());
1235                         switch (d.run ()) {
1236                         case wxID_NO:
1237                                 return true;
1238                         case wxID_YES:
1239                                 _film->write_metadata ();
1240                                 return true;
1241                         case wxID_CANCEL:
1242                                 return false;
1243                         }
1244                 }
1245
1246                 return true;
1247         }
1248
1249         template <class T>
1250         bool maybe_save_then_delete_film ()
1251         {
1252                 bool const r = maybe_save_film<T> ();
1253                 if (r) {
1254                         _film.reset ();
1255                 }
1256                 return r;
1257         }
1258
1259         void add_item (wxMenu* menu, wxString text, int id, int sens)
1260         {
1261                 wxMenuItem* item = menu->Append (id, text);
1262                 menu_items.insert (make_pair (item, sens));
1263         }
1264
1265         void setup_menu (wxMenuBar* m)
1266         {
1267                 _file_menu = new wxMenu;
1268                 add_item (_file_menu, _("New...\tCtrl-N"), ID_file_new, ALWAYS);
1269                 add_item (_file_menu, _("&Open...\tCtrl-O"), ID_file_open, ALWAYS);
1270                 _file_menu->AppendSeparator ();
1271                 add_item (_file_menu, _("&Save\tCtrl-S"), ID_file_save, NEEDS_FILM);
1272                 _file_menu->AppendSeparator ();
1273                 add_item (_file_menu, _("Save as &template..."), ID_file_save_as_template, NEEDS_FILM);
1274                 add_item (_file_menu, _("Duplicate..."), ID_file_duplicate, NEEDS_FILM);
1275                 add_item (_file_menu, _("Duplicate and open..."), ID_file_duplicate_and_open, NEEDS_FILM);
1276
1277                 _history_position = _file_menu->GetMenuItems().GetCount();
1278
1279                 _file_menu->AppendSeparator ();
1280                 add_item (_file_menu, _("&Close\tCtrl-W"), ID_file_close, NEEDS_FILM);
1281
1282 #ifndef __WXOSX__
1283                 _file_menu->AppendSeparator ();
1284 #endif
1285
1286 #ifdef __WXOSX__
1287                 add_item (_file_menu, _("&Exit"), wxID_EXIT, ALWAYS);
1288 #else
1289                 add_item (_file_menu, _("&Quit"), wxID_EXIT, ALWAYS);
1290 #endif
1291
1292                 wxMenu* edit = new wxMenu;
1293                 add_item (edit, _("Copy settings\tCtrl-C"), ID_edit_copy, NEEDS_FILM | NOT_DURING_DCP_CREATION | NEEDS_SINGLE_SELECTED_CONTENT);
1294                 add_item (edit, _("Paste settings...\tCtrl-V"), ID_edit_paste, NEEDS_FILM | NOT_DURING_DCP_CREATION | NEEDS_SELECTED_CONTENT | NEEDS_CLIPBOARD);
1295
1296 #ifdef __WXOSX__
1297                 add_item (_file_menu, _("&Preferences...\tCtrl-P"), wxID_PREFERENCES, ALWAYS);
1298 #else
1299                 add_item (edit, _("&Preferences...\tCtrl-P"), wxID_PREFERENCES, ALWAYS);
1300 #endif
1301
1302                 wxMenu* content = new wxMenu;
1303                 add_item (content, _("Scale to fit &width"), ID_content_scale_to_fit_width, NEEDS_FILM | NEEDS_SELECTED_VIDEO_CONTENT);
1304                 add_item (content, _("Scale to fit &height"), ID_content_scale_to_fit_height, NEEDS_FILM | NEEDS_SELECTED_VIDEO_CONTENT);
1305
1306                 wxMenu* jobs_menu = new wxMenu;
1307                 add_item (jobs_menu, _("&Make DCP\tCtrl-M"), ID_jobs_make_dcp, NEEDS_FILM | NOT_DURING_DCP_CREATION);
1308                 add_item (jobs_menu, _("Make DCP in &batch converter\tCtrl-B"), ID_jobs_make_dcp_batch, NEEDS_FILM | NOT_DURING_DCP_CREATION);
1309                 jobs_menu->AppendSeparator ();
1310                 add_item (jobs_menu, _("Make &KDMs...\tCtrl-K"), ID_jobs_make_kdms, NEEDS_FILM);
1311                 add_item (jobs_menu, _("Make DKDM for DCP-o-matic..."), ID_jobs_make_self_dkdm, NEEDS_FILM | NEEDS_ENCRYPTION);
1312                 jobs_menu->AppendSeparator ();
1313                 add_item (jobs_menu, _("Export...\tCtrl-E"), ID_jobs_export, NEEDS_FILM);
1314                 jobs_menu->AppendSeparator ();
1315                 add_item (jobs_menu, _("&Send DCP to TMS"), ID_jobs_send_dcp_to_tms, NEEDS_FILM | NOT_DURING_DCP_CREATION | NEEDS_CPL);
1316                 add_item (jobs_menu, _("S&how DCP"), ID_jobs_show_dcp, NEEDS_FILM | NOT_DURING_DCP_CREATION | NEEDS_CPL);
1317                 add_item (jobs_menu, _("Open DCP in &player"), ID_jobs_open_dcp_in_player, NEEDS_FILM | NOT_DURING_DCP_CREATION | NEEDS_CPL);
1318
1319                 wxMenu* view = new wxMenu;
1320                 add_item (view, _("Closed captions..."), ID_view_closed_captions, NEEDS_FILM);
1321                 add_item (view, _("Video waveform..."), ID_view_video_waveform, NEEDS_FILM);
1322
1323                 wxMenu* tools = new wxMenu;
1324                 add_item (tools, _("Hints..."), ID_tools_hints, NEEDS_FILM);
1325                 add_item (tools, _("Encoding servers..."), ID_tools_encoding_servers, 0);
1326                 add_item (tools, _("Manage templates..."), ID_tools_manage_templates, 0);
1327                 add_item (tools, _("Check for updates"), ID_tools_check_for_updates, 0);
1328                 add_item (tools, _("Send translations..."), ID_tools_send_translations, 0);
1329                 add_item (tools, _("System information..."), ID_tools_system_information, 0);
1330                 tools->AppendSeparator ();
1331                 add_item (tools, _("Restore default preferences"), ID_tools_restore_default_preferences, ALWAYS);
1332
1333                 wxMenu* help = new wxMenu;
1334 #ifdef __WXOSX__
1335                 add_item (help, _("About DCP-o-matic"), wxID_ABOUT, ALWAYS);
1336 #else
1337                 add_item (help, _("About"), wxID_ABOUT, ALWAYS);
1338 #endif
1339                 add_item (help, _("Report a problem..."), ID_help_report_a_problem, NEEDS_FILM);
1340
1341                 m->Append (_file_menu, _("&File"));
1342                 m->Append (edit, _("&Edit"));
1343                 m->Append (content, _("&Content"));
1344                 m->Append (jobs_menu, _("&Jobs"));
1345                 m->Append (view, _("&View"));
1346                 m->Append (tools, _("&Tools"));
1347                 m->Append (help, _("&Help"));
1348         }
1349
1350         void config_changed (Config::Property what)
1351         {
1352                 /* Instantly save any config changes when using the DCP-o-matic GUI */
1353                 if (what == Config::CINEMAS) {
1354                         try {
1355                                 Config::instance()->write_cinemas();
1356                         } catch (exception& e) {
1357                                 error_dialog (
1358                                         this,
1359                                         wxString::Format (
1360                                                 _("Could not write to cinemas file at %s.  Your changes have not been saved."),
1361                                                 std_to_wx (Config::instance()->cinemas_file().string()).data()
1362                                                 )
1363                                         );
1364                         }
1365                 } else {
1366                         try {
1367                                 Config::instance()->write_config();
1368                         } catch (exception& e) {
1369                                 error_dialog (
1370                                         this,
1371                                         wxString::Format (
1372                                                 _("Could not write to config file at %s.  Your changes have not been saved."),
1373                                                 std_to_wx (Config::instance()->cinemas_file().string()).data()
1374                                                 )
1375                                         );
1376                         }
1377                 }
1378
1379                 for (int i = 0; i < _history_items; ++i) {
1380                         delete _file_menu->Remove (ID_file_history + i);
1381                 }
1382
1383                 if (_history_separator) {
1384                         _file_menu->Remove (_history_separator);
1385                 }
1386                 delete _history_separator;
1387                 _history_separator = 0;
1388
1389                 int pos = _history_position;
1390
1391                 /* Clear out non-existant history items before we re-build the menu */
1392                 Config::instance()->clean_history ();
1393                 vector<boost::filesystem::path> history = Config::instance()->history ();
1394
1395                 if (!history.empty ()) {
1396                         _history_separator = _file_menu->InsertSeparator (pos++);
1397                 }
1398
1399                 for (size_t i = 0; i < history.size(); ++i) {
1400                         string s;
1401                         if (i < 9) {
1402                                 s = String::compose ("&%1 %2", i + 1, history[i].string());
1403                         } else {
1404                                 s = history[i].string();
1405                         }
1406                         _file_menu->Insert (pos++, ID_file_history + i, std_to_wx (s));
1407                 }
1408
1409                 _history_items = history.size ();
1410
1411                 dcpomatic_log->set_types (Config::instance()->log_types());
1412         }
1413
1414         void update_checker_state_changed ()
1415         {
1416                 UpdateChecker* uc = UpdateChecker::instance ();
1417
1418                 bool const announce =
1419                         _update_news_requested ||
1420                         (uc->stable() && Config::instance()->check_for_updates()) ||
1421                         (uc->test() && Config::instance()->check_for_updates() && Config::instance()->check_for_test_updates());
1422
1423                 _update_news_requested = false;
1424
1425                 if (!announce) {
1426                         return;
1427                 }
1428
1429                 if (uc->state() == UpdateChecker::YES) {
1430                         UpdateDialog* dialog = new UpdateDialog (this, uc->stable (), uc->test ());
1431                         dialog->ShowModal ();
1432                         dialog->Destroy ();
1433                 } else if (uc->state() == UpdateChecker::FAILED) {
1434                         error_dialog (this, _("The DCP-o-matic download server could not be contacted."));
1435                 } else {
1436                         error_dialog (this, _("There are no new versions of DCP-o-matic available."));
1437                 }
1438
1439                 _update_news_requested = false;
1440         }
1441
1442         void start_stop_pressed ()
1443         {
1444                 if (_film_viewer->playing()) {
1445                         _film_viewer->stop();
1446                 } else {
1447                         _film_viewer->start();
1448                 }
1449         }
1450
1451         void timeline_pressed ()
1452         {
1453                 _film_editor->content_panel()->timeline_clicked ();
1454         }
1455
1456         void back_frame ()
1457         {
1458                 _film_viewer->seek_by (-_film_viewer->one_video_frame(), true);
1459         }
1460
1461         void forward_frame ()
1462         {
1463                 _film_viewer->seek_by (_film_viewer->one_video_frame(), true);
1464         }
1465
1466         void analytics_message (string title, string html)
1467         {
1468                 HTMLDialog* d = new HTMLDialog(this, std_to_wx(title), std_to_wx(html));
1469                 d->ShowModal();
1470                 d->Destroy();
1471         }
1472
1473         FilmEditor* _film_editor;
1474         boost::shared_ptr<FilmViewer> _film_viewer;
1475         StandardControls* _controls;
1476         VideoWaveformDialog* _video_waveform_dialog;
1477         SystemInformationDialog* _system_information_dialog;
1478         HintsDialog* _hints_dialog;
1479         ServersListDialog* _servers_list_dialog;
1480         wxPreferencesEditor* _config_dialog;
1481         KDMDialog* _kdm_dialog;
1482         TemplatesDialog* _templates_dialog;
1483         wxMenu* _file_menu;
1484         shared_ptr<Film> _film;
1485         int _history_items;
1486         int _history_position;
1487         wxMenuItem* _history_separator;
1488         boost::signals2::scoped_connection _config_changed_connection;
1489         boost::signals2::scoped_connection _analytics_message_connection;
1490         bool _update_news_requested;
1491         shared_ptr<Content> _clipboard;
1492 };
1493
1494 static const wxCmdLineEntryDesc command_line_description[] = {
1495         { wxCMD_LINE_SWITCH, "n", "new", "create new film", wxCMD_LINE_VAL_NONE, wxCMD_LINE_PARAM_OPTIONAL },
1496         { wxCMD_LINE_OPTION, "c", "content", "add content file / directory", wxCMD_LINE_VAL_STRING, wxCMD_LINE_PARAM_OPTIONAL },
1497         { wxCMD_LINE_OPTION, "d", "dcp", "add content DCP", wxCMD_LINE_VAL_STRING, wxCMD_LINE_PARAM_OPTIONAL },
1498         { wxCMD_LINE_SWITCH, "v", "version", "show DCP-o-matic version", wxCMD_LINE_VAL_NONE, wxCMD_LINE_PARAM_OPTIONAL },
1499         { wxCMD_LINE_OPTION, "", "config", "directory containing config.xml and cinemas.xml", wxCMD_LINE_VAL_STRING, wxCMD_LINE_PARAM_OPTIONAL },
1500         { wxCMD_LINE_PARAM, 0, 0, "film to load or create", wxCMD_LINE_VAL_STRING, wxCMD_LINE_PARAM_OPTIONAL },
1501         { wxCMD_LINE_NONE, "", "", "", wxCmdLineParamType (0), 0 }
1502 };
1503
1504 /** @class App
1505  *  @brief The magic App class for wxWidgets.
1506  */
1507 class App : public wxApp
1508 {
1509 public:
1510         App ()
1511                 : wxApp ()
1512                 , _frame (0)
1513                 , _splash (0)
1514         {
1515 #ifdef DCPOMATIC_LINUX
1516                 XInitThreads ();
1517 #endif
1518         }
1519
1520 private:
1521
1522         bool OnInit ()
1523         {
1524                 try {
1525                         wxInitAllImageHandlers ();
1526
1527                         Config::FailedToLoad.connect (boost::bind (&App::config_failed_to_load, this));
1528                         Config::Warning.connect (boost::bind (&App::config_warning, this, _1));
1529
1530                         _splash = maybe_show_splash ();
1531
1532                         SetAppName (_("DCP-o-matic"));
1533
1534                         if (!wxApp::OnInit()) {
1535                                 return false;
1536                         }
1537
1538 #ifdef DCPOMATIC_LINUX
1539                         unsetenv ("UBUNTU_MENUPROXY");
1540 #endif
1541
1542 #ifdef __WXOSX__
1543                         ProcessSerialNumber serial;
1544                         GetCurrentProcess (&serial);
1545                         TransformProcessType (&serial, kProcessTransformToForegroundApplication);
1546 #endif
1547
1548                         dcpomatic_setup_path_encoding ();
1549
1550                         /* Enable i18n; this will create a Config object
1551                            to look for a force-configured language.  This Config
1552                            object will be wrong, however, because dcpomatic_setup
1553                            hasn't yet been called and there aren't any filters etc.
1554                            set up yet.
1555                         */
1556                         dcpomatic_setup_i18n ();
1557
1558                         /* Set things up, including filters etc.
1559                            which will now be internationalised correctly.
1560                         */
1561                         dcpomatic_setup ();
1562
1563                         /* Force the configuration to be re-loaded correctly next
1564                            time it is needed.
1565                         */
1566                         Config::drop ();
1567
1568                         /* We only look out for bad configuration from here on, as before
1569                            dcpomatic_setup() we haven't got OpenSSL ready so there will be
1570                            incorrect certificate chain validity errors.
1571                         */
1572                         Config::Bad.connect (boost::bind(&App::config_bad, this, _1));
1573
1574                         _frame = new DOMFrame (_("DCP-o-matic"));
1575                         SetTopWindow (_frame);
1576                         _frame->Maximize ();
1577                         close_splash ();
1578
1579                         if (!Config::instance()->nagged(Config::NAG_INITIAL_SETUP)) {
1580                                 InitialSetupDialog* d = new InitialSetupDialog ();
1581                                 d->ShowModal ();
1582                                 d->Destroy ();
1583                                 Config::instance()->set_nagged(Config::NAG_INITIAL_SETUP, true);
1584                         }
1585
1586                         if (running_32_on_64 ()) {
1587                                 NagDialog::maybe_nag (
1588                                         _frame, Config::NAG_32_ON_64,
1589                                         _("You are running the 32-bit version of DCP-o-matic on a 64-bit version of Windows.  This will limit the memory available to DCP-o-matic and may cause errors.  You are strongly advised to install the 64-bit version of DCP-o-matic."),
1590                                         false);
1591                         }
1592
1593                         _frame->Show ();
1594
1595                         signal_manager = new wxSignalManager (this);
1596                         Bind (wxEVT_IDLE, boost::bind (&App::idle, this, _1));
1597
1598                         if (!_film_to_load.empty() && boost::filesystem::is_directory (_film_to_load)) {
1599                                 try {
1600                                         _frame->load_film (_film_to_load);
1601                                 } catch (exception& e) {
1602                                         error_dialog (0, std_to_wx (String::compose (wx_to_std (_("Could not load film %1 (%2)")), _film_to_load)), std_to_wx(e.what()));
1603                                 }
1604                         }
1605
1606                         if (!_film_to_create.empty ()) {
1607                                 _frame->new_film (_film_to_create, optional<string> ());
1608                                 if (!_content_to_add.empty ()) {
1609                                         BOOST_FOREACH (shared_ptr<Content> i, content_factory(_content_to_add)) {
1610                                                 _frame->film()->examine_and_add_content (i);
1611                                         }
1612                                 }
1613                                 if (!_dcp_to_add.empty ()) {
1614                                         _frame->film()->examine_and_add_content(shared_ptr<DCPContent>(new DCPContent(_dcp_to_add)));
1615                                 }
1616                         }
1617
1618                         Bind (wxEVT_TIMER, boost::bind (&App::check, this));
1619                         _timer.reset (new wxTimer (this));
1620                         _timer->Start (1000);
1621
1622                         if (Config::instance()->check_for_updates ()) {
1623                                 UpdateChecker::instance()->run ();
1624                         }
1625                 }
1626                 catch (exception& e)
1627                 {
1628                         if (_splash) {
1629                                 _splash->Destroy ();
1630                                 _splash = 0;
1631                         }
1632                         error_dialog (0, wxString::Format ("DCP-o-matic could not start."), std_to_wx(e.what()));
1633                 }
1634
1635                 return true;
1636         }
1637
1638         void OnInitCmdLine (wxCmdLineParser& parser)
1639         {
1640                 parser.SetDesc (command_line_description);
1641                 parser.SetSwitchChars (wxT ("-"));
1642         }
1643
1644         bool OnCmdLineParsed (wxCmdLineParser& parser)
1645         {
1646                 if (parser.Found (wxT("version"))) {
1647                         cout << "dcpomatic version " << dcpomatic_version << " " << dcpomatic_git_commit << "\n";
1648                         exit (EXIT_SUCCESS);
1649                 }
1650
1651                 if (parser.GetParamCount() > 0) {
1652                         if (parser.Found (wxT ("new"))) {
1653                                 _film_to_create = wx_to_std (parser.GetParam (0));
1654                         } else {
1655                                 _film_to_load = wx_to_std (parser.GetParam (0));
1656                         }
1657                 }
1658
1659                 wxString content;
1660                 if (parser.Found (wxT ("content"), &content)) {
1661                         _content_to_add = wx_to_std (content);
1662                 }
1663
1664                 wxString dcp;
1665                 if (parser.Found (wxT ("dcp"), &dcp)) {
1666                         _dcp_to_add = wx_to_std (dcp);
1667                 }
1668
1669                 wxString config;
1670                 if (parser.Found (wxT("config"), &config)) {
1671                         State::override_path = wx_to_std (config);
1672                 }
1673
1674                 return true;
1675         }
1676
1677         void report_exception ()
1678         {
1679                 try {
1680                         throw;
1681                 } catch (FileError& e) {
1682                         error_dialog (
1683                                 0,
1684                                 wxString::Format (
1685                                         _("An exception occurred: %s (%s)\n\n") + REPORT_PROBLEM,
1686                                         std_to_wx (e.what()),
1687                                         std_to_wx (e.file().string().c_str ())
1688                                         )
1689                                 );
1690                 } catch (exception& e) {
1691                         boost::stacktrace::stacktrace* st = boost::get_error_info<traced>(e);
1692                         std::cout << "Amiga!\n";
1693                         if (st) {
1694                                 std::cout << "Awooga! " << *st << "\n";
1695                         }
1696                         error_dialog (
1697                                 0,
1698                                 wxString::Format (
1699                                         _("An exception occurred: %s.\n\n") + REPORT_PROBLEM,
1700                                         std_to_wx (e.what ())
1701                                         )
1702                                 );
1703                 } catch (...) {
1704                         error_dialog (0, _("An unknown exception occurred.") + "  " + REPORT_PROBLEM);
1705                 }
1706         }
1707
1708         /* An unhandled exception has occurred inside the main event loop */
1709         bool OnExceptionInMainLoop ()
1710         {
1711                 report_exception ();
1712                 /* This will terminate the program */
1713                 return false;
1714         }
1715
1716         void OnUnhandledException ()
1717         {
1718                 report_exception ();
1719         }
1720
1721         void idle (wxIdleEvent& ev)
1722         {
1723                 signal_manager->ui_idle ();
1724                 ev.Skip ();
1725         }
1726
1727         void check ()
1728         {
1729                 try {
1730                         EncodeServerFinder::instance()->rethrow ();
1731                 } catch (exception& e) {
1732                         error_dialog (0, std_to_wx (e.what ()));
1733                 }
1734         }
1735
1736         void close_splash ()
1737         {
1738                 if (_splash) {
1739                         _splash->Destroy ();
1740                         _splash = 0;
1741                 }
1742         }
1743
1744         void config_failed_to_load ()
1745         {
1746                 close_splash ();
1747                 message_dialog (_frame, _("The existing configuration failed to load.  Default values will be used instead.  These may take a short time to create."));
1748         }
1749
1750         void config_warning (string m)
1751         {
1752                 close_splash ();
1753                 message_dialog (_frame, std_to_wx (m));
1754         }
1755
1756         bool config_bad (Config::BadReason reason)
1757         {
1758                 /* Destroy the splash screen here, as otherwise bad things seem to happen (for reasons unknown)
1759                    when we open our recreate dialog, close it, *then* try to Destroy the splash (the Destroy fails).
1760                 */
1761                 _splash->Destroy ();
1762                 _splash = 0;
1763
1764                 Config* config = Config::instance();
1765                 switch (reason) {
1766                 case Config::BAD_SIGNER_UTF8_STRINGS:
1767                 {
1768                         if (config->nagged(Config::NAG_BAD_SIGNER_CHAIN)) {
1769                                 return false;
1770                         }
1771                         RecreateChainDialog* d = new RecreateChainDialog (
1772                                 _frame, _("Recreate signing certificates"),
1773                                 _("The certificate chain that DCP-o-matic uses for signing DCPs and KDMs contains a small error\n"
1774                                   "which will prevent DCPs from being validated correctly on some systems.  Do you want to re-create\n"
1775                                   "the certificate chain for signing DCPs and KDMs?"),
1776                                 _("Do nothing"),
1777                                 Config::NAG_BAD_SIGNER_CHAIN
1778                                 );
1779                         int const r = d->ShowModal ();
1780                         d->Destroy ();
1781                         return r == wxID_OK;
1782                 }
1783                 case Config::BAD_SIGNER_INCONSISTENT:
1784                 {
1785                         RecreateChainDialog* d = new RecreateChainDialog (
1786                                 _frame, _("Recreate signing certificates"),
1787                                 _("The certificate chain that DCP-o-matic uses for signing DCPs and KDMs is inconsistent and\n"
1788                                   "cannot be used.  DCP-o-matic cannot start unless you re-create it.  Do you want to re-create\n"
1789                                   "the certificate chain for signing DCPs and KDMs?"),
1790                                 _("Close DCP-o-matic")
1791                                 );
1792                         int const r = d->ShowModal ();
1793                         d->Destroy ();
1794                         if (r != wxID_OK) {
1795                                 exit (EXIT_FAILURE);
1796                         }
1797                         return true;
1798                 }
1799                 case Config::BAD_DECRYPTION_INCONSISTENT:
1800                 {
1801                         RecreateChainDialog* d = new RecreateChainDialog (
1802                                 _frame, _("Recreate KDM decryption chain"),
1803                                 _("The certificate chain that DCP-o-matic uses for decrypting KDMs is inconsistent and\n"
1804                                   "cannot be used.  DCP-o-matic cannot start unless you re-create it.  Do you want to re-create\n"
1805                                   "the certificate chain for decrypting KDMs?  You may want to say \"No\" here and back up your\n"
1806                                   "configuration before continuing."),
1807                                 _("Close DCP-o-matic")
1808                                 );
1809                         int const r = d->ShowModal ();
1810                         d->Destroy ();
1811                         if (r != wxID_OK) {
1812                                 exit (EXIT_FAILURE);
1813                         }
1814                         return true;
1815                 }
1816                 default:
1817                         DCPOMATIC_ASSERT (false);
1818                 }
1819         }
1820
1821         DOMFrame* _frame;
1822         wxSplashScreen* _splash;
1823         shared_ptr<wxTimer> _timer;
1824         string _film_to_load;
1825         string _film_to_create;
1826         string _content_to_add;
1827         string _dcp_to_add;
1828 };
1829
1830 IMPLEMENT_APP (App)