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