X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ian/git?p=hippotat.git;a=blobdiff_plain;f=client;h=64025919900694a2955e97f298c8477cc62176af;hp=e99cb4967440d287c5eb4aa1c4f1675f43d350c4;hb=3a7aaa41178a5e0aed6c3214414a8f00e26e7177;hpb=b37c6b5347dea8fcf197e344b71ab53a69b2208b diff --git a/client b/client index e99cb49..6402591 100755 --- a/client +++ b/client @@ -75,10 +75,10 @@ class ResponseConsumer(twisted.internet.protocol.Protocol): self._asyncfailure(e) def connectionMade(self): - self._log(DBG.HTTP_CTRL, 'connectionMade', d=data) + self._log(DBG.HTTP_CTRL, 'connectionMade') def connectionLost(self, reason): - self._log(DBG.HTTP_CTRL, 'connectionLost', d=data) + self._log(DBG.HTTP_CTRL, 'connectionLost') if isinstance(reason, twisted.internet.error.ConnectionDone): try: self._ssd.flush() except Exception as e: @@ -92,21 +92,25 @@ class ResponseConsumer(twisted.internet.protocol.Protocol): req_err(self._req, reason) def req_ok(req, resp): - log_http(DBG.HTTP_CTRL, 'req_ok ' % str(resp), idof=req) - resp.deliverBody(ResponseConsumer(req)) - req_fin(req) + rc = ResponseConsumer(req) + resp.deliverBody(rc) + req_fin() def req_err(req, err): - log_http(DBG.HTTP_CTRL, 'req_err ' % str(err), idof=req) + log_debug(DBG.HTTP_CTRL, 'req_err ' + str(err), idof=req) print(err, file=sys.stderr) - reactor.callLater(c.http_retry, (lambda: req_fin(req))) + reactor.callLater(c.http_retry, req_fin) -def req_fin(req): - log_http(DBG.HTTP_CTRL, 'req_fin', idof=req) +def req_fin(*args): global outstanding outstanding -= 1 check_outbound() +def asyncfailure(reason): + global outstanding + outstanding += 1 + req_err(None, reason) + def check_outbound(): global outstanding @@ -156,11 +160,9 @@ def check_outbound(): c.url, twisted.web.client.Headers(hh), producer) - - log_debug(DBG.HTTP_CTRL, 'request', idof=req, d=d) req.addTimeout(c.http_timeout, reactor) - req.addCallbacks((lambda resp: req_ok(req,resp)), - (lambda resp: req_err(req,resp))) + req.addCallback((lambda resp: req_ok(req, resp))) + req.addErrback((lambda err: req_err(req, err))) outstanding += 1 common_startup()