]> git.saurik.com Git - wxWidgets.git/blame_incremental - docs/latex/wx/file.tex
v2.2.1 TAGGED copy ported over to main trunk of CVS
[wxWidgets.git] / docs / latex / wx / file.tex
... / ...
CommitLineData
1\section{\class{wxFile}}\label{wxfile}
2
3A wxFile performs raw file I/O. This is a very small class designed to
4minimize the overhead of using it - in fact, there is hardly any overhead at
5all, but using it brings you automatic error checking and hides differences
6between platforms and compilers. wxFile also automatically closes the file in
7its destructor making it unnecessary to worry about forgetting to do it.
8wxFile 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
13None.
14
15\wxheading{Include files}
16
17<wx/file.h>
18
19\wxheading{Constants}
20
21wx/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
40These constants define the file access rights and are used with
41\helpref{wxFile::Create}{wxfilecreate} and \helpref{wxFile::Open}{wxfileopen}.
42
43The {\it OpenMode} enumeration defines the different modes for opening a file,
44it is defined inside wxFile class so its members should be specified with {\it wxFile::} scope
45resolution 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
51or 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
54contents of the file is not erased and the file pointer is initially placed at the end of the file;
55can not be used with Access(). This is the same as {\bf wxFile::write} if the
56file doesn't exist.}
57\end{twocollist}
58
59Other constants defined elsewhere but used by wxFile functions are wxInvalidOffset which represents an
60invalid value of type {\it off\_t} and is returned by functions returning {\it off\_t} on error and the seek
61mode 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
76Default constructor.
77
78\func{}{wxFile}{\param{const char*}{ filename}, \param{wxFile::OpenMode}{ mode = wxFile::read}}
79
80Opens a file with the given mode. As there is no way to return whether the
81operation was successful or not from the constructor you should test the
82return value of \helpref{IsOpened}{wxfileisopened} to check that it didn't
83fail.
84
85\func{}{wxFile}{\param{int}{ fd}}
86
87Associates 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
101Destructor will close the file.
102
103NB: 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
109This function verifies if we may access the given file in specified mode. Only
110values 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
116Attaches an existing file descriptor to the wxFile object. Example of predefined
117file descriptors are 0, 1 and 2 which correspond to stdin, stdout and stderr (and
118have symbolic names of {\bf wxFile::fd\_stdin}, {\bf wxFile::fd\_stdout} and {\bf wxFile::fd\_stderr}).
119
120The descriptor should be already opened and it will be closed by wxFile
121object.
122
123\membersection{wxFile::Close}\label{wxfileclose}
124
125\func{void}{Close}{\void}
126
127Closes 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
133Creates a file for writing. If the file already exists, setting {\bf overwrite} to TRUE
134will ensure it is overwritten.
135
136\membersection{wxFile::Detach}\label{wxfiledetach}
137
138\func{void}{Detach}{\void}
139
140Get back a file descriptor from wxFile object - the caller is responsible for closing the file if this
141descriptor 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
147Returns the file descriptor associated with the file.
148
149\membersection{wxFile::Eof}\label{wxfileeof}
150
151\constfunc{bool}{Eof}{\void}
152
153Returns TRUE if the end of the file has been reached.
154
155Note that the behaviour of the file pointer based class
156\helpref{wxFFile}{wxffile} is different as \helpref{wxFFile::Eof}{wxffileeof}
157will 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
159even before such attempt is made if the file pointer is at the last position
160in the file.
161
162Note also that this function doesn't work on unseekable file descriptors
163(examples include pipes, terminals and sockets under Unix) and an attempt to
164use it will result in an error message in such case. So, to read the entire
165file into memory, you should write a loop which uses
166\helpref{Read}{wxfileread} repeatedly and tests its return condition instead
167of 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
173Returns TRUE if the given name specifies an existing regular file (not a
174directory or a link)
175
176\membersection{wxFile::Flush}\label{wxfileflush}
177
178\func{bool}{Flush}{\void}
179
180Flushes the file descriptor.
181
182Note that wxFile::Flush is not implemented on some Windows compilers
183due 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
190Returns TRUE if the file has been opened.
191
192\membersection{wxFile::Length}\label{wxfilelength}
193
194\constfunc{off\_t}{Length}{\void}
195
196Returns 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
202Opens 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
214Reads 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
224The 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
230Seeks 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
240The 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
246Moves 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
254The actual offset position achieved, or wxInvalidOffset on failure.
255
256\membersection{wxFile::Tell}\label{wxfiletell}
257
258\constfunc{off\_t}{Tell}{\void}
259
260Returns the current position or wxInvalidOffset if file is not opened or if another
261error occurred.
262
263\membersection{wxFile::Write}\label{wxfilewrite}
264
265\func{size\_t}{Write}{\param{const void*}{ buffer}, \param{off\_t}{ count}}
266
267Writes 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
277the number of bytes actually written
278
279\membersection{wxFile::Write}\label{wxfilewrites}
280
281\func{bool}{Write}{\param{const wxString\& }{s}}
282
283Writes the contents of the string to the file, returns TRUE on success.
284
285\section{\class{wxFFile}}\label{wxffile}
286
287wxFFile implements buffered file I/O. This is a very small class designed to
288minimize the overhead of using it - in fact, there is hardly any overhead at
289all, but using it brings you automatic error checking and hides differences
290between platforms and compilers. It wraps inside it a {\tt FILE *} handle used
291by standard C IO library (also known as {\tt stdio}).
292
293\wxheading{Derived from}
294
295None.
296
297\wxheading{Include files}
298
299<wx/ffile.h>
300
301\twocolwidtha{7cm}
302\begin{twocollist}\itemsep=0pt%
303\twocolitem{{\bf wxFromStart}}{Count offset from the start of the file}
304\twocolitem{{\bf wxFromCurrent}}{Count offset from the current position of the file pointer}
305\twocolitem{{\bf wxFromEnd}}{Count offset from the end of the file (backwards)}
306\end{twocollist}
307
308\latexignore{\rtfignore{\wxheading{Members}}}
309
310\membersection{wxFFile::wxFFile}\label{wxffileconstr}
311
312\func{}{wxFFile}{\void}
313
314Default constructor.
315
316\func{}{wxFFile}{\param{const char*}{ filename}, \param{const char*}{ mode = "r"}}
317
318Opens a file with the given mode. As there is no way to return whether the
319operation was successful or not from the constructor you should test the
320return value of \helpref{IsOpened}{wxffileisopened} to check that it didn't
321fail.
322
323\func{}{wxFFile}{\param{FILE*}{ fp}}
324
325Opens a file with the given file pointer, which has already been opened.
326
327\wxheading{Parameters}
328
329\docparam{filename}{The filename.}
330
331\docparam{mode}{The mode in which to open the file using standard C strings.}
332
333\docparam{fp}{An existing file descriptor, such as stderr.}
334
335\membersection{wxFFile::\destruct{wxFFile}}
336
337\func{}{\destruct{wxFFile}}{\void}
338
339Destructor will close the file.
340
341NB: it is not virtual so you should {\it not} derive from wxFFile!
342
343\membersection{wxFFile::Attach}\label{wxffileattach}
344
345\func{void}{Attach}{\param{FILE*}{ fp}}
346
347Attaches an existing file pointer to the wxFFile object.
348
349The descriptor should be already opened and it will be closed by wxFFile
350object.
351
352\membersection{wxFFile::Close}\label{wxffileclose}
353
354\func{bool}{Close}{\void}
355
356Closes the file and returns TRUE on success.
357
358\membersection{wxFFile::Detach}\label{wxffiledetach}
359
360\func{void}{Detach}{\void}
361
362Get back a file pointer from wxFFile object - the caller is responsible for closing the file if this
363descriptor is opened. \helpref{IsOpened()}{wxffileisopened} will return FALSE after call to Detach().
364
365\membersection{wxFFile::fp}\label{wxffilefp}
366
367\constfunc{FILE *}{fp}{\void}
368
369Returns the file pointer associated with the file.
370
371\membersection{wxFFile::Eof}\label{wxffileeof}
372
373\constfunc{bool}{Eof}{\void}
374
375Returns TRUE if the an attempt has been made to read {\it past}
376the end of the file.
377
378Note that the behaviour of the file descriptor based class
379\helpref{wxFile}{wxfile} is different as \helpref{wxFile::Eof}{wxfileeof}
380will return TRUE here as soon as the last byte of the file has been
381read.
382
383\membersection{wxFFile::Flush}\label{wxffileflush}
384
385\func{bool}{Flush}{\void}
386
387Flushes the file and returns TRUE on success.
388
389\membersection{wxFFile::IsOpened}\label{wxffileisopened}
390
391\constfunc{bool}{IsOpened}{\void}
392
393Returns TRUE if the file has been opened.
394
395\membersection{wxFFile::Length}\label{wxffilelength}
396
397\constfunc{size\_t}{Length}{\void}
398
399Returns the length of the file.
400
401\membersection{wxFFile::Open}\label{wxffileopen}
402
403\func{bool}{Open}{\param{const char*}{ filename}, \param{const char*}{ mode = "r"}}
404
405Opens the file, returning TRUE if successful.
406
407\wxheading{Parameters}
408
409\docparam{filename}{The filename.}
410
411\docparam{mode}{The mode in which to open the file.}
412
413\membersection{wxFFile::Read}\label{wxffileread}
414
415\func{size\_t}{Read}{\param{void*}{ buffer}, \param{off\_t}{ count}}
416
417Reads the specified number of bytes into a buffer, returning the actual number read.
418
419\wxheading{Parameters}
420
421\docparam{buffer}{A buffer to receive the data.}
422
423\docparam{count}{The number of bytes to read.}
424
425\wxheading{Return value}
426
427The number of bytes read.
428
429\membersection{wxFFile::Seek}\label{wxffileseek}
430
431\func{bool}{Seek}{\param{long }{ofs}, \param{wxSeekMode }{mode = wxFromStart}}
432
433Seeks to the specified position and returs TRUE on success.
434
435\wxheading{Parameters}
436
437\docparam{ofs}{Offset to seek to.}
438
439\docparam{mode}{One of {\bf wxFromStart}, {\bf wxFromEnd}, {\bf wxFromCurrent}.}
440
441\membersection{wxFFile::SeekEnd}\label{wxffileseekend}
442
443\func{bool}{SeekEnd}{\param{long }{ofs = 0}}
444
445Moves the file pointer to the specified number of bytes before the end of the file
446and returns TRUE on success.
447
448\wxheading{Parameters}
449
450\docparam{ofs}{Number of bytes before the end of the file.}
451
452\membersection{wxFFile::Tell}\label{wxffiletell}
453
454\constfunc{size\_t}{Tell}{\void}
455
456Returns the current position.
457
458\membersection{wxFFile::Write}\label{wxffilewrite}
459
460\func{size\_t}{Write}{\param{const void*}{ buffer}, \param{size\_t}{ count}}
461
462Writes the specified number of bytes from a buffer.
463
464\wxheading{Parameters}
465
466\docparam{buffer}{A buffer containing the data.}
467
468\docparam{count}{The number of bytes to write.}
469
470\wxheading{Return value}
471
472Number of bytes written.
473
474\membersection{wxFFile::Write}\label{wxffilewrites}
475
476\func{bool}{Write}{\param{const wxString\& }{s}}
477
478Writes the contents of the string to the file, returns TRUE on success.
479