1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
|
/*
Copyright (C) 2012-2021 Carl Hetherington <cth@carlh.net>
This file is part of DCP-o-matic.
DCP-o-matic is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
DCP-o-matic is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with DCP-o-matic. If not, see <http://www.gnu.org/licenses/>.
*/
#include "config.h"
#include "cross.h"
#include "dcpomatic_log.h"
#include "exceptions.h"
#include "log.h"
#include "util.h"
#include "variant.h"
#include <dcp/filesystem.h>
#include <glib.h>
#include <boost/algorithm/string.hpp>
#include <boost/regex.hpp>
#if BOOST_VERSION >= 106100
#include <boost/dll/runtime_symbol_info.hpp>
#endif
#include <ApplicationServices/ApplicationServices.h>
#include <sys/sysctl.h>
#include <mach-o/dyld.h>
#include <IOKit/pwr_mgt/IOPMLib.h>
#include <IOKit/storage/IOMedia.h>
#include <DiskArbitration/DADisk.h>
#include <DiskArbitration/DiskArbitration.h>
#include <CoreFoundation/CFURL.h>
#include <sys/types.h>
#include <ifaddrs.h>
#include <netinet/in.h>
#include <arpa/inet.h>
#include <fstream>
#include <cstring>
#include "i18n.h"
using std::pair;
using std::list;
using std::ifstream;
using std::string;
using std::make_pair;
using std::vector;
using std::cerr;
using std::cout;
using std::runtime_error;
using std::map;
using std::shared_ptr;
using boost::optional;
using std::function;
/** @return A string of CPU information (model name etc.) */
string
cpu_info()
{
string info;
char buffer[64];
size_t N = sizeof(buffer);
if (sysctlbyname("machdep.cpu.brand_string", buffer, &N, 0, 0) == 0) {
info = buffer;
}
return info;
}
boost::filesystem::path
directory_containing_executable()
{
return dcp::filesystem::canonical(boost::dll::program_location()).parent_path();
}
boost::filesystem::path
resources_path()
{
return directory_containing_executable().parent_path() / "Resources";
}
boost::filesystem::path
libdcp_resources_path()
{
if (running_tests) {
return directory_containing_executable();
} else {
return resources_path();
}
}
void
run_ffprobe(boost::filesystem::path content, boost::filesystem::path out, bool err, string args)
{
auto path = directory_containing_executable() / "ffprobe";
if (!dcp::filesystem::exists(path)) {
/* This is a hack but we need ffprobe during tests */
path = "/Users/ci/workspace/bin/ffprobe";
}
string const redirect = err ? "2>" : ">";
auto const ffprobe = fmt::format("\"{}\" {} \"{}\" {} \"{}\"", path.string(), args.empty() ? " " : args, content.string(), redirect, out.string());
LOG_GENERAL(N_("Probing with {}"), ffprobe);
system(ffprobe.c_str());
}
list<pair<string, string>>
mount_info()
{
return {};
}
boost::filesystem::path
openssl_path()
{
return directory_containing_executable() / "openssl";
}
#ifdef DCPOMATIC_DISK
/* Note: this isn't actually used at the moment as the disk writer is started as a service */
boost::filesystem::path
disk_writer_path()
{
return directory_containing_executable() / "dcpomatic2_disk_writer";
}
#endif
void
Waker::nudge()
{
}
Waker::Waker(Reason reason)
{
boost::mutex::scoped_lock lm(_mutex);
switch (reason) {
case Reason::ENCODING:
IOPMAssertionCreateWithName(kIOPMAssertionTypeNoIdleSleep, kIOPMAssertionLevelOn, CFSTR("Encoding DCP"), &_assertion_id);
break;
case Reason::PLAYING:
IOPMAssertionCreateWithName(kIOPMAssertionTypeNoDisplaySleep, kIOPMAssertionLevelOn, CFSTR("Playing DCP"), &_assertion_id);
break;
}
}
Waker::~Waker()
{
boost::mutex::scoped_lock lm(_mutex);
IOPMAssertionRelease(_assertion_id);
}
void
start_tool(string executable, string app)
{
boost::algorithm::replace_all(app, " ", "\\ ");
auto exe_path = directory_containing_executable();
exe_path = exe_path.parent_path(); // Contents
exe_path = exe_path.parent_path(); // DCP-o-matic 2.app
exe_path = exe_path.parent_path(); // Applications
exe_path /= app;
exe_path /= "Contents";
exe_path /= "MacOS";
exe_path /= executable;
pid_t pid = fork();
if (pid == 0) {
LOG_GENERAL("start_tool {} {} with path {}", executable, app, exe_path.string());
int const r = system(exe_path.string().c_str());
exit(WEXITSTATUS(r));
} else if (pid == -1) {
LOG_ERROR("Fork failed in start_tool");
}
}
void
start_batch_converter()
{
start_tool("dcpomatic2_batch", variant::dcpomatic_batch_converter_app());
}
void
start_player()
{
start_tool("dcpomatic2_player", variant::dcpomatic_player_app());
}
struct OSXDisk
{
std::string bsd_name;
std::string device;
boost::optional<std::string> vendor;
boost::optional<std::string> model;
bool mounted;
unsigned long size;
bool system;
bool writeable;
bool partition;
};
static optional<string>
get_vendor(CFDictionaryRef& description)
{
void const* str = CFDictionaryGetValue(description, kDADiskDescriptionDeviceVendorKey);
if (!str) {
return {};
}
auto c_str = CFStringGetCStringPtr((CFStringRef) str, kCFStringEncodingUTF8);
if (!c_str) {
return {};
}
string s(c_str);
boost::algorithm::trim(s);
return s;
}
static optional<string>
get_model(CFDictionaryRef& description)
{
void const* str = CFDictionaryGetValue(description, kDADiskDescriptionDeviceModelKey);
if (!str) {
return {};
}
auto c_str = CFStringGetCStringPtr((CFStringRef) str, kCFStringEncodingUTF8);
if (!c_str) {
return {};
}
string s(c_str);
boost::algorithm::trim(s);
return s;
}
static
bool
is_mounted(CFDictionaryRef& description)
{
auto volume_path_key = (CFURLRef) CFDictionaryGetValue(description, kDADiskDescriptionVolumePathKey);
if (!volume_path_key) {
return false;
}
char mount_path_buffer[1024];
return CFURLGetFileSystemRepresentation(volume_path_key, false, (UInt8 *) mount_path_buffer, sizeof(mount_path_buffer));
}
static bool
get_bool(CFDictionaryRef& description, void const* key)
{
auto value = CFDictionaryGetValue(description, key);
if (!value) {
return false;
}
return CFBooleanGetValue(reinterpret_cast<CFBooleanRef>(value));
}
static void
disk_appeared(DADiskRef disk, void* context)
{
auto bsd_name = DADiskGetBSDName(disk);
if (!bsd_name) {
LOG_DISK("Disk with no BSDName appeared");
return;
}
LOG_DISK("{} appeared", bsd_name);
OSXDisk this_disk;
this_disk.bsd_name = bsd_name;
this_disk.device = string("/dev/") + this_disk.bsd_name;
LOG_DISK("Device is {}", this_disk.device);
CFDictionaryRef description = DADiskCopyDescription(disk);
this_disk.vendor = get_vendor(description);
this_disk.model = get_model(description);
LOG_DISK("Vendor/model: {} {}", this_disk.vendor.get_value_or("[none]"), this_disk.model.get_value_or("[none]"));
this_disk.mounted = is_mounted(description);
auto media_size_cstr = CFDictionaryGetValue(description, kDADiskDescriptionMediaSizeKey);
if (!media_size_cstr) {
LOG_DISK("Could not read media size");
return;
}
this_disk.system = get_bool(description, kDADiskDescriptionDeviceInternalKey) && !get_bool(description, kDADiskDescriptionMediaRemovableKey);
this_disk.writeable = get_bool(description, kDADiskDescriptionMediaWritableKey);
this_disk.partition = string(this_disk.bsd_name).find("s", 5) != std::string::npos;
LOG_DISK(
"{} {} {} {} {}",
this_disk.bsd_name,
this_disk.system ? "system" : "non-system",
this_disk.writeable ? "writeable" : "read-only",
this_disk.partition ? "partition" : "drive",
this_disk.mounted ? "mounted" : "not mounted"
);
CFNumberGetValue((CFNumberRef) media_size_cstr, kCFNumberLongType, &this_disk.size);
CFRelease(description);
reinterpret_cast<vector<OSXDisk>*>(context)->push_back(this_disk);
}
vector<Drive>
Drive::get()
{
using namespace boost::algorithm;
vector<OSXDisk> disks;
LOG_DISK("Drive::get() starts");
auto session = DASessionCreate(kCFAllocatorDefault);
if (!session) {
return {};
}
LOG_DISK("Drive::get() has session");
DARegisterDiskAppearedCallback(session, NULL, disk_appeared, &disks);
auto run_loop = CFRunLoopGetCurrent();
DASessionScheduleWithRunLoop(session, run_loop, kCFRunLoopDefaultMode);
CFRunLoopStop(run_loop);
CFRunLoopRunInMode(kCFRunLoopDefaultMode, 0.05, 0);
DAUnregisterCallback(session, (void *) disk_appeared, &disks);
CFRelease(session);
/* Find all the drives (not partitions) - these OSXDisks can be either */
vector<Drive> drives;
for (auto const& disk: disks) {
if (!disk.system && !disk.partition && disk.writeable) {
LOG_DISK("Have a non-system writeable drive: {}", disk.device);
drives.push_back({disk.device, disk.mounted, disk.size, disk.vendor, disk.model});
}
}
/* Find mounted partitions and mark their drives mounted */
for (auto const& disk: disks) {
if (!disk.system && disk.partition && disk.mounted) {
LOG_DISK("Have a mounted non-system partition: {} ({})", disk.device, disk.bsd_name);
if (boost::algorithm::starts_with(disk.bsd_name, "disk")) {
auto const second_s = disk.bsd_name.find('s', 4);
if (second_s != std::string::npos) {
/* We have a bsd_name of the form disk...s */
auto const drive_device = "/dev/" + disk.bsd_name.substr(0, second_s);
LOG_DISK("This belongs to the drive {}", drive_device);
auto iter = std::find_if(drives.begin(), drives.end(), [drive_device](Drive const& drive) {
return drive.device() == drive_device;
});
if (iter != drives.end()) {
LOG_DISK("Marking {} as mounted", drive_device);
iter->set_mounted();
}
}
}
}
}
LOG_DISK("Drive::get() found {} drives:", drives.size());
for (auto const& drive: drives) {
LOG_DISK("{} {} mounted={}", drive.description(), drive.device(), drive.mounted() ? "yes" : "no");
}
return drives;
}
boost::filesystem::path
config_path(optional<string> version)
{
boost::filesystem::path p;
p /= g_get_home_dir();
p /= "Library";
p /= "Preferences";
p /= "com.dcpomatic";
p /= "2";
if (version) {
p /= *version;
}
return p;
}
struct UnmountState
{
bool success = false;
bool callback = false;
};
void done_callback(DADiskRef, DADissenterRef dissenter, void* context)
{
LOG_DISK("Unmount finished");
auto state = reinterpret_cast<UnmountState*>(context);
state->callback = true;
if (dissenter) {
LOG_DISK("Error: {}", DADissenterGetStatus(dissenter));
} else {
LOG_DISK("Successful");
state->success = true;
}
}
bool
Drive::unmount()
{
LOG_DISK("Unmount operation started");
auto session = DASessionCreate(kCFAllocatorDefault);
if (!session) {
return false;
}
auto disk = DADiskCreateFromBSDName(kCFAllocatorDefault, session, _device.c_str());
if (!disk) {
return false;
}
LOG_DISK("Requesting unmount of {} from {}", _device, thread_id());
UnmountState state;
DADiskUnmount(disk, kDADiskUnmountOptionWhole, &done_callback, &state);
CFRelease(disk);
CFRunLoopRef run_loop = CFRunLoopGetCurrent();
DASessionScheduleWithRunLoop(session, run_loop, kCFRunLoopDefaultMode);
CFRunLoopStop(run_loop);
CFRunLoopRunInMode(kCFRunLoopDefaultMode, 5, 0);
CFRelease(session);
if (!state.callback) {
LOG_DISK("End of unmount: timeout");
} else {
LOG_DISK("End of unmount: {}", state.success ? "success" : "failure");
}
return state.success;
}
void
disk_write_finished()
{
}
void
make_foreground_application()
{
ProcessSerialNumber serial;
LIBDCP_DISABLE_WARNINGS
GetCurrentProcess(&serial);
LIBDCP_ENABLE_WARNINGS
TransformProcessType(&serial, kProcessTransformToForegroundApplication);
}
bool
show_in_file_manager(boost::filesystem::path, boost::filesystem::path select)
{
int r = system(fmt::format("open -R \"{}\"", select.string()).c_str());
return static_cast<bool>(WEXITSTATUS(r));
}
|