Alexandre Vassalotti | ce26195 | 2008-05-12 02:31:37 +0000 | [diff] [blame] | 1 | :mod:`socketserver` --- A framework for network servers |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 2 | ======================================================= |
| 3 | |
Alexandre Vassalotti | ce26195 | 2008-05-12 02:31:37 +0000 | [diff] [blame] | 4 | .. module:: socketserver |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 5 | :synopsis: A framework for network servers. |
| 6 | |
Alexandre Vassalotti | ce26195 | 2008-05-12 02:31:37 +0000 | [diff] [blame] | 7 | The :mod:`socketserver` module simplifies the task of writing network servers. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 8 | |
| 9 | There are four basic server classes: :class:`TCPServer` uses the Internet TCP |
| 10 | protocol, which provides for continuous streams of data between the client and |
| 11 | server. :class:`UDPServer` uses datagrams, which are discrete packets of |
| 12 | information that may arrive out of order or be lost while in transit. The more |
| 13 | infrequently used :class:`UnixStreamServer` and :class:`UnixDatagramServer` |
| 14 | classes are similar, but use Unix domain sockets; they're not available on |
| 15 | non-Unix platforms. For more details on network programming, consult a book |
| 16 | such as |
| 17 | W. Richard Steven's UNIX Network Programming or Ralph Davis's Win32 Network |
| 18 | Programming. |
| 19 | |
| 20 | These four classes process requests :dfn:`synchronously`; each request must be |
| 21 | completed before the next request can be started. This isn't suitable if each |
| 22 | request takes a long time to complete, because it requires a lot of computation, |
| 23 | or because it returns a lot of data which the client is slow to process. The |
| 24 | solution is to create a separate process or thread to handle each request; the |
| 25 | :class:`ForkingMixIn` and :class:`ThreadingMixIn` mix-in classes can be used to |
| 26 | support asynchronous behaviour. |
| 27 | |
| 28 | Creating a server requires several steps. First, you must create a request |
| 29 | handler class by subclassing the :class:`BaseRequestHandler` class and |
| 30 | overriding its :meth:`handle` method; this method will process incoming |
| 31 | requests. Second, you must instantiate one of the server classes, passing it |
| 32 | the server's address and the request handler class. Finally, call the |
| 33 | :meth:`handle_request` or :meth:`serve_forever` method of the server object to |
| 34 | process one or many requests. |
| 35 | |
| 36 | When inheriting from :class:`ThreadingMixIn` for threaded connection behavior, |
| 37 | you should explicitly declare how you want your threads to behave on an abrupt |
| 38 | shutdown. The :class:`ThreadingMixIn` class defines an attribute |
| 39 | *daemon_threads*, which indicates whether or not the server should wait for |
| 40 | thread termination. You should set the flag explicitly if you would like threads |
| 41 | to behave autonomously; the default is :const:`False`, meaning that Python will |
| 42 | not exit until all threads created by :class:`ThreadingMixIn` have exited. |
| 43 | |
| 44 | Server classes have the same external methods and attributes, no matter what |
Georg Brandl | fceab5a | 2008-01-19 20:08:23 +0000 | [diff] [blame] | 45 | network protocol they use. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 46 | |
| 47 | |
| 48 | Server Creation Notes |
| 49 | --------------------- |
| 50 | |
| 51 | There are five classes in an inheritance diagram, four of which represent |
| 52 | synchronous servers of four types:: |
| 53 | |
| 54 | +------------+ |
| 55 | | BaseServer | |
| 56 | +------------+ |
| 57 | | |
| 58 | v |
| 59 | +-----------+ +------------------+ |
| 60 | | TCPServer |------->| UnixStreamServer | |
| 61 | +-----------+ +------------------+ |
| 62 | | |
| 63 | v |
| 64 | +-----------+ +--------------------+ |
| 65 | | UDPServer |------->| UnixDatagramServer | |
| 66 | +-----------+ +--------------------+ |
| 67 | |
| 68 | Note that :class:`UnixDatagramServer` derives from :class:`UDPServer`, not from |
| 69 | :class:`UnixStreamServer` --- the only difference between an IP and a Unix |
| 70 | stream server is the address family, which is simply repeated in both Unix |
| 71 | server classes. |
| 72 | |
| 73 | Forking and threading versions of each type of server can be created using the |
| 74 | :class:`ForkingMixIn` and :class:`ThreadingMixIn` mix-in classes. For instance, |
| 75 | a threading UDP server class is created as follows:: |
| 76 | |
| 77 | class ThreadingUDPServer(ThreadingMixIn, UDPServer): pass |
| 78 | |
| 79 | The mix-in class must come first, since it overrides a method defined in |
| 80 | :class:`UDPServer`. Setting the various member variables also changes the |
| 81 | behavior of the underlying server mechanism. |
| 82 | |
| 83 | To implement a service, you must derive a class from :class:`BaseRequestHandler` |
| 84 | and redefine its :meth:`handle` method. You can then run various versions of |
| 85 | the service by combining one of the server classes with your request handler |
| 86 | class. The request handler class must be different for datagram or stream |
| 87 | services. This can be hidden by using the handler subclasses |
| 88 | :class:`StreamRequestHandler` or :class:`DatagramRequestHandler`. |
| 89 | |
| 90 | Of course, you still have to use your head! For instance, it makes no sense to |
| 91 | use a forking server if the service contains state in memory that can be |
| 92 | modified by different requests, since the modifications in the child process |
| 93 | would never reach the initial state kept in the parent process and passed to |
| 94 | each child. In this case, you can use a threading server, but you will probably |
| 95 | have to use locks to protect the integrity of the shared data. |
| 96 | |
| 97 | On the other hand, if you are building an HTTP server where all data is stored |
| 98 | externally (for instance, in the file system), a synchronous class will |
| 99 | essentially render the service "deaf" while one request is being handled -- |
| 100 | which may be for a very long time if a client is slow to receive all the data it |
| 101 | has requested. Here a threading or forking server is appropriate. |
| 102 | |
| 103 | In some cases, it may be appropriate to process part of a request synchronously, |
| 104 | but to finish processing in a forked child depending on the request data. This |
| 105 | can be implemented by using a synchronous server and doing an explicit fork in |
| 106 | the request handler class :meth:`handle` method. |
| 107 | |
| 108 | Another approach to handling multiple simultaneous requests in an environment |
| 109 | that supports neither threads nor :func:`fork` (or where these are too expensive |
| 110 | or inappropriate for the service) is to maintain an explicit table of partially |
| 111 | finished requests and to use :func:`select` to decide which request to work on |
| 112 | next (or whether to handle a new incoming request). This is particularly |
| 113 | important for stream services where each client can potentially be connected for |
Christian Heimes | dd15f6c | 2008-03-16 00:07:10 +0000 | [diff] [blame] | 114 | a long time (if threads or subprocesses cannot be used). See :mod:`asyncore` for |
| 115 | another way to manage this. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 116 | |
Christian Heimes | 5b5e81c | 2007-12-31 16:14:33 +0000 | [diff] [blame] | 117 | .. XXX should data and methods be intermingled, or separate? |
| 118 | how should the distinction between class and instance variables be drawn? |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 119 | |
| 120 | |
| 121 | Server Objects |
| 122 | -------------- |
| 123 | |
Benjamin Peterson | d23f822 | 2009-04-05 19:13:16 +0000 | [diff] [blame] | 124 | .. class:: BaseServer |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 125 | |
Benjamin Peterson | d23f822 | 2009-04-05 19:13:16 +0000 | [diff] [blame] | 126 | This is the superclass of all Server objects in the module. It defines the |
| 127 | interface, given below, but does not implement most of the methods, which is |
| 128 | done in subclasses. |
| 129 | |
| 130 | |
| 131 | .. method:: BaseServer.fileno() |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 132 | |
| 133 | Return an integer file descriptor for the socket on which the server is |
| 134 | listening. This function is most commonly passed to :func:`select.select`, to |
| 135 | allow monitoring multiple servers in the same process. |
| 136 | |
| 137 | |
Benjamin Peterson | d23f822 | 2009-04-05 19:13:16 +0000 | [diff] [blame] | 138 | .. method:: BaseServer.handle_request() |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 139 | |
Christian Heimes | dd15f6c | 2008-03-16 00:07:10 +0000 | [diff] [blame] | 140 | Process a single request. This function calls the following methods in |
| 141 | order: :meth:`get_request`, :meth:`verify_request`, and |
| 142 | :meth:`process_request`. If the user-provided :meth:`handle` method of the |
| 143 | handler class raises an exception, the server's :meth:`handle_error` method |
| 144 | will be called. If no request is received within :attr:`self.timeout` |
| 145 | seconds, :meth:`handle_timeout` will be called and :meth:`handle_request` |
| 146 | will return. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 147 | |
| 148 | |
Benjamin Peterson | d23f822 | 2009-04-05 19:13:16 +0000 | [diff] [blame] | 149 | .. method:: BaseServer.serve_forever(poll_interval=0.5) |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 150 | |
Christian Heimes | dd15f6c | 2008-03-16 00:07:10 +0000 | [diff] [blame] | 151 | Handle requests until an explicit :meth:`shutdown` request. Polls for |
| 152 | shutdown every *poll_interval* seconds. |
| 153 | |
| 154 | |
Benjamin Peterson | d23f822 | 2009-04-05 19:13:16 +0000 | [diff] [blame] | 155 | .. method:: BaseServer.shutdown() |
Christian Heimes | dd15f6c | 2008-03-16 00:07:10 +0000 | [diff] [blame] | 156 | |
| 157 | Tells the :meth:`serve_forever` loop to stop and waits until it does. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 158 | |
| 159 | |
Benjamin Peterson | d23f822 | 2009-04-05 19:13:16 +0000 | [diff] [blame] | 160 | .. attribute:: BaseServer.address_family |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 161 | |
| 162 | The family of protocols to which the server's socket belongs. |
Alexandre Vassalotti | 5f8ced2 | 2008-05-16 00:03:33 +0000 | [diff] [blame] | 163 | Common examples are :const:`socket.AF_INET` and :const:`socket.AF_UNIX`. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 164 | |
| 165 | |
Benjamin Peterson | d23f822 | 2009-04-05 19:13:16 +0000 | [diff] [blame] | 166 | .. attribute:: BaseServer.RequestHandlerClass |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 167 | |
| 168 | The user-provided request handler class; an instance of this class is created |
| 169 | for each request. |
| 170 | |
| 171 | |
Benjamin Peterson | d23f822 | 2009-04-05 19:13:16 +0000 | [diff] [blame] | 172 | .. attribute:: BaseServer.server_address |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 173 | |
| 174 | The address on which the server is listening. The format of addresses varies |
| 175 | depending on the protocol family; see the documentation for the socket module |
| 176 | for details. For Internet protocols, this is a tuple containing a string giving |
| 177 | the address, and an integer port number: ``('127.0.0.1', 80)``, for example. |
| 178 | |
| 179 | |
Benjamin Peterson | d23f822 | 2009-04-05 19:13:16 +0000 | [diff] [blame] | 180 | .. attribute:: BaseServer.socket |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 181 | |
| 182 | The socket object on which the server will listen for incoming requests. |
| 183 | |
Benjamin Peterson | d23f822 | 2009-04-05 19:13:16 +0000 | [diff] [blame] | 184 | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 185 | The server classes support the following class variables: |
| 186 | |
Christian Heimes | 5b5e81c | 2007-12-31 16:14:33 +0000 | [diff] [blame] | 187 | .. XXX should class variables be covered before instance variables, or vice versa? |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 188 | |
Benjamin Peterson | d23f822 | 2009-04-05 19:13:16 +0000 | [diff] [blame] | 189 | .. attribute:: BaseServer.allow_reuse_address |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 190 | |
| 191 | Whether the server will allow the reuse of an address. This defaults to |
| 192 | :const:`False`, and can be set in subclasses to change the policy. |
| 193 | |
| 194 | |
Benjamin Peterson | d23f822 | 2009-04-05 19:13:16 +0000 | [diff] [blame] | 195 | .. attribute:: BaseServer.request_queue_size |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 196 | |
| 197 | The size of the request queue. If it takes a long time to process a single |
| 198 | request, any requests that arrive while the server is busy are placed into a |
| 199 | queue, up to :attr:`request_queue_size` requests. Once the queue is full, |
| 200 | further requests from clients will get a "Connection denied" error. The default |
| 201 | value is usually 5, but this can be overridden by subclasses. |
| 202 | |
| 203 | |
Benjamin Peterson | d23f822 | 2009-04-05 19:13:16 +0000 | [diff] [blame] | 204 | .. attribute:: BaseServer.socket_type |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 205 | |
| 206 | The type of socket used by the server; :const:`socket.SOCK_STREAM` and |
Alexandre Vassalotti | 5f8ced2 | 2008-05-16 00:03:33 +0000 | [diff] [blame] | 207 | :const:`socket.SOCK_DGRAM` are two common values. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 208 | |
Benjamin Peterson | d23f822 | 2009-04-05 19:13:16 +0000 | [diff] [blame] | 209 | |
| 210 | .. attribute:: BaseServer.timeout |
Georg Brandl | fceab5a | 2008-01-19 20:08:23 +0000 | [diff] [blame] | 211 | |
Christian Heimes | dd15f6c | 2008-03-16 00:07:10 +0000 | [diff] [blame] | 212 | Timeout duration, measured in seconds, or :const:`None` if no timeout is |
| 213 | desired. If :meth:`handle_request` receives no incoming requests within the |
| 214 | timeout period, the :meth:`handle_timeout` method is called. |
Georg Brandl | fceab5a | 2008-01-19 20:08:23 +0000 | [diff] [blame] | 215 | |
Benjamin Peterson | d23f822 | 2009-04-05 19:13:16 +0000 | [diff] [blame] | 216 | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 217 | There are various server methods that can be overridden by subclasses of base |
| 218 | server classes like :class:`TCPServer`; these methods aren't useful to external |
| 219 | users of the server object. |
| 220 | |
Christian Heimes | 5b5e81c | 2007-12-31 16:14:33 +0000 | [diff] [blame] | 221 | .. XXX should the default implementations of these be documented, or should |
Alexandre Vassalotti | ce26195 | 2008-05-12 02:31:37 +0000 | [diff] [blame] | 222 | it be assumed that the user will look at socketserver.py? |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 223 | |
Benjamin Peterson | d23f822 | 2009-04-05 19:13:16 +0000 | [diff] [blame] | 224 | .. method:: BaseServer.finish_request() |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 225 | |
| 226 | Actually processes the request by instantiating :attr:`RequestHandlerClass` and |
| 227 | calling its :meth:`handle` method. |
| 228 | |
| 229 | |
Benjamin Peterson | d23f822 | 2009-04-05 19:13:16 +0000 | [diff] [blame] | 230 | .. method:: BaseServer.get_request() |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 231 | |
| 232 | Must accept a request from the socket, and return a 2-tuple containing the *new* |
| 233 | socket object to be used to communicate with the client, and the client's |
| 234 | address. |
| 235 | |
| 236 | |
Benjamin Peterson | d23f822 | 2009-04-05 19:13:16 +0000 | [diff] [blame] | 237 | .. method:: BaseServer.handle_error(request, client_address) |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 238 | |
| 239 | This function is called if the :attr:`RequestHandlerClass`'s :meth:`handle` |
| 240 | method raises an exception. The default action is to print the traceback to |
| 241 | standard output and continue handling further requests. |
| 242 | |
Benjamin Peterson | d23f822 | 2009-04-05 19:13:16 +0000 | [diff] [blame] | 243 | |
| 244 | .. method:: BaseServer.handle_timeout() |
Georg Brandl | fceab5a | 2008-01-19 20:08:23 +0000 | [diff] [blame] | 245 | |
Georg Brandl | b533e26 | 2008-05-25 18:19:30 +0000 | [diff] [blame] | 246 | This function is called when the :attr:`timeout` attribute has been set to a |
| 247 | value other than :const:`None` and the timeout period has passed with no |
Georg Brandl | fceab5a | 2008-01-19 20:08:23 +0000 | [diff] [blame] | 248 | requests being received. The default action for forking servers is |
| 249 | to collect the status of any child processes that have exited, while |
| 250 | in threading servers this method does nothing. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 251 | |
Benjamin Peterson | d23f822 | 2009-04-05 19:13:16 +0000 | [diff] [blame] | 252 | |
| 253 | .. method:: BaseServer.process_request(request, client_address) |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 254 | |
| 255 | Calls :meth:`finish_request` to create an instance of the |
| 256 | :attr:`RequestHandlerClass`. If desired, this function can create a new process |
| 257 | or thread to handle the request; the :class:`ForkingMixIn` and |
| 258 | :class:`ThreadingMixIn` classes do this. |
| 259 | |
Benjamin Peterson | d23f822 | 2009-04-05 19:13:16 +0000 | [diff] [blame] | 260 | |
Christian Heimes | 5b5e81c | 2007-12-31 16:14:33 +0000 | [diff] [blame] | 261 | .. Is there any point in documenting the following two functions? |
| 262 | What would the purpose of overriding them be: initializing server |
| 263 | instance variables, adding new network families? |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 264 | |
Benjamin Peterson | d23f822 | 2009-04-05 19:13:16 +0000 | [diff] [blame] | 265 | .. method:: BaseServer.server_activate() |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 266 | |
| 267 | Called by the server's constructor to activate the server. The default behavior |
| 268 | just :meth:`listen`\ s to the server's socket. May be overridden. |
| 269 | |
| 270 | |
Benjamin Peterson | d23f822 | 2009-04-05 19:13:16 +0000 | [diff] [blame] | 271 | .. method:: BaseServer.server_bind() |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 272 | |
| 273 | Called by the server's constructor to bind the socket to the desired address. |
| 274 | May be overridden. |
| 275 | |
| 276 | |
Benjamin Peterson | d23f822 | 2009-04-05 19:13:16 +0000 | [diff] [blame] | 277 | .. method:: BaseServer.verify_request(request, client_address) |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 278 | |
| 279 | Must return a Boolean value; if the value is :const:`True`, the request will be |
| 280 | processed, and if it's :const:`False`, the request will be denied. This function |
| 281 | can be overridden to implement access controls for a server. The default |
| 282 | implementation always returns :const:`True`. |
| 283 | |
| 284 | |
| 285 | RequestHandler Objects |
| 286 | ---------------------- |
| 287 | |
| 288 | The request handler class must define a new :meth:`handle` method, and can |
| 289 | override any of the following methods. A new instance is created for each |
| 290 | request. |
| 291 | |
| 292 | |
Benjamin Peterson | d23f822 | 2009-04-05 19:13:16 +0000 | [diff] [blame] | 293 | .. method:: RequestHandler.finish() |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 294 | |
Georg Brandl | b533e26 | 2008-05-25 18:19:30 +0000 | [diff] [blame] | 295 | Called after the :meth:`handle` method to perform any clean-up actions |
| 296 | required. The default implementation does nothing. If :meth:`setup` or |
| 297 | :meth:`handle` raise an exception, this function will not be called. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 298 | |
| 299 | |
Benjamin Peterson | d23f822 | 2009-04-05 19:13:16 +0000 | [diff] [blame] | 300 | .. method:: RequestHandler.handle() |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 301 | |
Georg Brandl | b533e26 | 2008-05-25 18:19:30 +0000 | [diff] [blame] | 302 | This function must do all the work required to service a request. The |
| 303 | default implementation does nothing. Several instance attributes are |
| 304 | available to it; the request is available as :attr:`self.request`; the client |
| 305 | address as :attr:`self.client_address`; and the server instance as |
| 306 | :attr:`self.server`, in case it needs access to per-server information. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 307 | |
Georg Brandl | b533e26 | 2008-05-25 18:19:30 +0000 | [diff] [blame] | 308 | The type of :attr:`self.request` is different for datagram or stream |
| 309 | services. For stream services, :attr:`self.request` is a socket object; for |
| 310 | datagram services, :attr:`self.request` is a pair of string and socket. |
| 311 | However, this can be hidden by using the request handler subclasses |
| 312 | :class:`StreamRequestHandler` or :class:`DatagramRequestHandler`, which |
| 313 | override the :meth:`setup` and :meth:`finish` methods, and provide |
| 314 | :attr:`self.rfile` and :attr:`self.wfile` attributes. :attr:`self.rfile` and |
| 315 | :attr:`self.wfile` can be read or written, respectively, to get the request |
| 316 | data or return data to the client. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 317 | |
| 318 | |
Benjamin Peterson | d23f822 | 2009-04-05 19:13:16 +0000 | [diff] [blame] | 319 | .. method:: RequestHandler.setup() |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 320 | |
| 321 | Called before the :meth:`handle` method to perform any initialization actions |
| 322 | required. The default implementation does nothing. |
| 323 | |
Georg Brandl | b533e26 | 2008-05-25 18:19:30 +0000 | [diff] [blame] | 324 | |
| 325 | Examples |
| 326 | -------- |
| 327 | |
| 328 | :class:`socketserver.TCPServer` Example |
| 329 | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ |
| 330 | |
| 331 | This is the server side:: |
| 332 | |
| 333 | import socketserver |
| 334 | |
| 335 | class MyTCPHandler(socketserver.BaseRequestHandler): |
| 336 | """ |
| 337 | The RequestHandler class for our server. |
| 338 | |
| 339 | It is instantiated once per connection to the server, and must |
| 340 | override the handle() method to implement communication to the |
| 341 | client. |
| 342 | """ |
| 343 | |
| 344 | def handle(self): |
| 345 | # self.request is the TCP socket connected to the client |
| 346 | self.data = self.request.recv(1024).strip() |
Benjamin Peterson | 06fd5f8 | 2008-11-08 17:24:34 +0000 | [diff] [blame] | 347 | print("%s wrote:" % self.client_address[0]) |
| 348 | print(self.data) |
Georg Brandl | b533e26 | 2008-05-25 18:19:30 +0000 | [diff] [blame] | 349 | # just send back the same data, but upper-cased |
| 350 | self.request.send(self.data.upper()) |
| 351 | |
| 352 | if __name__ == "__main__": |
| 353 | HOST, PORT = "localhost", 9999 |
| 354 | |
| 355 | # Create the server, binding to localhost on port 9999 |
| 356 | server = socketserver.TCPServer((HOST, PORT), MyTCPHandler) |
| 357 | |
| 358 | # Activate the server; this will keep running until you |
| 359 | # interrupt the program with Ctrl-C |
| 360 | server.serve_forever() |
| 361 | |
| 362 | An alternative request handler class that makes use of streams (file-like |
| 363 | objects that simplify communication by providing the standard file interface):: |
| 364 | |
| 365 | class MyTCPHandler(socketserver.StreamRequestHandler): |
| 366 | |
| 367 | def handle(self): |
| 368 | # self.rfile is a file-like object created by the handler; |
| 369 | # we can now use e.g. readline() instead of raw recv() calls |
| 370 | self.data = self.rfile.readline().strip() |
Benjamin Peterson | 06fd5f8 | 2008-11-08 17:24:34 +0000 | [diff] [blame] | 371 | print("%s wrote:" % self.client_address[0]) |
| 372 | print(self.data) |
Georg Brandl | b533e26 | 2008-05-25 18:19:30 +0000 | [diff] [blame] | 373 | # Likewise, self.wfile is a file-like object used to write back |
| 374 | # to the client |
| 375 | self.wfile.write(self.data.upper()) |
| 376 | |
| 377 | The difference is that the ``readline()`` call in the second handler will call |
| 378 | ``recv()`` multiple times until it encounters a newline character, while the |
| 379 | single ``recv()`` call in the first handler will just return what has been sent |
| 380 | from the client in one ``send()`` call. |
| 381 | |
| 382 | |
| 383 | This is the client side:: |
| 384 | |
| 385 | import socket |
| 386 | import sys |
| 387 | |
| 388 | HOST, PORT = "localhost", 9999 |
| 389 | data = " ".join(sys.argv[1:]) |
| 390 | |
| 391 | # Create a socket (SOCK_STREAM means a TCP socket) |
| 392 | sock = socket.socket(socket.AF_INET, socket.SOCK_STREAM) |
| 393 | |
| 394 | # Connect to server and send data |
| 395 | sock.connect((HOST, PORT)) |
Benjamin Peterson | 06fd5f8 | 2008-11-08 17:24:34 +0000 | [diff] [blame] | 396 | sock.send(bytes(data + "\n","utf8")) |
Georg Brandl | b533e26 | 2008-05-25 18:19:30 +0000 | [diff] [blame] | 397 | |
| 398 | # Receive data from the server and shut down |
| 399 | received = sock.recv(1024) |
| 400 | sock.close() |
| 401 | |
Benjamin Peterson | 06fd5f8 | 2008-11-08 17:24:34 +0000 | [diff] [blame] | 402 | print("Sent: %s" % data) |
| 403 | print("Received: %s" % received) |
Georg Brandl | b533e26 | 2008-05-25 18:19:30 +0000 | [diff] [blame] | 404 | |
| 405 | |
| 406 | The output of the example should look something like this: |
| 407 | |
| 408 | Server:: |
| 409 | |
| 410 | $ python TCPServer.py |
| 411 | 127.0.0.1 wrote: |
Benjamin Peterson | 06fd5f8 | 2008-11-08 17:24:34 +0000 | [diff] [blame] | 412 | b'hello world with TCP' |
Georg Brandl | b533e26 | 2008-05-25 18:19:30 +0000 | [diff] [blame] | 413 | 127.0.0.1 wrote: |
Benjamin Peterson | 06fd5f8 | 2008-11-08 17:24:34 +0000 | [diff] [blame] | 414 | b'python is nice' |
Georg Brandl | b533e26 | 2008-05-25 18:19:30 +0000 | [diff] [blame] | 415 | |
| 416 | Client:: |
| 417 | |
| 418 | $ python TCPClient.py hello world with TCP |
| 419 | Sent: hello world with TCP |
Benjamin Peterson | 06fd5f8 | 2008-11-08 17:24:34 +0000 | [diff] [blame] | 420 | Received: b'HELLO WORLD WITH TCP' |
Georg Brandl | b533e26 | 2008-05-25 18:19:30 +0000 | [diff] [blame] | 421 | $ python TCPClient.py python is nice |
| 422 | Sent: python is nice |
Benjamin Peterson | 06fd5f8 | 2008-11-08 17:24:34 +0000 | [diff] [blame] | 423 | Received: b'PYTHON IS NICE' |
Georg Brandl | b533e26 | 2008-05-25 18:19:30 +0000 | [diff] [blame] | 424 | |
| 425 | |
| 426 | :class:`socketserver.UDPServer` Example |
| 427 | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ |
| 428 | |
| 429 | This is the server side:: |
| 430 | |
| 431 | import socketserver |
| 432 | |
| 433 | class MyUDPHandler(socketserver.BaseRequestHandler): |
| 434 | """ |
| 435 | This class works similar to the TCP handler class, except that |
| 436 | self.request consists of a pair of data and client socket, and since |
| 437 | there is no connection the client address must be given explicitly |
| 438 | when sending data back via sendto(). |
| 439 | """ |
| 440 | |
| 441 | def handle(self): |
| 442 | data = self.request[0].strip() |
| 443 | socket = self.request[1] |
Benjamin Peterson | 06fd5f8 | 2008-11-08 17:24:34 +0000 | [diff] [blame] | 444 | print("%s wrote:" % self.client_address[0]) |
| 445 | print(data) |
Georg Brandl | b533e26 | 2008-05-25 18:19:30 +0000 | [diff] [blame] | 446 | socket.sendto(data.upper(), self.client_address) |
| 447 | |
| 448 | if __name__ == "__main__": |
Benjamin Peterson | 2021100 | 2009-11-25 18:34:42 +0000 | [diff] [blame] | 449 | HOST, PORT = "localhost", 9999 |
| 450 | server = socketserver.UDPServer((HOST, PORT), MyUDPHandler) |
| 451 | server.serve_forever() |
Georg Brandl | b533e26 | 2008-05-25 18:19:30 +0000 | [diff] [blame] | 452 | |
| 453 | This is the client side:: |
| 454 | |
| 455 | import socket |
| 456 | import sys |
| 457 | |
Benjamin Peterson | 06fd5f8 | 2008-11-08 17:24:34 +0000 | [diff] [blame] | 458 | HOST, PORT = "localhost", 9999 |
Georg Brandl | b533e26 | 2008-05-25 18:19:30 +0000 | [diff] [blame] | 459 | data = " ".join(sys.argv[1:]) |
| 460 | |
| 461 | # SOCK_DGRAM is the socket type to use for UDP sockets |
| 462 | sock = socket.socket(socket.AF_INET, socket.SOCK_DGRAM) |
| 463 | |
| 464 | # As you can see, there is no connect() call; UDP has no connections. |
| 465 | # Instead, data is directly sent to the recipient via sendto(). |
Benjamin Peterson | 06fd5f8 | 2008-11-08 17:24:34 +0000 | [diff] [blame] | 466 | sock.sendto(bytes(data + "\n","utf8"), (HOST, PORT)) |
Georg Brandl | b533e26 | 2008-05-25 18:19:30 +0000 | [diff] [blame] | 467 | received = sock.recv(1024) |
| 468 | |
Benjamin Peterson | 06fd5f8 | 2008-11-08 17:24:34 +0000 | [diff] [blame] | 469 | print("Sent: %s" % data) |
| 470 | print("Received: %s" % received) |
Georg Brandl | b533e26 | 2008-05-25 18:19:30 +0000 | [diff] [blame] | 471 | |
| 472 | The output of the example should look exactly like for the TCP server example. |
| 473 | |
| 474 | |
| 475 | Asynchronous Mixins |
| 476 | ~~~~~~~~~~~~~~~~~~~ |
| 477 | |
| 478 | To build asynchronous handlers, use the :class:`ThreadingMixIn` and |
| 479 | :class:`ForkingMixIn` classes. |
| 480 | |
| 481 | An example for the :class:`ThreadingMixIn` class:: |
| 482 | |
| 483 | import socket |
| 484 | import threading |
| 485 | import socketserver |
| 486 | |
| 487 | class ThreadedTCPRequestHandler(socketserver.BaseRequestHandler): |
| 488 | |
| 489 | def handle(self): |
| 490 | data = self.request.recv(1024) |
Georg Brandl | f992640 | 2008-06-13 06:32:25 +0000 | [diff] [blame] | 491 | cur_thread = threading.current_thread() |
Benjamin Peterson | 06fd5f8 | 2008-11-08 17:24:34 +0000 | [diff] [blame] | 492 | response = bytes("%s: %s" % (cur_thread.getName(), data),'ascii') |
Georg Brandl | b533e26 | 2008-05-25 18:19:30 +0000 | [diff] [blame] | 493 | self.request.send(response) |
| 494 | |
| 495 | class ThreadedTCPServer(socketserver.ThreadingMixIn, socketserver.TCPServer): |
| 496 | pass |
| 497 | |
| 498 | def client(ip, port, message): |
| 499 | sock = socket.socket(socket.AF_INET, socket.SOCK_STREAM) |
| 500 | sock.connect((ip, port)) |
| 501 | sock.send(message) |
| 502 | response = sock.recv(1024) |
Benjamin Peterson | 06fd5f8 | 2008-11-08 17:24:34 +0000 | [diff] [blame] | 503 | print("Received: %s" % response) |
Georg Brandl | b533e26 | 2008-05-25 18:19:30 +0000 | [diff] [blame] | 504 | sock.close() |
| 505 | |
| 506 | if __name__ == "__main__": |
| 507 | # Port 0 means to select an arbitrary unused port |
| 508 | HOST, PORT = "localhost", 0 |
| 509 | |
| 510 | server = ThreadedTCPServer((HOST, PORT), ThreadedTCPRequestHandler) |
| 511 | ip, port = server.server_address |
| 512 | |
| 513 | # Start a thread with the server -- that thread will then start one |
| 514 | # more thread for each request |
| 515 | server_thread = threading.Thread(target=server.serve_forever) |
| 516 | # Exit the server thread when the main thread terminates |
Benjamin Peterson | 06fd5f8 | 2008-11-08 17:24:34 +0000 | [diff] [blame] | 517 | server_thread.setDaemon(True) |
Georg Brandl | b533e26 | 2008-05-25 18:19:30 +0000 | [diff] [blame] | 518 | server_thread.start() |
Benjamin Peterson | d75fcb4 | 2009-02-19 04:22:03 +0000 | [diff] [blame] | 519 | print("Server loop running in thread:", server_thread.name) |
Georg Brandl | b533e26 | 2008-05-25 18:19:30 +0000 | [diff] [blame] | 520 | |
Benjamin Peterson | 06fd5f8 | 2008-11-08 17:24:34 +0000 | [diff] [blame] | 521 | client(ip, port, b"Hello World 1") |
| 522 | client(ip, port, b"Hello World 2") |
| 523 | client(ip, port, b"Hello World 3") |
Georg Brandl | b533e26 | 2008-05-25 18:19:30 +0000 | [diff] [blame] | 524 | |
| 525 | server.shutdown() |
| 526 | |
Benjamin Peterson | 06fd5f8 | 2008-11-08 17:24:34 +0000 | [diff] [blame] | 527 | |
Georg Brandl | b533e26 | 2008-05-25 18:19:30 +0000 | [diff] [blame] | 528 | The output of the example should look something like this:: |
| 529 | |
| 530 | $ python ThreadedTCPServer.py |
| 531 | Server loop running in thread: Thread-1 |
Benjamin Peterson | 06fd5f8 | 2008-11-08 17:24:34 +0000 | [diff] [blame] | 532 | Received: b"Thread-2: b'Hello World 1'" |
| 533 | Received: b"Thread-3: b'Hello World 2'" |
| 534 | Received: b"Thread-4: b'Hello World 3'" |
Georg Brandl | b533e26 | 2008-05-25 18:19:30 +0000 | [diff] [blame] | 535 | |
| 536 | |
| 537 | The :class:`ForkingMixIn` class is used in the same way, except that the server |
| 538 | will spawn a new process for each request. |