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