a8a91ef38c
This commit introduces the `aio` package, which is a wrapper over Kenneth Reitz 'requests' library. It will be needed to 'watch' Kubernetes API endpoints. It also comes with command line utility to test connections and responses. For instance, run: python -m kuryr_kubernetes.aio.methods get http://localhost:8080 To see Kubernetes API root resource response. It may make sense to put it in a separated library or in kuryr-lib, but for now and for the sake of push other patches quick, it is better to be included here. Partial-Implements: blueprint kuryr-k8s-integration Change-Id: Iea64d7c7941351d6e0511cafde8914b86c457b1b Authored-By: Antoni Segura Puimedon Co-Authored-By: Jaume Devesa <devvesa@gmail.com> Signed-off-by: Jaume Devesa <devvesa@gmail.com>
69 lines
2.4 KiB
Python
69 lines
2.4 KiB
Python
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
# you may not use this file except in compliance with the License.
|
|
# You may obtain a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
|
# implied.
|
|
# See the License for the specific language governing permissions and
|
|
# limitations under the License.
|
|
from asyncio import streams
|
|
|
|
|
|
class ChunkedStreamReader(streams.StreamReader):
|
|
|
|
async def readchunk(self): # flake8: noqa
|
|
"""Modified asyncio.streams.readline for http chunks
|
|
|
|
Returns an HTTP1.1 chunk transfer encoding chunk. Returns None if it is
|
|
the trailing chunk.
|
|
"""
|
|
if self._exception is not None:
|
|
raise self._exception
|
|
|
|
chunk_size = bytearray()
|
|
chunk = bytearray()
|
|
size = None
|
|
sep = b'\r\n'
|
|
|
|
while size != 0:
|
|
while self._buffer and size is None:
|
|
ichar = self._buffer.find(sep)
|
|
if ichar < 0:
|
|
chunk_size.extend(self._buffer)
|
|
self._buffer.clear()
|
|
else: # size present
|
|
chunk_size.extend(self._buffer[:ichar])
|
|
size = int(bytes(chunk_size), 16)
|
|
if size == 0: # Terminal chunk
|
|
self._buffer.clear()
|
|
self.feed_eof()
|
|
return b''
|
|
else:
|
|
del self._buffer[:ichar + len(sep)]
|
|
|
|
while self._buffer and size > 0:
|
|
buff_size = len(self._buffer)
|
|
if buff_size < size:
|
|
chunk.extend(self._buffer)
|
|
self._buffer.clear()
|
|
size -= buff_size
|
|
else:
|
|
chunk.extend(self._buffer[:size])
|
|
del self._buffer[:size + len(sep)] # delete also trailer
|
|
size = 0
|
|
|
|
if self._eof:
|
|
break
|
|
|
|
if size is None or size > 0:
|
|
await self._wait_for_data('readchunk')
|
|
elif size < 0:
|
|
raise ValueError(_('Chunk wrongly encoded'))
|
|
|
|
self._maybe_resume_transport()
|
|
return bytes(chunk)
|