Do the right thing when the user cancels the unmount dialogue.
[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 "lib/file_log.h"
28 #include "lib/dcpomatic_log.h"
29 #include "lib/util.h"
30 #include "lib/config.h"
31 #include "lib/signal_manager.h"
32 #include "lib/cross.h"
33 #include "lib/copy_to_drive_job.h"
34 #include "lib/job_manager.h"
35 #include "lib/disk_writer_messages.h"
36 #include <wx/wx.h>
37 #include <boost/process.hpp>
38 #ifdef DCPOMATIC_WINDOWS
39 #include <boost/process/windows.hpp>
40 #endif
41 #ifdef DCPOMATIC_OSX
42 #include <ApplicationServices/ApplicationServices.h>
43 #endif
44
45 using std::string;
46 using std::exception;
47 using std::cout;
48 using std::cerr;
49 using boost::shared_ptr;
50 using boost::optional;
51
52 class DOMFrame : public wxFrame
53 {
54 public:
55         explicit DOMFrame (wxString const & title)
56                 : wxFrame (0, -1, title)
57                 , _nanomsg (true)
58                 , _sizer (new wxBoxSizer(wxVERTICAL))
59         {
60                 /* Use a panel as the only child of the Frame so that we avoid
61                    the dark-grey background on Windows.
62                 */
63                 wxPanel* overall_panel = new wxPanel (this);
64                 wxSizer* s = new wxBoxSizer (wxHORIZONTAL);
65                 s->Add (overall_panel, 1, wxEXPAND);
66                 SetSizer (s);
67
68                 wxGridBagSizer* grid = new wxGridBagSizer (DCPOMATIC_SIZER_X_GAP, DCPOMATIC_SIZER_Y_GAP);
69
70                 int r = 0;
71                 add_label_to_sizer (grid, overall_panel, _("DCP"), true, wxGBPosition(r, 0));
72                 wxBoxSizer* dcp_name_sizer = new wxBoxSizer (wxHORIZONTAL);
73                 _dcp_name = new wxStaticText (overall_panel, wxID_ANY, wxEmptyString);
74                 dcp_name_sizer->Add (_dcp_name, 1, wxALIGN_CENTER_VERTICAL | wxRIGHT, DCPOMATIC_SIZER_X_GAP);
75                 _dcp_open = new wxButton (overall_panel, wxID_ANY, _("Open..."));
76                 dcp_name_sizer->Add (_dcp_open, 0);
77                 grid->Add (dcp_name_sizer, wxGBPosition(r, 1), wxDefaultSpan, wxEXPAND);
78                 ++r;
79
80                 add_label_to_sizer (grid, overall_panel, _("Drive"), true, wxGBPosition(r, 0));
81                 wxBoxSizer* drive_sizer = new wxBoxSizer (wxHORIZONTAL);
82                 _drive = new wxChoice (overall_panel, wxID_ANY);
83                 drive_sizer->Add (_drive, 1, wxALIGN_CENTER_VERTICAL | wxRIGHT, DCPOMATIC_SIZER_X_GAP);
84                 _drive_refresh = new wxButton (overall_panel, wxID_ANY, _("Refresh"));
85                 drive_sizer->Add (_drive_refresh, 0);
86                 grid->Add (drive_sizer, wxGBPosition(r, 1), wxDefaultSpan, wxEXPAND);
87                 ++r;
88
89                 _jobs = new JobManagerView (overall_panel, false);
90                 grid->Add (_jobs, wxGBPosition(r, 0), wxGBSpan(6, 2), wxEXPAND);
91                 r += 6;
92
93                 _copy = new wxButton (overall_panel, wxID_ANY, _("Copy DCP"));
94                 grid->Add (_copy, wxGBPosition(r, 0), wxGBSpan(1, 2), wxEXPAND);
95                 ++r;
96
97                 grid->AddGrowableCol (1);
98
99                 _dcp_open->Bind (wxEVT_BUTTON, boost::bind(&DOMFrame::open, this));
100                 _copy->Bind (wxEVT_BUTTON, boost::bind(&DOMFrame::copy, this));
101                 _drive->Bind (wxEVT_CHOICE, boost::bind(&DOMFrame::setup_sensitivity, this));
102                 _drive_refresh->Bind (wxEVT_BUTTON, boost::bind(&DOMFrame::drive_refresh, this));
103
104                 _sizer->Add (grid, 1, wxALL | wxEXPAND, DCPOMATIC_DIALOG_BORDER);
105                 overall_panel->SetSizer (_sizer);
106                 Fit ();
107                 SetSize (768, GetSize().GetHeight() + 32);
108
109                 /* XXX: this is a hack, but I expect we'll need logs and I'm not sure if there's
110                  * a better place to put them.
111                  */
112                 dcpomatic_log.reset(new FileLog(config_path() / "disk.log"));
113                 dcpomatic_log->set_types (dcpomatic_log->types() | LogEntry::TYPE_DISK);
114                 LOG_DISK_NC("dcpomatic_disk started");
115
116                 drive_refresh ();
117
118                 Bind (wxEVT_SIZE, boost::bind (&DOMFrame::sized, this, _1));
119
120                 JobManager::instance()->ActiveJobsChanged.connect(boost::bind(&DOMFrame::setup_sensitivity, this));
121
122 #ifdef DCPOMATIC_WINDOWS
123                 /* We must use ::shell here, it seems, to avoid error code 740 (related to privilege escalation) */
124                 LOG_DISK("Starting writer process %1", disk_writer_path().string());
125                 _writer = new boost::process::child (disk_writer_path(), boost::process::shell, boost::process::windows::hide);
126 #endif
127
128 #ifdef DCPOMATIC_LINUX
129                 LOG_DISK("Starting writer process %1", disk_writer_path().string());
130                 _writer = new boost::process::child (disk_writer_path());
131 #endif
132
133                 /* _writer is always running on macOS at the moment */
134         }
135
136         ~DOMFrame ()
137         {
138                 _nanomsg.send(DISK_WRITER_QUIT "\n", 2000);
139         }
140
141 private:
142         void sized (wxSizeEvent& ev)
143         {
144                 _sizer->Layout ();
145                 ev.Skip ();
146         }
147
148         void open ()
149         {
150                 wxDirDialog* d = new wxDirDialog (this, _("Choose a DCP folder"), wxT(""), wxDD_DIR_MUST_EXIST);
151                 int r = d->ShowModal ();
152                 boost::filesystem::path const path (wx_to_std(d->GetPath()));
153                 d->Destroy ();
154
155                 if (r != wxID_OK) {
156                         return;
157                 }
158
159                 _dcp_path = path;
160                 _dcp_name->SetLabel (std_to_wx(_dcp_path->filename().string()));
161                 setup_sensitivity ();
162         }
163
164         void copy ()
165         {
166                 DCPOMATIC_ASSERT (_drive->GetSelection() != wxNOT_FOUND);
167                 DCPOMATIC_ASSERT (static_cast<bool>(_dcp_path));
168
169                 Drive const& drive = _drives[_drive->GetSelection()];
170                 if (drive.mounted()) {
171                         TryUnmountDialog* d = new TryUnmountDialog(this, drive.description());
172                         int const r = d->ShowModal ();
173                         d->Destroy ();
174                         if (r != wxID_OK) {
175                                 return;
176                         }
177
178                         if (!_nanomsg.send(DISK_WRITER_UNMOUNT "\n", 2000)) {
179                                 throw CommunicationFailedError ();
180                         }
181                         if (!_nanomsg.send(drive.internal_name() + "\n", 2000)) {
182                                 throw CommunicationFailedError ();
183                         }
184                         optional<string> reply = _nanomsg.receive (2000);
185                         if (!reply || *reply != DISK_WRITER_OK) {
186                                 MessageDialog* m = new MessageDialog (
187                                                 this,
188                                                 _("DCP-o-matic Disk Writer"),
189                                                 wxString::Format(_("The drive %s could not be unmounted.\nClose any application that is using it, then try again."), std_to_wx(drive.description()))
190                                                 );
191                                 m->ShowModal ();
192                                 m->Destroy ();
193                                 return;
194                         }
195                 }
196
197                 
198                 DriveWipeWarningDialog* d = new DriveWipeWarningDialog (this, _drive->GetString(_drive->GetSelection()));
199                 int const r = d->ShowModal ();
200                 bool ok = r == wxID_OK && d->confirmed();
201                 d->Destroy ();
202
203                 if (!ok) {
204                         return;
205                 }
206
207                 JobManager::instance()->add(shared_ptr<Job>(new CopyToDriveJob(*_dcp_path, _drives[_drive->GetSelection()], _nanomsg)));
208                 setup_sensitivity ();
209         }
210
211         void drive_refresh ()
212         {
213                 int const sel = _drive->GetSelection ();
214                 wxString current;
215                 if (sel != wxNOT_FOUND) {
216                         current = _drive->GetString (sel);
217                 }
218                 _drive->Clear ();
219                 int re_select = wxNOT_FOUND;
220                 int j = 0;
221                 _drives = get_drives ();
222                 BOOST_FOREACH (Drive i, _drives) {
223                         wxString const s = std_to_wx(i.description());
224                         if (s == current) {
225                                 re_select = j;
226                         }
227                         _drive->Append(s);
228                         ++j;
229                 }
230                 _drive->SetSelection (re_select);
231                 setup_sensitivity ();
232         }
233
234         void setup_sensitivity ()
235         {
236                 _copy->Enable (static_cast<bool>(_dcp_path) && _drive->GetSelection() != wxNOT_FOUND && !JobManager::instance()->work_to_do());
237         }
238
239         wxStaticText* _dcp_name;
240         wxButton* _dcp_open;
241         wxChoice* _drive;
242         wxButton* _drive_refresh;
243         wxButton* _copy;
244         JobManagerView* _jobs;
245         boost::optional<boost::filesystem::path> _dcp_path;
246         std::vector<Drive> _drives;
247         boost::process::child* _writer;
248         Nanomsg _nanomsg;
249         wxSizer* _sizer;
250 };
251
252 class App : public wxApp
253 {
254 public:
255         App ()
256                 : _frame (0)
257         {}
258
259         bool OnInit ()
260         {
261                 try {
262                         Config::FailedToLoad.connect (boost::bind (&App::config_failed_to_load, this));
263                         Config::Warning.connect (boost::bind (&App::config_warning, this, _1));
264
265                         SetAppName (_("DCP-o-matic Disk Writer"));
266
267                         if (!wxApp::OnInit()) {
268                                 return false;
269                         }
270
271 #ifdef DCPOMATIC_LINUX
272                         unsetenv ("UBUNTU_MENUPROXY");
273 #endif
274
275 #ifdef __WXOSX__
276                         ProcessSerialNumber serial;
277                         GetCurrentProcess (&serial);
278                         TransformProcessType (&serial, kProcessTransformToForegroundApplication);
279 #endif
280
281                         dcpomatic_setup_path_encoding ();
282
283                         /* Enable i18n; this will create a Config object
284                            to look for a force-configured language.  This Config
285                            object will be wrong, however, because dcpomatic_setup
286                            hasn't yet been called and there aren't any filters etc.
287                            set up yet.
288                         */
289                         dcpomatic_setup_i18n ();
290
291                         /* Set things up, including filters etc.
292                            which will now be internationalised correctly.
293                         */
294                         dcpomatic_setup ();
295
296                         /* Force the configuration to be re-loaded correctly next
297                            time it is needed.
298                         */
299                         Config::drop ();
300
301                         _frame = new DOMFrame (_("DCP-o-matic Disk Writer"));
302                         SetTopWindow (_frame);
303
304                         _frame->Show ();
305
306                         signal_manager = new wxSignalManager (this);
307                         Bind (wxEVT_IDLE, boost::bind (&App::idle, this, _1));
308                 }
309                 catch (exception& e)
310                 {
311                         error_dialog (0, wxString::Format ("DCP-o-matic could not start."), std_to_wx(e.what()));
312                 }
313
314                 return true;
315         }
316
317         void config_failed_to_load ()
318         {
319                 message_dialog (_frame, _("The existing configuration failed to load.  Default values will be used instead.  These may take a short time to create."));
320         }
321
322         void config_warning (string m)
323         {
324                 message_dialog (_frame, std_to_wx(m));
325         }
326
327         void idle (wxIdleEvent& ev)
328         {
329                 signal_manager->ui_idle ();
330                 ev.Skip ();
331         }
332
333         DOMFrame* _frame;
334 };
335
336 IMPLEMENT_APP (App)