123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307 |
- /******************************************************************************
- @File PVRTResourceFile.cpp
- @Title PVRTResourceFile.cpp
- @Version
- @Copyright Copyright (C) Imagination Technologies Limited.
- @Platform ANSI compatible
- @Description Simple resource file wrapper
- ******************************************************************************/
- #include "PVRTResourceFile.h"
- #include <stdio.h>
- #include <string.h>
- #include "PVRTResourceFile.h"
- #include "PVRTString.h"
- #include "PVRTMemoryFileSystem.h"
- CPVRTString CPVRTResourceFile::s_ReadPath;
- /*!***************************************************************************
- @Function SetReadPath
- @Input pszReadPath The path where you would like to read from
- @Description Sets the read path
- *****************************************************************************/
- void CPVRTResourceFile::SetReadPath(const char* const pszReadPath)
- {
- s_ReadPath = (pszReadPath) ? pszReadPath : "";
- }
- /*!***************************************************************************
- @Function GetReadPath
- @Returns The currently set read path
- @Description Returns the currently set read path
- *****************************************************************************/
- CPVRTString CPVRTResourceFile::GetReadPath()
- {
- return CPVRTString(s_ReadPath);
- }
- /*!***************************************************************************
- @Function CPVRTResourceFile
- @Input pszFilename Name of the file you would like to open
- @Description Constructor
- *****************************************************************************/
- CPVRTResourceFile::CPVRTResourceFile(const char* const pszFilename) :
- m_bOpen(false),
- m_bMemoryFile(false),
- m_Size(0),
- m_pData(0)
- {
- CPVRTString Path(s_ReadPath);
- Path += pszFilename;
- FILE* pFile = fopen(Path.c_str(), "rb");
- if (pFile)
- {
- // Get the file size
- fseek(pFile, 0, SEEK_END);
- m_Size = ftell(pFile);
- fseek(pFile, 0, SEEK_SET);
- // read the data, append a 0 byte as the data might represent a string
- char* pData = new char[m_Size + 1];
- pData[m_Size] = '\0';
- size_t BytesRead = fread(pData, 1, m_Size, pFile);
- if (BytesRead != m_Size)
- {
- delete [] pData;
- m_Size = 0;
- }
- else
- {
- m_pData = pData;
- m_bOpen = true;
- }
- fclose(pFile);
- }
- if (!m_bOpen)
- {
- m_bOpen = m_bMemoryFile = CPVRTMemoryFileSystem::GetFile(pszFilename, (const void**)(&m_pData), &m_Size);
- }
- }
- /*!***************************************************************************
- @Function CPVRTResourceFile
- @Input pData A pointer to the data you would like to use
- @Input i32Size The size of the data
- @Description Constructor
- *****************************************************************************/
- CPVRTResourceFile::CPVRTResourceFile(const char* pData, size_t i32Size) :
- m_bOpen(true),
- m_bMemoryFile(true),
- m_Size(i32Size),
- m_pData(pData)
- {
- }
- /*!***************************************************************************
- @Function ~CPVRTResourceFile
- @Description Destructor
- *****************************************************************************/
- CPVRTResourceFile::~CPVRTResourceFile()
- {
- Close();
- }
- /*!***************************************************************************
- @Function IsOpen
- @Returns true if the file is open
- @Description Is the file open
- *****************************************************************************/
- bool CPVRTResourceFile::IsOpen() const
- {
- return m_bOpen;
- }
- /*!***************************************************************************
- @Function IsMemoryFile
- @Returns true if the file was opened from memory
- @Description Was the file opened from memory
- *****************************************************************************/
- bool CPVRTResourceFile::IsMemoryFile() const
- {
- return m_bMemoryFile;
- }
- /*!***************************************************************************
- @Function Size
- @Returns The size of the opened file
- @Description Returns the size of the opened file
- *****************************************************************************/
- size_t CPVRTResourceFile::Size() const
- {
- return m_Size;
- }
- /*!***************************************************************************
- @Function DataPtr
- @Returns A pointer to the file data
- @Description Returns a pointer to the file data
- *****************************************************************************/
- const void* CPVRTResourceFile::DataPtr() const
- {
- return m_pData;
- }
- /*!***************************************************************************
- @Function StringPtr
- @Returns The file data as a string
- @Description Returns the file as a null-terminated string
- *****************************************************************************/
- const char* CPVRTResourceFile::StringPtr() const
- {
- return m_pData;
- }
- /*!***************************************************************************
- @Function Close
- @Description Closes the file
- *****************************************************************************/
- void CPVRTResourceFile::Close()
- {
- if (m_bOpen)
- {
- if (!m_bMemoryFile)
- {
- delete [] (char*)m_pData;
- }
- m_bMemoryFile = false;
- m_bOpen = false;
- m_pData = 0;
- m_Size = 0;
- }
- }
- /****************************************************************************
- ** class CPVRTMemoryFileSystem
- ****************************************************************************/
- CPVRTMemoryFileSystem::CAtExit CPVRTMemoryFileSystem::s_AtExit;
- CPVRTMemoryFileSystem::SFileInfo* CPVRTMemoryFileSystem::s_pFileInfo = 0;
- int CPVRTMemoryFileSystem::s_i32Capacity = 0;
- int CPVRTMemoryFileSystem::s_i32NumFiles = 0;
- /*!***************************************************************************
- @Function Destructor
- @Description Destructor of CAtExit class. Workaround for platforms that
- don't support the atexit() function. This deletes any memory
- file system data.
- *****************************************************************************/
- CPVRTMemoryFileSystem::CAtExit::~CAtExit()
- {
- for (int i = 0; i < CPVRTMemoryFileSystem::s_i32NumFiles; ++i)
- {
- if (CPVRTMemoryFileSystem::s_pFileInfo[i].bAllocated)
- {
- delete [] (char*)CPVRTMemoryFileSystem::s_pFileInfo[i].pszFilename;
- delete [] (char*)CPVRTMemoryFileSystem::s_pFileInfo[i].pBuffer;
- }
- }
- delete [] CPVRTMemoryFileSystem::s_pFileInfo;
- }
- CPVRTMemoryFileSystem::CPVRTMemoryFileSystem(const char* pszFilename, const void* pBuffer, size_t Size, bool bCopy)
- {
- RegisterMemoryFile(pszFilename, pBuffer, Size, bCopy);
- }
- /*!***************************************************************************
- @Function RegisterMemoryFile
- @Input pszFilename Name of file to register
- @Input pBuffer Pointer to file data
- @Input Size File size
- @Input bCopy Name and data should be copied?
- @Description Registers a block of memory as a file that can be looked up
- by name.
- *****************************************************************************/
- void CPVRTMemoryFileSystem::RegisterMemoryFile(const char* pszFilename, const void* pBuffer, size_t Size, bool bCopy)
- {
- if (s_i32NumFiles == s_i32Capacity)
- {
- SFileInfo* pFileInfo = new SFileInfo[s_i32Capacity + 10];
- memcpy(pFileInfo, s_pFileInfo, sizeof(SFileInfo) * s_i32Capacity);
- delete [] s_pFileInfo;
- s_pFileInfo = pFileInfo;
- s_i32Capacity += 10;
- }
- s_pFileInfo[s_i32NumFiles].pszFilename = pszFilename;
- s_pFileInfo[s_i32NumFiles].pBuffer = pBuffer;
- if (bCopy)
- {
- char* pszNewFilename = new char[strlen(pszFilename)];
- strcpy(pszNewFilename, pszFilename);
- s_pFileInfo[s_i32NumFiles].pszFilename = pszNewFilename;
- void* pszNewBuffer = new char[Size];
- memcpy(pszNewBuffer, pBuffer, Size);
- s_pFileInfo[s_i32NumFiles].pBuffer = pszNewBuffer;
- }
- s_pFileInfo[s_i32NumFiles].Size = Size;
- s_pFileInfo[s_i32NumFiles].bAllocated = bCopy;
- ++s_i32NumFiles;
- }
- /*!***************************************************************************
- @Function GetFile
- @Input pszFilename Name of file to open
- @Output ppBuffer Pointer to file data
- @Output pSize File size
- @Return true if the file was found in memory, false otherwise
- @Description Looks up a file in the memory file system by name. Returns a
- pointer to the file data as well as its size on success.
- *****************************************************************************/
- bool CPVRTMemoryFileSystem::GetFile(const char* pszFilename, const void** ppBuffer, size_t* pSize)
- {
- for (int i = 0; i < s_i32NumFiles; ++i)
- {
- if (strcmp(s_pFileInfo[i].pszFilename, pszFilename) == 0)
- {
- if (ppBuffer) *ppBuffer = s_pFileInfo[i].pBuffer;
- if (pSize) *pSize = s_pFileInfo[i].Size;
- return true;
- }
- }
- return false;
- }
- /*!***************************************************************************
- @Function GetNumFiles
- @Return The number of registered files
- @Description Getter for the number of registered files
- *****************************************************************************/
- int CPVRTMemoryFileSystem::GetNumFiles()
- {
- return s_i32NumFiles;
- }
- /*!***************************************************************************
- @Function GetFilename
- @Input i32Index Index of file
- @Return A pointer to the filename of the requested file
- @Description Looks up a file in the memory file system by name. Returns a
- pointer to the file data as well as its size on success.
- *****************************************************************************/
- const char* CPVRTMemoryFileSystem::GetFilename(int i32Index)
- {
- if (i32Index < 0 || i32Index > s_i32NumFiles) return 0;
- return s_pFileInfo[i32Index].pszFilename;
- }
- /*****************************************************************************
- End of file (PVRTResourceFile.cpp)
- *****************************************************************************/
|