Stop CPL <Creator> tag being configurable and use DCP-o-matic version number instead.
[dcpomatic.git] / src / tools / dcpomatic.cc
1 /*
2     Copyright (C) 2012-2014 Carl Hetherington <cth@carlh.net>
3
4     This program is free software; you can redistribute it and/or modify
5     it under the terms of the GNU General Public License as published by
6     the Free Software Foundation; either version 2 of the License, or
7     (at your option) any later version.
8
9     This program is distributed in the hope that it will be useful,
10     but WITHOUT ANY WARRANTY; without even the implied warranty of
11     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12     GNU General Public License for more details.
13
14     You should have received a copy of the GNU General Public License
15     along with this program; if not, write to the Free Software
16     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
17
18 */
19
20 #include <iostream>
21 #include <fstream>
22 #include <boost/filesystem.hpp>
23 #ifdef __WXMSW__
24 #include <shellapi.h>
25 #endif
26 #ifdef __WXOSX__
27 #include <ApplicationServices/ApplicationServices.h>
28 #endif
29 #include <wx/generic/aboutdlgg.h>
30 #include <wx/stdpaths.h>
31 #include <wx/cmdline.h>
32 #include <wx/preferences.h>
33 #include <libdcp/exceptions.h>
34 #include "wx/film_viewer.h"
35 #include "wx/film_editor.h"
36 #include "wx/job_manager_view.h"
37 #include "wx/config_dialog.h"
38 #include "wx/job_wrapper.h"
39 #include "wx/wx_util.h"
40 #include "wx/new_film_dialog.h"
41 #include "wx/properties_dialog.h"
42 #include "wx/wx_ui_signaller.h"
43 #include "wx/about_dialog.h"
44 #include "wx/kdm_dialog.h"
45 #include "wx/servers_list_dialog.h"
46 #include "wx/hints_dialog.h"
47 #include "wx/update_dialog.h"
48 #include "lib/film.h"
49 #include "lib/config.h"
50 #include "lib/util.h"
51 #include "lib/version.h"
52 #include "lib/ui_signaller.h"
53 #include "lib/log.h"
54 #include "lib/job_manager.h"
55 #include "lib/transcode_job.h"
56 #include "lib/exceptions.h"
57 #include "lib/cinema.h"
58 #include "lib/kdm.h"
59 #include "lib/send_kdm_email_job.h"
60 #include "lib/server_finder.h"
61 #include "lib/update.h"
62 #include "lib/content_factory.h"
63
64 using std::cout;
65 using std::string;
66 using std::vector;
67 using std::wstring;
68 using std::map;
69 using std::make_pair;
70 using std::list;
71 using std::exception;
72 using boost::shared_ptr;
73 using boost::dynamic_pointer_cast;
74
75 // #define DCPOMATIC_WINDOWS_CONSOLE 1
76
77 class FilmChangedDialog
78 {
79 public:
80         FilmChangedDialog (string name)
81         {
82                 _dialog = new wxMessageDialog (
83                         0,
84                         wxString::Format (_("Save changes to film \"%s\" before closing?"), std_to_wx (name).data()),
85                         _("Film changed"),
86                         wxYES_NO | wxYES_DEFAULT | wxICON_QUESTION
87                         );
88         }
89
90         ~FilmChangedDialog ()
91         {
92                 _dialog->Destroy ();
93         }
94
95         int run ()
96         {
97                 return _dialog->ShowModal ();
98         }
99
100 private:
101         /* Not defined */
102         FilmChangedDialog (FilmChangedDialog const &);
103         
104         wxMessageDialog* _dialog;
105 };
106
107 #define ALWAYS                       0x0
108 #define NEEDS_FILM                   0x1
109 #define NOT_DURING_DCP_CREATION      0x2
110 #define NEEDS_CPL                    0x4
111 #define NEEDS_SELECTED_VIDEO_CONTENT 0x8
112
113 map<wxMenuItem*, int> menu_items;
114         
115 enum {
116         ID_file_new = 1,
117         ID_file_open,
118         ID_file_save,
119         ID_file_properties,
120         ID_file_history,
121         /* Allow spare IDs after _history for the recent files list */
122         ID_content_scale_to_fit_width = 100,
123         ID_content_scale_to_fit_height,
124         ID_jobs_make_dcp,
125         ID_jobs_make_kdms,
126         ID_jobs_send_dcp_to_tms,
127         ID_jobs_show_dcp,
128         ID_tools_hints,
129         ID_tools_encoding_servers,
130         ID_tools_check_for_updates
131 };
132
133 class Frame : public wxFrame
134 {
135 public:
136         Frame (wxString const & title)
137                 : wxFrame (NULL, -1, title)
138                 , _hints_dialog (0)
139                 , _servers_list_dialog (0)
140                 , _config_dialog (0)
141                 , _file_menu (0)
142                 , _history_items (0)
143                 , _history_position (0)
144                 , _history_separator (0)
145         {
146 #if defined(DCPOMATIC_WINDOWS) && defined(DCPOMATIC_WINDOWS_CONSOLE)
147                 AllocConsole();
148                 
149                 HANDLE handle_out = GetStdHandle(STD_OUTPUT_HANDLE);
150                 int hCrt = _open_osfhandle((intptr_t) handle_out, _O_TEXT);
151                 FILE* hf_out = _fdopen(hCrt, "w");
152                 setvbuf(hf_out, NULL, _IONBF, 1);
153                 *stdout = *hf_out;
154                 
155                 HANDLE handle_in = GetStdHandle(STD_INPUT_HANDLE);
156                 hCrt = _open_osfhandle((intptr_t) handle_in, _O_TEXT);
157                 FILE* hf_in = _fdopen(hCrt, "r");
158                 setvbuf(hf_in, NULL, _IONBF, 128);
159                 *stdin = *hf_in;
160 #endif
161
162                 wxMenuBar* bar = new wxMenuBar;
163                 setup_menu (bar);
164                 SetMenuBar (bar);
165
166                 Config::instance()->Changed.connect (boost::bind (&Frame::config_changed, this));
167                 config_changed ();
168
169                 Bind (wxEVT_COMMAND_MENU_SELECTED, boost::bind (&Frame::file_new, this),                ID_file_new);
170                 Bind (wxEVT_COMMAND_MENU_SELECTED, boost::bind (&Frame::file_open, this),               ID_file_open);
171                 Bind (wxEVT_COMMAND_MENU_SELECTED, boost::bind (&Frame::file_save, this),               ID_file_save);
172                 Bind (wxEVT_COMMAND_MENU_SELECTED, boost::bind (&Frame::file_properties, this),         ID_file_properties);
173                 Bind (wxEVT_COMMAND_MENU_SELECTED, boost::bind (&Frame::file_history, this, _1),        ID_file_history, ID_file_history + HISTORY_SIZE);
174                 Bind (wxEVT_COMMAND_MENU_SELECTED, boost::bind (&Frame::file_exit, this),               wxID_EXIT);
175                 Bind (wxEVT_COMMAND_MENU_SELECTED, boost::bind (&Frame::edit_preferences, this),        wxID_PREFERENCES);
176                 Bind (wxEVT_COMMAND_MENU_SELECTED, boost::bind (&Frame::content_scale_to_fit_width, this), ID_content_scale_to_fit_width);
177                 Bind (wxEVT_COMMAND_MENU_SELECTED, boost::bind (&Frame::content_scale_to_fit_height, this), ID_content_scale_to_fit_height);
178                 Bind (wxEVT_COMMAND_MENU_SELECTED, boost::bind (&Frame::jobs_make_dcp, this),           ID_jobs_make_dcp);
179                 Bind (wxEVT_COMMAND_MENU_SELECTED, boost::bind (&Frame::jobs_make_kdms, this),          ID_jobs_make_kdms);
180                 Bind (wxEVT_COMMAND_MENU_SELECTED, boost::bind (&Frame::jobs_send_dcp_to_tms, this),    ID_jobs_send_dcp_to_tms);
181                 Bind (wxEVT_COMMAND_MENU_SELECTED, boost::bind (&Frame::jobs_show_dcp, this),           ID_jobs_show_dcp);
182                 Bind (wxEVT_COMMAND_MENU_SELECTED, boost::bind (&Frame::tools_hints, this),             ID_tools_hints);
183                 Bind (wxEVT_COMMAND_MENU_SELECTED, boost::bind (&Frame::tools_encoding_servers, this),  ID_tools_encoding_servers);
184                 Bind (wxEVT_COMMAND_MENU_SELECTED, boost::bind (&Frame::tools_check_for_updates, this), ID_tools_check_for_updates);
185                 Bind (wxEVT_COMMAND_MENU_SELECTED, boost::bind (&Frame::help_about, this),              wxID_ABOUT);
186
187                 Bind (wxEVT_CLOSE_WINDOW, boost::bind (&Frame::close, this, _1));
188
189                 /* Use a panel as the only child of the Frame so that we avoid
190                    the dark-grey background on Windows.
191                 */
192                 wxPanel* overall_panel = new wxPanel (this, wxID_ANY);
193
194                 _film_editor = new FilmEditor (overall_panel);
195                 _film_viewer = new FilmViewer (overall_panel);
196                 JobManagerView* job_manager_view = new JobManagerView (overall_panel, static_cast<JobManagerView::Buttons> (0));
197
198                 wxBoxSizer* right_sizer = new wxBoxSizer (wxVERTICAL);
199                 right_sizer->Add (_film_viewer, 2, wxEXPAND | wxALL, 6);
200                 right_sizer->Add (job_manager_view, 1, wxEXPAND | wxALL, 6);
201
202                 wxBoxSizer* main_sizer = new wxBoxSizer (wxHORIZONTAL);
203                 main_sizer->Add (_film_editor, 1, wxEXPAND | wxALL, 6);
204                 main_sizer->Add (right_sizer, 2, wxEXPAND | wxALL, 6);
205
206                 set_menu_sensitivity ();
207
208                 _film_editor->FileChanged.connect (bind (&Frame::file_changed, this, _1));
209                 file_changed ("");
210
211                 JobManager::instance()->ActiveJobsChanged.connect (boost::bind (&Frame::set_menu_sensitivity, this));
212
213                 overall_panel->SetSizer (main_sizer);
214         }
215
216         void new_film (boost::filesystem::path path)
217         {
218                 shared_ptr<Film> film (new Film (path));
219                 film->write_metadata ();
220                 film->set_name (path.filename().generic_string());
221                 set_film (film);
222         }
223
224         void load_film (boost::filesystem::path file)
225         try
226         {
227                 maybe_save_then_delete_film ();
228                 
229                 shared_ptr<Film> film (new Film (file));
230                 list<string> const notes = film->read_metadata ();
231
232                 if (film->state_version() == 4) {
233                         error_dialog (
234                                 0,
235                                 _("This film was created with an old version of DVD-o-matic and may not load correctly "
236                                   "in this version.  Please check the film's settings carefully.")
237                                 );
238                 }
239                 
240                 for (list<string>::const_iterator i = notes.begin(); i != notes.end(); ++i) {
241                         error_dialog (0, std_to_wx (*i));
242                 }
243                 
244                 set_film (film);
245         }
246         catch (std::exception& e) {
247                 wxString p = std_to_wx (file.string ());
248                 wxCharBuffer b = p.ToUTF8 ();
249                 error_dialog (this, wxString::Format (_("Could not open film at %s (%s)"), p.data(), std_to_wx (e.what()).data()));
250         }
251
252         void set_film (shared_ptr<Film> film)
253         {
254                 _film = film;
255                 _film_viewer->set_film (_film);
256                 _film_editor->set_film (_film);
257                 set_menu_sensitivity ();
258                 Config::instance()->add_to_history (_film->directory ());
259         }
260
261         shared_ptr<Film> film () const {
262                 return _film;
263         }
264         
265 private:
266
267         void file_changed (boost::filesystem::path f)
268         {
269                 string s = wx_to_std (_("DCP-o-matic"));
270                 if (!f.empty ()) {
271                         s += " - " + f.string ();
272                 }
273                 
274                 SetTitle (std_to_wx (s));
275         }
276         
277         void file_new ()
278         {
279                 NewFilmDialog* d = new NewFilmDialog (this);
280                 int const r = d->ShowModal ();
281                 
282                 if (r == wxID_OK) {
283
284                         if (boost::filesystem::is_directory (d->get_path()) && !boost::filesystem::is_empty(d->get_path())) {
285                                 if (!confirm_dialog (
286                                             this,
287                                             std_to_wx (
288                                                     String::compose (wx_to_std (_("The directory %1 already exists and is not empty.  "
289                                                                                   "Are you sure you want to use it?")),
290                                                                      d->get_path().string().c_str())
291                                                     )
292                                             )) {
293                                         return;
294                                 }
295                         } else if (boost::filesystem::is_regular_file (d->get_path())) {
296                                 error_dialog (
297                                         this,
298                                         String::compose (wx_to_std (_("%1 already exists as a file, so you cannot use it for a new film.")), d->get_path().c_str())
299                                         );
300                                 return;
301                         }
302                         
303                         maybe_save_then_delete_film ();
304                         new_film (d->get_path ());
305                 }
306                 
307                 d->Destroy ();
308         }
309
310         void file_open ()
311         {
312                 wxDirDialog* c = new wxDirDialog (
313                         this,
314                         _("Select film to open"),
315                         std_to_wx (Config::instance()->default_directory_or (wx_to_std (wxStandardPaths::Get().GetDocumentsDir())).string ()),
316                         wxDEFAULT_DIALOG_STYLE | wxDD_DIR_MUST_EXIST
317                         );
318                 
319                 int r;
320                 while (true) {
321                         r = c->ShowModal ();
322                         if (r == wxID_OK && c->GetPath() == wxStandardPaths::Get().GetDocumentsDir()) {
323                                 error_dialog (this, _("You did not select a folder.  Make sure that you select a folder before clicking Open."));
324                         } else {
325                                 break;
326                         }
327                 }
328                         
329                 if (r == wxID_OK) {
330                         load_film (wx_to_std (c->GetPath ()));
331                 }
332
333                 c->Destroy ();
334         }
335
336         void file_save ()
337         {
338                 _film->write_metadata ();
339         }
340
341         void file_properties ()
342         {
343                 PropertiesDialog* d = new PropertiesDialog (this, _film);
344                 d->ShowModal ();
345                 d->Destroy ();
346         }
347
348         void file_history (wxCommandEvent& event)
349         {
350                 vector<boost::filesystem::path> history = Config::instance()->history ();
351                 int n = event.GetId() - ID_file_history;
352                 if (n >= 0 && n < static_cast<int> (history.size ())) {
353                         load_film (history[n]);
354                 }
355         }
356         
357         void file_exit ()
358         {
359                 /* false here allows the close handler to veto the close request */
360                 Close (false);
361         }
362
363         void edit_preferences ()
364         {
365                 if (!_config_dialog) {
366                         _config_dialog = create_config_dialog ();
367                 }
368                 _config_dialog->Show (this);
369         }
370
371         void jobs_make_dcp ()
372         {
373                 double required;
374                 double available;
375
376                 if (!_film->should_be_enough_disk_space (required, available)) {
377                         if (!confirm_dialog (this, 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))) {
378                                 return;
379                         }
380                 }
381                 
382                 JobWrapper::make_dcp (this, _film);
383         }
384
385         void jobs_make_kdms ()
386         {
387                 if (!_film) {
388                         return;
389                 }
390                 
391                 KDMDialog* d = new KDMDialog (this, _film);
392                 if (d->ShowModal () != wxID_OK) {
393                         d->Destroy ();
394                         return;
395                 }
396
397                 try {
398                         if (d->write_to ()) {
399                                 write_kdm_files (_film, d->screens (), d->cpl (), d->from (), d->until (), d->formulation (), d->directory ());
400                         } else {
401                                 JobManager::instance()->add (
402                                         shared_ptr<Job> (new SendKDMEmailJob (_film, d->screens (), d->cpl (), d->from (), d->until (), d->formulation ()))
403                                         );
404                         }
405                 } catch (libdcp::NotEncryptedError& e) {
406                         error_dialog (this, _("CPL's content is not encrypted."));
407                 } catch (exception& e) {
408                         error_dialog (this, e.what ());
409                 } catch (...) {
410                         error_dialog (this, _("An unknown exeception occurred."));
411                 }
412         
413                 d->Destroy ();
414         }
415
416         void content_scale_to_fit_width ()
417         {
418                 VideoContentList vc = _film_editor->selected_video_content ();
419                 for (VideoContentList::iterator i = vc.begin(); i != vc.end(); ++i) {
420                         (*i)->scale_and_crop_to_fit_width ();
421                 }
422         }
423
424         void content_scale_to_fit_height ()
425         {
426                 VideoContentList vc = _film_editor->selected_video_content ();
427                 for (VideoContentList::iterator i = vc.begin(); i != vc.end(); ++i) {
428                         (*i)->scale_and_crop_to_fit_height ();
429                 }
430         }
431         
432         void jobs_send_dcp_to_tms ()
433         {
434                 _film->send_dcp_to_tms ();
435         }
436
437         void jobs_show_dcp ()
438         {
439 #ifdef __WXMSW__
440                 string d = _film->directory().string ();
441                 wstring w;
442                 w.assign (d.begin(), d.end());
443                 ShellExecute (0, L"open", w.c_str(), 0, 0, SW_SHOWDEFAULT);
444 #else
445                 int r = system ("which nautilus");
446                 if (WEXITSTATUS (r) == 0) {
447                         r = system (string ("nautilus " + _film->directory().string()).c_str ());
448                         if (WEXITSTATUS (r)) {
449                                 error_dialog (this, _("Could not show DCP (could not run nautilus)"));
450                         }
451                 } else {
452                         int r = system ("which konqueror");
453                         if (WEXITSTATUS (r) == 0) {
454                                 r = system (string ("konqueror " + _film->directory().string()).c_str ());
455                                 if (WEXITSTATUS (r)) {
456                                         error_dialog (this, _("Could not show DCP (could not run konqueror)"));
457                                 }
458                         }
459                 }
460 #endif          
461         }
462
463         void tools_hints ()
464         {
465                 if (!_hints_dialog) {
466                         _hints_dialog = new HintsDialog (this, _film);
467                 }
468
469                 _hints_dialog->Show ();
470         }
471
472         void tools_encoding_servers ()
473         {
474                 if (!_servers_list_dialog) {
475                         _servers_list_dialog = new ServersListDialog (this);
476                 }
477
478                 _servers_list_dialog->Show ();
479         }
480
481         void tools_check_for_updates ()
482         {
483                 UpdateChecker::instance()->run ();
484         }
485
486         void help_about ()
487         {
488                 AboutDialog* d = new AboutDialog (this);
489                 d->ShowModal ();
490                 d->Destroy ();
491         }
492
493         bool should_close ()
494         {
495                 if (!JobManager::instance()->work_to_do ()) {
496                         return true;
497                 }
498
499                 wxMessageDialog* d = new wxMessageDialog (
500                         0,
501                         _("There are unfinished jobs; are you sure you want to quit?"),
502                         _("Unfinished jobs"),
503                         wxYES_NO | wxYES_DEFAULT | wxICON_QUESTION
504                         );
505
506                 bool const r = d->ShowModal() == wxID_YES;
507                 d->Destroy ();
508                 return r;
509         }
510                 
511         void close (wxCloseEvent& ev)
512         {
513                 if (!should_close ()) {
514                         ev.Veto ();
515                         return;
516                 }
517
518                 maybe_save_then_delete_film ();
519
520                 ev.Skip ();
521         }
522
523         void set_menu_sensitivity ()
524         {
525                 list<shared_ptr<Job> > jobs = JobManager::instance()->get ();
526                 list<shared_ptr<Job> >::iterator i = jobs.begin();
527                 while (i != jobs.end() && dynamic_pointer_cast<TranscodeJob> (*i) == 0) {
528                         ++i;
529                 }
530                 bool const dcp_creation = (i != jobs.end ()) && !(*i)->finished ();
531                 bool const have_cpl = _film && !_film->cpls().empty ();
532                 bool const have_selected_video_content = !_film_editor->selected_video_content().empty();
533                 
534                 for (map<wxMenuItem*, int>::iterator j = menu_items.begin(); j != menu_items.end(); ++j) {
535                         
536                         bool enabled = true;
537                         
538                         if ((j->second & NEEDS_FILM) && !_film) {
539                                 enabled = false;
540                         }
541                         
542                         if ((j->second & NOT_DURING_DCP_CREATION) && dcp_creation) {
543                                 enabled = false;
544                         }
545                         
546                         if ((j->second & NEEDS_CPL) && !have_cpl) {
547                                 enabled = false;
548                         }
549                         
550                         if ((j->second & NEEDS_SELECTED_VIDEO_CONTENT) && !have_selected_video_content) {
551                                 enabled = false;
552                         }
553                         
554                         j->first->Enable (enabled);
555                 }
556         }
557
558         void maybe_save_then_delete_film ()
559         {
560                 if (!_film) {
561                         return;
562                 }
563                 
564                 if (_film->dirty ()) {
565                         FilmChangedDialog d (_film->name ());
566                         switch (d.run ()) {
567                         case wxID_NO:
568                                 break;
569                         case wxID_YES:
570                                 _film->write_metadata ();
571                                 break;
572                         }
573                 }
574                 
575                 _film.reset ();
576         }
577
578         void add_item (wxMenu* menu, wxString text, int id, int sens)
579         {
580                 wxMenuItem* item = menu->Append (id, text);
581                 menu_items.insert (make_pair (item, sens));
582         }
583         
584         void setup_menu (wxMenuBar* m)
585         {
586                 _file_menu = new wxMenu;
587                 add_item (_file_menu, _("New..."), ID_file_new, ALWAYS);
588                 add_item (_file_menu, _("&Open..."), ID_file_open, ALWAYS);
589                 _file_menu->AppendSeparator ();
590                 add_item (_file_menu, _("&Save"), ID_file_save, NEEDS_FILM);
591                 _file_menu->AppendSeparator ();
592                 add_item (_file_menu, _("&Properties..."), ID_file_properties, NEEDS_FILM);
593
594                 _history_position = _file_menu->GetMenuItems().GetCount();
595
596 #ifndef __WXOSX__       
597                 _file_menu->AppendSeparator ();
598 #endif
599         
600 #ifdef __WXOSX__        
601                 add_item (_file_menu, _("&Exit"), wxID_EXIT, ALWAYS);
602 #else
603                 add_item (_file_menu, _("&Quit"), wxID_EXIT, ALWAYS);
604 #endif  
605         
606 #ifdef __WXOSX__        
607                 add_item (_file_menu, _("&Preferences..."), wxID_PREFERENCES, ALWAYS);
608 #else
609                 wxMenu* edit = new wxMenu;
610                 add_item (edit, _("&Preferences..."), wxID_PREFERENCES, ALWAYS);
611 #endif
612
613                 wxMenu* content = new wxMenu;
614                 add_item (content, _("Scale to fit &width"), ID_content_scale_to_fit_width, NEEDS_FILM | NEEDS_SELECTED_VIDEO_CONTENT);
615                 add_item (content, _("Scale to fit &height"), ID_content_scale_to_fit_height, NEEDS_FILM | NEEDS_SELECTED_VIDEO_CONTENT);
616                 
617                 wxMenu* jobs_menu = new wxMenu;
618                 add_item (jobs_menu, _("&Make DCP"), ID_jobs_make_dcp, NEEDS_FILM | NOT_DURING_DCP_CREATION);
619                 add_item (jobs_menu, _("Make &KDMs..."), ID_jobs_make_kdms, NEEDS_FILM);
620                 add_item (jobs_menu, _("&Send DCP to TMS"), ID_jobs_send_dcp_to_tms, NEEDS_FILM | NOT_DURING_DCP_CREATION | NEEDS_CPL);
621                 add_item (jobs_menu, _("S&how DCP"), ID_jobs_show_dcp, NEEDS_FILM | NOT_DURING_DCP_CREATION | NEEDS_CPL);
622
623                 wxMenu* tools = new wxMenu;
624                 add_item (tools, _("Hints..."), ID_tools_hints, 0);
625                 add_item (tools, _("Encoding servers..."), ID_tools_encoding_servers, 0);
626                 add_item (tools, _("Check for updates"), ID_tools_check_for_updates, 0);
627                 
628                 wxMenu* help = new wxMenu;
629 #ifdef __WXOSX__        
630                 add_item (help, _("About DCP-o-matic"), wxID_ABOUT, ALWAYS);
631 #else   
632                 add_item (help, _("About"), wxID_ABOUT, ALWAYS);
633 #endif  
634                 
635                 m->Append (_file_menu, _("&File"));
636 #ifndef __WXOSX__       
637                 m->Append (edit, _("&Edit"));
638 #endif
639                 m->Append (content, _("&Content"));
640                 m->Append (jobs_menu, _("&Jobs"));
641                 m->Append (tools, _("&Tools"));
642                 m->Append (help, _("&Help"));
643         }
644
645         void config_changed ()
646         {
647                 for (int i = 0; i < _history_items; ++i) {
648                         delete _file_menu->Remove (ID_file_history + i);
649                 }
650
651                 if (_history_separator) {
652                         _file_menu->Remove (_history_separator);
653                 }
654                 delete _history_separator;
655                 _history_separator = 0;
656                 
657                 int pos = _history_position;
658                 
659                 vector<boost::filesystem::path> history = Config::instance()->history ();
660                 
661                 if (!history.empty ()) {
662                         _history_separator = _file_menu->InsertSeparator (pos++);
663                 }
664                 
665                 for (size_t i = 0; i < history.size(); ++i) {
666                         SafeStringStream s;
667                         if (i < 9) {
668                                 s << "&" << (i + 1) << " ";
669                         }
670                         s << history[i].string();
671                         _file_menu->Insert (pos++, ID_file_history + i, std_to_wx (s.str ()));
672                 }
673
674                 _history_items = history.size ();
675         }
676         
677         FilmEditor* _film_editor;
678         FilmViewer* _film_viewer;
679         HintsDialog* _hints_dialog;
680         ServersListDialog* _servers_list_dialog;
681         wxPreferencesEditor* _config_dialog;
682         wxMenu* _file_menu;
683         shared_ptr<Film> _film;
684         int _history_items;
685         int _history_position;
686         wxMenuItem* _history_separator;
687 };
688
689 static const wxCmdLineEntryDesc command_line_description[] = {
690         { wxCMD_LINE_SWITCH, "n", "new", "create new film", wxCMD_LINE_VAL_NONE, wxCMD_LINE_PARAM_OPTIONAL },
691         { wxCMD_LINE_OPTION, "c", "content", "add content file", wxCMD_LINE_VAL_STRING, wxCMD_LINE_PARAM_OPTIONAL },
692         { wxCMD_LINE_PARAM, 0, 0, "film to load or create", wxCMD_LINE_VAL_STRING, wxCMD_LINE_PARAM_OPTIONAL },
693         { wxCMD_LINE_NONE, "", "", "", wxCmdLineParamType (0), 0 }
694 };
695
696 class App : public wxApp
697 {
698         bool OnInit ()
699         try
700         {
701                 SetAppName (_("DCP-o-matic"));
702                 
703                 if (!wxApp::OnInit()) {
704                         return false;
705                 }
706                 
707 #ifdef DCPOMATIC_LINUX  
708                 unsetenv ("UBUNTU_MENUPROXY");
709 #endif
710
711 #ifdef __WXOSX__                
712                 ProcessSerialNumber serial;
713                 GetCurrentProcess (&serial);
714                 TransformProcessType (&serial, kProcessTransformToForegroundApplication);
715 #endif          
716
717                 wxInitAllImageHandlers ();
718
719                 /* Enable i18n; this will create a Config object
720                    to look for a force-configured language.  This Config
721                    object will be wrong, however, because dcpomatic_setup
722                    hasn't yet been called and there aren't any scalers, filters etc.
723                    set up yet.
724                 */
725                 dcpomatic_setup_i18n ();
726
727                 /* Set things up, including scalers / filters etc.
728                    which will now be internationalised correctly.
729                 */
730                 dcpomatic_setup ();
731
732                 /* Force the configuration to be re-loaded correctly next
733                    time it is needed.
734                 */
735                 Config::drop ();
736
737                 _frame = new Frame (_("DCP-o-matic"));
738                 SetTopWindow (_frame);
739                 _frame->Maximize ();
740                 _frame->Show ();
741
742                 if (!_film_to_load.empty() && boost::filesystem::is_directory (_film_to_load)) {
743                         try {
744                                 _frame->load_film (_film_to_load);
745                         } catch (exception& e) {
746                                 error_dialog (0, std_to_wx (String::compose (wx_to_std (_("Could not load film %1 (%2)")), _film_to_load, e.what())));
747                         }
748                 }
749
750                 if (!_film_to_create.empty ()) {
751                         _frame->new_film (_film_to_create);
752                         if (!_content_to_add.empty ()) {
753                                 _frame->film()->examine_and_add_content (content_factory (_frame->film(), _content_to_add));
754                         }
755                 }
756
757                 ui_signaller = new wxUISignaller (this);
758                 Bind (wxEVT_IDLE, boost::bind (&App::idle, this));
759
760                 Bind (wxEVT_TIMER, boost::bind (&App::check, this));
761                 _timer.reset (new wxTimer (this));
762                 _timer->Start (1000);
763
764                 UpdateChecker::instance()->StateChanged.connect (boost::bind (&App::update_checker_state_changed, this));
765                 if (Config::instance()->check_for_updates ()) {
766                         UpdateChecker::instance()->run ();
767                 }
768
769                 return true;
770         }
771         catch (exception& e)
772         {
773                 error_dialog (0, wxString::Format ("DCP-o-matic could not start: %s", e.what ()));
774                 return true;
775         }
776
777         void OnInitCmdLine (wxCmdLineParser& parser)
778         {
779                 parser.SetDesc (command_line_description);
780                 parser.SetSwitchChars (wxT ("-"));
781         }
782
783         bool OnCmdLineParsed (wxCmdLineParser& parser)
784         {
785                 if (parser.GetParamCount() > 0) {
786                         if (parser.Found (wxT ("new"))) {
787                                 _film_to_create = wx_to_std (parser.GetParam (0));
788                         } else {
789                                 _film_to_load = wx_to_std (parser.GetParam (0));
790                         }
791                 }
792
793                 wxString content;
794                 if (parser.Found (wxT ("content"), &content)) {
795                         _content_to_add = wx_to_std (content);
796                 }
797
798                 return true;
799         }
800
801         bool OnExceptionInMainLoop ()
802         {
803                 error_dialog (0, _("An unknown exception occurred.  Please report this problem to the DCP-o-matic author (carl@dcpomatic.com)."));
804                 return false;
805         }
806                 
807         void OnUnhandledException ()
808         {
809                 error_dialog (0, _("An unknown exception occurred.  Please report this problem to the DCP-o-matic author (carl@dcpomatic.com)."));
810         }
811
812         void idle ()
813         {
814                 ui_signaller->ui_idle ();
815         }
816
817         void check ()
818         {
819                 try {
820                         ServerFinder::instance()->rethrow ();
821                 } catch (exception& e) {
822                         error_dialog (0, std_to_wx (e.what ()));
823                 }
824         }
825
826         void update_checker_state_changed ()
827         {
828                 switch (UpdateChecker::instance()->state ()) {
829                 case UpdateChecker::YES:
830                 {
831                         string test;
832                         if (Config::instance()->check_for_test_updates ()) {
833                                 test = UpdateChecker::instance()->test ();
834                         }
835                         UpdateDialog* dialog = new UpdateDialog (_frame, UpdateChecker::instance()->stable (), test);
836                         dialog->ShowModal ();
837                         dialog->Destroy ();
838                         break;
839                 }
840                 case UpdateChecker::NO:
841                         if (!UpdateChecker::instance()->last_emit_was_first ()) {
842                                 error_dialog (_frame, _("There are no new versions of DCP-o-matic available."));
843                         }
844                         break;
845                 case UpdateChecker::FAILED:
846                         if (!UpdateChecker::instance()->last_emit_was_first ()) {
847                                 error_dialog (_frame, _("The DCP-o-matic download server could not be contacted."));
848                         }
849                 default:
850                         break;
851                 }
852         }
853
854         Frame* _frame;
855         shared_ptr<wxTimer> _timer;
856         string _film_to_load;
857         string _film_to_create;
858         string _content_to_add;
859 };
860
861 IMPLEMENT_APP (App)