chiark / gitweb /
wip
[hippotat] / client
... / ...
CommitLineData
1#!/usr/bin/python3
2
3from hippotat import *
4
5import twisted.web
6import twisted.web.client
7
8import io
9
10client_cs = None
11
12def set_client(ci,cs,pw):
13 global client_cs
14 global password
15 assert(client_cs is None)
16 client_cs = cs
17 c.client = ci
18 c.max_outstanding = cfg.getint(cs, 'max_requests_outstanding')
19 c.target_outstanding = cfg.getint(cs, 'target_requests_outstanding')
20 password = pw
21
22def process_cfg():
23 global url
24 global max_requests_outstanding
25
26 process_cfg_common_always()
27 process_cfg_server()
28
29 try:
30 c.url = cfg.get('server','url')
31 except NoOptionError:
32 process_cfg_saddrs()
33 c.url = c.saddrs[0].url()
34
35 process_cfg_clients(set_client)
36
37 c.routes = cfg.get('virtual','routes')
38 c.max_queue_time = cfg.getint(client_cs, 'max_queue_time')
39 c.max_batch_up = cfg.getint(client_cs, 'max_batch_up')
40 c.http_timeout = cfg.getint(client_cs, 'http_timeout')
41 c.http_retry = cfg.getint(client_cs, 'http_retry')
42
43 process_cfg_ipif(client_cs,
44 (('local', 'client'),
45 ('peer', 'server'),
46 ('rnets', 'routes')))
47
48outstanding = 0
49
50def start_client():
51 global queue
52 global agent
53 queue = PacketQueue('up', c.max_queue_time)
54 agent = twisted.web.client.Agent(reactor, connectTimeout = c.http_timeout)
55
56def outbound(packet, saddr, daddr):
57 #print('OUT ', saddr, daddr, repr(packet))
58 queue.append(packet)
59 check_outbound()
60
61class ResponseConsumer(twisted.internet.protocol.Protocol):
62 def __init__(self, req):
63 self._req = req
64 self._ssd = SlipStreamDecoder(queue_inbound)
65 self._log(DBG.HTTP_CTRL, '__init__')
66
67 def _log(self, dflag, msg, **kwargs):
68 log_debug(dflag, 'RC ' + msg, idof=self._req, **kwargs)
69
70 def dataReceived(self, data):
71 self._log(DBG.HTTP_CTRL, 'dataReceived', d=data)
72 try:
73 self._ssd.inputdata(mime_translate(data))
74 except Exception as e:
75 self._asyncfailure(e)
76
77 def connectionMade(self):
78 self._log(DBG.HTTP_CTRL, 'connectionMade')
79
80 def connectionLost(self, reason):
81 self._log(DBG.HTTP_CTRL, 'connectionLost ' + str(reason))
82 if reason.check(twisted.web.client.ResponseDone):
83 try: self._ssd.flush()
84 except Exception as e:
85 self._asyncfailure(e)
86 else:
87 self._asyncfailure(reason)
88
89 def _asyncfailure(self, reason):
90 self._log(DBG.HTTP_CTRL, '_asyncFailure ' + str(reason))
91 global outstanding
92 outstanding += 1
93 req_err(self._req, reason)
94
95def req_ok(req, resp):
96 log_debug(DBG.HTTP_CTRL,
97 'req_ok %d %s %s' % (resp.code, repr(resp.phrase), str(resp)),
98 idof=req)
99 if resp.code != 200:
100 try:
101 phrase = resp.phrase.decode('utf-8')
102 except UnicodeDecodeError:
103 phrase = repr(resp.phrase)
104 req_err(req, "FAILED %d %s" % (resp.code, phrase))
105 return
106
107 rc = ResponseConsumer(req)
108 resp.deliverBody(rc)
109 req_fin(req)
110
111def req_err(req, err):
112 log_debug(DBG.HTTP_CTRL, 'req_err ' + str(err), idof=req)
113 print(err, file=sys.stderr)
114 reactor.callLater(c.http_retry, (lambda: req_fin(req)))
115
116def req_fin(req):
117 log_debug(DBG.HTTP_CTRL, 'req_fin', idof=req)
118 global outstanding
119 outstanding -= 1
120 check_outbound()
121
122def check_outbound():
123 global outstanding
124
125 while True:
126 if outstanding >= c.max_outstanding : break
127 if not queue.nonempty() and outstanding >= c.target_outstanding: break
128
129 d = b''
130 def moredata(s): nonlocal d; d += s
131 queue.process((lambda: len(d)),
132 moredata,
133 c.max_batch_up)
134
135 d = mime_translate(d)
136
137 crlf = b'\r\n'
138 lf = b'\n'
139 mime = (b'--b' + crlf +
140 b'Content-Type: text/plain; charset="utf-8"' + crlf +
141 b'Content-Disposition: form-data; name="m"' + crlf + crlf +
142 str(c.client) .encode('ascii') + crlf +
143 password + crlf +
144 str(c.target_outstanding) .encode('ascii') + crlf +
145 ((
146 b'--b' + crlf +
147 b'Content-Type: application/octet-stream' + crlf +
148 b'Content-Disposition: form-data; name="d"' + crlf + crlf +
149 d + crlf
150 ) if len(d) else b'') +
151 b'--b--' + crlf)
152
153 #df = open('data.dump.dbg', mode='wb')
154 #df.write(mime)
155 #df.close()
156 # POST -use -c 'multipart/form-data; boundary="b"' http://localhost:8099/ <data.dump.dbg
157
158 log_debug(DBG.HTTP_FULL, 'requesting: ' + str(mime))
159
160 hh = { 'User-Agent': ['hippotat'],
161 'Content-Type': ['multipart/form-data; boundary="b"'],
162 'Content-Length': [str(len(mime))] }
163
164 bytesreader = io.BytesIO(mime)
165 producer = twisted.web.client.FileBodyProducer(bytesreader)
166
167 req = agent.request(b'POST',
168 c.url,
169 twisted.web.client.Headers(hh),
170 producer)
171
172 log_debug(DBG.HTTP_CTRL, 'request', idof=req, d=d)
173 req.addTimeout(c.http_timeout, reactor)
174 req.addCallback((lambda resp: req_ok(req, resp)))
175 req.addErrback((lambda err: req_err(req, err)))
176 outstanding += 1
177
178common_startup()
179process_cfg()
180start_client()
181start_ipif(c.ipif_command, outbound)
182check_outbound()
183common_run()