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