Files
Rocky5 921f9fe9f8 Clean Copy
If ever adding the XBMC4Xbox source to GitHub use "git add -f -A" or it wont add all the files.
2024-01-08 19:01:29 +00:00

207 lines
4.5 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 "system.h"
#include "utils/log.h"
#include "CDDAFile.h"
#include <sys/stat.h>
#include "utils/URIUtils.h"
#include "storage/DetectDVDType.h"
#include "URL.h"
using namespace MEDIA_DETECT;
using namespace XFILE;
CCDDAFile::CCDDAFile(void)
{
m_pCdIo = NULL;
m_lsnStart = CDIO_INVALID_LSN;
m_lsnCurrent = CDIO_INVALID_LSN;
m_lsnEnd = CDIO_INVALID_LSN;
m_cdio = CLibcdio::GetInstance();
}
CCDDAFile::~CCDDAFile(void)
{
Close();
}
bool CCDDAFile::Open(const CURL& url)
{
if (!CDetectDVDMedia::IsDiscInDrive() || !IsValidFile(url))
return false;
// Open the dvd drive
m_pCdIo = m_cdio->cdio_open_win32("D:");
if (!m_pCdIo)
{
CLog::Log(LOGERROR, "file cdda: Opening the dvd drive failed");
return false;
}
int iTrack = GetTrackNum(url);
m_lsnStart = m_cdio->cdio_get_track_lsn(m_pCdIo, iTrack);
m_lsnEnd = m_cdio->cdio_get_track_last_lsn(m_pCdIo, iTrack);
m_lsnCurrent = m_lsnStart;
if (m_lsnStart == CDIO_INVALID_LSN || m_lsnEnd == CDIO_INVALID_LSN)
{
m_cdio->cdio_destroy(m_pCdIo);
m_pCdIo = NULL;
return false;
}
return true;
}
bool CCDDAFile::Exists(const CURL& url)
{
if (!IsValidFile(url))
return false;
int iTrack = GetTrackNum(url);
if (!Open(url))
return false;
int iLastTrack = m_cdio->cdio_get_last_track_num(m_pCdIo);
if (iLastTrack == CDIO_INVALID_TRACK)
return false;
return (iTrack > 0 && iTrack <= iLastTrack);
}
int CCDDAFile::Stat(const CURL& url, struct __stat64* buffer)
{
if (Open(url))
{
memset(buffer, 0, sizeof(struct __stat64));
buffer->st_size = GetLength();
buffer->st_mode = _S_IFREG;
Close();
return 0;
}
errno = ENOENT;
return -1;
}
unsigned int CCDDAFile::Read(void* lpBuf, int64_t uiBufSize)
{
if (!m_pCdIo || !CDetectDVDMedia::IsDiscInDrive())
return 0;
int iSectorCount = (int)uiBufSize / CDIO_CD_FRAMESIZE_RAW;
if (iSectorCount <= 0)
return 0;
// Are there enough sectors left to read
if (m_lsnCurrent + iSectorCount > m_lsnEnd)
iSectorCount = m_lsnEnd - m_lsnCurrent;
if (m_cdio->cdio_read_audio_sectors(m_pCdIo, lpBuf, m_lsnCurrent, iSectorCount) != DRIVER_OP_SUCCESS)
{
CLog::Log(LOGERROR, "file cdda: Reading %d sectors of audio data starting at lsn %d failed", iSectorCount, m_lsnCurrent);
return 0;
}
m_lsnCurrent += iSectorCount;
return iSectorCount*CDIO_CD_FRAMESIZE_RAW;
}
int64_t CCDDAFile::Seek(int64_t iFilePosition, int iWhence /*=SEEK_SET*/)
{
if (!m_pCdIo)
return -1;
lsn_t lsnPosition = (int)iFilePosition / CDIO_CD_FRAMESIZE_RAW;
switch (iWhence)
{
case SEEK_SET:
// cur = pos
m_lsnCurrent = m_lsnStart + lsnPosition;
break;
case SEEK_CUR:
// cur += pos
m_lsnCurrent += lsnPosition;
break;
case SEEK_END:
// end += pos
m_lsnCurrent = m_lsnEnd + lsnPosition;
break;
default:
return -1;
}
return ((m_lsnCurrent -m_lsnStart)*CDIO_CD_FRAMESIZE_RAW);
}
void CCDDAFile::Close()
{
if (m_pCdIo)
{
m_cdio->cdio_destroy(m_pCdIo);
m_pCdIo = NULL;
}
}
int64_t CCDDAFile::GetPosition()
{
if (!m_pCdIo)
return 0;
return ((m_lsnCurrent -m_lsnStart)*CDIO_CD_FRAMESIZE_RAW);
}
int64_t CCDDAFile::GetLength()
{
if (!m_pCdIo)
return 0;
return ((m_lsnEnd -m_lsnStart)*CDIO_CD_FRAMESIZE_RAW);
}
bool CCDDAFile::IsValidFile(const CURL& url)
{
// Only .cdda files are supported
CStdString strExtension;
URIUtils::GetExtension(url.Get(), strExtension);
strExtension.MakeLower();
return (strExtension == ".cdda");
}
int CCDDAFile::GetTrackNum(const CURL& url)
{
CStdString strFileName = url.Get();
// get track number from "cdda://local/01.cdda"
return atoi(strFileName.substr(13, strFileName.size() - 13 - 5).c_str());
}
#define SECTOR_COUNT 55 // max. sectors that can be read at once
int CCDDAFile::GetChunkSize()
{
return SECTOR_COUNT*CDIO_CD_FRAMESIZE_RAW;
}