blob: fce216e88ad8d90fe5b1b43f9f43c06a08f92e0a [file] [log] [blame]
Georg Brandle152a772008-05-24 18:31:28 +00001
2:mod:`SocketServer` --- A framework for network servers
Georg Brandl8ec7f652007-08-15 14:28:01 +00003=======================================================
4
Georg Brandl7a148c22008-05-12 10:03:16 +00005.. module:: SocketServer
Georg Brandl8ec7f652007-08-15 14:28:01 +00006 :synopsis: A framework for network servers.
Georg Brandl7a148c22008-05-12 10:03:16 +00007
8.. note::
Georg Brandle152a772008-05-24 18:31:28 +00009
Georg Brandle92818f2009-01-03 20:47:01 +000010 The :mod:`SocketServer` module has been renamed to :mod:`socketserver` in
11 Python 3.0. The :term:`2to3` tool will automatically adapt imports when
12 converting your sources to 3.0.
Alexandre Vassalottifea23a42008-05-12 02:18:15 +000013
Georg Brandl8ec7f652007-08-15 14:28:01 +000014
Georg Brandle152a772008-05-24 18:31:28 +000015The :mod:`SocketServer` module simplifies the task of writing network servers.
Georg Brandl8ec7f652007-08-15 14:28:01 +000016
17There are four basic server classes: :class:`TCPServer` uses the Internet TCP
18protocol, which provides for continuous streams of data between the client and
19server. :class:`UDPServer` uses datagrams, which are discrete packets of
20information that may arrive out of order or be lost while in transit. The more
21infrequently used :class:`UnixStreamServer` and :class:`UnixDatagramServer`
22classes are similar, but use Unix domain sockets; they're not available on
23non-Unix platforms. For more details on network programming, consult a book
24such as
25W. Richard Steven's UNIX Network Programming or Ralph Davis's Win32 Network
26Programming.
27
28These four classes process requests :dfn:`synchronously`; each request must be
29completed before the next request can be started. This isn't suitable if each
30request takes a long time to complete, because it requires a lot of computation,
31or because it returns a lot of data which the client is slow to process. The
32solution is to create a separate process or thread to handle each request; the
33:class:`ForkingMixIn` and :class:`ThreadingMixIn` mix-in classes can be used to
34support asynchronous behaviour.
35
36Creating a server requires several steps. First, you must create a request
37handler class by subclassing the :class:`BaseRequestHandler` class and
38overriding its :meth:`handle` method; this method will process incoming
39requests. Second, you must instantiate one of the server classes, passing it
40the server's address and the request handler class. Finally, call the
41:meth:`handle_request` or :meth:`serve_forever` method of the server object to
42process one or many requests.
43
44When inheriting from :class:`ThreadingMixIn` for threaded connection behavior,
45you should explicitly declare how you want your threads to behave on an abrupt
46shutdown. The :class:`ThreadingMixIn` class defines an attribute
47*daemon_threads*, which indicates whether or not the server should wait for
48thread termination. You should set the flag explicitly if you would like threads
49to behave autonomously; the default is :const:`False`, meaning that Python will
50not exit until all threads created by :class:`ThreadingMixIn` have exited.
51
52Server classes have the same external methods and attributes, no matter what
Andrew M. Kuchlinge45a77a2008-01-19 16:26:13 +000053network protocol they use.
Georg Brandl8ec7f652007-08-15 14:28:01 +000054
55
56Server Creation Notes
57---------------------
58
59There are five classes in an inheritance diagram, four of which represent
60synchronous servers of four types::
61
62 +------------+
63 | BaseServer |
64 +------------+
65 |
66 v
67 +-----------+ +------------------+
68 | TCPServer |------->| UnixStreamServer |
69 +-----------+ +------------------+
70 |
71 v
72 +-----------+ +--------------------+
73 | UDPServer |------->| UnixDatagramServer |
74 +-----------+ +--------------------+
75
76Note that :class:`UnixDatagramServer` derives from :class:`UDPServer`, not from
77:class:`UnixStreamServer` --- the only difference between an IP and a Unix
78stream server is the address family, which is simply repeated in both Unix
79server classes.
80
81Forking and threading versions of each type of server can be created using the
82:class:`ForkingMixIn` and :class:`ThreadingMixIn` mix-in classes. For instance,
83a threading UDP server class is created as follows::
84
85 class ThreadingUDPServer(ThreadingMixIn, UDPServer): pass
86
87The mix-in class must come first, since it overrides a method defined in
88:class:`UDPServer`. Setting the various member variables also changes the
89behavior of the underlying server mechanism.
90
91To implement a service, you must derive a class from :class:`BaseRequestHandler`
92and redefine its :meth:`handle` method. You can then run various versions of
93the service by combining one of the server classes with your request handler
94class. The request handler class must be different for datagram or stream
95services. This can be hidden by using the handler subclasses
96:class:`StreamRequestHandler` or :class:`DatagramRequestHandler`.
97
98Of course, you still have to use your head! For instance, it makes no sense to
99use a forking server if the service contains state in memory that can be
100modified by different requests, since the modifications in the child process
101would never reach the initial state kept in the parent process and passed to
102each child. In this case, you can use a threading server, but you will probably
103have to use locks to protect the integrity of the shared data.
104
105On the other hand, if you are building an HTTP server where all data is stored
106externally (for instance, in the file system), a synchronous class will
107essentially render the service "deaf" while one request is being handled --
108which may be for a very long time if a client is slow to receive all the data it
109has requested. Here a threading or forking server is appropriate.
110
111In some cases, it may be appropriate to process part of a request synchronously,
112but to finish processing in a forked child depending on the request data. This
113can be implemented by using a synchronous server and doing an explicit fork in
114the request handler class :meth:`handle` method.
115
116Another approach to handling multiple simultaneous requests in an environment
117that supports neither threads nor :func:`fork` (or where these are too expensive
118or inappropriate for the service) is to maintain an explicit table of partially
119finished requests and to use :func:`select` to decide which request to work on
120next (or whether to handle a new incoming request). This is particularly
121important for stream services where each client can potentially be connected for
Jeffrey Yasskine75f59a2008-03-07 06:22:15 +0000122a long time (if threads or subprocesses cannot be used). See :mod:`asyncore` for
123another way to manage this.
Georg Brandl8ec7f652007-08-15 14:28:01 +0000124
Georg Brandlb19be572007-12-29 10:57:00 +0000125.. XXX should data and methods be intermingled, or separate?
126 how should the distinction between class and instance variables be drawn?
Georg Brandl8ec7f652007-08-15 14:28:01 +0000127
128
129Server Objects
130--------------
131
Georg Brandl9af0c562009-04-05 10:24:20 +0000132.. class:: BaseServer
Georg Brandl8ec7f652007-08-15 14:28:01 +0000133
Georg Brandl9af0c562009-04-05 10:24:20 +0000134 This is the superclass of all Server objects in the module. It defines the
135 interface, given below, but does not implement most of the methods, which is
136 done in subclasses.
137
138
139.. method:: BaseServer.fileno()
Georg Brandl8ec7f652007-08-15 14:28:01 +0000140
141 Return an integer file descriptor for the socket on which the server is
142 listening. This function is most commonly passed to :func:`select.select`, to
143 allow monitoring multiple servers in the same process.
144
145
Georg Brandl9af0c562009-04-05 10:24:20 +0000146.. method:: BaseServer.handle_request()
Georg Brandl8ec7f652007-08-15 14:28:01 +0000147
Jeffrey Yasskine75f59a2008-03-07 06:22:15 +0000148 Process a single request. This function calls the following methods in
149 order: :meth:`get_request`, :meth:`verify_request`, and
150 :meth:`process_request`. If the user-provided :meth:`handle` method of the
151 handler class raises an exception, the server's :meth:`handle_error` method
152 will be called. If no request is received within :attr:`self.timeout`
153 seconds, :meth:`handle_timeout` will be called and :meth:`handle_request`
154 will return.
Georg Brandl8ec7f652007-08-15 14:28:01 +0000155
156
Georg Brandl9af0c562009-04-05 10:24:20 +0000157.. method:: BaseServer.serve_forever(poll_interval=0.5)
Georg Brandl8ec7f652007-08-15 14:28:01 +0000158
Jeffrey Yasskine75f59a2008-03-07 06:22:15 +0000159 Handle requests until an explicit :meth:`shutdown` request. Polls for
160 shutdown every *poll_interval* seconds.
161
162
Georg Brandl9af0c562009-04-05 10:24:20 +0000163.. method:: BaseServer.shutdown()
Jeffrey Yasskine75f59a2008-03-07 06:22:15 +0000164
165 Tells the :meth:`serve_forever` loop to stop and waits until it does.
Georg Brandl8ec7f652007-08-15 14:28:01 +0000166
Georg Brandl910df2f2008-06-26 18:55:37 +0000167 .. versionadded:: 2.6
168
Georg Brandl8ec7f652007-08-15 14:28:01 +0000169
Georg Brandl9af0c562009-04-05 10:24:20 +0000170.. attribute:: BaseServer.address_family
Georg Brandl8ec7f652007-08-15 14:28:01 +0000171
172 The family of protocols to which the server's socket belongs.
Georg Brandl0aaf5592008-05-11 10:59:39 +0000173 Common examples are :const:`socket.AF_INET` and :const:`socket.AF_UNIX`.
Georg Brandl8ec7f652007-08-15 14:28:01 +0000174
175
Georg Brandl9af0c562009-04-05 10:24:20 +0000176.. attribute:: BaseServer.RequestHandlerClass
Georg Brandl8ec7f652007-08-15 14:28:01 +0000177
178 The user-provided request handler class; an instance of this class is created
179 for each request.
180
181
Georg Brandl9af0c562009-04-05 10:24:20 +0000182.. attribute:: BaseServer.server_address
Georg Brandl8ec7f652007-08-15 14:28:01 +0000183
184 The address on which the server is listening. The format of addresses varies
185 depending on the protocol family; see the documentation for the socket module
186 for details. For Internet protocols, this is a tuple containing a string giving
187 the address, and an integer port number: ``('127.0.0.1', 80)``, for example.
188
189
Georg Brandl9af0c562009-04-05 10:24:20 +0000190.. attribute:: BaseServer.socket
Georg Brandl8ec7f652007-08-15 14:28:01 +0000191
192 The socket object on which the server will listen for incoming requests.
193
Georg Brandl9af0c562009-04-05 10:24:20 +0000194
Georg Brandl8ec7f652007-08-15 14:28:01 +0000195The server classes support the following class variables:
196
Georg Brandlb19be572007-12-29 10:57:00 +0000197.. XXX should class variables be covered before instance variables, or vice versa?
Georg Brandl8ec7f652007-08-15 14:28:01 +0000198
Georg Brandl9af0c562009-04-05 10:24:20 +0000199.. attribute:: BaseServer.allow_reuse_address
Georg Brandl8ec7f652007-08-15 14:28:01 +0000200
201 Whether the server will allow the reuse of an address. This defaults to
202 :const:`False`, and can be set in subclasses to change the policy.
203
204
Georg Brandl9af0c562009-04-05 10:24:20 +0000205.. attribute:: BaseServer.request_queue_size
Georg Brandl8ec7f652007-08-15 14:28:01 +0000206
207 The size of the request queue. If it takes a long time to process a single
208 request, any requests that arrive while the server is busy are placed into a
209 queue, up to :attr:`request_queue_size` requests. Once the queue is full,
210 further requests from clients will get a "Connection denied" error. The default
211 value is usually 5, but this can be overridden by subclasses.
212
213
Georg Brandl9af0c562009-04-05 10:24:20 +0000214.. attribute:: BaseServer.socket_type
Georg Brandl8ec7f652007-08-15 14:28:01 +0000215
216 The type of socket used by the server; :const:`socket.SOCK_STREAM` and
Georg Brandl0aaf5592008-05-11 10:59:39 +0000217 :const:`socket.SOCK_DGRAM` are two common values.
Georg Brandl8ec7f652007-08-15 14:28:01 +0000218
Georg Brandl9af0c562009-04-05 10:24:20 +0000219
220.. attribute:: BaseServer.timeout
Andrew M. Kuchlinge45a77a2008-01-19 16:26:13 +0000221
Jeffrey Yasskine75f59a2008-03-07 06:22:15 +0000222 Timeout duration, measured in seconds, or :const:`None` if no timeout is
223 desired. If :meth:`handle_request` receives no incoming requests within the
224 timeout period, the :meth:`handle_timeout` method is called.
Andrew M. Kuchlinge45a77a2008-01-19 16:26:13 +0000225
Georg Brandl8ec7f652007-08-15 14:28:01 +0000226There are various server methods that can be overridden by subclasses of base
227server classes like :class:`TCPServer`; these methods aren't useful to external
228users of the server object.
229
Georg Brandlb19be572007-12-29 10:57:00 +0000230.. XXX should the default implementations of these be documented, or should
Georg Brandle152a772008-05-24 18:31:28 +0000231 it be assumed that the user will look at SocketServer.py?
Georg Brandl8ec7f652007-08-15 14:28:01 +0000232
Georg Brandl9af0c562009-04-05 10:24:20 +0000233.. method:: BaseServer.finish_request()
Georg Brandl8ec7f652007-08-15 14:28:01 +0000234
235 Actually processes the request by instantiating :attr:`RequestHandlerClass` and
236 calling its :meth:`handle` method.
237
238
Georg Brandl9af0c562009-04-05 10:24:20 +0000239.. method:: BaseServer.get_request()
Georg Brandl8ec7f652007-08-15 14:28:01 +0000240
241 Must accept a request from the socket, and return a 2-tuple containing the *new*
242 socket object to be used to communicate with the client, and the client's
243 address.
244
245
Georg Brandl9af0c562009-04-05 10:24:20 +0000246.. method:: BaseServer.handle_error(request, client_address)
Georg Brandl8ec7f652007-08-15 14:28:01 +0000247
248 This function is called if the :attr:`RequestHandlerClass`'s :meth:`handle`
249 method raises an exception. The default action is to print the traceback to
250 standard output and continue handling further requests.
251
Georg Brandl9af0c562009-04-05 10:24:20 +0000252
253.. method:: BaseServer.handle_timeout()
Andrew M. Kuchlinge45a77a2008-01-19 16:26:13 +0000254
Georg Brandl67d69332008-05-18 08:52:59 +0000255 This function is called when the :attr:`timeout` attribute has been set to a
256 value other than :const:`None` and the timeout period has passed with no
Andrew M. Kuchlinge45a77a2008-01-19 16:26:13 +0000257 requests being received. The default action for forking servers is
258 to collect the status of any child processes that have exited, while
259 in threading servers this method does nothing.
Georg Brandl8ec7f652007-08-15 14:28:01 +0000260
Georg Brandl9af0c562009-04-05 10:24:20 +0000261
262.. method:: BaseServer.process_request(request, client_address)
Georg Brandl8ec7f652007-08-15 14:28:01 +0000263
264 Calls :meth:`finish_request` to create an instance of the
265 :attr:`RequestHandlerClass`. If desired, this function can create a new process
266 or thread to handle the request; the :class:`ForkingMixIn` and
267 :class:`ThreadingMixIn` classes do this.
268
Georg Brandl9af0c562009-04-05 10:24:20 +0000269
Georg Brandlb19be572007-12-29 10:57:00 +0000270.. Is there any point in documenting the following two functions?
271 What would the purpose of overriding them be: initializing server
272 instance variables, adding new network families?
Georg Brandl8ec7f652007-08-15 14:28:01 +0000273
Georg Brandl9af0c562009-04-05 10:24:20 +0000274.. method:: BaseServer.server_activate()
Georg Brandl8ec7f652007-08-15 14:28:01 +0000275
276 Called by the server's constructor to activate the server. The default behavior
277 just :meth:`listen`\ s to the server's socket. May be overridden.
278
279
Georg Brandl9af0c562009-04-05 10:24:20 +0000280.. method:: BaseServer.server_bind()
Georg Brandl8ec7f652007-08-15 14:28:01 +0000281
282 Called by the server's constructor to bind the socket to the desired address.
283 May be overridden.
284
285
Georg Brandl9af0c562009-04-05 10:24:20 +0000286.. method:: BaseServer.verify_request(request, client_address)
Georg Brandl8ec7f652007-08-15 14:28:01 +0000287
288 Must return a Boolean value; if the value is :const:`True`, the request will be
289 processed, and if it's :const:`False`, the request will be denied. This function
290 can be overridden to implement access controls for a server. The default
291 implementation always returns :const:`True`.
292
293
294RequestHandler Objects
295----------------------
296
297The request handler class must define a new :meth:`handle` method, and can
298override any of the following methods. A new instance is created for each
299request.
300
301
Georg Brandl9af0c562009-04-05 10:24:20 +0000302.. method:: RequestHandler.finish()
Georg Brandl8ec7f652007-08-15 14:28:01 +0000303
Georg Brandl67d69332008-05-18 08:52:59 +0000304 Called after the :meth:`handle` method to perform any clean-up actions
305 required. The default implementation does nothing. If :meth:`setup` or
306 :meth:`handle` raise an exception, this function will not be called.
Georg Brandl8ec7f652007-08-15 14:28:01 +0000307
308
Georg Brandl9af0c562009-04-05 10:24:20 +0000309.. method:: RequestHandler.handle()
Georg Brandl8ec7f652007-08-15 14:28:01 +0000310
Georg Brandl67d69332008-05-18 08:52:59 +0000311 This function must do all the work required to service a request. The
312 default implementation does nothing. Several instance attributes are
313 available to it; the request is available as :attr:`self.request`; the client
314 address as :attr:`self.client_address`; and the server instance as
315 :attr:`self.server`, in case it needs access to per-server information.
Georg Brandl8ec7f652007-08-15 14:28:01 +0000316
Georg Brandl67d69332008-05-18 08:52:59 +0000317 The type of :attr:`self.request` is different for datagram or stream
318 services. For stream services, :attr:`self.request` is a socket object; for
319 datagram services, :attr:`self.request` is a pair of string and socket.
320 However, this can be hidden by using the request handler subclasses
321 :class:`StreamRequestHandler` or :class:`DatagramRequestHandler`, which
322 override the :meth:`setup` and :meth:`finish` methods, and provide
323 :attr:`self.rfile` and :attr:`self.wfile` attributes. :attr:`self.rfile` and
324 :attr:`self.wfile` can be read or written, respectively, to get the request
325 data or return data to the client.
Georg Brandl8ec7f652007-08-15 14:28:01 +0000326
327
Georg Brandl9af0c562009-04-05 10:24:20 +0000328.. method:: RequestHandler.setup()
Georg Brandl8ec7f652007-08-15 14:28:01 +0000329
330 Called before the :meth:`handle` method to perform any initialization actions
331 required. The default implementation does nothing.
332
Georg Brandl67d69332008-05-18 08:52:59 +0000333
334Examples
335--------
336
Georg Brandle152a772008-05-24 18:31:28 +0000337:class:`SocketServer.TCPServer` Example
Georg Brandl67d69332008-05-18 08:52:59 +0000338~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
339
340This is the server side::
341
Georg Brandle152a772008-05-24 18:31:28 +0000342 import SocketServer
Georg Brandl67d69332008-05-18 08:52:59 +0000343
Georg Brandle152a772008-05-24 18:31:28 +0000344 class MyTCPHandler(SocketServer.BaseRequestHandler):
Georg Brandl67d69332008-05-18 08:52:59 +0000345 """
346 The RequestHandler class for our server.
347
348 It is instantiated once per connection to the server, and must
349 override the handle() method to implement communication to the
350 client.
351 """
352
353 def handle(self):
354 # self.request is the TCP socket connected to the client
355 self.data = self.request.recv(1024).strip()
356 print "%s wrote:" % self.client_address[0]
357 print self.data
358 # just send back the same data, but upper-cased
359 self.request.send(self.data.upper())
360
361 if __name__ == "__main__":
362 HOST, PORT = "localhost", 9999
363
364 # Create the server, binding to localhost on port 9999
Georg Brandle152a772008-05-24 18:31:28 +0000365 server = SocketServer.TCPServer((HOST, PORT), MyTCPHandler)
Georg Brandl67d69332008-05-18 08:52:59 +0000366
367 # Activate the server; this will keep running until you
368 # interrupt the program with Ctrl-C
369 server.serve_forever()
370
371An alternative request handler class that makes use of streams (file-like
372objects that simplify communication by providing the standard file interface)::
373
Georg Brandle152a772008-05-24 18:31:28 +0000374 class MyTCPHandler(SocketServer.StreamRequestHandler):
Georg Brandl67d69332008-05-18 08:52:59 +0000375
376 def handle(self):
377 # self.rfile is a file-like object created by the handler;
378 # we can now use e.g. readline() instead of raw recv() calls
379 self.data = self.rfile.readline().strip()
380 print "%s wrote:" % self.client_address[0]
381 print self.data
382 # Likewise, self.wfile is a file-like object used to write back
383 # to the client
384 self.wfile.write(self.data.upper())
385
386The difference is that the ``readline()`` call in the second handler will call
387``recv()`` multiple times until it encounters a newline character, while the
388single ``recv()`` call in the first handler will just return what has been sent
389from the client in one ``send()`` call.
390
391
392This is the client side::
393
394 import socket
395 import sys
396
397 HOST, PORT = "localhost", 9999
398 data = " ".join(sys.argv[1:])
399
400 # Create a socket (SOCK_STREAM means a TCP socket)
401 sock = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
402
403 # Connect to server and send data
404 sock.connect((HOST, PORT))
405 sock.send(data + "\n")
406
407 # Receive data from the server and shut down
408 received = sock.recv(1024)
409 sock.close()
410
411 print "Sent: %s" % data
412 print "Received: %s" % received
413
414
415The output of the example should look something like this:
416
417Server::
418
419 $ python TCPServer.py
420 127.0.0.1 wrote:
421 hello world with TCP
422 127.0.0.1 wrote:
423 python is nice
424
425Client::
426
427 $ python TCPClient.py hello world with TCP
428 Sent: hello world with TCP
429 Received: HELLO WORLD WITH TCP
430 $ python TCPClient.py python is nice
431 Sent: python is nice
432 Received: PYTHON IS NICE
433
434
Georg Brandle152a772008-05-24 18:31:28 +0000435:class:`SocketServer.UDPServer` Example
Georg Brandl67d69332008-05-18 08:52:59 +0000436~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
437
438This is the server side::
439
Georg Brandle152a772008-05-24 18:31:28 +0000440 import SocketServer
Georg Brandl67d69332008-05-18 08:52:59 +0000441
Georg Brandle152a772008-05-24 18:31:28 +0000442 class MyUDPHandler(SocketServer.BaseRequestHandler):
Georg Brandl67d69332008-05-18 08:52:59 +0000443 """
444 This class works similar to the TCP handler class, except that
445 self.request consists of a pair of data and client socket, and since
446 there is no connection the client address must be given explicitly
447 when sending data back via sendto().
448 """
449
450 def handle(self):
451 data = self.request[0].strip()
452 socket = self.request[1]
453 print "%s wrote:" % self.client_address[0]
454 print data
455 socket.sendto(data.upper(), self.client_address)
456
457 if __name__ == "__main__":
R. David Murray48239612009-11-20 13:29:43 +0000458 HOST, PORT = "localhost", 9999
459 server = SocketServer.UDPServer((HOST, PORT), MyUDPHandler)
460 server.serve_forever()
Georg Brandl67d69332008-05-18 08:52:59 +0000461
462This is the client side::
463
464 import socket
465 import sys
466
Georg Brandle8ddbec2009-08-24 17:22:05 +0000467 HOST, PORT = "localhost", 9999
Georg Brandl67d69332008-05-18 08:52:59 +0000468 data = " ".join(sys.argv[1:])
469
470 # SOCK_DGRAM is the socket type to use for UDP sockets
471 sock = socket.socket(socket.AF_INET, socket.SOCK_DGRAM)
472
473 # As you can see, there is no connect() call; UDP has no connections.
474 # Instead, data is directly sent to the recipient via sendto().
475 sock.sendto(data + "\n", (HOST, PORT))
476 received = sock.recv(1024)
477
478 print "Sent: %s" % data
479 print "Received: %s" % received
480
481The output of the example should look exactly like for the TCP server example.
482
483
484Asynchronous Mixins
485~~~~~~~~~~~~~~~~~~~
486
487To build asynchronous handlers, use the :class:`ThreadingMixIn` and
488:class:`ForkingMixIn` classes.
489
490An example for the :class:`ThreadingMixIn` class::
491
492 import socket
493 import threading
Georg Brandle152a772008-05-24 18:31:28 +0000494 import SocketServer
Georg Brandl67d69332008-05-18 08:52:59 +0000495
Georg Brandle152a772008-05-24 18:31:28 +0000496 class ThreadedTCPRequestHandler(SocketServer.BaseRequestHandler):
Georg Brandl67d69332008-05-18 08:52:59 +0000497
498 def handle(self):
499 data = self.request.recv(1024)
500 cur_thread = threading.currentThread()
501 response = "%s: %s" % (cur_thread.getName(), data)
502 self.request.send(response)
503
Georg Brandle152a772008-05-24 18:31:28 +0000504 class ThreadedTCPServer(SocketServer.ThreadingMixIn, SocketServer.TCPServer):
Georg Brandl67d69332008-05-18 08:52:59 +0000505 pass
506
507 def client(ip, port, message):
508 sock = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
509 sock.connect((ip, port))
510 sock.send(message)
511 response = sock.recv(1024)
512 print "Received: %s" % response
513 sock.close()
514
515 if __name__ == "__main__":
516 # Port 0 means to select an arbitrary unused port
517 HOST, PORT = "localhost", 0
518
519 server = ThreadedTCPServer((HOST, PORT), ThreadedTCPRequestHandler)
520 ip, port = server.server_address
521
522 # Start a thread with the server -- that thread will then start one
523 # more thread for each request
524 server_thread = threading.Thread(target=server.serve_forever)
525 # Exit the server thread when the main thread terminates
526 server_thread.setDaemon(True)
527 server_thread.start()
Georg Brandl52f6b6d2009-02-18 00:22:55 +0000528 print "Server loop running in thread:", server_thread.getName()
Georg Brandl67d69332008-05-18 08:52:59 +0000529
530 client(ip, port, "Hello World 1")
531 client(ip, port, "Hello World 2")
532 client(ip, port, "Hello World 3")
533
534 server.shutdown()
535
536The output of the example should look something like this::
537
538 $ python ThreadedTCPServer.py
539 Server loop running in thread: Thread-1
540 Received: Thread-2: Hello World 1
541 Received: Thread-3: Hello World 2
542 Received: Thread-4: Hello World 3
543
544
545The :class:`ForkingMixIn` class is used in the same way, except that the server
546will spawn a new process for each request.