Fix some unused variable warnings on macOS.
[dcpomatic.git] / src / tools / dcpomatic_disk.cc
1 /*
2     Copyright (C) 2019-2020 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 #include "wx/wx_signal_manager.h"
22 #include "wx/wx_util.h"
23 #include "wx/job_manager_view.h"
24 #include "wx/drive_wipe_warning_dialog.h"
25 #include "wx/try_unmount_dialog.h"
26 #include "wx/message_dialog.h"
27 #include "wx/disk_warning_dialog.h"
28 #include "lib/file_log.h"
29 #include "lib/dcpomatic_log.h"
30 #include "lib/util.h"
31 #include "lib/config.h"
32 #include "lib/signal_manager.h"
33 #include "lib/cross.h"
34 #include "lib/copy_to_drive_job.h"
35 #include "lib/job_manager.h"
36 #include "lib/disk_writer_messages.h"
37 #include "lib/version.h"
38 #include "lib/warnings.h"
39 #include <wx/wx.h>
40 DCPOMATIC_DISABLE_WARNINGS
41 #include <boost/process.hpp>
42 DCPOMATIC_ENABLE_WARNINGS
43 #ifdef DCPOMATIC_WINDOWS
44 #include <boost/process/windows.hpp>
45 #endif
46 #ifdef DCPOMATIC_OSX
47 #include <notify.h>
48 #endif
49
50 using std::string;
51 using std::exception;
52 using std::cout;
53 using std::cerr;
54 using boost::shared_ptr;
55 using boost::optional;
56
57 class DOMFrame : public wxFrame
58 {
59 public:
60         explicit DOMFrame (wxString const & title)
61                 : wxFrame (0, -1, title)
62                 , _nanomsg (true)
63                 , _sizer (new wxBoxSizer(wxVERTICAL))
64         {
65                 /* Use a panel as the only child of the Frame so that we avoid
66                    the dark-grey background on Windows.
67                 */
68                 wxPanel* overall_panel = new wxPanel (this);
69                 wxSizer* s = new wxBoxSizer (wxHORIZONTAL);
70                 s->Add (overall_panel, 1, wxEXPAND);
71                 SetSizer (s);
72
73                 wxGridBagSizer* grid = new wxGridBagSizer (DCPOMATIC_SIZER_X_GAP, DCPOMATIC_SIZER_Y_GAP);
74
75                 int r = 0;
76                 add_label_to_sizer (grid, overall_panel, _("DCP"), true, wxGBPosition(r, 0));
77                 wxBoxSizer* dcp_name_sizer = new wxBoxSizer (wxHORIZONTAL);
78                 _dcp_name = new wxStaticText (overall_panel, wxID_ANY, wxEmptyString);
79                 dcp_name_sizer->Add (_dcp_name, 1, wxALIGN_CENTER_VERTICAL | wxRIGHT, DCPOMATIC_SIZER_X_GAP);
80                 _dcp_open = new wxButton (overall_panel, wxID_ANY, _("Open..."));
81                 dcp_name_sizer->Add (_dcp_open, 0);
82                 grid->Add (dcp_name_sizer, wxGBPosition(r, 1), wxDefaultSpan, wxEXPAND);
83                 ++r;
84
85                 add_label_to_sizer (grid, overall_panel, _("Drive"), true, wxGBPosition(r, 0));
86                 wxBoxSizer* drive_sizer = new wxBoxSizer (wxHORIZONTAL);
87                 _drive = new wxChoice (overall_panel, wxID_ANY);
88                 drive_sizer->Add (_drive, 1, wxALIGN_CENTER_VERTICAL | wxRIGHT, DCPOMATIC_SIZER_X_GAP);
89                 _drive_refresh = new wxButton (overall_panel, wxID_ANY, _("Refresh"));
90                 drive_sizer->Add (_drive_refresh, 0);
91                 grid->Add (drive_sizer, wxGBPosition(r, 1), wxDefaultSpan, wxEXPAND);
92                 ++r;
93
94                 _jobs = new JobManagerView (overall_panel, false);
95                 grid->Add (_jobs, wxGBPosition(r, 0), wxGBSpan(6, 2), wxEXPAND);
96                 r += 6;
97
98                 _copy = new wxButton (overall_panel, wxID_ANY, _("Copy DCP"));
99                 grid->Add (_copy, wxGBPosition(r, 0), wxGBSpan(1, 2), wxEXPAND);
100                 ++r;
101
102                 grid->AddGrowableCol (1);
103
104                 _dcp_open->Bind (wxEVT_BUTTON, boost::bind(&DOMFrame::open, this));
105                 _copy->Bind (wxEVT_BUTTON, boost::bind(&DOMFrame::copy, this));
106                 _drive->Bind (wxEVT_CHOICE, boost::bind(&DOMFrame::setup_sensitivity, this));
107                 _drive_refresh->Bind (wxEVT_BUTTON, boost::bind(&DOMFrame::drive_refresh, this));
108
109                 _sizer->Add (grid, 1, wxALL | wxEXPAND, DCPOMATIC_DIALOG_BORDER);
110                 overall_panel->SetSizer (_sizer);
111                 Fit ();
112                 SetSize (768, GetSize().GetHeight() + 32);
113
114                 /* XXX: this is a hack, but I expect we'll need logs and I'm not sure if there's
115                  * a better place to put them.
116                  */
117                 dcpomatic_log.reset(new FileLog(config_path() / "disk.log"));
118                 dcpomatic_log->set_types (dcpomatic_log->types() | LogEntry::TYPE_DISK);
119                 LOG_DISK("dcpomatic_disk %1 started", dcpomatic_git_commit);
120
121                 drive_refresh ();
122
123                 Bind (wxEVT_SIZE, boost::bind(&DOMFrame::sized, this, _1));
124                 Bind (wxEVT_CLOSE_WINDOW, boost::bind(&DOMFrame::close, this, _1));
125
126                 JobManager::instance()->ActiveJobsChanged.connect(boost::bind(&DOMFrame::setup_sensitivity, this));
127
128 #ifdef DCPOMATIC_WINDOWS
129                 /* We must use ::shell here, it seems, to avoid error code 740 (related to privilege escalation) */
130                 LOG_DISK("Starting writer process %1", disk_writer_path().string());
131                 _writer = new boost::process::child (disk_writer_path(), boost::process::shell, boost::process::windows::hide);
132 #endif
133
134 #ifdef DCPOMATIC_LINUX
135                 if (getenv("DCPOMATIC_NO_START_WRITER")) {
136                         LOG_DISK_NC("Not starting writer process as DCPOMATIC_NO_START_WRITER is set");
137                 } else {
138                         LOG_DISK("Starting writer process %1", disk_writer_path().string());
139                         _writer = new boost::process::child (disk_writer_path());
140                 }
141 #endif
142
143 #ifdef DCPOMATIC_OSX
144                 LOG_DISK_NC("Sending notification to writer daemon");
145                 notify_post ("com.dcpomatic.disk.writer.start");
146 #endif
147         }
148
149         ~DOMFrame ()
150         {
151                 _nanomsg.send(DISK_WRITER_QUIT "\n", 2000);
152         }
153
154 private:
155         void sized (wxSizeEvent& ev)
156         {
157                 _sizer->Layout ();
158                 ev.Skip ();
159         }
160
161
162         bool should_close ()
163         {
164                 if (!JobManager::instance()->work_to_do()) {
165                         return true;
166                 }
167
168                 wxMessageDialog* d = new wxMessageDialog (
169                         0,
170                         _("There are unfinished jobs; are you sure you want to quit?"),
171                         _("Unfinished jobs"),
172                         wxYES_NO | wxYES_DEFAULT | wxICON_QUESTION
173                         );
174
175                 bool const r = d->ShowModal() == wxID_YES;
176                 d->Destroy ();
177                 return r;
178         }
179
180
181         void close (wxCloseEvent& ev)
182         {
183                 if (!should_close()) {
184                         ev.Veto ();
185                         return;
186                 }
187
188                 ev.Skip ();
189         }
190
191
192         void open ()
193         {
194                 wxDirDialog* d = new wxDirDialog (this, _("Choose a DCP folder"), wxT(""), wxDD_DIR_MUST_EXIST);
195                 int r = d->ShowModal ();
196                 boost::filesystem::path const path (wx_to_std(d->GetPath()));
197                 d->Destroy ();
198
199                 if (r != wxID_OK) {
200                         return;
201                 }
202
203                 _dcp_path = path;
204                 _dcp_name->SetLabel (std_to_wx(_dcp_path->filename().string()));
205                 setup_sensitivity ();
206         }
207
208         void copy ()
209         {
210                 DCPOMATIC_ASSERT (_drive->GetSelection() != wxNOT_FOUND);
211                 DCPOMATIC_ASSERT (static_cast<bool>(_dcp_path));
212
213                 Drive const& drive = _drives[_drive->GetSelection()];
214                 if (drive.mounted()) {
215                         TryUnmountDialog* d = new TryUnmountDialog(this, drive.description());
216                         int const r = d->ShowModal ();
217                         d->Destroy ();
218                         if (r != wxID_OK) {
219                                 return;
220                         }
221
222                         LOG_DISK("Sending unmount request to disk writer for %1", drive.as_xml());
223                         if (!_nanomsg.send(DISK_WRITER_UNMOUNT "\n", 2000)) {
224                                 throw CommunicationFailedError ();
225                         }
226                         if (!_nanomsg.send(drive.as_xml(), 2000)) {
227                                 throw CommunicationFailedError ();
228                         }
229                         optional<string> reply = _nanomsg.receive (2000);
230                         if (!reply || *reply != DISK_WRITER_OK) {
231                                 MessageDialog* m = new MessageDialog (
232                                                 this,
233                                                 _("DCP-o-matic Disk Writer"),
234                                                 wxString::Format(_("The drive %s could not be unmounted.\nClose any application that is using it, then try again."), std_to_wx(drive.description()))
235                                                 );
236                                 m->ShowModal ();
237                                 m->Destroy ();
238                                 return;
239                         }
240                 }
241
242
243                 DriveWipeWarningDialog* d = new DriveWipeWarningDialog (this, _drive->GetString(_drive->GetSelection()));
244                 int const r = d->ShowModal ();
245                 bool ok = r == wxID_OK && d->confirmed();
246                 d->Destroy ();
247
248                 if (!ok) {
249                         return;
250                 }
251
252                 JobManager::instance()->add(shared_ptr<Job>(new CopyToDriveJob(*_dcp_path, _drives[_drive->GetSelection()], _nanomsg)));
253                 setup_sensitivity ();
254         }
255
256         void drive_refresh ()
257         {
258                 int const sel = _drive->GetSelection ();
259                 wxString current;
260                 if (sel != wxNOT_FOUND) {
261                         current = _drive->GetString (sel);
262                 }
263                 _drive->Clear ();
264                 int re_select = wxNOT_FOUND;
265                 int j = 0;
266                 _drives = Drive::get ();
267                 BOOST_FOREACH (Drive i, _drives) {
268                         wxString const s = std_to_wx(i.description());
269                         if (s == current) {
270                                 re_select = j;
271                         }
272                         _drive->Append(s);
273                         ++j;
274                 }
275                 _drive->SetSelection (re_select);
276                 setup_sensitivity ();
277         }
278
279         void setup_sensitivity ()
280         {
281                 _copy->Enable (static_cast<bool>(_dcp_path) && _drive->GetSelection() != wxNOT_FOUND && !JobManager::instance()->work_to_do());
282         }
283
284         wxStaticText* _dcp_name;
285         wxButton* _dcp_open;
286         wxChoice* _drive;
287         wxButton* _drive_refresh;
288         wxButton* _copy;
289         JobManagerView* _jobs;
290         boost::optional<boost::filesystem::path> _dcp_path;
291         std::vector<Drive> _drives;
292 #ifndef DCPOMATIC_OSX
293         boost::process::child* _writer;
294 #endif
295         Nanomsg _nanomsg;
296         wxSizer* _sizer;
297 };
298
299 class App : public wxApp
300 {
301 public:
302         App ()
303                 : _frame (0)
304         {}
305
306         bool OnInit ()
307         {
308                 try {
309                         Config::FailedToLoad.connect (boost::bind (&App::config_failed_to_load, this));
310                         Config::Warning.connect (boost::bind (&App::config_warning, this, _1));
311
312                         SetAppName (_("DCP-o-matic Disk Writer"));
313
314                         if (!wxApp::OnInit()) {
315                                 return false;
316                         }
317
318 #ifdef DCPOMATIC_LINUX
319                         unsetenv ("UBUNTU_MENUPROXY");
320 #endif
321
322 #ifdef DCPOMATIC_OSX
323                         make_foreground_application ();
324 #endif
325
326                         dcpomatic_setup_path_encoding ();
327
328                         /* Enable i18n; this will create a Config object
329                            to look for a force-configured language.  This Config
330                            object will be wrong, however, because dcpomatic_setup
331                            hasn't yet been called and there aren't any filters etc.
332                            set up yet.
333                         */
334                         dcpomatic_setup_i18n ();
335
336                         /* Set things up, including filters etc.
337                            which will now be internationalised correctly.
338                         */
339                         dcpomatic_setup ();
340
341                         /* Force the configuration to be re-loaded correctly next
342                            time it is needed.
343                         */
344                         Config::drop ();
345
346                         DiskWarningDialog* warning = new DiskWarningDialog ();
347                         warning->ShowModal ();
348                         if (!warning->confirmed()) {
349                                 return false;
350                         }
351                         warning->Destroy ();
352
353                         _frame = new DOMFrame (_("DCP-o-matic Disk Writer"));
354                         SetTopWindow (_frame);
355
356                         _frame->Show ();
357
358                         signal_manager = new wxSignalManager (this);
359                         Bind (wxEVT_IDLE, boost::bind (&App::idle, this, _1));
360                 }
361                 catch (exception& e)
362                 {
363                         error_dialog (0, wxString::Format ("DCP-o-matic could not start."), std_to_wx(e.what()));
364                         return false;
365                 }
366
367                 return true;
368         }
369
370         void config_failed_to_load ()
371         {
372                 message_dialog (_frame, _("The existing configuration failed to load.  Default values will be used instead.  These may take a short time to create."));
373         }
374
375         void config_warning (string m)
376         {
377                 message_dialog (_frame, std_to_wx(m));
378         }
379
380         void idle (wxIdleEvent& ev)
381         {
382                 signal_manager->ui_idle ();
383                 ev.Skip ();
384         }
385
386         void report_exception ()
387         {
388                 try {
389                         throw;
390                 } catch (FileError& e) {
391                         error_dialog (
392                                 0,
393                                 wxString::Format (
394                                         _("An exception occurred: %s (%s)\n\n") + REPORT_PROBLEM,
395                                         std_to_wx (e.what()),
396                                         std_to_wx (e.file().string().c_str ())
397                                         )
398                                 );
399                 } catch (exception& e) {
400                         error_dialog (
401                                 0,
402                                 wxString::Format (
403                                         _("An exception occurred: %s.\n\n") + REPORT_PROBLEM,
404                                         std_to_wx (e.what ())
405                                         )
406                                 );
407                 } catch (...) {
408                         error_dialog (0, _("An unknown exception occurred.") + "  " + REPORT_PROBLEM);
409                 }
410         }
411
412         bool OnExceptionInMainLoop ()
413         {
414                 report_exception ();
415                 /* This will terminate the program */
416                 return false;
417         }
418
419         void OnUnhandledException ()
420         {
421                 report_exception ();
422         }
423
424         DOMFrame* _frame;
425 };
426
427 IMPLEMENT_APP (App)