blob: f938420b8e22edbf47be1e0fd9126052410acfda (
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
46
47
48
49
50
|
/*
* 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 "VideoLibraryScanningJob.h"
#include "video/VideoDatabase.h"
CVideoLibraryScanningJob::CVideoLibraryScanningJob(const std::string& directory, bool scanAll /* = false */, bool showProgress /* = true */)
: m_scanner(),
m_directory(directory),
m_showProgress(showProgress),
m_scanAll(scanAll)
{ }
CVideoLibraryScanningJob::~CVideoLibraryScanningJob() = default;
bool CVideoLibraryScanningJob::Cancel()
{
if (!m_scanner.IsScanning())
return true;
m_scanner.Stop();
return true;
}
bool CVideoLibraryScanningJob::operator==(const CJob* job) const
{
if (strcmp(job->GetType(), GetType()) != 0)
return false;
const CVideoLibraryScanningJob* scanningJob = dynamic_cast<const CVideoLibraryScanningJob*>(job);
if (scanningJob == NULL)
return false;
return m_directory == scanningJob->m_directory &&
m_scanAll == scanningJob->m_scanAll;
}
bool CVideoLibraryScanningJob::Work(CVideoDatabase &db)
{
m_scanner.ShowDialog(m_showProgress);
m_scanner.Start(m_directory, m_scanAll);
return true;
}
|