]> git.saurik.com Git - wxWidgets.git/blobdiff - src/common/datstrm.cpp
wxFrame::CreateToolBar() stuff
[wxWidgets.git] / src / common / datstrm.cpp
index 15a5ef78a8e74e92e6573546149534cb1364cd6b..a4cecc093b27b4651bf368023cfd8ef405f9cc00 100644 (file)
 #endif
 
 #include "wx/datstrm.h"
-
-#if !USE_SHARED_LIBRARY
-IMPLEMENT_CLASS(wxDataInputStream, wxFilterInputStream)
-IMPLEMENT_CLASS(wxDataOutputStream, wxFilterOutputStream)
-#endif
+#include "wx/bufstrm.h"
 
 wxDataInputStream::wxDataInputStream(wxInputStream& s)
   : wxFilterInputStream(s)
@@ -44,9 +40,6 @@ unsigned long wxDataInputStream::Read32()
 {
   char buf[4];
 
-  if (!m_parent_i_stream)
-    return 0;
-
   Read(buf, 4);
 
   return (unsigned long)buf[0] |
@@ -59,9 +52,6 @@ unsigned short wxDataInputStream::Read16()
 {
   char buf[2];
 
-  if (!m_parent_i_stream)
-    return 0;
-
   Read(buf, 2);
 
   return (unsigned short)buf[0] |
@@ -72,9 +62,6 @@ unsigned char wxDataInputStream::Read8()
 {
   char buf;
 
-  if (!m_parent_i_stream)
-    return 0;
-
   Read(&buf, 1);
   return (unsigned char)buf;
 }
@@ -87,9 +74,6 @@ double wxDataInputStream::ReadDouble()
 #if USE_APPLE_IEEE
   char buf[10];
 
-  if (!m_parent_i_stream)
-    return 0.0;
-
   Read(buf, 10);
   return ConvertFromIeeeExtended((unsigned char *)buf);
 #else
@@ -99,13 +83,30 @@ double wxDataInputStream::ReadDouble()
 
 wxString wxDataInputStream::ReadLine()
 {
-  char i_strg[255];
-
-  if (!m_parent_i_stream)
-    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 +115,6 @@ wxString wxDataInputStream::ReadString()
   char *string;
   unsigned long len;
 
-  if (!m_parent_i_stream)
-    return "";
-
   len = Read32();
   string = new char[len+1];
 
@@ -134,13 +132,14 @@ wxDataOutputStream::wxDataOutputStream(wxOutputStream& s)
 {
 }
 
+wxDataOutputStream::~wxDataOutputStream()
+{
+}
+
 void wxDataOutputStream::Write32(unsigned long i)
 {
   char buf[4];
 
-  if (!m_parent_o_stream)
-    return;
-
   buf[0] = i & 0xff;
   buf[1] = (i >> 8) & 0xff;
   buf[2] = (i >> 16) & 0xff;
@@ -152,9 +151,6 @@ void wxDataOutputStream::Write16(unsigned short i)
 {
   char buf[2];
 
-  if (!m_parent_o_stream)
-    return;
-
   buf[0] = i & 0xff;
   buf[1] = (i >> 8) & 0xff;
   Write(buf, 2);
@@ -162,9 +158,6 @@ void wxDataOutputStream::Write16(unsigned short i)
 
 void wxDataOutputStream::Write8(unsigned char i)
 {
-  if (!m_parent_o_stream)
-    return;
-
   Write(&i, 1);
 }
 
@@ -176,17 +169,11 @@ void wxDataOutputStream::WriteLine(const wxString& line)
   wxString tmp_string = line + '\n';
 #endif
 
-  if (!m_parent_o_stream)
-    return;
-
   Write((const char *) tmp_string, tmp_string.Length());
 }
 
 void wxDataOutputStream::WriteString(const wxString& string)
 {
-  if (!m_parent_o_stream)
-    return;
-
   Write32(string.Length());
   Write((const char *) string, string.Length());
 }
@@ -198,9 +185,6 @@ void wxDataOutputStream::WriteDouble(double d)
 {
   char buf[10];
 
-  if (!m_parent_o_stream)
-    return;
-
 #if USE_APPLE_IEEE
   ConvertToIeeeExtended(d, (unsigned char *)buf);
 #else