1 /////////////////////////////////////////////////////////////////////////////
2 // Name: wx/protocol/protocol.h
3 // Purpose: Protocol base class
4 // Author: Guilhem Lavaux
8 // Copyright: (c) 1997, 1998 Guilhem Lavaux
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
12 #ifndef _WX_PROTOCOL_PROTOCOL_H
13 #define _WX_PROTOCOL_PROTOCOL_H
19 #include "wx/object.h"
20 #include "wx/string.h"
21 #include "wx/stream.h"
24 #include "wx/socket.h"
27 // ----------------------------------------------------------------------------
29 // ----------------------------------------------------------------------------
45 // ----------------------------------------------------------------------------
46 // wxProtocol: abstract base class for all protocols
47 // ----------------------------------------------------------------------------
49 class WXDLLIMPEXP_NET wxProtocol
51 : public wxSocketClient
61 virtual bool Connect( const wxString
& WXUNUSED(host
) ) { return FALSE
; }
62 virtual bool Connect( const wxSockAddress
& addr
, bool WXUNUSED(wait
) = TRUE
)
63 { return wxSocketClient::Connect(addr
); }
65 // read a '\r\n' terminated line from the given socket and put it in
66 // result (without the terminators)
67 static wxProtocolError
ReadLine(wxSocketBase
*socket
, wxString
& result
);
69 // read a line from this socket - this one can be overridden in the
70 // derived classes if different line termination convention is to be used
71 virtual wxProtocolError
ReadLine(wxString
& result
);
72 #endif // wxUSE_SOCKETS
74 virtual bool Abort() = 0;
75 virtual wxInputStream
*GetInputStream(const wxString
& path
) = 0;
76 virtual wxProtocolError
GetError() = 0;
77 virtual wxString
GetContentType() { return wxEmptyString
; }
78 virtual void SetUser(const wxString
& WXUNUSED(user
)) {}
79 virtual void SetPassword(const wxString
& WXUNUSED(passwd
) ) {}
82 DECLARE_DYNAMIC_CLASS_NO_COPY(wxProtocol
)
85 // ----------------------------------------------------------------------------
86 // macros for protocol classes
87 // ----------------------------------------------------------------------------
89 #define DECLARE_PROTOCOL(class) \
91 static wxProtoInfo g_proto_##class;
93 #define IMPLEMENT_PROTOCOL(class, name, serv, host) \
94 wxProtoInfo class::g_proto_##class(name, serv, host, CLASSINFO(class)); \
95 bool wxProtocolUse##class = TRUE;
97 #define USE_PROTOCOL(class) \
98 extern bool wxProtocolUse##class ; \
99 static struct wxProtocolUserFor##class \
101 wxProtocolUserFor##class() { wxProtocolUse##class = TRUE; } \
102 } wxProtocolDoUse##class;
104 class WXDLLIMPEXP_NET wxProtoInfo
: public wxObject
107 wxProtoInfo(const wxChar
*name
,
108 const wxChar
*serv_name
,
109 const bool need_host1
,
114 wxString m_protoname
;
117 wxClassInfo
*m_cinfo
;
122 DECLARE_DYNAMIC_CLASS(wxProtoInfo
)
123 DECLARE_NO_COPY_CLASS(wxProtoInfo
)
126 #endif // wxUSE_PROTOCOL
128 #endif // _WX_PROTOCOL_PROTOCOL_H