blob: 7f4adfdf5fb553e8a596d5a412c797fc90b452a0 (
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
44
45
|
/*
* Copyright (C) 2014-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 "VideoLibraryCleaningJob.h"
#include "dialogs/GUIDialogExtendedProgressBar.h"
#include "video/VideoDatabase.h"
CVideoLibraryCleaningJob::CVideoLibraryCleaningJob(const std::set<int>& paths /* = std::set<int>() */, bool showDialog /* = false */)
: CVideoLibraryProgressJob(NULL),
m_paths(paths),
m_showDialog(showDialog)
{ }
CVideoLibraryCleaningJob::CVideoLibraryCleaningJob(const std::set<int>& paths, CGUIDialogProgressBarHandle* progressBar)
: CVideoLibraryProgressJob(progressBar),
m_paths(paths),
m_showDialog(false)
{ }
CVideoLibraryCleaningJob::~CVideoLibraryCleaningJob() = default;
bool CVideoLibraryCleaningJob::operator==(const CJob* job) const
{
if (strcmp(job->GetType(), GetType()) != 0)
return false;
const CVideoLibraryCleaningJob* cleaningJob = dynamic_cast<const CVideoLibraryCleaningJob*>(job);
if (cleaningJob == NULL)
return false;
return m_paths == cleaningJob->m_paths &&
m_showDialog == cleaningJob->m_showDialog;
}
bool CVideoLibraryCleaningJob::Work(CVideoDatabase &db)
{
db.CleanDatabase(GetProgressBar(), m_paths, m_showDialog);
return true;
}
|