]> git.saurik.com Git - wxWidgets.git/blame - docs/latex/wx/tempfile.tex
fall back on text value if no long/double value could be retrieved from the cell
[wxWidgets.git] / docs / latex / wx / tempfile.tex
CommitLineData
7f561143
VZ
1% automatically generated by HelpGen from tempfile.tex at 10/Jan/99 19:24:44
2\section{\class{wxTempFile}}\label{wxtempfile}
3
4wxTempFile provides a relatively safe way to replace the contents of the
5existing file. The name is explained by the fact that it may be also used as
6just a temporary file if you don't replace the old file contents.
7
8Usually, when a program replaces the contents of some file it first opens it for
9writing, thus losing all of the old data and then starts recreating it. This
10approach is not very safe because during the regeneration of the file bad things
11may happen: the program may find that there is an internal error preventing it
12from completing file generation, the user may interrupt it (especially if file
13generation takes long time) and, finally, any other external interrupts (power
14supply failure or a disk error) will leave you without either the original file
15or the new one.
16
17wxTempFile addresses this problem by creating a temporary file which is meant to
18replace the original file - but only after it is fully written. So, if the user
19interrupts the program during the file generation, the old file won't be lost.
20Also, if the program discovers itself that it doesn't want to replace the old
21file there is no problem - in fact, wxTempFile will {\bf not} replace the old
22file by default, you should explicitly call \helpref{Commit}{wxtempfilecommit}
23to do it. Calling \helpref{Discard}{wxtempfilediscard} explicitly discards any
24modifications: it closes and deletes the temporary file and leaves the original
25file unchanged. If you don't call neither of Commit() and Discard(), the
26destructor will call Discard() automatically.
27
28To summarize: if you want to replace another file, create an instance of
29wxTempFile passing the name of the file to be replaced to the constructor (you
30may also use default constructor and pass the file name to
31\helpref{Open}{wxtempfileopen}). Then you can \helpref{write}{wxtempfilewrite}
32to wxTempFile using \helpref{wxFile}{wxfile}-like functions and later call
33Commit() to replace the old file (and close this one) or call Discard() to cancel
34the modifications.
35
36\wxheading{Derived from}
37
38No base class
39
954b8ae6
JS
40\wxheading{Include files}
41
42<wx/file.h>
43
7f561143
VZ
44\wxheading{See also:}
45
46\helpref{wxFile}{wxfile}
47
48\latexignore{\rtfignore{\wxheading{Members}}}
49
50\membersection{wxTempFile::wxTempFile}\label{wxtempfilewxtempfilector}
51\func{}{wxTempFile}{\void}
52
53Default constructor - \helpref{Open}{wxtempfileopen} must be used to open the
54file.
55
56\membersection{wxTempFile::wxTempFile}\label{wxtempfilewxtempfile}
57\func{}{wxTempFile}{\param{const wxString\& }{strName}}
58
59Associates wxTempFile with the file to be replaced and opens it. You should use
60\helpref{IsOpened}{wxtempfileisopened} to verify if the constructor succeeded.
61
62\membersection{wxTempFile::Open}\label{wxtempfileopen}
63\func{bool}{Open}{\param{const wxString\& }{strName}}
64
65Open the temporary file (strName is the name of file to be replaced), returns
66TRUE on success, FALSE if an error occured.
67
68\membersection{wxTempFile::IsOpened}\label{wxtempfileisopened}
69\constfunc{bool}{IsOpened}{\void}
70
71Returns TRUE if the file was successfully opened.
72
73\membersection{wxTempFile::Write}\label{wxtempfilewrite}
74\func{bool}{Write}{\param{const void }{*p}, \param{size\_t }{n}}
75
76Write to the file, return TRUE on success, FALSE on failure.
77
78\membersection{wxTempFile::Write}\label{wxtempfilewrites}
79\func{bool}{Write}{\param{const wxString\& }{str}}
80
81Write to the file, return TRUE on success, FALSE on failure.
82
83\membersection{wxTempFile::Commit}\label{wxtempfilecommit}
84\func{bool}{Commit}{\void}
85
86Validate changes: deletes the old file of name m\_strName and renames the new
87file to the old name. Returns TRUE if both actions succeeded. If FALSE is
88returned it may unfortunately mean two quite different things: either that
89either the old file couldn't be deleted or that the new file couldn't be renamed
90to the old name.
91
92\membersection{wxTempFile::Discard}\label{wxtempfilediscard}
93\func{void}{Discard}{\void}
94
95Discard changes: the old file contents is not changed, temporary file is
96deleted.
97
98\membersection{wxTempFile::\destruct{wxTempFile}}\label{wxtempfiledtor}
99\func{}{\destruct{wxTempFile}}{\void}
100
101Destructor calls \helpref{Discard()}{wxtempfilediscard} if temporary file
102is still opened.
103