]> git.saurik.com Git - wxWidgets.git/blame - src/common/protocol.cpp
More wxFrame updates
[wxWidgets.git] / src / common / protocol.cpp
CommitLineData
f4ada568
GL
1/////////////////////////////////////////////////////////////////////////////
2// Name: protocol.cpp
3// Purpose: Implement protocol base class
4// Author: Guilhem Lavaux
5// Modified by:
6// Created: 07/07/1997
7// RCS-ID: $Id$
8// Copyright: (c) 1997, 1998 Guilhem Lavaux
9// Licence: wxWindows license
10/////////////////////////////////////////////////////////////////////////////
11
12#ifdef __GNUG__
13#pragma implementation "protocol.h"
14#endif
15
fcc6dddd
JS
16// For compilers that support precompilation, includes "wx.h".
17#include "wx/wxprec.h"
18
19#ifdef __BORLANDC__
2df7be7f 20 #pragma hdrstop
fcc6dddd
JS
21#endif
22
f4ada568
GL
23#include "wx/protocol/protocol.h"
24#include "wx/url.h"
3b4183d8 25#include "wx/module.h"
f4ada568 26
f61815af
GL
27#include <stdlib.h>
28
f4ada568
GL
29/////////////////////////////////////////////////////////////////
30// wxProtoInfo
31/////////////////////////////////////////////////////////////////
32
33/*
34 * --------------------------------------------------------------
35 * --------- wxProtoInfo CONSTRUCTOR ----------------------------
36 * --------------------------------------------------------------
37 */
38
4846abaf 39wxProtoInfo::wxProtoInfo(const wxChar *name, const wxChar *serv,
f4ada568
GL
40 const bool need_host1, wxClassInfo *info)
41{
42 m_protoname = name;
43 m_servname = serv;
44 m_cinfo = info;
45 m_needhost = need_host1;
46 next = wxURL::g_protocols;
47 wxURL::g_protocols = this;
48}
49
50/////////////////////////////////////////////////////////////////
51// wxProtocol ///////////////////////////////////////////////////
52/////////////////////////////////////////////////////////////////
53
8a4df159 54#if wxUSE_SOCKETS
f4ada568 55IMPLEMENT_ABSTRACT_CLASS(wxProtocol, wxSocketClient)
8a4df159
RR
56#else
57IMPLEMENT_ABSTRACT_CLASS(wxProtocol, wxObject)
58#endif
f4ada568
GL
59
60wxProtocol::wxProtocol()
8a4df159 61#if wxUSE_SOCKETS
f4ada568 62 : wxSocketClient()
8a4df159 63#endif
f4ada568
GL
64{
65}
66
8a4df159 67#if wxUSE_SOCKETS
f4ada568
GL
68bool wxProtocol::Reconnect()
69{
70 wxIPV4address addr;
71
c0eba78b
GRG
72 if (!GetPeer(addr))
73 {
f4ada568
GL
74 Close();
75 return FALSE;
76 }
77 if (!Close())
78 return FALSE;
79 if (!Connect(addr))
80 return FALSE;
c0eba78b 81
f4ada568
GL
82 return TRUE;
83}
84
85wxProtocolError GetLine(wxSocketBase *sock, wxString& result) {
86#define PROTO_BSIZE 2048
87 size_t avail, size;
88 char tmp_buf[PROTO_BSIZE], tmp_str[PROTO_BSIZE];
89 char *ret;
90 bool found;
91
92 avail = sock->Read(tmp_buf, PROTO_BSIZE).LastCount();
c0eba78b 93 if (sock->Error() || avail == 0)
f4ada568
GL
94 return wxPROTO_NETERR;
95
96 memcpy(tmp_str, tmp_buf, avail);
97
98// Not implemented on all systems
99// ret = (char *)memccpy(tmp_str, tmp_buf, '\n', avail);
100 found = FALSE;
101 for (ret=tmp_str;ret < (tmp_str+avail); ret++)
102 if (*ret == '\n') {
103 found = TRUE;
104 break;
105 }
106
107 if (!found)
108 return wxPROTO_PROTERR;
109 *ret = 0;
110
111 result = tmp_str;
112 result = result.Left(result.Length()-1);
113
114 size = ret-tmp_str+1;
5bb0807e 115 sock->Unread(&tmp_buf[size], avail-size);
f4ada568
GL
116 return wxPROTO_NOERR;
117#undef PROTO_BSIZE
118}
8a4df159 119#endif
3b4183d8
GL
120
121// ----------------------------------------------------------------------
122// Module
123// ----------------------------------------------------------------------
124
125class wxProtocolModule: public wxModule {
126 DECLARE_DYNAMIC_CLASS(wxProtocolModule)
127public:
128 wxProtocolModule() {}
129 bool OnInit();
130 void OnExit();
131};
132
3b4183d8 133IMPLEMENT_DYNAMIC_CLASS(wxProtocolModule, wxModule)
3b4183d8
GL
134
135bool wxProtocolModule::OnInit()
136{
8a4df159 137#if wxUSE_SOCKETS
f61815af
GL
138 char *env_http_prox;
139
140 wxURL::g_proxy = NULL;
141 // Initialize the proxy when HTTP_PROXY is defined
142 env_http_prox = getenv("HTTP_PROXY");
143 if (env_http_prox)
144 wxURL::SetDefaultProxy(env_http_prox);
8a4df159 145#endif
f61815af 146
3b4183d8
GL
147 return TRUE;
148}
149
150void wxProtocolModule::OnExit()
151{
8a4df159 152#if wxUSE_SOCKETS
f61815af
GL
153 if (wxURL::g_proxy)
154 delete wxURL::g_proxy;
3b4183d8 155 wxURL::g_proxy = NULL;
8a4df159 156#endif
3b4183d8 157}
35a4dab7 158