]>
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"
26 #include <wx/string.h>
30 #include <wx/textfile.h>
32 // ============================================================================
33 // wxTextFile class implementation
34 // ============================================================================
36 // ----------------------------------------------------------------------------
38 // ----------------------------------------------------------------------------
40 // default type is the native one
41 const wxTextFile::Type
wxTextFile::typeDefault
= wxTextFile::
42 #if defined(__WXMSW__)
44 #elif defined(__UNIX__)
46 #elif defined(__MAC__)
48 // if you feel brave, remove the next line
49 #error "wxTextFile: code for Mac files is untested."
52 #error "wxTextFile: unsupported platform."
56 // ----------------------------------------------------------------------------
58 // ----------------------------------------------------------------------------
60 wxTextFile::wxTextFile(const wxString
& strFile
) : m_strFile(strFile
)
64 wxTextFile::~wxTextFile()
66 // m_file dtor called automatically
69 // ----------------------------------------------------------------------------
71 // ----------------------------------------------------------------------------
73 bool wxTextFile::Open(const wxString
& strFile
)
79 bool wxTextFile::Open()
81 // file name must be either given in ctor or in Open(const wxString&)
82 wxASSERT( !m_strFile
.IsEmpty() );
84 // open file in read-only mode
85 if ( !m_file
.Open(m_strFile
) )
88 // read file into memory
96 // analyse some lines of the file trying to guess it's type.
97 // if it fails, it assumes the native type for our platform.
98 wxTextFile::Type
wxTextFile::GuessType() const
100 // file should be opened and we must be in it's beginning
101 wxASSERT( m_file
.IsOpened() && m_file
.Tell() == 0 );
103 // scan the file lines
104 uint nUnix
= 0, // number of '\n's alone
105 nDos
= 0, // number of '\r\n'
106 nMac
= 0; // number of '\r's
108 // we take MAX_LINES_SCAN in the beginning, middle and the end of file
109 #define MAX_LINES_SCAN (10)
110 uint nCount
= m_aLines
.Count() / 3,
111 nScan
= nCount
> 3*MAX_LINES_SCAN
? MAX_LINES_SCAN
: nCount
/ 3;
113 #define AnalyseLine(n) \
114 switch ( m_aTypes[n] ) { \
115 case Type_Unix: nUnix++; break; \
116 case Type_Dos: nDos++; break; \
117 case Type_Mac: nMac++; break; \
121 for ( n
= 0; n
< nScan
; n
++ ) // the beginning
123 for ( n
= (nCount
- nScan
)/2; n
< (nCount
+ nScan
)/2; n
++ )
125 for ( n
= nCount
- nScan
; n
< nCount
; n
++ )
130 // interpret the results (@@ far from being even 50% fool proof)
131 if ( nDos
+ nUnix
+ nMac
== 0 ) {
132 // no newlines at all
133 wxLogWarning("'%s' is probably a binary file.", m_strFile
.c_str());
136 #define GREATER_OF(t1, t2) n##t1 == n##t2 ? typeDefault \
137 : n##t1 > n##t2 ? Type_##t1 \
141 return GREATER_OF(Dos
, Mac
);
142 else if ( nDos
< nUnix
)
143 return GREATER_OF(Unix
, Mac
);
146 return nMac
> nDos
? Type_Mac
: typeDefault
;
155 bool wxTextFile::Read()
157 // file should be opened and we must be in it's beginning
158 wxASSERT( m_file
.IsOpened() && m_file
.Tell() == 0 );
161 char ch
, chLast
= '\0';
162 while ( !m_file
.Eof() ) {
163 // @@ should really use a buffer for efficiency
164 if ( m_file
.Read(&ch
, sizeof(ch
)) == ofsInvalid
) {
171 #pragma message("wxTextFile::Read() hasn't been tested with Mac files.")
176 // Dos/Unix line termination
178 m_aTypes
.Add(chLast
== '\r' ? Type_Dos
: Type_Unix
);
184 if ( chLast
== '\r' ) {
187 m_aTypes
.Add(Type_Mac
);
194 if ( chLast
== '\r' ) {
195 // Mac line termination
197 m_aTypes
.Add(Type_Mac
);
201 // add to the current line
207 // anything in the last line?
208 if ( !str
.IsEmpty() ) {
209 m_aTypes
.Add(Type_None
); // no line terminator
216 bool wxTextFile::Write(Type typeNew
)
218 wxTempFile
fileTmp(m_strFile
);
220 if ( !fileTmp
.IsOpened() ) {
221 wxLogError("can't write file '%s' to disk.", m_strFile
.c_str());
225 uint nCount
= m_aLines
.Count();
226 for ( uint n
= 0; n
< nCount
; n
++ ) {
227 fileTmp
.Write(m_aLines
[n
] +
228 GetEOL(typeNew
== Type_None
? m_aTypes
[n
] : typeNew
));
231 // replace the old file with this one
232 return fileTmp
.Commit();