]>
git.saurik.com Git - wxWidgets.git/blob - interface/wx/file.h
1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: interface of wxTempFile, wxFile
4 // Author: wxWidgets team
5 // Licence: wxWindows licence
6 /////////////////////////////////////////////////////////////////////////////
12 wxTempFile provides a relatively safe way to replace the contents of the
13 existing file. The name is explained by the fact that it may be also used as
14 just a temporary file if you don't replace the old file contents.
16 Usually, when a program replaces the contents of some file it first opens it for
17 writing, thus losing all of the old data and then starts recreating it.
18 This approach is not very safe because during the regeneration of the file bad
19 things may happen: the program may find that there is an internal error preventing
20 it from completing file generation, the user may interrupt it (especially if file
21 generation takes long time) and, finally, any other external interrupts (power
22 supply failure or a disk error) will leave you without either the original file
25 wxTempFile addresses this problem by creating a temporary file which is meant to
26 replace the original file - but only after it is fully written. So, if the user
27 interrupts the program during the file generation, the old file won't be lost.
28 Also, if the program discovers itself that it doesn't want to replace the old
29 file there is no problem - in fact, wxTempFile will @b not replace the old
30 file by default, you should explicitly call wxTempFile::Commit() to do it.
31 Calling wxTempFile::Discard() explicitly discards any modifications: it
32 closes and deletes the temporary file and leaves the original file unchanged.
33 If you call neither Commit() nor Discard(), the destructor will
34 call Discard() automatically.
36 To summarize: if you want to replace another file, create an instance of
37 wxTempFile passing the name of the file to be replaced to the constructor.
38 (You may also use default constructor and pass the file name to wxTempFile::Open.)
39 Then you can write to wxTempFile using wxFile-like functions and later call
40 wxTempFile::Commit() to replace the old file (and close this one) or call
41 wxTempFile::Discard() to cancel the modifications.
50 Associates wxTempFile with the file to be replaced and opens it.
53 You should use IsOpened() to verify that the constructor succeeded.
55 wxTempFile(const wxString
& strName
);
58 Destructor calls Discard() if temporary file is still open.
63 Validate changes: deletes the old file of name m_strName and renames the new
64 file to the old name. Returns @true if both actions succeeded.
66 If @false is returned it may unfortunately mean two quite different things:
67 either that the old file couldn't be deleted or that the new file
68 couldn't be renamed to the old name.
73 Discard changes: the old file contents are not changed, the temporary
79 Flush the data written to the file to disk.
81 This simply calls wxFile::Flush() for the underlying file and may be
82 necessary with file systems such as XFS and Ext4 under Linux. Calling
83 this function may however have serious performance implications and
84 also is not necessary with many other file systems so it is not done by
85 default -- but you can call it before calling Commit() to absolutely
86 ensure that the data was indeed written to the disk correctly.
91 Returns @true if the file was successfully opened.
93 bool IsOpened() const;
96 Returns the length of the file.
98 This method may return ::wxInvalidOffset if the length couldn't be
99 determined or 0 even for non-empty files if the file is not seekable.
101 In general, the only way to determine if the file for which this function
102 returns 0 is really empty or not is to try reading from it.
104 wxFileOffset
Length() const;
107 Open the temporary file, returns @true on success, @false if an error
109 @a strName is the name of file to be replaced. The temporary file is always
110 created in the directory where @a strName is. In particular, if @a strName
111 doesn't include the path, it is created in the current directory and the
112 program should have write access to it for the function to succeed.
114 bool Open(const wxString
& strName
);
117 Seeks to the specified position.
119 wxFileOffset
Seek(wxFileOffset ofs
,
120 wxSeekMode mode
= wxFromStart
);
123 Returns the current position or ::wxInvalidOffset if file is not opened or
124 if another error occurred.
126 wxFileOffset
Tell() const;
129 Write to the file, return @true on success, @false on failure.
130 The second argument is only meaningful in Unicode build of wxWidgets when
131 @a conv is used to convert @a str to multibyte representation.
133 bool Write(const wxString
& str
,
134 const wxMBConv
& conv
= wxConvUTF8
);
142 A wxFile performs raw file I/O. This is a very small class designed to
143 minimize the overhead of using it - in fact, there is hardly any overhead at
144 all, but using it brings you automatic error checking and hides differences
145 between platforms and compilers. wxFile also automatically closes the file in
146 its destructor so you won't forget to do so.
147 wxFile is a wrapper around @c file descriptor. - see also wxFFile for a
148 wrapper around @c FILE structure.
150 ::wxFileOffset is used by the wxFile functions which require offsets as
151 parameter or return them. If the platform supports it, wxFileOffset is a
152 typedef for a native 64 bit integer, otherwise a 32 bit integer is used for
163 The OpenMode enumeration defines the different modes for opening a file with wxFile.
164 It is also used with wxFile::Access function.
168 /** Open file for reading or test if it can be opened for reading with Access() */
171 /** Open file for writing deleting the contents of the file if it already exists
172 or test if it can be opened for writing with Access(). */
175 /** Open file for reading and writing; cannot be used with Access() */
178 /** Open file for appending: the file is opened for writing, but the old contents
179 of the file are not erased and the file pointer is initially placed at the end
180 of the file; cannot be used with Access().
182 This is the same as OpenMode::write if the file doesn't exist.
187 Open the file securely for writing (Uses O_EXCL | O_CREAT).
188 Will fail if the file already exists, else create and open it atomically.
189 Useful for opening temporary files without being vulnerable to race exploits.
195 Standard file descriptors
197 enum { fd_invalid
= -1, fd_stdin
, fd_stdout
, fd_stderr
};
205 Opens a file with a filename.
210 The mode in which to open the file.
213 You should use IsOpened() to verify that the constructor succeeded.
215 wxFile(const wxString
& filename
,
216 wxFile::OpenMode mode
= wxFile::read
);
219 Associates the file with the given file descriptor, which has already been
220 opened. See Attach() for the list of predefined descriptors.
223 An existing file descriptor.
228 Destructor will close the file.
229 @note This destructor is not virtual so you should not use wxFile polymorphically.
234 Returns the error code for the last unsuccessful operation.
236 The error code is system-dependent and corresponds to the value of the
237 standard @c errno variable when the last error occurred.
239 Notice that only simple accessors such as IsOpened() and Eof() (and
240 this method itself) don't modify the last error value, all other
241 methods can potentially change it if an error occurs, including the
242 const ones such as Tell() or Length().
246 @see ClearLastError()
248 int GetLastError() const;
251 Resets the error code.
253 GetLastError() will return 0 until the next error occurs.
257 void ClearLastError();
260 This function verifies if we may access the given file in specified mode.
261 Only values of @c wxFile::read or @c wxFile::write really make sense here.
263 static bool Access(const wxString
& name
, wxFile::OpenMode mode
);
266 Attaches an existing file descriptor to the wxFile object.
267 Examples of predefined file descriptors are 0, 1 and 2 which correspond to
268 stdin, stdout and stderr (and have symbolic names of @c wxFile::fd_stdin,
269 @c wxFile::fd_stdout and @c wxFile::fd_stderr).
271 The descriptor should be already opened and it will be closed by wxFile
282 Creates a file for writing.
284 If the file already exists, setting @b overwrite to @true will ensure
287 @a access may be an OR combination of the ::wxPosixPermissions enumeration
290 bool Create(const wxString
& filename
,
291 bool overwrite
= false,
292 int access
= wxS_DEFAULT
);
295 Get back a file descriptor from wxFile object - the caller is responsible for
296 closing the file if this descriptor is opened.
297 IsOpened() will return @false after call to Detach().
302 Returns @true if the end of the file has been reached.
303 Note that the behaviour of the file pointer-based class wxFFile is
304 different as wxFFile::Eof() will return @true here only if an
305 attempt has been made to read @b past the last byte of the file, while
306 wxFile::Eof() will return @true even before such attempt is made if the
307 file pointer is at the last position in the file.
309 Note also that this function doesn't work on unseekable file descriptors
310 (examples include pipes, terminals and sockets under Unix) and an attempt to
311 use it will result in an error message.
313 So, to read the entire file into memory, you should write a loop which uses
314 Read() repeatedly and tests its return condition instead of using Eof()
315 as this will not work for special files under Unix.
320 Returns @true if the given name specifies an existing regular file
321 (not a directory or a link).
323 static bool Exists(const wxString
& filename
);
326 Flushes the file descriptor.
328 Note that Flush() is not implemented on some Windows compilers due to a
329 missing fsync function, which reduces the usefulness of this function
330 (it can still be called but it will do nothing on unsupported compilers).
335 Returns the type of the file.
337 wxFileKind
GetKind() const;
340 Returns @true if the file has been opened.
342 bool IsOpened() const;
345 Returns the length of the file.
347 wxFileOffset
Length() const;
350 Opens the file, returning @true if successful.
355 The mode in which to open the file.
357 An OR-combination of ::wxPosixPermissions enumeration values.
359 bool Open(const wxString
& filename
, wxFile::OpenMode mode
= wxFile::read
,
360 int access
= wxS_DEFAULT
);
363 Reads from the file into a memory buffer.
370 @return The number of bytes read, or the symbol ::wxInvalidOffset.
372 ssize_t
Read(void* buffer
, size_t count
);
375 Reads the entire contents of the file into a string.
378 Non-@NULL pointer to a string to read data into.
380 Conversion object to use in Unicode build; by default supposes
381 that file contents is encoded in UTF-8 but falls back to the
382 current locale encoding (or Latin-1 if it is UTF-8 too) if it is
385 @return @true if file was read successfully, @false otherwise.
389 bool ReadAll(wxString
* str
, const wxMBConv
& conv
= wxConvAuto());
392 Seeks to the specified position.
397 One of wxFromStart, wxFromEnd, wxFromCurrent.
399 @return The actual offset position achieved, or ::wxInvalidOffset on
402 wxFileOffset
Seek(wxFileOffset ofs
,
403 wxSeekMode mode
= wxFromStart
);
406 Moves the file pointer to the specified number of bytes relative to the
407 end of the file. For example, @c SeekEnd(-5) would position the pointer 5
408 bytes before the end.
411 Number of bytes before the end of the file.
413 @return The actual offset position achieved, or ::wxInvalidOffset on
416 wxFileOffset
SeekEnd(wxFileOffset ofs
= 0);
419 Returns the current position or ::wxInvalidOffset if file is not opened or
420 if another error occurred.
422 wxFileOffset
Tell() const;
425 Write data to the file (descriptor).
428 Buffer from which to read data
430 Number of bytes to write
432 @return The number of bytes written.
434 size_t Write(const void *buffer
, size_t count
);
437 Writes the contents of the string to the file, returns @true on success.
438 The second argument is only meaningful in Unicode build of wxWidgets when
439 @a conv is used to convert @a s to a multibyte representation.
441 Note that this method only works with @c NUL-terminated strings, if you want
442 to write data with embedded @c NULs to the file you should use the other
445 bool Write(const wxString
& s
, const wxMBConv
& conv
= wxConvUTF8
);
448 Returns the file descriptor associated with the file.