]> git.saurik.com Git - wxWidgets.git/blame - include/wx/ffile.h
added newline at end of file (avoids gcc warning when building with Xcode 2.2)
[wxWidgets.git] / include / wx / ffile.h
CommitLineData
a1b82138 1/////////////////////////////////////////////////////////////////////////////
0e0a4e64 2// Name: wx/ffile.h
a1b82138
VZ
3// Purpose: wxFFile - encapsulates "FILE *" stream
4// Author: Vadim Zeitlin
5// Modified by:
6// Created: 14.07.99
7// RCS-ID: $Id$
8// Copyright: (c) 1998 Vadim Zeitlin <zeitlin@dptmaths.ens-cachan.fr>
65571936 9// Licence: wxWindows licence
a1b82138
VZ
10/////////////////////////////////////////////////////////////////////////////
11
12#ifndef _WX_FFILE_H_
13#define _WX_FFILE_H_
14
0e0a4e64
VZ
15#include "wx/defs.h" // for wxUSE_FFILE
16
1e6feb95 17#if wxUSE_FFILE
a1b82138 18
20ceebaa
MW
19#include "wx/string.h"
20#include "wx/filefn.h"
a1b82138
VZ
21
22#include <stdio.h>
23
24// ----------------------------------------------------------------------------
25// class wxFFile: standard C stream library IO
26//
27// NB: for space efficiency this class has no virtual functions, including
28// dtor which is _not_ virtual, so it shouldn't be used as a base class.
29// ----------------------------------------------------------------------------
30
bddd7a8d 31class WXDLLIMPEXP_BASE wxFFile
a1b82138
VZ
32{
33public:
34 // ctors
35 // -----
36 // def ctor
37 wxFFile() { m_fp = NULL; }
38 // open specified file (may fail, use IsOpened())
90e2cbf7 39 wxFFile(const wxChar *filename, const wxChar *mode = _T("r"));
a1b82138 40 // attach to (already opened) file
222702b1 41 wxFFile(FILE *lfp) { m_fp = lfp; }
a1b82138
VZ
42
43 // open/close
44 // open a file (existing or not - the mode controls what happens)
90e2cbf7 45 bool Open(const wxChar *filename, const wxChar *mode = _T("r"));
a1b82138
VZ
46 // closes the opened file (this is a NOP if not opened)
47 bool Close();
48
49 // assign an existing file descriptor and get it back from wxFFile object
222702b1
WS
50 void Attach(FILE *lfp, const wxString& name = wxEmptyString)
51 { Close(); m_fp = lfp; m_name = name; }
a1b82138
VZ
52 void Detach() { m_fp = NULL; }
53 FILE *fp() const { return m_fp; }
54
55 // read/write (unbuffered)
56 // read all data from the file into a string (useful for text files)
3e15dde3 57 bool ReadAll(wxString *str, wxMBConv& conv = wxConvUTF8);
a1b82138 58 // returns number of bytes read - use Eof() and Error() to see if an error
3103e8a9 59 // occurred or not
a1b82138
VZ
60 size_t Read(void *pBuf, size_t nCount);
61 // returns the number of bytes written
62 size_t Write(const void *pBuf, size_t nCount);
63 // returns true on success
d3c0ce34 64 bool Write(const wxString& s, wxMBConv& conv = wxConvUTF8)
a1b82138 65 {
f6bcfd97
BP
66 const wxWX2MBbuf buf = s.mb_str(conv);
67 size_t size = strlen(buf);
68 return Write((const char *)buf, size) == size;
a1b82138
VZ
69 }
70 // flush data not yet written
71 bool Flush();
72
73 // file pointer operations (return ofsInvalid on failure)
74 // move ptr ofs bytes related to start/current pos/end of file
70a7bd90 75 bool Seek(wxFileOffset ofs, wxSeekMode mode = wxFromStart);
a1b82138 76 // move ptr to ofs bytes before the end
70a7bd90 77 bool SeekEnd(wxFileOffset ofs = 0) { return Seek(ofs, wxFromEnd); }
a1b82138 78 // get current position in the file
70a7bd90 79 wxFileOffset Tell() const;
a1b82138 80 // get current file length
70a7bd90 81 wxFileOffset Length() const;
a1b82138 82
de2ce07c
VZ
83 // simple accessors: note that Eof() and Error() may only be called if
84 // IsOpened()!
a1b82138
VZ
85 // is file opened?
86 bool IsOpened() const { return m_fp != NULL; }
87 // is end of file reached?
88 bool Eof() const { return feof(m_fp) != 0; }
3103e8a9 89 // has an error occurred?
a1b82138
VZ
90 bool Error() const { return ferror(m_fp) != 0; }
91 // get the file name
92 const wxString& GetName() const { return m_name; }
3c70014d 93 // type such as disk or pipe
0912690b 94 wxFileKind GetKind() const { return wxGetFileKind(m_fp); }
a1b82138
VZ
95
96 // dtor closes the file if opened
97 ~wxFFile() { Close(); }
98
99private:
100 // copy ctor and assignment operator are private because it doesn't make
101 // sense to copy files this way: attempt to do it will provoke a compile-time
102 // error.
103 wxFFile(const wxFFile&);
104 wxFFile& operator=(const wxFFile&);
105
106 FILE *m_fp; // IO stream or NULL if not opened
107
108 wxString m_name; // the name of the file (for diagnostic messages)
109};
110
1e6feb95 111#endif // wxUSE_FFILE
a1b82138
VZ
112
113#endif // _WX_FFILE_H_
114