Files
itgmania212121/stepmania/src/RageFile.h
T
2005-05-20 00:18:52 +00:00

98 lines
2.8 KiB
C++

/* RageFile - High-level file access. */
#ifndef RAGE_FILE_H
#define RAGE_FILE_H
#include "RageFileBasic.h"
/* This is the high-level interface, which interfaces with RageFileObj implementations
* and RageFileManager. */
class RageFile: public RageFileBasic
{
public:
enum
{
READ = 0x1,
WRITE = 0x2,
/* Always write directly to the destination file; don't do a safe write. (for logs) */
STREAMED = 0x4,
/* Flush the file to disk on close. Combined with not streaming, this results
* in very safe writes, but is slow. */
SLOW_FLUSH = 0x8
};
RageFile();
~RageFile() { Close(); }
RageFile( const RageFile &cpy );
RageFileBasic *Copy() const;
/* Use GetRealPath to get the path this file was opened with; use that if you
* want a path that will probably get you the same file again.
*
* GetPath can be overridden by drivers. Use it to get a path for display;
* it may give more information, such as the name of the archive the file
* is in. It has no parsable meaning. */
const CString &GetRealPath() const { return m_Path; }
CString GetPath() const;
bool Open( const CString& path, int mode = READ );
void Close();
bool IsOpen() const { return m_File != NULL; }
bool AtEOF() const;
CString GetError() const;
void ClearError();
int Tell() const;
int Seek( int offset );
int GetFileSize() const;
/* Raw I/O: */
int Read( void *buffer, size_t bytes );
int Read( CString &buffer, int bytes = -1 );
int Write( const void *buffer, size_t bytes );
int Write( const CString& string ) { return Write( string.data(), string.size() ); }
int Flush();
/* These are just here to make wrappers (eg. vorbisfile, SDL_rwops) easier. */
int Write( const void *buffer, size_t bytes, int nmemb );
int Read( void *buffer, size_t bytes, int nmemb );
int Seek( int offset, int whence );
/* Line-based I/O: */
int GetLine( CString &out );
int PutLine( const CString &str );
void EnableCRC32( bool on=true );
bool GetCRC32( uint32_t *iRet );
protected:
void SetError( const CString &err );
private:
RageFileBasic *m_File;
CString m_Path;
CString m_sError;
int m_Mode;
};
/* Convenience wrappers for reading binary files. */
namespace FileReading
{
/* On error, these set sError to the error message. If sError is already
* non-empty, nothing happens. */
void ReadBytes( RageFileBasic &f, void *buf, int size, CString &sError );
void SkipBytes( RageFileBasic &f, int size, CString &sError );
void Seek( RageFileBasic &f, int iOffset, CString &sError );
CString ReadString( RageFileBasic &f, int size, CString &sError );
uint8_t read_8( RageFileBasic &f, CString &sError );
int16_t read_16_le( RageFileBasic &f, CString &sError );
uint16_t read_u16_le( RageFileBasic &f, CString &sError );
int32_t read_32_le( RageFileBasic &f, CString &sError );
uint32_t read_u32_le( RageFileBasic &f, CString &sError );
};
#endif