-
-
Notifications
You must be signed in to change notification settings - Fork 1.7k
Expand file tree
/
Copy pathcoreservices.cpp
More file actions
1008 lines (882 loc) · 40.8 KB
/
coreservices.cpp
File metadata and controls
1008 lines (882 loc) · 40.8 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
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
#include "coreservices.h"
#include <QApplication>
#include <QFileDialog>
#include <QProcess>
#include <QProcessEnvironment>
#include <QStandardPaths>
#include <QtGlobal>
#include <gsl/pointers>
#ifdef __BROADCAST__
#include "broadcast/broadcastmanager.h"
#endif
#include "control/controlindicatortimer.h"
#include "controllers/controllermanager.h"
#include "controllers/keyboard/keyboardeventfilter.h"
#include "controllers/scripting/controllerscriptenginebase.h"
#include "database/mixxxdb.h"
#include "effects/effectsmanager.h"
#include "engine/enginemixer.h"
#ifdef __RUBBERBAND__
#include "engine/bufferscalers/rubberbandworkerpool.h"
#endif
#include "library/coverartcache.h"
#include "library/library.h"
#include "library/library_decl.h"
#include "library/library_prefs.h"
#include "library/overviewcache.h"
#include "library/trackcollection.h"
#include "library/trackcollectionmanager.h"
#include "mixer/playerinfo.h"
#include "mixer/playermanager.h"
#include "moc_coreservices.cpp"
#include "preferences/dialog/dlgpreferences.h"
#include "preferences/settingsmanager.h"
#ifdef __MODPLUG__
#include "preferences/dialog/dlgprefmodplug.h"
#endif
#include "skin/skincontrols.h"
#ifdef MIXXX_USE_QML
#include <QQuickWindow>
#include <QSGRendererInterface>
#include "qml/qmlconfigproxy.h"
#include "qml/qmleffectsmanagerproxy.h"
#include "qml/qmllibraryproxy.h"
#include "qml/qmlplayermanagerproxy.h"
#include "qml/qmlpreferencesproxy.h"
#include "qml/qmlsoundmanagerproxy.h"
#endif
#include "soundio/soundmanager.h"
#include "sources/soundsourceproxy.h"
#include "util/clipboard.h"
#include "util/db/dbconnectionpooled.h"
#include "util/font.h"
#include "util/logger.h"
#include "util/screensavermanager.h"
#include "util/statsmanager.h"
#include "util/time.h"
#include "util/translations.h"
#include "util/versionstore.h"
#include "vinylcontrol/vinylcontrolmanager.h"
#ifdef __APPLE__
#include "util/sandbox.h"
#endif
#if defined(Q_OS_LINUX) && defined(__X11__)
#include <X11/XKBlib.h>
#endif
#if defined(Q_OS_ANDROID)
#include <QtCore/private/qandroidextras_p.h>
#endif
#if defined(Q_OS_LINUX) && QT_VERSION < QT_VERSION_CHECK(6, 0, 0)
#include <X11/Xlibint.h>
#include <QtX11Extras/QX11Info>
#include "engine/channelhandle.h"
// Xlibint.h predates C++ and defines macros which conflict
// with references to std::max and std::min
#undef max
#undef min
#endif
namespace {
const mixxx::Logger kLogger("CoreServices");
constexpr int kMicrophoneCount = 4;
constexpr int kAuxiliaryCount = 4;
constexpr int kSamplerCount = 4;
#define CLEAR_AND_CHECK_DELETED(x) clearHelper(x, #x);
template<typename T>
void clearHelper(std::shared_ptr<T>& ref_ptr, const char* name) {
std::weak_ptr<T> weak(ref_ptr);
ref_ptr.reset();
if (auto shared = weak.lock()) {
qWarning() << name << "was leaked! Use count:" << shared.use_count();
DEBUG_ASSERT(false);
}
}
// hack around https://gitlab.freedesktop.org/xorg/lib/libx11/issues/25
// https://github.com/mixxxdj/mixxx/issues/9533
#if defined(Q_OS_LINUX) && QT_VERSION < QT_VERSION_CHECK(6, 0, 0)
typedef Bool (*WireToErrorType)(Display*, XErrorEvent*, xError*);
constexpr int NUM_HANDLERS = 256;
WireToErrorType __oldHandlers[NUM_HANDLERS] = {nullptr};
Bool __xErrorHandler(Display* display, XErrorEvent* event, xError* error) {
// Call any previous handler first in case it needs to do real work.
auto code = static_cast<int>(event->error_code);
if (__oldHandlers[code] != nullptr) {
__oldHandlers[code](display, event, error);
}
// Always return false so the error does not get passed to the normal
// application defined handler.
return False;
}
#endif
#if defined(Q_OS_LINUX) && defined(__X11__)
QLocale localeFromXkbSymbol(const QString& xkbLayout) {
// This maps XKB layouts to locales of keyboard mappings that are shipped with Mixxx
static const QMap<QString, QLocale> xkbToLocaleMap = {
{"cz", QLocale(QLocale::Czech, QLocale::CzechRepublic)}, // cs_CZ.kbd.cfg
{"de", QLocale(QLocale::German, QLocale::Germany)}, // de_DE.kbd.cfg
{"de+nodeadkeys", QLocale(QLocale::German, QLocale::Germany)}, // de_DE.kbd.cfg
{"es", QLocale(QLocale::Spanish, QLocale::Spain)}, // es_ES.kbd.cfg
{"es+nodeadkeys", QLocale(QLocale::Spanish, QLocale::Spain)}, // es_ES.kbd.cfg
{"fr", QLocale(QLocale::French, QLocale::France)}, // fr_FR.kbd.cfg
{"fr+nodeadkeys", QLocale(QLocale::French, QLocale::France)}, // fr_FR.kbd.cfg
{"dk", QLocale(QLocale::Danish, QLocale::Denmark)}, // da_DK.kbd.cfg
{"dk+nodeadkeys", QLocale(QLocale::Danish, QLocale::Denmark)}, // da_DK.kbd.cfg
{"gr", QLocale(QLocale::Greek, QLocale::Greece)}, // el_GR.kbd.cfg
{"gr+nodeadkeys", QLocale(QLocale::Greek, QLocale::Greece)}, // el_GR.kbd.cfg
{"fi", QLocale(QLocale::Finnish, QLocale::Finland)}, // fi_FI.kbd.cfg
{"it", QLocale(QLocale::Italian, QLocale::Italy)}, // it_IT.kbd.cfg
{"it+nodeadkeys", QLocale(QLocale::Italian, QLocale::Italy)}, // it_IT.kbd.cfg
{"us", QLocale(QLocale::English, QLocale::UnitedStates)}, // en_US.kbd.cfg
{"ru", QLocale(QLocale::Russian, QLocale::Russia)}, // ru_RU.kbd.cfg
{"ch", QLocale(QLocale::German, QLocale::Switzerland)}, // de_CH.kbd.cfg
{"ch+de_nodeadkeys", QLocale(QLocale::German, QLocale::Switzerland)}, // de_CH.kbd.cfg
{"ch+fr", QLocale(QLocale::French, QLocale::Switzerland)}, // fr_CH.kbd.cfg
{"ch+fr_nodeadkeys", QLocale(QLocale::French, QLocale::Switzerland)} // fr_CH.kbd.cfg
};
return xkbToLocaleMap.value(xkbLayout, QLocale(QLocale::English, QLocale::UnitedStates));
}
QLocale localeFromXkbName(const QString& xkbLayout) {
// This maps XKB layouts to locales of keyboard mappings that are shipped with Mixxx
static const QMap<QString, QLocale> xkbToLocaleMap = {
{"Czech",
QLocale(QLocale::Czech,
QLocale::CzechRepublic)}, // cs_CZ.kbd.cfg
{"German",
QLocale(QLocale::German,
QLocale::Germany)}, // de_DE.kbd.cfg
{"German (no dead keys)",
QLocale(QLocale::German,
QLocale::Germany)}, // de_DE.kbd.cfg
{"Spanish",
QLocale(QLocale::Spanish, QLocale::Spain)}, // es_ES.kbd.cfg
{"Spanish (no dead keys)",
QLocale(QLocale::Spanish, QLocale::Spain)}, // es_ES.kbd.cfg
{"French",
QLocale(QLocale::French, QLocale::France)}, // fr_FR.kbd.cfg
{"French (no dead keys)",
QLocale(QLocale::French, QLocale::France)}, // fr_FR.kbd.cfg
{"Danish",
QLocale(QLocale::Danish,
QLocale::Denmark)}, // da_DK.kbd.cfg
{"Danish (no dead keys)",
QLocale(QLocale::Danish,
QLocale::Denmark)}, // da_DK.kbd.cfg
{"Greek",
QLocale(QLocale::Greek, QLocale::Greece)}, // el_GR.kbd.cfg
{"Greek (no dead keys)",
QLocale(QLocale::Greek, QLocale::Greece)}, // el_GR.kbd.cfg
{"Finnish",
QLocale(QLocale::Finnish,
QLocale::Finland)}, // fi_FI.kbd.cfg
{"Italian",
QLocale(QLocale::Italian, QLocale::Italy)}, // it_IT.kbd.cfg
{"Italian (no dead keys)",
QLocale(QLocale::Italian, QLocale::Italy)}, // it_IT.kbd.cfg
{"English (US)",
QLocale(QLocale::English,
QLocale::UnitedStates)}, // en_US.kbd.cfg
{"Russian",
QLocale(QLocale::Russian,
QLocale::Russia)}, // ru_RU.kbd.cfg
{"German (Switzerland)",
QLocale(QLocale::German,
QLocale::Switzerland)}, // de_CH.kbd.cfg
{"German (Switzerland, no dead keys)",
QLocale(QLocale::German,
QLocale::Switzerland)}, // de_CH.kbd.cfg
{"French (Switzerland)",
QLocale(QLocale::French,
QLocale::Switzerland)}, // fr_CH.kbd.cfg
{"French (Switzerland, no dead keys)",
QLocale(QLocale::French,
QLocale::Switzerland)} // fr_CH.kbd.cfg
};
return xkbToLocaleMap.value(xkbLayout, QLocale(QLocale::English, QLocale::UnitedStates));
}
inline bool isGnomeSession() {
const QProcessEnvironment env = QProcessEnvironment::systemEnvironment();
QString desktop = env.value("XDG_CURRENT_DESKTOP").toLower();
return desktop.contains("gnome");
}
inline bool isXfceSession() {
const QProcessEnvironment env = QProcessEnvironment::systemEnvironment();
QString desktop = env.value("XDG_CURRENT_DESKTOP").toLower();
return desktop.contains("xfce");
}
QString getCurrentXkbLayoutName() {
XkbIgnoreExtension(False);
Display* pDisplay = XkbOpenDisplay(nullptr, nullptr, nullptr, nullptr, nullptr, nullptr);
if (!pDisplay) {
// No X11 / XWayland running or no Xkb in use
return {};
}
XkbStateRec state;
if (XkbGetState(pDisplay, XkbUseCoreKbd, &state) != Success) {
qWarning() << "XkbGetState failed";
XCloseDisplay(pDisplay);
return {};
}
XkbDescPtr pDesc = XkbGetMap(pDisplay, 0, XkbUseCoreKbd);
if (!pDesc) {
qWarning() << "XkbGetMap failed";
XCloseDisplay(pDisplay);
return {};
}
XkbGetNames(pDisplay, XkbGroupNamesMask, pDesc);
if (!pDesc->names) {
qWarning() << "XkbGetNames failed";
XCloseDisplay(pDisplay);
return {};
}
char* pGroupName = XGetAtomName(pDisplay, pDesc->names->groups[state.group]);
if (!pGroupName) {
qWarning() << "XGetAtomName failed";
XkbFreeNames(pDesc, XkbGroupNamesMask, True);
XCloseDisplay(pDisplay);
return {};
}
QString layoutName = QString(pGroupName);
XFree(pGroupName);
XkbFreeNames(pDesc, XkbKeyNamesMask, True);
XCloseDisplay(pDisplay);
return layoutName;
}
#endif
// Returns the locale of the current keyboard layout
// On macOS and Windows QGuiApplication::inputMethod() is used straight away.
// On Linux it first tries to via X11/XWayland. That works even if Mixxx itself
// is running with Wayland. If XWayland is not installed it falls back to
// dconf/xfconf-query and than QGuiApplication::inputMethod() which is equivalent
// to "ibus engine". QGuiApplication::inputMethod() does not work with GNOME and XFCE
// https://bugreports.qt.io/browse/QTBUG-137302
inline QLocale inputLocale() {
#if defined(Q_OS_LINUX) && defined(__X11__)
QString layoutName = getCurrentXkbLayoutName();
if (!layoutName.isEmpty()) {
qDebug() << "Keyboard Layout from XKB:" << layoutName;
return localeFromXkbName(layoutName);
}
if (isGnomeSession()) {
// In a Gnome session QGuiApplication::inputMethod() is not necessarily correct
// https://github.com/mixxxdj/mixxx/issues/14838
// If this auto detection still fails the user may use a Custom.kb.cfg
QProcess sourcesProc;
sourcesProc.start("dconf",
{"read", "/org/gnome/desktop/input-sources/mru-sources"});
if (sourcesProc.waitForFinished(100)) {
const QString sourcesStr = sourcesProc.readAllStandardOutput().trimmed();
// Expecting something like this: [('xkb', 'de'), ('xkb', 'us')]
// The first match is the current layout.
// This matches entries like ('xkb', 'us') and extracts the layout
// code (e.g. 'us', 'de')
static const QRegularExpression re(QStringLiteral("\\('xkb',\\s*'([^']+)'\\)"));
QRegularExpressionMatch match = re.match(sourcesStr);
if (match.hasMatch()) {
const QString layout = match.captured(1);
;
qDebug() << "Keyboard Layout from GNOME dconf:" << layout;
return localeFromXkbSymbol(layout);
} else {
// mru-sources (most recently used source) is empty when user
// has only one keyboard layout enabled. Use it from sources.
sourcesProc.start("dconf",
{"read", "/org/gnome/desktop/input-sources/sources"});
if (sourcesProc.waitForFinished(100)) {
const QString sourcesStr = sourcesProc.readAllStandardOutput().trimmed();
// Expecting something like this: [('xkb', 'de')]
QRegularExpressionMatch match = re.match(sourcesStr);
if (match.hasMatch()) {
const QString layout = match.captured(1);
qDebug() << "Keyboard Layout from GNOME dconf:" << layout;
return localeFromXkbSymbol(layout);
} else {
qDebug() << "No valid keyboard layout found in dconf:" << sourcesStr;
}
} else {
qDebug() << "Failed to read Keyboard Layout from dconf.";
}
}
} else {
qDebug() << "Failed to read Keyboard Layout from dconf.";
}
} else if (isXfceSession()) {
// In a Xfce session QGuiApplication::inputMethod() is not necessarily correct
// https://github.com/mixxxdj/mixxx/issues/14838
// If this auto detection still fails the user may use a Custom.kb.cfg
const QStringList args{"-c", "keyboard-layout", "-p", "/Default/XkbLayout"};
QProcess sourcesProc;
sourcesProc.start("xfconf-query", args);
if (sourcesProc.waitForFinished(100)) {
QString sourcesStr = sourcesProc.readAllStandardOutput().trimmed();
// Expecting comma-separated layouts: de,gr,cz
// The first is the current layout.
if (sourcesStr.length() >= 2) {
const QStringList allLayouts = sourcesStr.split(',');
const QString currLayout = allLayouts[0];
qDebug() << "Keyboard Layout from XFCE xfconf:" << currLayout;
return localeFromXkbSymbol(currLayout);
} else {
qDebug() << "No valid keyboard layout found in xfconf:" << sourcesStr;
}
} else {
qDebug() << "Failed to read Keyboard Layout from xfconf.";
}
}
#endif
QInputMethod* pInputMethod = QGuiApplication::inputMethod();
return pInputMethod ? pInputMethod->locale() : QLocale(QLocale::English);
}
} // anonymous namespace
namespace mixxx {
CoreServices::CoreServices(const CmdlineArgs& args, QApplication* pApp)
: m_runtime_timer(QLatin1String("CoreServices::runtime")),
m_cmdlineArgs(args),
m_isInitialized(false) {
m_runtime_timer.start();
mixxx::Time::start();
ScopedTimer t(QStringLiteral("CoreServices::CoreServices"));
// All this here is running without without start up screen
// Defer long initializations to CoreServices::initialize() which is
// called after the GUI is initialized
initializeSettings();
initializeLogging();
// Only record stats in developer mode.
if (m_cmdlineArgs.getDeveloper()) {
StatsManager::createInstance();
}
mixxx::Translations::initializeTranslations(
m_pSettingsManager->settings(), pApp, m_cmdlineArgs.getLocale());
initializeKeyboard();
}
CoreServices::~CoreServices() {
if (m_isInitialized) {
finalize();
}
// Tear down remaining stuff that was initialized in the constructor.
CLEAR_AND_CHECK_DELETED(m_pKeyboardEventFilter);
CLEAR_AND_CHECK_DELETED(m_pKbdConfig);
CLEAR_AND_CHECK_DELETED(m_pKbdConfigEmpty);
if (m_cmdlineArgs.getDeveloper()) {
StatsManager::destroy();
}
// HACK: Save config again. We saved it once before doing some dangerous
// stuff. We only really want to save it here, but the first one was just
// a precaution. The earlier one can be removed when stuff is more stable
// at exit.
m_pSettingsManager->save();
m_pSettingsManager.reset();
Sandbox::shutdown();
// Check for leaked ControlObjects and give warnings.
{
const QList<QSharedPointer<ControlDoublePrivate>> leakedControls =
ControlDoublePrivate::takeAllInstances();
if (!leakedControls.isEmpty()) {
qWarning()
<< "The following"
<< leakedControls.size()
<< "controls were leaked:";
for (auto pCDP : leakedControls) {
ConfigKey key = pCDP->getKey();
qWarning() << key.group << key.item << pCDP->getCreatorCO();
// Deleting leaked objects helps to satisfy valgrind.
// These delete calls could cause crashes if a destructor for a control
// we thought was leaked is triggered after this one exits.
// So, only delete so if developer mode is on.
if (CmdlineArgs::Instance().getDeveloper()) {
pCDP->deleteCreatorCO();
}
}
DEBUG_ASSERT(!"Controls were leaked!");
}
// Finally drop all shared pointers by exiting this scope
}
// Report the total time we have been running.
m_runtime_timer.elapsed(true);
}
void CoreServices::initializeSettings() {
#ifdef Q_OS_MACOS
// TODO: At this point it is too late to provide the same settings path to all components
// and too early to log errors and give users advises in their system language.
// Calling this from main.cpp before the QApplication is initialized may cause a crash
// due to potential QMessageBox invocations within migrateOldSettings().
// Solution: Start Mixxx with default settings, migrate the preferences, and then restart
// immediately.
if (!m_cmdlineArgs.getSettingsPathSet()) {
CmdlineArgs::Instance().setSettingsPath(Sandbox::migrateOldSettings());
}
#endif
QString settingsPath = m_cmdlineArgs.getSettingsPath();
m_pSettingsManager = std::make_unique<SettingsManager>(settingsPath);
}
void CoreServices::initializeLogging() {
mixxx::LogFlags logFlags = mixxx::LogFlag::LogToFile;
if (m_cmdlineArgs.getDebugAssertBreak()) {
logFlags.setFlag(mixxx::LogFlag::DebugAssertBreak);
}
mixxx::Logging::initialize(
m_pSettingsManager->settings()->getSettingsPath(),
m_cmdlineArgs.getLogLevel(),
m_cmdlineArgs.getLogFlushLevel(),
logFlags);
}
void CoreServices::initialize(QApplication* pApp) {
VERIFY_OR_DEBUG_ASSERT(!m_isInitialized) {
return;
}
ScopedTimer t(QStringLiteral("CoreServices::initialize"));
VERIFY_OR_DEBUG_ASSERT(SoundSourceProxy::registerProviders()) {
qCritical() << "Failed to register any SoundSource providers";
return;
}
VersionStore::logBuildDetails();
#if defined(Q_OS_LINUX) && QT_VERSION < QT_VERSION_CHECK(6, 0, 0)
// XESetWireToError will segfault if running as a Wayland client
if (pApp->platformName() == QLatin1String("xcb")) {
for (auto i = 0; i < NUM_HANDLERS; ++i) {
XESetWireToError(QX11Info::display(), i, &__xErrorHandler);
}
}
#else
Q_UNUSED(pApp);
#endif
UserSettingsPointer pConfig = m_pSettingsManager->settings();
Sandbox::setPermissionsFilePath(QDir(pConfig->getSettingsPath()).filePath("sandbox.cfg"));
QString resourcePath = pConfig->getResourcePath();
emit initializationProgressUpdate(0, tr("fonts"));
FontUtils::initializeFonts(resourcePath); // takes a long time
emit initializationProgressUpdate(10, tr("database"));
m_pDbConnectionPool = MixxxDb(pConfig).connectionPool();
if (!m_pDbConnectionPool) {
exit(-1);
}
// Create a connection for the main thread
m_pDbConnectionPool->createThreadLocalConnection();
if (!initializeDatabase()) {
exit(-1);
}
m_pControlIndicatorTimer = std::make_shared<mixxx::ControlIndicatorTimer>(this);
auto pChannelHandleFactory = std::make_shared<ChannelHandleFactory>();
emit initializationProgressUpdate(20, tr("effects"));
m_pEffectsManager = std::make_shared<EffectsManager>(pConfig, pChannelHandleFactory);
m_pEngine = std::make_shared<EngineMixer>(
pConfig,
"[Master]",
m_pEffectsManager.get(),
pChannelHandleFactory,
true);
#ifdef __RUBBERBAND__
RubberBandWorkerPool::createInstance(pConfig);
#endif
emit initializationProgressUpdate(30, tr("audio interface"));
// Although m_pSoundManager is created here, m_pSoundManager->setupDevices()
// needs to be called after m_pPlayerManager registers sound IO for each EngineChannel.
m_pSoundManager = std::make_shared<SoundManager>(pConfig, m_pEngine.get());
m_pEngine->registerNonEngineChannelSoundIO(gsl::make_not_null(m_pSoundManager.get()));
m_pRecordingManager = std::make_shared<RecordingManager>(pConfig, m_pEngine.get());
#ifdef __BROADCAST__
m_pBroadcastManager = std::make_shared<BroadcastManager>(
m_pSettingsManager.get(),
m_pSoundManager.get());
#endif
#ifdef __VINYLCONTROL__
m_pVCManager = std::make_shared<VinylControlManager>(this, pConfig, m_pSoundManager.get());
#else
m_pVCManager = nullptr;
#endif
emit initializationProgressUpdate(40, tr("decks"));
// Create the player manager. (long)
m_pPlayerManager = std::make_shared<PlayerManager>(
pConfig,
m_pSoundManager.get(),
m_pEffectsManager.get(),
m_pEngine.get());
// TODO: connect input not configured error dialog slots
PlayerInfo::create();
for (int i = 0; i < kMicrophoneCount; ++i) {
m_pPlayerManager->addMicrophone();
}
for (int i = 0; i < kAuxiliaryCount; ++i) {
m_pPlayerManager->addAuxiliary();
}
m_pPlayerManager->addConfiguredDecks();
for (int i = 0; i < kSamplerCount; ++i) {
m_pPlayerManager->addSampler();
}
m_pPlayerManager->addPreviewDeck();
m_pEffectsManager->setup();
#ifdef __VINYLCONTROL__
m_pVCManager->init();
#endif
#ifdef __MODPLUG__
// Restore the configuration for the modplug library before trying to load a module.
DlgPrefModplug modplugPrefs{nullptr, pConfig};
modplugPrefs.loadSettings();
modplugPrefs.applySettings();
#endif
// Inhibit Screensaver
m_pScreensaverManager = std::make_shared<ScreensaverManager>(pConfig);
connect(&PlayerInfo::instance(),
&PlayerInfo::currentPlayingDeckChanged,
m_pScreensaverManager.get(),
&ScreensaverManager::slotCurrentPlayingDeckChanged);
emit initializationProgressUpdate(50, tr("library"));
CoverArtCache::createInstance();
Clipboard::createInstance();
m_pTrackCollectionManager = std::make_shared<TrackCollectionManager>(
this,
pConfig,
m_pDbConnectionPool);
m_pLibrary = std::make_shared<Library>(
this,
pConfig,
m_pDbConnectionPool,
m_pTrackCollectionManager.get(),
m_pPlayerManager.get(),
m_pRecordingManager.get());
OverviewCache* pOverviewCache = OverviewCache::createInstance(pConfig, m_pDbConnectionPool);
connect(&(m_pTrackCollectionManager->internalCollection()->getTrackDAO()),
&TrackDAO::waveformSummaryUpdated,
pOverviewCache,
&OverviewCache::onTrackSummaryChanged);
// Binding the PlayManager to the Library may already trigger
// loading of tracks which requires that the GlobalTrackCache has
// been created. Otherwise Mixxx might hang when accessing
// the uninitialized singleton instance!
m_pPlayerManager->bindToLibrary(m_pLibrary.get());
bool musicDirAdded = false;
if (m_pTrackCollectionManager->internalCollection()->loadRootDirs().isEmpty()) {
#if defined(Q_OS_IOS) || defined(Q_OS_WASM)
// On the web and iOS, we are running in a sandbox (a virtual file
// system on the web). Since we are generally limited to paths within
// the sandbox, there is not much point in asking the user about a
// custom directory, so we just default to Qt's standard music directory
// (~/Documents/Music on iOS and ~/Music on Wasm). Since the sandbox is
// initially empty, we create that directory automatically.
// Advanced users can still customize this directory in the settings.
QString fd = QStandardPaths::writableLocation(QStandardPaths::MusicLocation);
QDir dir = fd;
if (!dir.exists()) {
dir.mkpath(".");
}
#elif defined(Q_OS_ANDROID)
// if(QOperatingSystemVersion::current() <
// QOperatingSystemVersion(QOperatingSystemVersion::Android, 11)) {
// qDebug() << "it is less then Android 11 - ALL FILES permission
// isn't possible!";
// }
QString fd;
jboolean value = QJniObject::callStaticMethod<jboolean>(
"android/os/Environment", "isExternalStorageManager");
if (value == false) {
qDebug() << "requesting ACTION_MANAGE_APP_ALL_FILES_ACCESS_PERMISSION";
QJniObject ACTION_MANAGE_APP_ALL_FILES_ACCESS_PERMISSION =
QJniObject::getStaticObjectField(
"android/provider/Settings",
"ACTION_MANAGE_APP_ALL_FILES_ACCESS_PERMISSION",
"Ljava/lang/String;");
QJniObject intent("android/content/Intent",
"(Ljava/lang/String;)V",
ACTION_MANAGE_APP_ALL_FILES_ACCESS_PERMISSION.object());
QJniObject jniPath = QJniObject::fromString(
QStringLiteral("package:%1").arg(ANDROID_PACKAGE_NAME));
QJniObject jniUri =
QJniObject::callStaticObjectMethod("android/net/Uri",
"parse",
"(Ljava/lang/String;)Landroid/net/Uri;",
jniPath.object<jstring>());
QJniObject jniResult = intent.callObjectMethod("setData",
"(Landroid/net/Uri;)Landroid/content/Intent;",
jniUri.object<jobject>());
QtAndroidPrivate::startActivity(intent, 0);
} else {
qDebug() << "Got ACTION_MANAGE_APP_ALL_FILES_ACCESS_PERMISSION";
}
fd = "/storage/emulated/0/Music/";
QDir dir = fd;
if (!dir.exists()) {
dir.mkpath(".");
}
#else
// TODO(XXX) this needs to be smarter, we can't distinguish between an empty
// path return value (not sure if this is normally possible, but it is
// possible with the Windows 7 "Music" library, which is what
// QStandardPaths::writableLocation(QStandardPaths::MusicLocation)
// resolves to) and a user hitting 'cancel'. If we get a blank return
// but the user didn't hit cancel, we need to know this and let the
// user take some course of action -- bkgood
QString fd = QFileDialog::getExistingDirectory(nullptr,
tr("Choose music library directory"),
QStandardPaths::writableLocation(
QStandardPaths::MusicLocation));
#endif
// request to add directory to database.
if (!fd.isEmpty() && m_pLibrary->requestAddDir(fd)) {
musicDirAdded = true;
}
}
emit initializationProgressUpdate(60, tr("controllers"));
// Initialize controller sub-system,
// but do not set up controllers until the end of the application startup
// (long)
qDebug() << "Creating ControllerManager";
m_pControllerManager = std::make_shared<ControllerManager>(pConfig);
// Scan the library for new files and directories
bool rescan = m_cmdlineArgs.getRescanLibrary() ||
pConfig->getValue<bool>(library::prefs::kRescanOnStartupConfigKey);
// rescan the library if we get a new plugin
QList<QString> prev_plugins_list =
pConfig->getValueString(
ConfigKey("[Library]", "SupportedFileExtensions"))
.split(',',
#if QT_VERSION >= QT_VERSION_CHECK(5, 14, 0)
Qt::SkipEmptyParts);
#else
QString::SkipEmptyParts);
#endif
// TODO: QSet<T>::fromList(const QList<T>&) is deprecated and should be
// replaced with QSet<T>(list.begin(), list.end()).
// However, the proposed alternative has just been introduced in Qt
// 5.14. Until the minimum required Qt version of Mixxx is increased,
// we need a version check here
QSet<QString> prev_plugins =
#if QT_VERSION >= QT_VERSION_CHECK(5, 14, 0)
QSet<QString>(prev_plugins_list.begin(), prev_plugins_list.end());
#else
QSet<QString>::fromList(prev_plugins_list);
#endif
const QList<QString> supportedFileSuffixes = SoundSourceProxy::getSupportedFileSuffixes();
auto curr_plugins =
#if QT_VERSION >= QT_VERSION_CHECK(5, 14, 0)
QSet<QString>(supportedFileSuffixes.begin(), supportedFileSuffixes.end());
#else
QSet<QString>::fromList(supportedFileSuffixes);
#endif
rescan = rescan || (prev_plugins != curr_plugins);
pConfig->set(ConfigKey("[Library]", "SupportedFileExtensions"),
supportedFileSuffixes.join(","));
// Forward the scanner signal so MixxxMainWindow can display a summary popup.
connect(m_pTrackCollectionManager.get(),
&TrackCollectionManager::libraryScanSummary,
this,
&CoreServices::libraryScanSummary,
Qt::UniqueConnection);
// Scan the library directory. Do this after the skinloader has
// loaded a skin, see issue #6625
if (rescan || musicDirAdded || m_pSettingsManager->shouldRescanLibrary()) {
m_pTrackCollectionManager->startLibraryAutoScan();
}
// This has to be done before m_pSoundManager->setupDevices()
// https://github.com/mixxxdj/mixxx/issues/9188
m_pPlayerManager->loadSamplers();
m_pTouchShift = std::make_unique<ControlPushButton>(ConfigKey("[Controls]", "touch_shift"));
// The UI controls must be created here so that controllers can bind to
// them on startup.
m_pSkinControls = std::make_unique<SkinControls>();
// Load tracks in args.qlMusicFiles (command line arguments) into player
// 1 and 2:
const QList<QString>& musicFiles = m_cmdlineArgs.getMusicFiles();
const int numTracks = std::min(m_pPlayerManager->numberOfDecks(),
static_cast<int>(musicFiles.count()));
for (int i = 0; i < numTracks; ++i) {
if (SoundSourceProxy::isFileNameSupported(musicFiles.at(i))) {
m_pPlayerManager->slotLoadToDeck(musicFiles.at(i), i + 1);
}
}
m_isInitialized = true;
ControllerScriptEngineBase::registerPlayerManager(getPlayerManager());
#ifdef MIXXX_USE_QML
initializeQMLSingletons();
}
void CoreServices::initializeQMLSingletons() {
// Any uncreateable non-singleton types registered here require
// arguments that we don't want to expose to QML directly. Instead, they
// can be retrieved by member properties or methods from the singleton
// types.
//
// The alternative would be to register their *arguments* in the QML
// system, which would improve nothing, or we had to expose them as
// singletons to that they can be accessed by components instantiated by
// QML, which would also be suboptimal.
mixxx::qml::QmlEffectsManagerProxy::registerEffectsManager(getEffectsManager());
mixxx::qml::QmlPlayerManagerProxy::registerPlayerManager(getPlayerManager());
mixxx::qml::QmlConfigProxy::registerUserSettings(getSettings());
mixxx::qml::QmlLibraryProxy::registerLibrary(getLibrary());
mixxx::qml::QmlSoundManagerProxy::registerManager(getSoundManager());
mixxx::qml::QmlControllerManagerProxy::registerManager(
getControllerManager(),
CmdlineArgs::Instance().getControllerPreviewScreens());
ControllerScriptEngineBase::registerTrackCollectionManager(getTrackCollectionManager());
// Currently, it is required to enforce QQuickWindow RHI backend to use
// OpenGL on all platforms to allow offscreen rendering to function as
// expected
QQuickWindow::setGraphicsApi(QSGRendererInterface::OpenGL);
#endif
}
void CoreServices::initializeKeyboard() {
UserSettingsPointer pConfig = m_pSettingsManager->settings();
QString resourcePath = pConfig->getResourcePath();
// Set the default value in settings file
if (pConfig->getValueString(ConfigKey("[Keyboard]", "Enabled")).length() == 0) {
pConfig->set(ConfigKey("[Keyboard]", "Enabled"), ConfigValue(1));
}
// Read keyboard configuration and set kdbConfig object in WWidget
// Check first in user's Mixxx directory
QString userKeyboard = QDir(pConfig->getSettingsPath()).filePath("Custom.kbd.cfg");
// Empty keyboard configuration
m_pKbdConfigEmpty = std::make_shared<ConfigObject<ConfigValueKbd>>(QString());
if (QFile::exists(userKeyboard)) {
qDebug() << "Found and will use custom keyboard mapping" << userKeyboard;
m_pKbdConfig = std::make_shared<ConfigObject<ConfigValueKbd>>(userKeyboard);
} else {
// Default to the locale for the main input method (e.g. keyboard).
QLocale locale = inputLocale();
// check if a default keyboard exists
QString defaultKeyboard = QString(resourcePath).append("keyboard/");
defaultKeyboard += locale.name();
defaultKeyboard += ".kbd.cfg";
qDebug() << "Found and will use default keyboard mapping" << defaultKeyboard;
if (!QFile::exists(defaultKeyboard)) {
qDebug() << defaultKeyboard << " not found, using en_US.kbd.cfg";
defaultKeyboard = QString(resourcePath).append("keyboard/").append("en_US.kbd.cfg");
if (!QFile::exists(defaultKeyboard)) {
qDebug() << defaultKeyboard << " not found, starting without shortcuts";
defaultKeyboard = "";
}
}
m_pKbdConfig = std::make_shared<ConfigObject<ConfigValueKbd>>(defaultKeyboard);
}
// TODO(XXX) leak pKbdConfig, KeyboardEventFilter owns it? Maybe roll all keyboard
// initialization into KeyboardEventFilter
// Workaround for today: KeyboardEventFilter calls delete
bool keyboardShortcutsEnabled = pConfig->getValue<bool>(
ConfigKey("[Keyboard]", "Enabled"));
m_pKeyboardEventFilter = std::make_shared<KeyboardEventFilter>(
keyboardShortcutsEnabled ? m_pKbdConfig.get() : m_pKbdConfigEmpty.get());
}
void CoreServices::slotOptionsKeyboard(bool toggle) {
UserSettingsPointer pConfig = m_pSettingsManager->settings();
if (toggle) {
//qDebug() << "Enable keyboard shortcuts/mappings";
m_pKeyboardEventFilter->setKeyboardConfig(m_pKbdConfig.get());
pConfig->set(ConfigKey("[Keyboard]", "Enabled"), ConfigValue(1));
} else {
//qDebug() << "Disable keyboard shortcuts/mappings";
m_pKeyboardEventFilter->setKeyboardConfig(m_pKbdConfigEmpty.get());
pConfig->set(ConfigKey("[Keyboard]", "Enabled"), ConfigValue(0));
}
}
bool CoreServices::initializeDatabase() {
kLogger.info() << "Connecting to database";
QSqlDatabase dbConnection = mixxx::DbConnectionPooled(m_pDbConnectionPool);
if (!dbConnection.isOpen()) {
QMessageBox::critical(nullptr,
tr("Cannot open database"),
tr("Unable to establish a database connection.\n"
"Mixxx requires QT with SQLite support. Please read "
"the Qt SQL driver documentation for information on how "
"to build it.\n\n"
"Click OK to exit."),
QMessageBox::Ok);
return false;
}
kLogger.info() << "Initializing or upgrading database schema";
return MixxxDb::initDatabaseSchema(dbConnection);
}
std::shared_ptr<QDialog> CoreServices::makeDlgPreferences() const {
// Note: We return here the base class pointer to make the coreservices.h usable
// in test classes where header included from dlgpreferences.h are not accessible.
std::shared_ptr<DlgPreferences> pDlgPreferences = std::make_shared<DlgPreferences>(
getScreensaverManager(),
nullptr,
getSoundManager(),
getControllerManager(),
getVinylControlManager(),
getEffectsManager(),
getSettingsManager(),
getLibrary());
return pDlgPreferences;
}
void CoreServices::finalize() {
VERIFY_OR_DEBUG_ASSERT(m_isInitialized) {
qDebug() << "Skipping CoreServices finalization because it was never initialized.";
return;
}
Timer t("CoreServices::~CoreServices");
t.start();
#ifdef MIXXX_USE_QML
// Delete all the QML singletons in order to prevent controller leaks
mixxx::qml::QmlEffectsManagerProxy::registerEffectsManager(nullptr);
mixxx::qml::QmlPlayerManagerProxy::registerPlayerManager(nullptr);
mixxx::qml::QmlConfigProxy::registerUserSettings(nullptr);
mixxx::qml::QmlLibraryProxy::registerLibrary(nullptr);
mixxx::qml::QmlSoundManagerProxy::registerManager(nullptr);
mixxx::qml::QmlControllerManagerProxy::registerManager(nullptr);
ControllerScriptEngineBase::registerTrackCollectionManager(nullptr);
#endif
ControllerScriptEngineBase::registerPlayerManager(nullptr);
// Stop all pending library operations
qDebug() << t.elapsed(false).debugMillisWithUnit() << "stopping pending Library tasks";
m_pTrackCollectionManager->stopLibraryScan();
m_pLibrary->stopPendingTasks();
qDebug() << t.elapsed(false).debugMillisWithUnit() << "saving configuration";
m_pSettingsManager->save();
// SoundManager depend on Engine and Config
qDebug() << t.elapsed(false).debugMillisWithUnit() << "deleting SoundManager";
CLEAR_AND_CHECK_DELETED(m_pSoundManager);
// ControllerManager depends on Config
qDebug() << t.elapsed(false).debugMillisWithUnit() << "deleting ControllerManager";
CLEAR_AND_CHECK_DELETED(m_pControllerManager);
#ifdef __VINYLCONTROL__
// VinylControlManager depends on a CO the engine owns
// (vinylcontrol_enabled in VinylControlControl)
qDebug() << t.elapsed(false).debugMillisWithUnit() << "deleting VinylControlManager";
CLEAR_AND_CHECK_DELETED(m_pVCManager);
#endif
// CoverArtCache is fairly independent of everything else.
CoverArtCache::destroy();
Clipboard::destroy();
// PlayerManager depends on Engine, SoundManager, VinylControlManager, and Config
// The player manager has to be deleted before the library to ensure
// that all modified track metadata of loaded tracks is saved.
qDebug() << t.elapsed(false).debugMillisWithUnit() << "deleting PlayerManager";
CLEAR_AND_CHECK_DELETED(m_pPlayerManager);
// Delete the library after the view so there are no dangling pointers to
// the data models.
// Depends on RecordingManager and PlayerManager
qDebug() << t.elapsed(false).debugMillisWithUnit() << "deleting Library";
CLEAR_AND_CHECK_DELETED(m_pLibrary);
// RecordingManager depends on config, engine
qDebug() << t.elapsed(false).debugMillisWithUnit() << "deleting RecordingManager";
CLEAR_AND_CHECK_DELETED(m_pRecordingManager);
#ifdef __BROADCAST__
// BroadcastManager depends on config, engine
qDebug() << t.elapsed(false).debugMillisWithUnit() << "deleting BroadcastManager";
CLEAR_AND_CHECK_DELETED(m_pBroadcastManager);
#endif
// EngineMixer depends on Config and m_pEffectsManager.
qDebug() << t.elapsed(false).debugMillisWithUnit() << "deleting EngineMixer";
CLEAR_AND_CHECK_DELETED(m_pEngine);
#ifdef __RUBBERBAND__
RubberBandWorkerPool::destroy();
#endif
// Destroy PlayerInfo explicitly to release the track
// pointers of tracks that were still loaded in decks
// or samplers when PlayerManager was destroyed!
// Do this after deleting EngineMixer which makes use of
// PlayerInfo in EngineRecord.
PlayerInfo::destroy();
qDebug() << t.elapsed(false).debugMillisWithUnit() << "deleting EffectsManager";
CLEAR_AND_CHECK_DELETED(m_pEffectsManager);
// Delete the track collections after all internal track pointers
// in other components have been released by deleting those components
// beforehand!
qDebug() << t.elapsed(false).debugMillisWithUnit() << "detaching all track collections";
CLEAR_AND_CHECK_DELETED(m_pTrackCollectionManager);
qDebug() << t.elapsed(false).debugMillisWithUnit() << "closing database connection(s)";
m_pDbConnectionPool->destroyThreadLocalConnection();
m_pDbConnectionPool.reset(); // should drop the last reference
m_pTouchShift.reset();