blob: 5287f17a28d9f99cb3e6cc9fa8207c4c3a01b8f8 [file] [log] [blame]
Alexandre Vassalottice261952008-05-12 02:31:37 +00001:mod:`socketserver` --- A framework for network servers
Georg Brandl116aa622007-08-15 14:28:22 +00002=======================================================
3
Alexandre Vassalottice261952008-05-12 02:31:37 +00004.. module:: socketserver
Georg Brandl116aa622007-08-15 14:28:22 +00005 :synopsis: A framework for network servers.
6
Raymond Hettinger469271d2011-01-27 20:38:46 +00007**Source code:** :source:`Lib/socketserver.py`
8
9--------------
10
Alexandre Vassalottice261952008-05-12 02:31:37 +000011The :mod:`socketserver` module simplifies the task of writing network servers.
Georg Brandl116aa622007-08-15 14:28:22 +000012
13There are four basic server classes: :class:`TCPServer` uses the Internet TCP
14protocol, which provides for continuous streams of data between the client and
15server. :class:`UDPServer` uses datagrams, which are discrete packets of
16information that may arrive out of order or be lost while in transit. The more
17infrequently used :class:`UnixStreamServer` and :class:`UnixDatagramServer`
18classes are similar, but use Unix domain sockets; they're not available on
19non-Unix platforms. For more details on network programming, consult a book
20such as
21W. Richard Steven's UNIX Network Programming or Ralph Davis's Win32 Network
22Programming.
23
24These four classes process requests :dfn:`synchronously`; each request must be
25completed before the next request can be started. This isn't suitable if each
26request takes a long time to complete, because it requires a lot of computation,
27or because it returns a lot of data which the client is slow to process. The
28solution is to create a separate process or thread to handle each request; the
29:class:`ForkingMixIn` and :class:`ThreadingMixIn` mix-in classes can be used to
30support asynchronous behaviour.
31
32Creating a server requires several steps. First, you must create a request
33handler class by subclassing the :class:`BaseRequestHandler` class and
34overriding its :meth:`handle` method; this method will process incoming
35requests. Second, you must instantiate one of the server classes, passing it
36the server's address and the request handler class. Finally, call the
37:meth:`handle_request` or :meth:`serve_forever` method of the server object to
38process one or many requests.
39
40When inheriting from :class:`ThreadingMixIn` for threaded connection behavior,
41you should explicitly declare how you want your threads to behave on an abrupt
Florent Xicluna599d76b2011-11-11 19:56:26 +010042shutdown. The :class:`ThreadingMixIn` class defines an attribute
Georg Brandl116aa622007-08-15 14:28:22 +000043*daemon_threads*, which indicates whether or not the server should wait for
Florent Xicluna599d76b2011-11-11 19:56:26 +010044thread termination. You should set the flag explicitly if you would like
45threads to behave autonomously; the default is :const:`False`, meaning that
46Python will not exit until all threads created by :class:`ThreadingMixIn` have
47exited.
Georg Brandl116aa622007-08-15 14:28:22 +000048
49Server classes have the same external methods and attributes, no matter what
Georg Brandlfceab5a2008-01-19 20:08:23 +000050network protocol they use.
Georg Brandl116aa622007-08-15 14:28:22 +000051
52
53Server Creation Notes
54---------------------
55
56There are five classes in an inheritance diagram, four of which represent
57synchronous servers of four types::
58
59 +------------+
60 | BaseServer |
61 +------------+
62 |
63 v
64 +-----------+ +------------------+
65 | TCPServer |------->| UnixStreamServer |
66 +-----------+ +------------------+
67 |
68 v
69 +-----------+ +--------------------+
70 | UDPServer |------->| UnixDatagramServer |
71 +-----------+ +--------------------+
72
73Note that :class:`UnixDatagramServer` derives from :class:`UDPServer`, not from
74:class:`UnixStreamServer` --- the only difference between an IP and a Unix
75stream server is the address family, which is simply repeated in both Unix
76server classes.
77
78Forking and threading versions of each type of server can be created using the
79:class:`ForkingMixIn` and :class:`ThreadingMixIn` mix-in classes. For instance,
80a threading UDP server class is created as follows::
81
82 class ThreadingUDPServer(ThreadingMixIn, UDPServer): pass
83
84The mix-in class must come first, since it overrides a method defined in
Senthil Kumarana6bac952011-07-04 11:28:30 -070085:class:`UDPServer`. Setting the various attributes also change the
Georg Brandl116aa622007-08-15 14:28:22 +000086behavior of the underlying server mechanism.
87
88To implement a service, you must derive a class from :class:`BaseRequestHandler`
89and redefine its :meth:`handle` method. You can then run various versions of
90the service by combining one of the server classes with your request handler
91class. The request handler class must be different for datagram or stream
92services. This can be hidden by using the handler subclasses
93:class:`StreamRequestHandler` or :class:`DatagramRequestHandler`.
94
95Of course, you still have to use your head! For instance, it makes no sense to
96use a forking server if the service contains state in memory that can be
97modified by different requests, since the modifications in the child process
98would never reach the initial state kept in the parent process and passed to
99each child. In this case, you can use a threading server, but you will probably
100have to use locks to protect the integrity of the shared data.
101
102On the other hand, if you are building an HTTP server where all data is stored
103externally (for instance, in the file system), a synchronous class will
104essentially render the service "deaf" while one request is being handled --
105which may be for a very long time if a client is slow to receive all the data it
106has requested. Here a threading or forking server is appropriate.
107
108In some cases, it may be appropriate to process part of a request synchronously,
109but to finish processing in a forked child depending on the request data. This
110can be implemented by using a synchronous server and doing an explicit fork in
111the request handler class :meth:`handle` method.
112
113Another approach to handling multiple simultaneous requests in an environment
114that supports neither threads nor :func:`fork` (or where these are too expensive
115or inappropriate for the service) is to maintain an explicit table of partially
116finished requests and to use :func:`select` to decide which request to work on
117next (or whether to handle a new incoming request). This is particularly
118important for stream services where each client can potentially be connected for
Florent Xicluna599d76b2011-11-11 19:56:26 +0100119a long time (if threads or subprocesses cannot be used). See :mod:`asyncore`
120for another way to manage this.
Georg Brandl116aa622007-08-15 14:28:22 +0000121
Christian Heimes5b5e81c2007-12-31 16:14:33 +0000122.. XXX should data and methods be intermingled, or separate?
123 how should the distinction between class and instance variables be drawn?
Georg Brandl116aa622007-08-15 14:28:22 +0000124
125
126Server Objects
127--------------
128
Benjamin Petersond23f8222009-04-05 19:13:16 +0000129.. class:: BaseServer
Georg Brandl116aa622007-08-15 14:28:22 +0000130
Benjamin Petersond23f8222009-04-05 19:13:16 +0000131 This is the superclass of all Server objects in the module. It defines the
132 interface, given below, but does not implement most of the methods, which is
133 done in subclasses.
134
135
136.. method:: BaseServer.fileno()
Georg Brandl116aa622007-08-15 14:28:22 +0000137
138 Return an integer file descriptor for the socket on which the server is
139 listening. This function is most commonly passed to :func:`select.select`, to
140 allow monitoring multiple servers in the same process.
141
142
Benjamin Petersond23f8222009-04-05 19:13:16 +0000143.. method:: BaseServer.handle_request()
Georg Brandl116aa622007-08-15 14:28:22 +0000144
Christian Heimesdd15f6c2008-03-16 00:07:10 +0000145 Process a single request. This function calls the following methods in
146 order: :meth:`get_request`, :meth:`verify_request`, and
147 :meth:`process_request`. If the user-provided :meth:`handle` method of the
148 handler class raises an exception, the server's :meth:`handle_error` method
149 will be called. If no request is received within :attr:`self.timeout`
150 seconds, :meth:`handle_timeout` will be called and :meth:`handle_request`
151 will return.
Georg Brandl116aa622007-08-15 14:28:22 +0000152
153
Benjamin Petersond23f8222009-04-05 19:13:16 +0000154.. method:: BaseServer.serve_forever(poll_interval=0.5)
Georg Brandl116aa622007-08-15 14:28:22 +0000155
Sandro Tosi753b79c2012-01-03 22:35:54 +0100156 Handle requests until an explicit :meth:`shutdown` request.
157 Poll for shutdown every *poll_interval* seconds. Ignores :attr:`self.timeout`.
158 If you need to do periodic tasks, do them in another thread.
Christian Heimesdd15f6c2008-03-16 00:07:10 +0000159
160
Benjamin Petersond23f8222009-04-05 19:13:16 +0000161.. method:: BaseServer.shutdown()
Christian Heimesdd15f6c2008-03-16 00:07:10 +0000162
Sandro Tosi753b79c2012-01-03 22:35:54 +0100163 Tell the :meth:`serve_forever` loop to stop and wait until it does.
Georg Brandl116aa622007-08-15 14:28:22 +0000164
165
Benjamin Petersond23f8222009-04-05 19:13:16 +0000166.. attribute:: BaseServer.address_family
Georg Brandl116aa622007-08-15 14:28:22 +0000167
168 The family of protocols to which the server's socket belongs.
Alexandre Vassalotti5f8ced22008-05-16 00:03:33 +0000169 Common examples are :const:`socket.AF_INET` and :const:`socket.AF_UNIX`.
Georg Brandl116aa622007-08-15 14:28:22 +0000170
171
Benjamin Petersond23f8222009-04-05 19:13:16 +0000172.. attribute:: BaseServer.RequestHandlerClass
Georg Brandl116aa622007-08-15 14:28:22 +0000173
174 The user-provided request handler class; an instance of this class is created
175 for each request.
176
177
Benjamin Petersond23f8222009-04-05 19:13:16 +0000178.. attribute:: BaseServer.server_address
Georg Brandl116aa622007-08-15 14:28:22 +0000179
180 The address on which the server is listening. The format of addresses varies
181 depending on the protocol family; see the documentation for the socket module
182 for details. For Internet protocols, this is a tuple containing a string giving
183 the address, and an integer port number: ``('127.0.0.1', 80)``, for example.
184
185
Benjamin Petersond23f8222009-04-05 19:13:16 +0000186.. attribute:: BaseServer.socket
Georg Brandl116aa622007-08-15 14:28:22 +0000187
188 The socket object on which the server will listen for incoming requests.
189
Benjamin Petersond23f8222009-04-05 19:13:16 +0000190
Georg Brandl116aa622007-08-15 14:28:22 +0000191The server classes support the following class variables:
192
Christian Heimes5b5e81c2007-12-31 16:14:33 +0000193.. XXX should class variables be covered before instance variables, or vice versa?
Georg Brandl116aa622007-08-15 14:28:22 +0000194
Benjamin Petersond23f8222009-04-05 19:13:16 +0000195.. attribute:: BaseServer.allow_reuse_address
Georg Brandl116aa622007-08-15 14:28:22 +0000196
Florent Xicluna599d76b2011-11-11 19:56:26 +0100197 Whether the server will allow the reuse of an address. This defaults to
Georg Brandl116aa622007-08-15 14:28:22 +0000198 :const:`False`, and can be set in subclasses to change the policy.
199
200
Benjamin Petersond23f8222009-04-05 19:13:16 +0000201.. attribute:: BaseServer.request_queue_size
Georg Brandl116aa622007-08-15 14:28:22 +0000202
203 The size of the request queue. If it takes a long time to process a single
204 request, any requests that arrive while the server is busy are placed into a
205 queue, up to :attr:`request_queue_size` requests. Once the queue is full,
206 further requests from clients will get a "Connection denied" error. The default
207 value is usually 5, but this can be overridden by subclasses.
208
209
Benjamin Petersond23f8222009-04-05 19:13:16 +0000210.. attribute:: BaseServer.socket_type
Georg Brandl116aa622007-08-15 14:28:22 +0000211
212 The type of socket used by the server; :const:`socket.SOCK_STREAM` and
Alexandre Vassalotti5f8ced22008-05-16 00:03:33 +0000213 :const:`socket.SOCK_DGRAM` are two common values.
Georg Brandl116aa622007-08-15 14:28:22 +0000214
Benjamin Petersond23f8222009-04-05 19:13:16 +0000215
216.. attribute:: BaseServer.timeout
Georg Brandlfceab5a2008-01-19 20:08:23 +0000217
Christian Heimesdd15f6c2008-03-16 00:07:10 +0000218 Timeout duration, measured in seconds, or :const:`None` if no timeout is
219 desired. If :meth:`handle_request` receives no incoming requests within the
220 timeout period, the :meth:`handle_timeout` method is called.
Georg Brandlfceab5a2008-01-19 20:08:23 +0000221
Benjamin Petersond23f8222009-04-05 19:13:16 +0000222
Georg Brandl116aa622007-08-15 14:28:22 +0000223There are various server methods that can be overridden by subclasses of base
224server classes like :class:`TCPServer`; these methods aren't useful to external
225users of the server object.
226
Christian Heimes5b5e81c2007-12-31 16:14:33 +0000227.. XXX should the default implementations of these be documented, or should
Alexandre Vassalottice261952008-05-12 02:31:37 +0000228 it be assumed that the user will look at socketserver.py?
Georg Brandl116aa622007-08-15 14:28:22 +0000229
Benjamin Petersond23f8222009-04-05 19:13:16 +0000230.. method:: BaseServer.finish_request()
Georg Brandl116aa622007-08-15 14:28:22 +0000231
232 Actually processes the request by instantiating :attr:`RequestHandlerClass` and
233 calling its :meth:`handle` method.
234
235
Benjamin Petersond23f8222009-04-05 19:13:16 +0000236.. method:: BaseServer.get_request()
Georg Brandl116aa622007-08-15 14:28:22 +0000237
238 Must accept a request from the socket, and return a 2-tuple containing the *new*
239 socket object to be used to communicate with the client, and the client's
240 address.
241
242
Benjamin Petersond23f8222009-04-05 19:13:16 +0000243.. method:: BaseServer.handle_error(request, client_address)
Georg Brandl116aa622007-08-15 14:28:22 +0000244
245 This function is called if the :attr:`RequestHandlerClass`'s :meth:`handle`
246 method raises an exception. The default action is to print the traceback to
247 standard output and continue handling further requests.
248
Benjamin Petersond23f8222009-04-05 19:13:16 +0000249
250.. method:: BaseServer.handle_timeout()
Georg Brandlfceab5a2008-01-19 20:08:23 +0000251
Georg Brandlb533e262008-05-25 18:19:30 +0000252 This function is called when the :attr:`timeout` attribute has been set to a
253 value other than :const:`None` and the timeout period has passed with no
Georg Brandlfceab5a2008-01-19 20:08:23 +0000254 requests being received. The default action for forking servers is
255 to collect the status of any child processes that have exited, while
256 in threading servers this method does nothing.
Georg Brandl116aa622007-08-15 14:28:22 +0000257
Benjamin Petersond23f8222009-04-05 19:13:16 +0000258
259.. method:: BaseServer.process_request(request, client_address)
Georg Brandl116aa622007-08-15 14:28:22 +0000260
261 Calls :meth:`finish_request` to create an instance of the
262 :attr:`RequestHandlerClass`. If desired, this function can create a new process
263 or thread to handle the request; the :class:`ForkingMixIn` and
264 :class:`ThreadingMixIn` classes do this.
265
Benjamin Petersond23f8222009-04-05 19:13:16 +0000266
Christian Heimes5b5e81c2007-12-31 16:14:33 +0000267.. Is there any point in documenting the following two functions?
268 What would the purpose of overriding them be: initializing server
269 instance variables, adding new network families?
Georg Brandl116aa622007-08-15 14:28:22 +0000270
Benjamin Petersond23f8222009-04-05 19:13:16 +0000271.. method:: BaseServer.server_activate()
Georg Brandl116aa622007-08-15 14:28:22 +0000272
273 Called by the server's constructor to activate the server. The default behavior
Florent Xicluna599d76b2011-11-11 19:56:26 +0100274 just :meth:`listen`\ s to the server's socket. May be overridden.
Georg Brandl116aa622007-08-15 14:28:22 +0000275
276
Benjamin Petersond23f8222009-04-05 19:13:16 +0000277.. method:: BaseServer.server_bind()
Georg Brandl116aa622007-08-15 14:28:22 +0000278
279 Called by the server's constructor to bind the socket to the desired address.
280 May be overridden.
281
282
Benjamin Petersond23f8222009-04-05 19:13:16 +0000283.. method:: BaseServer.verify_request(request, client_address)
Georg Brandl116aa622007-08-15 14:28:22 +0000284
Florent Xicluna599d76b2011-11-11 19:56:26 +0100285 Must return a Boolean value; if the value is :const:`True`, the request will
286 be processed, and if it's :const:`False`, the request will be denied. This
287 function can be overridden to implement access controls for a server. The
288 default implementation always returns :const:`True`.
Georg Brandl116aa622007-08-15 14:28:22 +0000289
290
291RequestHandler Objects
292----------------------
293
294The request handler class must define a new :meth:`handle` method, and can
295override any of the following methods. A new instance is created for each
296request.
297
298
Benjamin Petersond23f8222009-04-05 19:13:16 +0000299.. method:: RequestHandler.finish()
Georg Brandl116aa622007-08-15 14:28:22 +0000300
Georg Brandlb533e262008-05-25 18:19:30 +0000301 Called after the :meth:`handle` method to perform any clean-up actions
302 required. The default implementation does nothing. If :meth:`setup` or
303 :meth:`handle` raise an exception, this function will not be called.
Georg Brandl116aa622007-08-15 14:28:22 +0000304
305
Benjamin Petersond23f8222009-04-05 19:13:16 +0000306.. method:: RequestHandler.handle()
Georg Brandl116aa622007-08-15 14:28:22 +0000307
Georg Brandlb533e262008-05-25 18:19:30 +0000308 This function must do all the work required to service a request. The
309 default implementation does nothing. Several instance attributes are
310 available to it; the request is available as :attr:`self.request`; the client
311 address as :attr:`self.client_address`; and the server instance as
312 :attr:`self.server`, in case it needs access to per-server information.
Georg Brandl116aa622007-08-15 14:28:22 +0000313
Georg Brandlb533e262008-05-25 18:19:30 +0000314 The type of :attr:`self.request` is different for datagram or stream
315 services. For stream services, :attr:`self.request` is a socket object; for
316 datagram services, :attr:`self.request` is a pair of string and socket.
317 However, this can be hidden by using the request handler subclasses
318 :class:`StreamRequestHandler` or :class:`DatagramRequestHandler`, which
319 override the :meth:`setup` and :meth:`finish` methods, and provide
320 :attr:`self.rfile` and :attr:`self.wfile` attributes. :attr:`self.rfile` and
321 :attr:`self.wfile` can be read or written, respectively, to get the request
322 data or return data to the client.
Georg Brandl116aa622007-08-15 14:28:22 +0000323
324
Benjamin Petersond23f8222009-04-05 19:13:16 +0000325.. method:: RequestHandler.setup()
Georg Brandl116aa622007-08-15 14:28:22 +0000326
327 Called before the :meth:`handle` method to perform any initialization actions
328 required. The default implementation does nothing.
329
Georg Brandlb533e262008-05-25 18:19:30 +0000330
331Examples
332--------
333
334:class:`socketserver.TCPServer` Example
335~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
336
337This is the server side::
338
339 import socketserver
340
341 class MyTCPHandler(socketserver.BaseRequestHandler):
342 """
343 The RequestHandler class for our server.
344
345 It is instantiated once per connection to the server, and must
346 override the handle() method to implement communication to the
347 client.
348 """
349
350 def handle(self):
351 # self.request is the TCP socket connected to the client
352 self.data = self.request.recv(1024).strip()
Florent Xicluna023611f2011-10-23 22:40:37 +0200353 print("{} wrote:".format(self.client_address[0]))
Benjamin Peterson06fd5f82008-11-08 17:24:34 +0000354 print(self.data)
Georg Brandlb533e262008-05-25 18:19:30 +0000355 # just send back the same data, but upper-cased
Senthil Kumaran6e13f132012-02-09 17:54:17 +0800356 self.request.sendall(self.data.upper())
Georg Brandlb533e262008-05-25 18:19:30 +0000357
358 if __name__ == "__main__":
359 HOST, PORT = "localhost", 9999
360
361 # Create the server, binding to localhost on port 9999
362 server = socketserver.TCPServer((HOST, PORT), MyTCPHandler)
363
364 # Activate the server; this will keep running until you
365 # interrupt the program with Ctrl-C
366 server.serve_forever()
367
368An alternative request handler class that makes use of streams (file-like
369objects that simplify communication by providing the standard file interface)::
370
371 class MyTCPHandler(socketserver.StreamRequestHandler):
372
373 def handle(self):
374 # self.rfile is a file-like object created by the handler;
375 # we can now use e.g. readline() instead of raw recv() calls
376 self.data = self.rfile.readline().strip()
Florent Xicluna023611f2011-10-23 22:40:37 +0200377 print("{} wrote:".format(self.client_address[0]))
Benjamin Peterson06fd5f82008-11-08 17:24:34 +0000378 print(self.data)
Georg Brandlb533e262008-05-25 18:19:30 +0000379 # Likewise, self.wfile is a file-like object used to write back
380 # to the client
381 self.wfile.write(self.data.upper())
382
383The difference is that the ``readline()`` call in the second handler will call
384``recv()`` multiple times until it encounters a newline character, while the
385single ``recv()`` call in the first handler will just return what has been sent
Senthil Kumaran6e13f132012-02-09 17:54:17 +0800386from the client in one ``sendall()`` call.
Georg Brandlb533e262008-05-25 18:19:30 +0000387
388
389This is the client side::
390
391 import socket
392 import sys
393
394 HOST, PORT = "localhost", 9999
395 data = " ".join(sys.argv[1:])
396
397 # Create a socket (SOCK_STREAM means a TCP socket)
398 sock = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
399
Florent Xicluna023611f2011-10-23 22:40:37 +0200400 try:
401 # Connect to server and send data
402 sock.connect((HOST, PORT))
Senthil Kumaran6e13f132012-02-09 17:54:17 +0800403 sock.sendall(bytes(data + "\n", "utf-8"))
Georg Brandlb533e262008-05-25 18:19:30 +0000404
Florent Xicluna023611f2011-10-23 22:40:37 +0200405 # Receive data from the server and shut down
406 received = str(sock.recv(1024), "utf-8")
407 finally:
408 sock.close()
Georg Brandlb533e262008-05-25 18:19:30 +0000409
Florent Xicluna023611f2011-10-23 22:40:37 +0200410 print("Sent: {}".format(data))
411 print("Received: {}".format(received))
Georg Brandlb533e262008-05-25 18:19:30 +0000412
413
414The output of the example should look something like this:
415
416Server::
417
418 $ python TCPServer.py
419 127.0.0.1 wrote:
Benjamin Peterson06fd5f82008-11-08 17:24:34 +0000420 b'hello world with TCP'
Georg Brandlb533e262008-05-25 18:19:30 +0000421 127.0.0.1 wrote:
Benjamin Peterson06fd5f82008-11-08 17:24:34 +0000422 b'python is nice'
Georg Brandlb533e262008-05-25 18:19:30 +0000423
424Client::
425
426 $ python TCPClient.py hello world with TCP
427 Sent: hello world with TCP
Florent Xicluna023611f2011-10-23 22:40:37 +0200428 Received: HELLO WORLD WITH TCP
Georg Brandlb533e262008-05-25 18:19:30 +0000429 $ python TCPClient.py python is nice
430 Sent: python is nice
Florent Xicluna023611f2011-10-23 22:40:37 +0200431 Received: PYTHON IS NICE
Georg Brandlb533e262008-05-25 18:19:30 +0000432
433
434:class:`socketserver.UDPServer` Example
435~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
436
437This is the server side::
438
439 import socketserver
440
441 class MyUDPHandler(socketserver.BaseRequestHandler):
442 """
443 This class works similar to the TCP handler class, except that
444 self.request consists of a pair of data and client socket, and since
445 there is no connection the client address must be given explicitly
446 when sending data back via sendto().
447 """
448
449 def handle(self):
450 data = self.request[0].strip()
451 socket = self.request[1]
Florent Xicluna023611f2011-10-23 22:40:37 +0200452 print("{} wrote:".format(self.client_address[0]))
Benjamin Peterson06fd5f82008-11-08 17:24:34 +0000453 print(data)
Georg Brandlb533e262008-05-25 18:19:30 +0000454 socket.sendto(data.upper(), self.client_address)
455
456 if __name__ == "__main__":
Benjamin Peterson20211002009-11-25 18:34:42 +0000457 HOST, PORT = "localhost", 9999
458 server = socketserver.UDPServer((HOST, PORT), MyUDPHandler)
459 server.serve_forever()
Georg Brandlb533e262008-05-25 18:19:30 +0000460
461This is the client side::
462
463 import socket
464 import sys
465
Benjamin Peterson06fd5f82008-11-08 17:24:34 +0000466 HOST, PORT = "localhost", 9999
Georg Brandlb533e262008-05-25 18:19:30 +0000467 data = " ".join(sys.argv[1:])
468
469 # SOCK_DGRAM is the socket type to use for UDP sockets
470 sock = socket.socket(socket.AF_INET, socket.SOCK_DGRAM)
471
472 # As you can see, there is no connect() call; UDP has no connections.
473 # Instead, data is directly sent to the recipient via sendto().
Florent Xicluna023611f2011-10-23 22:40:37 +0200474 sock.sendto(bytes(data + "\n", "utf-8"), (HOST, PORT))
475 received = str(sock.recv(1024), "utf-8")
Georg Brandlb533e262008-05-25 18:19:30 +0000476
Florent Xicluna023611f2011-10-23 22:40:37 +0200477 print("Sent: {}".format(data))
478 print("Received: {}".format(received))
Georg Brandlb533e262008-05-25 18:19:30 +0000479
480The output of the example should look exactly like for the TCP server example.
481
482
483Asynchronous Mixins
484~~~~~~~~~~~~~~~~~~~
485
486To build asynchronous handlers, use the :class:`ThreadingMixIn` and
487:class:`ForkingMixIn` classes.
488
489An example for the :class:`ThreadingMixIn` class::
490
491 import socket
492 import threading
493 import socketserver
494
495 class ThreadedTCPRequestHandler(socketserver.BaseRequestHandler):
496
497 def handle(self):
Florent Xicluna023611f2011-10-23 22:40:37 +0200498 data = str(self.request.recv(1024), 'ascii')
Georg Brandlf9926402008-06-13 06:32:25 +0000499 cur_thread = threading.current_thread()
Florent Xicluna023611f2011-10-23 22:40:37 +0200500 response = bytes("{}: {}".format(cur_thread.name, data), 'ascii')
Senthil Kumaran6e13f132012-02-09 17:54:17 +0800501 self.request.sendall(response)
Georg Brandlb533e262008-05-25 18:19:30 +0000502
503 class ThreadedTCPServer(socketserver.ThreadingMixIn, socketserver.TCPServer):
504 pass
505
506 def client(ip, port, message):
507 sock = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
508 sock.connect((ip, port))
Florent Xicluna023611f2011-10-23 22:40:37 +0200509 try:
Senthil Kumaran6e13f132012-02-09 17:54:17 +0800510 sock.sendall(bytes(message, 'ascii'))
Florent Xicluna023611f2011-10-23 22:40:37 +0200511 response = str(sock.recv(1024), 'ascii')
512 print("Received: {}".format(response))
513 finally:
514 sock.close()
Georg Brandlb533e262008-05-25 18:19:30 +0000515
516 if __name__ == "__main__":
517 # Port 0 means to select an arbitrary unused port
518 HOST, PORT = "localhost", 0
519
520 server = ThreadedTCPServer((HOST, PORT), ThreadedTCPRequestHandler)
521 ip, port = server.server_address
522
523 # Start a thread with the server -- that thread will then start one
524 # more thread for each request
525 server_thread = threading.Thread(target=server.serve_forever)
526 # Exit the server thread when the main thread terminates
Florent Xicluna023611f2011-10-23 22:40:37 +0200527 server_thread.daemon = True
Georg Brandlb533e262008-05-25 18:19:30 +0000528 server_thread.start()
Benjamin Petersond75fcb42009-02-19 04:22:03 +0000529 print("Server loop running in thread:", server_thread.name)
Georg Brandlb533e262008-05-25 18:19:30 +0000530
Florent Xicluna023611f2011-10-23 22:40:37 +0200531 client(ip, port, "Hello World 1")
532 client(ip, port, "Hello World 2")
533 client(ip, port, "Hello World 3")
Georg Brandlb533e262008-05-25 18:19:30 +0000534
535 server.shutdown()
536
Benjamin Peterson06fd5f82008-11-08 17:24:34 +0000537
Georg Brandlb533e262008-05-25 18:19:30 +0000538The output of the example should look something like this::
539
540 $ python ThreadedTCPServer.py
541 Server loop running in thread: Thread-1
Florent Xicluna023611f2011-10-23 22:40:37 +0200542 Received: Thread-2: Hello World 1
543 Received: Thread-3: Hello World 2
544 Received: Thread-4: Hello World 3
Georg Brandlb533e262008-05-25 18:19:30 +0000545
546
547The :class:`ForkingMixIn` class is used in the same way, except that the server
548will spawn a new process for each request.