1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: wxFile - encapsulates low-level "file descriptor"
4 // wxTempFile - safely replace the old file
5 // Author: Vadim Zeitlin
9 // Copyright: (c) 1998 Vadim Zeitlin <zeitlin@dptmaths.ens-cachan.fr>
10 // Licence: wxWindows licence
11 /////////////////////////////////////////////////////////////////////////////
16 #if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
17 #pragma interface "file.h"
21 #include "wx/string.h"
22 #include "wx/filefn.h"
23 #include "wx/strconv.h"
28 // ----------------------------------------------------------------------------
30 // ----------------------------------------------------------------------------
32 // we redefine these constants here because S_IREAD &c are _not_ standard
33 // however, we do assume that the values correspond to the Unix umask bits
34 #define wxS_IRUSR 00400
35 #define wxS_IWUSR 00200
36 #define wxS_IXUSR 00100
38 #define wxS_IRGRP 00040
39 #define wxS_IWGRP 00020
40 #define wxS_IXGRP 00010
42 #define wxS_IROTH 00004
43 #define wxS_IWOTH 00002
44 #define wxS_IXOTH 00001
46 // default mode for the new files: corresponds to umask 022
47 #define wxS_DEFAULT (wxS_IRUSR | wxS_IWUSR | wxS_IRGRP | wxS_IWGRP |\
48 wxS_IROTH | wxS_IWOTH)
50 // ----------------------------------------------------------------------------
51 // class wxFile: raw file IO
53 // NB: for space efficiency this class has no virtual functions, including
54 // dtor which is _not_ virtual, so it shouldn't be used as a base class.
55 // ----------------------------------------------------------------------------
57 class WXDLLIMPEXP_BASE wxFile
60 // more file constants
61 // -------------------
63 enum OpenMode
{ read
, write
, read_write
, write_append
, write_excl
};
64 // standard values for file descriptor
65 enum { fd_invalid
= -1, fd_stdin
, fd_stdout
, fd_stderr
};
69 // check whether a regular file by this name exists
70 static bool Exists(const wxChar
*name
);
71 // check whetther we can access the given file in given mode
72 // (only read and write make sense here)
73 static bool Access(const wxChar
*name
, OpenMode mode
);
78 wxFile() { m_fd
= fd_invalid
; }
79 // open specified file (may fail, use IsOpened())
80 wxFile(const wxChar
*szFileName
, OpenMode mode
= read
);
81 // attach to (already opened) file
82 wxFile(int fd
) { m_fd
= fd
; }
85 // create a new file (with the default value of bOverwrite, it will fail if
86 // the file already exists, otherwise it will overwrite it and succeed)
87 bool Create(const wxChar
*szFileName
, bool bOverwrite
= FALSE
,
88 int access
= wxS_DEFAULT
);
89 bool Open(const wxChar
*szFileName
, OpenMode mode
= read
,
90 int access
= wxS_DEFAULT
);
91 bool Close(); // Close is a NOP if not opened
93 // assign an existing file descriptor and get it back from wxFile object
94 void Attach(int fd
) { Close(); m_fd
= fd
; }
95 void Detach() { m_fd
= fd_invalid
; }
96 int fd() const { return m_fd
; }
98 // read/write (unbuffered)
99 // returns number of bytes read or ofsInvalid on error
100 off_t
Read(void *pBuf
, off_t nCount
);
101 // returns the number of bytes written
102 size_t Write(const void *pBuf
, size_t nCount
);
103 // returns true on success
104 bool Write(const wxString
& s
, wxMBConv
& conv
= wxConvUTF8
)
106 const wxWX2MBbuf buf
= s
.mb_str(conv
);
107 size_t size
= strlen(buf
);
108 return Write((const char *) buf
, size
) == size
;
110 // flush data not yet written
113 // file pointer operations (return ofsInvalid on failure)
114 // move ptr ofs bytes related to start/current off_t/end of file
115 off_t
Seek(off_t ofs
, wxSeekMode mode
= wxFromStart
);
116 // move ptr to ofs bytes before the end
117 off_t
SeekEnd(off_t ofs
= 0) { return Seek(ofs
, wxFromEnd
); }
120 // get current file length
121 off_t
Length() const;
125 bool IsOpened() const { return m_fd
!= fd_invalid
; }
126 // is end of file reached?
128 // has an error occured?
129 bool Error() const { return m_error
; }
131 // dtor closes the file if opened
132 ~wxFile() { Close(); }
135 // copy ctor and assignment operator are private because
136 // it doesn't make sense to copy files this way:
137 // attempt to do it will provoke a compile-time error.
138 wxFile(const wxFile
&);
139 wxFile
& operator=(const wxFile
&);
141 int m_fd
; // file descriptor or INVALID_FD if not opened
142 bool m_error
; // error memory
145 // ----------------------------------------------------------------------------
146 // class wxTempFile: if you want to replace another file, create an instance
147 // of wxTempFile passing the name of the file to be replaced to the ctor. Then
148 // you can write to wxTempFile and call Commit() function to replace the old
149 // file (and close this one) or call Discard() to cancel the modification. If
150 // you call neither of them, dtor will call Discard().
151 // ----------------------------------------------------------------------------
153 class WXDLLIMPEXP_BASE wxTempFile
159 // associates the temp file with the file to be replaced and opens it
160 wxTempFile(const wxString
& strName
);
162 // open the temp file (strName is the name of file to be replaced)
163 bool Open(const wxString
& strName
);
165 // is the file opened?
166 bool IsOpened() const { return m_file
.IsOpened(); }
168 // I/O (both functions return true on success, false on failure)
169 bool Write(const void *p
, size_t n
) { return m_file
.Write(p
, n
) != 0; }
170 bool Write(const wxString
& str
, wxMBConv
& conv
= wxConvUTF8
)
171 { return m_file
.Write(str
, conv
); }
173 // different ways to close the file
174 // validate changes and delete the old file of name m_strName
179 // dtor calls Discard() if file is still opened
183 // no copy ctor/assignment operator
184 wxTempFile(const wxTempFile
&);
185 wxTempFile
& operator=(const wxTempFile
&);
187 wxString m_strName
, // name of the file to replace in Commit()
188 m_strTemp
; // temporary file name
189 wxFile m_file
; // the temporary file
194 #endif // _WX_FILEH__