blob: 82d1107b12047f598a29c9e8af7908a0fec09ea1 [file] [log] [blame]
Georg Brandl116aa622007-08-15 14:28:22 +00001
Alexandre Vassalottice261952008-05-12 02:31:37 +00002:mod:`socketserver` --- A framework for network servers
Georg Brandl116aa622007-08-15 14:28:22 +00003=======================================================
4
Alexandre Vassalottice261952008-05-12 02:31:37 +00005.. module:: socketserver
Georg Brandl116aa622007-08-15 14:28:22 +00006 :synopsis: A framework for network servers.
7
Alexandre Vassalottice261952008-05-12 02:31:37 +00008The :mod:`socketserver` module simplifies the task of writing network servers.
Georg Brandl116aa622007-08-15 14:28:22 +00009
10There are four basic server classes: :class:`TCPServer` uses the Internet TCP
11protocol, which provides for continuous streams of data between the client and
12server. :class:`UDPServer` uses datagrams, which are discrete packets of
13information that may arrive out of order or be lost while in transit. The more
14infrequently used :class:`UnixStreamServer` and :class:`UnixDatagramServer`
15classes are similar, but use Unix domain sockets; they're not available on
16non-Unix platforms. For more details on network programming, consult a book
17such as
18W. Richard Steven's UNIX Network Programming or Ralph Davis's Win32 Network
19Programming.
20
21These four classes process requests :dfn:`synchronously`; each request must be
22completed before the next request can be started. This isn't suitable if each
23request takes a long time to complete, because it requires a lot of computation,
24or because it returns a lot of data which the client is slow to process. The
25solution is to create a separate process or thread to handle each request; the
26:class:`ForkingMixIn` and :class:`ThreadingMixIn` mix-in classes can be used to
27support asynchronous behaviour.
28
29Creating a server requires several steps. First, you must create a request
30handler class by subclassing the :class:`BaseRequestHandler` class and
31overriding its :meth:`handle` method; this method will process incoming
32requests. Second, you must instantiate one of the server classes, passing it
33the server's address and the request handler class. Finally, call the
34:meth:`handle_request` or :meth:`serve_forever` method of the server object to
35process one or many requests.
36
37When inheriting from :class:`ThreadingMixIn` for threaded connection behavior,
38you should explicitly declare how you want your threads to behave on an abrupt
39shutdown. The :class:`ThreadingMixIn` class defines an attribute
40*daemon_threads*, which indicates whether or not the server should wait for
41thread termination. You should set the flag explicitly if you would like threads
42to behave autonomously; the default is :const:`False`, meaning that Python will
43not exit until all threads created by :class:`ThreadingMixIn` have exited.
44
45Server classes have the same external methods and attributes, no matter what
Georg Brandlfceab5a2008-01-19 20:08:23 +000046network protocol they use.
Georg Brandl116aa622007-08-15 14:28:22 +000047
48
49Server Creation Notes
50---------------------
51
52There are five classes in an inheritance diagram, four of which represent
53synchronous servers of four types::
54
55 +------------+
56 | BaseServer |
57 +------------+
58 |
59 v
60 +-----------+ +------------------+
61 | TCPServer |------->| UnixStreamServer |
62 +-----------+ +------------------+
63 |
64 v
65 +-----------+ +--------------------+
66 | UDPServer |------->| UnixDatagramServer |
67 +-----------+ +--------------------+
68
69Note that :class:`UnixDatagramServer` derives from :class:`UDPServer`, not from
70:class:`UnixStreamServer` --- the only difference between an IP and a Unix
71stream server is the address family, which is simply repeated in both Unix
72server classes.
73
74Forking and threading versions of each type of server can be created using the
75:class:`ForkingMixIn` and :class:`ThreadingMixIn` mix-in classes. For instance,
76a threading UDP server class is created as follows::
77
78 class ThreadingUDPServer(ThreadingMixIn, UDPServer): pass
79
80The mix-in class must come first, since it overrides a method defined in
81:class:`UDPServer`. Setting the various member variables also changes the
82behavior of the underlying server mechanism.
83
84To implement a service, you must derive a class from :class:`BaseRequestHandler`
85and redefine its :meth:`handle` method. You can then run various versions of
86the service by combining one of the server classes with your request handler
87class. The request handler class must be different for datagram or stream
88services. This can be hidden by using the handler subclasses
89:class:`StreamRequestHandler` or :class:`DatagramRequestHandler`.
90
91Of course, you still have to use your head! For instance, it makes no sense to
92use a forking server if the service contains state in memory that can be
93modified by different requests, since the modifications in the child process
94would never reach the initial state kept in the parent process and passed to
95each child. In this case, you can use a threading server, but you will probably
96have to use locks to protect the integrity of the shared data.
97
98On the other hand, if you are building an HTTP server where all data is stored
99externally (for instance, in the file system), a synchronous class will
100essentially render the service "deaf" while one request is being handled --
101which may be for a very long time if a client is slow to receive all the data it
102has requested. Here a threading or forking server is appropriate.
103
104In some cases, it may be appropriate to process part of a request synchronously,
105but to finish processing in a forked child depending on the request data. This
106can be implemented by using a synchronous server and doing an explicit fork in
107the request handler class :meth:`handle` method.
108
109Another approach to handling multiple simultaneous requests in an environment
110that supports neither threads nor :func:`fork` (or where these are too expensive
111or inappropriate for the service) is to maintain an explicit table of partially
112finished requests and to use :func:`select` to decide which request to work on
113next (or whether to handle a new incoming request). This is particularly
114important for stream services where each client can potentially be connected for
Christian Heimesdd15f6c2008-03-16 00:07:10 +0000115a long time (if threads or subprocesses cannot be used). See :mod:`asyncore` for
116another way to manage this.
Georg Brandl116aa622007-08-15 14:28:22 +0000117
Christian Heimes5b5e81c2007-12-31 16:14:33 +0000118.. XXX should data and methods be intermingled, or separate?
119 how should the distinction between class and instance variables be drawn?
Georg Brandl116aa622007-08-15 14:28:22 +0000120
121
122Server Objects
123--------------
124
Benjamin Petersond23f8222009-04-05 19:13:16 +0000125.. class:: BaseServer
Georg Brandl116aa622007-08-15 14:28:22 +0000126
Benjamin Petersond23f8222009-04-05 19:13:16 +0000127 This is the superclass of all Server objects in the module. It defines the
128 interface, given below, but does not implement most of the methods, which is
129 done in subclasses.
130
131
132.. method:: BaseServer.fileno()
Georg Brandl116aa622007-08-15 14:28:22 +0000133
134 Return an integer file descriptor for the socket on which the server is
135 listening. This function is most commonly passed to :func:`select.select`, to
136 allow monitoring multiple servers in the same process.
137
138
Benjamin Petersond23f8222009-04-05 19:13:16 +0000139.. method:: BaseServer.handle_request()
Georg Brandl116aa622007-08-15 14:28:22 +0000140
Christian Heimesdd15f6c2008-03-16 00:07:10 +0000141 Process a single request. This function calls the following methods in
142 order: :meth:`get_request`, :meth:`verify_request`, and
143 :meth:`process_request`. If the user-provided :meth:`handle` method of the
144 handler class raises an exception, the server's :meth:`handle_error` method
145 will be called. If no request is received within :attr:`self.timeout`
146 seconds, :meth:`handle_timeout` will be called and :meth:`handle_request`
147 will return.
Georg Brandl116aa622007-08-15 14:28:22 +0000148
149
Benjamin Petersond23f8222009-04-05 19:13:16 +0000150.. method:: BaseServer.serve_forever(poll_interval=0.5)
Georg Brandl116aa622007-08-15 14:28:22 +0000151
Christian Heimesdd15f6c2008-03-16 00:07:10 +0000152 Handle requests until an explicit :meth:`shutdown` request. Polls for
153 shutdown every *poll_interval* seconds.
154
155
Benjamin Petersond23f8222009-04-05 19:13:16 +0000156.. method:: BaseServer.shutdown()
Christian Heimesdd15f6c2008-03-16 00:07:10 +0000157
158 Tells the :meth:`serve_forever` loop to stop and waits until it does.
Georg Brandl116aa622007-08-15 14:28:22 +0000159
160
Benjamin Petersond23f8222009-04-05 19:13:16 +0000161.. attribute:: BaseServer.address_family
Georg Brandl116aa622007-08-15 14:28:22 +0000162
163 The family of protocols to which the server's socket belongs.
Alexandre Vassalotti5f8ced22008-05-16 00:03:33 +0000164 Common examples are :const:`socket.AF_INET` and :const:`socket.AF_UNIX`.
Georg Brandl116aa622007-08-15 14:28:22 +0000165
166
Benjamin Petersond23f8222009-04-05 19:13:16 +0000167.. attribute:: BaseServer.RequestHandlerClass
Georg Brandl116aa622007-08-15 14:28:22 +0000168
169 The user-provided request handler class; an instance of this class is created
170 for each request.
171
172
Benjamin Petersond23f8222009-04-05 19:13:16 +0000173.. attribute:: BaseServer.server_address
Georg Brandl116aa622007-08-15 14:28:22 +0000174
175 The address on which the server is listening. The format of addresses varies
176 depending on the protocol family; see the documentation for the socket module
177 for details. For Internet protocols, this is a tuple containing a string giving
178 the address, and an integer port number: ``('127.0.0.1', 80)``, for example.
179
180
Benjamin Petersond23f8222009-04-05 19:13:16 +0000181.. attribute:: BaseServer.socket
Georg Brandl116aa622007-08-15 14:28:22 +0000182
183 The socket object on which the server will listen for incoming requests.
184
Benjamin Petersond23f8222009-04-05 19:13:16 +0000185
Georg Brandl116aa622007-08-15 14:28:22 +0000186The server classes support the following class variables:
187
Christian Heimes5b5e81c2007-12-31 16:14:33 +0000188.. XXX should class variables be covered before instance variables, or vice versa?
Georg Brandl116aa622007-08-15 14:28:22 +0000189
Benjamin Petersond23f8222009-04-05 19:13:16 +0000190.. attribute:: BaseServer.allow_reuse_address
Georg Brandl116aa622007-08-15 14:28:22 +0000191
192 Whether the server will allow the reuse of an address. This defaults to
193 :const:`False`, and can be set in subclasses to change the policy.
194
195
Benjamin Petersond23f8222009-04-05 19:13:16 +0000196.. attribute:: BaseServer.request_queue_size
Georg Brandl116aa622007-08-15 14:28:22 +0000197
198 The size of the request queue. If it takes a long time to process a single
199 request, any requests that arrive while the server is busy are placed into a
200 queue, up to :attr:`request_queue_size` requests. Once the queue is full,
201 further requests from clients will get a "Connection denied" error. The default
202 value is usually 5, but this can be overridden by subclasses.
203
204
Benjamin Petersond23f8222009-04-05 19:13:16 +0000205.. attribute:: BaseServer.socket_type
Georg Brandl116aa622007-08-15 14:28:22 +0000206
207 The type of socket used by the server; :const:`socket.SOCK_STREAM` and
Alexandre Vassalotti5f8ced22008-05-16 00:03:33 +0000208 :const:`socket.SOCK_DGRAM` are two common values.
Georg Brandl116aa622007-08-15 14:28:22 +0000209
Benjamin Petersond23f8222009-04-05 19:13:16 +0000210
211.. attribute:: BaseServer.timeout
Georg Brandlfceab5a2008-01-19 20:08:23 +0000212
Christian Heimesdd15f6c2008-03-16 00:07:10 +0000213 Timeout duration, measured in seconds, or :const:`None` if no timeout is
214 desired. If :meth:`handle_request` receives no incoming requests within the
215 timeout period, the :meth:`handle_timeout` method is called.
Georg Brandlfceab5a2008-01-19 20:08:23 +0000216
Benjamin Petersond23f8222009-04-05 19:13:16 +0000217
Georg Brandl116aa622007-08-15 14:28:22 +0000218There are various server methods that can be overridden by subclasses of base
219server classes like :class:`TCPServer`; these methods aren't useful to external
220users of the server object.
221
Christian Heimes5b5e81c2007-12-31 16:14:33 +0000222.. XXX should the default implementations of these be documented, or should
Alexandre Vassalottice261952008-05-12 02:31:37 +0000223 it be assumed that the user will look at socketserver.py?
Georg Brandl116aa622007-08-15 14:28:22 +0000224
Benjamin Petersond23f8222009-04-05 19:13:16 +0000225.. method:: BaseServer.finish_request()
Georg Brandl116aa622007-08-15 14:28:22 +0000226
227 Actually processes the request by instantiating :attr:`RequestHandlerClass` and
228 calling its :meth:`handle` method.
229
230
Benjamin Petersond23f8222009-04-05 19:13:16 +0000231.. method:: BaseServer.get_request()
Georg Brandl116aa622007-08-15 14:28:22 +0000232
233 Must accept a request from the socket, and return a 2-tuple containing the *new*
234 socket object to be used to communicate with the client, and the client's
235 address.
236
237
Benjamin Petersond23f8222009-04-05 19:13:16 +0000238.. method:: BaseServer.handle_error(request, client_address)
Georg Brandl116aa622007-08-15 14:28:22 +0000239
240 This function is called if the :attr:`RequestHandlerClass`'s :meth:`handle`
241 method raises an exception. The default action is to print the traceback to
242 standard output and continue handling further requests.
243
Benjamin Petersond23f8222009-04-05 19:13:16 +0000244
245.. method:: BaseServer.handle_timeout()
Georg Brandlfceab5a2008-01-19 20:08:23 +0000246
Georg Brandlb533e262008-05-25 18:19:30 +0000247 This function is called when the :attr:`timeout` attribute has been set to a
248 value other than :const:`None` and the timeout period has passed with no
Georg Brandlfceab5a2008-01-19 20:08:23 +0000249 requests being received. The default action for forking servers is
250 to collect the status of any child processes that have exited, while
251 in threading servers this method does nothing.
Georg Brandl116aa622007-08-15 14:28:22 +0000252
Benjamin Petersond23f8222009-04-05 19:13:16 +0000253
254.. method:: BaseServer.process_request(request, client_address)
Georg Brandl116aa622007-08-15 14:28:22 +0000255
256 Calls :meth:`finish_request` to create an instance of the
257 :attr:`RequestHandlerClass`. If desired, this function can create a new process
258 or thread to handle the request; the :class:`ForkingMixIn` and
259 :class:`ThreadingMixIn` classes do this.
260
Benjamin Petersond23f8222009-04-05 19:13:16 +0000261
Christian Heimes5b5e81c2007-12-31 16:14:33 +0000262.. Is there any point in documenting the following two functions?
263 What would the purpose of overriding them be: initializing server
264 instance variables, adding new network families?
Georg Brandl116aa622007-08-15 14:28:22 +0000265
Benjamin Petersond23f8222009-04-05 19:13:16 +0000266.. method:: BaseServer.server_activate()
Georg Brandl116aa622007-08-15 14:28:22 +0000267
268 Called by the server's constructor to activate the server. The default behavior
269 just :meth:`listen`\ s to the server's socket. May be overridden.
270
271
Benjamin Petersond23f8222009-04-05 19:13:16 +0000272.. method:: BaseServer.server_bind()
Georg Brandl116aa622007-08-15 14:28:22 +0000273
274 Called by the server's constructor to bind the socket to the desired address.
275 May be overridden.
276
277
Benjamin Petersond23f8222009-04-05 19:13:16 +0000278.. method:: BaseServer.verify_request(request, client_address)
Georg Brandl116aa622007-08-15 14:28:22 +0000279
280 Must return a Boolean value; if the value is :const:`True`, the request will be
281 processed, and if it's :const:`False`, the request will be denied. This function
282 can be overridden to implement access controls for a server. The default
283 implementation always returns :const:`True`.
284
285
286RequestHandler Objects
287----------------------
288
289The request handler class must define a new :meth:`handle` method, and can
290override any of the following methods. A new instance is created for each
291request.
292
293
Benjamin Petersond23f8222009-04-05 19:13:16 +0000294.. method:: RequestHandler.finish()
Georg Brandl116aa622007-08-15 14:28:22 +0000295
Georg Brandlb533e262008-05-25 18:19:30 +0000296 Called after the :meth:`handle` method to perform any clean-up actions
297 required. The default implementation does nothing. If :meth:`setup` or
298 :meth:`handle` raise an exception, this function will not be called.
Georg Brandl116aa622007-08-15 14:28:22 +0000299
300
Benjamin Petersond23f8222009-04-05 19:13:16 +0000301.. method:: RequestHandler.handle()
Georg Brandl116aa622007-08-15 14:28:22 +0000302
Georg Brandlb533e262008-05-25 18:19:30 +0000303 This function must do all the work required to service a request. The
304 default implementation does nothing. Several instance attributes are
305 available to it; the request is available as :attr:`self.request`; the client
306 address as :attr:`self.client_address`; and the server instance as
307 :attr:`self.server`, in case it needs access to per-server information.
Georg Brandl116aa622007-08-15 14:28:22 +0000308
Georg Brandlb533e262008-05-25 18:19:30 +0000309 The type of :attr:`self.request` is different for datagram or stream
310 services. For stream services, :attr:`self.request` is a socket object; for
311 datagram services, :attr:`self.request` is a pair of string and socket.
312 However, this can be hidden by using the request handler subclasses
313 :class:`StreamRequestHandler` or :class:`DatagramRequestHandler`, which
314 override the :meth:`setup` and :meth:`finish` methods, and provide
315 :attr:`self.rfile` and :attr:`self.wfile` attributes. :attr:`self.rfile` and
316 :attr:`self.wfile` can be read or written, respectively, to get the request
317 data or return data to the client.
Georg Brandl116aa622007-08-15 14:28:22 +0000318
319
Benjamin Petersond23f8222009-04-05 19:13:16 +0000320.. method:: RequestHandler.setup()
Georg Brandl116aa622007-08-15 14:28:22 +0000321
322 Called before the :meth:`handle` method to perform any initialization actions
323 required. The default implementation does nothing.
324
Georg Brandlb533e262008-05-25 18:19:30 +0000325
326Examples
327--------
328
329:class:`socketserver.TCPServer` Example
330~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
331
332This is the server side::
333
334 import socketserver
335
336 class MyTCPHandler(socketserver.BaseRequestHandler):
337 """
338 The RequestHandler class for our server.
339
340 It is instantiated once per connection to the server, and must
341 override the handle() method to implement communication to the
342 client.
343 """
344
345 def handle(self):
346 # self.request is the TCP socket connected to the client
347 self.data = self.request.recv(1024).strip()
Benjamin Peterson06fd5f82008-11-08 17:24:34 +0000348 print("%s wrote:" % self.client_address[0])
349 print(self.data)
Georg Brandlb533e262008-05-25 18:19:30 +0000350 # just send back the same data, but upper-cased
351 self.request.send(self.data.upper())
352
353 if __name__ == "__main__":
354 HOST, PORT = "localhost", 9999
355
356 # Create the server, binding to localhost on port 9999
357 server = socketserver.TCPServer((HOST, PORT), MyTCPHandler)
358
359 # Activate the server; this will keep running until you
360 # interrupt the program with Ctrl-C
361 server.serve_forever()
362
363An alternative request handler class that makes use of streams (file-like
364objects that simplify communication by providing the standard file interface)::
365
366 class MyTCPHandler(socketserver.StreamRequestHandler):
367
368 def handle(self):
369 # self.rfile is a file-like object created by the handler;
370 # we can now use e.g. readline() instead of raw recv() calls
371 self.data = self.rfile.readline().strip()
Benjamin Peterson06fd5f82008-11-08 17:24:34 +0000372 print("%s wrote:" % self.client_address[0])
373 print(self.data)
Georg Brandlb533e262008-05-25 18:19:30 +0000374 # Likewise, self.wfile is a file-like object used to write back
375 # to the client
376 self.wfile.write(self.data.upper())
377
378The difference is that the ``readline()`` call in the second handler will call
379``recv()`` multiple times until it encounters a newline character, while the
380single ``recv()`` call in the first handler will just return what has been sent
381from the client in one ``send()`` call.
382
383
384This is the client side::
385
386 import socket
387 import sys
388
389 HOST, PORT = "localhost", 9999
390 data = " ".join(sys.argv[1:])
391
392 # Create a socket (SOCK_STREAM means a TCP socket)
393 sock = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
394
395 # Connect to server and send data
396 sock.connect((HOST, PORT))
Benjamin Peterson06fd5f82008-11-08 17:24:34 +0000397 sock.send(bytes(data + "\n","utf8"))
Georg Brandlb533e262008-05-25 18:19:30 +0000398
399 # Receive data from the server and shut down
400 received = sock.recv(1024)
401 sock.close()
402
Benjamin Peterson06fd5f82008-11-08 17:24:34 +0000403 print("Sent: %s" % data)
404 print("Received: %s" % received)
Georg Brandlb533e262008-05-25 18:19:30 +0000405
406
407The output of the example should look something like this:
408
409Server::
410
411 $ python TCPServer.py
412 127.0.0.1 wrote:
Benjamin Peterson06fd5f82008-11-08 17:24:34 +0000413 b'hello world with TCP'
Georg Brandlb533e262008-05-25 18:19:30 +0000414 127.0.0.1 wrote:
Benjamin Peterson06fd5f82008-11-08 17:24:34 +0000415 b'python is nice'
Georg Brandlb533e262008-05-25 18:19:30 +0000416
417Client::
418
419 $ python TCPClient.py hello world with TCP
420 Sent: hello world with TCP
Benjamin Peterson06fd5f82008-11-08 17:24:34 +0000421 Received: b'HELLO WORLD WITH TCP'
Georg Brandlb533e262008-05-25 18:19:30 +0000422 $ python TCPClient.py python is nice
423 Sent: python is nice
Benjamin Peterson06fd5f82008-11-08 17:24:34 +0000424 Received: b'PYTHON IS NICE'
Georg Brandlb533e262008-05-25 18:19:30 +0000425
426
427:class:`socketserver.UDPServer` Example
428~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
429
430This is the server side::
431
432 import socketserver
433
434 class MyUDPHandler(socketserver.BaseRequestHandler):
435 """
436 This class works similar to the TCP handler class, except that
437 self.request consists of a pair of data and client socket, and since
438 there is no connection the client address must be given explicitly
439 when sending data back via sendto().
440 """
441
442 def handle(self):
443 data = self.request[0].strip()
444 socket = self.request[1]
Benjamin Peterson06fd5f82008-11-08 17:24:34 +0000445 print("%s wrote:" % self.client_address[0])
446 print(data)
Georg Brandlb533e262008-05-25 18:19:30 +0000447 socket.sendto(data.upper(), self.client_address)
448
449 if __name__ == "__main__":
Benjamin Peterson39778f62009-11-25 18:37:12 +0000450 HOST, PORT = "localhost", 9999
451 server = socketserver.UDPServer((HOST, PORT), MyUDPHandler)
452 server.serve_forever()
Georg Brandlb533e262008-05-25 18:19:30 +0000453
454This is the client side::
455
456 import socket
457 import sys
458
Benjamin Peterson06fd5f82008-11-08 17:24:34 +0000459 HOST, PORT = "localhost", 9999
Georg Brandlb533e262008-05-25 18:19:30 +0000460 data = " ".join(sys.argv[1:])
461
462 # SOCK_DGRAM is the socket type to use for UDP sockets
463 sock = socket.socket(socket.AF_INET, socket.SOCK_DGRAM)
464
465 # As you can see, there is no connect() call; UDP has no connections.
466 # Instead, data is directly sent to the recipient via sendto().
Benjamin Peterson06fd5f82008-11-08 17:24:34 +0000467 sock.sendto(bytes(data + "\n","utf8"), (HOST, PORT))
Georg Brandlb533e262008-05-25 18:19:30 +0000468 received = sock.recv(1024)
469
Benjamin Peterson06fd5f82008-11-08 17:24:34 +0000470 print("Sent: %s" % data)
471 print("Received: %s" % received)
Georg Brandlb533e262008-05-25 18:19:30 +0000472
473The output of the example should look exactly like for the TCP server example.
474
475
476Asynchronous Mixins
477~~~~~~~~~~~~~~~~~~~
478
479To build asynchronous handlers, use the :class:`ThreadingMixIn` and
480:class:`ForkingMixIn` classes.
481
482An example for the :class:`ThreadingMixIn` class::
483
484 import socket
485 import threading
486 import socketserver
487
488 class ThreadedTCPRequestHandler(socketserver.BaseRequestHandler):
489
490 def handle(self):
491 data = self.request.recv(1024)
Georg Brandlf9926402008-06-13 06:32:25 +0000492 cur_thread = threading.current_thread()
Benjamin Peterson06fd5f82008-11-08 17:24:34 +0000493 response = bytes("%s: %s" % (cur_thread.getName(), data),'ascii')
Georg Brandlb533e262008-05-25 18:19:30 +0000494 self.request.send(response)
495
496 class ThreadedTCPServer(socketserver.ThreadingMixIn, socketserver.TCPServer):
497 pass
498
499 def client(ip, port, message):
500 sock = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
501 sock.connect((ip, port))
502 sock.send(message)
503 response = sock.recv(1024)
Benjamin Peterson06fd5f82008-11-08 17:24:34 +0000504 print("Received: %s" % response)
Georg Brandlb533e262008-05-25 18:19:30 +0000505 sock.close()
506
507 if __name__ == "__main__":
508 # Port 0 means to select an arbitrary unused port
509 HOST, PORT = "localhost", 0
510
511 server = ThreadedTCPServer((HOST, PORT), ThreadedTCPRequestHandler)
512 ip, port = server.server_address
513
514 # Start a thread with the server -- that thread will then start one
515 # more thread for each request
516 server_thread = threading.Thread(target=server.serve_forever)
517 # Exit the server thread when the main thread terminates
Benjamin Peterson06fd5f82008-11-08 17:24:34 +0000518 server_thread.setDaemon(True)
Georg Brandlb533e262008-05-25 18:19:30 +0000519 server_thread.start()
Benjamin Petersond75fcb42009-02-19 04:22:03 +0000520 print("Server loop running in thread:", server_thread.name)
Georg Brandlb533e262008-05-25 18:19:30 +0000521
Benjamin Peterson06fd5f82008-11-08 17:24:34 +0000522 client(ip, port, b"Hello World 1")
523 client(ip, port, b"Hello World 2")
524 client(ip, port, b"Hello World 3")
Georg Brandlb533e262008-05-25 18:19:30 +0000525
526 server.shutdown()
527
Benjamin Peterson06fd5f82008-11-08 17:24:34 +0000528
Georg Brandlb533e262008-05-25 18:19:30 +0000529The output of the example should look something like this::
530
531 $ python ThreadedTCPServer.py
532 Server loop running in thread: Thread-1
Benjamin Peterson06fd5f82008-11-08 17:24:34 +0000533 Received: b"Thread-2: b'Hello World 1'"
534 Received: b"Thread-3: b'Hello World 2'"
535 Received: b"Thread-4: b'Hello World 3'"
Georg Brandlb533e262008-05-25 18:19:30 +0000536
537
538The :class:`ForkingMixIn` class is used in the same way, except that the server
539will spawn a new process for each request.