1998-09-06 14:28:00 -04:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Name: sckstrm.h
|
|
|
|
// Purpose: wxSocket*Stream
|
|
|
|
// Author: Guilhem Lavaux
|
|
|
|
// Modified by:
|
|
|
|
// Created: 17/07/97
|
|
|
|
// RCS-ID: $Id$
|
|
|
|
// Copyright: (c)
|
2004-05-23 16:53:33 -04:00
|
|
|
// Licence: wxWindows licence
|
1998-09-06 14:28:00 -04:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
#ifndef __SCK_STREAM_H__
|
|
|
|
#define __SCK_STREAM_H__
|
|
|
|
|
|
|
|
#include "wx/stream.h"
|
1999-06-15 16:21:59 -04:00
|
|
|
|
|
|
|
#if wxUSE_SOCKETS && wxUSE_STREAMS
|
|
|
|
|
1998-09-06 14:28:00 -04:00
|
|
|
#include "wx/socket.h"
|
|
|
|
|
2003-07-27 18:41:06 -04:00
|
|
|
class WXDLLIMPEXP_NET wxSocketOutputStream : public wxOutputStream
|
1998-09-06 14:28:00 -04:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
wxSocketOutputStream(wxSocketBase& s);
|
2006-09-05 16:47:48 -04:00
|
|
|
virtual ~wxSocketOutputStream();
|
1998-09-06 14:28:00 -04:00
|
|
|
|
2004-09-26 09:18:46 -04:00
|
|
|
wxFileOffset SeekO( wxFileOffset WXUNUSED(pos), wxSeekMode WXUNUSED(mode) )
|
1998-09-07 14:04:27 -04:00
|
|
|
{ return -1; }
|
2004-09-26 09:18:46 -04:00
|
|
|
wxFileOffset TellO() const
|
1998-09-07 14:04:27 -04:00
|
|
|
{ return -1; }
|
1998-09-06 14:28:00 -04:00
|
|
|
|
|
|
|
protected:
|
|
|
|
wxSocketBase *m_o_socket;
|
1999-02-27 16:01:05 -05:00
|
|
|
|
|
|
|
size_t OnSysWrite(const void *buffer, size_t bufsize);
|
2003-01-02 18:38:11 -05:00
|
|
|
|
|
|
|
DECLARE_NO_COPY_CLASS(wxSocketOutputStream)
|
1998-09-06 14:28:00 -04:00
|
|
|
};
|
|
|
|
|
2003-07-27 18:41:06 -04:00
|
|
|
class WXDLLIMPEXP_NET wxSocketInputStream : public wxInputStream
|
1998-09-06 14:28:00 -04:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
wxSocketInputStream(wxSocketBase& s);
|
2006-09-05 16:47:48 -04:00
|
|
|
virtual ~wxSocketInputStream();
|
1998-09-06 14:28:00 -04:00
|
|
|
|
2004-09-26 09:18:46 -04:00
|
|
|
wxFileOffset SeekI( wxFileOffset WXUNUSED(pos), wxSeekMode WXUNUSED(mode) )
|
1998-09-07 14:04:27 -04:00
|
|
|
{ return -1; }
|
2004-09-26 09:18:46 -04:00
|
|
|
wxFileOffset TellI() const
|
1998-09-07 14:04:27 -04:00
|
|
|
{ return -1; }
|
1998-09-06 14:28:00 -04:00
|
|
|
|
|
|
|
protected:
|
|
|
|
wxSocketBase *m_i_socket;
|
1999-02-27 16:01:05 -05:00
|
|
|
|
|
|
|
size_t OnSysRead(void *buffer, size_t bufsize);
|
2003-01-02 18:38:11 -05:00
|
|
|
|
|
|
|
DECLARE_NO_COPY_CLASS(wxSocketInputStream)
|
1998-09-06 14:28:00 -04:00
|
|
|
};
|
|
|
|
|
2003-07-27 18:41:06 -04:00
|
|
|
class WXDLLIMPEXP_NET wxSocketStream : public wxSocketInputStream,
|
1999-07-27 23:38:12 -04:00
|
|
|
public wxSocketOutputStream
|
1998-10-14 13:36:50 -04:00
|
|
|
{
|
1998-09-06 14:28:00 -04:00
|
|
|
public:
|
|
|
|
wxSocketStream(wxSocketBase& s);
|
2006-09-05 16:47:48 -04:00
|
|
|
virtual ~wxSocketStream();
|
2003-07-21 20:24:07 -04:00
|
|
|
|
|
|
|
DECLARE_NO_COPY_CLASS(wxSocketStream)
|
1998-09-06 14:28:00 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|
1999-06-15 16:21:59 -04:00
|
|
|
// wxUSE_SOCKETS && wxUSE_STREAMS
|
|
|
|
|
|
|
|
#endif
|
1999-07-22 13:51:54 -04:00
|
|
|
// __SCK_STREAM_H__
|