blob: a50e62f3e8f17b2704d7d65e4f6c4d70e0080783 (
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
51
52
53
54
55
56
57
58
59
60
61
62
63
|
#pragma once
/*
* Copyright (C) 2014 Team XBMC
* http://xbmc.org
*
* This Program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2, or (at your option)
* any later version.
*
* This Program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with XBMC; see the file COPYING. If not, see
* <http://www.gnu.org/licenses/>.
*
*/
#include <string>
#include "FileItem.h"
#include "video/jobs/VideoLibraryProgressJob.h"
/*!
\brief Video library job implementation for refreshing a single item.
*/
class CVideoLibraryRefreshingJob : public CVideoLibraryProgressJob
{
public:
/*!
\brief Creates a new video library cleaning job for the given paths.
\param[inout] item Video item to be refreshed
\param[in] forceRefresh Whether to force a complete refresh (including NFO or internet lookup)
\param[in] refreshAll Whether to refresh all sub-items (in case of a tvshow)
\param[in] ignoreNfo Whether or not to ignore local NFO files
\param[in] searchTitle Title to use for the search (instead of determining it from the item's filename/path)
*/
CVideoLibraryRefreshingJob(CFileItemPtr item, bool forceRefresh, bool refreshAll, bool ignoreNfo = false, const std::string& searchTitle = "");
virtual ~CVideoLibraryRefreshingJob();
// specialization of CJob
virtual const char *GetType() const { return "VideoLibraryRefreshingJob"; }
virtual bool operator==(const CJob* job) const;
void SetShowDialogs(bool showDialogs) { m_showDialogs = showDialogs; }
protected:
// implementation of CVideoLibraryJob
virtual bool Work(CVideoDatabase &db);
private:
CFileItemPtr m_item;
bool m_showDialogs;
bool m_forceRefresh;
bool m_refreshAll;
bool m_ignoreNfo;
std::string m_searchTitle;
};
|