![]() |
Kodi Documentation 22.0
Kodi is an open source media player and entertainment hub.
|
Music library job implementation for scanning items. Uses CMusicInfoScanner for scanning and can be run with or without a visible progress bar. More...
#include <MusicLibraryScanningJob.h>
Public Member Functions | |
CMusicLibraryScanningJob (const std::string &directory, int flags, bool showProgress=true) | |
Creates a new music library tag scanning and data scraping job. | |
~CMusicLibraryScanningJob () override | |
bool | CanBeCancelled () const override |
Whether the job can be cancelled or not. | |
bool | Cancel () override |
Tries to cancel the running job. | |
const char * | GetType () const override |
Function that returns the type of job. | |
bool | Equals (const CJob *job) const override |
Function that compares this job instance with the given job instance. | |
![]() | |
~CMusicLibraryJob () override | |
bool | DoWork () override |
Main workhorse function of CJob instances. | |
![]() | |
CJob ()=default | |
virtual | ~CJob ()=default |
Destructor for job objects. | |
void | SetProgressCallback (CJobManager *callback) |
Function to set a callback for jobs to report progress. | |
virtual bool | ShouldCancel (unsigned int progress, unsigned int total) const |
Function for longer jobs to report progress and check whether they have been cancelled. | |
Protected Member Functions | |
bool | Work (CMusicDatabase &db) override |
Worker method to be implemented by an actual implementation. | |
![]() | |
CMusicLibraryJob () | |
Additional Inherited Members | |
![]() | |
enum | PRIORITY { PRIORITY_LOW_PAUSABLE = 0 , PRIORITY_LOW , PRIORITY_NORMAL , PRIORITY_HIGH , PRIORITY_DEDICATED } |
Priority levels for jobs, specified by clients when adding jobs to the CJobManager. More... | |
Music library job implementation for scanning items. Uses CMusicInfoScanner for scanning and can be run with or without a visible progress bar.
CMusicLibraryScanningJob::CMusicLibraryScanningJob | ( | const std::string & | directory, |
int | flags, | ||
bool | showProgress = true ) |
Creates a new music library tag scanning and data scraping job.
[in] | directory | Directory to be scanned for new items |
[in] | flags | What kind of scan to do |
[in] | showProgress | Whether to show a progress bar or not |
|
overridedefault |
|
inlineoverridevirtual |
Whether the job can be cancelled or not.
Reimplemented from CMusicLibraryJob.
|
overridevirtual |
Tries to cancel the running job.
Reimplemented from CMusicLibraryJob.
Function that compares this job instance with the given job instance.
CJob subclasses may optionally implement this to provide customized comparison functionality. This is useful for the CJobManager::AddJob() routine, which preempts similar jobs with the new job.
job | the job to compared with this CJob instance. |
Reimplemented from CJob.
|
inlineoverridevirtual |
Function that returns the type of job.
CJob subclasses may optionally implement this function to specify the type of job. This is useful for the CJobManager::AddJob() routine, which preempts similar jobs with the new job.
Reimplemented from CMusicLibraryJob.
|
overrideprotectedvirtual |
Worker method to be implemented by an actual implementation.
[in] | db | Already open music database to be used for interaction |
Implements CMusicLibraryJob.