]> git.saurik.com Git - wxWidgets.git/blame_incremental - docs/latex/wx/file.tex
Added EVT_GRID_EDITOR_CREATED and wxGridEditorCreatedEvent so the user
[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.
332Note that you should use {\tt "b"} flag if you use binary files under Windows
333or the results might be unexpected due to automatic newline conversion done
334for the text files.}
335
336\docparam{fp}{An existing file descriptor, such as stderr.}
337
338\membersection{wxFFile::\destruct{wxFFile}}
339
340\func{}{\destruct{wxFFile}}{\void}
341
342Destructor will close the file.
343
344NB: it is not virtual so you should {\it not} derive from wxFFile!
345
346\membersection{wxFFile::Attach}\label{wxffileattach}
347
348\func{void}{Attach}{\param{FILE*}{ fp}}
349
350Attaches an existing file pointer to the wxFFile object.
351
352The descriptor should be already opened and it will be closed by wxFFile
353object.
354
355\membersection{wxFFile::Close}\label{wxffileclose}
356
357\func{bool}{Close}{\void}
358
359Closes the file and returns TRUE on success.
360
361\membersection{wxFFile::Detach}\label{wxffiledetach}
362
363\func{void}{Detach}{\void}
364
365Get back a file pointer from wxFFile object - the caller is responsible for closing the file if this
366descriptor is opened. \helpref{IsOpened()}{wxffileisopened} will return FALSE after call to Detach().
367
368\membersection{wxFFile::fp}\label{wxffilefp}
369
370\constfunc{FILE *}{fp}{\void}
371
372Returns the file pointer associated with the file.
373
374\membersection{wxFFile::Eof}\label{wxffileeof}
375
376\constfunc{bool}{Eof}{\void}
377
378Returns TRUE if the an attempt has been made to read {\it past}
379the end of the file.
380
381Note that the behaviour of the file descriptor based class
382\helpref{wxFile}{wxfile} is different as \helpref{wxFile::Eof}{wxfileeof}
383will return TRUE here as soon as the last byte of the file has been
384read.
385
386\membersection{wxFFile::Flush}\label{wxffileflush}
387
388\func{bool}{Flush}{\void}
389
390Flushes the file and returns TRUE on success.
391
392\membersection{wxFFile::IsOpened}\label{wxffileisopened}
393
394\constfunc{bool}{IsOpened}{\void}
395
396Returns TRUE if the file has been opened.
397
398\membersection{wxFFile::Length}\label{wxffilelength}
399
400\constfunc{size\_t}{Length}{\void}
401
402Returns the length of the file.
403
404\membersection{wxFFile::Open}\label{wxffileopen}
405
406\func{bool}{Open}{\param{const char*}{ filename}, \param{const char*}{ mode = "r"}}
407
408Opens the file, returning TRUE if successful.
409
410\wxheading{Parameters}
411
412\docparam{filename}{The filename.}
413
414\docparam{mode}{The mode in which to open the file.}
415
416\membersection{wxFFile::Read}\label{wxffileread}
417
418\func{size\_t}{Read}{\param{void*}{ buffer}, \param{off\_t}{ count}}
419
420Reads the specified number of bytes into a buffer, returning the actual number read.
421
422\wxheading{Parameters}
423
424\docparam{buffer}{A buffer to receive the data.}
425
426\docparam{count}{The number of bytes to read.}
427
428\wxheading{Return value}
429
430The number of bytes read.
431
432\membersection{wxFFile::Seek}\label{wxffileseek}
433
434\func{bool}{Seek}{\param{long }{ofs}, \param{wxSeekMode }{mode = wxFromStart}}
435
436Seeks to the specified position and returs TRUE on success.
437
438\wxheading{Parameters}
439
440\docparam{ofs}{Offset to seek to.}
441
442\docparam{mode}{One of {\bf wxFromStart}, {\bf wxFromEnd}, {\bf wxFromCurrent}.}
443
444\membersection{wxFFile::SeekEnd}\label{wxffileseekend}
445
446\func{bool}{SeekEnd}{\param{long }{ofs = 0}}
447
448Moves the file pointer to the specified number of bytes before the end of the file
449and returns TRUE on success.
450
451\wxheading{Parameters}
452
453\docparam{ofs}{Number of bytes before the end of the file.}
454
455\membersection{wxFFile::Tell}\label{wxffiletell}
456
457\constfunc{size\_t}{Tell}{\void}
458
459Returns the current position.
460
461\membersection{wxFFile::Write}\label{wxffilewrite}
462
463\func{size\_t}{Write}{\param{const void*}{ buffer}, \param{size\_t}{ count}}
464
465Writes the specified number of bytes from a buffer.
466
467\wxheading{Parameters}
468
469\docparam{buffer}{A buffer containing the data.}
470
471\docparam{count}{The number of bytes to write.}
472
473\wxheading{Return value}
474
475Number of bytes written.
476
477\membersection{wxFFile::Write}\label{wxffilewrites}
478
479\func{bool}{Write}{\param{const wxString\& }{s}}
480
481Writes the contents of the string to the file, returns TRUE on success.
482