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

97 lines
2.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/>.
*
*/
#ifndef XFILECACHESTRATEGY_H
#define XFILECACHESTRATEGY_H
#include <stdint.h>
#ifdef _LINUX
#include "PlatformDefs.h"
#include "XHandlePublic.h"
#include "XFileUtils.h"
#endif
#include "utils/CriticalSection.h"
#include "utils/Event.h"
namespace XFILE {
#define CACHE_RC_OK 0
#define CACHE_RC_ERROR -1
#define CACHE_RC_WOULD_BLOCK -2
#define CACHE_RC_TIMEOUT -3
class CCacheStrategy{
public:
CCacheStrategy();
virtual ~CCacheStrategy();
virtual int Open() = 0;
virtual void Close() = 0;
virtual int WriteToCache(const char *pBuffer, size_t iSize) = 0;
virtual int ReadFromCache(char *pBuffer, size_t iMaxSize) = 0;
virtual int64_t WaitForData(unsigned int iMinAvail, unsigned int iMillis) = 0;
virtual int64_t Seek(int64_t iFilePosition) = 0;
virtual void Reset(int64_t iSourcePosition) = 0;
virtual void EndOfInput(); // mark the end of the input stream so that Read will know when to return EOF
virtual bool IsEndOfInput();
virtual void ClearEndOfInput();
CEvent m_space;
protected:
bool m_bEndOfInput;
};
/**
*/
class CSimpleFileCache : public CCacheStrategy {
public:
CSimpleFileCache();
virtual ~CSimpleFileCache();
virtual int Open() ;
virtual void Close() ;
virtual int WriteToCache(const char *pBuffer, size_t iSize) ;
virtual int ReadFromCache(char *pBuffer, size_t iMaxSize) ;
virtual int64_t WaitForData(unsigned int iMinAvail, unsigned int iMillis) ;
virtual int64_t Seek(int64_t iFilePosition);
virtual void Reset(int64_t iSourcePosition);
virtual void EndOfInput();
int64_t GetAvailableRead();
protected:
HANDLE m_hCacheFileRead;
HANDLE m_hCacheFileWrite;
HANDLE m_hDataAvailEvent;
volatile int64_t m_nStartPosition;
volatile int64_t m_nWritePosition;
volatile int64_t m_nReadPosition;
};
}
#endif