asyncore.py 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643
  1. # -*- Mode: Python -*-
  2. # Id: asyncore.py,v 2.51 2000/09/07 22:29:26 rushing Exp
  3. # Author: Sam Rushing <rushing@nightmare.com>
  4. # ======================================================================
  5. # Copyright 1996 by Sam Rushing
  6. #
  7. # All Rights Reserved
  8. #
  9. # Permission to use, copy, modify, and distribute this software and
  10. # its documentation for any purpose and without fee is hereby
  11. # granted, provided that the above copyright notice appear in all
  12. # copies and that both that copyright notice and this permission
  13. # notice appear in supporting documentation, and that the name of Sam
  14. # Rushing not be used in advertising or publicity pertaining to
  15. # distribution of the software without specific, written prior
  16. # permission.
  17. #
  18. # SAM RUSHING DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
  19. # INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN
  20. # NO EVENT SHALL SAM RUSHING BE LIABLE FOR ANY SPECIAL, INDIRECT OR
  21. # CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS
  22. # OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT,
  23. # NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
  24. # CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
  25. # ======================================================================
  26. """Basic infrastructure for asynchronous socket service clients and servers.
  27. There are only two ways to have a program on a single processor do "more
  28. than one thing at a time". Multi-threaded programming is the simplest and
  29. most popular way to do it, but there is another very different technique,
  30. that lets you have nearly all the advantages of multi-threading, without
  31. actually using multiple threads. it's really only practical if your program
  32. is largely I/O bound. If your program is CPU bound, then pre-emptive
  33. scheduled threads are probably what you really need. Network servers are
  34. rarely CPU-bound, however.
  35. If your operating system supports the select() system call in its I/O
  36. library (and nearly all do), then you can use it to juggle multiple
  37. communication channels at once; doing other work while your I/O is taking
  38. place in the "background." Although this strategy can seem strange and
  39. complex, especially at first, it is in many ways easier to understand and
  40. control than multi-threaded programming. The module documented here solves
  41. many of the difficult problems for you, making the task of building
  42. sophisticated high-performance network servers and clients a snap.
  43. """
  44. import select
  45. import socket
  46. import sys
  47. import time
  48. import warnings
  49. import os
  50. from errno import EALREADY, EINPROGRESS, EWOULDBLOCK, ECONNRESET, EINVAL, \
  51. ENOTCONN, ESHUTDOWN, EISCONN, EBADF, ECONNABORTED, EPIPE, EAGAIN, \
  52. errorcode
  53. _DISCONNECTED = frozenset({ECONNRESET, ENOTCONN, ESHUTDOWN, ECONNABORTED, EPIPE,
  54. EBADF})
  55. try:
  56. socket_map
  57. except NameError:
  58. socket_map = {}
  59. def _strerror(err):
  60. try:
  61. return os.strerror(err)
  62. except (ValueError, OverflowError, NameError):
  63. if err in errorcode:
  64. return errorcode[err]
  65. return "Unknown error %s" %err
  66. class ExitNow(Exception):
  67. pass
  68. _reraised_exceptions = (ExitNow, KeyboardInterrupt, SystemExit)
  69. def read(obj):
  70. try:
  71. obj.handle_read_event()
  72. except _reraised_exceptions:
  73. raise
  74. except:
  75. obj.handle_error()
  76. def write(obj):
  77. try:
  78. obj.handle_write_event()
  79. except _reraised_exceptions:
  80. raise
  81. except:
  82. obj.handle_error()
  83. def _exception(obj):
  84. try:
  85. obj.handle_expt_event()
  86. except _reraised_exceptions:
  87. raise
  88. except:
  89. obj.handle_error()
  90. def readwrite(obj, flags):
  91. try:
  92. if flags & select.POLLIN:
  93. obj.handle_read_event()
  94. if flags & select.POLLOUT:
  95. obj.handle_write_event()
  96. if flags & select.POLLPRI:
  97. obj.handle_expt_event()
  98. if flags & (select.POLLHUP | select.POLLERR | select.POLLNVAL):
  99. obj.handle_close()
  100. except OSError as e:
  101. if e.args[0] not in _DISCONNECTED:
  102. obj.handle_error()
  103. else:
  104. obj.handle_close()
  105. except _reraised_exceptions:
  106. raise
  107. except:
  108. obj.handle_error()
  109. def poll(timeout=0.0, map=None):
  110. if map is None:
  111. map = socket_map
  112. if map:
  113. r = []; w = []; e = []
  114. for fd, obj in list(map.items()):
  115. is_r = obj.readable()
  116. is_w = obj.writable()
  117. if is_r:
  118. r.append(fd)
  119. # accepting sockets should not be writable
  120. if is_w and not obj.accepting:
  121. w.append(fd)
  122. if is_r or is_w:
  123. e.append(fd)
  124. if [] == r == w == e:
  125. time.sleep(timeout)
  126. return
  127. r, w, e = select.select(r, w, e, timeout)
  128. for fd in r:
  129. obj = map.get(fd)
  130. if obj is None:
  131. continue
  132. read(obj)
  133. for fd in w:
  134. obj = map.get(fd)
  135. if obj is None:
  136. continue
  137. write(obj)
  138. for fd in e:
  139. obj = map.get(fd)
  140. if obj is None:
  141. continue
  142. _exception(obj)
  143. def poll2(timeout=0.0, map=None):
  144. # Use the poll() support added to the select module in Python 2.0
  145. if map is None:
  146. map = socket_map
  147. if timeout is not None:
  148. # timeout is in milliseconds
  149. timeout = int(timeout*1000)
  150. pollster = select.poll()
  151. if map:
  152. for fd, obj in list(map.items()):
  153. flags = 0
  154. if obj.readable():
  155. flags |= select.POLLIN | select.POLLPRI
  156. # accepting sockets should not be writable
  157. if obj.writable() and not obj.accepting:
  158. flags |= select.POLLOUT
  159. if flags:
  160. pollster.register(fd, flags)
  161. r = pollster.poll(timeout)
  162. for fd, flags in r:
  163. obj = map.get(fd)
  164. if obj is None:
  165. continue
  166. readwrite(obj, flags)
  167. poll3 = poll2 # Alias for backward compatibility
  168. def loop(timeout=30.0, use_poll=False, map=None, count=None):
  169. if map is None:
  170. map = socket_map
  171. if use_poll and hasattr(select, 'poll'):
  172. poll_fun = poll2
  173. else:
  174. poll_fun = poll
  175. if count is None:
  176. while map:
  177. poll_fun(timeout, map)
  178. else:
  179. while map and count > 0:
  180. poll_fun(timeout, map)
  181. count = count - 1
  182. class dispatcher:
  183. debug = False
  184. connected = False
  185. accepting = False
  186. connecting = False
  187. closing = False
  188. addr = None
  189. ignore_log_types = frozenset({'warning'})
  190. def __init__(self, sock=None, map=None):
  191. if map is None:
  192. self._map = socket_map
  193. else:
  194. self._map = map
  195. self._fileno = None
  196. if sock:
  197. # Set to nonblocking just to make sure for cases where we
  198. # get a socket from a blocking source.
  199. sock.setblocking(0)
  200. self.set_socket(sock, map)
  201. self.connected = True
  202. # The constructor no longer requires that the socket
  203. # passed be connected.
  204. try:
  205. self.addr = sock.getpeername()
  206. except OSError as err:
  207. if err.args[0] in (ENOTCONN, EINVAL):
  208. # To handle the case where we got an unconnected
  209. # socket.
  210. self.connected = False
  211. else:
  212. # The socket is broken in some unknown way, alert
  213. # the user and remove it from the map (to prevent
  214. # polling of broken sockets).
  215. self.del_channel(map)
  216. raise
  217. else:
  218. self.socket = None
  219. def __repr__(self):
  220. status = [self.__class__.__module__+"."+self.__class__.__qualname__]
  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))
  231. __str__ = __repr__
  232. def add_channel(self, map=None):
  233. #self.log_info('adding channel %s' % self)
  234. if map is None:
  235. map = self._map
  236. map[self._fileno] = self
  237. def del_channel(self, map=None):
  238. fd = self._fileno
  239. if map is None:
  240. map = self._map
  241. if fd in map:
  242. #self.log_info('closing channel %d:%s' % (fd, self))
  243. del map[fd]
  244. self._fileno = None
  245. def create_socket(self, family=socket.AF_INET, type=socket.SOCK_STREAM):
  246. self.family_and_type = family, type
  247. sock = socket.socket(family, type)
  248. sock.setblocking(0)
  249. self.set_socket(sock)
  250. def set_socket(self, sock, map=None):
  251. self.socket = sock
  252. ## self.__dict__['socket'] = sock
  253. self._fileno = sock.fileno()
  254. self.add_channel(map)
  255. def set_reuse_addr(self):
  256. # try to re-use a server port if possible
  257. try:
  258. self.socket.setsockopt(
  259. socket.SOL_SOCKET, socket.SO_REUSEADDR,
  260. self.socket.getsockopt(socket.SOL_SOCKET,
  261. socket.SO_REUSEADDR) | 1
  262. )
  263. except OSError:
  264. pass
  265. # ==================================================
  266. # predicates for select()
  267. # these are used as filters for the lists of sockets
  268. # to pass to select().
  269. # ==================================================
  270. def readable(self):
  271. return True
  272. def writable(self):
  273. return True
  274. # ==================================================
  275. # socket object methods.
  276. # ==================================================
  277. def listen(self, num):
  278. self.accepting = True
  279. if os.name == 'nt' and num > 5:
  280. num = 5
  281. return self.socket.listen(num)
  282. def bind(self, addr):
  283. self.addr = addr
  284. return self.socket.bind(addr)
  285. def connect(self, address):
  286. self.connected = False
  287. self.connecting = True
  288. err = self.socket.connect_ex(address)
  289. if err in (EINPROGRESS, EALREADY, EWOULDBLOCK) \
  290. or err == EINVAL and os.name in ('nt', 'ce'):
  291. self.addr = address
  292. return
  293. if err in (0, EISCONN):
  294. self.addr = address
  295. self.handle_connect_event()
  296. else:
  297. raise OSError(err, errorcode[err])
  298. def accept(self):
  299. # XXX can return either an address pair or None
  300. try:
  301. conn, addr = self.socket.accept()
  302. except TypeError:
  303. return None
  304. except OSError as why:
  305. if why.args[0] in (EWOULDBLOCK, ECONNABORTED, EAGAIN):
  306. return None
  307. else:
  308. raise
  309. else:
  310. return conn, addr
  311. def send(self, data):
  312. try:
  313. result = self.socket.send(data)
  314. return result
  315. except OSError as why:
  316. if why.args[0] == EWOULDBLOCK:
  317. return 0
  318. elif why.args[0] in _DISCONNECTED:
  319. self.handle_close()
  320. return 0
  321. else:
  322. raise
  323. def recv(self, buffer_size):
  324. try:
  325. data = self.socket.recv(buffer_size)
  326. if not data:
  327. # a closed connection is indicated by signaling
  328. # a read condition, and having recv() return 0.
  329. self.handle_close()
  330. return b''
  331. else:
  332. return data
  333. except OSError as why:
  334. # winsock sometimes raises ENOTCONN
  335. if why.args[0] in _DISCONNECTED:
  336. self.handle_close()
  337. return b''
  338. else:
  339. raise
  340. def close(self):
  341. self.connected = False
  342. self.accepting = False
  343. self.connecting = False
  344. self.del_channel()
  345. if self.socket is not None:
  346. try:
  347. self.socket.close()
  348. except OSError as why:
  349. if why.args[0] not in (ENOTCONN, EBADF):
  350. raise
  351. # log and log_info may be overridden to provide more sophisticated
  352. # logging and warning methods. In general, log is for 'hit' logging
  353. # and 'log_info' is for informational, warning and error logging.
  354. def log(self, message):
  355. sys.stderr.write('log: %s\n' % str(message))
  356. def log_info(self, message, type='info'):
  357. if type not in self.ignore_log_types:
  358. print('%s: %s' % (type, message))
  359. def handle_read_event(self):
  360. if self.accepting:
  361. # accepting sockets are never connected, they "spawn" new
  362. # sockets that are connected
  363. self.handle_accept()
  364. elif not self.connected:
  365. if self.connecting:
  366. self.handle_connect_event()
  367. self.handle_read()
  368. else:
  369. self.handle_read()
  370. def handle_connect_event(self):
  371. err = self.socket.getsockopt(socket.SOL_SOCKET, socket.SO_ERROR)
  372. if err != 0:
  373. raise OSError(err, _strerror(err))
  374. self.handle_connect()
  375. self.connected = True
  376. self.connecting = False
  377. def handle_write_event(self):
  378. if self.accepting:
  379. # Accepting sockets shouldn't get a write event.
  380. # We will pretend it didn't happen.
  381. return
  382. if not self.connected:
  383. if self.connecting:
  384. self.handle_connect_event()
  385. self.handle_write()
  386. def handle_expt_event(self):
  387. # handle_expt_event() is called if there might be an error on the
  388. # socket, or if there is OOB data
  389. # check for the error condition first
  390. err = self.socket.getsockopt(socket.SOL_SOCKET, socket.SO_ERROR)
  391. if err != 0:
  392. # we can get here when select.select() says that there is an
  393. # exceptional condition on the socket
  394. # since there is an error, we'll go ahead and close the socket
  395. # like we would in a subclassed handle_read() that received no
  396. # data
  397. self.handle_close()
  398. else:
  399. self.handle_expt()
  400. def handle_error(self):
  401. nil, t, v, tbinfo = compact_traceback()
  402. # 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)
  407. self.log_info(
  408. 'uncaptured python exception, closing channel %s (%s:%s %s)' % (
  409. self_repr,
  410. t,
  411. v,
  412. tbinfo
  413. ),
  414. 'error'
  415. )
  416. self.handle_close()
  417. def handle_expt(self):
  418. self.log_info('unhandled incoming priority event', 'warning')
  419. def handle_read(self):
  420. self.log_info('unhandled read event', 'warning')
  421. def handle_write(self):
  422. self.log_info('unhandled write event', 'warning')
  423. def handle_connect(self):
  424. self.log_info('unhandled connect event', 'warning')
  425. def handle_accept(self):
  426. pair = self.accept()
  427. if pair is not None:
  428. self.handle_accepted(*pair)
  429. def handle_accepted(self, sock, addr):
  430. sock.close()
  431. self.log_info('unhandled accepted event', 'warning')
  432. def handle_close(self):
  433. self.log_info('unhandled close event', 'warning')
  434. self.close()
  435. # ---------------------------------------------------------------------------
  436. # adds simple buffered output capability, useful for simple clients.
  437. # [for more sophisticated usage use asynchat.async_chat]
  438. # ---------------------------------------------------------------------------
  439. class dispatcher_with_send(dispatcher):
  440. def __init__(self, sock=None, map=None):
  441. dispatcher.__init__(self, sock, map)
  442. self.out_buffer = b''
  443. def initiate_send(self):
  444. num_sent = 0
  445. num_sent = dispatcher.send(self, self.out_buffer[:65536])
  446. self.out_buffer = self.out_buffer[num_sent:]
  447. def handle_write(self):
  448. self.initiate_send()
  449. def writable(self):
  450. return (not self.connected) or len(self.out_buffer)
  451. def send(self, data):
  452. if self.debug:
  453. self.log_info('sending %s' % repr(data))
  454. self.out_buffer = self.out_buffer + data
  455. self.initiate_send()
  456. # ---------------------------------------------------------------------------
  457. # used for debugging.
  458. # ---------------------------------------------------------------------------
  459. def compact_traceback():
  460. t, v, tb = sys.exc_info()
  461. tbinfo = []
  462. if not tb: # Must have a traceback
  463. raise AssertionError("traceback does not exist")
  464. while tb:
  465. tbinfo.append((
  466. tb.tb_frame.f_code.co_filename,
  467. tb.tb_frame.f_code.co_name,
  468. str(tb.tb_lineno)
  469. ))
  470. tb = tb.tb_next
  471. # just to be safe
  472. del tb
  473. file, function, line = tbinfo[-1]
  474. info = ' '.join(['[%s|%s|%s]' % x for x in tbinfo])
  475. return (file, function, line), t, v, info
  476. def close_all(map=None, ignore_all=False):
  477. if map is None:
  478. map = socket_map
  479. for x in list(map.values()):
  480. try:
  481. x.close()
  482. except OSError as x:
  483. if x.args[0] == EBADF:
  484. pass
  485. elif not ignore_all:
  486. raise
  487. except _reraised_exceptions:
  488. raise
  489. except:
  490. if not ignore_all:
  491. raise
  492. map.clear()
  493. # Asynchronous File I/O:
  494. #
  495. # After a little research (reading man pages on various unixen, and
  496. # digging through the linux kernel), I've determined that select()
  497. # isn't meant for doing asynchronous file i/o.
  498. # Heartening, though - reading linux/mm/filemap.c shows that linux
  499. # supports asynchronous read-ahead. So _MOST_ of the time, the data
  500. # will be sitting in memory for us already when we go to read it.
  501. #
  502. # What other OS's (besides NT) support async file i/o? [VMS?]
  503. #
  504. # Regardless, this is useful for pipes, and stdin/stdout...
  505. if os.name == 'posix':
  506. class file_wrapper:
  507. # Here we override just enough to make a file
  508. # look like a socket for the purposes of asyncore.
  509. # The passed fd is automatically os.dup()'d
  510. def __init__(self, fd):
  511. self.fd = os.dup(fd)
  512. def __del__(self):
  513. if self.fd >= 0:
  514. warnings.warn("unclosed file %r" % self, ResourceWarning)
  515. self.close()
  516. def recv(self, *args):
  517. return os.read(self.fd, *args)
  518. def send(self, *args):
  519. return os.write(self.fd, *args)
  520. def getsockopt(self, level, optname, buflen=None):
  521. if (level == socket.SOL_SOCKET and
  522. optname == socket.SO_ERROR and
  523. not buflen):
  524. return 0
  525. raise NotImplementedError("Only asyncore specific behaviour "
  526. "implemented.")
  527. read = recv
  528. write = send
  529. def close(self):
  530. if self.fd < 0:
  531. return
  532. os.close(self.fd)
  533. self.fd = -1
  534. def fileno(self):
  535. return self.fd
  536. class file_dispatcher(dispatcher):
  537. def __init__(self, fd, map=None):
  538. dispatcher.__init__(self, None, map)
  539. self.connected = True
  540. try:
  541. fd = fd.fileno()
  542. except AttributeError:
  543. pass
  544. self.set_file(fd)
  545. # set it to non-blocking mode
  546. os.set_blocking(fd, False)
  547. def set_file(self, fd):
  548. self.socket = file_wrapper(fd)
  549. self._fileno = self.socket.fileno()
  550. self.add_channel()