athena/include/Athena/MemoryReader.hpp

102 lines
3.2 KiB
C++
Raw Normal View History

2015-03-01 20:42:39 +00:00
#ifndef MEMORYREADER_HPP
#define MEMORYREADER_HPP
2015-03-01 20:42:39 +00:00
#include "Athena/IStreamReader.hpp"
#include <string>
#include <functional>
2013-01-26 20:19:24 +00:00
2014-04-20 09:14:15 +00:00
namespace Athena
2013-07-21 03:57:20 +00:00
{
namespace io
{
/*! \class MemoryReader
* \brief A Stream class for reading data from a memory position
2013-01-26 20:19:24 +00:00
*
* A Class for reading binary data from a file or memory stream,
* all work is done using a memory buffer, and not read directly from the disk
* this allows for fast, flexible code as well as the ability to quickly modify data
* \sa Stream
*/
2015-03-01 20:42:39 +00:00
class MemoryReader : public IStreamReader
{
2013-01-26 20:19:24 +00:00
public:
~MemoryReader();
2013-01-26 20:19:24 +00:00
/*! \brief This constructor takes an existing buffer to read from.
*
* \param data The existing buffer
* \param length The length of the existing buffer
*/
2015-03-01 20:42:39 +00:00
MemoryReader(const atUint8* data, atUint64 length);
2014-04-20 09:14:15 +00:00
2013-01-26 20:19:24 +00:00
/*! \brief This constructor creates an instance from a file on disk.
*
* \param filename The file to create the stream from
*/
MemoryReader(const std::string& filename);
2014-04-20 09:14:15 +00:00
/*! \brief Sets the buffers position relative to the specified position.<br />
* It seeks relative to the current position by default.
* \param position where in the buffer to seek
* \param origin The Origin to seek \sa SeekOrigin
*/
void seek(atInt64 pos, SeekOrigin origin = SeekOrigin::Current);
2014-04-20 09:14:15 +00:00
/*! \brief Returns the current position in the stream.
*
* \return Int64 The current position in the stream.
*/
2015-07-01 09:28:40 +00:00
inline atUint64 position() const
{return m_position;}
2014-04-20 09:14:15 +00:00
/*! \brief Returns whether or not the stream is at the end.
*
* \return bool True if at end; False otherwise.
*/
2015-07-01 09:28:40 +00:00
inline atUint64 length() const
{return m_length;}
2014-04-20 09:14:15 +00:00
/*! \brief Sets the buffer to the given one, deleting the current one.<br />
* <b>BEWARE:</b> As this deletes the current buffer it WILL cause a loss of data
* if that was not the intent.<br />
* Once you pass the data to setData <b>DO NOT</b> delete the buffer
* as Stream now owns the address, this is done to keep memory usage down.
* \param data The new buffer.
* \param length The length of the new buffer.
* \throw IOException
*/
void setData(const atUint8* data, atUint64 length);
2014-04-20 09:14:15 +00:00
/*! \brief Returns a copy of the current buffer.<br />
* Changes to the copy do not affect the buffer so it's perfectly safe to
* directly edit the buffer and use setData to set the new information.<br />
* However once you pass the data to setData <b>DO NOT</b> delete the buffer
* as Stream now owns the address, this is done to keep memory usage down.
* \return Uint8* The copy of the buffer.
*/
atUint8* data() const;
2013-01-26 20:19:24 +00:00
atUint64 readUBytesToBuf(void* buf, atUint64 len);
protected:
void loadData();
atUint8* m_data;
atUint64 m_length;
std::string m_filepath; //!< Path to the target file
atUint64 m_position;
};
2014-04-20 09:14:15 +00:00
} // io
} // Athena
2015-03-01 20:42:39 +00:00
#ifndef MEMORYREADER_BASE
#define MEMORYREADER_BASE() \
private: \
2015-03-01 20:42:39 +00:00
typedef Athena::io::MemoryReader base
2015-03-01 20:42:39 +00:00
#endif // MEMORYREADER_BASE
2015-03-01 20:42:39 +00:00
#endif // MEMORYREADER_HPP