Respect check_for_test_updates option.
[dcpomatic.git] / src / tools / dcpomatic.cc
1 /*
2     Copyright (C) 2012-2013 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/film_viewer.h"
33 #include "wx/film_editor.h"
34 #include "wx/job_manager_view.h"
35 #include "wx/config_dialog.h"
36 #include "wx/job_wrapper.h"
37 #include "wx/wx_util.h"
38 #include "wx/new_film_dialog.h"
39 #include "wx/properties_dialog.h"
40 #include "wx/wx_ui_signaller.h"
41 #include "wx/about_dialog.h"
42 #include "wx/kdm_dialog.h"
43 #include "wx/servers_list_dialog.h"
44 #include "wx/hints_dialog.h"
45 #include "wx/update_dialog.h"
46 #include "lib/film.h"
47 #include "lib/config.h"
48 #include "lib/util.h"
49 #include "lib/version.h"
50 #include "lib/ui_signaller.h"
51 #include "lib/log.h"
52 #include "lib/job_manager.h"
53 #include "lib/transcode_job.h"
54 #include "lib/exceptions.h"
55 #include "lib/cinema.h"
56 #include "lib/kdm.h"
57 #include "lib/send_kdm_email_job.h"
58 #include "lib/server_finder.h"
59 #include "lib/update.h"
60
61 using std::cout;
62 using std::string;
63 using std::wstring;
64 using std::stringstream;
65 using std::map;
66 using std::make_pair;
67 using std::list;
68 using std::exception;
69 using boost::shared_ptr;
70 using boost::dynamic_pointer_cast;
71
72 static FilmEditor* film_editor = 0;
73 static FilmViewer* film_viewer = 0;
74 static shared_ptr<Film> film;
75 static std::string log_level;
76 static std::string film_to_load;
77 static std::string film_to_create;
78 static wxMenu* jobs_menu = 0;
79
80 static void set_menu_sensitivity ();
81
82 class FilmChangedDialog
83 {
84 public:
85         FilmChangedDialog ()
86         {
87                 _dialog = new wxMessageDialog (
88                         0,
89                         wxString::Format (_("Save changes to film \"%s\" before closing?"), std_to_wx (film->name ()).data()),
90                         _("Film changed"),
91                         wxYES_NO | wxYES_DEFAULT | wxICON_QUESTION
92                         );
93         }
94
95         ~FilmChangedDialog ()
96         {
97                 _dialog->Destroy ();
98         }
99
100         int run ()
101         {
102                 return _dialog->ShowModal ();
103         }
104
105 private:
106         /* Not defined */
107         FilmChangedDialog (FilmChangedDialog const &);
108         
109         wxMessageDialog* _dialog;
110 };
111
112
113 void
114 maybe_save_then_delete_film ()
115 {
116         if (!film) {
117                 return;
118         }
119                         
120         if (film->dirty ()) {
121                 FilmChangedDialog d;
122                 switch (d.run ()) {
123                 case wxID_NO:
124                         break;
125                 case wxID_YES:
126                         film->write_metadata ();
127                         break;
128                 }
129         }
130         
131         film.reset ();
132 }
133
134 #define ALWAYS                  0x0
135 #define NEEDS_FILM              0x1
136 #define NOT_DURING_DCP_CREATION 0x2
137 #define NEEDS_DCP               0x4
138
139 map<wxMenuItem*, int> menu_items;
140         
141 void
142 add_item (wxMenu* menu, wxString text, int id, int sens)
143 {
144         wxMenuItem* item = menu->Append (id, text);
145         menu_items.insert (make_pair (item, sens));
146 }
147
148 void
149 set_menu_sensitivity ()
150 {
151         list<shared_ptr<Job> > jobs = JobManager::instance()->get ();
152         list<shared_ptr<Job> >::iterator i = jobs.begin();
153         while (i != jobs.end() && dynamic_pointer_cast<TranscodeJob> (*i) == 0) {
154                 ++i;
155         }
156         bool const dcp_creation = (i != jobs.end ()) && !(*i)->finished ();
157         bool const have_dcp = film && !film->dcps().empty ();
158
159         for (map<wxMenuItem*, int>::iterator j = menu_items.begin(); j != menu_items.end(); ++j) {
160
161                 bool enabled = true;
162
163                 if ((j->second & NEEDS_FILM) && film == 0) {
164                         enabled = false;
165                 }
166
167                 if ((j->second & NOT_DURING_DCP_CREATION) && dcp_creation) {
168                         enabled = false;
169                 }
170
171                 if ((j->second & NEEDS_DCP) && !have_dcp) {
172                         enabled = false;
173                 }
174                 
175                 j->first->Enable (enabled);
176         }
177 }
178
179 enum {
180         ID_file_new = 1,
181         ID_file_open,
182         ID_file_save,
183         ID_file_properties,
184         ID_jobs_make_dcp,
185         ID_jobs_make_kdms,
186         ID_jobs_send_dcp_to_tms,
187         ID_jobs_show_dcp,
188         ID_tools_hints,
189         ID_tools_encoding_servers,
190         ID_tools_check_for_updates
191 };
192
193 void
194 setup_menu (wxMenuBar* m)
195 {
196         wxMenu* file = new wxMenu;
197         add_item (file, _("New..."), ID_file_new, ALWAYS);
198         add_item (file, _("&Open..."), ID_file_open, ALWAYS);
199         file->AppendSeparator ();
200         add_item (file, _("&Save"), ID_file_save, NEEDS_FILM);
201         file->AppendSeparator ();
202         add_item (file, _("&Properties..."), ID_file_properties, NEEDS_FILM);
203 #ifndef __WXOSX__       
204         file->AppendSeparator ();
205 #endif
206
207 #ifdef __WXOSX__        
208         add_item (file, _("&Exit"), wxID_EXIT, ALWAYS);
209 #else
210         add_item (file, _("&Quit"), wxID_EXIT, ALWAYS);
211 #endif  
212         
213
214 #ifdef __WXOSX__        
215         add_item (file, _("&Preferences..."), wxID_PREFERENCES, ALWAYS);
216 #else
217         wxMenu* edit = new wxMenu;
218         add_item (edit, _("&Preferences..."), wxID_PREFERENCES, ALWAYS);
219 #endif  
220
221         jobs_menu = new wxMenu;
222         add_item (jobs_menu, _("&Make DCP"), ID_jobs_make_dcp, NEEDS_FILM | NOT_DURING_DCP_CREATION);
223         add_item (jobs_menu, _("Make &KDMs..."), ID_jobs_make_kdms, NEEDS_FILM | NEEDS_DCP);
224         add_item (jobs_menu, _("&Send DCP to TMS"), ID_jobs_send_dcp_to_tms, NEEDS_FILM | NOT_DURING_DCP_CREATION | NEEDS_DCP);
225         add_item (jobs_menu, _("S&how DCP"), ID_jobs_show_dcp, NEEDS_FILM | NOT_DURING_DCP_CREATION | NEEDS_DCP);
226
227         wxMenu* tools = new wxMenu;
228         add_item (tools, _("Hints..."), ID_tools_hints, 0);
229         add_item (tools, _("Encoding servers..."), ID_tools_encoding_servers, 0);
230         add_item (tools, _("Check for updates"), ID_tools_check_for_updates, 0);
231
232         wxMenu* help = new wxMenu;
233 #ifdef __WXOSX__        
234         add_item (help, _("About DCP-o-matic"), wxID_ABOUT, ALWAYS);
235 #else   
236         add_item (help, _("About"), wxID_ABOUT, ALWAYS);
237 #endif  
238
239         m->Append (file, _("&File"));
240 #ifndef __WXOSX__       
241         m->Append (edit, _("&Edit"));
242 #endif  
243         m->Append (jobs_menu, _("&Jobs"));
244         m->Append (tools, _("&Tools"));
245         m->Append (help, _("&Help"));
246 }
247
248 class Frame : public wxFrame
249 {
250 public:
251         Frame (wxString const & title)
252                 : wxFrame (NULL, -1, title)
253                 , _hints_dialog (0)
254                 , _servers_list_dialog (0)
255         {
256 #ifdef DCPOMATIC_WINDOWS_CONSOLE                
257                 AllocConsole();
258                 
259                 HANDLE handle_out = GetStdHandle(STD_OUTPUT_HANDLE);
260                 int hCrt = _open_osfhandle((intptr_t) handle_out, _O_TEXT);
261                 FILE* hf_out = _fdopen(hCrt, "w");
262                 setvbuf(hf_out, NULL, _IONBF, 1);
263                 *stdout = *hf_out;
264                 
265                 HANDLE handle_in = GetStdHandle(STD_INPUT_HANDLE);
266                 hCrt = _open_osfhandle((intptr_t) handle_in, _O_TEXT);
267                 FILE* hf_in = _fdopen(hCrt, "r");
268                 setvbuf(hf_in, NULL, _IONBF, 128);
269                 *stdin = *hf_in;
270 #endif
271
272                 wxMenuBar* bar = new wxMenuBar;
273                 setup_menu (bar);
274                 SetMenuBar (bar);
275
276                 Bind (wxEVT_COMMAND_MENU_SELECTED, boost::bind (&Frame::file_new, this),                ID_file_new);
277                 Bind (wxEVT_COMMAND_MENU_SELECTED, boost::bind (&Frame::file_open, this),               ID_file_open);
278                 Bind (wxEVT_COMMAND_MENU_SELECTED, boost::bind (&Frame::file_save, this),               ID_file_save);
279                 Bind (wxEVT_COMMAND_MENU_SELECTED, boost::bind (&Frame::file_properties, this),         ID_file_properties);
280                 Bind (wxEVT_COMMAND_MENU_SELECTED, boost::bind (&Frame::file_exit, this),               wxID_EXIT);
281                 Bind (wxEVT_COMMAND_MENU_SELECTED, boost::bind (&Frame::edit_preferences, this),        wxID_PREFERENCES);
282                 Bind (wxEVT_COMMAND_MENU_SELECTED, boost::bind (&Frame::jobs_make_dcp, this),           ID_jobs_make_dcp);
283                 Bind (wxEVT_COMMAND_MENU_SELECTED, boost::bind (&Frame::jobs_make_kdms, this),          ID_jobs_make_kdms);
284                 Bind (wxEVT_COMMAND_MENU_SELECTED, boost::bind (&Frame::jobs_send_dcp_to_tms, this),    ID_jobs_send_dcp_to_tms);
285                 Bind (wxEVT_COMMAND_MENU_SELECTED, boost::bind (&Frame::jobs_show_dcp, this),           ID_jobs_show_dcp);
286                 Bind (wxEVT_COMMAND_MENU_SELECTED, boost::bind (&Frame::tools_hints, this),             ID_tools_hints);
287                 Bind (wxEVT_COMMAND_MENU_SELECTED, boost::bind (&Frame::tools_encoding_servers, this),  ID_tools_encoding_servers);
288                 Bind (wxEVT_COMMAND_MENU_SELECTED, boost::bind (&Frame::tools_check_for_updates, this), ID_tools_check_for_updates);
289                 Bind (wxEVT_COMMAND_MENU_SELECTED, boost::bind (&Frame::help_about, this),              wxID_ABOUT);
290
291                 Bind (wxEVT_CLOSE_WINDOW, boost::bind (&Frame::close, this, _1));
292
293                 /* Use a panel as the only child of the Frame so that we avoid
294                    the dark-grey background on Windows.
295                 */
296                 wxPanel* overall_panel = new wxPanel (this, wxID_ANY);
297
298                 film_editor = new FilmEditor (film, overall_panel);
299                 film_viewer = new FilmViewer (film, overall_panel);
300                 JobManagerView* job_manager_view = new JobManagerView (overall_panel, static_cast<JobManagerView::Buttons> (0));
301
302                 wxBoxSizer* right_sizer = new wxBoxSizer (wxVERTICAL);
303                 right_sizer->Add (film_viewer, 2, wxEXPAND | wxALL, 6);
304                 right_sizer->Add (job_manager_view, 1, wxEXPAND | wxALL, 6);
305
306                 wxBoxSizer* main_sizer = new wxBoxSizer (wxHORIZONTAL);
307                 main_sizer->Add (film_editor, 1, wxEXPAND | wxALL, 6);
308                 main_sizer->Add (right_sizer, 2, wxEXPAND | wxALL, 6);
309
310                 set_menu_sensitivity ();
311
312                 film_editor->FileChanged.connect (bind (&Frame::file_changed, this, _1));
313                 if (film) {
314                         file_changed (film->directory ());
315                 } else {
316                         file_changed ("");
317                 }
318
319                 JobManager::instance()->ActiveJobsChanged.connect (boost::bind (set_menu_sensitivity));
320
321                 set_film ();
322                 overall_panel->SetSizer (main_sizer);
323         }
324
325 private:
326
327         void set_film ()
328         {
329                 film_viewer->set_film (film);
330                 film_editor->set_film (film);
331                 set_menu_sensitivity ();
332         }
333
334         void file_changed (boost::filesystem::path f)
335         {
336                 stringstream s;
337                 s << wx_to_std (_("DCP-o-matic"));
338                 if (!f.empty ()) {
339                         s << " - " << f.string ();
340                 }
341                 
342                 SetTitle (std_to_wx (s.str()));
343         }
344         
345         void file_new ()
346         {
347                 NewFilmDialog* d = new NewFilmDialog (this);
348                 int const r = d->ShowModal ();
349                 
350                 if (r == wxID_OK) {
351
352                         if (boost::filesystem::is_directory (d->get_path()) && !boost::filesystem::is_empty(d->get_path())) {
353                                 if (!confirm_dialog (
354                                             this,
355                                             std_to_wx (
356                                                     String::compose (wx_to_std (_("The directory %1 already exists and is not empty.  "
357                                                                                   "Are you sure you want to use it?")),
358                                                                      d->get_path().string().c_str())
359                                                     )
360                                             )) {
361                                         return;
362                                 }
363                         } else if (boost::filesystem::is_regular_file (d->get_path())) {
364                                 error_dialog (
365                                         this,
366                                         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())
367                                         );
368                                 return;
369                         }
370                         
371                         maybe_save_then_delete_film ();
372                         film.reset (new Film (d->get_path ()));
373                         film->write_metadata ();
374                         film->log()->set_level (log_level);
375                         film->set_name (boost::filesystem::path (d->get_path()).filename().generic_string());
376                         set_film ();
377                 }
378                 
379                 d->Destroy ();
380         }
381
382         void file_open ()
383         {
384                 wxDirDialog* c = new wxDirDialog (
385                         this,
386                         _("Select film to open"),
387                         std_to_wx (Config::instance()->default_directory_or (wx_to_std (wxStandardPaths::Get().GetDocumentsDir())).string ()),
388                         wxDEFAULT_DIALOG_STYLE | wxDD_DIR_MUST_EXIST
389                         );
390                 
391                 int r;
392                 while (1) {
393                         r = c->ShowModal ();
394                         if (r == wxID_OK && c->GetPath() == wxStandardPaths::Get().GetDocumentsDir()) {
395                                 error_dialog (this, _("You did not select a folder.  Make sure that you select a folder before clicking Open."));
396                         } else {
397                                 break;
398                         }
399                 }
400                         
401                 if (r == wxID_OK) {
402                         maybe_save_then_delete_film ();
403                         try {
404                                 film.reset (new Film (wx_to_std (c->GetPath ())));
405                                 film->read_metadata ();
406                                 film->log()->set_level (log_level);
407                                 set_film ();
408                         } catch (std::exception& e) {
409                                 wxString p = c->GetPath ();
410                                 wxCharBuffer b = p.ToUTF8 ();
411                                 error_dialog (this, wxString::Format (_("Could not open film at %s (%s)"), p.data(), std_to_wx (e.what()).data()));
412                         }
413                 }
414
415                 c->Destroy ();
416         }
417
418         void file_save ()
419         {
420                 film->write_metadata ();
421         }
422
423         void file_properties ()
424         {
425                 PropertiesDialog* d = new PropertiesDialog (this, film);
426                 d->ShowModal ();
427                 d->Destroy ();
428         }
429         
430         void file_exit ()
431         {
432                 if (!should_close ()) {
433                         return;
434                 }
435                 
436                 maybe_save_then_delete_film ();
437                 Close (true);
438         }
439
440         void edit_preferences ()
441         {
442                 ConfigDialog* d = new ConfigDialog (this);
443                 d->ShowModal ();
444                 d->Destroy ();
445                 Config::instance()->write ();
446         }
447
448         void jobs_make_dcp ()
449         {
450                 double required;
451                 double available;
452
453                 if (!film->should_be_enough_disk_space (required, available)) {
454                         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))) {
455                                 return;
456                         }
457                 }
458                 
459                 JobWrapper::make_dcp (this, film);
460         }
461
462         void jobs_make_kdms ()
463         {
464                 if (!film) {
465                         return;
466                 }
467                 
468                 KDMDialog* d = new KDMDialog (this, film);
469                 if (d->ShowModal () != wxID_OK) {
470                         d->Destroy ();
471                         return;
472                 }
473
474                 try {
475                         if (d->write_to ()) {
476                                 write_kdm_files (film, d->screens (), d->dcp (), d->from (), d->until (), d->directory ());
477                         } else {
478                                 JobManager::instance()->add (
479                                         shared_ptr<Job> (new SendKDMEmailJob (film, d->screens (), d->dcp (), d->from (), d->until ()))
480                                         );
481                         }
482                 } catch (KDMError& e) {
483                         error_dialog (this, e.what ());
484                 }
485         
486                 d->Destroy ();
487         }
488         
489         void jobs_send_dcp_to_tms ()
490         {
491                 film->send_dcp_to_tms ();
492         }
493
494         void jobs_show_dcp ()
495         {
496 #ifdef __WXMSW__
497                 string d = film->directory().string ();
498                 wstring w;
499                 w.assign (d.begin(), d.end());
500                 ShellExecute (0, L"open", w.c_str(), 0, 0, SW_SHOWDEFAULT);
501 #else
502                 int r = system ("which nautilus");
503                 if (WEXITSTATUS (r) == 0) {
504                         r = system (string ("nautilus " + film->directory().string()).c_str ());
505                         if (WEXITSTATUS (r)) {
506                                 error_dialog (this, _("Could not show DCP (could not run nautilus)"));
507                         }
508                 } else {
509                         int r = system ("which konqueror");
510                         if (WEXITSTATUS (r) == 0) {
511                                 r = system (string ("konqueror " + film->directory().string()).c_str ());
512                                 if (WEXITSTATUS (r)) {
513                                         error_dialog (this, _("Could not show DCP (could not run konqueror)"));
514                                 }
515                         }
516                 }
517 #endif          
518         }
519
520         void tools_hints ()
521         {
522                 if (!_hints_dialog) {
523                         _hints_dialog = new HintsDialog (this, film);
524                 }
525
526                 _hints_dialog->Show ();
527         }
528
529         void tools_encoding_servers ()
530         {
531                 if (!_servers_list_dialog) {
532                         _servers_list_dialog = new ServersListDialog (this);
533                 }
534
535                 _servers_list_dialog->Show ();
536         }
537
538         void tools_check_for_updates ()
539         {
540                 UpdateChecker::instance()->run ();
541         }
542
543         void help_about ()
544         {
545                 AboutDialog* d = new AboutDialog (this);
546                 d->ShowModal ();
547                 d->Destroy ();
548         }
549
550         bool should_close ()
551         {
552                 if (!JobManager::instance()->work_to_do ()) {
553                         return true;
554                 }
555
556                 wxMessageDialog* d = new wxMessageDialog (
557                         0,
558                         _("There are unfinished jobs; are you sure you want to quit?"),
559                         _("Unfinished jobs"),
560                         wxYES_NO | wxYES_DEFAULT | wxICON_QUESTION
561                         );
562
563                 bool const r = d->ShowModal() == wxID_YES;
564                 d->Destroy ();
565                 return r;
566         }
567                 
568         void close (wxCloseEvent& ev)
569         {
570                 if (!should_close ()) {
571                         ev.Veto ();
572                         return;
573                 }
574
575                 maybe_save_then_delete_film ();
576
577                 ev.Skip ();
578         }
579
580         HintsDialog* _hints_dialog;
581         ServersListDialog* _servers_list_dialog;
582 };
583
584 static const wxCmdLineEntryDesc command_line_description[] = {
585         { wxCMD_LINE_OPTION, "l", "log", "set log level (silent, verbose or timing)", wxCMD_LINE_VAL_STRING, wxCMD_LINE_PARAM_OPTIONAL },
586         { wxCMD_LINE_SWITCH, "n", "new", "create new film", wxCMD_LINE_VAL_NONE, wxCMD_LINE_PARAM_OPTIONAL },
587         { wxCMD_LINE_PARAM, 0, 0, "film to load or create", wxCMD_LINE_VAL_STRING, wxCMD_LINE_PARAM_MULTIPLE | wxCMD_LINE_PARAM_OPTIONAL },
588         { wxCMD_LINE_NONE, "", "", "", wxCmdLineParamType (0), 0 }
589 };
590
591 class App : public wxApp
592 {
593         bool OnInit ()
594         try
595         {
596                 SetAppName (_("DCP-o-matic"));
597                 
598                 if (!wxApp::OnInit()) {
599                         return false;
600                 }
601                 
602 #ifdef DCPOMATIC_LINUX  
603                 unsetenv ("UBUNTU_MENUPROXY");
604 #endif
605
606 #ifdef __WXOSX__                
607                 ProcessSerialNumber serial;
608                 GetCurrentProcess (&serial);
609                 TransformProcessType (&serial, kProcessTransformToForegroundApplication);
610 #endif          
611
612                 wxInitAllImageHandlers ();
613
614                 /* Enable i18n; this will create a Config object
615                    to look for a force-configured language.  This Config
616                    object will be wrong, however, because dcpomatic_setup
617                    hasn't yet been called and there aren't any scalers, filters etc.
618                    set up yet.
619                 */
620                 dcpomatic_setup_i18n ();
621
622                 /* Set things up, including scalers / filters etc.
623                    which will now be internationalised correctly.
624                 */
625                 dcpomatic_setup ();
626
627                 /* Force the configuration to be re-loaded correctly next
628                    time it is needed.
629                 */
630                 Config::drop ();
631
632                 if (!film_to_load.empty() && boost::filesystem::is_directory (film_to_load)) {
633                         try {
634                                 film.reset (new Film (film_to_load));
635                                 film->read_metadata ();
636                                 film->log()->set_level (log_level);
637                         } catch (exception& e) {
638                                 error_dialog (0, std_to_wx (String::compose (wx_to_std (_("Could not load film %1 (%2)")), film_to_load, e.what())));
639                         }
640                 }
641
642                 if (!film_to_create.empty ()) {
643                         film.reset (new Film (film_to_create));
644                         film->write_metadata ();
645                         film->log()->set_level (log_level);
646                         film->set_name (boost::filesystem::path (film_to_create).filename().generic_string ());
647                 }
648
649                 _frame = new Frame (_("DCP-o-matic"));
650                 SetTopWindow (_frame);
651                 _frame->Maximize ();
652                 _frame->Show ();
653
654                 ui_signaller = new wxUISignaller (this);
655                 Bind (wxEVT_IDLE, boost::bind (&App::idle, this));
656
657                 Bind (wxEVT_TIMER, boost::bind (&App::check, this));
658                 _timer.reset (new wxTimer (this));
659                 _timer->Start (1000);
660
661                 UpdateChecker::instance()->StateChanged.connect (boost::bind (&App::update_checker_state_changed, this));
662                 if (Config::instance()->check_for_updates ()) {
663                         UpdateChecker::instance()->run ();
664                 }
665
666                 return true;
667         }
668         catch (exception& e)
669         {
670                 error_dialog (0, wxString::Format ("DCP-o-matic could not start: %s", e.what ()));
671                 return true;
672         }
673
674         void OnInitCmdLine (wxCmdLineParser& parser)
675         {
676                 parser.SetDesc (command_line_description);
677                 parser.SetSwitchChars (wxT ("-"));
678         }
679
680         bool OnCmdLineParsed (wxCmdLineParser& parser)
681         {
682                 if (parser.GetParamCount() > 0) {
683                         if (parser.Found (wxT ("new"))) {
684                                 film_to_create = wx_to_std (parser.GetParam (0));
685                         } else {
686                                 film_to_load = wx_to_std (parser.GetParam(0));
687                         }
688                 }
689
690                 wxString log;
691                 if (parser.Found (wxT ("log"), &log)) {
692                         log_level = wx_to_std (log);
693                 }
694
695                 return true;
696         }
697
698         void idle ()
699         {
700                 ui_signaller->ui_idle ();
701         }
702
703         void check ()
704         {
705                 try {
706                         ServerFinder::instance()->rethrow ();
707                 } catch (exception& e) {
708                         error_dialog (0, std_to_wx (e.what ()));
709                 }
710         }
711
712         void update_checker_state_changed ()
713         {
714                 switch (UpdateChecker::instance()->state ()) {
715                 case UpdateChecker::YES:
716                 {
717                         string test;
718                         if (Config::instance()->check_for_test_updates ()) {
719                                 test = UpdateChecker::instance()->test ();
720                         }
721                         UpdateDialog* dialog = new UpdateDialog (_frame, UpdateChecker::instance()->stable (), test);
722                         dialog->ShowModal ();
723                         dialog->Destroy ();
724                         break;
725                 }
726                 case UpdateChecker::NO:
727                         if (!UpdateChecker::instance()->last_emit_was_first ()) {
728                                 error_dialog (_frame, _("There are no new versions of DCP-o-matic available."));
729                         }
730                         break;
731                 case UpdateChecker::FAILED:
732                         if (!UpdateChecker::instance()->last_emit_was_first ()) {
733                                 error_dialog (_frame, _("The DCP-o-matic download server could not be contacted."));
734                         }
735                 default:
736                         break;
737                 }
738         }
739
740         wxFrame* _frame;
741         shared_ptr<wxTimer> _timer;
742 };
743
744 IMPLEMENT_APP (App)