]>
git.saurik.com Git - wxWidgets.git/blob - src/common/textfile.cpp
1 ///////////////////////////////////////////////////////////////////////////////
3 // Purpose: implementation of wxTextFile class
4 // Author: Vadim Zeitlin
8 // Copyright: (c) 1998 Vadim Zeitlin <zeitlin@dptmaths.ens-cachan.fr>
9 // Licence: wxWindows license
10 ///////////////////////////////////////////////////////////////////////////////
12 // ============================================================================
14 // ============================================================================
17 #pragma implementation "textfile.h"
20 #include "wx/wxprec.h"
28 #define wxUSE_TEXTFILE 0
32 #include "wx/string.h"
38 #include "wx/textfile.h"
40 // ============================================================================
41 // wxTextFile class implementation
42 // ============================================================================
44 // ----------------------------------------------------------------------------
45 // static methods (always compiled in)
46 // ----------------------------------------------------------------------------
48 // default type is the native one
49 const wxTextFileType
wxTextFile::typeDefault
=
50 #if defined(__WINDOWS__)
52 #elif defined(__UNIX__)
54 #elif defined(__WXMAC__)
56 #elif defined(__WXPM__)
60 #error "wxTextFile: unsupported platform."
63 const wxChar
*wxTextFile::GetEOL(wxTextFileType type
)
67 wxFAIL_MSG(wxT("bad file type in wxTextFile::GetEOL."));
68 // fall through nevertheless - we must return something...
70 case wxTextFileType_None
: return wxT("");
71 case wxTextFileType_Unix
: return wxT("\n");
72 case wxTextFileType_Dos
: return wxT("\r\n");
73 case wxTextFileType_Mac
: return wxT("\r");
78 wxString
wxTextFile::Translate(const wxString
& text
, wxTextFileType type
)
80 // don't do anything if there is nothing to do
81 if ( type
== wxTextFileType_None
)
84 wxString eol
= GetEOL(type
), result
;
86 // optimization: we know that the length of the new string will be about
87 // the same as the length of the old one, so prealloc memory to aviod
88 // unnecessary relocations
89 result
.Alloc(text
.Len());
92 for ( const wxChar
*pc
= text
.c_str(); *pc
; pc
++ )
97 // Dos/Unix line termination
103 if ( chLast
== '\r' ) {
112 if ( chLast
== '\r' ) {
113 // Mac line termination
118 // add to the current line
129 // ----------------------------------------------------------------------------
131 // ----------------------------------------------------------------------------
133 wxTextFile::wxTextFile(const wxString
& strFile
) : m_strFile(strFile
)
139 wxTextFile::~wxTextFile()
141 // m_file dtor called automatically
144 // ----------------------------------------------------------------------------
146 // ----------------------------------------------------------------------------
148 bool wxTextFile::Open(const wxString
& strFile
)
155 bool wxTextFile::Open()
157 // file name must be either given in ctor or in Open(const wxString&)
158 wxASSERT( !m_strFile
.IsEmpty() );
160 // open file in read-only mode
161 if ( !m_file
.Open(m_strFile
) )
164 // read file into memory
172 // analyse some lines of the file trying to guess it's type.
173 // if it fails, it assumes the native type for our platform.
174 wxTextFileType
wxTextFile::GuessType() const
176 // file should be opened and we must be in it's beginning
177 wxASSERT( m_file
.IsOpened() && m_file
.Tell() == 0 );
179 // scan the file lines
180 size_t nUnix
= 0, // number of '\n's alone
181 nDos
= 0, // number of '\r\n'
182 nMac
= 0; // number of '\r's
184 // we take MAX_LINES_SCAN in the beginning, middle and the end of file
185 #define MAX_LINES_SCAN (10)
186 size_t nCount
= m_aLines
.Count() / 3,
187 nScan
= nCount
> 3*MAX_LINES_SCAN
? MAX_LINES_SCAN
: nCount
/ 3;
189 #define AnalyseLine(n) \
190 switch ( m_aTypes[n] ) { \
191 case wxTextFileType_Unix: nUnix++; break; \
192 case wxTextFileType_Dos: nDos++; break; \
193 case wxTextFileType_Mac: nMac++; break; \
194 default: wxFAIL_MSG(_("unknown line terminator")); \
198 for ( n
= 0; n
< nScan
; n
++ ) // the beginning
200 for ( n
= (nCount
- nScan
)/2; n
< (nCount
+ nScan
)/2; n
++ )
202 for ( n
= nCount
- nScan
; n
< nCount
; n
++ )
207 // interpret the results (FIXME far from being even 50% fool proof)
208 if ( nDos
+ nUnix
+ nMac
== 0 ) {
209 // no newlines at all
210 wxLogWarning(_("'%s' is probably a binary file."), m_strFile
.c_str());
213 #define GREATER_OF(t1, t2) n##t1 == n##t2 ? typeDefault \
215 ? wxTextFileType_##t1 \
216 : wxTextFileType_##t2
218 // Watcom C++ doesn't seem to be able to handle the macro
219 #if !defined(__WATCOMC__)
221 return GREATER_OF(Dos
, Mac
);
222 else if ( nDos
< nUnix
)
223 return GREATER_OF(Unix
, Mac
);
226 return nMac
> nDos
? wxTextFileType_Mac
: typeDefault
;
228 #endif // __WATCOMC__
236 bool wxTextFile::Read()
238 // file should be opened and we must be in it's beginning
239 wxASSERT( m_file
.IsOpened() && m_file
.Tell() == 0 );
242 char ch
, chLast
= '\0';
245 while ( !m_file
.Eof() ) {
246 nRead
= m_file
.Read(buf
, WXSIZEOF(buf
));
247 if ( nRead
== wxInvalidOffset
) {
248 // read error (error message already given in wxFile::Read)
252 for ( n
= 0; n
< nRead
; n
++ ) {
256 // Dos/Unix line termination
258 m_aTypes
.Add(chLast
== '\r' ? wxTextFileType_Dos
259 : wxTextFileType_Unix
);
265 if ( chLast
== '\r' ) {
268 m_aTypes
.Add(wxTextFileType_Mac
);
275 if ( chLast
== '\r' ) {
276 // Mac line termination
278 m_aTypes
.Add(wxTextFileType_Mac
);
283 // add to the current line
290 // anything in the last line?
291 if ( !str
.IsEmpty() ) {
292 m_aTypes
.Add(wxTextFileType_None
); // no line terminator
299 bool wxTextFile::Close()
309 bool wxTextFile::Write(wxTextFileType typeNew
)
311 wxTempFile
fileTmp(m_strFile
);
313 if ( !fileTmp
.IsOpened() ) {
314 wxLogError(_("can't write file '%s' to disk."), m_strFile
.c_str());
318 size_t nCount
= m_aLines
.Count();
319 for ( size_t n
= 0; n
< nCount
; n
++ ) {
320 fileTmp
.Write(m_aLines
[n
] +
321 GetEOL(typeNew
== wxTextFileType_None
? m_aTypes
[n
]
325 // replace the old file with this one
326 return fileTmp
.Commit();
329 #endif // wxUSE_TEXTFILE