]>
git.saurik.com Git - wxWidgets.git/blob - interface/file.h
69b44b3934f13904f418e1639e1e9049368daf6f
1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: documentation for wxTempFile class
4 // Author: wxWidgets team
6 // Licence: wxWindows license
7 /////////////////////////////////////////////////////////////////////////////
13 wxTempFile provides a relatively safe way to replace the contents of the
14 existing file. The name is explained by the fact that it may be also used as
15 just a temporary file if you don't replace the old file contents.
17 Usually, when a program replaces the contents of some file it first opens it for
18 writing, thus losing all of the old data and then starts recreating it. This
19 approach is not very safe because during the regeneration of the file bad things
20 may happen: the program may find that there is an internal error preventing it
21 from completing file generation, the user may interrupt it (especially if file
22 generation takes long time) and, finally, any other external interrupts (power
23 supply failure or a disk error) will leave you without either the original file
26 wxTempFile addresses this problem by creating a temporary file which is meant to
27 replace the original file - but only after it is fully written. So, if the user
28 interrupts the program during the file generation, the old file won't be lost.
29 Also, if the program discovers itself that it doesn't want to replace the old
30 file there is no problem - in fact, wxTempFile will @b not replace the old
31 file by default, you should explicitly call wxTempFile::Commit
32 to do it. Calling wxTempFile::Discard explicitly discards any
33 modifications: it closes and deletes the temporary file and leaves the original
34 file unchanged. If you don't call neither of Commit() and Discard(), the
35 destructor will call Discard() automatically.
37 To summarize: if you want to replace another file, create an instance of
38 wxTempFile passing the name of the file to be replaced to the constructor (you
39 may also use default constructor and pass the file name to
40 wxTempFile::Open). Then you can wxTempFile::write
41 to wxTempFile using wxFile-like functions and later call
42 Commit() to replace the old file (and close this one) or call Discard() to
53 Associates wxTempFile with the file to be replaced and opens it. You should use
54 IsOpened() to verify if the constructor succeeded.
56 wxTempFile(const wxString
& strName
);
59 Destructor calls Discard() if temporary file
65 Validate changes: deletes the old file of name m_strName and renames the new
66 file to the old name. Returns @true if both actions succeeded. If @false is
67 returned it may unfortunately mean two quite different things: either that
68 either the old file couldn't be deleted or that the new file couldn't be renamed
74 Discard changes: the old file contents is not changed, temporary file is
80 Returns @true if the file was successfully opened.
85 Returns the length of the file.
87 wxFileOffset
Length();
90 Open the temporary file, returns @true on success, @false if an error
93 @e strName is the name of file to be replaced. The temporary file is always
94 created in the directory where @e strName is. In particular, if
95 @e strName doesn't include the path, it is created in the current directory
96 and the program should have write access to it for the function to succeed.
98 bool Open(const wxString
& strName
);
101 Seeks to the specified position.
103 wxFileOffset
Seek(wxFileOffset ofs
,
104 wxSeekMode mode
= wxFromStart
);
107 Returns the current position or wxInvalidOffset if file is not opened or if
114 Write to the file, return @true on success, @false on failure.
116 The second argument is only meaningful in Unicode build of wxWidgets when
117 @e conv is used to convert @e str to multibyte representation.
119 bool Write(const wxString
& str
,
120 const wxMBConv
& conv
= wxConvUTF8
);
128 A wxFile performs raw file I/O. This is a very small class designed to
129 minimize the overhead of using it - in fact, there is hardly any overhead at
130 all, but using it brings you automatic error checking and hides differences
131 between platforms and compilers. wxFile also automatically closes the file in
132 its destructor making it unnecessary to worry about forgetting to do it.
133 wxFile is a wrapper around @c file descriptor. - see also
134 wxFFile for a wrapper around @c FILE structure.
136 @c wxFileOffset is used by the wxFile functions which require offsets as
137 parameter or return them. If the platform supports it, wxFileOffset is a typedef
138 for a native 64 bit integer, otherwise a 32 bit integer is used for
149 Associates the file with the given file descriptor, which has already been
156 The mode in which to open the file. May be one of read(), write() and
160 An existing file descriptor (see Attach() for the list of predefined
164 wxFile(const wxString
& filename
,
165 wxFile::OpenMode mode
= wxFile::read
);
170 Destructor will close the file.
172 @b NB: it is not virtual so you should not use wxFile polymorphically.
177 This function verifies if we may access the given file in specified mode. Only
178 values of read() or write() really make sense here.
180 static bool Access(const wxString
& name
, OpenMode mode
);
183 Attaches an existing file descriptor to the wxFile object. Example of predefined
184 file descriptors are 0, 1 and 2 which correspond to stdin, stdout and stderr
186 have symbolic names of @b wxFile::fd_stdin, @b wxFile::fd_stdout and @b
189 The descriptor should be already opened and it will be closed by wxFile
200 Creates a file for writing. If the file already exists, setting @b overwrite to
202 will ensure it is overwritten.
204 bool Create(const wxString
& filename
, bool overwrite
= @
false,
205 int access
= wxS_DEFAULT
);
208 Get back a file descriptor from wxFile object - the caller is responsible for
209 closing the file if this
210 descriptor is opened. IsOpened() will return @false after call to Detach().
215 Returns @true if the end of the file has been reached.
217 Note that the behaviour of the file pointer based class
218 wxFFile is different as wxFFile::Eof
219 will return @true here only if an attempt has been made to read
220 @e past the last byte of the file, while wxFile::Eof() will return @true
221 even before such attempt is made if the file pointer is at the last position
224 Note also that this function doesn't work on unseekable file descriptors
225 (examples include pipes, terminals and sockets under Unix) and an attempt to
226 use it will result in an error message in such case. So, to read the entire
227 file into memory, you should write a loop which uses
228 Read() repeatedly and tests its return condition instead
229 of using Eof() as this will not work for special files under Unix.
231 #define bool Eof() /* implementation is private */
234 Returns @true if the given name specifies an existing regular file (not a
237 static bool Exists(const wxString
& filename
);
240 Flushes the file descriptor.
242 Note that Flush() is not implemented on some Windows compilers
243 due to a missing fsync function, which reduces the usefulness of this function
244 (it can still be called but it will do nothing on unsupported compilers).
249 Returns the type of the file. Possible return values are:
251 wxFileKind
GetKind();
254 Returns @true if the file has been opened.
259 Returns the length of the file.
261 wxFileOffset
Length();
264 Opens the file, returning @true if successful.
270 The mode in which to open the file. May be one of read(), write() and
273 bool Open(const wxString
& filename
,
274 wxFile::OpenMode mode
= wxFile::read
);
278 if there was an error.
280 size_t Read(void* buffer
, size_t count
);
281 Parameters Return value
282 The number of bytes read
, or the symbol
wxInvalidOffset();
286 Seeks to the specified position.
292 One of wxFromStart, wxFromEnd, wxFromCurrent.
294 @returns The actual offset position achieved, or wxInvalidOffset on
297 wxFileOffset
Seek(wxFileOffset ofs
,
298 wxSeekMode mode
= wxFromStart
);
301 Moves the file pointer to the specified number of bytes relative to the end of
302 the file. For example, @c SeekEnd(-5) would position the pointer 5
303 bytes before the end.
306 Number of bytes before the end of the file.
308 @returns The actual offset position achieved, or wxInvalidOffset on
311 wxFileOffset
SeekEnd(wxFileOffset ofs
= 0);
314 Returns the current position or wxInvalidOffset if file is not opened or if
321 Writes the contents of the string to the file, returns @true on success.
323 The second argument is only meaningful in Unicode build of wxWidgets when
324 @e conv is used to convert @e s to multibyte representation.
326 Note that this method only works with @c NUL-terminated strings, if you want
327 to write data with embedded @c NULs to the file you should use the other
328 @ref write() "Write() overload".
330 bool Write(const wxString
& s
, const wxMBConv
& conv
= wxConvUTF8
);
333 Returns the file descriptor associated with the file.
335 #define int fd() /* implementation is private */