blob: 0cc91a8d574f99d82b7ac7e8db4ae53ba9f2db5a [file] [log] [blame]
Guido van Rossum0039d7b1999-01-12 20:19:27 +00001# -*- Mode: Python; tab-width: 4 -*-
Tim Peters658cba62001-02-09 20:06:00 +00002# Id: asynchat.py,v 2.26 2000/09/07 22:29:26 rushing Exp
Tim Peters146965a2001-01-14 18:09:23 +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 Rossume4a1b6d2001-04-06 15:30:33 +000028r"""A class supporting chat-style (command/response) protocols.
Guido van Rossum4b8c6ea2000-02-04 15:39:30 +000029
30This class adds support for 'chat' style protocols - where one side
31sends a 'command', and the other sends a response (examples would be
32the common internet protocols - smtp, nntp, ftp, etc..).
33
34The handle_read() method looks at the input stream for the current
35'terminator' (usually '\r\n' for single-line responses, '\r\n.\r\n'
36for multi-line output), calling self.found_terminator() on its
37receipt.
38
39for example:
40Say you build an async nntp client using this class. At the start
41of the connection, you'll have self.terminator set to '\r\n', in
42order to process the single-line greeting. Just before issuing a
43'LIST' command you'll set it to '\r\n.\r\n'. The output of the LIST
44command will be accumulated (using your own 'collect_incoming_data'
45method) up to the terminator, and then control will be returned to
46you - by calling your self.found_terminator() method.
47"""
Guido van Rossum0039d7b1999-01-12 20:19:27 +000048import asyncore
Raymond Hettingerac093c62004-02-07 03:19:10 +000049from collections import deque
Guido van Rossum0039d7b1999-01-12 20:19:27 +000050
Josiah Carlsond74900e2008-07-07 04:15:08 +000051
Guido van Rossum0039d7b1999-01-12 20:19:27 +000052class async_chat (asyncore.dispatcher):
Tim Peters146965a2001-01-14 18:09:23 +000053 """This is an abstract class. You must derive from this class, and add
54 the two methods collect_incoming_data() and found_terminator()"""
Guido van Rossum0039d7b1999-01-12 20:19:27 +000055
Tim Peters146965a2001-01-14 18:09:23 +000056 # these are overridable defaults
Guido van Rossum0039d7b1999-01-12 20:19:27 +000057
Charles-François Natalife22dca2013-01-01 16:31:54 +010058 ac_in_buffer_size = 65536
59 ac_out_buffer_size = 65536
Guido van Rossum0039d7b1999-01-12 20:19:27 +000060
Josiah Carlsond74900e2008-07-07 04:15:08 +000061 # we don't want to enable the use of encoding by default, because that is a
62 # sign of an application bug that we don't want to pass silently
63
64 use_encoding = 0
Marc-André Lemburg8f36af72011-02-25 15:42:01 +000065 encoding = 'latin-1'
Josiah Carlsond74900e2008-07-07 04:15:08 +000066
Josiah Carlson9f2f8332008-07-07 05:04:12 +000067 def __init__ (self, sock=None, map=None):
Josiah Carlsond74900e2008-07-07 04:15:08 +000068 # for string terminator matching
Guido van Rossum076da092007-07-12 07:58:54 +000069 self.ac_in_buffer = b''
Josiah Carlsond74900e2008-07-07 04:15:08 +000070
Serhiy Storchaka50254c52013-08-29 11:35:43 +030071 # we use a list here rather than io.BytesIO for a few reasons...
72 # del lst[:] is faster than bio.truncate(0)
73 # lst = [] is faster than bio.truncate(0)
Josiah Carlsond74900e2008-07-07 04:15:08 +000074 self.incoming = []
75
76 # we toss the use of the "simple producer" and replace it with
77 # a pure deque, which the original fifo was a wrapping of
78 self.producer_fifo = deque()
Josiah Carlson9f2f8332008-07-07 05:04:12 +000079 asyncore.dispatcher.__init__ (self, sock, map)
Guido van Rossum0039d7b1999-01-12 20:19:27 +000080
Andrew M. Kuchling7dd5f3c2002-03-08 18:27:11 +000081 def collect_incoming_data(self, data):
Collin Winterce36ad82007-08-30 01:19:48 +000082 raise NotImplementedError("must be implemented in subclass")
Tim Peters863ac442002-04-16 01:38:40 +000083
Josiah Carlsond74900e2008-07-07 04:15:08 +000084 def _collect_incoming_data(self, data):
85 self.incoming.append(data)
86
87 def _get_data(self):
88 d = b''.join(self.incoming)
89 del self.incoming[:]
90 return d
91
Andrew M. Kuchling7dd5f3c2002-03-08 18:27:11 +000092 def found_terminator(self):
Collin Winterce36ad82007-08-30 01:19:48 +000093 raise NotImplementedError("must be implemented in subclass")
Tim Peters863ac442002-04-16 01:38:40 +000094
Tim Peters146965a2001-01-14 18:09:23 +000095 def set_terminator (self, term):
96 "Set the input delimiter. Can be a fixed string of any length, an integer, or None"
Josiah Carlsond74900e2008-07-07 04:15:08 +000097 if isinstance(term, str) and self.use_encoding:
98 term = bytes(term, self.encoding)
Tim Peters146965a2001-01-14 18:09:23 +000099 self.terminator = term
Guido van Rossum0039d7b1999-01-12 20:19:27 +0000100
Tim Peters146965a2001-01-14 18:09:23 +0000101 def get_terminator (self):
102 return self.terminator
Guido van Rossum0039d7b1999-01-12 20:19:27 +0000103
Tim Peters146965a2001-01-14 18:09:23 +0000104 # grab some more data from the socket,
105 # throw it to the collector method,
106 # check for the terminator,
107 # if found, transition to the next state.
Guido van Rossum0039d7b1999-01-12 20:19:27 +0000108
Tim Peters146965a2001-01-14 18:09:23 +0000109 def handle_read (self):
Guido van Rossum0039d7b1999-01-12 20:19:27 +0000110
Tim Peters146965a2001-01-14 18:09:23 +0000111 try:
112 data = self.recv (self.ac_in_buffer_size)
Andrew Svetlov0832af62012-12-18 23:10:48 +0200113 except OSError as why:
Tim Peters146965a2001-01-14 18:09:23 +0000114 self.handle_error()
115 return
Guido van Rossum0039d7b1999-01-12 20:19:27 +0000116
Josiah Carlsond74900e2008-07-07 04:15:08 +0000117 if isinstance(data, str) and self.use_encoding:
118 data = bytes(str, self.encoding)
119 self.ac_in_buffer = self.ac_in_buffer + data
Guido van Rossum0039d7b1999-01-12 20:19:27 +0000120
Tim Peters146965a2001-01-14 18:09:23 +0000121 # Continue to search for self.terminator in self.ac_in_buffer,
122 # while calling self.collect_incoming_data. The while loop
123 # is necessary because we might read several data+terminator
Josiah Carlsond74900e2008-07-07 04:15:08 +0000124 # combos with a single recv(4096).
Guido van Rossum0039d7b1999-01-12 20:19:27 +0000125
Tim Peters146965a2001-01-14 18:09:23 +0000126 while self.ac_in_buffer:
127 lb = len(self.ac_in_buffer)
128 terminator = self.get_terminator()
Andrew M. Kuchlingca69f022005-06-09 14:59:45 +0000129 if not terminator:
Tim Peters146965a2001-01-14 18:09:23 +0000130 # no terminator, collect it all
131 self.collect_incoming_data (self.ac_in_buffer)
Guido van Rossum806c2462007-08-06 23:33:07 +0000132 self.ac_in_buffer = b''
Josiah Carlsond74900e2008-07-07 04:15:08 +0000133 elif isinstance(terminator, int):
Tim Peters146965a2001-01-14 18:09:23 +0000134 # numeric terminator
135 n = terminator
136 if lb < n:
137 self.collect_incoming_data (self.ac_in_buffer)
Guido van Rossum076da092007-07-12 07:58:54 +0000138 self.ac_in_buffer = b''
Tim Peters146965a2001-01-14 18:09:23 +0000139 self.terminator = self.terminator - lb
140 else:
141 self.collect_incoming_data (self.ac_in_buffer[:n])
142 self.ac_in_buffer = self.ac_in_buffer[n:]
143 self.terminator = 0
144 self.found_terminator()
145 else:
146 # 3 cases:
147 # 1) end of buffer matches terminator exactly:
148 # collect data, transition
149 # 2) end of buffer matches some prefix:
150 # collect data to the prefix
151 # 3) end of buffer does not match any prefix:
152 # collect data
153 terminator_len = len(terminator)
Tim Petersb5d13922001-04-05 22:38:32 +0000154 index = self.ac_in_buffer.find(terminator)
Tim Peters146965a2001-01-14 18:09:23 +0000155 if index != -1:
156 # we found the terminator
157 if index > 0:
158 # don't bother reporting the empty string (source of subtle bugs)
159 self.collect_incoming_data (self.ac_in_buffer[:index])
160 self.ac_in_buffer = self.ac_in_buffer[index+terminator_len:]
161 # This does the Right Thing if the terminator is changed here.
162 self.found_terminator()
163 else:
164 # check for a prefix of the terminator
165 index = find_prefix_at_end (self.ac_in_buffer, terminator)
166 if index:
167 if index != lb:
168 # we found a prefix, collect up to the prefix
169 self.collect_incoming_data (self.ac_in_buffer[:-index])
170 self.ac_in_buffer = self.ac_in_buffer[-index:]
171 break
172 else:
173 # no prefix, collect it all
174 self.collect_incoming_data (self.ac_in_buffer)
Guido van Rossum076da092007-07-12 07:58:54 +0000175 self.ac_in_buffer = b''
Guido van Rossum0039d7b1999-01-12 20:19:27 +0000176
Tim Peters146965a2001-01-14 18:09:23 +0000177 def handle_write (self):
Josiah Carlsond74900e2008-07-07 04:15:08 +0000178 self.initiate_send()
Guido van Rossum0039d7b1999-01-12 20:19:27 +0000179
Tim Peters146965a2001-01-14 18:09:23 +0000180 def handle_close (self):
181 self.close()
Guido van Rossum0039d7b1999-01-12 20:19:27 +0000182
Tim Peters146965a2001-01-14 18:09:23 +0000183 def push (self, data):
Victor Stinnerd9e810a2014-07-08 00:00:30 +0200184 if not isinstance(data, (bytes, bytearray, memoryview)):
185 raise TypeError('data argument must be byte-ish (%r)',
186 type(data))
Josiah Carlsond74900e2008-07-07 04:15:08 +0000187 sabs = self.ac_out_buffer_size
188 if len(data) > sabs:
189 for i in range(0, len(data), sabs):
190 self.producer_fifo.append(data[i:i+sabs])
191 else:
192 self.producer_fifo.append(data)
Tim Peters146965a2001-01-14 18:09:23 +0000193 self.initiate_send()
Guido van Rossum0039d7b1999-01-12 20:19:27 +0000194
Tim Peters146965a2001-01-14 18:09:23 +0000195 def push_with_producer (self, producer):
Josiah Carlsond74900e2008-07-07 04:15:08 +0000196 self.producer_fifo.append(producer)
Tim Peters146965a2001-01-14 18:09:23 +0000197 self.initiate_send()
Guido van Rossum0039d7b1999-01-12 20:19:27 +0000198
Tim Peters146965a2001-01-14 18:09:23 +0000199 def readable (self):
200 "predicate for inclusion in the readable for select()"
Josiah Carlsond74900e2008-07-07 04:15:08 +0000201 # cannot use the old predicate, it violates the claim of the
202 # set_terminator method.
203
204 # return (len(self.ac_in_buffer) <= self.ac_in_buffer_size)
205 return 1
Guido van Rossum0039d7b1999-01-12 20:19:27 +0000206
Tim Peters146965a2001-01-14 18:09:23 +0000207 def writable (self):
208 "predicate for inclusion in the writable for select()"
Josiah Carlsond74900e2008-07-07 04:15:08 +0000209 return self.producer_fifo or (not self.connected)
Guido van Rossum0039d7b1999-01-12 20:19:27 +0000210
Tim Peters146965a2001-01-14 18:09:23 +0000211 def close_when_done (self):
212 "automatically close this channel once the outgoing queue is empty"
Josiah Carlsond74900e2008-07-07 04:15:08 +0000213 self.producer_fifo.append(None)
Guido van Rossum0039d7b1999-01-12 20:19:27 +0000214
Josiah Carlsond74900e2008-07-07 04:15:08 +0000215 def initiate_send(self):
216 while self.producer_fifo and self.connected:
217 first = self.producer_fifo[0]
218 # handle empty string/buffer or None entry
219 if not first:
220 del self.producer_fifo[0]
221 if first is None:
222 ## print("first is None")
223 self.handle_close()
Tim Peters146965a2001-01-14 18:09:23 +0000224 return
Josiah Carlsond74900e2008-07-07 04:15:08 +0000225 ## print("first is not None")
Guido van Rossum0039d7b1999-01-12 20:19:27 +0000226
Josiah Carlsond74900e2008-07-07 04:15:08 +0000227 # handle classic producer behavior
228 obs = self.ac_out_buffer_size
Tim Peters146965a2001-01-14 18:09:23 +0000229 try:
Giampaolo Rodola'd9f38bc2012-08-04 14:38:16 +0200230 data = first[:obs]
Josiah Carlsond74900e2008-07-07 04:15:08 +0000231 except TypeError:
232 data = first.more()
233 if data:
234 self.producer_fifo.appendleft(data)
235 else:
236 del self.producer_fifo[0]
237 continue
Guido van Rossum0039d7b1999-01-12 20:19:27 +0000238
Josiah Carlsond74900e2008-07-07 04:15:08 +0000239 if isinstance(data, str) and self.use_encoding:
240 data = bytes(data, self.encoding)
241
242 # send the data
243 try:
244 num_sent = self.send(data)
Andrew Svetlov0832af62012-12-18 23:10:48 +0200245 except OSError:
Tim Peters146965a2001-01-14 18:09:23 +0000246 self.handle_error()
247 return
248
Josiah Carlsond74900e2008-07-07 04:15:08 +0000249 if num_sent:
250 if num_sent < len(data) or obs < len(first):
251 self.producer_fifo[0] = first[num_sent:]
252 else:
253 del self.producer_fifo[0]
254 # we tried to send some actual data
255 return
256
Tim Peters146965a2001-01-14 18:09:23 +0000257 def discard_buffers (self):
258 # Emergencies only!
Guido van Rossum076da092007-07-12 07:58:54 +0000259 self.ac_in_buffer = b''
Josiah Carlsond74900e2008-07-07 04:15:08 +0000260 del self.incoming[:]
261 self.producer_fifo.clear()
Andrew M. Kuchlingda85a272000-09-08 20:30:39 +0000262
Guido van Rossum0039d7b1999-01-12 20:19:27 +0000263class simple_producer:
Guido van Rossuma8d0f4f1999-06-08 13:20:05 +0000264
Tim Peters146965a2001-01-14 18:09:23 +0000265 def __init__ (self, data, buffer_size=512):
266 self.data = data
267 self.buffer_size = buffer_size
Guido van Rossum0039d7b1999-01-12 20:19:27 +0000268
Tim Peters146965a2001-01-14 18:09:23 +0000269 def more (self):
270 if len (self.data) > self.buffer_size:
271 result = self.data[:self.buffer_size]
272 self.data = self.data[self.buffer_size:]
273 return result
274 else:
275 result = self.data
Guido van Rossum076da092007-07-12 07:58:54 +0000276 self.data = b''
Tim Peters146965a2001-01-14 18:09:23 +0000277 return result
Guido van Rossum0039d7b1999-01-12 20:19:27 +0000278
279class fifo:
Tim Peters146965a2001-01-14 18:09:23 +0000280 def __init__ (self, list=None):
281 if not list:
Raymond Hettingerac093c62004-02-07 03:19:10 +0000282 self.list = deque()
Tim Peters146965a2001-01-14 18:09:23 +0000283 else:
Raymond Hettingerac093c62004-02-07 03:19:10 +0000284 self.list = deque(list)
Guido van Rossum0039d7b1999-01-12 20:19:27 +0000285
Tim Peters146965a2001-01-14 18:09:23 +0000286 def __len__ (self):
287 return len(self.list)
Guido van Rossuma8d0f4f1999-06-08 13:20:05 +0000288
Tim Peters146965a2001-01-14 18:09:23 +0000289 def is_empty (self):
Armin Rigob562bc62004-09-27 17:49:00 +0000290 return not self.list
Guido van Rossum0039d7b1999-01-12 20:19:27 +0000291
Tim Peters146965a2001-01-14 18:09:23 +0000292 def first (self):
Raymond Hettinger0a4977c2004-03-01 23:16:22 +0000293 return self.list[0]
Guido van Rossum0039d7b1999-01-12 20:19:27 +0000294
Tim Peters146965a2001-01-14 18:09:23 +0000295 def push (self, data):
Raymond Hettingerac093c62004-02-07 03:19:10 +0000296 self.list.append(data)
Tim Peters146965a2001-01-14 18:09:23 +0000297
298 def pop (self):
299 if self.list:
Raymond Hettingerac093c62004-02-07 03:19:10 +0000300 return (1, self.list.popleft())
Tim Peters146965a2001-01-14 18:09:23 +0000301 else:
302 return (0, None)
Guido van Rossum0039d7b1999-01-12 20:19:27 +0000303
304# Given 'haystack', see if any prefix of 'needle' is at its end. This
305# assumes an exact match has already been checked. Return the number of
306# characters matched.
307# for example:
308# f_p_a_e ("qwerty\r", "\r\n") => 1
Guido van Rossum0039d7b1999-01-12 20:19:27 +0000309# f_p_a_e ("qwertydkjf", "\r\n") => 0
Andrew M. Kuchlingc63a3962002-03-20 02:22:58 +0000310# f_p_a_e ("qwerty\r\n", "\r\n") => <undefined>
Guido van Rossum0039d7b1999-01-12 20:19:27 +0000311
312# this could maybe be made faster with a computed regex?
Andrew M. Kuchlingd305f512001-01-24 21:10:55 +0000313# [answer: no; circa Python-2.0, Jan 2001]
Andrew M. Kuchlingc63a3962002-03-20 02:22:58 +0000314# new python: 28961/s
315# old python: 18307/s
Andrew M. Kuchlingd305f512001-01-24 21:10:55 +0000316# re: 12820/s
317# regex: 14035/s
Guido van Rossum0039d7b1999-01-12 20:19:27 +0000318
319def find_prefix_at_end (haystack, needle):
Tim Peters863ac442002-04-16 01:38:40 +0000320 l = len(needle) - 1
321 while l and not haystack.endswith(needle[:l]):
322 l -= 1
323 return l