]>
Commit | Line | Data |
---|---|---|
3d4c6a21 GL |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: fstream.cpp | |
3 | // Purpose: "File stream" classes | |
4 | // Author: Julian Smart | |
5 | // Modified by: | |
6 | // Created: 11/07/98 | |
7 | // RCS-ID: $Id$ | |
f6bcfd97 | 8 | // Copyright: (c) Guilhem Lavaux |
55d99c7a | 9 | // Licence: wxWindows licence |
3d4c6a21 GL |
10 | ///////////////////////////////////////////////////////////////////////////// |
11 | ||
12 | #ifdef __GNUG__ | |
593d4b0d | 13 | #pragma implementation "wfstream.h" |
3d4c6a21 GL |
14 | #endif |
15 | ||
79c3e0e1 GL |
16 | // For compilers that support precompilation, includes "wx.h". |
17 | #include "wx/wxprec.h" | |
3d4c6a21 | 18 | |
79c3e0e1 | 19 | #ifdef __BORLANDC__ |
ce4169a4 | 20 | #pragma hdrstop |
79c3e0e1 GL |
21 | #endif |
22 | ||
ce4169a4 RR |
23 | #if wxUSE_STREAMS && wxUSE_FILE |
24 | ||
25 | #include <stdio.h> | |
d1af991f RR |
26 | #include "wx/stream.h" |
27 | #include "wx/wfstream.h" | |
ce4169a4 | 28 | |
79c3e0e1 GL |
29 | // ---------------------------------------------------------------------------- |
30 | // wxFileInputStream | |
31 | // ---------------------------------------------------------------------------- | |
32 | ||
33 | wxFileInputStream::wxFileInputStream(const wxString& fileName) | |
25c70b07 | 34 | : wxInputStream() |
3d4c6a21 | 35 | { |
f6bcfd97 BP |
36 | m_file = new wxFile(fileName, wxFile::read); |
37 | m_file_destroy = TRUE; | |
3d4c6a21 GL |
38 | } |
39 | ||
25c70b07 GL |
40 | wxFileInputStream::wxFileInputStream() |
41 | : wxInputStream() | |
42 | { | |
f6bcfd97 BP |
43 | m_file_destroy = FALSE; |
44 | m_file = NULL; | |
25c70b07 GL |
45 | } |
46 | ||
0aca1ded GL |
47 | wxFileInputStream::wxFileInputStream(wxFile& file) |
48 | { | |
f6bcfd97 BP |
49 | m_file = &file; |
50 | m_file_destroy = FALSE; | |
0aca1ded GL |
51 | } |
52 | ||
53 | wxFileInputStream::wxFileInputStream(int fd) | |
54 | { | |
f6bcfd97 BP |
55 | m_file = new wxFile(fd); |
56 | m_file_destroy = TRUE; | |
0aca1ded GL |
57 | } |
58 | ||
79c3e0e1 | 59 | wxFileInputStream::~wxFileInputStream() |
3d4c6a21 | 60 | { |
f6bcfd97 BP |
61 | if (m_file_destroy) |
62 | delete m_file; | |
3d4c6a21 GL |
63 | } |
64 | ||
cd25b18c | 65 | size_t wxFileInputStream::GetSize() const |
84b46c35 | 66 | { |
f6bcfd97 | 67 | return m_file->Length(); |
84b46c35 GL |
68 | } |
69 | ||
75ed1d15 | 70 | size_t wxFileInputStream::OnSysRead(void *buffer, size_t size) |
6d44bf31 | 71 | { |
9a26db9e | 72 | off_t ret = m_file->Read(buffer, size); |
fae05df5 | 73 | |
e69a1ea8 VZ |
74 | // NB: we can't use a switch here because HP-UX CC doesn't allow |
75 | // switching over long long (which off_t is in 64bit mode) | |
9a26db9e | 76 | |
e69a1ea8 VZ |
77 | if ( !ret ) |
78 | { | |
79 | // nothing read, so nothing more to read | |
80 | m_lasterror = wxSTREAM_EOF; | |
81 | } | |
82 | else if ( ret == wxInvalidOffset ) | |
83 | { | |
84 | m_lasterror = wxSTREAM_READ_ERROR; | |
85 | ret = 0; | |
86 | } | |
87 | else | |
88 | { | |
89 | // normal case | |
90 | m_lasterror = wxSTREAM_NO_ERROR; | |
f6bcfd97 | 91 | } |
fae05df5 | 92 | |
f6bcfd97 | 93 | return ret; |
6d44bf31 GL |
94 | } |
95 | ||
75ed1d15 | 96 | off_t wxFileInputStream::OnSysSeek(off_t pos, wxSeekMode mode) |
3d4c6a21 | 97 | { |
9a26db9e | 98 | return m_file->Seek(pos, mode); |
79c3e0e1 GL |
99 | } |
100 | ||
75ed1d15 | 101 | off_t wxFileInputStream::OnSysTell() const |
79c3e0e1 | 102 | { |
f6bcfd97 | 103 | return m_file->Tell(); |
79c3e0e1 GL |
104 | } |
105 | ||
106 | // ---------------------------------------------------------------------------- | |
107 | // wxFileOutputStream | |
108 | // ---------------------------------------------------------------------------- | |
109 | ||
110 | wxFileOutputStream::wxFileOutputStream(const wxString& fileName) | |
25c70b07 | 111 | { |
f6bcfd97 BP |
112 | m_file = new wxFile(fileName, wxFile::write); |
113 | m_file_destroy = TRUE; | |
9a26db9e | 114 | |
942bef71 RR |
115 | if (!m_file->IsOpened()) |
116 | { | |
117 | m_lasterror = wxSTREAM_WRITE_ERROR; | |
118 | } | |
119 | else | |
120 | { | |
121 | if (m_file->Error()) | |
122 | m_lasterror = wxSTREAM_WRITE_ERROR; | |
123 | } | |
25c70b07 GL |
124 | } |
125 | ||
84b46c35 GL |
126 | wxFileOutputStream::wxFileOutputStream(wxFile& file) |
127 | { | |
f6bcfd97 BP |
128 | m_file = &file; |
129 | m_file_destroy = FALSE; | |
84b46c35 GL |
130 | } |
131 | ||
25c70b07 | 132 | wxFileOutputStream::wxFileOutputStream() |
9a26db9e | 133 | : wxOutputStream() |
79c3e0e1 | 134 | { |
f6bcfd97 BP |
135 | m_file_destroy = FALSE; |
136 | m_file = NULL; | |
3d4c6a21 GL |
137 | } |
138 | ||
0aca1ded GL |
139 | wxFileOutputStream::wxFileOutputStream(int fd) |
140 | { | |
f6bcfd97 BP |
141 | m_file = new wxFile(fd); |
142 | m_file_destroy = TRUE; | |
0aca1ded GL |
143 | } |
144 | ||
79c3e0e1 | 145 | wxFileOutputStream::~wxFileOutputStream() |
3d4c6a21 | 146 | { |
9a26db9e | 147 | if (m_file_destroy) |
f6bcfd97 BP |
148 | { |
149 | Sync(); | |
150 | delete m_file; | |
151 | } | |
79c3e0e1 | 152 | } |
3d4c6a21 | 153 | |
75ed1d15 | 154 | size_t wxFileOutputStream::OnSysWrite(const void *buffer, size_t size) |
79c3e0e1 | 155 | { |
f6bcfd97 | 156 | size_t ret = m_file->Write(buffer, size); |
9a26db9e VZ |
157 | |
158 | m_lasterror = m_file->Error() ? wxSTREAM_WRITE_ERROR : wxSTREAM_NO_ERROR; | |
159 | ||
f6bcfd97 | 160 | return ret; |
79c3e0e1 | 161 | } |
3d4c6a21 | 162 | |
75ed1d15 | 163 | off_t wxFileOutputStream::OnSysTell() const |
79c3e0e1 | 164 | { |
f6bcfd97 | 165 | return m_file->Tell(); |
3d4c6a21 GL |
166 | } |
167 | ||
75ed1d15 | 168 | off_t wxFileOutputStream::OnSysSeek(off_t pos, wxSeekMode mode) |
3d4c6a21 | 169 | { |
f6bcfd97 | 170 | return m_file->Seek(pos, mode); |
3d4c6a21 GL |
171 | } |
172 | ||
79c3e0e1 | 173 | void wxFileOutputStream::Sync() |
3d4c6a21 | 174 | { |
f6bcfd97 BP |
175 | wxOutputStream::Sync(); |
176 | m_file->Flush(); | |
3d4c6a21 | 177 | } |
84b46c35 | 178 | |
cd25b18c | 179 | size_t wxFileOutputStream::GetSize() const |
84b46c35 | 180 | { |
f6bcfd97 | 181 | return m_file->Length(); |
84b46c35 GL |
182 | } |
183 | ||
184 | // ---------------------------------------------------------------------------- | |
185 | // wxFileStream | |
186 | // ---------------------------------------------------------------------------- | |
f6bcfd97 | 187 | |
84b46c35 | 188 | wxFileStream::wxFileStream(const wxString& fileName) |
f6bcfd97 | 189 | : wxFileInputStream(fileName) |
84b46c35 | 190 | { |
f6bcfd97 | 191 | wxFileOutputStream::m_file = wxFileInputStream::m_file; |
84b46c35 | 192 | } |
ce4169a4 | 193 | |
65045edd RR |
194 | // ---------------------------------------------------------------------------- |
195 | // wxFFileInputStream | |
196 | // ---------------------------------------------------------------------------- | |
197 | ||
198 | wxFFileInputStream::wxFFileInputStream(const wxString& fileName) | |
199 | : wxInputStream() | |
200 | { | |
f68c6b52 | 201 | m_file = new wxFFile(fileName, _T("rb")); |
f6bcfd97 | 202 | m_file_destroy = TRUE; |
65045edd RR |
203 | } |
204 | ||
205 | wxFFileInputStream::wxFFileInputStream() | |
206 | : wxInputStream() | |
207 | { | |
f6bcfd97 BP |
208 | m_file_destroy = FALSE; |
209 | m_file = NULL; | |
65045edd RR |
210 | } |
211 | ||
212 | wxFFileInputStream::wxFFileInputStream(wxFFile& file) | |
213 | { | |
f6bcfd97 BP |
214 | m_file = &file; |
215 | m_file_destroy = FALSE; | |
65045edd RR |
216 | } |
217 | ||
218 | wxFFileInputStream::wxFFileInputStream(FILE *file) | |
219 | { | |
f6bcfd97 BP |
220 | m_file = new wxFFile(file); |
221 | m_file_destroy = TRUE; | |
65045edd RR |
222 | } |
223 | ||
224 | wxFFileInputStream::~wxFFileInputStream() | |
225 | { | |
f6bcfd97 BP |
226 | if (m_file_destroy) |
227 | delete m_file; | |
65045edd RR |
228 | } |
229 | ||
230 | size_t wxFFileInputStream::GetSize() const | |
231 | { | |
f6bcfd97 | 232 | return m_file->Length(); |
65045edd RR |
233 | } |
234 | ||
235 | size_t wxFFileInputStream::OnSysRead(void *buffer, size_t size) | |
236 | { | |
f6bcfd97 | 237 | off_t ret; |
65045edd | 238 | |
f6bcfd97 | 239 | ret = m_file->Read(buffer, size); |
65045edd | 240 | |
f6bcfd97 | 241 | if (m_file->Eof()) |
2b5f62a0 | 242 | m_lasterror = wxSTREAM_EOF; |
9a26db9e | 243 | if (ret == wxInvalidOffset) |
f6bcfd97 | 244 | { |
2b5f62a0 | 245 | m_lasterror = wxSTREAM_READ_ERROR; |
f6bcfd97 BP |
246 | ret = 0; |
247 | } | |
65045edd | 248 | |
f6bcfd97 | 249 | return ret; |
65045edd RR |
250 | } |
251 | ||
252 | off_t wxFFileInputStream::OnSysSeek(off_t pos, wxSeekMode mode) | |
253 | { | |
06acc7d9 | 254 | return ( m_file->Seek(pos, mode) ? pos : wxInvalidOffset ); |
65045edd RR |
255 | } |
256 | ||
257 | off_t wxFFileInputStream::OnSysTell() const | |
258 | { | |
f6bcfd97 | 259 | return m_file->Tell(); |
65045edd RR |
260 | } |
261 | ||
262 | // ---------------------------------------------------------------------------- | |
263 | // wxFFileOutputStream | |
264 | // ---------------------------------------------------------------------------- | |
265 | ||
266 | wxFFileOutputStream::wxFFileOutputStream(const wxString& fileName) | |
267 | { | |
f68c6b52 | 268 | m_file = new wxFFile(fileName, _T("w+b")); |
f6bcfd97 | 269 | m_file_destroy = TRUE; |
9a26db9e | 270 | |
942bef71 RR |
271 | if (!m_file->IsOpened()) |
272 | { | |
273 | m_lasterror = wxSTREAM_WRITE_ERROR; | |
274 | } | |
275 | else | |
276 | { | |
277 | if (m_file->Error()) | |
278 | m_lasterror = wxSTREAM_WRITE_ERROR; | |
279 | } | |
65045edd RR |
280 | } |
281 | ||
282 | wxFFileOutputStream::wxFFileOutputStream(wxFFile& file) | |
283 | { | |
f6bcfd97 BP |
284 | m_file = &file; |
285 | m_file_destroy = FALSE; | |
65045edd RR |
286 | } |
287 | ||
288 | wxFFileOutputStream::wxFFileOutputStream() | |
289 | : wxOutputStream() | |
290 | { | |
f6bcfd97 BP |
291 | m_file_destroy = FALSE; |
292 | m_file = NULL; | |
65045edd RR |
293 | } |
294 | ||
295 | wxFFileOutputStream::wxFFileOutputStream(FILE *file) | |
296 | { | |
f6bcfd97 BP |
297 | m_file = new wxFFile(file); |
298 | m_file_destroy = TRUE; | |
65045edd RR |
299 | } |
300 | ||
301 | wxFFileOutputStream::~wxFFileOutputStream() | |
302 | { | |
9a26db9e | 303 | if (m_file_destroy) |
f6bcfd97 BP |
304 | { |
305 | Sync(); | |
306 | delete m_file; | |
307 | } | |
65045edd RR |
308 | } |
309 | ||
310 | size_t wxFFileOutputStream::OnSysWrite(const void *buffer, size_t size) | |
311 | { | |
f6bcfd97 BP |
312 | size_t ret = m_file->Write(buffer, size); |
313 | if (m_file->Error()) | |
2b5f62a0 | 314 | m_lasterror = wxSTREAM_WRITE_ERROR; |
f6bcfd97 | 315 | else |
2b5f62a0 | 316 | m_lasterror = wxSTREAM_NO_ERROR; |
f6bcfd97 | 317 | return ret; |
65045edd RR |
318 | } |
319 | ||
320 | off_t wxFFileOutputStream::OnSysTell() const | |
321 | { | |
f6bcfd97 | 322 | return m_file->Tell(); |
65045edd RR |
323 | } |
324 | ||
325 | off_t wxFFileOutputStream::OnSysSeek(off_t pos, wxSeekMode mode) | |
326 | { | |
06acc7d9 | 327 | return ( m_file->Seek(pos, mode) ? pos : wxInvalidOffset ); |
65045edd RR |
328 | } |
329 | ||
330 | void wxFFileOutputStream::Sync() | |
331 | { | |
f6bcfd97 BP |
332 | wxOutputStream::Sync(); |
333 | m_file->Flush(); | |
65045edd RR |
334 | } |
335 | ||
336 | size_t wxFFileOutputStream::GetSize() const | |
337 | { | |
f6bcfd97 | 338 | return m_file->Length(); |
65045edd RR |
339 | } |
340 | ||
341 | // ---------------------------------------------------------------------------- | |
342 | // wxFFileStream | |
343 | // ---------------------------------------------------------------------------- | |
f6bcfd97 | 344 | |
65045edd | 345 | wxFFileStream::wxFFileStream(const wxString& fileName) |
f6bcfd97 | 346 | : wxFFileInputStream(fileName) |
65045edd | 347 | { |
f6bcfd97 | 348 | wxFFileOutputStream::m_file = wxFFileInputStream::m_file; |
65045edd | 349 | } |
f6bcfd97 | 350 | |
ce4169a4 RR |
351 | #endif |
352 | // wxUSE_STREAMS && wxUSE_FILE | |
cc985fac | 353 |