2008-05-22 04:51:37 -07:00
|
|
|
// Copyright (C) 2002-2008 Nikolaus Gebhardt
|
2007-05-20 11:03:49 -07:00
|
|
|
// This file is part of the "Irrlicht Engine".
|
|
|
|
// For conditions of distribution and use, see copyright notice in irrlicht.h
|
|
|
|
|
|
|
|
#ifndef __I_READ_FILE_H_INCLUDED__
|
|
|
|
#define __I_READ_FILE_H_INCLUDED__
|
|
|
|
|
2007-09-06 23:11:47 -07:00
|
|
|
#include "IReferenceCounted.h"
|
2007-05-20 11:03:49 -07:00
|
|
|
|
|
|
|
namespace irr
|
|
|
|
{
|
|
|
|
namespace io
|
|
|
|
{
|
|
|
|
|
|
|
|
//! Interface providing read acess to a file.
|
2007-09-06 23:11:47 -07:00
|
|
|
class IReadFile : public virtual IReferenceCounted
|
2007-05-20 11:03:49 -07:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
//! Reads an amount of bytes from the file.
|
2008-07-17 02:01:06 -07:00
|
|
|
/** \param buffer Pointer to buffer where read bytes are written to.
|
2008-05-22 04:51:37 -07:00
|
|
|
\param sizeToRead Amount of bytes to read from the file.
|
|
|
|
\return How much bytes were read. */
|
2007-05-20 11:03:49 -07:00
|
|
|
virtual s32 read(void* buffer, u32 sizeToRead) = 0;
|
|
|
|
|
2008-05-22 04:51:37 -07:00
|
|
|
//! Changes position in file
|
2008-07-17 02:01:06 -07:00
|
|
|
/** \param finalPos Destination position in the file.
|
|
|
|
\param relativeMovement If set to true, the position in the file is
|
2008-05-22 04:51:37 -07:00
|
|
|
changed relative to current position. Otherwise the position is changed
|
|
|
|
from beginning of file.
|
|
|
|
\return True if successful, otherwise false. */
|
2007-09-14 01:29:18 -07:00
|
|
|
virtual bool seek(long finalPos, bool relativeMovement = false) = 0;
|
2007-05-20 11:03:49 -07:00
|
|
|
|
2008-05-22 04:51:37 -07:00
|
|
|
//! Get size of file.
|
|
|
|
/** \return Size of the file in bytes. */
|
2007-09-17 09:09:50 -07:00
|
|
|
virtual long getSize() const = 0;
|
2007-05-20 11:03:49 -07:00
|
|
|
|
2008-05-22 04:51:37 -07:00
|
|
|
//! Get the current position in the file.
|
|
|
|
/** \return Current position in the file in bytes. */
|
2007-09-17 09:09:50 -07:00
|
|
|
virtual long getPos() const = 0;
|
2007-05-20 11:03:49 -07:00
|
|
|
|
2008-05-22 04:51:37 -07:00
|
|
|
//! Get name of file.
|
|
|
|
/** \return File name as zero terminated character string. */
|
2007-09-14 01:29:18 -07:00
|
|
|
virtual const c8* getFileName() const = 0;
|
2007-05-20 11:03:49 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
//! Internal function, please do not use.
|
|
|
|
IReadFile* createReadFile(const c8* fileName);
|
|
|
|
//! Internal function, please do not use.
|
2007-09-14 01:29:18 -07:00
|
|
|
IReadFile* createLimitReadFile(const c8* fileName, IReadFile* alreadyOpenedFile, long areaSize);
|
2007-05-20 11:03:49 -07:00
|
|
|
//! Internal function, please do not use.
|
2007-09-14 01:29:18 -07:00
|
|
|
IReadFile* createMemoryReadFile(void* memory, long size, const c8* fileName, bool deleteMemoryWhenDropped);
|
2007-05-20 11:03:49 -07:00
|
|
|
|
|
|
|
} // end namespace io
|
|
|
|
} // end namespace irr
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|