blob: a7a5427182bc633e1cae2a777fb8547c14baf37d [file] [log] [blame]
Guido van Rossum0039d7b1999-01-12 20:19:27 +00001# -*- Mode: Python; tab-width: 4 -*-
Andrew M. Kuchlingda85a272000-09-08 20:30:39 +00002# Id: asyncore.py,v 2.51 2000/09/07 22:29:26 rushing Exp
Guido van Rossum0039d7b1999-01-12 20:19:27 +00003# Author: Sam Rushing <rushing@nightmare.com>
4
5# ======================================================================
6# Copyright 1996 by Sam Rushing
7#
8# All Rights Reserved
9#
10# Permission to use, copy, modify, and distribute this software and
11# its documentation for any purpose and without fee is hereby
12# granted, provided that the above copyright notice appear in all
13# copies and that both that copyright notice and this permission
14# notice appear in supporting documentation, and that the name of Sam
15# Rushing not be used in advertising or publicity pertaining to
16# distribution of the software without specific, written prior
17# permission.
18#
19# SAM RUSHING DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
20# INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN
21# NO EVENT SHALL SAM RUSHING BE LIABLE FOR ANY SPECIAL, INDIRECT OR
22# CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS
23# OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT,
24# NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
25# CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
26# ======================================================================
27
Guido van Rossum4b8c6ea2000-02-04 15:39:30 +000028"""Basic infrastructure for asynchronous socket service clients and servers.
29
30There are only two ways to have a program on a single processor do "more
31than one thing at a time". Multi-threaded programming is the simplest and
32most popular way to do it, but there is another very different technique,
33that lets you have nearly all the advantages of multi-threading, without
34actually using multiple threads. it's really only practical if your program
35is largely I/O bound. If your program is CPU bound, then pre-emptive
36scheduled threads are probably what you really need. Network servers are
37rarely CPU-bound, however.
38
39If your operating system supports the select() system call in its I/O
40library (and nearly all do), then you can use it to juggle multiple
41communication channels at once; doing other work while your I/O is taking
42place in the "background." Although this strategy can seem strange and
43complex, especially at first, it is in many ways easier to understand and
44control than multi-threaded programming. The module documented here solves
45many of the difficult problems for you, making the task of building
46sophisticated high-performance network servers and clients a snap.
47"""
48
Andrew M. Kuchlingda85a272000-09-08 20:30:39 +000049import exceptions
Guido van Rossum0039d7b1999-01-12 20:19:27 +000050import select
51import socket
52import string
53import sys
54
55import os
56if os.name == 'nt':
57 EWOULDBLOCK = 10035
58 EINPROGRESS = 10036
59 EALREADY = 10037
60 ECONNRESET = 10054
61 ENOTCONN = 10057
Guido van Rossuma8d0f4f1999-06-08 13:20:05 +000062 ESHUTDOWN = 10058
Guido van Rossum0039d7b1999-01-12 20:19:27 +000063else:
Guido van Rossuma8d0f4f1999-06-08 13:20:05 +000064 from errno import EALREADY, EINPROGRESS, EWOULDBLOCK, ECONNRESET, ENOTCONN, ESHUTDOWN
Guido van Rossum0039d7b1999-01-12 20:19:27 +000065
Andrew M. Kuchlingda85a272000-09-08 20:30:39 +000066try:
67 socket_map
68except NameError:
69 socket_map = {}
Guido van Rossum0039d7b1999-01-12 20:19:27 +000070
Andrew M. Kuchlingda85a272000-09-08 20:30:39 +000071class ExitNow (exceptions.Exception):
72 pass
73
74DEBUG = 0
75
76def poll (timeout=0.0, map=None):
77 global DEBUG
78 if map is None:
79 map = socket_map
80 if map:
Guido van Rossuma8d0f4f1999-06-08 13:20:05 +000081 r = []; w = []; e = []
Andrew M. Kuchlingda85a272000-09-08 20:30:39 +000082 for fd, obj in map.items():
83 if obj.readable():
84 r.append (fd)
85 if obj.writable():
86 w.append (fd)
87 r,w,e = select.select (r,w,e, timeout)
Guido van Rossum0039d7b1999-01-12 20:19:27 +000088
Andrew M. Kuchlingda85a272000-09-08 20:30:39 +000089 if DEBUG:
90 print r,w,e
Guido van Rossum0039d7b1999-01-12 20:19:27 +000091
Andrew M. Kuchlingda85a272000-09-08 20:30:39 +000092 for fd in r:
Guido van Rossum0039d7b1999-01-12 20:19:27 +000093 try:
Andrew M. Kuchlingda85a272000-09-08 20:30:39 +000094 obj = map[fd]
95 try:
96 obj.handle_read_event()
97 except ExitNow:
98 raise ExitNow
99 except:
100 obj.handle_error()
101 except KeyError:
102 pass
Guido van Rossum0039d7b1999-01-12 20:19:27 +0000103
Andrew M. Kuchlingda85a272000-09-08 20:30:39 +0000104 for fd in w:
105 try:
106 obj = map[fd]
107 try:
108 obj.handle_write_event()
109 except ExitNow:
110 raise ExitNow
111 except:
112 obj.handle_error()
113 except KeyError:
114 pass
115
116def poll2 (timeout=0.0, map=None):
Guido van Rossum0039d7b1999-01-12 20:19:27 +0000117 import poll
Andrew M. Kuchlingda85a272000-09-08 20:30:39 +0000118 if map is None:
119 map=socket_map
Guido van Rossum0039d7b1999-01-12 20:19:27 +0000120 # timeout is in milliseconds
121 timeout = int(timeout*1000)
Andrew M. Kuchlingda85a272000-09-08 20:30:39 +0000122 if map:
Guido van Rossum0039d7b1999-01-12 20:19:27 +0000123 l = []
Andrew M. Kuchlingda85a272000-09-08 20:30:39 +0000124 for fd, obj in map.items():
Guido van Rossum0039d7b1999-01-12 20:19:27 +0000125 flags = 0
Andrew M. Kuchlingda85a272000-09-08 20:30:39 +0000126 if obj.readable():
Guido van Rossum0039d7b1999-01-12 20:19:27 +0000127 flags = poll.POLLIN
Andrew M. Kuchlingda85a272000-09-08 20:30:39 +0000128 if obj.writable():
Guido van Rossum0039d7b1999-01-12 20:19:27 +0000129 flags = flags | poll.POLLOUT
130 if flags:
Guido van Rossum23417942000-02-25 11:48:42 +0000131 l.append ((fd, flags))
Guido van Rossum0039d7b1999-01-12 20:19:27 +0000132 r = poll.poll (l, timeout)
Guido van Rossum0039d7b1999-01-12 20:19:27 +0000133 for fd, flags in r:
Guido van Rossum0039d7b1999-01-12 20:19:27 +0000134 try:
Andrew M. Kuchlingda85a272000-09-08 20:30:39 +0000135 obj = map[fd]
136 try:
137 if (flags & poll.POLLIN):
138 obj.handle_read_event()
139 if (flags & poll.POLLOUT):
140 obj.handle_write_event()
141 except ExitNow:
142 raise ExitNow
143 except:
144 obj.handle_error()
145 except KeyError:
146 pass
Guido van Rossum0039d7b1999-01-12 20:19:27 +0000147
Andrew M. Kuchlingda85a272000-09-08 20:30:39 +0000148def loop (timeout=30.0, use_poll=0, map=None):
Guido van Rossum0039d7b1999-01-12 20:19:27 +0000149
150 if use_poll:
151 poll_fun = poll2
152 else:
153 poll_fun = poll
154
Andrew M. Kuchlingda85a272000-09-08 20:30:39 +0000155 if map is None:
156 map=socket_map
157
158 while map:
159 poll_fun (timeout, map)
Guido van Rossum0039d7b1999-01-12 20:19:27 +0000160
161class dispatcher:
162 debug = 0
163 connected = 0
164 accepting = 0
165 closing = 0
166 addr = None
167
Andrew M. Kuchlingda85a272000-09-08 20:30:39 +0000168 def __init__ (self, sock=None, map=None):
Guido van Rossum0039d7b1999-01-12 20:19:27 +0000169 if sock:
Andrew M. Kuchlingda85a272000-09-08 20:30:39 +0000170 self.set_socket (sock, map)
Guido van Rossum0039d7b1999-01-12 20:19:27 +0000171 # I think it should inherit this anyway
172 self.socket.setblocking (0)
173 self.connected = 1
174
175 def __repr__ (self):
176 try:
177 status = []
178 if self.accepting and self.addr:
179 status.append ('listening')
180 elif self.connected:
181 status.append ('connected')
182 if self.addr:
183 status.append ('%s:%d' % self.addr)
184 return '<%s %s at %x>' % (
185 self.__class__.__name__,
186 string.join (status, ' '),
187 id(self)
188 )
189 except:
190 try:
191 ar = repr(self.addr)
192 except:
193 ar = 'no self.addr!'
194
195 return '<__repr__ (self) failed for object at %x (addr=%s)>' % (id(self),ar)
196
Andrew M. Kuchlingda85a272000-09-08 20:30:39 +0000197 def add_channel (self, map=None):
198 #self.log_info ('adding channel %s' % self)
199 if map is None:
200 map=socket_map
201 map [self._fileno] = self
Guido van Rossum0039d7b1999-01-12 20:19:27 +0000202
Andrew M. Kuchlingda85a272000-09-08 20:30:39 +0000203 def del_channel (self, map=None):
204 fd = self._fileno
205 if map is None:
206 map=socket_map
207 if map.has_key (fd):
208 #self.log_info ('closing channel %d:%s' % (fd, self))
209 del map [fd]
Guido van Rossum0039d7b1999-01-12 20:19:27 +0000210
211 def create_socket (self, family, type):
212 self.family_and_type = family, type
213 self.socket = socket.socket (family, type)
214 self.socket.setblocking(0)
Andrew M. Kuchlingda85a272000-09-08 20:30:39 +0000215 self._fileno = self.socket.fileno()
Guido van Rossum0039d7b1999-01-12 20:19:27 +0000216 self.add_channel()
217
Andrew M. Kuchlingda85a272000-09-08 20:30:39 +0000218 def set_socket (self, sock, map=None):
219 self.__dict__['socket'] = sock
220 self._fileno = sock.fileno()
221 self.add_channel (map)
Guido van Rossum0039d7b1999-01-12 20:19:27 +0000222
223 def set_reuse_addr (self):
224 # try to re-use a server port if possible
225 try:
226 self.socket.setsockopt (
227 socket.SOL_SOCKET, socket.SO_REUSEADDR,
228 self.socket.getsockopt (socket.SOL_SOCKET, socket.SO_REUSEADDR) | 1
229 )
230 except:
231 pass
232
233 # ==================================================
234 # predicates for select()
235 # these are used as filters for the lists of sockets
236 # to pass to select().
237 # ==================================================
238
239 def readable (self):
240 return 1
241
242 if os.name == 'mac':
243 # The macintosh will select a listening socket for
244 # write if you let it. What might this mean?
245 def writable (self):
246 return not self.accepting
247 else:
248 def writable (self):
249 return 1
250
251 # ==================================================
252 # socket object methods.
253 # ==================================================
254
255 def listen (self, num):
256 self.accepting = 1
257 if os.name == 'nt' and num > 5:
258 num = 1
259 return self.socket.listen (num)
260
261 def bind (self, addr):
262 self.addr = addr
263 return self.socket.bind (addr)
264
265 def connect (self, address):
Guido van Rossuma8d0f4f1999-06-08 13:20:05 +0000266 self.connected = 0
Guido van Rossum0039d7b1999-01-12 20:19:27 +0000267 try:
268 self.socket.connect (address)
269 except socket.error, why:
270 if why[0] in (EINPROGRESS, EALREADY, EWOULDBLOCK):
271 return
272 else:
273 raise socket.error, why
274 self.connected = 1
275 self.handle_connect()
276
277 def accept (self):
278 try:
279 conn, addr = self.socket.accept()
280 return conn, addr
281 except socket.error, why:
282 if why[0] == EWOULDBLOCK:
283 pass
284 else:
285 raise socket.error, why
286
287 def send (self, data):
288 try:
289 result = self.socket.send (data)
290 return result
291 except socket.error, why:
292 if why[0] == EWOULDBLOCK:
293 return 0
294 else:
295 raise socket.error, why
296 return 0
297
298 def recv (self, buffer_size):
299 try:
300 data = self.socket.recv (buffer_size)
301 if not data:
302 # a closed connection is indicated by signaling
303 # a read condition, and having recv() return 0.
304 self.handle_close()
305 return ''
306 else:
307 return data
308 except socket.error, why:
309 # winsock sometimes throws ENOTCONN
Guido van Rossuma8d0f4f1999-06-08 13:20:05 +0000310 if why[0] in [ECONNRESET, ENOTCONN, ESHUTDOWN]:
Guido van Rossum0039d7b1999-01-12 20:19:27 +0000311 self.handle_close()
312 return ''
313 else:
314 raise socket.error, why
315
316 def close (self):
317 self.del_channel()
318 self.socket.close()
Guido van Rossum0039d7b1999-01-12 20:19:27 +0000319
320 # cheap inheritance, used to pass all other attribute
321 # references to the underlying socket object.
322 def __getattr__ (self, attr):
Guido van Rossuma8d0f4f1999-06-08 13:20:05 +0000323 return getattr (self.socket, attr)
Guido van Rossum0039d7b1999-01-12 20:19:27 +0000324
Andrew M. Kuchlingda85a272000-09-08 20:30:39 +0000325 # log and log_info maybe overriden to provide more sophisitcated
326 # logging and warning methods. In general, log is for 'hit' logging
327 # and 'log_info' is for informational, warning and error logging.
328
Guido van Rossum0039d7b1999-01-12 20:19:27 +0000329 def log (self, message):
Andrew M. Kuchlingda85a272000-09-08 20:30:39 +0000330 sys.stderr.write ('log: %s\n' % str(message))
331
332 def log_info (self, message, type='info'):
333 if __debug__ or type != 'info':
334 print '%s: %s' % (type, message)
Guido van Rossum0039d7b1999-01-12 20:19:27 +0000335
336 def handle_read_event (self):
337 if self.accepting:
338 # for an accepting socket, getting a read implies
339 # that we are connected
340 if not self.connected:
341 self.connected = 1
342 self.handle_accept()
343 elif not self.connected:
344 self.handle_connect()
345 self.connected = 1
346 self.handle_read()
347 else:
348 self.handle_read()
349
350 def handle_write_event (self):
351 # getting a write implies that we are connected
352 if not self.connected:
353 self.handle_connect()
354 self.connected = 1
355 self.handle_write()
356
357 def handle_expt_event (self):
358 self.handle_expt()
359
Guido van Rossuma8d0f4f1999-06-08 13:20:05 +0000360 def handle_error (self):
361 (file,fun,line), t, v, tbinfo = compact_traceback()
Guido van Rossum0039d7b1999-01-12 20:19:27 +0000362
363 # sometimes a user repr method will crash.
364 try:
365 self_repr = repr (self)
366 except:
367 self_repr = '<__repr__ (self) failed for object at %0x>' % id(self)
368
Andrew M. Kuchlingda85a272000-09-08 20:30:39 +0000369 self.log_info (
Guido van Rossum0039d7b1999-01-12 20:19:27 +0000370 'uncaptured python exception, closing channel %s (%s:%s %s)' % (
371 self_repr,
Guido van Rossuma8d0f4f1999-06-08 13:20:05 +0000372 t,
373 v,
Guido van Rossum0039d7b1999-01-12 20:19:27 +0000374 tbinfo
Andrew M. Kuchlingda85a272000-09-08 20:30:39 +0000375 ),
376 'error'
Guido van Rossum0039d7b1999-01-12 20:19:27 +0000377 )
Guido van Rossum0039d7b1999-01-12 20:19:27 +0000378 self.close()
379
380 def handle_expt (self):
Andrew M. Kuchlingda85a272000-09-08 20:30:39 +0000381 self.log_info ('unhandled exception', 'warning')
Guido van Rossum0039d7b1999-01-12 20:19:27 +0000382
383 def handle_read (self):
Andrew M. Kuchlingda85a272000-09-08 20:30:39 +0000384 self.log_info ('unhandled read event', 'warning')
Guido van Rossum0039d7b1999-01-12 20:19:27 +0000385
386 def handle_write (self):
Andrew M. Kuchlingda85a272000-09-08 20:30:39 +0000387 self.log_info ('unhandled write event', 'warning')
Guido van Rossum0039d7b1999-01-12 20:19:27 +0000388
389 def handle_connect (self):
Andrew M. Kuchlingda85a272000-09-08 20:30:39 +0000390 self.log_info ('unhandled connect event', 'warning')
Guido van Rossum0039d7b1999-01-12 20:19:27 +0000391
392 def handle_accept (self):
Andrew M. Kuchlingda85a272000-09-08 20:30:39 +0000393 self.log_info ('unhandled accept event', 'warning')
Guido van Rossum0039d7b1999-01-12 20:19:27 +0000394
395 def handle_close (self):
Andrew M. Kuchlingda85a272000-09-08 20:30:39 +0000396 self.log_info ('unhandled close event', 'warning')
Guido van Rossum0039d7b1999-01-12 20:19:27 +0000397 self.close()
398
399# ---------------------------------------------------------------------------
400# adds simple buffered output capability, useful for simple clients.
401# [for more sophisticated usage use asynchat.async_chat]
402# ---------------------------------------------------------------------------
403
404class dispatcher_with_send (dispatcher):
405 def __init__ (self, sock=None):
406 dispatcher.__init__ (self, sock)
407 self.out_buffer = ''
408
409 def initiate_send (self):
410 num_sent = 0
411 num_sent = dispatcher.send (self, self.out_buffer[:512])
412 self.out_buffer = self.out_buffer[num_sent:]
413
414 def handle_write (self):
415 self.initiate_send()
416
417 def writable (self):
418 return (not self.connected) or len(self.out_buffer)
419
420 def send (self, data):
421 if self.debug:
Andrew M. Kuchlingda85a272000-09-08 20:30:39 +0000422 self.log_info ('sending %s' % repr(data))
Guido van Rossum0039d7b1999-01-12 20:19:27 +0000423 self.out_buffer = self.out_buffer + data
424 self.initiate_send()
425
426# ---------------------------------------------------------------------------
427# used for debugging.
428# ---------------------------------------------------------------------------
429
Guido van Rossuma8d0f4f1999-06-08 13:20:05 +0000430def compact_traceback ():
431 t,v,tb = sys.exc_info()
Guido van Rossum0039d7b1999-01-12 20:19:27 +0000432 tbinfo = []
433 while 1:
Guido van Rossum23417942000-02-25 11:48:42 +0000434 tbinfo.append ((
Guido van Rossum0039d7b1999-01-12 20:19:27 +0000435 tb.tb_frame.f_code.co_filename,
Andrew M. Kuchlingda85a272000-09-08 20:30:39 +0000436 tb.tb_frame.f_code.co_name,
Guido van Rossum0039d7b1999-01-12 20:19:27 +0000437 str(tb.tb_lineno)
Guido van Rossum23417942000-02-25 11:48:42 +0000438 ))
Guido van Rossum0039d7b1999-01-12 20:19:27 +0000439 tb = tb.tb_next
440 if not tb:
441 break
442
Guido van Rossuma8d0f4f1999-06-08 13:20:05 +0000443 # just to be safe
444 del tb
445
Guido van Rossum0039d7b1999-01-12 20:19:27 +0000446 file, function, line = tbinfo[-1]
447 info = '[' + string.join (
448 map (
449 lambda x: string.join (x, '|'),
450 tbinfo
451 ),
452 '] ['
453 ) + ']'
Guido van Rossuma8d0f4f1999-06-08 13:20:05 +0000454 return (file, function, line), t, v, info
Guido van Rossum0039d7b1999-01-12 20:19:27 +0000455
Andrew M. Kuchlingda85a272000-09-08 20:30:39 +0000456def close_all (map=None):
457 if map is None:
458 map=socket_map
459 for x in map.values():
Guido van Rossum0039d7b1999-01-12 20:19:27 +0000460 x.socket.close()
Andrew M. Kuchlingda85a272000-09-08 20:30:39 +0000461 map.clear()
Guido van Rossum0039d7b1999-01-12 20:19:27 +0000462
463# Asynchronous File I/O:
464#
465# After a little research (reading man pages on various unixen, and
466# digging through the linux kernel), I've determined that select()
467# isn't meant for doing doing asynchronous file i/o.
468# Heartening, though - reading linux/mm/filemap.c shows that linux
469# supports asynchronous read-ahead. So _MOST_ of the time, the data
470# will be sitting in memory for us already when we go to read it.
471#
472# What other OS's (besides NT) support async file i/o? [VMS?]
473#
474# Regardless, this is useful for pipes, and stdin/stdout...
475
476import os
477if os.name == 'posix':
478 import fcntl
479 import FCNTL
480
481 class file_wrapper:
482 # here we override just enough to make a file
483 # look like a socket for the purposes of asyncore.
484 def __init__ (self, fd):
485 self.fd = fd
486
487 def recv (self, *args):
488 return apply (os.read, (self.fd,)+args)
489
Andrew M. Kuchlingda85a272000-09-08 20:30:39 +0000490 def send (self, *args):
Guido van Rossum0039d7b1999-01-12 20:19:27 +0000491 return apply (os.write, (self.fd,)+args)
492
Andrew M. Kuchlingda85a272000-09-08 20:30:39 +0000493 read = recv
494 write = send
495
Guido van Rossum0039d7b1999-01-12 20:19:27 +0000496 def close (self):
497 return os.close (self.fd)
498
499 def fileno (self):
500 return self.fd
501
502 class file_dispatcher (dispatcher):
503 def __init__ (self, fd):
504 dispatcher.__init__ (self)
505 self.connected = 1
506 # set it to non-blocking mode
507 flags = fcntl.fcntl (fd, FCNTL.F_GETFL, 0)
508 flags = flags | FCNTL.O_NONBLOCK
509 fcntl.fcntl (fd, FCNTL.F_SETFL, flags)
510 self.set_file (fd)
511
512 def set_file (self, fd):
Andrew M. Kuchlingda85a272000-09-08 20:30:39 +0000513 self._fileno = fd
Guido van Rossum0039d7b1999-01-12 20:19:27 +0000514 self.socket = file_wrapper (fd)
515 self.add_channel()
Guido van Rossuma8d0f4f1999-06-08 13:20:05 +0000516