blob: 613804d413f1de164b7d495c87063ba2f2c650e4 [file] [log] [blame]
Fred Drake526a1822000-09-11 04:00:46 +00001# -*- Mode: Python -*-
Tim Peters146965a2001-01-14 18:09:23 +00002# Id: asyncore.py,v 2.51 2000/09/07 22:29:26 rushing Exp
Fred Drake526a1822000-09-11 04:00:46 +00003# Author: Sam Rushing <rushing@nightmare.com>
Guido van Rossum0039d7b1999-01-12 20:19:27 +00004
5# ======================================================================
6# Copyright 1996 by Sam Rushing
Tim Peters146965a2001-01-14 18:09:23 +00007#
Guido van Rossum0039d7b1999-01-12 20:19:27 +00008# All Rights Reserved
Tim Peters146965a2001-01-14 18:09:23 +00009#
Guido van Rossum0039d7b1999-01-12 20:19:27 +000010# 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.
Tim Peters146965a2001-01-14 18:09:23 +000018#
Guido van Rossum0039d7b1999-01-12 20:19:27 +000019# 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
Tim Peters146965a2001-01-14 18:09:23 +000031than one thing at a time". Multi-threaded programming is the simplest and
Guido van Rossum4b8c6ea2000-02-04 15:39:30 +000032most 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
Tim Peters146965a2001-01-14 18:09:23 +000037rarely CPU-bound, however.
Guido van Rossum4b8c6ea2000-02-04 15:39:30 +000038
Tim Peters146965a2001-01-14 18:09:23 +000039If your operating system supports the select() system call in its I/O
Guido van Rossum4b8c6ea2000-02-04 15:39:30 +000040library (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
Tim Peters146965a2001-01-14 18:09:23 +000046sophisticated high-performance network servers and clients a snap.
Guido van Rossum4b8c6ea2000-02-04 15:39:30 +000047"""
48
Andrew M. Kuchlingda85a272000-09-08 20:30:39 +000049import exceptions
Guido van Rossum0039d7b1999-01-12 20:19:27 +000050import select
51import socket
Guido van Rossum0039d7b1999-01-12 20:19:27 +000052import sys
53
54import os
Jeremy Hyltona8b5f7d2001-08-10 14:30:35 +000055from errno import EALREADY, EINPROGRESS, EWOULDBLOCK, ECONNRESET, \
Jeremy Hyltonfbd57972001-10-29 16:32:19 +000056 ENOTCONN, ESHUTDOWN, EINTR
Guido van Rossum0039d7b1999-01-12 20:19:27 +000057
Andrew M. Kuchlingda85a272000-09-08 20:30:39 +000058try:
Fred Drake526a1822000-09-11 04:00:46 +000059 socket_map
Andrew M. Kuchlingda85a272000-09-08 20:30:39 +000060except NameError:
Fred Drake526a1822000-09-11 04:00:46 +000061 socket_map = {}
Guido van Rossum0039d7b1999-01-12 20:19:27 +000062
Andrew M. Kuchlingda85a272000-09-08 20:30:39 +000063class ExitNow (exceptions.Exception):
Fred Drake526a1822000-09-11 04:00:46 +000064 pass
Andrew M. Kuchlingda85a272000-09-08 20:30:39 +000065
66DEBUG = 0
67
68def poll (timeout=0.0, map=None):
Fred Drake526a1822000-09-11 04:00:46 +000069 if map is None:
70 map = socket_map
71 if map:
72 r = []; w = []; e = []
73 for fd, obj in map.items():
74 if obj.readable():
75 r.append (fd)
76 if obj.writable():
77 w.append (fd)
Jeremy Hyltonfbd57972001-10-29 16:32:19 +000078 try:
79 r,w,e = select.select (r,w,e, timeout)
80 except select.error, err:
81 if err[0] != EINTR:
82 raise
Guido van Rossum0039d7b1999-01-12 20:19:27 +000083
Fred Drake526a1822000-09-11 04:00:46 +000084 if DEBUG:
85 print r,w,e
Guido van Rossum0039d7b1999-01-12 20:19:27 +000086
Fred Drake526a1822000-09-11 04:00:46 +000087 for fd in r:
88 try:
89 obj = map[fd]
Fred Drake526a1822000-09-11 04:00:46 +000090 except KeyError:
Martin v. Löwis6ec9a362001-10-09 10:10:33 +000091 continue
92
93 try:
94 obj.handle_read_event()
95 except ExitNow:
96 raise ExitNow
97 except:
98 obj.handle_error()
Guido van Rossum0039d7b1999-01-12 20:19:27 +000099
Fred Drake526a1822000-09-11 04:00:46 +0000100 for fd in w:
101 try:
102 obj = map[fd]
Fred Drake526a1822000-09-11 04:00:46 +0000103 except KeyError:
Martin v. Löwis6ec9a362001-10-09 10:10:33 +0000104 continue
105
106 try:
107 obj.handle_write_event()
108 except ExitNow:
109 raise ExitNow
110 except:
111 obj.handle_error()
Andrew M. Kuchlingda85a272000-09-08 20:30:39 +0000112
113def poll2 (timeout=0.0, map=None):
Fred Drake526a1822000-09-11 04:00:46 +0000114 import poll
115 if map is None:
116 map=socket_map
Martin v. Löwisf6cc07c2001-09-19 17:31:47 +0000117 if timeout is not None:
118 # timeout is in milliseconds
119 timeout = int(timeout*1000)
Fred Drake526a1822000-09-11 04:00:46 +0000120 if map:
121 l = []
122 for fd, obj in map.items():
123 flags = 0
124 if obj.readable():
125 flags = poll.POLLIN
126 if obj.writable():
127 flags = flags | poll.POLLOUT
128 if flags:
129 l.append ((fd, flags))
130 r = poll.poll (l, timeout)
131 for fd, flags in r:
132 try:
133 obj = map[fd]
Fred Drake526a1822000-09-11 04:00:46 +0000134 except KeyError:
Martin v. Löwis6ec9a362001-10-09 10:10:33 +0000135 continue
136
137 try:
138 if (flags & poll.POLLIN):
139 obj.handle_read_event()
140 if (flags & poll.POLLOUT):
141 obj.handle_write_event()
142 except ExitNow:
143 raise ExitNow
144 except:
145 obj.handle_error()
Guido van Rossum0039d7b1999-01-12 20:19:27 +0000146
Andrew M. Kuchlingaf6963c2001-01-24 15:50:19 +0000147def poll3 (timeout=0.0, map=None):
148 # Use the poll() support added to the select module in Python 2.0
149 if map is None:
150 map=socket_map
Martin v. Löwisf6cc07c2001-09-19 17:31:47 +0000151 if timeout is not None:
152 # timeout is in milliseconds
153 timeout = int(timeout*1000)
Andrew M. Kuchlingaf6963c2001-01-24 15:50:19 +0000154 pollster = select.poll()
155 if map:
Andrew M. Kuchlingaf6963c2001-01-24 15:50:19 +0000156 for fd, obj in map.items():
157 flags = 0
158 if obj.readable():
159 flags = select.POLLIN
160 if obj.writable():
161 flags = flags | select.POLLOUT
162 if flags:
163 pollster.register(fd, flags)
Jeremy Hyltonfbd57972001-10-29 16:32:19 +0000164 try:
165 r = pollster.poll (timeout)
166 except select.error, err:
167 if err[0] != EINTR:
168 raise
169 r = []
Andrew M. Kuchlingaf6963c2001-01-24 15:50:19 +0000170 for fd, flags in r:
171 try:
172 obj = map[fd]
Andrew M. Kuchlingaf6963c2001-01-24 15:50:19 +0000173 except KeyError:
Martin v. Löwis6ec9a362001-10-09 10:10:33 +0000174 continue
175
176 try:
177 if (flags & select.POLLIN):
178 obj.handle_read_event()
179 if (flags & select.POLLOUT):
180 obj.handle_write_event()
181 except ExitNow:
182 raise ExitNow
183 except:
184 obj.handle_error()
Andrew M. Kuchlingaf6963c2001-01-24 15:50:19 +0000185
Andrew M. Kuchlingda85a272000-09-08 20:30:39 +0000186def loop (timeout=30.0, use_poll=0, map=None):
Guido van Rossum0039d7b1999-01-12 20:19:27 +0000187
Andrew M. Kuchlingaf6963c2001-01-24 15:50:19 +0000188 if map is None:
189 map=socket_map
190
Fred Drake526a1822000-09-11 04:00:46 +0000191 if use_poll:
Andrew M. Kuchlingaf6963c2001-01-24 15:50:19 +0000192 if hasattr (select, 'poll'):
193 poll_fun = poll3
194 else:
195 poll_fun = poll2
Fred Drake526a1822000-09-11 04:00:46 +0000196 else:
197 poll_fun = poll
Guido van Rossum0039d7b1999-01-12 20:19:27 +0000198
Fred Drake526a1822000-09-11 04:00:46 +0000199 while map:
200 poll_fun (timeout, map)
Guido van Rossum0039d7b1999-01-12 20:19:27 +0000201
202class dispatcher:
Fred Drake526a1822000-09-11 04:00:46 +0000203 debug = 0
204 connected = 0
205 accepting = 0
206 closing = 0
207 addr = None
Guido van Rossum0039d7b1999-01-12 20:19:27 +0000208
Fred Drake526a1822000-09-11 04:00:46 +0000209 def __init__ (self, sock=None, map=None):
210 if sock:
211 self.set_socket (sock, map)
212 # I think it should inherit this anyway
213 self.socket.setblocking (0)
214 self.connected = 1
Andrew M. Kuchling4602c1b2001-10-03 17:07:25 +0000215 self.addr = sock.getpeername()
Jeremy Hyltonfbd57972001-10-29 16:32:19 +0000216 else:
217 self.socket = None
Guido van Rossum0039d7b1999-01-12 20:19:27 +0000218
Fred Drake526a1822000-09-11 04:00:46 +0000219 def __repr__ (self):
Martin v. Löwis29103c72001-10-18 17:33:19 +0000220 status = [self.__class__.__module__+"."+self.__class__.__name__]
221 if self.accepting and self.addr:
222 status.append ('listening')
223 elif self.connected:
224 status.append ('connected')
225 if self.addr is not None:
226 try:
227 status.append ('%s:%d' % self.addr)
228 except TypeError:
229 status.append (repr(self.addr))
230 return '<%s at %#x>' % (' '.join (status), id (self))
Guido van Rossum0039d7b1999-01-12 20:19:27 +0000231
Fred Drake526a1822000-09-11 04:00:46 +0000232 def add_channel (self, map=None):
233 #self.log_info ('adding channel %s' % self)
234 if map is None:
235 map=socket_map
236 map [self._fileno] = self
Guido van Rossum0039d7b1999-01-12 20:19:27 +0000237
Fred Drake526a1822000-09-11 04:00:46 +0000238 def del_channel (self, map=None):
239 fd = self._fileno
240 if map is None:
241 map=socket_map
242 if map.has_key (fd):
243 #self.log_info ('closing channel %d:%s' % (fd, self))
244 del map [fd]
Guido van Rossum0039d7b1999-01-12 20:19:27 +0000245
Fred Drake526a1822000-09-11 04:00:46 +0000246 def create_socket (self, family, type):
247 self.family_and_type = family, type
248 self.socket = socket.socket (family, type)
249 self.socket.setblocking(0)
250 self._fileno = self.socket.fileno()
251 self.add_channel()
Guido van Rossum0039d7b1999-01-12 20:19:27 +0000252
Fred Drake526a1822000-09-11 04:00:46 +0000253 def set_socket (self, sock, map=None):
Jeremy Hyltonfbd57972001-10-29 16:32:19 +0000254 self.socket = sock
255## self.__dict__['socket'] = sock
Fred Drake526a1822000-09-11 04:00:46 +0000256 self._fileno = sock.fileno()
257 self.add_channel (map)
Guido van Rossum0039d7b1999-01-12 20:19:27 +0000258
Fred Drake526a1822000-09-11 04:00:46 +0000259 def set_reuse_addr (self):
260 # try to re-use a server port if possible
261 try:
262 self.socket.setsockopt (
263 socket.SOL_SOCKET, socket.SO_REUSEADDR,
Jeremy Hyltona8b5f7d2001-08-10 14:30:35 +0000264 self.socket.getsockopt (socket.SOL_SOCKET,
265 socket.SO_REUSEADDR) | 1
Fred Drake526a1822000-09-11 04:00:46 +0000266 )
Fred Drake9f9b5932001-05-11 18:28:54 +0000267 except socket.error:
Fred Drake526a1822000-09-11 04:00:46 +0000268 pass
Guido van Rossum0039d7b1999-01-12 20:19:27 +0000269
Fred Drake526a1822000-09-11 04:00:46 +0000270 # ==================================================
271 # predicates for select()
272 # these are used as filters for the lists of sockets
273 # to pass to select().
274 # ==================================================
Guido van Rossum0039d7b1999-01-12 20:19:27 +0000275
Fred Drake526a1822000-09-11 04:00:46 +0000276 def readable (self):
277 return 1
Guido van Rossum0039d7b1999-01-12 20:19:27 +0000278
Fred Drake526a1822000-09-11 04:00:46 +0000279 if os.name == 'mac':
280 # The macintosh will select a listening socket for
281 # write if you let it. What might this mean?
282 def writable (self):
283 return not self.accepting
284 else:
285 def writable (self):
286 return 1
Guido van Rossum0039d7b1999-01-12 20:19:27 +0000287
Fred Drake526a1822000-09-11 04:00:46 +0000288 # ==================================================
289 # socket object methods.
290 # ==================================================
Guido van Rossum0039d7b1999-01-12 20:19:27 +0000291
Fred Drake526a1822000-09-11 04:00:46 +0000292 def listen (self, num):
293 self.accepting = 1
294 if os.name == 'nt' and num > 5:
295 num = 1
296 return self.socket.listen (num)
Guido van Rossum0039d7b1999-01-12 20:19:27 +0000297
Fred Drake526a1822000-09-11 04:00:46 +0000298 def bind (self, addr):
299 self.addr = addr
300 return self.socket.bind (addr)
Guido van Rossum0039d7b1999-01-12 20:19:27 +0000301
Fred Drake526a1822000-09-11 04:00:46 +0000302 def connect (self, address):
303 self.connected = 0
Jeremy Hylton12e73bb2001-04-20 19:04:55 +0000304 # XXX why not use connect_ex?
Fred Drake526a1822000-09-11 04:00:46 +0000305 try:
306 self.socket.connect (address)
307 except socket.error, why:
308 if why[0] in (EINPROGRESS, EALREADY, EWOULDBLOCK):
309 return
310 else:
311 raise socket.error, why
Andrew M. Kuchling4602c1b2001-10-03 17:07:25 +0000312 self.addr = address
Fred Drake526a1822000-09-11 04:00:46 +0000313 self.connected = 1
314 self.handle_connect()
Guido van Rossum0039d7b1999-01-12 20:19:27 +0000315
Fred Drake526a1822000-09-11 04:00:46 +0000316 def accept (self):
317 try:
318 conn, addr = self.socket.accept()
319 return conn, addr
320 except socket.error, why:
321 if why[0] == EWOULDBLOCK:
322 pass
323 else:
324 raise socket.error, why
Guido van Rossum0039d7b1999-01-12 20:19:27 +0000325
Fred Drake526a1822000-09-11 04:00:46 +0000326 def send (self, data):
327 try:
328 result = self.socket.send (data)
329 return result
330 except socket.error, why:
331 if why[0] == EWOULDBLOCK:
332 return 0
333 else:
334 raise socket.error, why
335 return 0
Guido van Rossum0039d7b1999-01-12 20:19:27 +0000336
Fred Drake526a1822000-09-11 04:00:46 +0000337 def recv (self, buffer_size):
338 try:
339 data = self.socket.recv (buffer_size)
340 if not data:
341 # a closed connection is indicated by signaling
342 # a read condition, and having recv() return 0.
343 self.handle_close()
344 return ''
345 else:
346 return data
347 except socket.error, why:
348 # winsock sometimes throws ENOTCONN
349 if why[0] in [ECONNRESET, ENOTCONN, ESHUTDOWN]:
350 self.handle_close()
351 return ''
352 else:
353 raise socket.error, why
Guido van Rossum0039d7b1999-01-12 20:19:27 +0000354
Fred Drake526a1822000-09-11 04:00:46 +0000355 def close (self):
356 self.del_channel()
357 self.socket.close()
Guido van Rossum0039d7b1999-01-12 20:19:27 +0000358
Fred Drake526a1822000-09-11 04:00:46 +0000359 # cheap inheritance, used to pass all other attribute
360 # references to the underlying socket object.
361 def __getattr__ (self, attr):
362 return getattr (self.socket, attr)
Guido van Rossum0039d7b1999-01-12 20:19:27 +0000363
Fred Drake526a1822000-09-11 04:00:46 +0000364 # log and log_info maybe overriden to provide more sophisitcated
365 # logging and warning methods. In general, log is for 'hit' logging
Tim Peters146965a2001-01-14 18:09:23 +0000366 # and 'log_info' is for informational, warning and error logging.
Andrew M. Kuchlingda85a272000-09-08 20:30:39 +0000367
Fred Drake526a1822000-09-11 04:00:46 +0000368 def log (self, message):
369 sys.stderr.write ('log: %s\n' % str(message))
Andrew M. Kuchlingda85a272000-09-08 20:30:39 +0000370
Fred Drake526a1822000-09-11 04:00:46 +0000371 def log_info (self, message, type='info'):
372 if __debug__ or type != 'info':
373 print '%s: %s' % (type, message)
Guido van Rossum0039d7b1999-01-12 20:19:27 +0000374
Fred Drake526a1822000-09-11 04:00:46 +0000375 def handle_read_event (self):
376 if self.accepting:
377 # for an accepting socket, getting a read implies
378 # that we are connected
379 if not self.connected:
380 self.connected = 1
381 self.handle_accept()
382 elif not self.connected:
383 self.handle_connect()
384 self.connected = 1
385 self.handle_read()
386 else:
387 self.handle_read()
Guido van Rossum0039d7b1999-01-12 20:19:27 +0000388
Fred Drake526a1822000-09-11 04:00:46 +0000389 def handle_write_event (self):
390 # getting a write implies that we are connected
391 if not self.connected:
392 self.handle_connect()
393 self.connected = 1
394 self.handle_write()
Guido van Rossum0039d7b1999-01-12 20:19:27 +0000395
Fred Drake526a1822000-09-11 04:00:46 +0000396 def handle_expt_event (self):
397 self.handle_expt()
Guido van Rossum0039d7b1999-01-12 20:19:27 +0000398
Fred Drake526a1822000-09-11 04:00:46 +0000399 def handle_error (self):
Jeremy Hyltona8b5f7d2001-08-10 14:30:35 +0000400 nil, t, v, tbinfo = compact_traceback()
Guido van Rossum0039d7b1999-01-12 20:19:27 +0000401
Fred Drake526a1822000-09-11 04:00:46 +0000402 # sometimes a user repr method will crash.
403 try:
404 self_repr = repr (self)
405 except:
406 self_repr = '<__repr__ (self) failed for object at %0x>' % id(self)
Guido van Rossum0039d7b1999-01-12 20:19:27 +0000407
Fred Drake526a1822000-09-11 04:00:46 +0000408 self.log_info (
409 'uncaptured python exception, closing channel %s (%s:%s %s)' % (
410 self_repr,
411 t,
412 v,
413 tbinfo
414 ),
415 'error'
416 )
417 self.close()
Guido van Rossum0039d7b1999-01-12 20:19:27 +0000418
Fred Drake526a1822000-09-11 04:00:46 +0000419 def handle_expt (self):
420 self.log_info ('unhandled exception', 'warning')
Guido van Rossum0039d7b1999-01-12 20:19:27 +0000421
Fred Drake526a1822000-09-11 04:00:46 +0000422 def handle_read (self):
423 self.log_info ('unhandled read event', 'warning')
Guido van Rossum0039d7b1999-01-12 20:19:27 +0000424
Fred Drake526a1822000-09-11 04:00:46 +0000425 def handle_write (self):
426 self.log_info ('unhandled write event', 'warning')
Guido van Rossum0039d7b1999-01-12 20:19:27 +0000427
Fred Drake526a1822000-09-11 04:00:46 +0000428 def handle_connect (self):
429 self.log_info ('unhandled connect event', 'warning')
Guido van Rossum0039d7b1999-01-12 20:19:27 +0000430
Fred Drake526a1822000-09-11 04:00:46 +0000431 def handle_accept (self):
432 self.log_info ('unhandled accept event', 'warning')
Guido van Rossum0039d7b1999-01-12 20:19:27 +0000433
Fred Drake526a1822000-09-11 04:00:46 +0000434 def handle_close (self):
435 self.log_info ('unhandled close event', 'warning')
436 self.close()
Guido van Rossum0039d7b1999-01-12 20:19:27 +0000437
438# ---------------------------------------------------------------------------
439# adds simple buffered output capability, useful for simple clients.
440# [for more sophisticated usage use asynchat.async_chat]
441# ---------------------------------------------------------------------------
442
443class dispatcher_with_send (dispatcher):
Fred Drake526a1822000-09-11 04:00:46 +0000444 def __init__ (self, sock=None):
445 dispatcher.__init__ (self, sock)
446 self.out_buffer = ''
Guido van Rossum0039d7b1999-01-12 20:19:27 +0000447
Fred Drake526a1822000-09-11 04:00:46 +0000448 def initiate_send (self):
449 num_sent = 0
450 num_sent = dispatcher.send (self, self.out_buffer[:512])
451 self.out_buffer = self.out_buffer[num_sent:]
Guido van Rossum0039d7b1999-01-12 20:19:27 +0000452
Fred Drake526a1822000-09-11 04:00:46 +0000453 def handle_write (self):
454 self.initiate_send()
Guido van Rossum0039d7b1999-01-12 20:19:27 +0000455
Fred Drake526a1822000-09-11 04:00:46 +0000456 def writable (self):
457 return (not self.connected) or len(self.out_buffer)
Guido van Rossum0039d7b1999-01-12 20:19:27 +0000458
Fred Drake526a1822000-09-11 04:00:46 +0000459 def send (self, data):
460 if self.debug:
461 self.log_info ('sending %s' % repr(data))
462 self.out_buffer = self.out_buffer + data
463 self.initiate_send()
Guido van Rossum0039d7b1999-01-12 20:19:27 +0000464
465# ---------------------------------------------------------------------------
466# used for debugging.
467# ---------------------------------------------------------------------------
468
Guido van Rossuma8d0f4f1999-06-08 13:20:05 +0000469def compact_traceback ():
Fred Drake526a1822000-09-11 04:00:46 +0000470 t,v,tb = sys.exc_info()
471 tbinfo = []
472 while 1:
473 tbinfo.append ((
474 tb.tb_frame.f_code.co_filename,
Tim Peters146965a2001-01-14 18:09:23 +0000475 tb.tb_frame.f_code.co_name,
Fred Drake526a1822000-09-11 04:00:46 +0000476 str(tb.tb_lineno)
477 ))
478 tb = tb.tb_next
479 if not tb:
480 break
Guido van Rossum0039d7b1999-01-12 20:19:27 +0000481
Fred Drake526a1822000-09-11 04:00:46 +0000482 # just to be safe
483 del tb
Guido van Rossuma8d0f4f1999-06-08 13:20:05 +0000484
Fred Drake526a1822000-09-11 04:00:46 +0000485 file, function, line = tbinfo[-1]
Eric S. Raymondb49f4a42001-02-09 05:07:04 +0000486 info = '[' + '] ['.join(map(lambda x: '|'.join(x), tbinfo)) + ']'
Fred Drake526a1822000-09-11 04:00:46 +0000487 return (file, function, line), t, v, info
Guido van Rossum0039d7b1999-01-12 20:19:27 +0000488
Andrew M. Kuchlingda85a272000-09-08 20:30:39 +0000489def close_all (map=None):
Fred Drake526a1822000-09-11 04:00:46 +0000490 if map is None:
491 map=socket_map
492 for x in map.values():
493 x.socket.close()
494 map.clear()
Guido van Rossum0039d7b1999-01-12 20:19:27 +0000495
496# Asynchronous File I/O:
497#
498# After a little research (reading man pages on various unixen, and
499# digging through the linux kernel), I've determined that select()
500# isn't meant for doing doing asynchronous file i/o.
501# Heartening, though - reading linux/mm/filemap.c shows that linux
502# supports asynchronous read-ahead. So _MOST_ of the time, the data
503# will be sitting in memory for us already when we go to read it.
504#
505# What other OS's (besides NT) support async file i/o? [VMS?]
506#
507# Regardless, this is useful for pipes, and stdin/stdout...
508
509import os
510if os.name == 'posix':
Fred Drake526a1822000-09-11 04:00:46 +0000511 import fcntl
Guido van Rossum0039d7b1999-01-12 20:19:27 +0000512
Fred Drake526a1822000-09-11 04:00:46 +0000513 class file_wrapper:
514 # here we override just enough to make a file
515 # look like a socket for the purposes of asyncore.
516 def __init__ (self, fd):
517 self.fd = fd
Guido van Rossum0039d7b1999-01-12 20:19:27 +0000518
Fred Drake526a1822000-09-11 04:00:46 +0000519 def recv (self, *args):
520 return apply (os.read, (self.fd,)+args)
Guido van Rossum0039d7b1999-01-12 20:19:27 +0000521
Fred Drake526a1822000-09-11 04:00:46 +0000522 def send (self, *args):
523 return apply (os.write, (self.fd,)+args)
Guido van Rossum0039d7b1999-01-12 20:19:27 +0000524
Fred Drake526a1822000-09-11 04:00:46 +0000525 read = recv
526 write = send
Andrew M. Kuchlingda85a272000-09-08 20:30:39 +0000527
Fred Drake526a1822000-09-11 04:00:46 +0000528 def close (self):
529 return os.close (self.fd)
Guido van Rossum0039d7b1999-01-12 20:19:27 +0000530
Fred Drake526a1822000-09-11 04:00:46 +0000531 def fileno (self):
532 return self.fd
Guido van Rossum0039d7b1999-01-12 20:19:27 +0000533
Fred Drake526a1822000-09-11 04:00:46 +0000534 class file_dispatcher (dispatcher):
535 def __init__ (self, fd):
536 dispatcher.__init__ (self)
537 self.connected = 1
538 # set it to non-blocking mode
Fred Drakea94414a2001-05-10 15:33:31 +0000539 flags = fcntl.fcntl (fd, fcntl.F_GETFL, 0)
540 flags = flags | os.O_NONBLOCK
541 fcntl.fcntl (fd, fcntl.F_SETFL, flags)
Fred Drake526a1822000-09-11 04:00:46 +0000542 self.set_file (fd)
Guido van Rossum0039d7b1999-01-12 20:19:27 +0000543
Fred Drake526a1822000-09-11 04:00:46 +0000544 def set_file (self, fd):
545 self._fileno = fd
546 self.socket = file_wrapper (fd)
547 self.add_channel()