]> git.saurik.com Git - wxWidgets.git/blob - docs/latex/wx/file.tex
rearranged the samples alphabetically, please keep them this way
[wxWidgets.git] / docs / latex / wx / file.tex
1 \section{\class{wxFile}}\label{wxfile}
2
3 A wxFile performs raw file I/O. This is a very small class designed to
4 minimize the overhead of using it - in fact, there is hardly any overhead at
5 all, but using it brings you automatic error checking and hides differences
6 between platforms and compilers. wxFile also automatically closes the file in
7 its destructor making it unnecessary to worry about forgetting to do it.
8 wxFile is a wrapper around {\tt file descriptor.} - see also
9 \helpref{wxFFile}{wxffile} for a wrapper around {\tt FILE} structure.
10
11 \wxheading{Derived from}
12
13 None.
14
15 \wxheading{Include files}
16
17 <wx/file.h>
18
19 \wxheading{Constants}
20
21 wx/file.h defines the following constants:
22
23 \begin{verbatim}
24 #define wxS_IRUSR 00400
25 #define wxS_IWUSR 00200
26 #define wxS_IXUSR 00100
27
28 #define wxS_IRGRP 00040
29 #define wxS_IWGRP 00020
30 #define wxS_IXGRP 00010
31
32 #define wxS_IROTH 00004
33 #define wxS_IWOTH 00002
34 #define wxS_IXOTH 00001
35
36 // default mode for the new files: corresponds to umask 022
37 #define wxS_DEFAULT (wxS_IRUSR | wxS_IWUSR | wxS_IRGRP | wxS_IWGRP | wxS_IROTH | wxS_IWOTH)
38 \end{verbatim}
39
40 These constants define the file access rights and are used with
41 \helpref{wxFile::Create}{wxfilecreate} and \helpref{wxFile::Open}{wxfileopen}.
42
43 The {\it OpenMode} enumeration defines the different modes for opening a file,
44 it is defined inside wxFile class so its members should be specified with {\it wxFile::} scope
45 resolution prefix. It is also used with \helpref{wxFile::Access}{wxfileaccess} function.
46
47 \twocolwidtha{7cm}
48 \begin{twocollist}\itemsep=0pt%
49 \twocolitem{{\bf wxFile::read}}{Open file for reading or test if it can be opened for reading with Access()}
50 \twocolitem{{\bf wxFile::write}}{Open file for writing deleting the contents of the file if it already exists
51 or test if it can be opened for writing with Access()}
52 \twocolitem{{\bf wxFile::read\_write}}{Open file for reading and writing; can not be used with Access()}
53 \twocolitem{{\bf wxFile::write\_append}}{Open file for appending: the file is opened for writing, but the old
54 contents of the file is not erased and the file pointer is initially placed at the end of the file;
55 can not be used with Access(). This is the same as {\bf wxFile::write} if the
56 file doesn't exist.}
57 \end{twocollist}
58
59 Other constants defined elsewhere but used by wxFile functions are wxInvalidOffset which represents an
60 invalid value of type {\it off\_t} and is returned by functions returning {\it off\_t} on error and the seek
61 mode constants used with \helpref{Seek()}{wxfileseek}:
62
63 \twocolwidtha{7cm}
64 \begin{twocollist}\itemsep=0pt%
65 \twocolitem{{\bf wxFromStart}}{Count offset from the start of the file}
66 \twocolitem{{\bf wxFromCurrent}}{Count offset from the current position of the file pointer}
67 \twocolitem{{\bf wxFromEnd}}{Count offset from the end of the file (backwards)}
68 \end{twocollist}
69
70 \latexignore{\rtfignore{\wxheading{Members}}}
71
72 \membersection{wxFile::wxFile}\label{wxfileconstr}
73
74 \func{}{wxFile}{\void}
75
76 Default constructor.
77
78 \func{}{wxFile}{\param{const char*}{ filename}, \param{wxFile::OpenMode}{ mode = wxFile::read}}
79
80 Opens a file with the given mode. As there is no way to return whether the
81 operation was successful or not from the constructor you should test the
82 return value of \helpref{IsOpened}{wxfileisopened} to check that it didn't
83 fail.
84
85 \func{}{wxFile}{\param{int}{ fd}}
86
87 Associates the file with the given file descriptor, which has already been opened.
88
89 \wxheading{Parameters}
90
91 \docparam{filename}{The filename.}
92
93 \docparam{mode}{The mode in which to open the file. May be one of {\bf wxFile::read}, {\bf wxFile::write} and {\bf wxFile::read\_write}.}
94
95 \docparam{fd}{An existing file descriptor (see \helpref{Attach()}{wxfileattach} for the list of predefined descriptors)}
96
97 \membersection{wxFile::\destruct{wxFile}}
98
99 \func{}{\destruct{wxFile}}{\void}
100
101 Destructor will close the file.
102
103 NB: it is not virtual so you should use wxFile polymorphically.
104
105 \membersection{wxFile::Access}\label{wxfileaccess}
106
107 \func{static bool}{Access}{\param{const char *}{ name}, \param{OpenMode}{ mode}}
108
109 This function verifies if we may access the given file in specified mode. Only
110 values of wxFile::read or wxFile::write really make sense here.
111
112 \membersection{wxFile::Attach}\label{wxfileattach}
113
114 \func{void}{Attach}{\param{int}{ fd}}
115
116 Attaches an existing file descriptor to the wxFile object. Example of predefined
117 file descriptors are 0, 1 and 2 which correspond to stdin, stdout and stderr (and
118 have symbolic names of {\bf wxFile::fd\_stdin}, {\bf wxFile::fd\_stdout} and {\bf wxFile::fd\_stderr}).
119
120 The descriptor should be already opened and it will be closed by wxFile
121 object.
122
123 \membersection{wxFile::Close}\label{wxfileclose}
124
125 \func{void}{Close}{\void}
126
127 Closes the file.
128
129 \membersection{wxFile::Create}\label{wxfilecreate}
130
131 \func{bool}{Create}{\param{const char*}{ filename}, \param{bool}{ overwrite = FALSE}, \param{int }{access = wxS\_DEFAULT}}
132
133 Creates a file for writing. If the file already exists, setting {\bf overwrite} to TRUE
134 will ensure it is overwritten.
135
136 \membersection{wxFile::Detach}\label{wxfiledetach}
137
138 \func{void}{Detach}{\void}
139
140 Get back a file descriptor from wxFile object - the caller is responsible for closing the file if this
141 descriptor is opened. \helpref{IsOpened()}{wxfileisopened} will return FALSE after call to Detach().
142
143 \membersection{wxFile::fd}\label{wxfilefd}
144
145 \constfunc{int}{fd}{\void}
146
147 Returns the file descriptor associated with the file.
148
149 \membersection{wxFile::Eof}\label{wxfileeof}
150
151 \constfunc{bool}{Eof}{\void}
152
153 Returns TRUE if the end of the file has been reached.
154
155 Note that the behaviour of the file pointer based class
156 \helpref{wxFFile}{wxffile} is different as \helpref{wxFFile::Eof}{wxffileeof}
157 will return TRUE here only if an attempt has been made to read
158 {\it past} the last byte of the file, while wxFile::Eof() will return TRUE
159 even before such attempt is made if the file pointer is at the last position
160 in the file.
161
162 Note also that this function doesn't work on unseekable file descriptors
163 (examples include pipes, terminals and sockets under Unix) and an attempt to
164 use it will result in an error message in such case. So, to read the entire
165 file into memory, you should write a loop which uses
166 \helpref{Read}{wxfileread} repeatedly and tests its return condition instead
167 of using Eof() as this will not work for special files under Unix.
168
169 \membersection{wxFile::Exists}\label{wxfileexists}
170
171 \func{static bool}{Exists}{\param{const char*}{ filename}}
172
173 Returns TRUE if the given name specifies an existing regular file (not a
174 directory or a link)
175
176 \membersection{wxFile::Flush}\label{wxfileflush}
177
178 \func{bool}{Flush}{\void}
179
180 Flushes the file descriptor.
181
182 Note that wxFile::Flush is not implemented on some Windows compilers
183 due to a missing fsync function, which reduces the usefulness of this function
184 (it can still be called but it will do nothing on unsupported compilers).
185
186 \membersection{wxFile::IsOpened}\label{wxfileisopened}
187
188 \constfunc{bool}{IsOpened}{\void}
189
190 Returns TRUE if the file has been opened.
191
192 \membersection{wxFile::Length}\label{wxfilelength}
193
194 \constfunc{off\_t}{Length}{\void}
195
196 Returns the length of the file.
197
198 \membersection{wxFile::Open}\label{wxfileopen}
199
200 \func{bool}{Open}{\param{const char*}{ filename}, \param{wxFile::OpenMode}{ mode = wxFile::read}}
201
202 Opens the file, returning TRUE if successful.
203
204 \wxheading{Parameters}
205
206 \docparam{filename}{The filename.}
207
208 \docparam{mode}{The mode in which to open the file. May be one of {\bf wxFile::read}, {\bf wxFile::write} and {\bf wxFile::read\_write}.}
209
210 \membersection{wxFile::Read}\label{wxfileread}
211
212 \func{off\_t}{Read}{\param{void*}{ buffer}, \param{off\_t}{ count}}
213
214 Reads the specified number of bytes into a buffer, returning the actual number read.
215
216 \wxheading{Parameters}
217
218 \docparam{buffer}{A buffer to receive the data.}
219
220 \docparam{count}{The number of bytes to read.}
221
222 \wxheading{Return value}
223
224 The number of bytes read, or the symbol {\bf wxInvalidOffset} (-1) if there was an error.
225
226 \membersection{wxFile::Seek}\label{wxfileseek}
227
228 \func{off\_t}{Seek}{\param{off\_t }{ofs}, \param{wxSeekMode }{mode = wxFromStart}}
229
230 Seeks to the specified position.
231
232 \wxheading{Parameters}
233
234 \docparam{ofs}{Offset to seek to.}
235
236 \docparam{mode}{One of {\bf wxFromStart}, {\bf wxFromEnd}, {\bf wxFromCurrent}.}
237
238 \wxheading{Return value}
239
240 The actual offset position achieved, or wxInvalidOffset on failure.
241
242 \membersection{wxFile::SeekEnd}\label{wxfileseekend}
243
244 \func{off\_t}{SeekEnd}{\param{off\_t }{ofs = 0}}
245
246 Moves the file pointer to the specified number of bytes before the end of the file.
247
248 \wxheading{Parameters}
249
250 \docparam{ofs}{Number of bytes before the end of the file.}
251
252 \wxheading{Return value}
253
254 The actual offset position achieved, or wxInvalidOffset on failure.
255
256 \membersection{wxFile::Tell}\label{wxfiletell}
257
258 \constfunc{off\_t}{Tell}{\void}
259
260 Returns the current position or wxInvalidOffset if file is not opened or if another
261 error occurred.
262
263 \membersection{wxFile::Write}\label{wxfilewrite}
264
265 \func{size\_t}{Write}{\param{const void*}{ buffer}, \param{off\_t}{ count}}
266
267 Writes the specified number of bytes from a buffer.
268
269 \wxheading{Parameters}
270
271 \docparam{buffer}{A buffer containing the data.}
272
273 \docparam{count}{The number of bytes to write.}
274
275 \wxheading{Return value}
276
277 the number of bytes actually written
278
279 \membersection{wxFile::Write}\label{wxfilewrites}
280
281 \func{bool}{Write}{\param{const wxString\& }{s}, \param{wxMBConv&}{ conv = wxConvLibc}}
282
283 Writes the contents of the string to the file, returns TRUE on success.
284
285 The second argument is only meaningful in Unicode build of wxWindows when
286 {\it conv} is used to convert {\it s} to multibyte representation.
287
288 \section{\class{wxFFile}}\label{wxffile}
289
290 wxFFile implements buffered file I/O. This is a very small class designed to
291 minimize the overhead of using it - in fact, there is hardly any overhead at
292 all, but using it brings you automatic error checking and hides differences
293 between platforms and compilers. It wraps inside it a {\tt FILE *} handle used
294 by standard C IO library (also known as {\tt stdio}).
295
296 \wxheading{Derived from}
297
298 None.
299
300 \wxheading{Include files}
301
302 <wx/ffile.h>
303
304 \twocolwidtha{7cm}
305 \begin{twocollist}\itemsep=0pt%
306 \twocolitem{{\bf wxFromStart}}{Count offset from the start of the file}
307 \twocolitem{{\bf wxFromCurrent}}{Count offset from the current position of the file pointer}
308 \twocolitem{{\bf wxFromEnd}}{Count offset from the end of the file (backwards)}
309 \end{twocollist}
310
311 \latexignore{\rtfignore{\wxheading{Members}}}
312
313 \membersection{wxFFile::wxFFile}\label{wxffileconstr}
314
315 \func{}{wxFFile}{\void}
316
317 Default constructor.
318
319 \func{}{wxFFile}{\param{const char*}{ filename}, \param{const char*}{ mode = "r"}}
320
321 Opens a file with the given mode. As there is no way to return whether the
322 operation was successful or not from the constructor you should test the
323 return value of \helpref{IsOpened}{wxffileisopened} to check that it didn't
324 fail.
325
326 \func{}{wxFFile}{\param{FILE*}{ fp}}
327
328 Opens a file with the given file pointer, which has already been opened.
329
330 \wxheading{Parameters}
331
332 \docparam{filename}{The filename.}
333
334 \docparam{mode}{The mode in which to open the file using standard C strings.
335 Note that you should use {\tt "b"} flag if you use binary files under Windows
336 or the results might be unexpected due to automatic newline conversion done
337 for the text files.}
338
339 \docparam{fp}{An existing file descriptor, such as stderr.}
340
341 \membersection{wxFFile::\destruct{wxFFile}}
342
343 \func{}{\destruct{wxFFile}}{\void}
344
345 Destructor will close the file.
346
347 NB: it is not virtual so you should {\it not} derive from wxFFile!
348
349 \membersection{wxFFile::Attach}\label{wxffileattach}
350
351 \func{void}{Attach}{\param{FILE*}{ fp}}
352
353 Attaches an existing file pointer to the wxFFile object.
354
355 The descriptor should be already opened and it will be closed by wxFFile
356 object.
357
358 \membersection{wxFFile::Close}\label{wxffileclose}
359
360 \func{bool}{Close}{\void}
361
362 Closes the file and returns TRUE on success.
363
364 \membersection{wxFFile::Detach}\label{wxffiledetach}
365
366 \func{void}{Detach}{\void}
367
368 Get back a file pointer from wxFFile object - the caller is responsible for closing the file if this
369 descriptor is opened. \helpref{IsOpened()}{wxffileisopened} will return FALSE after call to Detach().
370
371 \membersection{wxFFile::fp}\label{wxffilefp}
372
373 \constfunc{FILE *}{fp}{\void}
374
375 Returns the file pointer associated with the file.
376
377 \membersection{wxFFile::Eof}\label{wxffileeof}
378
379 \constfunc{bool}{Eof}{\void}
380
381 Returns TRUE if the an attempt has been made to read {\it past}
382 the end of the file.
383
384 Note that the behaviour of the file descriptor based class
385 \helpref{wxFile}{wxfile} is different as \helpref{wxFile::Eof}{wxfileeof}
386 will return TRUE here as soon as the last byte of the file has been
387 read.
388
389 \membersection{wxFFile::Flush}\label{wxffileflush}
390
391 \func{bool}{Flush}{\void}
392
393 Flushes the file and returns TRUE on success.
394
395 \membersection{wxFFile::IsOpened}\label{wxffileisopened}
396
397 \constfunc{bool}{IsOpened}{\void}
398
399 Returns TRUE if the file has been opened.
400
401 \membersection{wxFFile::Length}\label{wxffilelength}
402
403 \constfunc{size\_t}{Length}{\void}
404
405 Returns the length of the file.
406
407 \membersection{wxFFile::Open}\label{wxffileopen}
408
409 \func{bool}{Open}{\param{const char*}{ filename}, \param{const char*}{ mode = "r"}}
410
411 Opens the file, returning TRUE if successful.
412
413 \wxheading{Parameters}
414
415 \docparam{filename}{The filename.}
416
417 \docparam{mode}{The mode in which to open the file.}
418
419 \membersection{wxFFile::Read}\label{wxffileread}
420
421 \func{size\_t}{Read}{\param{void*}{ buffer}, \param{off\_t}{ count}}
422
423 Reads the specified number of bytes into a buffer, returning the actual number read.
424
425 \wxheading{Parameters}
426
427 \docparam{buffer}{A buffer to receive the data.}
428
429 \docparam{count}{The number of bytes to read.}
430
431 \wxheading{Return value}
432
433 The number of bytes read.
434
435 \membersection{wxFFile::Seek}\label{wxffileseek}
436
437 \func{bool}{Seek}{\param{long }{ofs}, \param{wxSeekMode }{mode = wxFromStart}}
438
439 Seeks to the specified position and returs TRUE on success.
440
441 \wxheading{Parameters}
442
443 \docparam{ofs}{Offset to seek to.}
444
445 \docparam{mode}{One of {\bf wxFromStart}, {\bf wxFromEnd}, {\bf wxFromCurrent}.}
446
447 \membersection{wxFFile::SeekEnd}\label{wxffileseekend}
448
449 \func{bool}{SeekEnd}{\param{long }{ofs = 0}}
450
451 Moves the file pointer to the specified number of bytes before the end of the file
452 and returns TRUE on success.
453
454 \wxheading{Parameters}
455
456 \docparam{ofs}{Number of bytes before the end of the file.}
457
458 \membersection{wxFFile::Tell}\label{wxffiletell}
459
460 \constfunc{size\_t}{Tell}{\void}
461
462 Returns the current position.
463
464 \membersection{wxFFile::Write}\label{wxffilewrite}
465
466 \func{size\_t}{Write}{\param{const void*}{ buffer}, \param{size\_t}{ count}}
467
468 Writes the specified number of bytes from a buffer.
469
470 \wxheading{Parameters}
471
472 \docparam{buffer}{A buffer containing the data.}
473
474 \docparam{count}{The number of bytes to write.}
475
476 \wxheading{Return value}
477
478 Number of bytes written.
479
480 \membersection{wxFFile::Write}\label{wxffilewrites}
481
482 \func{bool}{Write}{\param{const wxString\& }{s}, \param{wxMBConv&}{ conv = wxConvLibc}}
483
484 Writes the contents of the string to the file, returns TRUE on success.
485
486 The second argument is only meaningful in Unicode build of wxWindows when
487 {\it conv} is used to convert {\it s} to multibyte representation.
488