blob: ca63d13290e96524f4b92cce35d5a8ad2a85ca72 (
plain)
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
|
/*
* Copyright (C) 2017-2018 Team Kodi
* This file is part of Kodi - https://kodi.tv
*
* SPDX-License-Identifier: GPL-2.0-or-later
* See LICENSES/README.md for more information.
*/
#include "MusicLibraryExportJob.h"
#include "dialogs/GUIDialogProgress.h"
#include "music/MusicDatabase.h"
#include "settings/LibExportSettings.h"
CMusicLibraryExportJob::CMusicLibraryExportJob(const CLibExportSettings& settings, CGUIDialogProgress* progressDialog)
: CMusicLibraryProgressJob(NULL),
m_settings(settings)
{
if (progressDialog)
SetProgressIndicators(NULL, progressDialog);
SetAutoClose(true);
}
CMusicLibraryExportJob::~CMusicLibraryExportJob() = default;
bool CMusicLibraryExportJob::operator==(const CJob* job) const
{
if (strcmp(job->GetType(), GetType()) != 0)
return false;
const CMusicLibraryExportJob* exportJob = dynamic_cast<const CMusicLibraryExportJob*>(job);
if (exportJob == NULL)
return false;
return !(m_settings != exportJob->m_settings);
}
bool CMusicLibraryExportJob::Work(CMusicDatabase &db)
{
db.ExportToXML(m_settings, GetProgressDialog());
return true;
}
|