mirror of
https://github.com/Team-Resurgent/XBMC4Xbox.git
synced 2026-08-15 11:18:13 -07:00
109 lines
2.4 KiB
C++
109 lines
2.4 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 "MusicDatabaseFile.h"
|
||
|
|
#include "music/MusicDatabase.h"
|
||
|
|
#include "Util.h"
|
||
|
|
#include "utils/URIUtils.h"
|
||
|
|
#include "URL.h"
|
||
|
|
|
||
|
|
#include <sys/stat.h>
|
||
|
|
|
||
|
|
using namespace XFILE;
|
||
|
|
|
||
|
|
CMusicDatabaseFile::CMusicDatabaseFile(void)
|
||
|
|
{
|
||
|
|
}
|
||
|
|
|
||
|
|
CMusicDatabaseFile::~CMusicDatabaseFile(void)
|
||
|
|
{
|
||
|
|
Close();
|
||
|
|
}
|
||
|
|
|
||
|
|
CStdString CMusicDatabaseFile::TranslateUrl(const CURL& url)
|
||
|
|
{
|
||
|
|
CMusicDatabase musicDatabase;
|
||
|
|
if (!musicDatabase.Open())
|
||
|
|
return "";
|
||
|
|
|
||
|
|
CStdString strFileName=URIUtils::GetFileName(url.Get());
|
||
|
|
CStdString strExtension;
|
||
|
|
URIUtils::GetExtension(strFileName, strExtension);
|
||
|
|
URIUtils::RemoveExtension(strFileName);
|
||
|
|
|
||
|
|
if (!StringUtils::IsNaturalNumber(strFileName))
|
||
|
|
return "";
|
||
|
|
|
||
|
|
long idSong=atol(strFileName.c_str());
|
||
|
|
|
||
|
|
CSong song;
|
||
|
|
if (!musicDatabase.GetSongById(idSong, song))
|
||
|
|
return "";
|
||
|
|
|
||
|
|
CStdString strExtensionFromDb;
|
||
|
|
URIUtils::GetExtension(song.strFileName, strExtensionFromDb);
|
||
|
|
|
||
|
|
if (!strExtensionFromDb.Equals(strExtension))
|
||
|
|
return "";
|
||
|
|
|
||
|
|
return song.strFileName;
|
||
|
|
}
|
||
|
|
|
||
|
|
bool CMusicDatabaseFile::Open(const CURL& url)
|
||
|
|
{
|
||
|
|
return m_file.Open(TranslateUrl(url));
|
||
|
|
}
|
||
|
|
|
||
|
|
bool CMusicDatabaseFile::Exists(const CURL& url)
|
||
|
|
{
|
||
|
|
return !TranslateUrl(url).IsEmpty();
|
||
|
|
}
|
||
|
|
|
||
|
|
int CMusicDatabaseFile::Stat(const CURL& url, struct __stat64* buffer)
|
||
|
|
{
|
||
|
|
return m_file.Stat(TranslateUrl(url), buffer);
|
||
|
|
}
|
||
|
|
|
||
|
|
unsigned int CMusicDatabaseFile::Read(void* lpBuf, int64_t uiBufSize)
|
||
|
|
{
|
||
|
|
return m_file.Read(lpBuf, uiBufSize);
|
||
|
|
}
|
||
|
|
|
||
|
|
int64_t CMusicDatabaseFile::Seek(int64_t iFilePosition, int iWhence /*=SEEK_SET*/)
|
||
|
|
{
|
||
|
|
return m_file.Seek(iFilePosition, iWhence);
|
||
|
|
}
|
||
|
|
|
||
|
|
void CMusicDatabaseFile::Close()
|
||
|
|
{
|
||
|
|
m_file.Close();
|
||
|
|
}
|
||
|
|
|
||
|
|
int64_t CMusicDatabaseFile::GetPosition()
|
||
|
|
{
|
||
|
|
return m_file.GetPosition();
|
||
|
|
}
|
||
|
|
|
||
|
|
int64_t CMusicDatabaseFile::GetLength()
|
||
|
|
{
|
||
|
|
return m_file.GetLength();
|
||
|
|
}
|
||
|
|
|