Various bits related to subtitle font handling, particularly copying fonts to the...
[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__), Log::TYPE_GENERAL);
50 #define LOG_ERROR(...) log->log (String::compose (__VA_ARGS__), Log::TYPE_ERROR);
51 #define LOG_ERROR_NC(...) log->log (__VA_ARGS__, Log::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         return boost::filesystem::canonical (LINUX_SHARE_PREFIX);
159 #endif
160 #ifdef DCPOMATIC_WINDOWS
161         wchar_t dir[512];
162         GetModuleFileName (GetModuleHandle (0), dir, sizeof (dir));
163         PathRemoveFileSpec (dir);
164         return dir.parent_path();
165 #endif
166 #ifdef DCPOMATIC_OSX
167         return app_contents();
168 #endif  
169 }
170
171 void
172 run_ffprobe (boost::filesystem::path content, boost::filesystem::path out, shared_ptr<Log> log)
173 {
174 #ifdef DCPOMATIC_WINDOWS
175         SECURITY_ATTRIBUTES security;
176         security.nLength = sizeof (security);
177         security.bInheritHandle = TRUE;
178         security.lpSecurityDescriptor = 0;
179
180         HANDLE child_stderr_read;
181         HANDLE child_stderr_write;
182         if (!CreatePipe (&child_stderr_read, &child_stderr_write, &security, 0)) {
183                 LOG_ERROR_NC ("ffprobe call failed (could not CreatePipe)");
184                 return;
185         }
186
187         wchar_t dir[512];
188         GetModuleFileName (GetModuleHandle (0), dir, sizeof (dir));
189         PathRemoveFileSpec (dir);
190         SetCurrentDirectory (dir);
191
192         STARTUPINFO startup_info;
193         ZeroMemory (&startup_info, sizeof (startup_info));
194         startup_info.cb = sizeof (startup_info);
195         startup_info.hStdError = child_stderr_write;
196         startup_info.dwFlags |= STARTF_USESTDHANDLES;
197
198         wchar_t command[512];
199         wcscpy (command, L"ffprobe.exe \"");
200
201         wchar_t file[512];
202         MultiByteToWideChar (CP_UTF8, 0, content.string().c_str(), -1, file, sizeof(file));
203         wcscat (command, file);
204
205         wcscat (command, L"\"");
206
207         PROCESS_INFORMATION process_info;
208         ZeroMemory (&process_info, sizeof (process_info));
209         if (!CreateProcess (0, command, 0, 0, TRUE, CREATE_NO_WINDOW, 0, 0, &startup_info, &process_info)) {
210                 LOG_ERROR_NC (N_("ffprobe call failed (could not CreateProcess)"));
211                 return;
212         }
213
214         FILE* o = fopen_boost (out, "w");
215         if (!o) {
216                 LOG_ERROR_NC (N_("ffprobe call failed (could not create output file)"));
217                 return;
218         }
219
220         CloseHandle (child_stderr_write);
221
222         while (true) {
223                 char buffer[512];
224                 DWORD read;
225                 if (!ReadFile(child_stderr_read, buffer, sizeof(buffer), &read, 0) || read == 0) {
226                         break;
227                 }
228                 fwrite (buffer, read, 1, o);
229         }
230
231         fclose (o);
232
233         WaitForSingleObject (process_info.hProcess, INFINITE);
234         CloseHandle (process_info.hProcess);
235         CloseHandle (process_info.hThread);
236         CloseHandle (child_stderr_read);
237 #endif
238
239 #ifdef DCPOMATIC_LINUX 
240         string ffprobe = "ffprobe \"" + content.string() + "\" 2> \"" + out.string() + "\"";
241         LOG_GENERAL (N_("Probing with %1"), ffprobe);
242         system (ffprobe.c_str ());
243 #endif
244
245 #ifdef DCPOMATIC_OSX
246         boost::filesystem::path path = app_contents();
247         path /= "MacOS";
248         path /= "ffprobe";
249         
250         string ffprobe = path.string() + " \"" + content.string() + "\" 2> \"" + out.string() + "\"";
251         LOG_GENERAL (N_("Probing with %1"), ffprobe);
252         system (ffprobe.c_str ());
253 #endif
254 }
255
256 list<pair<string, string> >
257 mount_info ()
258 {
259         list<pair<string, string> > m;
260         
261 #ifdef DCPOMATIC_LINUX
262         FILE* f = setmntent ("/etc/mtab", "r");
263         if (!f) {
264                 return m;
265         }
266         
267         while (true) {
268                 struct mntent* mnt = getmntent (f);
269                 if (!mnt) {
270                         break;
271                 }
272
273                 m.push_back (make_pair (mnt->mnt_dir, mnt->mnt_type));
274         }
275
276         endmntent (f);
277 #endif
278
279         return m;
280 }
281
282 boost::filesystem::path
283 openssl_path ()
284 {
285 #ifdef DCPOMATIC_WINDOWS
286         wchar_t dir[512];
287         GetModuleFileName (GetModuleHandle (0), dir, sizeof (dir));
288         PathRemoveFileSpec (dir);
289         
290         boost::filesystem::path path = dir;
291         path /= "openssl.exe";
292         return path;
293 #else   
294         /* We assume that it's on the path for Linux and OS X */
295         return "openssl";
296 #endif
297
298 }
299
300 /* Apparently there is no way to create an ofstream using a UTF-8
301    filename under Windows.  We are hence reduced to using fopen
302    with this wrapper.
303 */
304 FILE *
305 fopen_boost (boost::filesystem::path p, string t)
306 {
307 #ifdef DCPOMATIC_WINDOWS
308         wstring w (t.begin(), t.end());
309         /* c_str() here should give a UTF-16 string */
310         return _wfopen (p.c_str(), w.c_str ());
311 #else
312         return fopen (p.c_str(), t.c_str ());
313 #endif
314 }
315
316 int
317 dcpomatic_fseek (FILE* stream, int64_t offset, int whence)
318 {
319 #ifdef DCPOMATIC_WINDOWS
320         return _fseeki64 (stream, offset, whence);
321 #else   
322         return fseek (stream, offset, whence);
323 #endif  
324 }
325
326 void
327 Waker::nudge ()
328 {
329 #ifdef DCPOMATIC_WINDOWS
330         SetThreadExecutionState (ES_SYSTEM_REQUIRED);
331 #endif  
332 }
333
334 Waker::Waker ()
335 {
336 #ifdef DCPOMATIC_OSX
337         /* We should use this */
338         // IOPMAssertionCreateWithName (kIOPMAssertionTypeNoIdleSleep, kIOPMAssertionLevelOn, CFSTR ("Encoding DCP"), &_assertion_id);
339         /* but it's not available on 10.5, so we use this */
340         IOPMAssertionCreate (kIOPMAssertionTypeNoIdleSleep, kIOPMAssertionLevelOn, &_assertion_id);
341 #endif  
342 }
343
344 Waker::~Waker ()
345 {
346 #ifdef DCPOMATIC_OSX    
347         IOPMAssertionRelease (_assertion_id);
348 #endif  
349 }