preferences.cpp
22.1 KB
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
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
/* akvirtualcamera, virtual camera for Mac and Windows.
* Copyright (C) 2020 Gonzalo Exequiel Pedone
*
* akvirtualcamera 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 3 of the License, or
* (at your option) any later version.
*
* akvirtualcamera 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 akvirtualcamera. If not, see <http://www.gnu.org/licenses/>.
*
* Web-Site: http://webcamoid.github.io/
*/
#include <algorithm>
#include <cstring>
#include <CoreFoundation/CoreFoundation.h>
#include "preferences.h"
#include "utils.h"
#include "VCamUtils/src/videoformat.h"
#include "VCamUtils/src/logger.h"
#define PREFERENCES_ID CFSTR(CMIO_ASSISTANT_NAME)
#define AKVCAM_SERVICETIMEOUT_DEFAULT 10
std::vector<std::string> AkVCam::Preferences::keys()
{
AkLogFunction();
std::vector<std::string> keys;
auto cfKeys = CFPreferencesCopyKeyList(PREFERENCES_ID,
kCFPreferencesCurrentUser,
kCFPreferencesAnyHost);
if (cfKeys) {
auto size = CFArrayGetCount(cfKeys);
for (CFIndex i = 0; i < size; i++) {
std::string key;
auto cfKey = CFStringRef(CFArrayGetValueAtIndex(cfKeys, i));
auto len = size_t(CFStringGetLength(cfKey));
auto data = CFStringGetCStringPtr(cfKey, kCFStringEncodingUTF8);
if (data) {
key = std::string(data, len);
} else {
auto maxLen =
CFStringGetMaximumSizeForEncoding(len, kCFStringEncodingUTF8) + 1;
auto cstr = new char[maxLen];
memset(cstr, 0, maxLen);
if (CFStringGetCString(CFStringRef(cfKey),
cstr,
maxLen,
kCFStringEncodingUTF8)) {
key = std::string(cstr, len);
}
delete [] cstr;
}
if (!key.empty())
keys.push_back(key);
}
CFRelease(cfKeys);
}
AkLogInfo() << "Keys: " << keys.size() << std::endl;
std::sort(keys.begin(), keys.end());
for (auto &key: keys)
AkLogInfo() << " " << key << std::endl;
return keys;
}
void AkVCam::Preferences::write(const std::string &key,
const std::string &value)
{
AkLogFunction();
AkLogInfo() << "Writing: " << key << " = " << value << std::endl;
auto cfKey = CFStringCreateWithCString(kCFAllocatorDefault,
key.c_str(),
kCFStringEncodingUTF8);
auto cfValue = CFStringCreateWithCString(kCFAllocatorDefault,
value.c_str(),
kCFStringEncodingUTF8);
CFPreferencesSetValue(cfKey,
CFTypeRef(cfValue),
PREFERENCES_ID,
kCFPreferencesCurrentUser,
kCFPreferencesAnyHost);
CFRelease(cfValue);
CFRelease(cfKey);
}
void AkVCam::Preferences::write(const std::string &key, int value)
{
AkLogFunction();
AkLogInfo() << "Writing: " << key << " = " << value << std::endl;
auto cfKey = CFStringCreateWithCString(kCFAllocatorDefault,
key.c_str(),
kCFStringEncodingUTF8);
auto cfValue = CFNumberCreate(kCFAllocatorDefault,
kCFNumberIntType,
&value);
CFPreferencesSetValue(cfKey,
CFTypeRef(cfValue),
PREFERENCES_ID,
kCFPreferencesCurrentUser,
kCFPreferencesAnyHost);
CFRelease(cfValue);
CFRelease(cfKey);
}
void AkVCam::Preferences::write(const std::string &key, double value)
{
AkLogFunction();
AkLogInfo() << "Writing: " << key << " = " << value << std::endl;
auto cfKey = CFStringCreateWithCString(kCFAllocatorDefault,
key.c_str(),
kCFStringEncodingUTF8);
auto cfValue = CFNumberCreate(kCFAllocatorDefault,
kCFNumberDoubleType,
&value);
CFPreferencesSetValue(cfKey,
CFTypeRef(cfValue),
PREFERENCES_ID,
kCFPreferencesCurrentUser,
kCFPreferencesAnyHost);
CFRelease(cfValue);
CFRelease(cfKey);
}
void AkVCam::Preferences::write(const std::string &key,
std::vector<std::string> &value)
{
AkLogFunction();
write(key, join(value, ","));
}
std::string AkVCam::Preferences::readString(const std::string &key,
const std::string &defaultValue)
{
AkLogFunction();
auto cfKey = CFStringCreateWithCString(kCFAllocatorDefault,
key.c_str(),
kCFStringEncodingUTF8);
auto cfValue = CFPreferencesCopyValue(cfKey,
PREFERENCES_ID,
kCFPreferencesCurrentUser,
kCFPreferencesAnyHost);
auto value = defaultValue;
if (cfValue) {
auto len = size_t(CFStringGetLength(CFStringRef(cfValue)));
auto data = CFStringGetCStringPtr(CFStringRef(cfValue), kCFStringEncodingUTF8);
if (data) {
value = std::string(data, len);
} else {
auto maxLen =
CFStringGetMaximumSizeForEncoding(len, kCFStringEncodingUTF8) + 1;
auto cstr = new char[maxLen];
memset(cstr, 0, maxLen);
if (CFStringGetCString(CFStringRef(cfValue),
cstr,
maxLen,
kCFStringEncodingUTF8)) {
value = std::string(cstr, len);
}
delete [] cstr;
}
CFRelease(cfValue);
}
CFRelease(cfKey);
return value;
}
int AkVCam::Preferences::readInt(const std::string &key, int defaultValue)
{
AkLogFunction();
auto cfKey = CFStringCreateWithCString(kCFAllocatorDefault,
key.c_str(),
kCFStringEncodingUTF8);
auto cfValue = CFPreferencesCopyValue(cfKey,
PREFERENCES_ID,
kCFPreferencesCurrentUser,
kCFPreferencesAnyHost);
auto value = defaultValue;
if (cfValue) {
CFNumberGetValue(CFNumberRef(cfValue), kCFNumberIntType, &value);
CFRelease(cfValue);
}
CFRelease(cfKey);
return value;
}
double AkVCam::Preferences::readDouble(const std::string &key,
double defaultValue)
{
AkLogFunction();
auto cfKey = CFStringCreateWithCString(kCFAllocatorDefault,
key.c_str(),
kCFStringEncodingUTF8);
auto cfValue = CFPreferencesCopyValue(cfKey,
PREFERENCES_ID,
kCFPreferencesCurrentUser,
kCFPreferencesAnyHost);
auto value = defaultValue;
if (cfValue) {
CFNumberGetValue(CFNumberRef(cfValue), kCFNumberDoubleType, &value);
CFRelease(cfValue);
}
CFRelease(cfKey);
return value;
}
std::vector<std::string> AkVCam::Preferences::readStringList(const std::string &key,
const std::vector<std::string> &defaultValue)
{
auto value = defaultValue;
for (auto &str: split(readString(key), ','))
value.push_back(trimmed(str));
return value;
}
void AkVCam::Preferences::deleteKey(const std::string &key)
{
AkLogFunction();
AkLogInfo() << "Deleting " << key << std::endl;
auto cfKey = CFStringCreateWithCString(kCFAllocatorDefault,
key.c_str(),
kCFStringEncodingUTF8);
CFPreferencesSetValue(cfKey,
nullptr,
PREFERENCES_ID,
kCFPreferencesCurrentUser,
kCFPreferencesAnyHost);
CFRelease(cfKey);
}
void AkVCam::Preferences::deleteAllKeys(const std::string &key)
{
AkLogFunction();
AkLogInfo() << "Key: " << key << std::endl;
for (auto &key_: keys())
if (key_.size() >= key.size() && key_.substr(0, key.size()) == key)
deleteKey(key_);
}
void AkVCam::Preferences::move(const std::string &keyFrom,
const std::string &keyTo)
{
AkLogFunction();
AkLogInfo() << "From: " << keyFrom << std::endl;
AkLogInfo() << "To: " << keyTo << std::endl;
auto cfKeyFrom = CFStringCreateWithCString(kCFAllocatorDefault,
keyFrom.c_str(),
kCFStringEncodingUTF8);
auto cfValue = CFPreferencesCopyValue(cfKeyFrom,
PREFERENCES_ID,
kCFPreferencesCurrentUser,
kCFPreferencesAnyHost);
if (cfValue) {
auto cfKeyTo = CFStringCreateWithCString(kCFAllocatorDefault,
keyTo.c_str(),
kCFStringEncodingUTF8);
CFPreferencesSetValue(cfKeyTo,
cfValue,
PREFERENCES_ID,
kCFPreferencesCurrentUser,
kCFPreferencesAnyHost);
CFRelease(cfKeyTo);
CFRelease(cfValue);
}
CFRelease(cfKeyFrom);
deleteKey(keyFrom);
}
void AkVCam::Preferences::moveAll(const std::string &keyFrom,
const std::string &keyTo)
{
AkLogFunction();
AkLogInfo() << "From: " << keyFrom << std::endl;
AkLogInfo() << "To: " << keyTo << std::endl;
for (auto &key: keys())
if (key.size() >= keyFrom.size()
&& key.substr(0, keyFrom.size()) == keyFrom) {
if (key.size() == keyFrom.size())
move(key, keyTo);
else
move(key, keyTo + key.substr(keyFrom.size()));
}
}
void AkVCam::Preferences::sync()
{
#ifndef FAKE_APPLE
AkLogFunction();
CFPreferencesSynchronize(PREFERENCES_ID,
kCFPreferencesCurrentUser,
kCFPreferencesAnyHost);
#endif
}
std::string AkVCam::Preferences::addDevice(const std::string &description,
const std::string &deviceId)
{
AkLogFunction();
std::string id;
if (deviceId.empty())
id = createDeviceId();
else if (!idDeviceIdTaken(deviceId))
id = deviceId;
if (id.empty())
return {};
int cameraIndex = readInt("cameras");
write("cameras", cameraIndex + 1);
write("cameras."
+ std::to_string(cameraIndex)
+ ".description",
description);
write("cameras."
+ std::to_string(cameraIndex)
+ ".id",
id);
sync();
return id;
}
std::string AkVCam::Preferences::addCamera(const std::string &description,
const std::vector<VideoFormat> &formats)
{
return addCamera("", description, formats);
}
std::string AkVCam::Preferences::addCamera(const std::string &deviceId,
const std::string &description,
const std::vector<VideoFormat> &formats)
{
AkLogFunction();
if (!deviceId.empty() && cameraExists(deviceId))
return {};
auto id = deviceId.empty()? createDeviceId(): deviceId;
int cameraIndex = readInt("cameras");
write("cameras", cameraIndex + 1);
write("cameras."
+ std::to_string(cameraIndex)
+ ".description",
description);
write("cameras."
+ std::to_string(cameraIndex)
+ ".id",
id);
write("cameras."
+ std::to_string(cameraIndex)
+ ".formats",
int(formats.size()));
for (size_t i = 0; i < formats.size(); i++) {
auto &format = formats[i];
auto prefix = "cameras."
+ std::to_string(cameraIndex)
+ ".formats."
+ std::to_string(i);
auto formatStr = VideoFormat::stringFromFourcc(format.fourcc());
write(prefix + ".format", formatStr);
write(prefix + ".width", format.width());
write(prefix + ".height", format.height());
write(prefix + ".fps", format.minimumFrameRate().toString());
}
sync();
return id;
}
bool AkVCam::Preferences::removeCamera(const std::string &deviceId)
{
AkLogFunction();
AkLogInfo() << "Device: " << deviceId << std::endl;
int cameraIndex = cameraFromId(deviceId);
if (cameraIndex < 0)
return false;
cameraSetFormats(size_t(cameraIndex), {});
auto nCameras = camerasCount();
deleteAllKeys("cameras." + std::to_string(cameraIndex));
for (auto i = size_t(cameraIndex + 1); i < nCameras; i++)
moveAll("cameras." + std::to_string(i),
"cameras." + std::to_string(i - 1));
if (nCameras > 1)
write("cameras", int(nCameras - 1));
else
deleteKey("cameras");
sync();
return true;
}
size_t AkVCam::Preferences::camerasCount()
{
AkLogFunction();
int nCameras = readInt("cameras");
AkLogInfo() << "Cameras: " << nCameras << std::endl;
return size_t(nCameras);
}
bool AkVCam::Preferences::idDeviceIdTaken(const std::string &deviceId)
{
AkLogFunction();
// List device IDs in use.
std::vector<std::string> cameraIds;
for (size_t i = 0; i < camerasCount(); i++)
cameraIds.push_back(cameraId(i));
return std::find(cameraIds.begin(),
cameraIds.end(),
deviceId) != cameraIds.end();
}
std::string AkVCam::Preferences::createDeviceId()
{
AkLogFunction();
// List device IDs in use.
std::vector<std::string> cameraIds;
for (size_t i = 0; i < camerasCount(); i++)
cameraIds.push_back(cameraId(i));
const int maxId = 64;
for (int i = 0; i < maxId; i++) {
/* There are no rules for device IDs in Mac. Just append an
* incremental index to a common prefix.
*/
auto id = AKVCAM_DEVICE_PREFIX + std::to_string(i);
// Check if the ID is being used, if not return it.
if (std::find(cameraIds.begin(),
cameraIds.end(),
id) == cameraIds.end())
return id;
}
return {};
}
int AkVCam::Preferences::cameraFromId(const std::string &deviceId)
{
for (size_t i = 0; i < camerasCount(); i++)
if (cameraId(i) == deviceId)
return int(i);
return -1;
}
bool AkVCam::Preferences::cameraExists(const std::string &deviceId)
{
for (size_t i = 0; i < camerasCount(); i++)
if (cameraId(i) == deviceId)
return true;
return false;
}
std::string AkVCam::Preferences::cameraDescription(size_t cameraIndex)
{
if (cameraIndex >= camerasCount())
return {};
return readString("cameras."
+ std::to_string(cameraIndex)
+ ".description");
}
bool AkVCam::Preferences::cameraSetDescription(size_t cameraIndex,
const std::string &description)
{
if (cameraIndex >= camerasCount())
return false;
write("cameras." + std::to_string(cameraIndex) + ".description",
description);
sync();
return true;
}
std::string AkVCam::Preferences::cameraId(size_t cameraIndex)
{
return readString("cameras."
+ std::to_string(cameraIndex)
+ ".id");
}
size_t AkVCam::Preferences::formatsCount(size_t cameraIndex)
{
return size_t(readInt("cameras."
+ std::to_string(cameraIndex)
+ ".formats"));
}
AkVCam::VideoFormat AkVCam::Preferences::cameraFormat(size_t cameraIndex,
size_t formatIndex)
{
AkLogFunction();
auto prefix = "cameras."
+ std::to_string(cameraIndex)
+ ".formats."
+ std::to_string(formatIndex);
auto format = readString(prefix + ".format");
auto fourcc = VideoFormat::fourccFromString(format);
int width = readInt(prefix + ".width");
int height = readInt(prefix + ".height");
auto fps = Fraction(readString(prefix + ".fps"));
return VideoFormat(fourcc, width, height, {fps});
}
std::vector<AkVCam::VideoFormat> AkVCam::Preferences::cameraFormats(size_t cameraIndex)
{
AkLogFunction();
std::vector<AkVCam::VideoFormat> formats;
for (size_t i = 0; i < formatsCount(cameraIndex); i++) {
auto videoFormat = cameraFormat(cameraIndex, i);
if (videoFormat)
formats.push_back(videoFormat);
}
return formats;
}
bool AkVCam::Preferences::cameraSetFormats(size_t cameraIndex,
const std::vector<AkVCam::VideoFormat> &formats)
{
AkLogFunction();
if (cameraIndex >= camerasCount())
return false;
write("cameras."
+ std::to_string(cameraIndex)
+ ".formats",
int(formats.size()));
for (size_t i = 0; i < formats.size(); i++) {
auto &format = formats[i];
auto prefix = "cameras."
+ std::to_string(cameraIndex)
+ ".formats."
+ std::to_string(i);
auto formatStr = VideoFormat::stringFromFourcc(format.fourcc());
write(prefix + ".format", formatStr);
write(prefix + ".width", format.width());
write(prefix + ".height", format.height());
write(prefix + ".fps", format.minimumFrameRate().toString());
}
sync();
return true;
}
bool AkVCam::Preferences::cameraAddFormat(size_t cameraIndex,
const AkVCam::VideoFormat &format,
int index)
{
AkLogFunction();
auto formats = cameraFormats(cameraIndex);
if ((index < 0) || (index > int(formats.size())))
index = int(formats.size());
formats.insert(formats.begin() + index, format);
write("cameras."
+ std::to_string(cameraIndex)
+ ".formats",
int(formats.size()));
for (size_t i = 0; i < formats.size(); i++) {
auto &format = formats[i];
auto prefix = "cameras."
+ std::to_string(cameraIndex)
+ ".formats."
+ std::to_string(i);
auto formatStr = VideoFormat::stringFromFourcc(format.fourcc());
write(prefix + ".format", formatStr);
write(prefix + ".width", format.width());
write(prefix + ".height", format.height());
write(prefix + ".fps", format.minimumFrameRate().toString());
}
sync();
return false;
}
bool AkVCam::Preferences::cameraRemoveFormat(size_t cameraIndex, int index)
{
AkLogFunction();
auto formats = cameraFormats(cameraIndex);
if (index < 0 || index >= int(formats.size()))
return false;
formats.erase(formats.begin() + index);
write("cameras."
+ std::to_string(cameraIndex)
+ ".formats",
int(formats.size()));
for (size_t i = 0; i < formats.size(); i++) {
auto &format = formats[i];
auto prefix = "cameras."
+ std::to_string(cameraIndex)
+ ".formats."
+ std::to_string(i);
auto formatStr = VideoFormat::stringFromFourcc(format.fourcc());
write(prefix + ".format", formatStr);
write(prefix + ".width", format.width());
write(prefix + ".height", format.height());
write(prefix + ".fps", format.minimumFrameRate().toString());
}
sync();
return true;
}
int AkVCam::Preferences::cameraControlValue(size_t cameraIndex,
const std::string &key)
{
return readInt("cameras." + std::to_string(cameraIndex) + ".controls." + key);
}
bool AkVCam::Preferences::cameraSetControlValue(size_t cameraIndex,
const std::string &key,
int value)
{
write("cameras." + std::to_string(cameraIndex) + ".controls." + key, value);
sync();
return true;
}
std::string AkVCam::Preferences::picture()
{
return readString("picture");
}
bool AkVCam::Preferences::setPicture(const std::string &picture)
{
write("picture", picture);
sync();
return true;
}
int AkVCam::Preferences::logLevel()
{
return readInt("loglevel", AKVCAM_LOGLEVEL_DEFAULT);
}
bool AkVCam::Preferences::setLogLevel(int logLevel)
{
write("loglevel", logLevel);
sync();
return true;
}
int AkVCam::Preferences::servicePort()
{
return readInt("servicePort", atoi(AKVCAM_SERVICEPORT_DEFAULT));
}
bool AkVCam::Preferences::setServicePort(int servicePort)
{
write("servicePort", servicePort);
sync();
return true;
}
int AkVCam::Preferences::serviceTimeout()
{
return readInt("serviceTimeout", AKVCAM_SERVICETIMEOUT_DEFAULT);
}
bool AkVCam::Preferences::setServiceTimeout(int timeoutSecs)
{
write("serviceTimeout", timeoutSecs);
sync();
return true;
}