Try boost::process::windows::hide on Windows.
[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                 _writer = new boost::process::child (dist_writer_path(), boost::process::shell, boost::process::windows::hide);
121 #else
122                 _writer = new boost::process::child (dist_writer_path());
123 #endif
124         }
125
126 private:
127         void sized (wxSizeEvent& ev)
128         {
129                 _sizer->Layout ();
130                 ev.Skip ();
131         }
132
133         void open ()
134         {
135                 wxDirDialog* d = new wxDirDialog (this, _("Choose a DCP folder"), wxT(""), wxDD_DIR_MUST_EXIST);
136                 int r = d->ShowModal ();
137                 boost::filesystem::path const path (wx_to_std(d->GetPath()));
138                 d->Destroy ();
139
140                 if (r != wxID_OK) {
141                         return;
142                 }
143
144                 _dcp_path = path;
145                 _dcp_name->SetLabel (std_to_wx(_dcp_path->filename().string()));
146                 setup_sensitivity ();
147         }
148
149         void copy ()
150         {
151                 DCPOMATIC_ASSERT (_drive->GetSelection() != wxNOT_FOUND);
152                 DCPOMATIC_ASSERT (static_cast<bool>(_dcp_path));
153                 DriveWipeWarningDialog* d = new DriveWipeWarningDialog (this, _drive->GetString(_drive->GetSelection()));
154                 int const r = d->ShowModal ();
155                 bool ok = r == wxID_OK && d->confirmed();
156                 d->Destroy ();
157
158                 if (!ok) {
159                         return;
160                 }
161
162                 JobManager::instance()->add(shared_ptr<Job>(new CopyToDriveJob(*_dcp_path, _drives[_drive->GetSelection()], _nanomsg)));
163         }
164
165         void drive_refresh ()
166         {
167                 int const sel = _drive->GetSelection ();
168                 wxString current;
169                 if (sel != wxNOT_FOUND) {
170                         current = _drive->GetString (sel);
171                 }
172                 _drive->Clear ();
173                 int re_select = wxNOT_FOUND;
174                 int j = 0;
175                 _drives.clear ();
176                 BOOST_FOREACH (Drive i, get_drives()) {
177                         if (!i.mounted()) {
178                                 _drives.push_back (i);
179                         }
180                 }
181                 BOOST_FOREACH (Drive i, _drives) {
182                         wxString const s = std_to_wx(i.description());
183                         if (s == current) {
184                                 re_select = j;
185                         }
186                         _drive->Append(s);
187                         ++j;
188                 }
189                 _drive->SetSelection (re_select);
190                 setup_sensitivity ();
191         }
192
193         void setup_sensitivity ()
194         {
195                 _copy->Enable (static_cast<bool>(_dcp_path) && _drive->GetSelection() != wxNOT_FOUND);
196         }
197
198         wxStaticText* _dcp_name;
199         wxButton* _dcp_open;
200         wxChoice* _drive;
201         wxButton* _drive_refresh;
202         wxButton* _copy;
203         JobManagerView* _jobs;
204         boost::optional<boost::filesystem::path> _dcp_path;
205         std::vector<Drive> _drives;
206         boost::process::child* _writer;
207         Nanomsg _nanomsg;
208         wxSizer* _sizer;
209 };
210
211 class App : public wxApp
212 {
213 public:
214         App ()
215                 : _frame (0)
216         {}
217
218         bool OnInit ()
219         {
220                 try {
221                         Config::FailedToLoad.connect (boost::bind (&App::config_failed_to_load, this));
222                         Config::Warning.connect (boost::bind (&App::config_warning, this, _1));
223
224                         SetAppName (_("DCP-o-matic Disk Writer"));
225
226                         if (!wxApp::OnInit()) {
227                                 return false;
228                         }
229
230 #ifdef DCPOMATIC_LINUX
231                         unsetenv ("UBUNTU_MENUPROXY");
232 #endif
233
234 #ifdef __WXOSX__
235                         ProcessSerialNumber serial;
236                         GetCurrentProcess (&serial);
237                         TransformProcessType (&serial, kProcessTransformToForegroundApplication);
238 #endif
239
240                         dcpomatic_setup_path_encoding ();
241
242                         /* Enable i18n; this will create a Config object
243                            to look for a force-configured language.  This Config
244                            object will be wrong, however, because dcpomatic_setup
245                            hasn't yet been called and there aren't any filters etc.
246                            set up yet.
247                         */
248                         dcpomatic_setup_i18n ();
249
250                         /* Set things up, including filters etc.
251                            which will now be internationalised correctly.
252                         */
253                         dcpomatic_setup ();
254
255                         /* Force the configuration to be re-loaded correctly next
256                            time it is needed.
257                         */
258                         Config::drop ();
259
260                         _frame = new DOMFrame (_("DCP-o-matic Disk Writer"));
261                         SetTopWindow (_frame);
262
263                         _frame->Show ();
264
265                         signal_manager = new wxSignalManager (this);
266                         Bind (wxEVT_IDLE, boost::bind (&App::idle, this, _1));
267                 }
268                 catch (exception& e)
269                 {
270                         error_dialog (0, wxString::Format ("DCP-o-matic could not start."), std_to_wx(e.what()));
271                 }
272
273                 return true;
274         }
275
276         void config_failed_to_load ()
277         {
278                 message_dialog (_frame, _("The existing configuration failed to load.  Default values will be used instead.  These may take a short time to create."));
279         }
280
281         void config_warning (string m)
282         {
283                 message_dialog (_frame, std_to_wx(m));
284         }
285
286         void idle (wxIdleEvent& ev)
287         {
288                 signal_manager->ui_idle ();
289                 ev.Skip ();
290         }
291
292         DOMFrame* _frame;
293 };
294
295 IMPLEMENT_APP (App)