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