X-Git-Url: https://git.distorted.org.uk/~mdw/hippotat/blobdiff_plain/4224dc197474ed0a2535cdb100193fffaa697d0e..916021af0447d61202fd909a722c28b08a4a13a3:/hippotat diff --git a/hippotat b/hippotat index 997996d..7130f91 100755 --- a/hippotat +++ b/hippotat @@ -30,9 +30,10 @@ import twisted.web.client import io class GeneralResponseConsumer(twisted.internet.protocol.Protocol): - def __init__(self, cl, req, desc): + def __init__(self, cl, req, resp, desc): self._cl = cl self._req = req + self._resp = resp self._desc = desc def _log(self, dflag, msg, **kwargs): @@ -41,9 +42,17 @@ class GeneralResponseConsumer(twisted.internet.protocol.Protocol): def connectionMade(self): self._log(DBG.HTTP_CTRL, 'connectionMade') + def connectionLostOK(self, reason): + return (reason.check(twisted.web.client.ResponseDone) or + reason.check(twisted.web.client.PotentialDataLoss)) + # twisted.web.client.PotentialDataLoss is an entirely daft + # exception. It will occur every time if the origin server does + # not provide a Content-Length. (hippotatd does, of course, but + # the HTTP transaction might be proxied.) + class ResponseConsumer(GeneralResponseConsumer): def __init__(self, cl, req, resp): - super().__init__(cl, req, 'RC') + super().__init__(cl, req, resp, 'RC') ssddesc = '[%s] %s' % (id(req), self._desc) self._ssd = SlipStreamDecoder(ssddesc, partial(queue_inbound, cl.ipif)) self._log(DBG.HTTP_CTRL, '__init__') @@ -58,7 +67,7 @@ class ResponseConsumer(GeneralResponseConsumer): def connectionLost(self, reason): reason_msg = 'connectionLost ' + str(reason) self._log(DBG.HTTP_CTRL, reason_msg) - if not reason.check(twisted.web.client.ResponseDone): + if not self.connectionLostOK(reason): self._latefailure(reason_msg) return try: @@ -78,8 +87,7 @@ class ResponseConsumer(GeneralResponseConsumer): class ErrorResponseConsumer(GeneralResponseConsumer): def __init__(self, cl, req, resp): - super().__init__(cl, req, 'ERROR-RC') - self._resp = resp + super().__init__(cl, req, resp, 'ERROR-RC') self._m = b'' try: self._phrase = resp.phrase.decode('utf-8') @@ -96,7 +104,7 @@ class ErrorResponseConsumer(GeneralResponseConsumer): mbody = self._m.decode('utf-8') except Exception: mbody = repr(self._m) - if not reason.check(twisted.web.client.ResponseDone): + if not self.connectionLostOK(reason): mbody += ' || ' + str(reason) self._cl.req_err(self._req, "FAILED %d %s | %s"