89a9c5bb66df62ccf2eec05867d054c5fc843b30
[dcpomatic.git] / src / lib / cross_linux.cc
1 /*
2     Copyright (C) 2012-2021 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
22 #include "compose.hpp"
23 #include "config.h"
24 #include "cross.h"
25 #include "dcpomatic_log.h"
26 #include "dcpomatic_log.h"
27 #include "exceptions.h"
28 #include "log.h"
29 #include <dcp/raw_convert.h>
30 #include <dcp/warnings.h>
31 #include <glib.h>
32 LIBDCP_DISABLE_WARNINGS
33 extern "C" {
34 #include <libavformat/avio.h>
35 }
36 LIBDCP_ENABLE_WARNINGS
37 #include <boost/algorithm/string.hpp>
38 #if BOOST_VERSION >= 106100
39 #include <boost/dll/runtime_symbol_info.hpp>
40 #endif
41 #include <unistd.h>
42 #include <mntent.h>
43 #include <sys/types.h>
44 #include <sys/mount.h>
45 #include <ifaddrs.h>
46 #include <netinet/in.h>
47 #include <arpa/inet.h>
48 #include <fstream>
49
50 #include "i18n.h"
51
52
53 using std::cerr;
54 using std::cout;
55 using std::ifstream;
56 using std::list;
57 using std::make_pair;
58 using std::pair;
59 using std::string;
60 using std::vector;
61 using boost::optional;
62
63
64 /** @param s Number of seconds to sleep for */
65 void
66 dcpomatic_sleep_seconds (int s)
67 {
68         sleep (s);
69 }
70
71
72 void
73 dcpomatic_sleep_milliseconds (int ms)
74 {
75         usleep (ms * 1000);
76 }
77
78
79 /** @return A string of CPU information (model name etc.) */
80 string
81 cpu_info ()
82 {
83         string info;
84
85         /* This use of ifstream is ok; the filename can never
86            be non-Latin
87         */
88         ifstream f ("/proc/cpuinfo");
89         while (f.good ()) {
90                 string l;
91                 getline (f, l);
92                 if (boost::algorithm::starts_with (l, "model name")) {
93                         string::size_type const c = l.find (':');
94                         if (c != string::npos) {
95                                 info = l.substr (c + 2);
96                         }
97                 }
98         }
99
100         return info;
101 }
102
103
104 boost::filesystem::path
105 resources_path ()
106 {
107         return directory_containing_executable().parent_path() / "share" / "dcpomatic2";
108 }
109
110
111 boost::filesystem::path
112 libdcp_resources_path ()
113 {
114         if (auto appdir = getenv("APPDIR")) {
115                 return boost::filesystem::path(appdir) / "usr" / "share" / "libdcp";
116         }
117         return boost::filesystem::canonical(LINUX_SHARE_PREFIX) / "libdcp";
118 }
119
120
121 void
122 run_ffprobe (boost::filesystem::path content, boost::filesystem::path out)
123 {
124         string ffprobe = "ffprobe \"" + content.string() + "\" 2> \"" + out.string() + "\"";
125         LOG_GENERAL (N_("Probing with %1"), ffprobe);
126         int const r = system (ffprobe.c_str());
127         if (r == -1 || (WIFEXITED(r) && WEXITSTATUS(r) != 0)) {
128                 LOG_GENERAL (N_("Could not run ffprobe (system returned %1"), r);
129         }
130 }
131
132
133 list<pair<string, string>>
134 mount_info ()
135 {
136         list<pair<string, string>> m;
137
138         auto f = setmntent ("/etc/mtab", "r");
139         if (!f) {
140                 return m;
141         }
142
143         while (true) {
144                 struct mntent* mnt = getmntent (f);
145                 if (!mnt) {
146                         break;
147                 }
148
149                 m.push_back (make_pair (mnt->mnt_dir, mnt->mnt_type));
150         }
151
152         endmntent (f);
153
154         return m;
155 }
156
157
158 boost::filesystem::path
159 directory_containing_executable ()
160 {
161 #if BOOST_VERSION >= 106100
162         return boost::dll::program_location().parent_path();
163 #else
164         char buffer[PATH_MAX];
165         ssize_t N = readlink ("/proc/self/exe", buffer, PATH_MAX);
166         return boost::filesystem::path(string(buffer, N)).parent_path();
167 #endif
168 }
169
170
171 boost::filesystem::path
172 openssl_path ()
173 {
174         auto p = directory_containing_executable() / "dcpomatic2_openssl";
175         if (boost::filesystem::is_regular_file(p)) {
176                 return p;
177         }
178
179         return "dcpomatic2_openssl";
180 }
181
182
183 #ifdef DCPOMATIC_DISK
184 boost::filesystem::path
185 disk_writer_path ()
186 {
187         return directory_containing_executable() / "dcpomatic2_disk_writer";
188 }
189 #endif
190
191
192 void
193 Waker::nudge ()
194 {
195
196 }
197
198
199 Waker::Waker ()
200 {
201
202 }
203
204
205 Waker::~Waker ()
206 {
207
208 }
209
210
211 void
212 start_tool (string executable)
213 {
214         auto batch = directory_containing_executable() / executable;
215
216         pid_t pid = fork ();
217         if (pid == 0) {
218                 int const r = system (batch.string().c_str());
219                 exit (WEXITSTATUS (r));
220         }
221 }
222
223
224 void
225 start_batch_converter ()
226 {
227         start_tool ("dcpomatic2_batch");
228 }
229
230
231 void
232 start_player ()
233 {
234         start_tool ("dcpomatic2_player");
235 }
236
237
238 uint64_t
239 thread_id ()
240 {
241         return (uint64_t) pthread_self ();
242 }
243
244
245 int
246 avio_open_boost (AVIOContext** s, boost::filesystem::path file, int flags)
247 {
248         return avio_open (s, file.c_str(), flags);
249 }
250
251
252 boost::filesystem::path
253 home_directory ()
254 {
255         return getenv("HOME");
256 }
257
258
259 /** @return true if this process is a 32-bit one running on a 64-bit-capable OS */
260 bool
261 running_32_on_64 ()
262 {
263         /* I'm assuming nobody does this on Linux */
264         return false;
265 }
266
267
268 static
269 vector<pair<string, string>>
270 get_mounts (string prefix)
271 {
272         vector<pair<string, string>> mounts;
273
274         std::ifstream f("/proc/mounts");
275         string line;
276         while (f.good()) {
277                 getline(f, line);
278                 vector<string> bits;
279                 boost::algorithm::split (bits, line, boost::is_any_of(" "));
280                 if (bits.size() > 1 && boost::algorithm::starts_with(bits[0], prefix)) {
281                         boost::algorithm::replace_all (bits[1], "\\040", " ");
282                         mounts.push_back(make_pair(bits[0], bits[1]));
283                         LOG_DISK("Found mounted device %1 from prefix %2", bits[0], prefix);
284                 }
285         }
286
287         return mounts;
288 }
289
290
291 vector<Drive>
292 Drive::get ()
293 {
294         vector<Drive> drives;
295
296         using namespace boost::filesystem;
297         auto mounted_devices = get_mounts("/dev/");
298
299         for (auto i: directory_iterator("/sys/block")) {
300                 string const name = i.path().filename().string();
301                 path device_type_file("/sys/block/" + name + "/device/type");
302                 optional<string> device_type;
303                 if (exists(device_type_file)) {
304                         device_type = dcp::file_to_string (device_type_file);
305                         boost::trim(*device_type);
306                 }
307                 /* Device type 5 is "SCSI_TYPE_ROM" in blkdev.h; seems usually to be a CD/DVD drive */
308                 if (!boost::algorithm::starts_with(name, "loop") && (!device_type || *device_type != "5")) {
309                         uint64_t const size = dcp::raw_convert<uint64_t>(dcp::file_to_string(i / "size")) * 512;
310                         if (size == 0) {
311                                 continue;
312                         }
313                         optional<string> vendor;
314                         try {
315                                 vendor = dcp::file_to_string("/sys/block/" + name + "/device/vendor");
316                                 boost::trim(*vendor);
317                         } catch (...) {}
318                         optional<string> model;
319                         try {
320                                 model = dcp::file_to_string("/sys/block/" + name + "/device/model");
321                                 boost::trim(*model);
322                         } catch (...) {}
323                         vector<boost::filesystem::path> mount_points;
324                         for (auto const& j: mounted_devices) {
325                                 if (boost::algorithm::starts_with(j.first, "/dev/" + name)) {
326                                         mount_points.push_back (j.second);
327                                 }
328                         }
329                         drives.push_back(Drive("/dev/" + name, mount_points, size, vendor, model));
330                         LOG_DISK_NC(drives.back().log_summary());
331                 }
332         }
333
334         return drives;
335 }
336
337
338 bool
339 Drive::unmount ()
340 {
341         for (auto i: _mount_points) {
342                 int const r = umount(i.string().c_str());
343                 LOG_DISK("Tried to unmount %1 and got %2 and %3", i.string(), r, errno);
344                 if (r == -1) {
345                         return false;
346                 }
347         }
348         return true;
349 }
350
351
352 boost::filesystem::path
353 config_path (optional<string> version)
354 {
355         boost::filesystem::path p;
356         p /= g_get_user_config_dir ();
357         p /= "dcpomatic2";
358         if (version) {
359                 p /= *version;
360         }
361         return p;
362 }
363
364
365 void
366 disk_write_finished ()
367 {
368
369 }
370
371
372 string
373 dcpomatic::get_process_id ()
374 {
375         return dcp::raw_convert<string>(getpid());
376 }
377
378
379 bool
380 show_in_file_manager (boost::filesystem::path dir, boost::filesystem::path)
381 {
382         int r = system ("which nautilus");
383         if (WEXITSTATUS(r) == 0) {
384                 r = system (String::compose("nautilus \"%1\"", dir.string()).c_str());
385                 return static_cast<bool>(WEXITSTATUS(r));
386         } else {
387                 int r = system ("which konqueror");
388                 if (WEXITSTATUS(r) == 0) {
389                         r = system (String::compose("konqueror \"%1\"", dir.string()).c_str());
390                         return static_cast<bool>(WEXITSTATUS(r));
391                 }
392         }
393
394         return true;
395 }
396