2002-08-31 07:43:34 +00:00
|
|
|
/* ScummVM - Scumm Interpreter
|
2006-01-18 17:39:49 +00:00
|
|
|
* Copyright (C) 2002-2006 The ScummVM project
|
2002-08-31 07:43:34 +00:00
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU General Public License
|
|
|
|
* as published by the Free Software Foundation; either version 2
|
|
|
|
* of the License, or (at your option) any later version.
|
|
|
|
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, write to the Free Software
|
2005-10-18 01:30:26 +00:00
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
2002-08-31 07:43:34 +00:00
|
|
|
*
|
|
|
|
* $Header$
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2002-09-08 01:08:12 +00:00
|
|
|
#ifndef COMMON_FILE_H
|
|
|
|
#define COMMON_FILE_H
|
|
|
|
|
2005-06-24 15:23:51 +00:00
|
|
|
#include "common/stdafx.h"
|
2003-08-01 12:21:04 +00:00
|
|
|
#include "common/scummsys.h"
|
2003-10-10 13:55:08 +00:00
|
|
|
#include "common/str.h"
|
2004-04-17 09:57:15 +00:00
|
|
|
#include "common/stream.h"
|
2002-08-31 07:43:34 +00:00
|
|
|
|
2005-05-10 22:56:25 +00:00
|
|
|
namespace Common {
|
|
|
|
|
|
|
|
class File : public SeekableReadStream, public WriteStream {
|
2004-07-23 01:39:05 +00:00
|
|
|
protected:
|
2004-06-28 22:34:22 +00:00
|
|
|
/** POSIX file handle to the actual file; 0 if no file is open. */
|
|
|
|
FILE *_handle;
|
2005-07-30 21:11:48 +00:00
|
|
|
|
2004-06-28 22:34:22 +00:00
|
|
|
/** Status flag which tells about recent I/O failures. */
|
2002-09-02 22:06:26 +00:00
|
|
|
bool _ioFailed;
|
2005-07-30 21:11:48 +00:00
|
|
|
|
2004-06-28 22:34:22 +00:00
|
|
|
/** Simple ref-counter for File objects. */
|
|
|
|
int32 _refcount;
|
|
|
|
|
|
|
|
/** The name of this file, for debugging. */
|
2005-05-10 22:56:25 +00:00
|
|
|
String _name;
|
2004-06-28 22:34:22 +00:00
|
|
|
|
2002-08-31 07:43:34 +00:00
|
|
|
|
2005-05-10 22:56:25 +00:00
|
|
|
static StringList _defaultDirectories;
|
2002-09-15 19:28:34 +00:00
|
|
|
|
2002-08-31 07:43:34 +00:00
|
|
|
public:
|
2003-12-25 17:52:25 +00:00
|
|
|
enum AccessMode {
|
2002-09-13 18:02:34 +00:00
|
|
|
kFileReadMode = 1,
|
|
|
|
kFileWriteMode = 2
|
|
|
|
};
|
2005-07-30 21:11:48 +00:00
|
|
|
|
2005-05-10 22:56:25 +00:00
|
|
|
static void addDefaultDirectory(const String &directory);
|
2004-06-28 00:06:31 +00:00
|
|
|
static void resetDefaultDirectories();
|
2005-07-30 21:11:48 +00:00
|
|
|
|
2002-08-31 07:43:34 +00:00
|
|
|
File();
|
2003-06-21 20:21:40 +00:00
|
|
|
virtual ~File();
|
2004-06-28 22:34:22 +00:00
|
|
|
|
|
|
|
void incRef();
|
|
|
|
void decRef();
|
|
|
|
|
2004-07-26 17:06:39 +00:00
|
|
|
virtual bool open(const char *filename, AccessMode mode = kFileReadMode, const char *directory = NULL);
|
2005-05-05 11:53:43 +00:00
|
|
|
static bool exists(const char *filename, const char *directory = NULL);
|
2004-11-27 15:09:53 +00:00
|
|
|
|
2004-07-26 17:06:39 +00:00
|
|
|
virtual void close();
|
2003-11-30 00:06:27 +00:00
|
|
|
bool isOpen() const;
|
|
|
|
bool ioFailed() const;
|
2002-09-02 22:06:26 +00:00
|
|
|
void clearIOFailed();
|
2005-04-22 17:40:09 +00:00
|
|
|
bool eos() const { return eof(); }
|
2005-01-09 01:41:43 +00:00
|
|
|
bool eof() const;
|
|
|
|
uint32 pos() const;
|
|
|
|
uint32 size() const;
|
2004-11-27 15:09:53 +00:00
|
|
|
const char *name() const { return _name.c_str(); }
|
2005-01-09 01:41:43 +00:00
|
|
|
void seek(int32 offs, int whence = SEEK_SET);
|
2005-05-06 13:10:58 +00:00
|
|
|
uint32 read(void *dataPtr, uint32 dataSize);
|
|
|
|
uint32 write(const void *dataPtr, uint32 dataSize);
|
2002-08-31 07:43:34 +00:00
|
|
|
};
|
|
|
|
|
2005-05-10 22:56:25 +00:00
|
|
|
} // End of namespace Common
|
|
|
|
|
2002-08-31 07:43:34 +00:00
|
|
|
#endif
|