No-op; fix GPL address and use the explicit-program-name version.
[dcpomatic.git] / src / lib / cross.cc
1 /*
2     Copyright (C) 2012-2015 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 "cross.h"
22 #include "compose.hpp"
23 #include "log.h"
24 #include "exceptions.h"
25 #include <boost/algorithm/string.hpp>
26 #ifdef DCPOMATIC_LINUX
27 #include <unistd.h>
28 #include <mntent.h>
29 #endif
30 #ifdef DCPOMATIC_WINDOWS
31 #include <windows.h>
32 #undef DATADIR
33 #include <shlwapi.h>
34 #endif
35 #ifdef DCPOMATIC_OSX
36 #include <sys/sysctl.h>
37 #include <mach-o/dyld.h>
38 #include <IOKit/pwr_mgt/IOPMLib.h>
39 #endif
40 #ifdef DCPOMATIC_POSIX
41 #include <sys/types.h>
42 #include <ifaddrs.h>
43 #include <netinet/in.h>
44 #include <arpa/inet.h>
45 #endif
46 #include <fstream>
47
48 #include "i18n.h"
49
50 #define LOG_GENERAL(...) log->log (String::compose (__VA_ARGS__), LogEntry::TYPE_GENERAL);
51 #define LOG_ERROR(...) log->log (String::compose (__VA_ARGS__), LogEntry::TYPE_ERROR);
52 #define LOG_ERROR_NC(...) log->log (__VA_ARGS__, LogEntry::TYPE_ERROR);
53
54 using std::pair;
55 using std::list;
56 using std::ifstream;
57 using std::string;
58 using std::wstring;
59 using std::make_pair;
60 using std::runtime_error;
61 using boost::shared_ptr;
62
63 /** @param s Number of seconds to sleep for */
64 void
65 dcpomatic_sleep (int s)
66 {
67 #ifdef DCPOMATIC_POSIX
68         sleep (s);
69 #endif
70 #ifdef DCPOMATIC_WINDOWS
71         Sleep (s * 1000);
72 #endif
73 }
74
75 /** @return A string of CPU information (model name etc.) */
76 string
77 cpu_info ()
78 {
79         string info;
80
81 #ifdef DCPOMATIC_LINUX
82         /* This use of ifstream is ok; the filename can never
83            be non-Latin
84         */
85         ifstream f ("/proc/cpuinfo");
86         while (f.good ()) {
87                 string l;
88                 getline (f, l);
89                 if (boost::algorithm::starts_with (l, "model name")) {
90                         string::size_type const c = l.find (':');
91                         if (c != string::npos) {
92                                 info = l.substr (c + 2);
93                         }
94                 }
95         }
96 #endif
97
98 #ifdef DCPOMATIC_OSX
99         char buffer[64];
100         size_t N = sizeof (buffer);
101         if (sysctlbyname ("machdep.cpu.brand_string", buffer, &N, 0, 0) == 0) {
102                 info = buffer;
103         }
104 #endif
105
106 #ifdef DCPOMATIC_WINDOWS
107         HKEY key;
108         if (RegOpenKeyEx (HKEY_LOCAL_MACHINE, L"HARDWARE\\DESCRIPTION\\System\\CentralProcessor\\0", 0, KEY_READ, &key) != ERROR_SUCCESS) {
109                 return info;
110         }
111
112         DWORD type;
113         DWORD data;
114         if (RegQueryValueEx (key, L"ProcessorNameString", 0, &type, 0, &data) != ERROR_SUCCESS) {
115                 return info;
116         }
117
118         if (type != REG_SZ) {
119                 return info;
120         }
121
122         wstring value (data / sizeof (wchar_t), L'\0');
123         if (RegQueryValueEx (key, L"ProcessorNameString", 0, 0, reinterpret_cast<LPBYTE> (&value[0]), &data) != ERROR_SUCCESS) {
124                 RegCloseKey (key);
125                 return info;
126         }
127
128         info = string (value.begin(), value.end());
129
130         RegCloseKey (key);
131
132 #endif
133
134         return info;
135 }
136
137 #ifdef DCPOMATIC_OSX
138 /** @return Path of the Contents directory in the .app */
139 boost::filesystem::path
140 app_contents ()
141 {
142         uint32_t size = 1024;
143         char buffer[size];
144         if (_NSGetExecutablePath (buffer, &size)) {
145                 throw runtime_error ("_NSGetExecutablePath failed");
146         }
147
148         boost::filesystem::path path (buffer);
149         path = boost::filesystem::canonical (path);
150         path = path.parent_path ();
151         path = path.parent_path ();
152         return path;
153 }
154 #endif
155
156 boost::filesystem::path
157 shared_path ()
158 {
159 #ifdef DCPOMATIC_LINUX
160         char const * p = getenv ("DCPOMATIC_LINUX_SHARE_PREFIX");
161         if (p) {
162                 return p;
163         }
164         return boost::filesystem::canonical (LINUX_SHARE_PREFIX);
165 #endif
166 #ifdef DCPOMATIC_WINDOWS
167         wchar_t dir[512];
168         GetModuleFileName (GetModuleHandle (0), dir, sizeof (dir));
169         PathRemoveFileSpec (dir);
170         boost::filesystem::path path = dir;
171         return path.parent_path();
172 #endif
173 #ifdef DCPOMATIC_OSX
174         return app_contents() / "Resources";
175 #endif
176 }
177
178 void
179 run_ffprobe (boost::filesystem::path content, boost::filesystem::path out, shared_ptr<Log> log)
180 {
181 #ifdef DCPOMATIC_WINDOWS
182         SECURITY_ATTRIBUTES security;
183         security.nLength = sizeof (security);
184         security.bInheritHandle = TRUE;
185         security.lpSecurityDescriptor = 0;
186
187         HANDLE child_stderr_read;
188         HANDLE child_stderr_write;
189         if (!CreatePipe (&child_stderr_read, &child_stderr_write, &security, 0)) {
190                 LOG_ERROR_NC ("ffprobe call failed (could not CreatePipe)");
191                 return;
192         }
193
194         wchar_t dir[512];
195         GetModuleFileName (GetModuleHandle (0), dir, sizeof (dir));
196         PathRemoveFileSpec (dir);
197         SetCurrentDirectory (dir);
198
199         STARTUPINFO startup_info;
200         ZeroMemory (&startup_info, sizeof (startup_info));
201         startup_info.cb = sizeof (startup_info);
202         startup_info.hStdError = child_stderr_write;
203         startup_info.dwFlags |= STARTF_USESTDHANDLES;
204
205         wchar_t command[512];
206         wcscpy (command, L"ffprobe.exe \"");
207
208         wchar_t file[512];
209         MultiByteToWideChar (CP_UTF8, 0, content.string().c_str(), -1, file, sizeof(file));
210         wcscat (command, file);
211
212         wcscat (command, L"\"");
213
214         PROCESS_INFORMATION process_info;
215         ZeroMemory (&process_info, sizeof (process_info));
216         if (!CreateProcess (0, command, 0, 0, TRUE, CREATE_NO_WINDOW, 0, 0, &startup_info, &process_info)) {
217                 LOG_ERROR_NC (N_("ffprobe call failed (could not CreateProcess)"));
218                 return;
219         }
220
221         FILE* o = fopen_boost (out, "w");
222         if (!o) {
223                 LOG_ERROR_NC (N_("ffprobe call failed (could not create output file)"));
224                 return;
225         }
226
227         CloseHandle (child_stderr_write);
228
229         while (true) {
230                 char buffer[512];
231                 DWORD read;
232                 if (!ReadFile(child_stderr_read, buffer, sizeof(buffer), &read, 0) || read == 0) {
233                         break;
234                 }
235                 fwrite (buffer, read, 1, o);
236         }
237
238         fclose (o);
239
240         WaitForSingleObject (process_info.hProcess, INFINITE);
241         CloseHandle (process_info.hProcess);
242         CloseHandle (process_info.hThread);
243         CloseHandle (child_stderr_read);
244 #endif
245
246 #ifdef DCPOMATIC_LINUX
247         string ffprobe = "ffprobe \"" + content.string() + "\" 2> \"" + out.string() + "\"";
248         LOG_GENERAL (N_("Probing with %1"), ffprobe);
249         system (ffprobe.c_str ());
250 #endif
251
252 #ifdef DCPOMATIC_OSX
253         boost::filesystem::path path = app_contents();
254         path /= "MacOS";
255         path /= "ffprobe";
256
257         string ffprobe = "\"" + path.string() + "\" \"" + content.string() + "\" 2> \"" + out.string() + "\"";
258         LOG_GENERAL (N_("Probing with %1"), ffprobe);
259         system (ffprobe.c_str ());
260 #endif
261 }
262
263 list<pair<string, string> >
264 mount_info ()
265 {
266         list<pair<string, string> > m;
267
268 #ifdef DCPOMATIC_LINUX
269         FILE* f = setmntent ("/etc/mtab", "r");
270         if (!f) {
271                 return m;
272         }
273
274         while (true) {
275                 struct mntent* mnt = getmntent (f);
276                 if (!mnt) {
277                         break;
278                 }
279
280                 m.push_back (make_pair (mnt->mnt_dir, mnt->mnt_type));
281         }
282
283         endmntent (f);
284 #endif
285
286         return m;
287 }
288
289 boost::filesystem::path
290 openssl_path ()
291 {
292 #ifdef DCPOMATIC_WINDOWS
293         wchar_t dir[512];
294         GetModuleFileName (GetModuleHandle (0), dir, sizeof (dir));
295         PathRemoveFileSpec (dir);
296
297         boost::filesystem::path path = dir;
298         path /= "openssl.exe";
299         return path;
300 #else
301         /* We assume that it's on the path for Linux and OS X */
302         return "openssl";
303 #endif
304
305 }
306
307 /* Apparently there is no way to create an ofstream using a UTF-8
308    filename under Windows.  We are hence reduced to using fopen
309    with this wrapper.
310 */
311 FILE *
312 fopen_boost (boost::filesystem::path p, string t)
313 {
314 #ifdef DCPOMATIC_WINDOWS
315         wstring w (t.begin(), t.end());
316         /* c_str() here should give a UTF-16 string */
317         return _wfopen (p.c_str(), w.c_str ());
318 #else
319         return fopen (p.c_str(), t.c_str ());
320 #endif
321 }
322
323 int
324 dcpomatic_fseek (FILE* stream, int64_t offset, int whence)
325 {
326 #ifdef DCPOMATIC_WINDOWS
327         return _fseeki64 (stream, offset, whence);
328 #else
329         return fseek (stream, offset, whence);
330 #endif
331 }
332
333 void
334 Waker::nudge ()
335 {
336 #ifdef DCPOMATIC_WINDOWS
337         SetThreadExecutionState (ES_SYSTEM_REQUIRED);
338 #endif
339 }
340
341 Waker::Waker ()
342 {
343 #ifdef DCPOMATIC_OSX
344         /* We should use this */
345         // IOPMAssertionCreateWithName (kIOPMAssertionTypeNoIdleSleep, kIOPMAssertionLevelOn, CFSTR ("Encoding DCP"), &_assertion_id);
346         /* but it's not available on 10.5, so we use this */
347         IOPMAssertionCreate (kIOPMAssertionTypeNoIdleSleep, kIOPMAssertionLevelOn, &_assertion_id);
348 #endif
349 }
350
351 Waker::~Waker ()
352 {
353 #ifdef DCPOMATIC_OSX
354         IOPMAssertionRelease (_assertion_id);
355 #endif
356 }
357
358 void
359 start_batch_converter (boost::filesystem::path dcpomatic)
360 {
361 #if defined(DCPOMATIC_LINUX) || defined(DCPOMATIC_WINDOWS)
362         boost::filesystem::path batch = dcpomatic.parent_path() / "dcpomatic2_batch";
363 #endif
364
365 #ifdef DCPOMATIC_OSX
366         boost::filesystem::path batch = dcpomatic.parent_path ();
367         batch = batch.parent_path (); // MacOS
368         batch = batch.parent_path (); // Contents
369         batch = batch.parent_path (); // DCP-o-matic.app
370         batch = batch.parent_path (); // Applications
371         batch /= "DCP-o-matic\\ 2\\ Batch\\ Converter.app";
372         batch /= "Contents";
373         batch /= "MacOS";
374         batch /= "dcpomatic2_batch";
375 #endif
376
377 #if defined(DCPOMATIC_LINUX) || defined(DCPOMATIC_OSX)
378         pid_t pid = fork ();
379         if (pid == 0) {
380                 std::cout << "start " << batch << " from " << dcpomatic << "\n";
381                 int const r = system (batch.string().c_str());
382                 exit (WEXITSTATUS (r));
383         }
384 #endif
385
386 #ifdef DCPOMATIC_WINDOWS
387         STARTUPINFO startup_info;
388         ZeroMemory (&startup_info, sizeof (startup_info));
389         startup_info.cb = sizeof (startup_info);
390
391         PROCESS_INFORMATION process_info;
392         ZeroMemory (&process_info, sizeof (process_info));
393
394         wchar_t cmd[512];
395         MultiByteToWideChar (CP_UTF8, 0, batch.string().c_str(), -1, cmd, sizeof(cmd));
396         CreateProcess (0, cmd, 0, 0, FALSE, 0, 0, 0, &startup_info, &process_info);
397 #endif
398 }