Remove old Connect() wxWidgets API and use Bind().
[dcpomatic.git] / src / tools / dcpomatic.cc
1 /*
2     Copyright (C) 2012 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 "lib/film.h"
43 #include "lib/config.h"
44 #include "lib/util.h"
45 #include "lib/version.h"
46 #include "lib/ui_signaller.h"
47 #include "lib/log.h"
48
49 using std::cout;
50 using std::string;
51 using std::wstring;
52 using std::stringstream;
53 using std::map;
54 using std::make_pair;
55 using std::exception;
56 using std::ofstream;
57 using boost::shared_ptr;
58
59 static FilmEditor* film_editor = 0;
60 static FilmViewer* film_viewer = 0;
61 static shared_ptr<Film> film;
62 static std::string log_level;
63 static std::string film_to_load;
64 static std::string film_to_create;
65 static wxMenu* jobs_menu = 0;
66
67 static void set_menu_sensitivity ();
68
69 class FilmChangedDialog
70 {
71 public:
72         FilmChangedDialog ()
73         {
74                 _dialog = new wxMessageDialog (
75                         0,
76                         wxString::Format (_("Save changes to film \"%s\" before closing?"), std_to_wx (film->name ()).data()),
77                         _("Film changed"),
78                         wxYES_NO | wxYES_DEFAULT | wxICON_QUESTION
79                         );
80         }
81
82         ~FilmChangedDialog ()
83         {
84                 _dialog->Destroy ();
85         }
86
87         int run ()
88         {
89                 return _dialog->ShowModal ();
90         }
91
92 private:
93         /* Not defined */
94         FilmChangedDialog (FilmChangedDialog const &);
95         
96         wxMessageDialog* _dialog;
97 };
98
99
100 void
101 maybe_save_then_delete_film ()
102 {
103         if (!film) {
104                 return;
105         }
106                         
107         if (film->dirty ()) {
108                 FilmChangedDialog d;
109                 switch (d.run ()) {
110                 case wxID_NO:
111                         break;
112                 case wxID_YES:
113                         film->write_metadata ();
114                         break;
115                 }
116         }
117         
118         film.reset ();
119 }
120
121 enum Sensitivity {
122         ALWAYS,
123         NEEDS_FILM
124 };
125
126 map<wxMenuItem*, Sensitivity> menu_items;
127         
128 void
129 add_item (wxMenu* menu, wxString text, int id, Sensitivity sens)
130 {
131         wxMenuItem* item = menu->Append (id, text);
132         menu_items.insert (make_pair (item, sens));
133 }
134
135 void
136 set_menu_sensitivity ()
137 {
138         for (map<wxMenuItem*, Sensitivity>::iterator i = menu_items.begin(); i != menu_items.end(); ++i) {
139                 if (i->second == NEEDS_FILM) {
140                         i->first->Enable (film != 0);
141                 } else {
142                         i->first->Enable (true);
143                 }
144         }
145 }
146
147 enum {
148         ID_file_new = 1,
149         ID_file_open,
150         ID_file_save,
151         ID_file_properties,
152         ID_jobs_make_dcp,
153         ID_jobs_send_dcp_to_tms,
154         ID_jobs_show_dcp,
155 };
156
157 void
158 setup_menu (wxMenuBar* m)
159 {
160         wxMenu* file = new wxMenu;
161         add_item (file, _("New..."), ID_file_new, ALWAYS);
162         add_item (file, _("&Open..."), ID_file_open, ALWAYS);
163         file->AppendSeparator ();
164         add_item (file, _("&Save"), ID_file_save, NEEDS_FILM);
165         file->AppendSeparator ();
166         add_item (file, _("&Properties..."), ID_file_properties, NEEDS_FILM);
167 #ifndef __WXOSX__       
168         file->AppendSeparator ();
169 #endif
170
171 #ifdef __WXOSX__        
172         add_item (file, _("&Exit"), wxID_EXIT, ALWAYS);
173 #else
174         add_item (file, _("&Quit"), wxID_EXIT, ALWAYS);
175 #endif  
176         
177
178 #ifdef __WXOSX__        
179         add_item (file, _("&Preferences..."), wxID_PREFERENCES, ALWAYS);
180 #else
181         wxMenu* edit = new wxMenu;
182         add_item (edit, _("&Preferences..."), wxID_PREFERENCES, ALWAYS);
183 #endif  
184
185         jobs_menu = new wxMenu;
186         add_item (jobs_menu, _("&Make DCP"), ID_jobs_make_dcp, NEEDS_FILM);
187         add_item (jobs_menu, _("&Send DCP to TMS"), ID_jobs_send_dcp_to_tms, NEEDS_FILM);
188         add_item (jobs_menu, _("S&how DCP"), ID_jobs_show_dcp, NEEDS_FILM);
189
190         wxMenu* help = new wxMenu;
191 #ifdef __WXOSX__        
192         add_item (help, _("About DCP-o-matic"), wxID_ABOUT, ALWAYS);
193 #else   
194         add_item (help, _("About"), wxID_ABOUT, ALWAYS);
195 #endif  
196
197         m->Append (file, _("&File"));
198 #ifndef __WXOSX__       
199         m->Append (edit, _("&Edit"));
200 #endif  
201         m->Append (jobs_menu, _("&Jobs"));
202         m->Append (help, _("&Help"));
203 }
204
205 class Frame : public wxFrame
206 {
207 public:
208         Frame (wxString const & title)
209                 : wxFrame (NULL, -1, title)
210         {
211                 wxMenuBar* bar = new wxMenuBar;
212                 setup_menu (bar);
213                 SetMenuBar (bar);
214
215                 Bind (wxEVT_COMMAND_MENU_SELECTED, boost::bind (&Frame::file_new, this),             ID_file_new);
216                 Bind (wxEVT_COMMAND_MENU_SELECTED, boost::bind (&Frame::file_open, this),            ID_file_open);
217                 Bind (wxEVT_COMMAND_MENU_SELECTED, boost::bind (&Frame::file_save, this),            ID_file_save);
218                 Bind (wxEVT_COMMAND_MENU_SELECTED, boost::bind (&Frame::file_properties, this),      ID_file_properties);
219                 Bind (wxEVT_COMMAND_MENU_SELECTED, boost::bind (&Frame::file_exit, this),            wxID_EXIT);
220                 Bind (wxEVT_COMMAND_MENU_SELECTED, boost::bind (&Frame::edit_preferences, this),     wxID_PREFERENCES);
221                 Bind (wxEVT_COMMAND_MENU_SELECTED, boost::bind (&Frame::jobs_make_dcp, this),        ID_jobs_make_dcp);
222                 Bind (wxEVT_COMMAND_MENU_SELECTED, boost::bind (&Frame::jobs_send_dcp_to_tms, this), ID_jobs_send_dcp_to_tms);
223                 Bind (wxEVT_COMMAND_MENU_SELECTED, boost::bind (&Frame::jobs_show_dcp, this),        ID_jobs_show_dcp);
224                 Bind (wxEVT_COMMAND_MENU_SELECTED, boost::bind (&Frame::help_about, this),           wxID_ABOUT);
225                 Bind (wxEVT_MENU_OPEN, boost::bind (&Frame::menu_opened, this, _1));
226
227                 /* Use a panel as the only child of the Frame so that we avoid
228                    the dark-grey background on Windows.
229                 */
230                 wxPanel* overall_panel = new wxPanel (this, wxID_ANY);
231                 wxBoxSizer* overall_sizer = new wxBoxSizer (wxEXPAND);
232                 overall_panel->SetSizer (overall_sizer);
233
234                 film_editor = new FilmEditor (film, overall_panel);
235                 film_viewer = new FilmViewer (film, overall_panel);
236                 JobManagerView* job_manager_view = new JobManagerView (overall_panel, static_cast<JobManagerView::Buttons> (0));
237
238                 wxBoxSizer* right_sizer = new wxBoxSizer (wxVERTICAL);
239                 right_sizer->Add (film_viewer, 2, wxEXPAND | wxALL, 6);
240                 right_sizer->Add (job_manager_view, 1, wxEXPAND | wxALL, 6);
241
242                 wxBoxSizer* main_sizer = new wxBoxSizer (wxHORIZONTAL);
243                 main_sizer->Add (film_editor, 1, wxEXPAND | wxALL, 6);
244                 main_sizer->Add (right_sizer, 2, wxEXPAND | wxALL, 6);
245
246                 set_menu_sensitivity ();
247
248                 film_editor->FileChanged.connect (bind (&Frame::file_changed, this, _1));
249                 if (film) {
250                         file_changed (film->directory ());
251                 } else {
252                         file_changed ("");
253                 }
254
255                 set_film ();
256                 SetSizer (main_sizer);
257         }
258
259 private:
260
261         void menu_opened (wxMenuEvent& ev)
262         {
263                 if (ev.GetMenu() != jobs_menu) {
264                         return;
265                 }
266
267                 bool const have_dcp = film && film->have_dcp();
268                 jobs_menu->Enable (ID_jobs_send_dcp_to_tms, have_dcp);
269                 jobs_menu->Enable (ID_jobs_show_dcp, have_dcp);
270         }
271
272         void set_film ()
273         {
274                 film_viewer->set_film (film);
275                 film_editor->set_film (film);
276                 set_menu_sensitivity ();
277         }
278
279         void file_changed (string f)
280         {
281                 stringstream s;
282                 s << wx_to_std (_("DCP-o-matic"));
283                 if (!f.empty ()) {
284                         s << " - " << f;
285                 }
286                 
287                 SetTitle (std_to_wx (s.str()));
288         }
289         
290         void file_new ()
291         {
292                 NewFilmDialog* d = new NewFilmDialog (this);
293                 int const r = d->ShowModal ();
294                 
295                 if (r == wxID_OK) {
296
297                         if (boost::filesystem::is_directory (d->get_path()) && !boost::filesystem::is_empty(d->get_path())) {
298                                 if (!confirm_dialog (
299                                             this,
300                                             std_to_wx (
301                                                     String::compose (wx_to_std (_("The directory %1 already exists and is not empty.  "
302                                                                                   "Are you sure you want to use it?")),
303                                                                      d->get_path().c_str())
304                                                     )
305                                             )) {
306                                         return;
307                                 }
308                         } else if (boost::filesystem::is_regular_file (d->get_path())) {
309                                 error_dialog (
310                                         this,
311                                         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())
312                                         );
313                                 return;
314                         }
315                         
316                         maybe_save_then_delete_film ();
317                         film.reset (new Film (d->get_path ()));
318                         film->write_metadata ();
319                         film->log()->set_level (log_level);
320                         film->set_name (boost::filesystem::path (d->get_path()).filename().generic_string());
321                         set_film ();
322                 }
323                 
324                 d->Destroy ();
325         }
326
327         void file_open ()
328         {
329                 wxDirDialog* c = new wxDirDialog (this, _("Select film to open"), wxStandardPaths::Get().GetDocumentsDir(), wxDEFAULT_DIALOG_STYLE | wxDD_DIR_MUST_EXIST);
330                 int r;
331                 while (1) {
332                         r = c->ShowModal ();
333                         if (r == wxID_OK && c->GetPath() == wxStandardPaths::Get().GetDocumentsDir()) {
334                                 error_dialog (this, _("You did not select a folder.  Make sure that you select a folder before clicking Open."));
335                         } else {
336                                 break;
337                         }
338                 }
339                         
340                 if (r == wxID_OK) {
341                         maybe_save_then_delete_film ();
342                         try {
343                                 film.reset (new Film (wx_to_std (c->GetPath ())));
344                                 film->read_metadata ();
345                                 film->log()->set_level (log_level);
346                                 set_film ();
347                         } catch (std::exception& e) {
348                                 wxString p = c->GetPath ();
349                                 wxCharBuffer b = p.ToUTF8 ();
350                                 error_dialog (this, wxString::Format (_("Could not open film at %s (%s)"), p.data(), std_to_wx (e.what()).data()));
351                         }
352                 }
353
354                 c->Destroy ();
355         }
356
357         void file_save ()
358         {
359                 film->write_metadata ();
360         }
361
362         void file_properties ()
363         {
364                 PropertiesDialog* d = new PropertiesDialog (this, film);
365                 d->ShowModal ();
366                 d->Destroy ();
367         }
368         
369         void file_exit ()
370         {
371                 maybe_save_then_delete_film ();
372                 Close (true);
373         }
374
375         void edit_preferences ()
376         {
377                 ConfigDialog* d = new ConfigDialog (this);
378                 d->ShowModal ();
379                 d->Destroy ();
380                 Config::instance()->write ();
381         }
382
383         void jobs_make_dcp ()
384         {
385                 JobWrapper::make_dcp (this, film);
386         }
387         
388         void jobs_send_dcp_to_tms ()
389         {
390                 film->send_dcp_to_tms ();
391         }
392
393         void jobs_show_dcp ()
394         {
395 #ifdef __WXMSW__
396                 string d = film->directory();
397                 wstring w;
398                 w.assign (d.begin(), d.end());
399                 ShellExecute (0, L"open", w.c_str(), 0, 0, SW_SHOWDEFAULT);
400 #else
401                 int r = system ("which nautilus");
402                 if (WEXITSTATUS (r) == 0) {
403                         r = system (string ("nautilus " + film->directory()).c_str ());
404                         if (WEXITSTATUS (r)) {
405                                 error_dialog (this, _("Could not show DCP (could not run nautilus)"));
406                         }
407                 } else {
408                         int r = system ("which konqueror");
409                         if (WEXITSTATUS (r) == 0) {
410                                 r = system (string ("konqueror " + film->directory()).c_str ());
411                                 if (WEXITSTATUS (r)) {
412                                         error_dialog (this, _("Could not show DCP (could not run konqueror)"));
413                                 }
414                         }
415                 }
416 #endif          
417         }
418
419         void help_about ()
420         {
421                 AboutDialog* d = new AboutDialog (this);
422                 d->ShowModal ();
423                 d->Destroy ();
424         }
425 };
426
427 #if wxMINOR_VERSION == 9
428 static const wxCmdLineEntryDesc command_line_description[] = {
429         { wxCMD_LINE_OPTION, "l", "log", "set log level (silent, verbose or timing)", wxCMD_LINE_VAL_STRING, wxCMD_LINE_PARAM_OPTIONAL },
430         { wxCMD_LINE_SWITCH, "n", "new", "create new film", wxCMD_LINE_VAL_NONE, wxCMD_LINE_PARAM_OPTIONAL },
431         { wxCMD_LINE_PARAM, 0, 0, "film to load or create", wxCMD_LINE_VAL_STRING, wxCMD_LINE_PARAM_MULTIPLE | wxCMD_LINE_PARAM_OPTIONAL },
432         { wxCMD_LINE_NONE, "", "", "", wxCmdLineParamType (0), 0 }
433 };
434 #else
435 static const wxCmdLineEntryDesc command_line_description[] = {
436         { wxCMD_LINE_OPTION, wxT("l"), wxT("log"), wxT("set log level (silent, verbose or timing)"), wxCMD_LINE_VAL_STRING, wxCMD_LINE_PARAM_OPTIONAL },
437         { wxCMD_LINE_SWITCH, wxT("n"), wxT("new"), wxT("create new film"), wxCMD_LINE_VAL_NONE, wxCMD_LINE_PARAM_OPTIONAL },
438         { wxCMD_LINE_PARAM, 0, 0, wxT("film to load or create"), wxCMD_LINE_VAL_STRING, wxCMD_LINE_PARAM_MULTIPLE | wxCMD_LINE_PARAM_OPTIONAL },
439         { wxCMD_LINE_NONE, wxT(""), wxT(""), wxT(""), wxCmdLineParamType (0), 0 }
440 };
441 #endif
442
443 class App : public wxApp
444 {
445         bool OnInit ()
446         try
447         {
448                 if (!wxApp::OnInit()) {
449                         return false;
450                 }
451                 
452 #ifdef DCPOMATIC_LINUX  
453                 unsetenv ("UBUNTU_MENUPROXY");
454 #endif
455
456 #ifdef __WXOSX__                
457                 ProcessSerialNumber serial;
458                 GetCurrentProcess (&serial);
459                 TransformProcessType (&serial, kProcessTransformToForegroundApplication);
460 #endif          
461
462                 wxInitAllImageHandlers ();
463
464                 /* Enable i18n; this will create a Config object
465                    to look for a force-configured language.  This Config
466                    object will be wrong, however, because dcpomatic_setup
467                    hasn't yet been called and there aren't any scalers, filters etc.
468                    set up yet.
469                 */
470                 dcpomatic_setup_i18n ();
471
472                 /* Set things up, including scalers / filters etc.
473                    which will now be internationalised correctly.
474                 */
475                 dcpomatic_setup ();
476
477                 /* Force the configuration to be re-loaded correctly next
478                    time it is needed.
479                 */
480                 Config::drop ();
481
482                 if (!film_to_load.empty() && boost::filesystem::is_directory (film_to_load)) {
483                         try {
484                                 film.reset (new Film (film_to_load));
485                                 film->read_metadata ();
486                                 film->log()->set_level (log_level);
487                         } catch (exception& e) {
488                                 error_dialog (0, std_to_wx (String::compose (wx_to_std (_("Could not load film %1 (%2)")), film_to_load, e.what())));
489                         }
490                 }
491
492                 if (!film_to_create.empty ()) {
493                         film.reset (new Film (film_to_create));
494                         film->write_metadata ();
495                         film->log()->set_level (log_level);
496                         film->set_name (boost::filesystem::path (film_to_create).filename().generic_string ());
497                 }
498
499                 Frame* f = new Frame (_("DCP-o-matic"));
500                 SetTopWindow (f);
501                 f->Maximize ();
502                 f->Show ();
503
504                 ui_signaller = new wxUISignaller (this);
505                 this->Bind (wxEVT_IDLE, boost::bind (&App::idle, this));
506
507                 return true;
508         }
509         catch (exception& e)
510         {
511                 error_dialog (0, wxString::Format ("DCP-o-matic could not start: %s", e.what ()));
512                 return true;
513         }
514
515         void OnInitCmdLine (wxCmdLineParser& parser)
516         {
517                 parser.SetDesc (command_line_description);
518                 parser.SetSwitchChars (wxT ("-"));
519         }
520
521         bool OnCmdLineParsed (wxCmdLineParser& parser)
522         {
523                 if (parser.GetParamCount() > 0) {
524                         if (parser.Found (wxT ("new"))) {
525                                 film_to_create = wx_to_std (parser.GetParam (0));
526                         } else {
527                                 film_to_load = wx_to_std (parser.GetParam(0));
528                         }
529                 }
530
531                 wxString log;
532                 if (parser.Found (wxT ("log"), &log)) {
533                         log_level = wx_to_std (log);
534                 }
535
536                 return true;
537         }
538
539         void idle ()
540         {
541                 ui_signaller->ui_idle ();
542         }
543 };
544
545 IMPLEMENT_APP (App)