athena/include/Athena/FileReader.hpp

51 lines
1.1 KiB
C++
Raw Normal View History

2014-04-20 02:14:15 -07:00
#ifndef FILESTREAM_HPP
#define FILESTREAM_HPP
#include <string>
#include <memory>
#include <stdio.h>
#include "Athena/IStreamReader.hpp"
2014-04-20 02:14:15 -07:00
namespace Athena
{
namespace io
{
2015-03-01 12:42:39 -08:00
class FileReader : public IStreamReader
2014-04-20 02:14:15 -07:00
{
public:
FileReader(const std::string& filename, atInt32 cacheSize = (32 * 1024));
2015-01-28 22:31:14 -08:00
virtual ~FileReader();
2015-07-01 02:28:40 -07:00
inline const std::string& filename() const
{return m_filename;}
2014-04-20 02:14:15 -07:00
void open();
void close();
2015-07-01 02:28:40 -07:00
inline bool isOpen() const
{return m_fileHandle != NULL;}
2014-04-20 02:14:15 -07:00
bool save();
void seek(atInt64 pos, SeekOrigin origin = SeekOrigin::Current);
atUint64 position() const;
atUint64 length() const;
atUint64 readUBytesToBuf(void* buf, atUint64 len);
void setCacheSize(const atInt32 blockSize);
2015-01-28 22:20:57 -08:00
protected:
2014-04-20 02:14:15 -07:00
std::string m_filename;
FILE* m_fileHandle;
2015-07-09 20:05:55 -07:00
std::unique_ptr<atUint8[]> m_cacheData;
atInt32 m_blockSize;
2015-07-09 20:05:55 -07:00
atInt32 m_curBlock;
atUint64 m_offset;
2014-04-20 02:14:15 -07:00
};
} // io
} // Athena
2014-04-24 19:01:24 -07:00
#ifndef FILEREADER_BASE
2015-01-28 22:20:57 -08:00
#define FILEREADER_BASE() \
2014-04-24 19:01:24 -07:00
private: \
2015-01-28 22:20:57 -08:00
typedef Athena::io::FileReader base
2014-04-24 19:01:24 -07:00
#endif // FILEREADER_BASE
2014-04-20 02:14:15 -07:00
#endif // FILESTREAM_HPP