slixmpp/sleekxmpp/xmlstream/filesocket.py

55 lines
1.6 KiB
Python
Raw Normal View History

2011-11-23 00:33:38 +00:00
# -*- coding: utf-8 -*-
2010-03-26 21:32:16 +00:00
"""
2011-11-23 00:33:38 +00:00
sleekxmpp.xmlstream.filesocket
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2010-03-26 21:32:16 +00:00
2011-11-23 00:33:38 +00:00
This module is a shim for correcting deficiencies in the file
socket implementation of Python2.6.
Part of SleekXMPP: The Sleek XMPP Library
:copyright: (c) 2011 Nathanael C. Fritz
:license: MIT, see LICENSE for more details
2010-03-26 21:32:16 +00:00
"""
2010-08-27 15:29:48 +00:00
from socket import _fileobject
2013-06-20 11:30:51 +00:00
import errno
import socket
2010-08-27 15:29:48 +00:00
class FileSocket(_fileobject):
2011-11-23 00:33:38 +00:00
"""Create a file object wrapper for a socket to work around
2010-08-27 15:29:48 +00:00
issues present in Python 2.6 when using sockets as file objects.
2011-11-23 00:33:38 +00:00
The parser for :class:`~xml.etree.cElementTree` requires a file, but
we will be reading from the XMPP connection socket instead.
2010-08-27 15:29:48 +00:00
"""
def read(self, size=4096):
"""Read data from the socket as if it were a file."""
if self._sock is None:
return None
2013-06-20 11:30:51 +00:00
while True:
try:
data = self._sock.recv(size)
break
except socket.error as serr:
if serr.errno != errno.EINTR:
raise
2010-08-27 15:29:48 +00:00
if data is not None:
return data
class Socket26(socket.socket):
2011-11-23 00:33:38 +00:00
"""A custom socket implementation that uses our own FileSocket class
2010-08-27 15:29:48 +00:00
to work around issues in Python 2.6 when using sockets as files.
"""
def makefile(self, mode='r', bufsize=-1):
"""makefile([mode[, bufsize]]) -> file object
Return a regular file object corresponding to the socket. The mode
and bufsize arguments are as for the built-in open() function."""
return FileSocket(self._sock, mode, bufsize)