Don't translate closing single quote in the font face name.
[wxWidgets.git] / src / common / textbuf.cpp
1 ///////////////////////////////////////////////////////////////////////////////
2 // Name: src/common/textbuf.cpp
3 // Purpose: implementation of wxTextBuffer class
4 // Created: 14.11.01
5 // Author: Morten Hanssen, Vadim Zeitlin
6 // RCS-ID: $Id$
7 // Copyright: (c) 1998-2001 wxWidgets team
8 // Licence: wxWindows licence
9 ///////////////////////////////////////////////////////////////////////////////
10
11 // ============================================================================
12 // headers
13 // ============================================================================
14
15 #include "wx/wxprec.h"
16
17 #ifdef __BORLANDC__
18 #pragma hdrstop
19 #endif //__BORLANDC__
20
21 #ifndef WX_PRECOMP
22 #include "wx/string.h"
23 #include "wx/intl.h"
24 #include "wx/log.h"
25 #endif
26
27 #include "wx/textbuf.h"
28
29 // ============================================================================
30 // wxTextBuffer class implementation
31 // ============================================================================
32
33 // ----------------------------------------------------------------------------
34 // static methods (always compiled in)
35 // ----------------------------------------------------------------------------
36
37 // default type is the native one
38
39 const wxTextFileType wxTextBuffer::typeDefault =
40 #if defined(__WINDOWS__) || defined(__DOS__)
41 wxTextFileType_Dos;
42 #elif defined(__UNIX__)
43 wxTextFileType_Unix;
44 #elif defined(__OS2__)
45 wxTextFileType_Os2;
46 #else
47 wxTextFileType_None;
48 #error "wxTextBuffer: unsupported platform."
49 #endif
50
51 const wxChar *wxTextBuffer::GetEOL(wxTextFileType type)
52 {
53 switch ( type ) {
54 default:
55 wxFAIL_MSG(wxT("bad buffer type in wxTextBuffer::GetEOL."));
56 // fall through nevertheless - we must return something...
57
58 case wxTextFileType_None: return wxEmptyString;
59 case wxTextFileType_Unix: return wxT("\n");
60 case wxTextFileType_Dos: return wxT("\r\n");
61 case wxTextFileType_Mac: return wxT("\r");
62 }
63 }
64
65 wxString wxTextBuffer::Translate(const wxString& text, wxTextFileType type)
66 {
67 // don't do anything if there is nothing to do
68 if ( type == wxTextFileType_None )
69 return text;
70
71 // nor if it is empty
72 if ( text.empty() )
73 return text;
74
75 wxString eol = GetEOL(type), result;
76
77 // optimization: we know that the length of the new string will be about
78 // the same as the length of the old one, so prealloc memory to avoid
79 // unnecessary relocations
80 result.Alloc(text.Len());
81
82 wxChar chLast = 0;
83 for ( wxString::const_iterator i = text.begin(); i != text.end(); ++i )
84 {
85 wxChar ch = *i;
86 switch ( ch ) {
87 case wxT('\n'):
88 // Dos/Unix line termination
89 result += eol;
90 chLast = 0;
91 break;
92
93 case wxT('\r'):
94 if ( chLast == wxT('\r') ) {
95 // Mac empty line
96 result += eol;
97 }
98 else {
99 // just remember it: we don't know whether it is just "\r"
100 // or "\r\n" yet
101 chLast = wxT('\r');
102 }
103 break;
104
105 default:
106 if ( chLast == wxT('\r') ) {
107 // Mac line termination
108 result += eol;
109
110 // reset chLast to avoid inserting another eol before the
111 // next character
112 chLast = 0;
113 }
114
115 // add to the current line
116 result += ch;
117 }
118 }
119
120 if ( chLast ) {
121 // trailing '\r'
122 result += eol;
123 }
124
125 return result;
126 }
127
128 #if wxUSE_TEXTBUFFER
129
130 wxString wxTextBuffer::ms_eof;
131
132 // ----------------------------------------------------------------------------
133 // ctors & dtor
134 // ----------------------------------------------------------------------------
135
136 wxTextBuffer::wxTextBuffer(const wxString& strBufferName)
137 : m_strBufferName(strBufferName)
138 {
139 m_nCurLine = 0;
140 m_isOpened = false;
141 }
142
143 wxTextBuffer::~wxTextBuffer()
144 {
145 // required here for Darwin
146 }
147
148 // ----------------------------------------------------------------------------
149 // buffer operations
150 // ----------------------------------------------------------------------------
151
152 bool wxTextBuffer::Exists() const
153 {
154 return OnExists();
155 }
156
157 bool wxTextBuffer::Create(const wxString& strBufferName)
158 {
159 m_strBufferName = strBufferName;
160
161 return Create();
162 }
163
164 bool wxTextBuffer::Create()
165 {
166 // buffer name must be either given in ctor or in Create(const wxString&)
167 wxASSERT( !m_strBufferName.empty() );
168
169 // if the buffer already exists do nothing
170 if ( Exists() ) return false;
171
172 if ( !OnOpen(m_strBufferName, WriteAccess) )
173 return false;
174
175 OnClose();
176 return true;
177 }
178
179 bool wxTextBuffer::Open(const wxString& strBufferName, const wxMBConv& conv)
180 {
181 m_strBufferName = strBufferName;
182
183 return Open(conv);
184 }
185
186 bool wxTextBuffer::Open(const wxMBConv& conv)
187 {
188 // buffer name must be either given in ctor or in Open(const wxString&)
189 wxASSERT( !m_strBufferName.empty() );
190
191 // open buffer in read-only mode
192 if ( !OnOpen(m_strBufferName, ReadAccess) )
193 return false;
194
195 // read buffer into memory
196 m_isOpened = OnRead(conv);
197
198 OnClose();
199
200 return m_isOpened;
201 }
202
203 // analyse some lines of the buffer trying to guess it's type.
204 // if it fails, it assumes the native type for our platform.
205 wxTextFileType wxTextBuffer::GuessType() const
206 {
207 wxASSERT( IsOpened() );
208
209 // scan the buffer lines
210 size_t nUnix = 0, // number of '\n's alone
211 nDos = 0, // number of '\r\n'
212 nMac = 0; // number of '\r's
213
214 // we take MAX_LINES_SCAN in the beginning, middle and the end of buffer
215 #define MAX_LINES_SCAN (10)
216 size_t nCount = m_aLines.GetCount() / 3,
217 nScan = nCount > 3*MAX_LINES_SCAN ? MAX_LINES_SCAN : nCount / 3;
218
219 #define AnalyseLine(n) \
220 switch ( m_aTypes[n] ) { \
221 case wxTextFileType_Unix: nUnix++; break; \
222 case wxTextFileType_Dos: nDos++; break; \
223 case wxTextFileType_Mac: nMac++; break; \
224 default: wxFAIL_MSG(wxT("unknown line terminator")); \
225 }
226
227 size_t n;
228 for ( n = 0; n < nScan; n++ ) // the beginning
229 AnalyseLine(n);
230 for ( n = (nCount - nScan)/2; n < (nCount + nScan)/2; n++ )
231 AnalyseLine(n);
232 for ( n = nCount - nScan; n < nCount; n++ )
233 AnalyseLine(n);
234
235 #undef AnalyseLine
236
237 // interpret the results (FIXME far from being even 50% fool proof)
238 if ( nScan > 0 && nDos + nUnix + nMac == 0 ) {
239 // no newlines at all
240 wxLogWarning(_("'%s' is probably a binary buffer."), m_strBufferName.c_str());
241 }
242 else {
243 #define GREATER_OF(t1, t2) n##t1 == n##t2 ? typeDefault \
244 : n##t1 > n##t2 \
245 ? wxTextFileType_##t1 \
246 : wxTextFileType_##t2
247
248 #if !defined(__WATCOMC__) || wxCHECK_WATCOM_VERSION(1,4)
249 if ( nDos > nUnix )
250 return GREATER_OF(Dos, Mac);
251 else if ( nDos < nUnix )
252 return GREATER_OF(Unix, Mac);
253 else {
254 // nDos == nUnix
255 return nMac > nDos ? wxTextFileType_Mac : typeDefault;
256 }
257 #endif // __WATCOMC__
258
259 #undef GREATER_OF
260 }
261
262 return typeDefault;
263 }
264
265
266 bool wxTextBuffer::Close()
267 {
268 Clear();
269 m_isOpened = false;
270
271 return true;
272 }
273
274 bool wxTextBuffer::Write(wxTextFileType typeNew, const wxMBConv& conv)
275 {
276 return OnWrite(typeNew, conv);
277 }
278
279 #endif // wxUSE_TEXTBUFFER