C++11 tidying.
[dcpomatic.git] / src / tools / dcpomatic_disk.cc
1 /*
2     Copyright (C) 2019-2021 Carl Hetherington <cth@carlh.net>
3
4     This file is part of DCP-o-matic.
5
6     DCP-o-matic is free software; you can redistribute it and/or modify
7     it under the terms of the GNU General Public License as published by
8     the Free Software Foundation; either version 2 of the License, or
9     (at your option) any later version.
10
11     DCP-o-matic is distributed in the hope that it will be useful,
12     but WITHOUT ANY WARRANTY; without even the implied warranty of
13     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14     GNU General Public License for more details.
15
16     You should have received a copy of the GNU General Public License
17     along with DCP-o-matic.  If not, see <http://www.gnu.org/licenses/>.
18
19 */
20
21
22 #include "wx/disk_warning_dialog.h"
23 #include "wx/drive_wipe_warning_dialog.h"
24 #include "wx/job_manager_view.h"
25 #include "wx/message_dialog.h"
26 #include "wx/try_unmount_dialog.h"
27 #include "wx/wx_util.h"
28 #include "wx/wx_signal_manager.h"
29 #include "wx/wx_util.h"
30 #include "lib/config.h"
31 #include "lib/copy_to_drive_job.h"
32 #include "lib/cross.h"
33 #include "lib/dcpomatic_log.h"
34 #include "lib/disk_writer_messages.h"
35 #include "lib/file_log.h"
36 #include "lib/job_manager.h"
37 #include "lib/signal_manager.h"
38 #include "lib/util.h"
39 #include "lib/version.h"
40 #include "lib/warnings.h"
41 #include <wx/cmdline.h>
42 #include <wx/wx.h>
43 DCPOMATIC_DISABLE_WARNINGS
44 #include <boost/process.hpp>
45 DCPOMATIC_ENABLE_WARNINGS
46 #ifdef DCPOMATIC_WINDOWS
47 #include <boost/process/windows.hpp>
48 #endif
49 #ifdef DCPOMATIC_OSX
50 #include <notify.h>
51 #endif
52
53
54 using std::cerr;
55 using std::cout;
56 using std::exception;
57 using std::make_shared;
58 using std::shared_ptr;
59 using std::string;
60 using boost::optional;
61 #if BOOST_VERSION >= 106100
62 using namespace boost::placeholders;
63 #endif
64
65
66 #ifdef DCPOMATIC_OSX
67 enum {
68         ID_tools_uninstall = 1,
69 };
70 #endif
71
72
73 class DOMFrame : public wxFrame
74 {
75 public:
76         explicit DOMFrame (wxString const & title)
77                 : wxFrame (nullptr, wxID_ANY, title)
78                 , _nanomsg (true)
79                 , _sizer (new wxBoxSizer(wxVERTICAL))
80         {
81 #ifdef DCPOMATIC_OSX
82                 auto bar = new wxMenuBar;
83                 auto tools = new wxMenu;
84                 tools->Append(ID_tools_uninstall, _("Uninstall..."));
85                 bar->Append(tools, _("Tools"));
86                 SetMenuBar (bar);
87                 Bind (wxEVT_MENU, boost::bind(&DOMFrame::uninstall, this), ID_tools_uninstall);
88 #endif
89
90                 /* Use a panel as the only child of the Frame so that we avoid
91                    the dark-grey background on Windows.
92                 */
93                 auto overall_panel = new wxPanel (this);
94                 auto s = new wxBoxSizer (wxHORIZONTAL);
95                 s->Add (overall_panel, 1, wxEXPAND);
96                 SetSizer (s);
97
98                 auto grid = new wxGridBagSizer (DCPOMATIC_SIZER_X_GAP, DCPOMATIC_SIZER_Y_GAP);
99
100                 int r = 0;
101                 add_label_to_sizer (grid, overall_panel, _("DCP"), true, wxGBPosition(r, 0));
102                 auto dcp_name_sizer = new wxBoxSizer (wxHORIZONTAL);
103                 _dcp_name = new wxStaticText (overall_panel, wxID_ANY, wxEmptyString);
104                 dcp_name_sizer->Add (_dcp_name, 1, wxALIGN_CENTER_VERTICAL | wxRIGHT, DCPOMATIC_SIZER_X_GAP);
105                 _dcp_open = new wxButton (overall_panel, wxID_ANY, _("Open..."));
106                 dcp_name_sizer->Add (_dcp_open, 0);
107                 grid->Add (dcp_name_sizer, wxGBPosition(r, 1), wxDefaultSpan, wxEXPAND);
108                 ++r;
109
110                 add_label_to_sizer (grid, overall_panel, _("Drive"), true, wxGBPosition(r, 0));
111                 auto drive_sizer = new wxBoxSizer (wxHORIZONTAL);
112                 _drive = new wxChoice (overall_panel, wxID_ANY);
113                 drive_sizer->Add (_drive, 1, wxALIGN_CENTER_VERTICAL | wxRIGHT, DCPOMATIC_SIZER_X_GAP);
114                 _drive_refresh = new wxButton (overall_panel, wxID_ANY, _("Refresh"));
115                 drive_sizer->Add (_drive_refresh, 0);
116                 grid->Add (drive_sizer, wxGBPosition(r, 1), wxDefaultSpan, wxEXPAND);
117                 ++r;
118
119                 _jobs = new JobManagerView (overall_panel, false);
120                 grid->Add (_jobs, wxGBPosition(r, 0), wxGBSpan(6, 2), wxEXPAND);
121                 r += 6;
122
123                 _copy = new wxButton (overall_panel, wxID_ANY, _("Copy DCP"));
124                 grid->Add (_copy, wxGBPosition(r, 0), wxGBSpan(1, 2), wxEXPAND);
125                 ++r;
126
127                 grid->AddGrowableCol (1);
128
129                 _dcp_open->Bind (wxEVT_BUTTON, boost::bind(&DOMFrame::open, this));
130                 _copy->Bind (wxEVT_BUTTON, boost::bind(&DOMFrame::copy, this));
131                 _drive->Bind (wxEVT_CHOICE, boost::bind(&DOMFrame::setup_sensitivity, this));
132                 _drive_refresh->Bind (wxEVT_BUTTON, boost::bind(&DOMFrame::drive_refresh, this));
133
134                 _sizer->Add (grid, 1, wxALL | wxEXPAND, DCPOMATIC_DIALOG_BORDER);
135                 overall_panel->SetSizer (_sizer);
136                 Fit ();
137                 SetSize (1024, GetSize().GetHeight() + 32);
138
139                 /* XXX: this is a hack, but I expect we'll need logs and I'm not sure if there's
140                  * a better place to put them.
141                  */
142                 dcpomatic_log.reset(new FileLog(config_path() / "disk.log"));
143                 dcpomatic_log->set_types (dcpomatic_log->types() | LogEntry::TYPE_DISK);
144                 LOG_DISK("dcpomatic_disk %1 started", dcpomatic_git_commit);
145
146                 drive_refresh ();
147
148                 Bind (wxEVT_SIZE, boost::bind(&DOMFrame::sized, this, _1));
149                 Bind (wxEVT_CLOSE_WINDOW, boost::bind(&DOMFrame::close, this, _1));
150
151                 JobManager::instance()->ActiveJobsChanged.connect(boost::bind(&DOMFrame::setup_sensitivity, this));
152
153 #ifdef DCPOMATIC_WINDOWS
154                 /* We must use ::shell here, it seems, to avoid error code 740 (related to privilege escalation) */
155                 LOG_DISK("Starting writer process %1", disk_writer_path().string());
156                 _writer = new boost::process::child (disk_writer_path(), boost::process::shell, boost::process::windows::hide);
157 #endif
158
159 #ifdef DCPOMATIC_LINUX
160                 if (getenv("DCPOMATIC_NO_START_WRITER")) {
161                         LOG_DISK_NC("Not starting writer process as DCPOMATIC_NO_START_WRITER is set");
162                 } else {
163                         LOG_DISK("Starting writer process %1", disk_writer_path().string());
164                         _writer = new boost::process::child (disk_writer_path());
165                 }
166 #endif
167
168 #ifdef DCPOMATIC_OSX
169                 LOG_DISK_NC("Sending notification to writer daemon");
170                 notify_post ("com.dcpomatic.disk.writer.start");
171 #endif
172         }
173
174         ~DOMFrame ()
175         {
176                 _nanomsg.send(DISK_WRITER_QUIT "\n", 2000);
177                 /* This seems really horrible but it's suggested by the examples on nanomsg.org, so...
178                  * Without this the quit is not received (at least sometimes) causing #2018.
179                  */
180                 dcpomatic_sleep_seconds (1);
181         }
182
183         void set_dcp (boost::filesystem::path dcp)
184         {
185                 if (!boost::filesystem::exists(dcp / "ASSETMAP") && !boost::filesystem::exists(dcp / "ASSETMAP.xml")) {
186                         error_dialog (nullptr, _("No ASSETMAP or ASSETMAP.xml found in this folder.  Please choose a DCP folder."));
187                         return;
188                 }
189
190                 _dcp_path = dcp;
191                 _dcp_name->SetLabel (std_to_wx(dcp.filename().string()));
192         }
193
194 private:
195         void sized (wxSizeEvent& ev)
196         {
197                 _sizer->Layout ();
198                 ev.Skip ();
199         }
200
201
202 #ifdef DCPOMATIC_OSX
203         void uninstall()
204         {
205                 system(String::compose("osascript \"%1/uninstall_disk.applescript\"", resources_path().string()).c_str());
206         }
207 #endif
208
209
210         bool should_close ()
211         {
212                 if (!JobManager::instance()->work_to_do()) {
213                         return true;
214                 }
215
216                 auto d = new wxMessageDialog (
217                         0,
218                         _("There are unfinished jobs; are you sure you want to quit?"),
219                         _("Unfinished jobs"),
220                         wxYES_NO | wxYES_DEFAULT | wxICON_QUESTION
221                         );
222
223                 bool const r = d->ShowModal() == wxID_YES;
224                 d->Destroy ();
225                 return r;
226         }
227
228
229         void close (wxCloseEvent& ev)
230         {
231                 if (!should_close()) {
232                         ev.Veto ();
233                         return;
234                 }
235
236                 ev.Skip ();
237         }
238
239
240         void open ()
241         {
242                 auto d = new wxDirDialog (this, _("Choose a DCP folder"), wxT(""), wxDD_DIR_MUST_EXIST);
243                 int r = d->ShowModal ();
244                 boost::filesystem::path const path (wx_to_std(d->GetPath()));
245                 d->Destroy ();
246
247                 if (r != wxID_OK) {
248                         return;
249                 }
250
251                 set_dcp (path);
252                 setup_sensitivity ();
253         }
254
255         void copy ()
256         {
257                 /* Check that the selected drive still exists and update its properties if so */
258                 drive_refresh ();
259                 if (_drive->GetSelection() == wxNOT_FOUND) {
260                         error_dialog (this, _("The disk you selected is no longer available.  Please choose another."));
261                         return;
262                 }
263
264                 DCPOMATIC_ASSERT (_drive->GetSelection() != wxNOT_FOUND);
265                 DCPOMATIC_ASSERT (static_cast<bool>(_dcp_path));
266
267                 auto ping = [this](int attempt) {
268                         if (_nanomsg.send(DISK_WRITER_PING "\n", 1000)) {
269                                 auto reply = _nanomsg.receive (1000);
270                                 if (reply && *reply == DISK_WRITER_PONG) {
271                                         return true;
272                                 } else if (reply) {
273                                         LOG_DISK("Unexpected response %1 to ping received (attempt %2)", *reply, attempt);
274                                 } else {
275                                         LOG_DISK("No reply received from ping (attempt %1)", attempt);
276                                 }
277                         } else {
278                                 LOG_DISK("Could not send ping to writer (attempt %1)", attempt);
279                         }
280                         dcpomatic_sleep_seconds (1);
281                         return false;
282                 };
283
284                 bool have_writer = false;
285                 for (int i = 0; i < 8; ++i) {
286                         if (ping(i + 1)) {
287                                 have_writer = true;
288                                 break;
289                         }
290                 }
291
292                 if (!have_writer) {
293 #if defined(DCPOMATIC_WINDOWS)
294                         auto m = new MessageDialog (
295                                 this,
296                                 _("DCP-o-matic Disk Writer"),
297                                 _("Do you see a 'User Account Control' dialogue asking about dcpomatic2_disk_writer.exe?  If so, click 'Yes', then try again.")
298                                 );
299                         m->ShowModal ();
300                         m->Destroy ();
301                         return;
302 #elif defined(DCPOMATIC_OSX)
303                         auto m = new MessageDialog (
304                                 this,
305                                 _("DCP-o-matic Disk Writer"),
306                                 _("Did you install the DCP-o-matic Disk Writer.pkg from the .dmg?  Please check and try again.")
307                                 );
308                         m->ShowModal ();
309                         m->Destroy ();
310                         return;
311 #else
312                         LOG_DISK_NC ("Failed to ping writer");
313                         throw CommunicationFailedError ();
314 #endif
315                 }
316
317                 auto const& drive = _drives[_drive->GetSelection()];
318                 if (drive.mounted()) {
319                         auto d = new TryUnmountDialog(this, drive.description());
320                         int const r = d->ShowModal ();
321                         d->Destroy ();
322                         if (r != wxID_OK) {
323                                 return;
324                         }
325
326                         LOG_DISK("Sending unmount request to disk writer for %1", drive.as_xml());
327                         if (!_nanomsg.send(DISK_WRITER_UNMOUNT "\n", 2000)) {
328                                 LOG_DISK_NC("Failed to send unmount request.");
329                                 throw CommunicationFailedError ();
330                         }
331                         if (!_nanomsg.send(drive.as_xml(), 2000)) {
332                                 LOG_DISK_NC("Failed to send drive for unmount request.");
333                                 throw CommunicationFailedError ();
334                         }
335                         /* The reply may have to wait for the user to authenticate, so let's wait a while */
336                         auto reply = _nanomsg.receive (30000);
337                         if (!reply || *reply != DISK_WRITER_OK) {
338                                 auto * m = new MessageDialog (
339                                                 this,
340                                                 _("DCP-o-matic Disk Writer"),
341                                                 wxString::Format(_("The drive %s could not be unmounted.\nClose any application that is using it, then try again."), std_to_wx(drive.description()))
342                                                 );
343                                 m->ShowModal ();
344                                 m->Destroy ();
345                                 return;
346                         }
347                 }
348
349
350                 auto * d = new DriveWipeWarningDialog (this, _drive->GetString(_drive->GetSelection()));
351                 int const r = d->ShowModal ();
352                 bool ok = r == wxID_OK && d->confirmed();
353                 d->Destroy ();
354
355                 if (!ok) {
356                         return;
357                 }
358
359                 JobManager::instance()->add(make_shared<CopyToDriveJob>(*_dcp_path, _drives[_drive->GetSelection()], _nanomsg));
360                 setup_sensitivity ();
361         }
362
363         void drive_refresh ()
364         {
365                 int const sel = _drive->GetSelection ();
366                 wxString current;
367                 if (sel != wxNOT_FOUND) {
368                         current = _drive->GetString (sel);
369                 }
370                 _drive->Clear ();
371                 int re_select = wxNOT_FOUND;
372                 int j = 0;
373                 _drives = Drive::get ();
374                 for (auto i: _drives) {
375                         auto const s = std_to_wx(i.description());
376                         if (s == current) {
377                                 re_select = j;
378                         }
379                         _drive->Append(s);
380                         ++j;
381                 }
382                 _drive->SetSelection (re_select);
383                 setup_sensitivity ();
384         }
385
386         void setup_sensitivity ()
387         {
388                 _copy->Enable (static_cast<bool>(_dcp_path) && _drive->GetSelection() != wxNOT_FOUND && !JobManager::instance()->work_to_do());
389         }
390
391         wxStaticText* _dcp_name;
392         wxButton* _dcp_open;
393         wxChoice* _drive;
394         wxButton* _drive_refresh;
395         wxButton* _copy;
396         JobManagerView* _jobs;
397         boost::optional<boost::filesystem::path> _dcp_path;
398         std::vector<Drive> _drives;
399 #ifndef DCPOMATIC_OSX
400         boost::process::child* _writer;
401 #endif
402         Nanomsg _nanomsg;
403         wxSizer* _sizer;
404 };
405
406
407 static const wxCmdLineEntryDesc command_line_description[] = {
408         { wxCMD_LINE_OPTION, "d", "dcp", "DCP to write", wxCMD_LINE_VAL_STRING, wxCMD_LINE_PARAM_OPTIONAL },
409         { wxCMD_LINE_SWITCH, "s", "sure", "skip alpha test warnings", wxCMD_LINE_VAL_NONE, wxCMD_LINE_PARAM_OPTIONAL },
410         { wxCMD_LINE_NONE, "", "", "", wxCmdLineParamType (0), 0 }
411 };
412
413
414 class App : public wxApp
415 {
416 public:
417         App ()
418                 : _frame (nullptr)
419         {}
420
421         bool OnInit ()
422         {
423                 try {
424                         Config::FailedToLoad.connect (boost::bind (&App::config_failed_to_load, this));
425                         Config::Warning.connect (boost::bind (&App::config_warning, this, _1));
426
427                         SetAppName (_("DCP-o-matic Disk Writer"));
428
429                         if (!wxApp::OnInit()) {
430                                 return false;
431                         }
432
433 #ifdef DCPOMATIC_LINUX
434                         unsetenv ("UBUNTU_MENUPROXY");
435 #endif
436
437 #ifdef DCPOMATIC_OSX
438                         dcpomatic_sleep_seconds (1);
439                         make_foreground_application ();
440 #endif
441
442                         dcpomatic_setup_path_encoding ();
443
444                         /* Enable i18n; this will create a Config object
445                            to look for a force-configured language.  This Config
446                            object will be wrong, however, because dcpomatic_setup
447                            hasn't yet been called and there aren't any filters etc.
448                            set up yet.
449                         */
450                         dcpomatic_setup_i18n ();
451
452                         /* Set things up, including filters etc.
453                            which will now be internationalised correctly.
454                         */
455                         dcpomatic_setup ();
456
457                         /* Force the configuration to be re-loaded correctly next
458                            time it is needed.
459                         */
460                         Config::drop ();
461
462                         if (!_skip_alpha_check) {
463                                 auto warning = new DiskWarningDialog ();
464                                 warning->ShowModal ();
465                                 if (!warning->confirmed()) {
466                                         return false;
467                                 }
468                                 warning->Destroy ();
469                         }
470
471                         _frame = new DOMFrame (_("DCP-o-matic Disk Writer"));
472                         SetTopWindow (_frame);
473
474                         _frame->Show ();
475
476                         if (_dcp_to_write) {
477                                 _frame->set_dcp (*_dcp_to_write);
478                         }
479
480                         signal_manager = new wxSignalManager (this);
481                         Bind (wxEVT_IDLE, boost::bind (&App::idle, this, _1));
482                 }
483                 catch (exception& e)
484                 {
485                         error_dialog (0, wxString::Format ("DCP-o-matic could not start."), std_to_wx(e.what()));
486                         return false;
487                 }
488
489                 return true;
490         }
491
492         void OnInitCmdLine (wxCmdLineParser& parser)
493         {
494                 parser.SetDesc (command_line_description);
495                 parser.SetSwitchChars (wxT ("-"));
496         }
497
498         bool OnCmdLineParsed (wxCmdLineParser& parser)
499         {
500                 _skip_alpha_check = parser.Found(wxT("sure"));
501
502                 wxString dcp;
503                 if (parser.Found(wxT("dcp"), &dcp)) {
504                         _dcp_to_write = wx_to_std (dcp);
505                 }
506
507                 return true;
508         }
509
510         void config_failed_to_load ()
511         {
512                 message_dialog (_frame, _("The existing configuration failed to load.  Default values will be used instead.  These may take a short time to create."));
513         }
514
515         void config_warning (string m)
516         {
517                 message_dialog (_frame, std_to_wx(m));
518         }
519
520         void idle (wxIdleEvent& ev)
521         {
522                 signal_manager->ui_idle ();
523                 ev.Skip ();
524         }
525
526         void report_exception ()
527         {
528                 try {
529                         throw;
530                 } catch (FileError& e) {
531                         error_dialog (
532                                 0,
533                                 wxString::Format (
534                                         _("An exception occurred: %s (%s)\n\n") + REPORT_PROBLEM,
535                                         std_to_wx (e.what()),
536                                         std_to_wx (e.file().string().c_str ())
537                                         )
538                                 );
539                 } catch (exception& e) {
540                         error_dialog (
541                                 0,
542                                 wxString::Format (
543                                         _("An exception occurred: %s.\n\n") + REPORT_PROBLEM,
544                                         std_to_wx (e.what ())
545                                         )
546                                 );
547                 } catch (...) {
548                         error_dialog (0, _("An unknown exception occurred.") + "  " + REPORT_PROBLEM);
549                 }
550         }
551
552         bool OnExceptionInMainLoop ()
553         {
554                 report_exception ();
555                 /* This will terminate the program */
556                 return false;
557         }
558
559         void OnUnhandledException ()
560         {
561                 report_exception ();
562         }
563
564         DOMFrame* _frame;
565         bool _skip_alpha_check = false;
566         boost::optional<boost::filesystem::path> _dcp_to_write;
567 };
568
569 IMPLEMENT_APP (App)