-
-
Notifications
You must be signed in to change notification settings - Fork 1.3k
/
Copy pathcoreservices.cpp
622 lines (517 loc) · 22.8 KB
/
coreservices.cpp
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
#include "coreservices.h"
#include <QApplication>
#include <QFileDialog>
#include <QStandardPaths>
#include <QtGlobal>
#ifdef __BROADCAST__
#include "broadcast/broadcastmanager.h"
#endif
#include "control/controlindicatortimer.h"
#include "controllers/controllermanager.h"
#include "controllers/keyboard/keyboardeventfilter.h"
#include "database/mixxxdb.h"
#include "effects/effectsmanager.h"
#include "engine/enginemixer.h"
#include "library/coverartcache.h"
#include "library/library.h"
#include "library/library_prefs.h"
#include "library/trackcollection.h"
#include "library/trackcollectionmanager.h"
#include "mixer/playerinfo.h"
#include "mixer/playermanager.h"
#include "moc_coreservices.cpp"
#include "preferences/settingsmanager.h"
#ifdef __MODPLUG__
#include "preferences/dialog/dlgprefmodplug.h"
#endif
#include "skin/skincontrols.h"
#include "soundio/soundmanager.h"
#include "sources/soundsourceproxy.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) && QT_VERSION < QT_VERSION_CHECK(6, 0, 0)
#include <X11/Xlib.h>
#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
inline QLocale inputLocale() {
// Use the default config for local keyboard
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("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("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);
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(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();
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());
// 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 hasChanged_MusicDir = false;
if (m_pTrackCollectionManager->internalCollection()->loadRootDirs().isEmpty()) {
// 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));
if (!fd.isEmpty()) {
// adds Folder to database.
m_pLibrary->slotRequestAddDir(fd);
hasChanged_MusicDir = 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 = 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(","));
// Scan the library directory. Do this after the skinloader has
// loaded a skin, see issue #6625
if (rescan || hasChanged_MusicDir || m_pSettingsManager->shouldRescanLibrary()) {
m_pTrackCollectionManager->startLibraryScan();
}
// 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();
for (int i = 0; i < (int)m_pPlayerManager->numDecks() && i < musicFiles.count(); ++i) {
if (SoundSourceProxy::isFileNameSupported(musicFiles.at(i))) {
m_pPlayerManager->slotLoadToDeck(musicFiles.at(i), i + 1);
}
}
m_isInitialized = true;
}
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);
}
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();
// 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();
// 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);
// 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();
m_pSkinControls.reset();
m_pControlIndicatorTimer.reset();
t.elapsed(true);
}
} // namespace mixxx