1 ///////////////////////////////////////////////////////////////////////////////
2 // Name: src/common/textfile.cpp
3 // Purpose: implementation of wxTextFile class
4 // Author: Vadim Zeitlin
8 // Copyright: (c) 1998 Vadim Zeitlin <zeitlin@dptmaths.ens-cachan.fr>
9 // Licence: wxWindows licence
10 ///////////////////////////////////////////////////////////////////////////////
12 // ============================================================================
14 // ============================================================================
16 #include "wx/wxprec.h"
22 #if !wxUSE_FILE || !wxUSE_TEXTBUFFER
24 #define wxUSE_TEXTFILE 0
30 #include "wx/string.h"
36 #include "wx/textfile.h"
37 #include "wx/filename.h"
39 // ============================================================================
40 // wxTextFile class implementation
41 // ============================================================================
43 wxTextFile::wxTextFile(const wxString
& strFileName
)
44 : wxTextBuffer(strFileName
)
49 // ----------------------------------------------------------------------------
51 // ----------------------------------------------------------------------------
53 bool wxTextFile::OnExists() const
55 return wxFile::Exists(m_strBufferName
);
59 bool wxTextFile::OnOpen(const wxString
&strBufferName
, wxTextBufferOpenMode OpenMode
)
61 wxFile::OpenMode FileOpenMode
;
66 wxFAIL_MSG( _T("unknown open mode in wxTextFile::Open") );
70 FileOpenMode
= wxFile::read
;
74 FileOpenMode
= wxFile::write
;
78 return m_file
.Open(strBufferName
.c_str(), FileOpenMode
);
82 bool wxTextFile::OnClose()
84 return m_file
.Close();
88 bool wxTextFile::OnRead(wxMBConv
& conv
)
90 // file should be opened and we must be in it's beginning
91 wxASSERT( m_file
.IsOpened() &&
92 (m_file
.GetKind() != wxFILE_KIND_DISK
|| m_file
.Tell() == 0) );
94 static const size_t BUF_SIZE
= 1024;
96 static const size_t NUL_SIZE
= 4;
98 static const size_t NUL_SIZE
= 1;
101 char buf
[BUF_SIZE
+ NUL_SIZE
];
102 wxChar chLast
= '\0';
107 // leave space for trailing NUL
108 ssize_t nRead
= m_file
.Read(buf
, BUF_SIZE
);
110 if ( nRead
== wxInvalidOffset
)
112 // read error (error message already given in wxFile::Read)
119 // save the number characters which we already processed during the
120 // last loop iteration
121 const size_t lenOld
= str
.length();
124 // we have to properly NUL-terminate the string for any encoding it may
125 // use -- 4 NULs should be enough for everyone (this is why we add 4
126 // extra bytes to the buffer)
130 buf
[nRead
+ 3] = '\0';
132 // append to the remains of the last block, don't overwrite
133 wxString
strbuf(buf
, conv
);
134 if ( strbuf
.empty() )
145 #endif // wxUSE_UNICODE/!wxUSE_UNICODE
148 // the beginning of the current line, changes inside the loop
149 wxString::const_iterator lineStart
= str
.begin();
150 const wxString::const_iterator end
= str
.end();
151 for ( wxString::const_iterator p
= lineStart
+ lenOld
; p
!= end
; p
++ )
153 const wxChar ch
= *p
;
157 // could be a DOS or Unix EOL
158 if ( chLast
== '\r' )
160 AddLine(wxString(lineStart
, p
- 1), wxTextFileType_Dos
);
162 else // bare '\n', Unix style
164 AddLine(wxString(lineStart
, p
), wxTextFileType_Unix
);
171 if ( chLast
== '\r' )
174 AddLine(wxEmptyString
, wxTextFileType_Mac
);
177 //else: we don't what this is yet -- could be a Mac EOL or
178 // start of DOS EOL so wait for next char
182 if ( chLast
== '\r' )
184 // Mac line termination
185 AddLine(wxString(lineStart
, p
- 1), wxTextFileType_Mac
);
193 // remove the part we already processed
194 str
.erase(0, lineStart
- str
.begin());
197 // anything in the last line?
200 AddLine(str
, wxTextFileType_None
); // no line terminator
207 bool wxTextFile::OnWrite(wxTextFileType typeNew
, wxMBConv
& conv
)
209 wxFileName fn
= m_strBufferName
;
211 // We do NOT want wxPATH_NORM_CASE here, or the case will not
213 if ( !fn
.IsAbsolute() )
214 fn
.Normalize(wxPATH_NORM_ENV_VARS
| wxPATH_NORM_DOTS
| wxPATH_NORM_TILDE
|
215 wxPATH_NORM_ABSOLUTE
| wxPATH_NORM_LONG
);
217 wxTempFile
fileTmp(fn
.GetFullPath());
219 if ( !fileTmp
.IsOpened() ) {
220 wxLogError(_("can't write buffer '%s' to disk."), m_strBufferName
.c_str());
224 size_t nCount
= GetLineCount();
225 for ( size_t n
= 0; n
< nCount
; n
++ ) {
226 fileTmp
.Write(GetLine(n
) +
227 GetEOL(typeNew
== wxTextFileType_None
? GetLineType(n
)
232 // replace the old file with this one
233 return fileTmp
.Commit();
236 #endif // wxUSE_TEXTFILE