2003-09-01 10:06:55 +02:00
|
|
|
#!/usr/bin/env python
|
|
|
|
|
|
|
|
###
|
|
|
|
# Copyright (c) 2002, Jeremiah Fincher
|
|
|
|
# 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
|
|
|
|
2003-10-05 14:47:19 +02:00
|
|
|
import fix
|
2003-09-01 10:06:55 +02:00
|
|
|
|
|
|
|
import time
|
2004-01-18 08:58:26 +01:00
|
|
|
import atexit
|
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
|
|
|
|
2003-11-26 19:21:12 +01:00
|
|
|
import log
|
2003-09-01 10:06:55 +02:00
|
|
|
import conf
|
2003-12-03 23:29:49 +01:00
|
|
|
import world
|
2003-09-01 10:06:55 +02:00
|
|
|
import drivers
|
|
|
|
import ircmsgs
|
|
|
|
import schedule
|
|
|
|
|
2003-09-01 10:11:24 +02:00
|
|
|
instances = 0
|
2004-01-18 08:58:26 +01:00
|
|
|
originalPoll = conf.supybot.drivers.poll()
|
|
|
|
def resetPoll():
|
|
|
|
log.info('Resetting supybot.drivers.poll to %s', originalPoll)
|
|
|
|
conf.supybot.drivers.poll.setValue(originalPoll)
|
|
|
|
atexit.register(resetPoll)
|
2003-09-01 10:11:24 +02:00
|
|
|
|
2003-09-01 10:06:55 +02:00
|
|
|
class SocketDriver(drivers.IrcDriver):
|
2003-09-01 19:31:24 +02:00
|
|
|
def __init__(self, (server, port), irc, reconnectWaits=(0, 60, 300)):
|
2003-09-01 10:11:24 +02:00
|
|
|
global instances
|
|
|
|
instances += 1
|
2004-01-18 08:58:26 +01:00
|
|
|
conf.supybot.drivers.poll.setValue(originalPoll / instances)
|
2003-09-01 10:06:55 +02:00
|
|
|
self.server = (server, port)
|
2003-09-03 13:06:02 +02:00
|
|
|
drivers.IrcDriver.__init__(self) # Must come after server is set.
|
2003-09-01 10:06:55 +02:00
|
|
|
self.irc = irc
|
|
|
|
self.irc.driver = self
|
|
|
|
self.inbuffer = ''
|
|
|
|
self.outbuffer = ''
|
|
|
|
self.connected = False
|
2003-09-01 19:31:24 +02:00
|
|
|
self.reconnectWaitsIndex = 0
|
|
|
|
self.reconnectWaits = reconnectWaits
|
2003-09-01 10:06:55 +02:00
|
|
|
self.reconnect()
|
|
|
|
|
|
|
|
def _sendIfMsgs(self):
|
2004-02-06 10:20:47 +01:00
|
|
|
msgs = [self.irc.takeMsg()]
|
2003-09-01 10:06:55 +02:00
|
|
|
while msgs[-1] is not None:
|
|
|
|
msgs.append(self.irc.takeMsg())
|
|
|
|
del msgs[-1]
|
2003-11-15 05:37:04 +01:00
|
|
|
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:]
|
|
|
|
except socket.error, e:
|
|
|
|
# (11, 'Resource temporarily unavailable') raised if connect
|
|
|
|
# hasn't finished yet.
|
|
|
|
if e.args[0] != 11:
|
2004-01-15 12:33:35 +01:00
|
|
|
log.warning('Disconnect from %s: %s', self.server, e)
|
2004-01-02 23:29:14 +01:00
|
|
|
self.reconnect(wait=True)
|
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)
|
|
|
|
lines = self.inbuffer.split('\n')
|
|
|
|
self.inbuffer = lines.pop()
|
|
|
|
for line in lines:
|
2003-09-01 18:54:43 +02:00
|
|
|
start = time.time()
|
2003-09-01 10:06:55 +02:00
|
|
|
msg = ircmsgs.IrcMsg(line)
|
2004-01-01 21:12:01 +01:00
|
|
|
log.debug('Time to parse IrcMsg: %s', time.time()-start)
|
2003-09-01 18:50:56 +02:00
|
|
|
try:
|
|
|
|
self.irc.feedMsg(msg)
|
|
|
|
except:
|
2003-11-26 19:21:12 +01:00
|
|
|
log.exception('Uncaught exception outside Irc object:')
|
2003-09-01 10:06:55 +02:00
|
|
|
except socket.timeout:
|
|
|
|
pass
|
2003-09-01 19:31:24 +02:00
|
|
|
except socket.error, e:
|
2003-09-03 13:06:02 +02:00
|
|
|
# Same as with _sendIfMsgs.
|
|
|
|
if e.args[0] != 11:
|
2004-02-11 07:02:49 +01:00
|
|
|
log.warning('Disconnect from %s: %s', self.server, e)
|
2004-01-02 23:29:14 +01:00
|
|
|
self.reconnect(wait=True)
|
2003-09-01 19:31:24 +02:00
|
|
|
return
|
2003-09-01 10:06:55 +02:00
|
|
|
self._sendIfMsgs()
|
|
|
|
|
2004-01-01 21:12:01 +01:00
|
|
|
def reconnect(self, wait=False):
|
2004-01-05 13:03:54 +01:00
|
|
|
if self.connected:
|
2004-02-14 01:24:32 +01:00
|
|
|
log.info('Reconnect called on driver for %s.' % self.irc)
|
2004-01-05 13:03:54 +01:00
|
|
|
self.conn.close()
|
2004-02-14 01:24:32 +01:00
|
|
|
else:
|
|
|
|
log.info('Connecting to %s.' % ':'.join(map(str, self.server)))
|
2004-01-05 13:03:54 +01:00
|
|
|
self.connected = False
|
2004-01-01 21:12:01 +01:00
|
|
|
if wait:
|
2004-01-03 16:51:53 +01:00
|
|
|
log.info('Reconnect waiting.')
|
2004-01-01 21:12:01 +01:00
|
|
|
self._scheduleReconnect()
|
|
|
|
return
|
2004-01-05 13:03:54 +01:00
|
|
|
self.irc.reset()
|
2003-09-01 10:06:55 +02:00
|
|
|
self.conn = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
|
2004-01-18 08:58:26 +01:00
|
|
|
# We allow more time for the connect here, since it might take longer.
|
|
|
|
self.conn.settimeout(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:
|
|
|
|
self.conn.connect(self.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
|
|
|
|
log.info('Connection in progress, scheduling connectedness '
|
|
|
|
'check for %s', when)
|
|
|
|
schedule.addEvent(self._checkAndWriteOrReconnect, when)
|
|
|
|
else:
|
2004-02-14 02:06:19 +01:00
|
|
|
log.warning('Error connecting to %s: %s', self.irc.server, e)
|
2004-01-01 21:12:01 +01:00
|
|
|
self.reconnect(wait=True)
|
2003-09-03 13:06:02 +02:00
|
|
|
self.connected = True
|
|
|
|
self.reconnectWaitPeriodsIndex = 0
|
2003-09-01 19:31:24 +02:00
|
|
|
|
2004-02-12 01:49:13 +01:00
|
|
|
def _checkAndWriteOrReconnect(self):
|
|
|
|
(_, w, _) = select.select([], [self.conn], [], 0)
|
|
|
|
if w:
|
|
|
|
log.info('Socket is writable, it might be connected.')
|
|
|
|
self.connected = True
|
|
|
|
self.reconnectWaitPeriodsIndex = 0
|
|
|
|
else:
|
|
|
|
log.warning('Error connecting to %s: Timed out.', self.irc.server)
|
|
|
|
self.reconnect()
|
|
|
|
|
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]
|
2004-01-19 21:22:06 +01:00
|
|
|
when = log.timestamp(when)
|
2003-12-03 23:29:49 +01:00
|
|
|
if not world.dying:
|
2004-01-19 21:22:06 +01:00
|
|
|
log.info('Scheduling reconnect to %s at %s', self.server, when)
|
2003-09-01 18:14:04 +02:00
|
|
|
schedule.addEvent(self.reconnect, when)
|
2003-09-01 10:06:55 +02:00
|
|
|
|
2004-02-12 01:49:13 +01:00
|
|
|
def die(self):
|
|
|
|
log.info('Driver for %s dying.', self.irc)
|
|
|
|
self.conn.close()
|
|
|
|
# self.irc.die() Kill off the ircs yourself, jerk!
|
|
|
|
|
2003-09-03 13:06:02 +02:00
|
|
|
def name(self):
|
|
|
|
return '%s%s' % (self.__class__.__name__, self.server)
|
|
|
|
|
2003-09-01 10:06:55 +02:00
|
|
|
|
|
|
|
Driver = SocketDriver
|
|
|
|
|
|
|
|
# vim:set shiftwidth=4 tabstop=8 expandtab textwidth=78:
|
|
|
|
|