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