1998-07-01 17:26:46 +00:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Name: datstrm.h
|
|
|
|
// Purpose: Data stream classes
|
|
|
|
// Author: Guilhem Lavaux
|
2003-07-10 11:47:27 +00:00
|
|
|
// Modified by: Mickael Gilabert
|
1998-07-01 17:26:46 +00:00
|
|
|
// Created: 28/06/1998
|
|
|
|
// RCS-ID: $Id$
|
|
|
|
// Copyright: (c) Guilhem Lavaux
|
2004-09-10 12:56:07 +00:00
|
|
|
// Licence: wxWindows licence
|
1998-07-01 17:26:46 +00:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
1998-08-15 00:23:28 +00:00
|
|
|
#ifndef _WX_DATSTREAM_H_
|
|
|
|
#define _WX_DATSTREAM_H_
|
1998-07-01 17:26:46 +00:00
|
|
|
|
2003-08-09 12:38:21 +00:00
|
|
|
#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
|
1998-07-01 17:26:46 +00:00
|
|
|
#pragma interface "datstrm.h"
|
|
|
|
#endif
|
|
|
|
|
1999-08-20 22:52:21 +00:00
|
|
|
#include "wx/stream.h"
|
2001-11-26 03:53:32 +00:00
|
|
|
#include "wx/longlong.h"
|
2002-07-21 22:29:08 +00:00
|
|
|
#include "wx/strconv.h"
|
1998-07-01 17:26:46 +00:00
|
|
|
|
1999-06-15 20:21:59 +00:00
|
|
|
#if wxUSE_STREAMS
|
|
|
|
|
2003-07-02 01:59:24 +00:00
|
|
|
class WXDLLIMPEXP_BASE wxDataInputStream
|
2001-01-25 18:27:44 +00:00
|
|
|
{
|
1998-07-01 17:26:46 +00:00
|
|
|
public:
|
2002-07-21 22:29:08 +00:00
|
|
|
#if wxUSE_UNICODE
|
|
|
|
wxDataInputStream(wxInputStream& s, wxMBConv& conv = wxConvUTF8);
|
|
|
|
#else
|
2001-01-25 18:27:44 +00:00
|
|
|
wxDataInputStream(wxInputStream& s);
|
2002-07-21 22:29:08 +00:00
|
|
|
#endif
|
2004-10-12 19:29:12 +00:00
|
|
|
~wxDataInputStream(){};
|
2004-09-10 12:56:07 +00:00
|
|
|
|
2001-11-17 13:23:10 +00:00
|
|
|
bool IsOk() { return m_input->IsOk(); }
|
1998-07-01 17:26:46 +00:00
|
|
|
|
2001-11-26 03:53:32 +00:00
|
|
|
wxUint64 Read64();
|
2001-01-25 18:27:44 +00:00
|
|
|
wxUint32 Read32();
|
|
|
|
wxUint16 Read16();
|
|
|
|
wxUint8 Read8();
|
|
|
|
double ReadDouble();
|
|
|
|
wxString ReadString();
|
1999-07-07 17:45:35 +00:00
|
|
|
|
2003-07-10 11:47:27 +00:00
|
|
|
void Read64(wxUint64 *buffer, size_t size);
|
|
|
|
void Read32(wxUint32 *buffer, size_t size);
|
|
|
|
void Read16(wxUint16 *buffer, size_t size);
|
|
|
|
void Read8(wxUint8 *buffer, size_t size);
|
|
|
|
void ReadDouble(double *buffer, size_t size);
|
|
|
|
|
2001-01-25 18:27:44 +00:00
|
|
|
wxDataInputStream& operator>>(wxString& s);
|
|
|
|
wxDataInputStream& operator>>(wxInt8& c);
|
|
|
|
wxDataInputStream& operator>>(wxInt16& i);
|
|
|
|
wxDataInputStream& operator>>(wxInt32& i);
|
|
|
|
wxDataInputStream& operator>>(wxUint8& c);
|
|
|
|
wxDataInputStream& operator>>(wxUint16& i);
|
|
|
|
wxDataInputStream& operator>>(wxUint32& i);
|
2001-11-26 03:53:32 +00:00
|
|
|
wxDataInputStream& operator>>(wxUint64& i);
|
2001-01-25 18:27:44 +00:00
|
|
|
wxDataInputStream& operator>>(double& i);
|
|
|
|
wxDataInputStream& operator>>(float& f);
|
1999-07-24 09:05:25 +00:00
|
|
|
|
2001-01-25 18:27:44 +00:00
|
|
|
void BigEndianOrdered(bool be_order) { m_be_order = be_order; }
|
2001-06-08 19:37:56 +00:00
|
|
|
|
2001-01-25 18:27:44 +00:00
|
|
|
protected:
|
|
|
|
wxInputStream *m_input;
|
|
|
|
bool m_be_order;
|
2002-07-21 22:29:08 +00:00
|
|
|
#if wxUSE_UNICODE
|
|
|
|
wxMBConv& m_conv;
|
|
|
|
#endif
|
2003-01-02 23:38:11 +00:00
|
|
|
|
|
|
|
DECLARE_NO_COPY_CLASS(wxDataInputStream)
|
1998-07-12 15:16:09 +00:00
|
|
|
};
|
|
|
|
|
2003-07-02 01:59:24 +00:00
|
|
|
class WXDLLIMPEXP_BASE wxDataOutputStream
|
2001-01-25 18:27:44 +00:00
|
|
|
{
|
|
|
|
public:
|
2002-07-21 22:29:08 +00:00
|
|
|
#if wxUSE_UNICODE
|
|
|
|
wxDataOutputStream(wxOutputStream& s, wxMBConv& conv = wxConvUTF8);
|
|
|
|
#else
|
2001-01-25 18:27:44 +00:00
|
|
|
wxDataOutputStream(wxOutputStream& s);
|
2002-07-21 22:29:08 +00:00
|
|
|
#endif
|
2004-10-12 19:29:12 +00:00
|
|
|
~wxDataOutputStream(){};
|
1998-07-01 17:26:46 +00:00
|
|
|
|
2001-11-17 13:23:10 +00:00
|
|
|
bool IsOk() { return m_output->IsOk(); }
|
|
|
|
|
2001-11-26 03:53:32 +00:00
|
|
|
void Write64(wxUint64 i);
|
2001-01-25 18:27:44 +00:00
|
|
|
void Write32(wxUint32 i);
|
|
|
|
void Write16(wxUint16 i);
|
|
|
|
void Write8(wxUint8 i);
|
|
|
|
void WriteDouble(double d);
|
|
|
|
void WriteString(const wxString& string);
|
1999-07-07 17:45:35 +00:00
|
|
|
|
2003-07-10 11:47:27 +00:00
|
|
|
void Write64(const wxUint64 *buffer, size_t size);
|
|
|
|
void Write32(const wxUint32 *buffer, size_t size);
|
|
|
|
void Write16(const wxUint16 *buffer, size_t size);
|
|
|
|
void Write8(const wxUint8 *buffer, size_t size);
|
|
|
|
void WriteDouble(const double *buffer, size_t size);
|
|
|
|
|
2001-01-25 18:27:44 +00:00
|
|
|
wxDataOutputStream& operator<<(const wxChar *string);
|
2001-06-08 19:37:56 +00:00
|
|
|
wxDataOutputStream& operator<<(const wxString& string);
|
2001-01-25 18:27:44 +00:00
|
|
|
wxDataOutputStream& operator<<(wxInt8 c);
|
|
|
|
wxDataOutputStream& operator<<(wxInt16 i);
|
|
|
|
wxDataOutputStream& operator<<(wxInt32 i);
|
|
|
|
wxDataOutputStream& operator<<(wxUint8 c);
|
|
|
|
wxDataOutputStream& operator<<(wxUint16 i);
|
|
|
|
wxDataOutputStream& operator<<(wxUint32 i);
|
2001-11-26 03:53:32 +00:00
|
|
|
wxDataOutputStream& operator<<(wxUint64 i);
|
2001-01-25 18:27:44 +00:00
|
|
|
wxDataOutputStream& operator<<(double f);
|
|
|
|
wxDataOutputStream& operator<<(float f);
|
1999-07-07 17:45:35 +00:00
|
|
|
|
2001-06-08 19:37:56 +00:00
|
|
|
void BigEndianOrdered(bool be_order) { m_be_order = be_order; }
|
|
|
|
|
2001-01-25 18:27:44 +00:00
|
|
|
protected:
|
|
|
|
wxOutputStream *m_output;
|
|
|
|
bool m_be_order;
|
2002-07-21 22:29:08 +00:00
|
|
|
#if wxUSE_UNICODE
|
|
|
|
wxMBConv& m_conv;
|
|
|
|
#endif
|
2003-01-02 23:38:11 +00:00
|
|
|
|
|
|
|
DECLARE_NO_COPY_CLASS(wxDataOutputStream)
|
1998-07-01 17:26:46 +00:00
|
|
|
};
|
|
|
|
|
1999-06-15 20:21:59 +00:00
|
|
|
#endif
|
|
|
|
// wxUSE_STREAMS
|
|
|
|
|
1998-07-01 17:26:46 +00:00
|
|
|
#endif
|
1998-08-15 00:23:28 +00:00
|
|
|
// _WX_DATSTREAM_H_
|