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 // Open() also loads file in memory on success
78 // same as Open() but with (another) file name
79 bool Open(const wxString
& strFile
);
80 // closes the file and frees memory, losing all changes
82 // is file currently opened?
83 bool IsOpened() const { return m_isOpened
; }
86 // get the number of lines in the file
87 size_t GetLineCount() const { return m_aLines
.Count(); }
88 // the returned line may be modified (but don't add CR/LF at the end!)
89 wxString
& GetLine(size_t n
) const { return m_aLines
[n
]; }
90 wxString
& operator[](size_t n
) const { return m_aLines
[n
]; }
92 // the current line has meaning only when you're using
93 // GetFirstLine()/GetNextLine() functions, it doesn't get updated when
94 // you're using "direct access" i.e. GetLine()
95 size_t GetCurrentLine() const { return m_nCurLine
; }
96 void GoToLine(size_t n
) { m_nCurLine
= n
; }
97 bool Eof() const { return m_nCurLine
== m_aLines
.Count() - 1; }
99 // these methods allow more "iterator-like" traversal of the list of
100 // lines, i.e. you may write something like:
101 // for ( str = GetFirstLine(); !Eof(); str = GetNextLine() ) { ... }
103 // NB: const is commented out because not all compilers understand
104 // 'mutable' keyword yet (m_nCurLine should be mutable)
105 wxString
& GetFirstLine() /* const */ { return m_aLines
[m_nCurLine
= 0]; }
106 wxString
& GetNextLine() /* const */ { return m_aLines
[++m_nCurLine
]; }
107 wxString
& GetPrevLine() /* const */
108 { wxASSERT(m_nCurLine
> 0); return m_aLines
[--m_nCurLine
]; }
109 wxString
& GetLastLine() /* const */
110 { return m_aLines
[m_nCurLine
= m_aLines
.Count() - 1]; }
112 // get the type of the line (see also GetEOL)
113 wxTextFileType
GetLineType(size_t n
) const { return m_aTypes
[n
]; }
114 // guess the type of file (m_file is supposed to be opened)
115 wxTextFileType
GuessType() const;
116 // get the name of the file
117 const wxChar
*GetName() const { return m_strFile
.c_str(); }
120 // add a line to the end
121 void AddLine(const wxString
& str
, wxTextFileType type
= typeDefault
)
122 { m_aLines
.Add(str
); m_aTypes
.Add(type
); }
123 // insert a line before the line number n
124 void InsertLine(const wxString
& str
,
126 wxTextFileType type
= typeDefault
)
127 { m_aLines
.Insert(str
, n
); m_aTypes
.Insert(type
, n
); }
129 void RemoveLine(size_t n
) { m_aLines
.Remove(n
); m_aTypes
.Remove(n
); }
131 // change the file on disk (default argument means "don't change type")
132 // possibly in another format
133 bool Write(wxTextFileType typeNew
= wxTextFileType_None
);
139 // copy ctor/assignment operator not implemented
140 wxTextFile(const wxTextFile
&);
141 wxTextFile
& operator=(const wxTextFile
&);
143 // read the file in memory (m_file is supposed to be just opened)
146 wxFile m_file
; // current file
148 ArrayFileType m_aTypes
; // type of each line
149 wxArrayString m_aLines
; // lines of file
151 size_t m_nCurLine
; // number of current line in the file
153 bool m_isOpened
; // was the file successfully opened the last time?
155 wxString m_strFile
; // name of the file
158 #else // !wxUSE_TEXTFILE
160 // these static wxTextFile methods are used internally by wxWindows, so should
161 // be defined even if we're compiling without wxTextFile at all.
163 class WXDLLEXPORT wxTextFile
166 // default type for current platform (determined at compile time)
167 static const wxTextFileType typeDefault
;
169 // this function returns a string which is identical to "text" passed in
170 // except that the line terminator characters are changed to correspond the
171 // given type. Called with the default argument, the function translates
172 // the string to the native format (Unix for Unix, DOS for Windows, ...).
173 static wxString
Translate(const wxString
& text
,
174 wxTextFileType type
= typeDefault
);
176 // get the file termination string
177 static const wxChar
*GetEOL(wxTextFileType type
= typeDefault
);
180 // copy ctor/assignment operator not implemented
181 wxTextFile(const wxTextFile
&);
182 wxTextFile
& operator=(const wxTextFile
&);
185 #endif // wxUSE_TEXTFILE
187 #endif // _WX_TEXTFILE_H