X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/3cacae09fad9fee2c9cb222455e0f9aa4fa11d37..c1066cdf62de692cec3b61f68da35263aa17b1c0:/src/common/datstrm.cpp diff --git a/src/common/datstrm.cpp b/src/common/datstrm.cpp index f4ccc714a4..93850acd65 100644 --- a/src/common/datstrm.cpp +++ b/src/common/datstrm.cpp @@ -26,11 +26,6 @@ #include "wx/datstrm.h" -#if !USE_SHARED_LIBRARY -IMPLEMENT_CLASS(wxDataInputStream, wxFilterInputStream) -IMPLEMENT_CLASS(wxDataOutputStream, wxFilterOutputStream) -#endif - wxDataInputStream::wxDataInputStream(wxInputStream& s) : wxFilterInputStream(s) { @@ -44,9 +39,6 @@ unsigned long wxDataInputStream::Read32() { char buf[4]; - if (!m_istream) - return 0; - Read(buf, 4); return (unsigned long)buf[0] | @@ -59,9 +51,6 @@ unsigned short wxDataInputStream::Read16() { char buf[2]; - if (!m_istream) - return 0; - Read(buf, 2); return (unsigned short)buf[0] | @@ -72,9 +61,6 @@ unsigned char wxDataInputStream::Read8() { char buf; - if (!m_istream) - return 0; - Read(&buf, 1); return (unsigned char)buf; } @@ -87,9 +73,6 @@ double wxDataInputStream::ReadDouble() #if USE_APPLE_IEEE char buf[10]; - if (!m_istream) - return 0.0; - Read(buf, 10); return ConvertFromIeeeExtended((unsigned char *)buf); #else @@ -99,13 +82,30 @@ double wxDataInputStream::ReadDouble() wxString wxDataInputStream::ReadLine() { - char i_strg[255]; - - if (!m_istream) - return ""; - - // TODO: Implement ReadLine - return i_strg; + char c, last_endl = 0; + bool end_line = FALSE; + wxString line; + + while (!end_line) { + c = GetC(); + switch (c) { + case '\n': + end_line = TRUE; + break; + case '\r': + last_endl = '\r'; + break; + default: + if (last_endl == '\r') { + end_line = TRUE; + InputStreamBuffer()->WriteBack(c); + break; + } + line += c; + break; + } + } + return line; } wxString wxDataInputStream::ReadString() @@ -114,9 +114,6 @@ wxString wxDataInputStream::ReadString() char *string; unsigned long len; - if (!m_istream) - return ""; - len = Read32(); string = new char[len+1]; @@ -126,7 +123,7 @@ wxString wxDataInputStream::ReadString() wx_string = string; delete string; - return wx_string; + return wx_string; } wxDataOutputStream::wxDataOutputStream(wxOutputStream& s) @@ -134,13 +131,14 @@ wxDataOutputStream::wxDataOutputStream(wxOutputStream& s) { } +wxDataOutputStream::~wxDataOutputStream() +{ +} + void wxDataOutputStream::Write32(unsigned long i) { char buf[4]; - if (!m_ostream) - return; - buf[0] = i & 0xff; buf[1] = (i >> 8) & 0xff; buf[2] = (i >> 16) & 0xff; @@ -152,9 +150,6 @@ void wxDataOutputStream::Write16(unsigned short i) { char buf[2]; - if (!m_ostream) - return; - buf[0] = i & 0xff; buf[1] = (i >> 8) & 0xff; Write(buf, 2); @@ -162,9 +157,6 @@ void wxDataOutputStream::Write16(unsigned short i) void wxDataOutputStream::Write8(unsigned char i) { - if (!m_ostream) - return; - Write(&i, 1); } @@ -176,17 +168,11 @@ void wxDataOutputStream::WriteLine(const wxString& line) wxString tmp_string = line + '\n'; #endif - if (!m_ostream) - return; - Write((const char *) tmp_string, tmp_string.Length()); } void wxDataOutputStream::WriteString(const wxString& string) { - if (!m_ostream) - return; - Write32(string.Length()); Write((const char *) string, string.Length()); } @@ -198,13 +184,10 @@ void wxDataOutputStream::WriteDouble(double d) { char buf[10]; - if (!m_ostream) - return; - #if USE_APPLE_IEEE ConvertToIeeeExtended(d, (unsigned char *)buf); #else -# pragma warning "wxDataStream::WriteDouble() not using IeeeExtended - will not work!" +# pragma warning "wxDataStream::WriteDouble() not using IeeeExtended - will not work!" buf[0] = '\0'; #endif Write(buf, 10);