blob: 74aeb815e4dc40f9a4af33b8e644ae4d139ea662 [file] [log] [blame]
Alexandre Vassalottid192c922008-05-12 02:11:22 +00001:mod:`socketserver` --- A framework for network servers
Georg Brandl8ec7f652007-08-15 14:28:01 +00002=======================================================
3
Georg Brandl7a148c22008-05-12 10:03:16 +00004.. module:: SocketServer
5 :synopsis: Old name for the socketserver module.
6
Alexandre Vassalottid192c922008-05-12 02:11:22 +00007.. module:: socketserver
Georg Brandl8ec7f652007-08-15 14:28:01 +00008 :synopsis: A framework for network servers.
Georg Brandl7a148c22008-05-12 10:03:16 +00009
10.. note::
11 The :mod:`SocketServer` module has been renamed to :mod:`socketserver` in
12 Python 3.0. It is importable under both names in Python 2.6 and the rest of
13 the 2.x series.
Alexandre Vassalottifea23a42008-05-12 02:18:15 +000014
Georg Brandl8ec7f652007-08-15 14:28:01 +000015
Alexandre Vassalottid192c922008-05-12 02:11:22 +000016The :mod:`socketserver` module simplifies the task of writing network servers.
Georg Brandl8ec7f652007-08-15 14:28:01 +000017
18There are four basic server classes: :class:`TCPServer` uses the Internet TCP
19protocol, which provides for continuous streams of data between the client and
20server. :class:`UDPServer` uses datagrams, which are discrete packets of
21information that may arrive out of order or be lost while in transit. The more
22infrequently used :class:`UnixStreamServer` and :class:`UnixDatagramServer`
23classes are similar, but use Unix domain sockets; they're not available on
24non-Unix platforms. For more details on network programming, consult a book
25such as
26W. Richard Steven's UNIX Network Programming or Ralph Davis's Win32 Network
27Programming.
28
29These four classes process requests :dfn:`synchronously`; each request must be
30completed before the next request can be started. This isn't suitable if each
31request takes a long time to complete, because it requires a lot of computation,
32or because it returns a lot of data which the client is slow to process. The
33solution is to create a separate process or thread to handle each request; the
34:class:`ForkingMixIn` and :class:`ThreadingMixIn` mix-in classes can be used to
35support asynchronous behaviour.
36
37Creating a server requires several steps. First, you must create a request
38handler class by subclassing the :class:`BaseRequestHandler` class and
39overriding its :meth:`handle` method; this method will process incoming
40requests. Second, you must instantiate one of the server classes, passing it
41the server's address and the request handler class. Finally, call the
42:meth:`handle_request` or :meth:`serve_forever` method of the server object to
43process one or many requests.
44
45When inheriting from :class:`ThreadingMixIn` for threaded connection behavior,
46you should explicitly declare how you want your threads to behave on an abrupt
47shutdown. The :class:`ThreadingMixIn` class defines an attribute
48*daemon_threads*, which indicates whether or not the server should wait for
49thread termination. You should set the flag explicitly if you would like threads
50to behave autonomously; the default is :const:`False`, meaning that Python will
51not exit until all threads created by :class:`ThreadingMixIn` have exited.
52
53Server classes have the same external methods and attributes, no matter what
Andrew M. Kuchlinge45a77a2008-01-19 16:26:13 +000054network protocol they use.
Georg Brandl8ec7f652007-08-15 14:28:01 +000055
56
57Server Creation Notes
58---------------------
59
60There are five classes in an inheritance diagram, four of which represent
61synchronous servers of four types::
62
63 +------------+
64 | BaseServer |
65 +------------+
66 |
67 v
68 +-----------+ +------------------+
69 | TCPServer |------->| UnixStreamServer |
70 +-----------+ +------------------+
71 |
72 v
73 +-----------+ +--------------------+
74 | UDPServer |------->| UnixDatagramServer |
75 +-----------+ +--------------------+
76
77Note that :class:`UnixDatagramServer` derives from :class:`UDPServer`, not from
78:class:`UnixStreamServer` --- the only difference between an IP and a Unix
79stream server is the address family, which is simply repeated in both Unix
80server classes.
81
82Forking and threading versions of each type of server can be created using the
83:class:`ForkingMixIn` and :class:`ThreadingMixIn` mix-in classes. For instance,
84a threading UDP server class is created as follows::
85
86 class ThreadingUDPServer(ThreadingMixIn, UDPServer): pass
87
88The mix-in class must come first, since it overrides a method defined in
89:class:`UDPServer`. Setting the various member variables also changes the
90behavior of the underlying server mechanism.
91
92To implement a service, you must derive a class from :class:`BaseRequestHandler`
93and redefine its :meth:`handle` method. You can then run various versions of
94the service by combining one of the server classes with your request handler
95class. The request handler class must be different for datagram or stream
96services. This can be hidden by using the handler subclasses
97:class:`StreamRequestHandler` or :class:`DatagramRequestHandler`.
98
99Of course, you still have to use your head! For instance, it makes no sense to
100use a forking server if the service contains state in memory that can be
101modified by different requests, since the modifications in the child process
102would never reach the initial state kept in the parent process and passed to
103each child. In this case, you can use a threading server, but you will probably
104have to use locks to protect the integrity of the shared data.
105
106On the other hand, if you are building an HTTP server where all data is stored
107externally (for instance, in the file system), a synchronous class will
108essentially render the service "deaf" while one request is being handled --
109which may be for a very long time if a client is slow to receive all the data it
110has requested. Here a threading or forking server is appropriate.
111
112In some cases, it may be appropriate to process part of a request synchronously,
113but to finish processing in a forked child depending on the request data. This
114can be implemented by using a synchronous server and doing an explicit fork in
115the request handler class :meth:`handle` method.
116
117Another approach to handling multiple simultaneous requests in an environment
118that supports neither threads nor :func:`fork` (or where these are too expensive
119or inappropriate for the service) is to maintain an explicit table of partially
120finished requests and to use :func:`select` to decide which request to work on
121next (or whether to handle a new incoming request). This is particularly
122important for stream services where each client can potentially be connected for
Jeffrey Yasskine75f59a2008-03-07 06:22:15 +0000123a long time (if threads or subprocesses cannot be used). See :mod:`asyncore` for
124another way to manage this.
Georg Brandl8ec7f652007-08-15 14:28:01 +0000125
Georg Brandlb19be572007-12-29 10:57:00 +0000126.. XXX should data and methods be intermingled, or separate?
127 how should the distinction between class and instance variables be drawn?
Georg Brandl8ec7f652007-08-15 14:28:01 +0000128
129
130Server Objects
131--------------
132
133
134.. function:: fileno()
135
136 Return an integer file descriptor for the socket on which the server is
137 listening. This function is most commonly passed to :func:`select.select`, to
138 allow monitoring multiple servers in the same process.
139
140
141.. function:: handle_request()
142
Jeffrey Yasskine75f59a2008-03-07 06:22:15 +0000143 Process a single request. This function calls the following methods in
144 order: :meth:`get_request`, :meth:`verify_request`, and
145 :meth:`process_request`. If the user-provided :meth:`handle` method of the
146 handler class raises an exception, the server's :meth:`handle_error` method
147 will be called. If no request is received within :attr:`self.timeout`
148 seconds, :meth:`handle_timeout` will be called and :meth:`handle_request`
149 will return.
Georg Brandl8ec7f652007-08-15 14:28:01 +0000150
151
Jeffrey Yasskine75f59a2008-03-07 06:22:15 +0000152.. function:: serve_forever(poll_interval=0.5)
Georg Brandl8ec7f652007-08-15 14:28:01 +0000153
Jeffrey Yasskine75f59a2008-03-07 06:22:15 +0000154 Handle requests until an explicit :meth:`shutdown` request. Polls for
155 shutdown every *poll_interval* seconds.
156
157
158.. function:: shutdown()
159
160 Tells the :meth:`serve_forever` loop to stop and waits until it does.
Georg Brandl8ec7f652007-08-15 14:28:01 +0000161
162
163.. data:: address_family
164
165 The family of protocols to which the server's socket belongs.
Georg Brandl0aaf5592008-05-11 10:59:39 +0000166 Common examples are :const:`socket.AF_INET` and :const:`socket.AF_UNIX`.
Georg Brandl8ec7f652007-08-15 14:28:01 +0000167
168
169.. data:: RequestHandlerClass
170
171 The user-provided request handler class; an instance of this class is created
172 for each request.
173
174
175.. data:: server_address
176
177 The address on which the server is listening. The format of addresses varies
178 depending on the protocol family; see the documentation for the socket module
179 for details. For Internet protocols, this is a tuple containing a string giving
180 the address, and an integer port number: ``('127.0.0.1', 80)``, for example.
181
182
183.. data:: socket
184
185 The socket object on which the server will listen for incoming requests.
186
187The server classes support the following class variables:
188
Georg Brandlb19be572007-12-29 10:57:00 +0000189.. XXX should class variables be covered before instance variables, or vice versa?
Georg Brandl8ec7f652007-08-15 14:28:01 +0000190
191
192.. data:: allow_reuse_address
193
194 Whether the server will allow the reuse of an address. This defaults to
195 :const:`False`, and can be set in subclasses to change the policy.
196
197
198.. data:: request_queue_size
199
200 The size of the request queue. If it takes a long time to process a single
201 request, any requests that arrive while the server is busy are placed into a
202 queue, up to :attr:`request_queue_size` requests. Once the queue is full,
203 further requests from clients will get a "Connection denied" error. The default
204 value is usually 5, but this can be overridden by subclasses.
205
206
207.. data:: socket_type
208
209 The type of socket used by the server; :const:`socket.SOCK_STREAM` and
Georg Brandl0aaf5592008-05-11 10:59:39 +0000210 :const:`socket.SOCK_DGRAM` are two common values.
Georg Brandl8ec7f652007-08-15 14:28:01 +0000211
Andrew M. Kuchlinge45a77a2008-01-19 16:26:13 +0000212.. data:: timeout
213
Jeffrey Yasskine75f59a2008-03-07 06:22:15 +0000214 Timeout duration, measured in seconds, or :const:`None` if no timeout is
215 desired. If :meth:`handle_request` receives no incoming requests within the
216 timeout period, the :meth:`handle_timeout` method is called.
Andrew M. Kuchlinge45a77a2008-01-19 16:26:13 +0000217
Georg Brandl8ec7f652007-08-15 14:28:01 +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
Georg Brandlb19be572007-12-29 10:57:00 +0000222.. XXX should the default implementations of these be documented, or should
Alexandre Vassalottid192c922008-05-12 02:11:22 +0000223 it be assumed that the user will look at socketserver.py?
Georg Brandl8ec7f652007-08-15 14:28:01 +0000224
225
226.. function:: finish_request()
227
228 Actually processes the request by instantiating :attr:`RequestHandlerClass` and
229 calling its :meth:`handle` method.
230
231
232.. function:: get_request()
233
234 Must accept a request from the socket, and return a 2-tuple containing the *new*
235 socket object to be used to communicate with the client, and the client's
236 address.
237
238
239.. function:: handle_error(request, client_address)
240
241 This function is called if the :attr:`RequestHandlerClass`'s :meth:`handle`
242 method raises an exception. The default action is to print the traceback to
243 standard output and continue handling further requests.
244
Andrew M. Kuchlinge45a77a2008-01-19 16:26:13 +0000245.. function:: handle_timeout()
246
247 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
249 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 Brandl8ec7f652007-08-15 14:28:01 +0000252
253.. function:: process_request(request, client_address)
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
Georg Brandlb19be572007-12-29 10:57:00 +0000260.. Is there any point in documenting the following two functions?
261 What would the purpose of overriding them be: initializing server
262 instance variables, adding new network families?
Georg Brandl8ec7f652007-08-15 14:28:01 +0000263
264
265.. function:: server_activate()
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
271.. function:: server_bind()
272
273 Called by the server's constructor to bind the socket to the desired address.
274 May be overridden.
275
276
277.. function:: verify_request(request, client_address)
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
285RequestHandler Objects
286----------------------
287
288The request handler class must define a new :meth:`handle` method, and can
289override any of the following methods. A new instance is created for each
290request.
291
292
293.. function:: finish()
294
295 Called after the :meth:`handle` method to perform any clean-up actions required.
296 The default implementation does nothing. If :meth:`setup` or :meth:`handle`
297 raise an exception, this function will not be called.
298
299
300.. function:: handle()
301
302 This function must do all the work required to service a request. The default
303 implementation does nothing. Several instance attributes are available to it;
304 the request is available as :attr:`self.request`; the client address as
305 :attr:`self.client_address`; and the server instance as :attr:`self.server`, in
306 case it needs access to per-server information.
307
308 The type of :attr:`self.request` is different for datagram or stream services.
309 For stream services, :attr:`self.request` is a socket object; for datagram
310 services, :attr:`self.request` is a string. However, this can be hidden by using
311 the request handler subclasses :class:`StreamRequestHandler` or
312 :class:`DatagramRequestHandler`, which override the :meth:`setup` and
313 :meth:`finish` methods, and provide :attr:`self.rfile` and :attr:`self.wfile`
314 attributes. :attr:`self.rfile` and :attr:`self.wfile` can be read or written,
315 respectively, to get the request data or return data to the client.
316
317
318.. function:: setup()
319
320 Called before the :meth:`handle` method to perform any initialization actions
321 required. The default implementation does nothing.
322