blob: d6cab41be54e4bf4e549e3e58213e8f4b93e4856 (
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
|
/*
* Copyright (C) 2005-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.
*/
#pragma once
#include "BackgroundInfoLoader.h"
#include "MusicDatabase.h"
class CFileItemList;
class CMusicThumbLoader;
namespace MUSIC_INFO
{
class CMusicInfoLoader : public CBackgroundInfoLoader
{
public:
CMusicInfoLoader();
~CMusicInfoLoader() override;
void UseCacheOnHD(const std::string& strFileName);
bool LoadItem(CFileItem* pItem) override;
bool LoadItemCached(CFileItem* pItem) override;
bool LoadItemLookup(CFileItem* pItem) override;
static bool LoadAdditionalTagInfo(CFileItem* pItem);
protected:
void OnLoaderStart() override;
void OnLoaderFinish() override;
void LoadCache(const std::string& strFileName, CFileItemList& items);
void SaveCache(const std::string& strFileName, CFileItemList& items);
protected:
std::string m_strCacheFileName;
CFileItemList* m_mapFileItems;
MAPSONGS m_songsMap;
std::string m_strPrevPath;
CMusicDatabase m_musicDatabase;
unsigned int m_databaseHits;
unsigned int m_tagReads;
CMusicThumbLoader *m_thumbLoader;
};
}
|