2005-01-19 14:14:38 +01:00
|
|
|
###
|
|
|
|
# Copyright (c) 2002-2004, Jeremiah Fincher
|
2010-05-25 05:36:29 +02:00
|
|
|
# Copyright (c) 2010, James Vega
|
2005-01-19 14:14:38 +01:00
|
|
|
# All rights reserved.
|
|
|
|
#
|
|
|
|
# Redistribution and use in source and binary forms, with or without
|
|
|
|
# modification, are permitted provided that the following conditions are met:
|
|
|
|
#
|
|
|
|
# * Redistributions of source code must retain the above copyright notice,
|
|
|
|
# this list of conditions, and the following disclaimer.
|
|
|
|
# * Redistributions in binary form must reproduce the above copyright notice,
|
|
|
|
# this list of conditions, and the following disclaimer in the
|
|
|
|
# documentation and/or other materials provided with the distribution.
|
|
|
|
# * Neither the name of the author of this software nor the name of
|
|
|
|
# contributors to this software may be used to endorse or promote products
|
|
|
|
# derived from this software without specific prior written consent.
|
|
|
|
#
|
|
|
|
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
|
|
|
# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
|
|
# ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
|
|
|
|
# LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
|
|
|
# CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
|
|
|
# SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
|
|
|
# INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
|
|
|
# CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
|
|
|
# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
|
|
|
# POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
###
|
|
|
|
|
|
|
|
"""
|
|
|
|
Contains simple socket drivers. Asyncore bugged (haha, pun!) me.
|
|
|
|
"""
|
|
|
|
|
|
|
|
from __future__ import division
|
|
|
|
|
|
|
|
import time
|
|
|
|
import select
|
|
|
|
import socket
|
2010-12-09 19:33:35 +01:00
|
|
|
try:
|
|
|
|
import ssl
|
|
|
|
except:
|
|
|
|
pass
|
2005-01-19 14:14:38 +01:00
|
|
|
|
|
|
|
import supybot.log as log
|
|
|
|
import supybot.conf as conf
|
|
|
|
import supybot.utils as utils
|
|
|
|
import supybot.world as world
|
|
|
|
import supybot.drivers as drivers
|
|
|
|
import supybot.schedule as schedule
|
2005-01-31 16:22:48 +01:00
|
|
|
from supybot.utils.iter import imap
|
2005-01-19 14:14:38 +01:00
|
|
|
|
|
|
|
class SocketDriver(drivers.IrcDriver, drivers.ServersMixin):
|
|
|
|
def __init__(self, irc):
|
|
|
|
self.irc = irc
|
2009-01-28 06:31:45 +01:00
|
|
|
drivers.IrcDriver.__init__(self, irc)
|
|
|
|
drivers.ServersMixin.__init__(self, irc)
|
2005-01-19 14:14:38 +01:00
|
|
|
self.conn = None
|
|
|
|
self.servers = ()
|
|
|
|
self.eagains = 0
|
|
|
|
self.inbuffer = ''
|
|
|
|
self.outbuffer = ''
|
|
|
|
self.zombie = False
|
|
|
|
self.connected = False
|
2010-05-25 05:36:29 +02:00
|
|
|
self.writeCheckTime = None
|
|
|
|
self.nextReconnectTime = None
|
2005-05-20 01:39:19 +02:00
|
|
|
self.resetDelay()
|
2010-12-09 19:33:35 +01:00
|
|
|
if self.networkGroup.get('ssl').value and not globals().has_key('ssl'):
|
2005-05-20 01:38:55 +02:00
|
|
|
drivers.log.error('The Socket driver can not connect to SSL '
|
2010-12-09 19:33:35 +01:00
|
|
|
'servers for your Python version. Try the '
|
|
|
|
'Twisted driver instead, or install a Python'
|
|
|
|
'version that supports SSL (2.6 and greater).')
|
2005-03-11 19:37:02 +01:00
|
|
|
else:
|
|
|
|
self.connect()
|
2005-01-19 14:14:38 +01:00
|
|
|
|
2005-05-20 01:39:19 +02:00
|
|
|
def getDelay(self):
|
|
|
|
ret = self.currentDelay
|
|
|
|
self.currentDelay = min(self.currentDelay * 2,
|
|
|
|
conf.supybot.drivers.maxReconnectWait())
|
|
|
|
return ret
|
|
|
|
|
|
|
|
def resetDelay(self):
|
|
|
|
self.currentDelay = 10.0
|
|
|
|
|
2005-01-19 14:14:38 +01:00
|
|
|
def _getNextServer(self):
|
|
|
|
oldServer = getattr(self, 'currentServer', None)
|
2009-01-28 06:31:45 +01:00
|
|
|
server = drivers.ServersMixin._getNextServer(self)
|
2005-01-19 14:14:38 +01:00
|
|
|
if self.currentServer != oldServer:
|
2005-05-20 01:39:19 +02:00
|
|
|
self.resetDelay()
|
2005-01-19 14:14:38 +01:00
|
|
|
return server
|
|
|
|
|
|
|
|
def _handleSocketError(self, e):
|
|
|
|
# (11, 'Resource temporarily unavailable') raised if connect
|
|
|
|
# hasn't finished yet. We'll keep track of how many we get.
|
2008-05-12 19:21:48 +02:00
|
|
|
if e.args[0] != 11 or self.eagains > 120:
|
2005-01-19 14:14:38 +01:00
|
|
|
drivers.log.disconnect(self.currentServer, e)
|
2010-05-25 05:36:29 +02:00
|
|
|
try:
|
|
|
|
self.conn.close()
|
|
|
|
except:
|
|
|
|
pass
|
|
|
|
self.connected = False
|
2005-05-20 01:39:19 +02:00
|
|
|
self.scheduleReconnect()
|
2005-01-19 14:14:38 +01:00
|
|
|
else:
|
|
|
|
log.debug('Got EAGAIN, current count: %s.', self.eagains)
|
|
|
|
self.eagains += 1
|
|
|
|
|
|
|
|
def _sendIfMsgs(self):
|
|
|
|
if not self.zombie:
|
|
|
|
msgs = [self.irc.takeMsg()]
|
|
|
|
while msgs[-1] is not None:
|
|
|
|
msgs.append(self.irc.takeMsg())
|
|
|
|
del msgs[-1]
|
|
|
|
self.outbuffer += ''.join(imap(str, msgs))
|
|
|
|
if self.outbuffer:
|
|
|
|
try:
|
|
|
|
sent = self.conn.send(self.outbuffer)
|
|
|
|
self.outbuffer = self.outbuffer[sent:]
|
|
|
|
self.eagains = 0
|
|
|
|
except socket.error, e:
|
|
|
|
self._handleSocketError(e)
|
|
|
|
if self.zombie and not self.outbuffer:
|
|
|
|
self._reallyDie()
|
|
|
|
|
|
|
|
def run(self):
|
2010-05-25 05:36:29 +02:00
|
|
|
now = time.time()
|
|
|
|
if self.nextReconnectTime is not None and now > self.nextReconnectTime:
|
|
|
|
self.reconnect()
|
|
|
|
elif self.writeCheckTime is not None and now > self.writeCheckTime:
|
|
|
|
self._checkAndWriteOrReconnect()
|
2005-01-19 14:14:38 +01:00
|
|
|
if not self.connected:
|
|
|
|
# We sleep here because otherwise, if we're the only driver, we'll
|
|
|
|
# spin at 100% CPU while we're disconnected.
|
|
|
|
time.sleep(conf.supybot.drivers.poll())
|
|
|
|
return
|
|
|
|
self._sendIfMsgs()
|
|
|
|
try:
|
|
|
|
self.inbuffer += self.conn.recv(1024)
|
2005-05-20 01:39:19 +02:00
|
|
|
self.eagains = 0 # If we successfully recv'ed, we can reset this.
|
2005-01-19 14:14:38 +01:00
|
|
|
lines = self.inbuffer.split('\n')
|
|
|
|
self.inbuffer = lines.pop()
|
|
|
|
for line in lines:
|
|
|
|
msg = drivers.parseMsg(line)
|
|
|
|
if msg is not None:
|
|
|
|
self.irc.feedMsg(msg)
|
|
|
|
except socket.timeout:
|
|
|
|
pass
|
2010-12-12 14:17:09 +01:00
|
|
|
except ssl.SSLError, e:
|
2010-12-09 19:33:35 +01:00
|
|
|
if e.args[0] == 'The read operation timed out':
|
|
|
|
pass
|
|
|
|
else:
|
|
|
|
self._handleSocketError(e)
|
|
|
|
return
|
2005-01-19 14:14:38 +01:00
|
|
|
except socket.error, e:
|
|
|
|
self._handleSocketError(e)
|
|
|
|
return
|
|
|
|
if not self.irc.zombie:
|
|
|
|
self._sendIfMsgs()
|
|
|
|
|
|
|
|
def connect(self, **kwargs):
|
|
|
|
self.reconnect(reset=False, **kwargs)
|
|
|
|
|
2005-05-20 01:39:19 +02:00
|
|
|
def reconnect(self, reset=True):
|
2010-05-25 05:36:29 +02:00
|
|
|
self.nextReconnectTime = None
|
2005-01-19 14:14:38 +01:00
|
|
|
if self.connected:
|
|
|
|
drivers.log.reconnect(self.irc.network)
|
|
|
|
self.conn.close()
|
|
|
|
self.connected = False
|
|
|
|
if reset:
|
|
|
|
drivers.log.debug('Resetting %s.', self.irc)
|
|
|
|
self.irc.reset()
|
|
|
|
else:
|
|
|
|
drivers.log.debug('Not resetting %s.', self.irc)
|
|
|
|
server = self._getNextServer()
|
|
|
|
drivers.log.connect(self.currentServer)
|
|
|
|
try:
|
2005-01-31 16:26:01 +01:00
|
|
|
self.conn = utils.net.getSocket(server[0])
|
2005-01-19 14:14:38 +01:00
|
|
|
vhost = conf.supybot.protocols.irc.vhost()
|
|
|
|
self.conn.bind((vhost, 0))
|
|
|
|
except socket.error, e:
|
|
|
|
drivers.log.connectError(self.currentServer, e)
|
2005-05-20 01:39:19 +02:00
|
|
|
self.scheduleReconnect()
|
2005-01-19 14:14:38 +01:00
|
|
|
return
|
|
|
|
# We allow more time for the connect here, since it might take longer.
|
|
|
|
# At least 10 seconds.
|
|
|
|
self.conn.settimeout(max(10, conf.supybot.drivers.poll()*10))
|
|
|
|
try:
|
|
|
|
self.conn.connect(server)
|
|
|
|
self.conn.settimeout(conf.supybot.drivers.poll())
|
2010-12-09 19:33:35 +01:00
|
|
|
if getattr(conf.supybot.networks, self.irc.network).ssl():
|
|
|
|
assert globals().has_key('ssl')
|
|
|
|
self.conn = ssl.wrap_socket(self.conn)
|
2005-05-20 01:39:19 +02:00
|
|
|
self.connected = True
|
|
|
|
self.resetDelay()
|
2005-01-19 14:14:38 +01:00
|
|
|
except socket.error, e:
|
|
|
|
if e.args[0] == 115:
|
|
|
|
now = time.time()
|
|
|
|
when = now + 60
|
|
|
|
whenS = log.timestamp(when)
|
|
|
|
drivers.log.debug('Connection in progress, scheduling '
|
|
|
|
'connectedness check for %s', whenS)
|
2010-05-25 05:36:29 +02:00
|
|
|
self.writeCheckTime = when
|
2005-01-19 14:14:38 +01:00
|
|
|
else:
|
|
|
|
drivers.log.connectError(self.currentServer, e)
|
2005-05-20 01:39:19 +02:00
|
|
|
self.scheduleReconnect()
|
2005-01-19 14:14:38 +01:00
|
|
|
return
|
|
|
|
|
|
|
|
def _checkAndWriteOrReconnect(self):
|
2010-05-25 05:36:29 +02:00
|
|
|
self.writeCheckTime = None
|
2005-01-19 14:14:38 +01:00
|
|
|
drivers.log.debug('Checking whether we are connected.')
|
|
|
|
(_, w, _) = select.select([], [self.conn], [], 0)
|
|
|
|
if w:
|
|
|
|
drivers.log.debug('Socket is writable, it might be connected.')
|
|
|
|
self.connected = True
|
2005-05-20 01:39:19 +02:00
|
|
|
self.resetDelay()
|
2005-01-19 14:14:38 +01:00
|
|
|
else:
|
|
|
|
drivers.log.connectError(self.currentServer, 'Timed out')
|
|
|
|
self.reconnect()
|
|
|
|
|
2005-05-20 01:39:19 +02:00
|
|
|
def scheduleReconnect(self):
|
|
|
|
when = time.time() + self.getDelay()
|
2005-01-19 14:14:38 +01:00
|
|
|
if not world.dying:
|
|
|
|
drivers.log.reconnect(self.irc.network, when)
|
2010-05-25 05:36:29 +02:00
|
|
|
if self.nextReconnectTime:
|
|
|
|
drivers.log.error('Updating next reconnect time when one is '
|
|
|
|
'already present. This is a bug; please '
|
2005-05-20 01:39:19 +02:00
|
|
|
'report it, with an explanation of what caused '
|
|
|
|
'this to happen.')
|
2010-05-25 05:36:29 +02:00
|
|
|
self.nextReconnectTime = when
|
2005-01-19 14:14:38 +01:00
|
|
|
|
|
|
|
def die(self):
|
|
|
|
self.zombie = True
|
2010-05-25 05:36:29 +02:00
|
|
|
if self.nextReconnectTime is not None:
|
|
|
|
self.nextReconnectTime = None
|
|
|
|
if self.writeCheckTime is not None:
|
|
|
|
self.writeCheckTime = None
|
2005-01-19 14:14:38 +01:00
|
|
|
drivers.log.die(self.irc)
|
|
|
|
|
|
|
|
def _reallyDie(self):
|
|
|
|
if self.conn is not None:
|
|
|
|
self.conn.close()
|
|
|
|
drivers.IrcDriver.die(self)
|
|
|
|
# self.irc.die() Kill off the ircs yourself, jerk!
|
|
|
|
|
|
|
|
def name(self):
|
|
|
|
return '%s(%s)' % (self.__class__.__name__, self.irc)
|
|
|
|
|
|
|
|
|
|
|
|
Driver = SocketDriver
|
|
|
|
|
2006-02-11 16:52:51 +01:00
|
|
|
# vim:set shiftwidth=4 softtabstop=4 expandtab textwidth=79:
|
2005-01-19 14:14:38 +01:00
|
|
|
|