2003-09-01 10:06:55 +02:00
|
|
|
###
|
2004-08-23 15:14:06 +02:00
|
|
|
# Copyright (c) 2002-2004, Jeremiah Fincher
|
2003-09-01 10:06:55 +02: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.
|
|
|
|
"""
|
|
|
|
|
2003-09-03 13:06:02 +02:00
|
|
|
from __future__ import division
|
|
|
|
|
2003-11-26 19:21:12 +01:00
|
|
|
__revision__ ="$Id$"
|
2003-11-25 09:38:19 +01:00
|
|
|
|
2004-07-24 07:18:26 +02:00
|
|
|
import supybot.fix as fix
|
2003-09-01 10:06:55 +02:00
|
|
|
|
|
|
|
import time
|
2004-02-12 01:49:13 +01:00
|
|
|
import select
|
2003-09-01 10:06:55 +02:00
|
|
|
import socket
|
2003-11-15 05:37:04 +01:00
|
|
|
from itertools import imap
|
2003-09-01 10:06:55 +02:00
|
|
|
|
2004-07-24 07:18:26 +02: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
|
2003-09-01 10:06:55 +02:00
|
|
|
|
2004-07-30 08:52:21 +02:00
|
|
|
reconnectWaits = (0, 60, 300)
|
2004-07-31 06:58:53 +02:00
|
|
|
class SocketDriver(drivers.IrcDriver, drivers.ServersMixin):
|
2004-07-30 08:52:21 +02:00
|
|
|
def __init__(self, irc):
|
2003-09-01 10:06:55 +02:00
|
|
|
self.irc = irc
|
2004-09-09 01:34:48 +02:00
|
|
|
super(SocketDriver, self).__init__(irc)
|
2004-08-21 09:06:52 +02:00
|
|
|
self.conn = None
|
2004-07-30 08:52:21 +02:00
|
|
|
self.servers = ()
|
|
|
|
self.eagains = 0
|
2003-09-01 10:06:55 +02:00
|
|
|
self.inbuffer = ''
|
|
|
|
self.outbuffer = ''
|
2004-08-23 14:09:43 +02:00
|
|
|
self.zombie = False
|
2004-08-30 20:51:56 +02:00
|
|
|
self.scheduled = None
|
2003-09-01 10:06:55 +02:00
|
|
|
self.connected = False
|
2003-09-01 19:31:24 +02:00
|
|
|
self.reconnectWaitsIndex = 0
|
|
|
|
self.reconnectWaits = reconnectWaits
|
2004-07-26 08:22:27 +02:00
|
|
|
self.connect()
|
2003-09-01 10:06:55 +02:00
|
|
|
|
2004-07-30 08:52:21 +02:00
|
|
|
def _handleSocketError(self, e):
|
|
|
|
# (11, 'Resource temporarily unavailable') raised if connect
|
|
|
|
# hasn't finished yet. We'll keep track of how many we get.
|
|
|
|
if e.args[0] != 11 and self.eagains > 120:
|
2004-07-31 06:58:53 +02:00
|
|
|
drivers.log.disconnect(self.currentServer, e)
|
2004-07-30 08:52:21 +02:00
|
|
|
self.reconnect(wait=True)
|
|
|
|
else:
|
|
|
|
log.debug('Got EAGAIN, current count: %s.', self.eagains)
|
|
|
|
self.eagains += 1
|
|
|
|
|
2003-09-01 10:06:55 +02:00
|
|
|
def _sendIfMsgs(self):
|
2004-08-23 14:09:43 +02:00
|
|
|
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))
|
2003-09-01 10:06:55 +02:00
|
|
|
if self.outbuffer:
|
2003-09-03 13:06:02 +02:00
|
|
|
try:
|
|
|
|
sent = self.conn.send(self.outbuffer)
|
|
|
|
self.outbuffer = self.outbuffer[sent:]
|
2004-02-17 02:45:30 +01:00
|
|
|
self.eagains = 0
|
2003-09-03 13:06:02 +02:00
|
|
|
except socket.error, e:
|
2004-07-30 08:52:21 +02:00
|
|
|
self._handleSocketError(e)
|
2004-08-23 14:09:43 +02:00
|
|
|
if self.zombie and not self.outbuffer:
|
|
|
|
self._reallyDie()
|
2004-06-22 02:46:49 +02:00
|
|
|
|
2003-09-01 10:06:55 +02:00
|
|
|
def run(self):
|
|
|
|
if not self.connected:
|
2004-01-18 08:58:26 +01:00
|
|
|
# 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())
|
2003-09-01 10:06:55 +02:00
|
|
|
return
|
|
|
|
self._sendIfMsgs()
|
|
|
|
try:
|
|
|
|
self.inbuffer += self.conn.recv(1024)
|
2004-02-17 02:45:30 +01:00
|
|
|
self.eagains = 0
|
2003-09-01 10:06:55 +02:00
|
|
|
lines = self.inbuffer.split('\n')
|
|
|
|
self.inbuffer = lines.pop()
|
|
|
|
for line in lines:
|
2004-08-10 09:39:23 +02:00
|
|
|
msg = drivers.parseMsg(line)
|
2004-08-23 15:41:04 +02:00
|
|
|
if msg is not None:
|
|
|
|
self.irc.feedMsg(msg)
|
2003-09-01 10:06:55 +02:00
|
|
|
except socket.timeout:
|
|
|
|
pass
|
2003-09-01 19:31:24 +02:00
|
|
|
except socket.error, e:
|
2004-07-30 08:52:21 +02:00
|
|
|
self._handleSocketError(e)
|
2003-09-01 19:31:24 +02:00
|
|
|
return
|
2004-08-20 07:42:58 +02:00
|
|
|
if not self.irc.zombie:
|
|
|
|
self._sendIfMsgs()
|
2004-06-22 02:46:49 +02:00
|
|
|
|
2004-07-28 02:32:09 +02:00
|
|
|
def connect(self, **kwargs):
|
|
|
|
self.reconnect(reset=False, **kwargs)
|
2004-07-26 08:22:27 +02:00
|
|
|
|
|
|
|
def reconnect(self, wait=False, reset=True):
|
2004-08-30 20:51:56 +02:00
|
|
|
self.scheduled = False
|
2004-01-05 13:03:54 +01:00
|
|
|
if self.connected:
|
2004-07-31 06:58:53 +02:00
|
|
|
drivers.log.reconnect(self.irc.network)
|
2004-01-05 13:03:54 +01:00
|
|
|
self.conn.close()
|
2004-08-21 09:26:23 +02:00
|
|
|
self.connected = False
|
2004-07-31 06:58:53 +02:00
|
|
|
if reset:
|
|
|
|
drivers.log.debug('Resetting %s.', self.irc)
|
|
|
|
self.irc.reset()
|
|
|
|
else:
|
|
|
|
drivers.log.debug('Not resetting %s.', self.irc)
|
2004-01-01 21:12:01 +01:00
|
|
|
if wait:
|
|
|
|
self._scheduleReconnect()
|
|
|
|
return
|
2004-08-21 09:26:23 +02:00
|
|
|
server = self._getNextServer()
|
|
|
|
drivers.log.connect(self.currentServer)
|
2004-06-20 09:37:25 +02:00
|
|
|
try:
|
2004-07-30 08:52:21 +02:00
|
|
|
self.conn = utils.getSocket(server[0])
|
2004-06-20 09:37:25 +02:00
|
|
|
except socket.error, e:
|
2004-07-31 06:58:53 +02:00
|
|
|
drivers.log.connectError(self.currentServer, e)
|
2004-06-20 09:37:25 +02:00
|
|
|
self.reconnect(wait=True)
|
|
|
|
return
|
2004-01-18 08:58:26 +01:00
|
|
|
# We allow more time for the connect here, since it might take longer.
|
2004-04-19 06:29:36 +02:00
|
|
|
# At least 10 seconds.
|
2004-04-19 06:36:26 +02:00
|
|
|
self.conn.settimeout(max(10, conf.supybot.drivers.poll()*10))
|
2003-09-01 19:31:24 +02:00
|
|
|
if self.reconnectWaitsIndex < len(self.reconnectWaits)-1:
|
|
|
|
self.reconnectWaitsIndex += 1
|
2003-09-01 17:46:10 +02:00
|
|
|
try:
|
2004-07-30 08:52:21 +02:00
|
|
|
self.conn.connect(server)
|
2004-01-18 08:58:26 +01:00
|
|
|
self.conn.settimeout(conf.supybot.drivers.poll())
|
2003-09-01 17:46:10 +02:00
|
|
|
except socket.error, e:
|
2004-02-12 01:49:13 +01:00
|
|
|
if e.args[0] == 115:
|
|
|
|
now = time.time()
|
|
|
|
when = now + 60
|
2004-04-12 22:33:11 +02:00
|
|
|
whenS = log.timestamp(when)
|
2004-07-31 06:58:53 +02:00
|
|
|
drivers.log.debug('Connection in progress, scheduling '
|
|
|
|
'connectedness check for %s', whenS)
|
2004-02-12 01:49:13 +01:00
|
|
|
schedule.addEvent(self._checkAndWriteOrReconnect, when)
|
|
|
|
else:
|
2004-07-31 06:58:53 +02:00
|
|
|
drivers.log.connectError(self.currentServer, e)
|
2004-01-01 21:12:01 +01:00
|
|
|
self.reconnect(wait=True)
|
2004-04-12 23:10:27 +02:00
|
|
|
return
|
2003-09-03 13:06:02 +02:00
|
|
|
self.connected = True
|
|
|
|
self.reconnectWaitPeriodsIndex = 0
|
2004-06-22 02:46:49 +02:00
|
|
|
|
2004-02-12 01:49:13 +01:00
|
|
|
def _checkAndWriteOrReconnect(self):
|
2004-07-31 06:58:53 +02:00
|
|
|
drivers.log.debug('Checking whether we are connected.')
|
2004-02-12 01:49:13 +01:00
|
|
|
(_, w, _) = select.select([], [self.conn], [], 0)
|
|
|
|
if w:
|
2004-07-31 06:58:53 +02:00
|
|
|
drivers.log.debug('Socket is writable, it might be connected.')
|
2004-02-12 01:49:13 +01:00
|
|
|
self.connected = True
|
|
|
|
self.reconnectWaitPeriodsIndex = 0
|
|
|
|
else:
|
2004-07-31 06:58:53 +02:00
|
|
|
drivers.log.connectError(self.currentServer, 'Timed out')
|
2004-02-12 01:49:13 +01:00
|
|
|
self.reconnect()
|
2004-06-22 02:46:49 +02:00
|
|
|
|
2004-01-01 21:12:01 +01:00
|
|
|
def _scheduleReconnect(self):
|
2003-09-01 19:31:24 +02:00
|
|
|
when = time.time() + self.reconnectWaits[self.reconnectWaitsIndex]
|
2003-12-03 23:29:49 +01:00
|
|
|
if not world.dying:
|
2004-07-31 06:58:53 +02:00
|
|
|
drivers.log.reconnect(self.irc.network, when)
|
2004-08-30 20:51:56 +02:00
|
|
|
self.scheduled = schedule.addEvent(self.reconnect, when)
|
2003-09-01 10:06:55 +02:00
|
|
|
|
2004-02-12 01:49:13 +01:00
|
|
|
def die(self):
|
2004-08-23 14:09:43 +02:00
|
|
|
self.zombie = True
|
2004-08-30 20:51:56 +02:00
|
|
|
if self.scheduled:
|
|
|
|
schedule.removeEvent(self.scheduled)
|
2004-07-31 06:58:53 +02:00
|
|
|
drivers.log.die(self.irc)
|
2004-08-23 14:09:43 +02:00
|
|
|
|
|
|
|
def _reallyDie(self):
|
2004-08-21 09:06:52 +02:00
|
|
|
if self.conn is not None:
|
|
|
|
self.conn.close()
|
2004-08-23 14:09:43 +02:00
|
|
|
drivers.IrcDriver.die(self)
|
2004-02-12 01:49:13 +01:00
|
|
|
# self.irc.die() Kill off the ircs yourself, jerk!
|
|
|
|
|
2003-09-03 13:06:02 +02:00
|
|
|
def name(self):
|
2004-07-30 08:52:21 +02:00
|
|
|
return '%s(%s)' % (self.__class__.__name__, self.irc)
|
2003-09-03 13:06:02 +02:00
|
|
|
|
2003-09-01 10:06:55 +02:00
|
|
|
|
|
|
|
Driver = SocketDriver
|
|
|
|
|
|
|
|
# vim:set shiftwidth=4 tabstop=8 expandtab textwidth=78:
|
|
|
|
|