70a96866cf534ae03d4ac87ab8b80714d14628b6
[dcpomatic.git] / src / tools / dvdomatic.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 <boost/filesystem.hpp>
22 #ifdef __WXMSW__
23 #include <shellapi.h>
24 #endif
25 #include <wx/aboutdlg.h>
26 #include <wx/stdpaths.h>
27 #include <wx/cmdline.h>
28 #include "wx/film_viewer.h"
29 #include "wx/film_editor.h"
30 #include "wx/job_manager_view.h"
31 #include "wx/config_dialog.h"
32 #include "wx/job_wrapper.h"
33 #include "wx/wx_util.h"
34 #include "wx/new_film_dialog.h"
35 #include "wx/properties_dialog.h"
36 #include "wx/wx_ui_signaller.h"
37 #include "lib/film.h"
38 #include "lib/format.h"
39 #include "lib/config.h"
40 #include "lib/filter.h"
41 #include "lib/util.h"
42 #include "lib/scaler.h"
43 #include "lib/exceptions.h"
44 #include "lib/version.h"
45 #include "lib/ui_signaller.h"
46 #include "lib/log.h"
47
48 using std::cout;
49 using std::string;
50 using std::wstring;
51 using std::stringstream;
52 using std::map;
53 using std::make_pair;
54 using std::exception;
55 using std::ofstream;
56 using boost::shared_ptr;
57
58 static FilmEditor* film_editor = 0;
59 static FilmViewer* film_viewer = 0;
60 static shared_ptr<Film> film;
61 static std::string log_level;
62 static std::string film_to_load;
63 static wxMenu* jobs_menu = 0;
64 static wxLocale* locale = 0;
65
66 static void set_menu_sensitivity ();
67
68 class FilmChangedDialog
69 {
70 public:
71         FilmChangedDialog ()
72         {
73                 _dialog = new wxMessageDialog (
74                         0,
75                         wxString::Format (_("Save changes to film \"%s\" before closing?"), std_to_wx (film->name ()).data()),
76                         _("Film changed"),
77                         wxYES_NO | wxYES_DEFAULT | wxICON_QUESTION
78                         );
79         }
80
81         ~FilmChangedDialog ()
82         {
83                 _dialog->Destroy ();
84         }
85
86         int run ()
87         {
88                 return _dialog->ShowModal ();
89         }
90
91 private:        
92         wxMessageDialog* _dialog;
93 };
94
95
96 void
97 maybe_save_then_delete_film ()
98 {
99         if (!film) {
100                 return;
101         }
102                         
103         if (film->dirty ()) {
104                 FilmChangedDialog d;
105                 switch (d.run ()) {
106                 case wxID_NO:
107                         break;
108                 case wxID_YES:
109                         film->write_metadata ();
110                         break;
111                 }
112         }
113         
114         film.reset ();
115 }
116
117 enum Sensitivity {
118         ALWAYS,
119         NEEDS_FILM
120 };
121
122 map<wxMenuItem*, Sensitivity> menu_items;
123         
124 void
125 add_item (wxMenu* menu, wxString text, int id, Sensitivity sens)
126 {
127         wxMenuItem* item = menu->Append (id, text);
128         menu_items.insert (make_pair (item, sens));
129 }
130
131 void
132 set_menu_sensitivity ()
133 {
134         for (map<wxMenuItem*, Sensitivity>::iterator i = menu_items.begin(); i != menu_items.end(); ++i) {
135                 if (i->second == NEEDS_FILM) {
136                         i->first->Enable (film != 0);
137                 } else {
138                         i->first->Enable (true);
139                 }
140         }
141 }
142
143 enum {
144         ID_file_new = 1,
145         ID_file_open,
146         ID_file_save,
147         ID_file_properties,
148         ID_file_quit,
149         ID_edit_preferences,
150         ID_jobs_make_dcp,
151         ID_jobs_send_dcp_to_tms,
152         ID_jobs_show_dcp,
153         ID_jobs_analyse_audio,
154         ID_help_about
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         file->AppendSeparator ();
168         add_item (file, _("&Quit"), ID_file_quit, ALWAYS);
169
170         wxMenu* edit = new wxMenu;
171         add_item (edit, _("&Preferences..."), ID_edit_preferences, ALWAYS);
172
173         jobs_menu = new wxMenu;
174         add_item (jobs_menu, _("&Make DCP"), ID_jobs_make_dcp, NEEDS_FILM);
175         add_item (jobs_menu, _("&Send DCP to TMS"), ID_jobs_send_dcp_to_tms, NEEDS_FILM);
176         add_item (jobs_menu, _("S&how DCP"), ID_jobs_show_dcp, NEEDS_FILM);
177         jobs_menu->AppendSeparator ();
178         add_item (jobs_menu, _("&Analyse audio"), ID_jobs_analyse_audio, NEEDS_FILM);
179
180         wxMenu* help = new wxMenu;
181         add_item (help, _("About"), ID_help_about, ALWAYS);
182
183         m->Append (file, _("&File"));
184         m->Append (edit, _("&Edit"));
185         m->Append (jobs_menu, _("&Jobs"));
186         m->Append (help, _("&Help"));
187 }
188
189 bool
190 window_closed (wxCommandEvent &)
191 {
192         maybe_save_then_delete_film ();
193         return false;
194 }
195
196 class Frame : public wxFrame
197 {
198 public:
199         Frame (wxString const & title)
200                 : wxFrame (NULL, -1, title)
201         {
202                 wxMenuBar* bar = new wxMenuBar;
203                 setup_menu (bar);
204                 SetMenuBar (bar);
205
206                 Connect (ID_file_new, wxEVT_COMMAND_MENU_SELECTED, wxCommandEventHandler (Frame::file_new));
207                 Connect (ID_file_open, wxEVT_COMMAND_MENU_SELECTED, wxCommandEventHandler (Frame::file_open));
208                 Connect (ID_file_save, wxEVT_COMMAND_MENU_SELECTED, wxCommandEventHandler (Frame::file_save));
209                 Connect (ID_file_properties, wxEVT_COMMAND_MENU_SELECTED, wxCommandEventHandler (Frame::file_properties));
210                 Connect (ID_file_quit, wxEVT_COMMAND_MENU_SELECTED, wxCommandEventHandler (Frame::file_quit));
211                 Connect (ID_edit_preferences, wxEVT_COMMAND_MENU_SELECTED, wxCommandEventHandler (Frame::edit_preferences));
212                 Connect (ID_jobs_make_dcp, wxEVT_COMMAND_MENU_SELECTED, wxCommandEventHandler (Frame::jobs_make_dcp));
213                 Connect (ID_jobs_send_dcp_to_tms, wxEVT_COMMAND_MENU_SELECTED, wxCommandEventHandler (Frame::jobs_send_dcp_to_tms));
214                 Connect (ID_jobs_show_dcp, wxEVT_COMMAND_MENU_SELECTED, wxCommandEventHandler (Frame::jobs_show_dcp));
215                 Connect (ID_jobs_analyse_audio, wxEVT_COMMAND_MENU_SELECTED, wxCommandEventHandler (Frame::jobs_analyse_audio));
216                 Connect (ID_help_about, wxEVT_COMMAND_MENU_SELECTED, wxCommandEventHandler (Frame::help_about));
217
218                 Connect (wxID_ANY, wxEVT_MENU_OPEN, wxMenuEventHandler (Frame::menu_opened));
219
220                 wxPanel* panel = new wxPanel (this);
221                 wxSizer* s = new wxBoxSizer (wxHORIZONTAL);
222                 s->Add (panel, 1, wxEXPAND);
223                 SetSizer (s);
224
225                 film_editor = new FilmEditor (film, panel);
226                 film_viewer = new FilmViewer (film, panel);
227                 JobManagerView* job_manager_view = new JobManagerView (panel);
228
229                 _top_sizer = new wxBoxSizer (wxHORIZONTAL);
230                 _top_sizer->Add (film_editor, 0, wxALL, 6);
231                 _top_sizer->Add (film_viewer, 1, wxEXPAND | wxALL, 6);
232
233                 wxBoxSizer* main_sizer = new wxBoxSizer (wxVERTICAL);
234                 main_sizer->Add (_top_sizer, 2, wxEXPAND | wxALL, 6);
235                 main_sizer->Add (job_manager_view, 1, wxEXPAND | wxALL, 6);
236                 panel->SetSizer (main_sizer);
237
238                 set_menu_sensitivity ();
239
240                 /* XXX: calling these here is a bit of a hack */
241                 film_editor->setup_visibility ();
242                 
243                 film_editor->FileChanged.connect (bind (&Frame::file_changed, this, _1));
244                 if (film) {
245                         file_changed (film->directory ());
246                 } else {
247                         file_changed ("");
248                 }
249
250                 set_film ();
251
252                 film_editor->Connect (wxID_ANY, wxEVT_SIZE, wxSizeEventHandler (Frame::film_editor_sized), 0, this);
253         }
254
255 private:
256
257         void film_editor_sized (wxSizeEvent &)
258         {
259                 static bool in_layout = false;
260                 if (!in_layout) {
261                         in_layout = true;
262                         _top_sizer->Layout ();
263                         in_layout = false;
264                 }
265         }
266
267         void menu_opened (wxMenuEvent& ev)
268         {
269                 if (ev.GetMenu() != jobs_menu) {
270                         return;
271                 }
272
273                 bool const have_dcp = film && film->have_dcp();
274                 jobs_menu->Enable (ID_jobs_send_dcp_to_tms, have_dcp);
275                 jobs_menu->Enable (ID_jobs_show_dcp, have_dcp);
276         }
277
278         void set_film ()
279         {
280                 film_viewer->set_film (film);
281                 film_editor->set_film (film);
282                 set_menu_sensitivity ();
283         }
284
285         void file_changed (string f)
286         {
287                 stringstream s;
288                 s << wx_to_std (_("DVD-o-matic"));
289                 if (!f.empty ()) {
290                         s << " - " << f;
291                 }
292                 
293                 SetTitle (std_to_wx (s.str()));
294         }
295         
296         void file_new (wxCommandEvent &)
297         {
298                 NewFilmDialog* d = new NewFilmDialog (this);
299                 int const r = d->ShowModal ();
300                 
301                 if (r == wxID_OK) {
302
303                         if (boost::filesystem::exists (d->get_path())) {
304                                 error_dialog (this, std_to_wx (String::compose (wx_to_std (_("The directory %1 already exists.")), d->get_path().c_str())));
305                                 return;
306                         }
307                         
308                         maybe_save_then_delete_film ();
309                         film.reset (new Film (d->get_path (), false));
310                         film->log()->set_level (log_level);
311                         film->set_name (boost::filesystem::path (d->get_path()).filename().generic_string());
312                         set_film ();
313                 }
314                 
315                 d->Destroy ();
316         }
317
318         void file_open (wxCommandEvent &)
319         {
320                 wxDirDialog* c = new wxDirDialog (this, _("Select film to open"), wxStandardPaths::Get().GetDocumentsDir(), wxDEFAULT_DIALOG_STYLE | wxDD_DIR_MUST_EXIST);
321                 int r;
322                 while (1) {
323                         r = c->ShowModal ();
324                         if (r == wxID_OK && c->GetPath() == wxStandardPaths::Get().GetDocumentsDir()) {
325                                 error_dialog (this, _("You did not select a folder.  Make sure that you select a folder before clicking Open."));
326                         } else {
327                                 break;
328                         }
329                 }
330                         
331                 if (r == wxID_OK) {
332                         maybe_save_then_delete_film ();
333                         try {
334                                 film.reset (new Film (wx_to_std (c->GetPath ())));
335                                 film->log()->set_level (log_level);
336                                 set_film ();
337                         } catch (std::exception& e) {
338                                 wxString p = c->GetPath ();
339                                 wxCharBuffer b = p.ToUTF8 ();
340                                 error_dialog (this, wxString::Format (_("Could not open film at %s (%s)"), p.data(), std_to_wx (e.what()).data()));
341                         }
342                 }
343
344                 c->Destroy ();
345         }
346
347         void file_save (wxCommandEvent &)
348         {
349                 film->write_metadata ();
350         }
351
352         void file_properties (wxCommandEvent &)
353         {
354                 PropertiesDialog* d = new PropertiesDialog (this, film);
355                 d->ShowModal ();
356                 d->Destroy ();
357         }
358         
359         void file_quit (wxCommandEvent &)
360         {
361                 maybe_save_then_delete_film ();
362                 Close (true);
363         }
364
365         void edit_preferences (wxCommandEvent &)
366         {
367                 ConfigDialog* d = new ConfigDialog (this);
368                 d->ShowModal ();
369                 d->Destroy ();
370                 Config::instance()->write ();
371         }
372
373         void jobs_make_dcp (wxCommandEvent &)
374         {
375                 JobWrapper::make_dcp (this, film);
376         }
377         
378         void jobs_send_dcp_to_tms (wxCommandEvent &)
379         {
380                 film->send_dcp_to_tms ();
381         }
382
383         void jobs_show_dcp (wxCommandEvent &)
384         {
385 #ifdef __WXMSW__
386                 string d = film->directory();
387                 wstring w;
388                 w.assign (d.begin(), d.end());
389                 ShellExecute (0, L"open", w.c_str(), 0, 0, SW_SHOWDEFAULT);
390 #else
391                 int r = system ("which nautilus");
392                 if (WEXITSTATUS (r) == 0) {
393                         system (string ("nautilus " + film->directory()).c_str ());
394                 } else {
395                         int r = system ("which konqueror");
396                         if (WEXITSTATUS (r) == 0) {
397                                 system (string ("konqueror " + film->directory()).c_str ());
398                         }
399                 }
400 #endif          
401         }
402
403         void jobs_analyse_audio (wxCommandEvent &)
404         {
405                 film->analyse_audio ();
406         }
407         
408         void help_about (wxCommandEvent &)
409         {
410                 wxAboutDialogInfo info;
411                 info.SetName (_("DVD-o-matic"));
412                 if (strcmp (dvdomatic_git_commit, "release") == 0) {
413                         info.SetVersion (std_to_wx (String::compose ("version %1", dvdomatic_version)));
414                 } else {
415                         info.SetVersion (std_to_wx (String::compose ("version %1 git %2", dvdomatic_version, dvdomatic_git_commit)));
416                 }
417                 info.SetDescription (_("Free, open-source DCP generation from almost anything."));
418                 info.SetCopyright (_("(C) 2012-2013 Carl Hetherington, Terrence Meiczinger, Paul Davis, Ole Laursen"));
419
420                 wxArrayString authors;
421                 authors.Add (wxT ("Carl Hetherington"));
422                 authors.Add (wxT ("Terrence Meiczinger"));
423                 authors.Add (wxT ("Paul Davis"));
424                 authors.Add (wxT ("Ole Laursen"));
425                 info.SetDevelopers (authors);
426
427                 wxArrayString translators;
428                 translators.Add (wxT ("Olivier Perriere"));
429                 translators.Add (wxT ("Lilian Lefranc"));
430                 translators.Add (wxT ("Thierry Journet"));
431                 translators.Add (wxT ("Massimiliano Broggi"));
432                 translators.Add (wxT ("Manuel AC"));
433                 translators.Add (wxT ("Adam Klotblixt"));
434                 info.SetTranslators (translators);
435                 
436                 info.SetWebSite (wxT ("http://carlh.net/software/dvdomatic"));
437                 wxAboutBox (info);
438         }
439
440         wxSizer* _top_sizer;
441 };
442
443 #if wxMINOR_VERSION == 9
444 static const wxCmdLineEntryDesc command_line_description[] = {
445         { wxCMD_LINE_OPTION, "l", "log", "set log level (silent, verbose or timing)", wxCMD_LINE_VAL_STRING, wxCMD_LINE_PARAM_OPTIONAL },
446         { wxCMD_LINE_PARAM, 0, 0, "film to load", wxCMD_LINE_VAL_STRING, wxCMD_LINE_PARAM_MULTIPLE | wxCMD_LINE_PARAM_OPTIONAL },
447         { wxCMD_LINE_NONE, "", "", "", wxCmdLineParamType (0), 0 }
448 };
449 #else
450 static const wxCmdLineEntryDesc command_line_description[] = {
451         { wxCMD_LINE_OPTION, wxT("l"), wxT("log"), wxT("set log level (silent, verbose or timing)"), wxCMD_LINE_VAL_STRING, wxCMD_LINE_PARAM_OPTIONAL },
452         { wxCMD_LINE_PARAM, 0, 0, wxT("film to load"), wxCMD_LINE_VAL_STRING, wxCMD_LINE_PARAM_MULTIPLE | wxCMD_LINE_PARAM_OPTIONAL },
453         { wxCMD_LINE_NONE, wxT(""), wxT(""), wxT(""), wxCmdLineParamType (0), 0 }
454 };
455 #endif
456
457 void
458 setup_i18n ()
459 {
460         int language = wxLANGUAGE_DEFAULT;
461
462         ofstream f ("c:/users/carl/foo", ios::app);
463         f << "Hello.\n";
464
465         if (Config::instance()->language()) {
466                 f << "Configured language " << Config::instance()->language().get() << "\n";
467                 wxLanguageInfo const * li = wxLocale::FindLanguageInfo (std_to_wx (Config::instance()->language().get()));
468                 f << "LanguageInfo " << li << "\n";
469                 if (li) {
470                         language = li->Language;
471                         f << "language=" << language << " cf " << wxLANGUAGE_DEFAULT << " " << wxLANGUAGE_ENGLISH << "\n";
472                 }
473         }
474  
475         if (wxLocale::IsAvailable (language)) {
476                 f << "Language is available.\n";
477                 locale = new wxLocale (language, wxLOCALE_LOAD_DEFAULT);
478
479 #ifdef DVDOMATIC_WINDOWS
480                 locale->AddCatalogLookupPathPrefix (std_to_wx (mo_path().string()));
481 #endif          
482
483                 locale->AddCatalog (wxT ("libdvdomatic-wx"));
484                 locale->AddCatalog (wxT ("dvdomatic"));
485                 
486                 if (!locale->IsOk()) {
487                         f << "Locale is not ok.\n";
488                         delete locale;
489                         locale = new wxLocale (wxLANGUAGE_ENGLISH);
490                         language = wxLANGUAGE_ENGLISH;
491                 }
492         }
493
494         if (locale) {
495                 dvdomatic_setup_i18n (wx_to_std (locale->GetCanonicalName ()));
496         }
497 }
498
499 class App : public wxApp
500 {
501         bool OnInit ()
502         {
503                 if (!wxApp::OnInit()) {
504                         return false;
505                 }
506                 
507 #ifdef DVDOMATIC_POSIX          
508                 unsetenv ("UBUNTU_MENUPROXY");
509 #endif          
510
511                 wxInitAllImageHandlers ();
512
513                 /* Enable i18n; this will create a Config object
514                    to look for a force-configured language.  This Config
515                    object will be wrong, however, because dvdomatic_setup
516                    hasn't yet been called and there aren't any scalers, filters etc.
517                    set up yet.
518                 */
519                 setup_i18n ();
520
521                 /* Set things up, including scalers / filters etc.
522                    which will now be internationalised correctly.
523                 */
524                 dvdomatic_setup ();
525
526                 /* Force the configuration to be re-loaded correctly next
527                    time it is needed.
528                 */
529                 Config::drop ();
530
531                 if (!film_to_load.empty() && boost::filesystem::is_directory (film_to_load)) {
532                         try {
533                                 film.reset (new Film (film_to_load));
534                                 film->log()->set_level (log_level);
535                         } catch (exception& e) {
536                                 error_dialog (0, std_to_wx (String::compose (wx_to_std (_("Could not load film %1 (%2)")), film_to_load, e.what())));
537                         }
538                 }
539
540                 Frame* f = new Frame (_("DVD-o-matic"));
541                 SetTopWindow (f);
542                 f->Maximize ();
543                 f->Show ();
544
545                 ui_signaller = new wxUISignaller (this);
546                 this->Connect (-1, wxEVT_IDLE, wxIdleEventHandler (App::idle));
547
548                 return true;
549         }
550
551         void OnInitCmdLine (wxCmdLineParser& parser)
552         {
553                 parser.SetDesc (command_line_description);
554                 parser.SetSwitchChars (wxT ("-"));
555         }
556
557         bool OnCmdLineParsed (wxCmdLineParser& parser)
558         {
559                 if (parser.GetParamCount() > 0) {
560                         film_to_load = wx_to_std (parser.GetParam(0));
561                 }
562
563                 wxString log;
564                 if (parser.Found(wxT("log"), &log)) {
565                         log_level = wx_to_std (log);
566                 }
567
568                 return true;
569         }
570
571         void idle (wxIdleEvent &)
572         {
573                 ui_signaller->ui_idle ();
574         }
575 };
576
577 IMPLEMENT_APP (App)