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