1 ///////////////////////////////////////////////////////////////////////////////
3 // Purpose: class wxTextFile to work with text files of _small_ size
4 // (file is fully loaded in memory) and which understands CR/LF
5 // differences between platforms.
6 // Author: Vadim Zeitlin
10 // Copyright: (c) 1998 Vadim Zeitlin <zeitlin@dptmaths.ens-cachan.fr>
11 // Licence: wxWindows license
12 ///////////////////////////////////////////////////////////////////////////////
14 #ifndef _WX_TEXTFILE_H
15 #define _WX_TEXTFILE_H
18 #pragma interface "textfile.h"
25 #define wxUSE_TEXTFILE 0
30 #include "wx/string.h"
32 #include "wx/dynarray.h"
34 // ----------------------------------------------------------------------------
36 // ----------------------------------------------------------------------------
38 // the line termination type
41 wxTextFileType_None
, // incomplete (the last line of the file only)
42 wxTextFileType_Unix
, // line is terminated with 'LF' = 0xA = 10 = '\n'
43 wxTextFileType_Dos
, // 'CR' 'LF'
44 wxTextFileType_Mac
, // 'CR' = 0xD = 13 = '\r'
45 wxTextFileType_Os2
// 'CR' 'LF'
48 WX_DEFINE_EXPORTED_ARRAY(wxTextFileType
, ArrayFileType
);
50 class WXDLLEXPORT wxTextFile
53 // constants and static functions
54 // default type for current platform (determined at compile time)
55 static const wxTextFileType typeDefault
;
57 // this function returns a string which is identical to "text" passed in
58 // except that the line terminator characters are changed to correspond the
59 // given type. Called with the default argument, the function translates
60 // the string to the native format (Unix for Unix, DOS for Windows, ...).
61 static wxString
Translate(const wxString
& text
,
62 wxTextFileType type
= typeDefault
);
64 // get the file termination string
65 static const wxChar
*GetEOL(wxTextFileType type
= typeDefault
);
68 // def ctor, use Open(string)
71 wxTextFile(const wxString
& strFile
);
76 // create the file if it doesn't already exist
78 // same as Create() but with (another) file name
79 bool Create(const wxString
& strFile
);
80 // Open() also loads file in memory on success
82 // same as Open() but with (another) file name
83 bool Open(const wxString
& strFile
);
84 // closes the file and frees memory, losing all changes
86 // is file currently opened?
87 bool IsOpened() const { return m_isOpened
; }
90 // get the number of lines in the file
91 size_t GetLineCount() const { return m_aLines
.Count(); }
92 // the returned line may be modified (but don't add CR/LF at the end!)
93 wxString
& GetLine(size_t n
) const { return m_aLines
[n
]; }
94 wxString
& operator[](size_t n
) const { return m_aLines
[n
]; }
96 // the current line has meaning only when you're using
97 // GetFirstLine()/GetNextLine() functions, it doesn't get updated when
98 // you're using "direct access" i.e. GetLine()
99 size_t GetCurrentLine() const { return m_nCurLine
; }
100 void GoToLine(size_t n
) { m_nCurLine
= n
; }
101 bool Eof() const { return m_nCurLine
== m_aLines
.Count() - 1; }
103 // these methods allow more "iterator-like" traversal of the list of
104 // lines, i.e. you may write something like:
105 // for ( str = GetFirstLine(); !Eof(); str = GetNextLine() ) { ... }
107 // NB: const is commented out because not all compilers understand
108 // 'mutable' keyword yet (m_nCurLine should be mutable)
109 wxString
& GetFirstLine() /* const */ { return m_aLines
[m_nCurLine
= 0]; }
110 wxString
& GetNextLine() /* const */ { return m_aLines
[++m_nCurLine
]; }
111 wxString
& GetPrevLine() /* const */
112 { wxASSERT(m_nCurLine
> 0); return m_aLines
[--m_nCurLine
]; }
113 wxString
& GetLastLine() /* const */
114 { return m_aLines
[m_nCurLine
= m_aLines
.Count() - 1]; }
116 // get the type of the line (see also GetEOL)
117 wxTextFileType
GetLineType(size_t n
) const { return m_aTypes
[n
]; }
118 // guess the type of file (m_file is supposed to be opened)
119 wxTextFileType
GuessType() const;
120 // get the name of the file
121 const wxChar
*GetName() const { return m_strFile
.c_str(); }
124 // add a line to the end
125 void AddLine(const wxString
& str
, wxTextFileType type
= typeDefault
)
126 { m_aLines
.Add(str
); m_aTypes
.Add(type
); }
127 // insert a line before the line number n
128 void InsertLine(const wxString
& str
,
130 wxTextFileType type
= typeDefault
)
131 { m_aLines
.Insert(str
, n
); m_aTypes
.Insert(type
, n
); }
133 void RemoveLine(size_t n
) { m_aLines
.Remove(n
); m_aTypes
.Remove(n
); }
135 // change the file on disk (default argument means "don't change type")
136 // possibly in another format
137 bool Write(wxTextFileType typeNew
= wxTextFileType_None
);
143 // copy ctor/assignment operator not implemented
144 wxTextFile(const wxTextFile
&);
145 wxTextFile
& operator=(const wxTextFile
&);
147 // read the file in memory (m_file is supposed to be just opened)
150 wxFile m_file
; // current file
152 ArrayFileType m_aTypes
; // type of each line
153 wxArrayString m_aLines
; // lines of file
155 size_t m_nCurLine
; // number of current line in the file
157 bool m_isOpened
; // was the file successfully opened the last time?
159 wxString m_strFile
; // name of the file
162 #else // !wxUSE_TEXTFILE
164 // these static wxTextFile methods are used internally by wxWindows, so should
165 // be defined even if we're compiling without wxTextFile at all.
167 class WXDLLEXPORT wxTextFile
170 // default type for current platform (determined at compile time)
171 static const wxTextFileType typeDefault
;
173 // this function returns a string which is identical to "text" passed in
174 // except that the line terminator characters are changed to correspond the
175 // given type. Called with the default argument, the function translates
176 // the string to the native format (Unix for Unix, DOS for Windows, ...).
177 static wxString
Translate(const wxString
& text
,
178 wxTextFileType type
= typeDefault
);
180 // get the file termination string
181 static const wxChar
*GetEOL(wxTextFileType type
= typeDefault
);
184 // copy ctor/assignment operator not implemented
185 wxTextFile(const wxTextFile
&);
186 wxTextFile
& operator=(const wxTextFile
&);
189 #endif // wxUSE_TEXTFILE
191 #endif // _WX_TEXTFILE_H