Upstream tarball 10019
[amule.git] / src / CFile.h
blob000efa2f6c0e52bf64997d6d19286fc165d1e384
1 //
2 // This file is part of the aMule Project.
3 //
4 // Copyright (c) 2003-2008 aMule Team ( admin@amule.org / http://www.amule.org )
5 // Copyright (c) 1998-2008 Vadim Zeitlin ( zeitlin@dptmaths.ens-cachan.fr )
6 //
7 // Any parts of this program derived from the xMule, lMule or eMule project,
8 // or contributed by third-party developers are copyrighted by their
9 // respective authors.
11 // This program is free software; you can redistribute it and/or modify
12 // it under the terms of the GNU General Public License as published by
13 // the Free Software Foundation; either version 2 of the License, or
14 // (at your option) any later version.
16 // This program is distributed in the hope that it will be useful,
17 // but WITHOUT ANY WARRANTY; without even the implied warranty of
18 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 // GNU General Public License for more details.
20 //
21 // You should have received a copy of the GNU General Public License
22 // along with this program; if not, write to the Free Software
23 // Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
26 #ifndef CFILE_H
27 #define CFILE_H
29 #include <common/Path.h> // Needed for CPath
30 #include "SafeFile.h" // Needed for CFileDataIO
32 #include <wx/file.h> // Needed for constants
34 #ifdef _MSC_VER // silly warnings about deprecated functions
35 #pragma warning(disable:4996)
36 #endif
38 /**
39 * This class is a modified version of the wxFile class.
41 * In addition to implementing the CFileDataIO interface,
42 * it offers improved support for UTF8 filenames and 64b
43 * file-IO on both windows and unix-like systems.
45 * @see wxFile
47 class CFile : public CFileDataIO
49 public:
50 //! Standard values for file descriptor
51 enum { fd_invalid = -1, fd_stdin, fd_stdout, fd_stderr };
53 /** @see wxFile::OpenMode */
54 enum OpenMode { read, write, read_write, write_append, write_excl };
57 /**
58 * Creates a closed file.
60 CFile();
62 /**
63 * Constructor, calls Open on the specified file.
65 * To check if the file was successfully opened, a
66 * call to IsOpened() is required.
68 CFile(const CPath& path, OpenMode mode = read);
69 CFile(const wxString& path, OpenMode mode = read);
71 /**
72 * Destructor, closes the file if opened.
74 virtual ~CFile();
77 /**
78 * Opens a file.
80 * @param path The full or relative path to the file.
81 * @param mode The opening mode.
82 * @param accessMode The permissions in case a new file is created.
83 * @return True if the file was opened, false otherwise.
85 * Calling Open with the openmodes 'write' or 'write_append' will
86 * create the specified file if it does not already exist.
88 * If an accessMode is not explicitly specified, the accessmode
89 * specified via CPreferences::GetFilePermissions will be used.
91 bool Open(const CPath& path, OpenMode mode = read, int accessMode = wxS_DEFAULT);
92 bool Open(const wxString& path, OpenMode mode = read, int accessMode = wxS_DEFAULT);
94 /**
95 * Reopens a file which was opened and closed before.
97 * @param mode The opening mode.
99 * The filename used for last open is used again.
100 * No return value - function throws on failure.
102 void Reopen(OpenMode mode);
105 * Calling Create is equivilant of calling open with OpenMode 'write'.
107 * @param overwrite Specifies if the target file should be overwritten,
108 * in case that it already exists.
110 * @see CFile::Open
112 bool Create(const CPath& path, bool overwrite = false, int accessMode = wxS_DEFAULT);
113 bool Create(const wxString& path, bool overwrite = false, int accessMode = wxS_DEFAULT);
116 * Closes the file.
118 * Note that calling Close on an closed file
119 * is an illegal operation.
121 bool Close();
125 * Returns the file descriptior assosiated with the file.
127 * Note that direct manipulation of the descriptor should
128 * be avoided! That's what this class is for.
130 int fd() const;
133 * Flushes data not yet written.
135 * Note that calling Flush on an closed file
136 * is an illegal operation.
138 bool Flush();
142 * @see CSafeFileIO::GetLength
144 * Note that calling GetLength on a closed file
145 * is an illegal operation.
147 virtual uint64 GetLength() const;
150 * Resizes the file to the specified length.
152 bool SetLength(uint64 newLength);
155 * @see CSafeFileIO::GetPosition
157 * Note that calling GetPosition on a closed file
158 * is an illegal operation.
160 virtual uint64 GetPosition() const;
163 * Returns the current available bytes to read on the file before EOF
166 virtual uint64 GetAvailable() const;
169 * Returns the path of the currently opened file.
172 const CPath& GetFilePath() const;
176 * Returns true if the file is opened, false otherwise.
178 bool IsOpened() const;
180 protected:
181 /** @see CFileDataIO::doRead **/
182 virtual sint64 doRead(void* buffer, size_t count) const;
183 /** @see CFileDataIO::doWrite **/
184 virtual sint64 doWrite(const void* buffer, size_t count);
185 /** @see CFileDataIO::doSeek **/
186 virtual sint64 doSeek(sint64 offset) const;
188 private:
189 //! A CFile is neither copyable nor assignable.
190 //@{
191 CFile(const CFile&);
192 CFile& operator=(const CFile&);
193 //@}
195 //! File descriptor or 'fd_invalid' if not opened
196 int m_fd;
198 //! The full path to the current file.
199 CPath m_filePath;
204 * This exception is thrown by CFile if a seek or tell fails.
206 struct CSeekFailureException : public CIOFailureException {
207 CSeekFailureException(const wxString& desc);
211 #endif // CFILE_H
212 // File_checked_for_headers