2007-05-30 21:56:52 +00:00
|
|
|
/* ScummVM - Graphic Adventure Engine
|
|
|
|
*
|
|
|
|
* ScummVM is the legal property of its developers, whose names
|
|
|
|
* are too numerous to list here. Please refer to the COPYRIGHT
|
|
|
|
* file distributed with this source distribution.
|
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
|
|
|
*
|
2006-02-11 09:53:53 +00:00
|
|
|
* $URL$
|
|
|
|
* $Id$
|
2002-08-31 07:43:34 +00:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2002-09-08 01:08:12 +00:00
|
|
|
#ifndef COMMON_FILE_H
|
|
|
|
#define COMMON_FILE_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
|
|
|
|
2006-04-30 23:08:37 +00:00
|
|
|
class FilesystemNode;
|
|
|
|
|
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:
|
2007-03-08 16:46:02 +00:00
|
|
|
/** File handle to the actual file; 0 if no file is open. */
|
|
|
|
void *_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
|
|
|
/** 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
|
|
|
|
2006-05-20 15:10:04 +00:00
|
|
|
private:
|
|
|
|
// Disallow copying File objects. There is not strict reason for this,
|
|
|
|
// except that so far we never had real need for such a feature, and
|
|
|
|
// code that accidentally copied File objects tended to break in strange
|
|
|
|
// ways.
|
|
|
|
File(const File &f);
|
2007-08-01 22:07:50 +00:00
|
|
|
File &operator =(const File &f);
|
2006-05-20 15:10:04 +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
|
|
|
|
2006-03-25 19:30:10 +00:00
|
|
|
static void addDefaultDirectory(const String &directory);
|
2006-05-13 18:14:23 +00:00
|
|
|
static void addDefaultDirectoryRecursive(const String &directory, int level = 4, const String &prefix = "");
|
2006-05-01 21:06:34 +00:00
|
|
|
|
|
|
|
static void addDefaultDirectory(const FilesystemNode &directory);
|
2006-05-13 18:14:23 +00:00
|
|
|
static void addDefaultDirectoryRecursive(const FilesystemNode &directory, int level = 4, const String &prefix = "");
|
2006-05-01 21:06:34 +00:00
|
|
|
|
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
|
|
|
|
2006-07-24 12:10:32 +00:00
|
|
|
/**
|
|
|
|
* Checks if a given file exists in any of the current default paths
|
|
|
|
* (those were/are added by addDefaultDirectory and/or
|
|
|
|
* addDefaultDirectoryRecursive).
|
|
|
|
*
|
|
|
|
* @param filename: the file to check for
|
|
|
|
* @return: true if the file exists, else false
|
|
|
|
*/
|
|
|
|
static bool exists(const String &filename);
|
2006-05-20 15:10:04 +00:00
|
|
|
|
2006-04-26 14:05:34 +00:00
|
|
|
virtual bool open(const String &filename, AccessMode mode = kFileReadMode);
|
2006-04-30 23:08:37 +00:00
|
|
|
virtual bool open(const FilesystemNode &node, AccessMode mode = kFileReadMode);
|
2004-11-27 15:09:53 +00:00
|
|
|
|
2004-07-26 17:06:39 +00:00
|
|
|
virtual void close();
|
2006-07-24 12:10:32 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Checks if the object opened a file successfully.
|
|
|
|
*
|
|
|
|
* @return: true if any file is opened, false otherwise.
|
|
|
|
*/
|
2003-11-30 00:06:27 +00:00
|
|
|
bool isOpen() const;
|
2006-07-24 12:10:32 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns the filename of the opened file.
|
|
|
|
*
|
|
|
|
* @return: the filename
|
|
|
|
*/
|
|
|
|
const char *name() const { return _name.c_str(); }
|
|
|
|
|
2003-11-30 00:06:27 +00:00
|
|
|
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(); }
|
2006-07-24 12:10:32 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Checks for end of file.
|
|
|
|
*
|
|
|
|
* @return: true if the end of file is reached, false otherwise.
|
|
|
|
*/
|
2005-01-09 01:41:43 +00:00
|
|
|
bool eof() const;
|
2006-07-24 12:10:32 +00:00
|
|
|
|
2005-01-09 01:41:43 +00:00
|
|
|
uint32 pos() const;
|
|
|
|
uint32 size() const;
|
|
|
|
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
|