mirror of
https://github.com/Team-Resurgent/xbmc4xbox-redux.git
synced 2026-08-15 20:18:49 -07:00
157 lines
3.7 KiB
C++
Executable File
157 lines
3.7 KiB
C++
Executable File
/*
|
|
* Copyright (C) 2005-2015 Team Kodi
|
|
* http://kodi.tv
|
|
*
|
|
* 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 Kodi; see the file COPYING. If not, see
|
|
* <http://www.gnu.org/licenses/>.
|
|
*
|
|
*/
|
|
|
|
#include "BackgroundInfoLoader.h"
|
|
#include "FileItem.h"
|
|
#include "threads/SingleLock.h"
|
|
#include "utils/log.h"
|
|
#include "URL.h"
|
|
|
|
CBackgroundInfoLoader::CBackgroundInfoLoader() : m_thread (NULL)
|
|
{
|
|
m_bStop = true;
|
|
m_pObserver=NULL;
|
|
m_pProgressCallback=NULL;
|
|
m_pVecItems = NULL;
|
|
m_bIsLoading = false;
|
|
}
|
|
|
|
CBackgroundInfoLoader::~CBackgroundInfoLoader()
|
|
{
|
|
StopThread();
|
|
}
|
|
|
|
void CBackgroundInfoLoader::Run()
|
|
{
|
|
try
|
|
{
|
|
if (!m_vecItems.empty())
|
|
{
|
|
OnLoaderStart();
|
|
|
|
// Stage 1: All "fast" stuff we have already cached
|
|
for (std::vector<CFileItemPtr>::const_iterator iter = m_vecItems.begin(); iter != m_vecItems.end(); ++iter)
|
|
{
|
|
CFileItemPtr pItem = *iter;
|
|
|
|
// Ask the callback if we should abort
|
|
if ((m_pProgressCallback && m_pProgressCallback->Abort()) || m_bStop)
|
|
break;
|
|
|
|
try
|
|
{
|
|
if (LoadItemCached(pItem.get()) && m_pObserver)
|
|
m_pObserver->OnItemLoaded(pItem.get());
|
|
}
|
|
catch (...)
|
|
{
|
|
CLog::Log(LOGERROR, "CBackgroundInfoLoader::LoadItemCached - Unhandled exception for item %s", CURL::GetRedacted(pItem->GetPath()).c_str());
|
|
}
|
|
}
|
|
|
|
// Stage 2: All "slow" stuff that we need to lookup
|
|
for (std::vector<CFileItemPtr>::const_iterator iter = m_vecItems.begin(); iter != m_vecItems.end(); ++iter)
|
|
{
|
|
CFileItemPtr pItem = *iter;
|
|
|
|
// Ask the callback if we should abort
|
|
if ((m_pProgressCallback && m_pProgressCallback->Abort()) || m_bStop)
|
|
break;
|
|
|
|
try
|
|
{
|
|
if (LoadItemLookup(pItem.get()) && m_pObserver)
|
|
m_pObserver->OnItemLoaded(pItem.get());
|
|
}
|
|
catch (...)
|
|
{
|
|
CLog::Log(LOGERROR, "CBackgroundInfoLoader::LoadItemLookup - Unhandled exception for item %s", CURL::GetRedacted(pItem->GetPath()).c_str());
|
|
}
|
|
}
|
|
}
|
|
|
|
OnLoaderFinish();
|
|
m_bIsLoading = false;
|
|
}
|
|
catch (...)
|
|
{
|
|
m_bIsLoading = false;
|
|
CLog::Log(LOGERROR, "%s - Unhandled exception", __FUNCTION__);
|
|
}
|
|
}
|
|
|
|
void CBackgroundInfoLoader::Load(CFileItemList& items)
|
|
{
|
|
StopThread();
|
|
|
|
if (items.IsEmpty())
|
|
return;
|
|
|
|
CSingleLock lock(m_lock);
|
|
|
|
for (int nItem=0; nItem < items.Size(); nItem++)
|
|
m_vecItems.push_back(items[nItem]);
|
|
|
|
m_pVecItems = &items;
|
|
m_bStop = false;
|
|
m_bIsLoading = true;
|
|
|
|
m_thread = new CThread(this, "BackgroundLoader");
|
|
m_thread->Create();
|
|
m_thread->SetPriority(THREAD_PRIORITY_BELOW_NORMAL);
|
|
}
|
|
|
|
void CBackgroundInfoLoader::StopAsync()
|
|
{
|
|
m_bStop = true;
|
|
}
|
|
|
|
|
|
void CBackgroundInfoLoader::StopThread()
|
|
{
|
|
StopAsync();
|
|
|
|
if (m_thread)
|
|
{
|
|
m_thread->StopThread();
|
|
delete m_thread;
|
|
m_thread = NULL;
|
|
}
|
|
m_vecItems.clear();
|
|
m_pVecItems = NULL;
|
|
m_bIsLoading = false;
|
|
}
|
|
|
|
bool CBackgroundInfoLoader::IsLoading()
|
|
{
|
|
return m_bIsLoading;
|
|
}
|
|
|
|
void CBackgroundInfoLoader::SetObserver(IBackgroundLoaderObserver* pObserver)
|
|
{
|
|
m_pObserver = pObserver;
|
|
}
|
|
|
|
void CBackgroundInfoLoader::SetProgressCallback(IProgressCallback* pCallback)
|
|
{
|
|
m_pProgressCallback = pCallback;
|
|
}
|
|
|