]>
git.saurik.com Git - wxWidgets.git/blob - src/common/protocol.cpp
1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: Implement protocol base class
4 // Author: Guilhem Lavaux
8 // Copyright: (c) 1997, 1998 Guilhem Lavaux
9 // Licence: wxWindows license
10 /////////////////////////////////////////////////////////////////////////////
13 #pragma implementation "protocol.h"
16 // For compilers that support precompilation, includes "wx.h".
17 #include "wx/wxprec.h"
23 #include "wx/protocol/protocol.h"
25 #include "wx/module.h"
29 /////////////////////////////////////////////////////////////////
31 /////////////////////////////////////////////////////////////////
34 * --------------------------------------------------------------
35 * --------- wxProtoInfo CONSTRUCTOR ----------------------------
36 * --------------------------------------------------------------
39 wxProtoInfo::wxProtoInfo(const wxChar
*name
, const wxChar
*serv
,
40 const bool need_host1
, wxClassInfo
*info
)
45 m_needhost
= need_host1
;
46 next
= wxURL::g_protocols
;
47 wxURL::g_protocols
= this;
50 /////////////////////////////////////////////////////////////////
51 // wxProtocol ///////////////////////////////////////////////////
52 /////////////////////////////////////////////////////////////////
55 IMPLEMENT_ABSTRACT_CLASS(wxProtocol
, wxSocketClient
)
57 IMPLEMENT_ABSTRACT_CLASS(wxProtocol
, wxObject
)
60 wxProtocol::wxProtocol()
68 bool wxProtocol::Reconnect()
85 wxProtocolError
GetLine(wxSocketBase
*sock
, wxString
& result
) {
86 #define PROTO_BSIZE 2048
88 char tmp_buf
[PROTO_BSIZE
], tmp_str
[PROTO_BSIZE
];
92 avail
= sock
->Read(tmp_buf
, PROTO_BSIZE
).LastCount();
93 if (sock
->Error() || avail
== 0)
94 return wxPROTO_NETERR
;
96 memcpy(tmp_str
, tmp_buf
, avail
);
98 // Not implemented on all systems
99 // ret = (char *)memccpy(tmp_str, tmp_buf, '\n', avail);
101 for (ret
=tmp_str
;ret
< (tmp_str
+avail
); ret
++)
108 return wxPROTO_PROTERR
;
112 result
= result
.Left(result
.Length()-1);
114 size
= ret
-tmp_str
+1;
115 sock
->Unread(&tmp_buf
[size
], avail
-size
);
116 return wxPROTO_NOERR
;
121 // ----------------------------------------------------------------------
123 // ----------------------------------------------------------------------
125 class wxProtocolModule
: public wxModule
{
126 DECLARE_DYNAMIC_CLASS(wxProtocolModule
)
128 wxProtocolModule() {}
133 IMPLEMENT_DYNAMIC_CLASS(wxProtocolModule
, wxModule
)
135 bool wxProtocolModule::OnInit()
140 wxURL::g_proxy
= NULL
;
141 // Initialize the proxy when HTTP_PROXY is defined
142 env_http_prox
= getenv("HTTP_PROXY");
144 wxURL::SetDefaultProxy(env_http_prox
);
150 void wxProtocolModule::OnExit()
154 delete wxURL::g_proxy
;
155 wxURL::g_proxy
= NULL
;