mirror of
https://github.com/Team-Resurgent/XBMC4Xbox.git
synced 2026-08-15 11:18:13 -07:00
121 lines
2.9 KiB
C++
121 lines
2.9 KiB
C++
/*
|
|||
|
|
* Copyright (C) 2005-2013 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 "MultiPathFile.h"
|
||
|
|
#include "MultiPathDirectory.h"
|
||
|
|
#include "utils/URIUtils.h"
|
||
|
|
#include "URL.h"
|
||
|
|
|
||
|
|
using namespace XFILE;
|
||
|
|
using namespace std;
|
||
|
|
using namespace XFILE;
|
||
|
|
|
||
|
|
CMultiPathFile::CMultiPathFile(void)
|
||
|
|
{
|
||
|
|
}
|
||
|
|
|
||
|
|
CMultiPathFile::~CMultiPathFile(void)
|
||
|
|
{
|
||
|
|
Close();
|
||
|
|
}
|
||
|
|
|
||
|
|
bool CMultiPathFile::Open(const CURL& url)
|
||
|
|
{
|
||
|
|
// grab the filename off the url
|
||
|
|
CStdString path, fileName;
|
||
|
|
URIUtils::Split(url.Get(), path, fileName);
|
||
|
|
vector<CStdString> vecPaths;
|
||
|
|
if (!CMultiPathDirectory::GetPaths(path, vecPaths))
|
||
|
|
return false;
|
||
|
|
|
||
|
|
for (unsigned int i = 0; i < vecPaths.size(); i++)
|
||
|
|
{
|
||
|
|
CStdString filePath = vecPaths[i];
|
||
|
|
filePath = URIUtils::AddFileToFolder(filePath, fileName);
|
||
|
|
if (m_file.Open(filePath))
|
||
|
|
return true;
|
||
|
|
}
|
||
|
|
return false;
|
||
|
|
}
|
||
|
|
|
||
|
|
bool CMultiPathFile::Exists(const CURL& url)
|
||
|
|
{
|
||
|
|
// grab the filename off the url
|
||
|
|
CStdString path, fileName;
|
||
|
|
URIUtils::Split(url.Get(), path, fileName);
|
||
|
|
vector<CStdString> vecPaths;
|
||
|
|
if (!CMultiPathDirectory::GetPaths(path, vecPaths))
|
||
|
|
return false;
|
||
|
|
|
||
|
|
for (unsigned int i = 0; i < vecPaths.size(); i++)
|
||
|
|
{
|
||
|
|
CStdString filePath = vecPaths[i];
|
||
|
|
filePath = URIUtils::AddFileToFolder(filePath, fileName);
|
||
|
|
if (CFile::Exists(filePath))
|
||
|
|
return true;
|
||
|
|
}
|
||
|
|
return false;
|
||
|
|
}
|
||
|
|
|
||
|
|
int CMultiPathFile::Stat(const CURL& url, struct __stat64* buffer)
|
||
|
|
{
|
||
|
|
// grab the filename off the url
|
||
|
|
CStdString path, fileName;
|
||
|
|
URIUtils::Split(url.Get(), path, fileName);
|
||
|
|
vector<CStdString> vecPaths;
|
||
|
|
if (!CMultiPathDirectory::GetPaths(path, vecPaths))
|
||
|
|
return false;
|
||
|
|
|
||
|
|
for (unsigned int i = 0; i < vecPaths.size(); i++)
|
||
|
|
{
|
||
|
|
CStdString filePath = vecPaths[i];
|
||
|
|
filePath = URIUtils::AddFileToFolder(filePath, fileName);
|
||
|
|
int ret = CFile::Stat(filePath, buffer);
|
||
|
|
if (ret == 0)
|
||
|
|
return ret;
|
||
|
|
}
|
||
|
|
return -1;
|
||
|
|
}
|
||
|
|
|
||
|
|
unsigned int CMultiPathFile::Read(void* lpBuf, int64_t uiBufSize)
|
||
|
|
{
|
||
|
|
return m_file.Read(lpBuf, uiBufSize);
|
||
|
|
}
|
||
|
|
|
||
|
|
int64_t CMultiPathFile::Seek(int64_t iFilePosition, int iWhence /*=SEEK_SET*/)
|
||
|
|
{
|
||
|
|
return m_file.Seek(iFilePosition, iWhence);
|
||
|
|
}
|
||
|
|
|
||
|
|
void CMultiPathFile::Close()
|
||
|
|
{
|
||
|
|
m_file.Close();
|
||
|
|
}
|
||
|
|
|
||
|
|
int64_t CMultiPathFile::GetPosition()
|
||
|
|
{
|
||
|
|
return m_file.GetPosition();
|
||
|
|
}
|
||
|
|
|
||
|
|
int64_t CMultiPathFile::GetLength()
|
||
|
|
{
|
||
|
|
return m_file.GetLength();
|
||
|
|
}
|