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