home *** CD-ROM | disk | FTP | other *** search
/ PC Extra 07 & 08 / pca1507.iso / Software / psp8 / Data1.cab / httplib.py < prev    next >
Encoding:
Python Source  |  2003-04-22  |  29.7 KB  |  879 lines

  1. """HTTP/1.1 client library
  2.  
  3. <intro stuff goes here>
  4. <other stuff, too>
  5.  
  6. HTTPConnection go through a number of "states", which defines when a client
  7. may legally make another request or fetch the response for a particular
  8. request. This diagram details these state transitions:
  9.  
  10.     (null)
  11.       |
  12.       | HTTPConnection()
  13.       v
  14.     Idle
  15.       |
  16.       | putrequest()
  17.       v
  18.     Request-started
  19.       |
  20.       | ( putheader() )*  endheaders()
  21.       v
  22.     Request-sent
  23.       |
  24.       | response = getresponse()
  25.       v
  26.     Unread-response   [Response-headers-read]
  27.       |\____________________
  28.       |                     |
  29.       | response.read()     | putrequest()
  30.       v                     v
  31.     Idle                  Req-started-unread-response
  32.                      ______/|
  33.                    /        |
  34.    response.read() |        | ( putheader() )*  endheaders()
  35.                    v        v
  36.        Request-started    Req-sent-unread-response
  37.                             |
  38.                             | response.read()
  39.                             v
  40.                           Request-sent
  41.  
  42. This diagram presents the following rules:
  43.   -- a second request may not be started until {response-headers-read}
  44.   -- a response [object] cannot be retrieved until {request-sent}
  45.   -- there is no differentiation between an unread response body and a
  46.      partially read response body
  47.  
  48. Note: this enforcement is applied by the HTTPConnection class. The
  49.       HTTPResponse class does not enforce this state machine, which
  50.       implies sophisticated clients may accelerate the request/response
  51.       pipeline. Caution should be taken, though: accelerating the states
  52.       beyond the above pattern may imply knowledge of the server's
  53.       connection-close behavior for certain requests. For example, it
  54.       is impossible to tell whether the server will close the connection
  55.       UNTIL the response headers have been read; this means that further
  56.       requests cannot be placed into the pipeline until it is known that
  57.       the server will NOT be closing the connection.
  58.  
  59. Logical State                  __state            __response
  60. -------------                  -------            ----------
  61. Idle                           _CS_IDLE           None
  62. Request-started                _CS_REQ_STARTED    None
  63. Request-sent                   _CS_REQ_SENT       None
  64. Unread-response                _CS_IDLE           <response_class>
  65. Req-started-unread-response    _CS_REQ_STARTED    <response_class>
  66. Req-sent-unread-response       _CS_REQ_SENT       <response_class>
  67. """
  68.  
  69. import errno
  70. import mimetools
  71. import socket
  72.  
  73. try:
  74.     from cStringIO import StringIO
  75. except ImportError:
  76.     from StringIO import StringIO
  77.  
  78. __all__ = ["HTTP", "HTTPResponse", "HTTPConnection", "HTTPSConnection",
  79.            "HTTPException", "NotConnected", "UnknownProtocol",
  80.            "UnknownTransferEncoding", "IllegalKeywordArgument",
  81.            "UnimplementedFileMode", "IncompleteRead",
  82.            "ImproperConnectionState", "CannotSendRequest", "CannotSendHeader",
  83.            "ResponseNotReady", "BadStatusLine", "error"]
  84.  
  85. HTTP_PORT = 80
  86. HTTPS_PORT = 443
  87.  
  88. _UNKNOWN = 'UNKNOWN'
  89.  
  90. # connection states
  91. _CS_IDLE = 'Idle'
  92. _CS_REQ_STARTED = 'Request-started'
  93. _CS_REQ_SENT = 'Request-sent'
  94.  
  95.  
  96. class HTTPResponse:
  97.     def __init__(self, sock, debuglevel=0):
  98.         self.fp = sock.makefile('rb', 0)
  99.         self.debuglevel = debuglevel
  100.  
  101.         self.msg = None
  102.  
  103.         # from the Status-Line of the response
  104.         self.version = _UNKNOWN # HTTP-Version
  105.         self.status = _UNKNOWN  # Status-Code
  106.         self.reason = _UNKNOWN  # Reason-Phrase
  107.  
  108.         self.chunked = _UNKNOWN         # is "chunked" being used?
  109.         self.chunk_left = _UNKNOWN      # bytes left to read in current chunk
  110.         self.length = _UNKNOWN          # number of bytes left in response
  111.         self.will_close = _UNKNOWN      # conn will close at end of response
  112.  
  113.     def begin(self):
  114.         if self.msg is not None:
  115.             # we've already started reading the response
  116.             return
  117.  
  118.         line = self.fp.readline()
  119.         if self.debuglevel > 0:
  120.             print "reply:", repr(line)
  121.         try:
  122.             [version, status, reason] = line.split(None, 2)
  123.         except ValueError:
  124.             try:
  125.                 [version, status] = line.split(None, 1)
  126.                 reason = ""
  127.             except ValueError:
  128.                 version = "HTTP/0.9"
  129.                 status = "200"
  130.                 reason = ""
  131.         if version[:5] != 'HTTP/':
  132.             self.close()
  133.             raise BadStatusLine(line)
  134.  
  135.         # The status code is a three-digit number
  136.         try:
  137.             self.status = status = int(status)
  138.             if status < 100 or status > 999:
  139.                 raise BadStatusLine(line)
  140.         except ValueError:
  141.             raise BadStatusLine(line)
  142.         self.reason = reason.strip()
  143.  
  144.         if version == 'HTTP/1.0':
  145.             self.version = 10
  146.         elif version.startswith('HTTP/1.'):
  147.             self.version = 11   # use HTTP/1.1 code for HTTP/1.x where x>=1
  148.         elif version == 'HTTP/0.9':
  149.             self.version = 9
  150.         else:
  151.             raise UnknownProtocol(version)
  152.  
  153.         if self.version == 9:
  154.             self.msg = mimetools.Message(StringIO())
  155.             return
  156.  
  157.         self.msg = mimetools.Message(self.fp, 0)
  158.         if self.debuglevel > 0:
  159.             for hdr in self.msg.headers:
  160.                 print "header:", hdr,
  161.  
  162.         # don't let the msg keep an fp
  163.         self.msg.fp = None
  164.  
  165.         # are we using the chunked-style of transfer encoding?
  166.         tr_enc = self.msg.getheader('transfer-encoding')
  167.         if tr_enc:
  168.             if tr_enc.lower() != 'chunked':
  169.                 raise UnknownTransferEncoding()
  170.             self.chunked = 1
  171.             self.chunk_left = None
  172.         else:
  173.             self.chunked = 0
  174.  
  175.         # will the connection close at the end of the response?
  176.         conn = self.msg.getheader('connection')
  177.         if conn:
  178.             conn = conn.lower()
  179.             # a "Connection: close" will always close the connection. if we
  180.             # don't see that and this is not HTTP/1.1, then the connection will
  181.             # close unless we see a Keep-Alive header.
  182.             self.will_close = conn.find('close') != -1 or \
  183.                               ( self.version != 11 and \
  184.                                 not self.msg.getheader('keep-alive') )
  185.         else:
  186.             # for HTTP/1.1, the connection will always remain open
  187.             # otherwise, it will remain open IFF we see a Keep-Alive header
  188.             self.will_close = self.version != 11 and \
  189.                               not self.msg.getheader('keep-alive')
  190.  
  191.         # do we have a Content-Length?
  192.         # NOTE: RFC 2616, S4.4, #3 says we ignore this if tr_enc is "chunked"
  193.         length = self.msg.getheader('content-length')
  194.         if length and not self.chunked:
  195.             try:
  196.                 self.length = int(length)
  197.             except ValueError:
  198.                 self.length = None
  199.         else:
  200.             self.length = None
  201.  
  202.         # does the body have a fixed length? (of zero)
  203.         if (status == 204 or            # No Content
  204.             status == 304 or            # Not Modified
  205.             100 <= status < 200):       # 1xx codes
  206.             self.length = 0
  207.  
  208.         # if the connection remains open, and we aren't using chunked, and
  209.         # a content-length was not provided, then assume that the connection
  210.         # WILL close.
  211.         if not self.will_close and \
  212.            not self.chunked and \
  213.            self.length is None:
  214.             self.will_close = 1
  215.  
  216.     def close(self):
  217.         if self.fp:
  218.             self.fp.close()
  219.             self.fp = None
  220.  
  221.     def isclosed(self):
  222.         # NOTE: it is possible that we will not ever call self.close(). This
  223.         #       case occurs when will_close is TRUE, length is None, and we
  224.         #       read up to the last byte, but NOT past it.
  225.         #
  226.         # IMPLIES: if will_close is FALSE, then self.close() will ALWAYS be
  227.         #          called, meaning self.isclosed() is meaningful.
  228.         return self.fp is None
  229.  
  230.     def read(self, amt=None):
  231.         if self.fp is None:
  232.             return ''
  233.  
  234.         if self.chunked:
  235.             chunk_left = self.chunk_left
  236.             value = ''
  237.             while 1:
  238.                 if chunk_left is None:
  239.                     line = self.fp.readline()
  240.                     i = line.find(';')
  241.                     if i >= 0:
  242.                         line = line[:i] # strip chunk-extensions
  243.                     chunk_left = int(line, 16)
  244.                     if chunk_left == 0:
  245.                         break
  246.                 if amt is None:
  247.                     value = value + self._safe_read(chunk_left)
  248.                 elif amt < chunk_left:
  249.                     value = value + self._safe_read(amt)
  250.                     self.chunk_left = chunk_left - amt
  251.                     return value
  252.                 elif amt == chunk_left:
  253.                     value = value + self._safe_read(amt)
  254.                     self._safe_read(2)  # toss the CRLF at the end of the chunk
  255.                     self.chunk_left = None
  256.                     return value
  257.                 else:
  258.                     value = value + self._safe_read(chunk_left)
  259.                     amt = amt - chunk_left
  260.  
  261.                 # we read the whole chunk, get another
  262.                 self._safe_read(2)      # toss the CRLF at the end of the chunk
  263.                 chunk_left = None
  264.  
  265.             # read and discard trailer up to the CRLF terminator
  266.             ### note: we shouldn't have any trailers!
  267.             while 1:
  268.                 line = self.fp.readline()
  269.                 if line == '\r\n':
  270.                     break
  271.  
  272.             # we read everything; close the "file"
  273.             self.close()
  274.  
  275.             return value
  276.  
  277.         elif amt is None:
  278.             # unbounded read
  279.             if self.will_close:
  280.                 s = self.fp.read()
  281.             else:
  282.                 s = self._safe_read(self.length)
  283.             self.close()        # we read everything
  284.             return s
  285.  
  286.         if self.length is not None:
  287.             if amt > self.length:
  288.                 # clip the read to the "end of response"
  289.                 amt = self.length
  290.             self.length = self.length - amt
  291.  
  292.         # we do not use _safe_read() here because this may be a .will_close
  293.         # connection, and the user is reading more bytes than will be provided
  294.         # (for example, reading in 1k chunks)
  295.         s = self.fp.read(amt)
  296.  
  297.         return s
  298.  
  299.     def _safe_read(self, amt):
  300.         """Read the number of bytes requested, compensating for partial reads.
  301.  
  302.         Normally, we have a blocking socket, but a read() can be interrupted
  303.         by a signal (resulting in a partial read).
  304.  
  305.         Note that we cannot distinguish between EOF and an interrupt when zero
  306.         bytes have been read. IncompleteRead() will be raised in this
  307.         situation.
  308.  
  309.         This function should be used when <amt> bytes "should" be present for
  310.         reading. If the bytes are truly not available (due to EOF), then the
  311.         IncompleteRead exception can be used to detect the problem.
  312.         """
  313.         s = ''
  314.         while amt > 0:
  315.             chunk = self.fp.read(amt)
  316.             if not chunk:
  317.                 raise IncompleteRead(s)
  318.             s = s + chunk
  319.             amt = amt - len(chunk)
  320.         return s
  321.  
  322.     def getheader(self, name, default=None):
  323.         if self.msg is None:
  324.             raise ResponseNotReady()
  325.         return self.msg.getheader(name, default)
  326.  
  327.  
  328. class HTTPConnection:
  329.  
  330.     _http_vsn = 11
  331.     _http_vsn_str = 'HTTP/1.1'
  332.  
  333.     response_class = HTTPResponse
  334.     default_port = HTTP_PORT
  335.     auto_open = 1
  336.     debuglevel = 0
  337.  
  338.     def __init__(self, host, port=None):
  339.         self.sock = None
  340.         self.__response = None
  341.         self.__state = _CS_IDLE
  342.  
  343.         self._set_hostport(host, port)
  344.  
  345.     def _set_hostport(self, host, port):
  346.         if port is None:
  347.             i = host.find(':')
  348.             if i >= 0:
  349.                 port = int(host[i+1:])
  350.                 host = host[:i]
  351.             else:
  352.                 port = self.default_port
  353.         self.host = host
  354.         self.port = port
  355.  
  356.     def set_debuglevel(self, level):
  357.         self.debuglevel = level
  358.  
  359.     def connect(self):
  360.         """Connect to the host and port specified in __init__."""
  361.         msg = "getaddrinfo returns an empty list"
  362.         for res in socket.getaddrinfo(self.host, self.port, 0, socket.SOCK_STREAM):
  363.             af, socktype, proto, canonname, sa = res
  364.             try:
  365.                 self.sock = socket.socket(af, socktype, proto)
  366.                 if self.debuglevel > 0:
  367.                     print "connect: (%s, %s)" % (self.host, self.port)
  368.                 self.sock.connect(sa)
  369.             except socket.error, msg:
  370.                 if self.debuglevel > 0:
  371.                     print 'connect fail:', (self.host, self.port)
  372.                 if self.sock:
  373.                     self.sock.close()
  374.                 self.sock = None
  375.                 continue
  376.             break
  377.         if not self.sock:
  378.             raise socket.error, msg
  379.  
  380.     def close(self):
  381.         """Close the connection to the HTTP server."""
  382.         if self.sock:
  383.             self.sock.close()   # close it manually... there may be other refs
  384.             self.sock = None
  385.         if self.__response:
  386.             self.__response.close()
  387.             self.__response = None
  388.         self.__state = _CS_IDLE
  389.  
  390.     def send(self, str):
  391.         """Send `str' to the server."""
  392.         if self.sock is None:
  393.             if self.auto_open:
  394.                 self.connect()
  395.             else:
  396.                 raise NotConnected()
  397.  
  398.         # send the data to the server. if we get a broken pipe, then close
  399.         # the socket. we want to reconnect when somebody tries to send again.
  400.         #
  401.         # NOTE: we DO propagate the error, though, because we cannot simply
  402.         #       ignore the error... the caller will know if they can retry.
  403.         if self.debuglevel > 0:
  404.             print "send:", repr(str)
  405.         try:
  406.             self.sock.send(str)
  407.         except socket.error, v:
  408.             if v[0] == 32:      # Broken pipe
  409.                 self.close()
  410.             raise
  411.  
  412.     def putrequest(self, method, url):
  413.         """Send a request to the server.
  414.  
  415.         `method' specifies an HTTP request method, e.g. 'GET'.
  416.         `url' specifies the object being requested, e.g. '/index.html'.
  417.         """
  418.  
  419.         # check if a prior response has been completed
  420.         if self.__response and self.__response.isclosed():
  421.             self.__response = None
  422.  
  423.         #
  424.         # in certain cases, we cannot issue another request on this connection.
  425.         # this occurs when:
  426.         #   1) we are in the process of sending a request.   (_CS_REQ_STARTED)
  427.         #   2) a response to a previous request has signalled that it is going
  428.         #      to close the connection upon completion.
  429.         #   3) the headers for the previous response have not been read, thus
  430.         #      we cannot determine whether point (2) is true.   (_CS_REQ_SENT)
  431.         #
  432.         # if there is no prior response, then we can request at will.
  433.         #
  434.         # if point (2) is true, then we will have passed the socket to the
  435.         # response (effectively meaning, "there is no prior response"), and
  436.         # will open a new one when a new request is made.
  437.         #
  438.         # Note: if a prior response exists, then we *can* start a new request.
  439.         #       We are not allowed to begin fetching the response to this new
  440.         #       request, however, until that prior response is complete.
  441.         #
  442.         if self.__state == _CS_IDLE:
  443.             self.__state = _CS_REQ_STARTED
  444.         else:
  445.             raise CannotSendRequest()
  446.  
  447.         if not url:
  448.             url = '/'
  449.         str = '%s %s %s\r\n' % (method, url, self._http_vsn_str)
  450.  
  451.         try:
  452.             self.send(str)
  453.         except socket.error, v:
  454.             # trap 'Broken pipe' if we're allowed to automatically reconnect
  455.             if v[0] != 32 or not self.auto_open:
  456.                 raise
  457.             # try one more time (the socket was closed; this will reopen)
  458.             self.send(str)
  459.  
  460.         if self._http_vsn == 11:
  461.             # Issue some standard headers for better HTTP/1.1 compliance
  462.  
  463.             # this header is issued *only* for HTTP/1.1 connections. more
  464.             # specifically, this means it is only issued when the client uses
  465.             # the new HTTPConnection() class. backwards-compat clients will
  466.             # be using HTTP/1.0 and those clients may be issuing this header
  467.             # themselves. we should NOT issue it twice; some web servers (such
  468.             # as Apache) barf when they see two Host: headers
  469.  
  470.             # if we need a non-standard port,include it in the header
  471.             if self.port == HTTP_PORT:
  472.                 self.putheader('Host', self.host)
  473.             else:
  474.                 self.putheader('Host', "%s:%s" % (self.host, self.port))
  475.  
  476.             # note: we are assuming that clients will not attempt to set these
  477.             #       headers since *this* library must deal with the
  478.             #       consequences. this also means that when the supporting
  479.             #       libraries are updated to recognize other forms, then this
  480.             #       code should be changed (removed or updated).
  481.  
  482.             # we only want a Content-Encoding of "identity" since we don't
  483.             # support encodings such as x-gzip or x-deflate.
  484.             self.putheader('Accept-Encoding', 'identity')
  485.  
  486.             # we can accept "chunked" Transfer-Encodings, but no others
  487.             # NOTE: no TE header implies *only* "chunked"
  488.             #self.putheader('TE', 'chunked')
  489.  
  490.             # if TE is supplied in the header, then it must appear in a
  491.             # Connection header.
  492.             #self.putheader('Connection', 'TE')
  493.  
  494.         else:
  495.             # For HTTP/1.0, the server will assume "not chunked"
  496.             pass
  497.  
  498.     def putheader(self, header, value):
  499.         """Send a request header line to the server.
  500.  
  501.         For example: h.putheader('Accept', 'text/html')
  502.         """
  503.         if self.__state != _CS_REQ_STARTED:
  504.             raise CannotSendHeader()
  505.  
  506.         str = '%s: %s\r\n' % (header, value)
  507.         self.send(str)
  508.  
  509.     def endheaders(self):
  510.         """Indicate that the last header line has been sent to the server."""
  511.  
  512.         if self.__state == _CS_REQ_STARTED:
  513.             self.__state = _CS_REQ_SENT
  514.         else:
  515.             raise CannotSendHeader()
  516.  
  517.         self.send('\r\n')
  518.  
  519.     def request(self, method, url, body=None, headers={}):
  520.         """Send a complete request to the server."""
  521.  
  522.         try:
  523.             self._send_request(method, url, body, headers)
  524.         except socket.error, v:
  525.             # trap 'Broken pipe' if we're allowed to automatically reconnect
  526.             if v[0] != 32 or not self.auto_open:
  527.                 raise
  528.             # try one more time
  529.             self._send_request(method, url, body, headers)
  530.  
  531.     def _send_request(self, method, url, body, headers):
  532.         self.putrequest(method, url)
  533.  
  534.         if body:
  535.             self.putheader('Content-Length', str(len(body)))
  536.         for hdr, value in headers.items():
  537.             self.putheader(hdr, value)
  538.         self.endheaders()
  539.  
  540.         if body:
  541.             self.send(body)
  542.  
  543.     def getresponse(self):
  544.         "Get the response from the server."
  545.  
  546.         # check if a prior response has been completed
  547.         if self.__response and self.__response.isclosed():
  548.             self.__response = None
  549.  
  550.         #
  551.         # if a prior response exists, then it must be completed (otherwise, we
  552.         # cannot read this response's header to determine the connection-close
  553.         # behavior)
  554.         #
  555.         # note: if a prior response existed, but was connection-close, then the
  556.         # socket and response were made independent of this HTTPConnection
  557.         # object since a new request requires that we open a whole new
  558.         # connection
  559.         #
  560.         # this means the prior response had one of two states:
  561.         #   1) will_close: this connection was reset and the prior socket and
  562.         #                  response operate independently
  563.         #   2) persistent: the response was retained and we await its
  564.         #                  isclosed() status to become true.
  565.         #
  566.         if self.__state != _CS_REQ_SENT or self.__response:
  567.             raise ResponseNotReady()
  568.  
  569.         if self.debuglevel > 0:
  570.             response = self.response_class(self.sock, self.debuglevel)
  571.         else:
  572.             response = self.response_class(self.sock)
  573.  
  574.         response.begin()
  575.         self.__state = _CS_IDLE
  576.  
  577.         if response.will_close:
  578.             # this effectively passes the connection to the response
  579.             self.close()
  580.         else:
  581.             # remember this, so we can tell when it is complete
  582.             self.__response = response
  583.  
  584.         return response
  585.  
  586.  
  587. class FakeSocket:
  588.     def __init__(self, sock, ssl):
  589.         self.__sock = sock
  590.         self.__ssl = ssl
  591.  
  592.     def makefile(self, mode, bufsize=None):
  593.         """Return a readable file-like object with data from socket.
  594.  
  595.         This method offers only partial support for the makefile
  596.         interface of a real socket.  It only supports modes 'r' and
  597.         'rb' and the bufsize argument is ignored.
  598.  
  599.         The returned object contains *all* of the file data
  600.         """
  601.         if mode != 'r' and mode != 'rb':
  602.             raise UnimplementedFileMode()
  603.  
  604.         msgbuf = []
  605.         while 1:
  606.             try:
  607.                 buf = self.__ssl.read()
  608.             except socket.sslerror, err:
  609.                 if (err[0] == socket.SSL_ERROR_WANT_READ
  610.                     or err[0] == socket.SSL_ERROR_WANT_WRITE
  611.                     or 0):
  612.                     continue
  613.                 if err[0] == socket.SSL_ERROR_ZERO_RETURN:
  614.                     break
  615.                 raise
  616.             except socket.error, err:
  617.                 if err[0] == errno.EINTR:
  618.                     continue
  619.                 raise
  620.             if buf == '':
  621.                 break
  622.             msgbuf.append(buf)
  623.         return StringIO("".join(msgbuf))
  624.  
  625.     def send(self, stuff, flags = 0):
  626.         return self.__ssl.write(stuff)
  627.  
  628.     def recv(self, len = 1024, flags = 0):
  629.         return self.__ssl.read(len)
  630.  
  631.     def __getattr__(self, attr):
  632.         return getattr(self.__sock, attr)
  633.  
  634.  
  635. class HTTPSConnection(HTTPConnection):
  636.     "This class allows communication via SSL."
  637.  
  638.     default_port = HTTPS_PORT
  639.  
  640.     def __init__(self, host, port=None, **x509):
  641.         keys = x509.keys()
  642.         try:
  643.             keys.remove('key_file')
  644.         except ValueError:
  645.             pass
  646.         try:
  647.             keys.remove('cert_file')
  648.         except ValueError:
  649.             pass
  650.         if keys:
  651.             raise IllegalKeywordArgument()
  652.         HTTPConnection.__init__(self, host, port)
  653.         self.key_file = x509.get('key_file')
  654.         self.cert_file = x509.get('cert_file')
  655.  
  656.     def connect(self):
  657.         "Connect to a host on a given (SSL) port."
  658.  
  659.         sock = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
  660.         sock.connect((self.host, self.port))
  661.         realsock = sock
  662.         if hasattr(sock, "_sock"):
  663.             realsock = sock._sock
  664.         ssl = socket.ssl(realsock, self.key_file, self.cert_file)
  665.         self.sock = FakeSocket(sock, ssl)
  666.  
  667.  
  668. class HTTP:
  669.     "Compatibility class with httplib.py from 1.5."
  670.  
  671.     _http_vsn = 10
  672.     _http_vsn_str = 'HTTP/1.0'
  673.  
  674.     debuglevel = 0
  675.  
  676.     _connection_class = HTTPConnection
  677.  
  678.     def __init__(self, host='', port=None):
  679.         "Provide a default host, since the superclass requires one."
  680.  
  681.         # some joker passed 0 explicitly, meaning default port
  682.         if port == 0:
  683.             port = None
  684.  
  685.         # Note that we may pass an empty string as the host; this will throw
  686.         # an error when we attempt to connect. Presumably, the client code
  687.         # will call connect before then, with a proper host.
  688.         self._setup(self._connection_class(host, port))
  689.  
  690.     def _setup(self, conn):
  691.         self._conn = conn
  692.  
  693.         # set up delegation to flesh out interface
  694.         self.send = conn.send
  695.         self.putrequest = conn.putrequest
  696.         self.endheaders = conn.endheaders
  697.         self.set_debuglevel = conn.set_debuglevel
  698.  
  699.         conn._http_vsn = self._http_vsn
  700.         conn._http_vsn_str = self._http_vsn_str
  701.  
  702.         self.file = None
  703.  
  704.     def connect(self, host=None, port=None):
  705.         "Accept arguments to set the host/port, since the superclass doesn't."
  706.  
  707.         if host is not None:
  708.             self._conn._set_hostport(host, port)
  709.         self._conn.connect()
  710.  
  711.     def getfile(self):
  712.         "Provide a getfile, since the superclass' does not use this concept."
  713.         return self.file
  714.  
  715.     def putheader(self, header, *values):
  716.         "The superclass allows only one value argument."
  717.         self._conn.putheader(header, '\r\n\t'.join(values))
  718.  
  719.     def getreply(self):
  720.         """Compat definition since superclass does not define it.
  721.  
  722.         Returns a tuple consisting of:
  723.         - server status code (e.g. '200' if all goes well)
  724.         - server "reason" corresponding to status code
  725.         - any RFC822 headers in the response from the server
  726.         """
  727.         try:
  728.             response = self._conn.getresponse()
  729.         except BadStatusLine, e:
  730.             ### hmm. if getresponse() ever closes the socket on a bad request,
  731.             ### then we are going to have problems with self.sock
  732.  
  733.             ### should we keep this behavior? do people use it?
  734.             # keep the socket open (as a file), and return it
  735.             self.file = self._conn.sock.makefile('rb', 0)
  736.  
  737.             # close our socket -- we want to restart after any protocol error
  738.             self.close()
  739.  
  740.             self.headers = None
  741.             return -1, e.line, None
  742.  
  743.         self.headers = response.msg
  744.         self.file = response.fp
  745.         return response.status, response.reason, response.msg
  746.  
  747.     def close(self):
  748.         self._conn.close()
  749.  
  750.         # note that self.file == response.fp, which gets closed by the
  751.         # superclass. just clear the object ref here.
  752.         ### hmm. messy. if status==-1, then self.file is owned by us.
  753.         ### well... we aren't explicitly closing, but losing this ref will
  754.         ### do it
  755.         self.file = None
  756.  
  757. if hasattr(socket, 'ssl'):
  758.     class HTTPS(HTTP):
  759.         """Compatibility with 1.5 httplib interface
  760.  
  761.         Python 1.5.2 did not have an HTTPS class, but it defined an
  762.         interface for sending http requests that is also useful for
  763.         https.
  764.         """
  765.  
  766.         _connection_class = HTTPSConnection
  767.  
  768.         def __init__(self, host='', port=None, **x509):
  769.             # provide a default host, pass the X509 cert info
  770.  
  771.             # urf. compensate for bad input.
  772.             if port == 0:
  773.                 port = None
  774.             self._setup(self._connection_class(host, port, **x509))
  775.  
  776.             # we never actually use these for anything, but we keep them
  777.             # here for compatibility with post-1.5.2 CVS.
  778.             self.key_file = x509.get('key_file')
  779.             self.cert_file = x509.get('cert_file')
  780.  
  781.  
  782. class HTTPException(Exception):
  783.     pass
  784.  
  785. class NotConnected(HTTPException):
  786.     pass
  787.  
  788. class UnknownProtocol(HTTPException):
  789.     def __init__(self, version):
  790.         self.version = version
  791.  
  792. class UnknownTransferEncoding(HTTPException):
  793.     pass
  794.  
  795. class IllegalKeywordArgument(HTTPException):
  796.     pass
  797.  
  798. class UnimplementedFileMode(HTTPException):
  799.     pass
  800.  
  801. class IncompleteRead(HTTPException):
  802.     def __init__(self, partial):
  803.         self.partial = partial
  804.  
  805. class ImproperConnectionState(HTTPException):
  806.     pass
  807.  
  808. class CannotSendRequest(ImproperConnectionState):
  809.     pass
  810.  
  811. class CannotSendHeader(ImproperConnectionState):
  812.     pass
  813.  
  814. class ResponseNotReady(ImproperConnectionState):
  815.     pass
  816.  
  817. class BadStatusLine(HTTPException):
  818.     def __init__(self, line):
  819.         self.line = line
  820.  
  821. # for backwards compatibility
  822. error = HTTPException
  823.  
  824.  
  825. #
  826. # snarfed from httplib.py for now...
  827. #
  828. def test():
  829.     """Test this module.
  830.  
  831.     The test consists of retrieving and displaying the Python
  832.     home page, along with the error code and error string returned
  833.     by the www.python.org server.
  834.     """
  835.  
  836.     import sys
  837.     import getopt
  838.     opts, args = getopt.getopt(sys.argv[1:], 'd')
  839.     dl = 0
  840.     for o, a in opts:
  841.         if o == '-d': dl = dl + 1
  842.     host = 'www.python.org'
  843.     selector = '/'
  844.     if args[0:]: host = args[0]
  845.     if args[1:]: selector = args[1]
  846.     h = HTTP()
  847.     h.set_debuglevel(dl)
  848.     h.connect(host)
  849.     h.putrequest('GET', selector)
  850.     h.endheaders()
  851.     status, reason, headers = h.getreply()
  852.     print 'status =', status
  853.     print 'reason =', reason
  854.     print
  855.     if headers:
  856.         for header in headers.headers: print header.strip()
  857.     print
  858.     print h.getfile().read()
  859.  
  860.     if hasattr(socket, 'ssl'):
  861.         host = 'sourceforge.net'
  862.         selector = '/projects/python'
  863.         hs = HTTPS()
  864.         hs.connect(host)
  865.         hs.putrequest('GET', selector)
  866.         hs.endheaders()
  867.         status, reason, headers = hs.getreply()
  868.         print 'status =', status
  869.         print 'reason =', reason
  870.         print
  871.         if headers:
  872.             for header in headers.headers: print header.strip()
  873.         print
  874.         print hs.getfile().read()
  875.  
  876.  
  877. if __name__ == '__main__':
  878.     test()
  879.