-
Notifications
You must be signed in to change notification settings - Fork 4
/
plugin.py
357 lines (315 loc) · 12.9 KB
/
plugin.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
###
# Copyright (c) 2005,2008, James Vega
# 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.
###
import time
import Queue
import random
import threading
import supybot.utils as utils
import supybot.world as world
from supybot.commands import *
import supybot.ircmsgs as ircmsgs
import supybot.plugins as plugins
import supybot.ircutils as ircutils
import supybot.schedule as schedule
import supybot.callbacks as callbacks
class DbmMarkovDB(object):
def __init__(self, filename):
self.dbs = ircutils.IrcDict()
self.filename = filename
def close(self):
for db in self.dbs.values():
db.close()
def _getDb(self, channel):
import anydbm
if channel not in self.dbs:
filename = plugins.makeChannelFilename(self.filename, channel)
# To keep the code simpler for addPair, I decided not to make
# self.dbs[channel]['firsts'] and ['lasts']. Instead, we'll pad
# the words list being sent to addPair such that ['\n \n'] will be
# ['firsts'] and ['\n'] will be ['lasts'].
self.dbs[channel] = anydbm.open(filename, 'c')
return self.dbs[channel]
def _flush(self, db):
if hasattr(db, 'sync'):
db.sync()
if hasattr(db, 'flush'):
db.flush()
def _addPair(self, channel, pair, follow):
db = self._getDb(channel)
# EW! but necessary since not all anydbm backends support
# "combined in db"
if db.has_key(pair):
db[pair] = ' '.join([db[pair], follow])
else:
db[pair] = follow
self._flush(db)
def _combine(self, first, second):
first = first or '\n'
second = second or '\n'
return '%s %s' % (first, second)
def addPair(self, channel, first, second, follower, isFirst, isLast):
combined = self._combine(first, second)
self._addPair(channel, combined, follower or '\n')
if isLast:
self._addPair(channel, '\n', second)
def getFirstPair(self, channel):
db = self._getDb(channel)
firsts = db['\n \n'].split()
if firsts:
return (None, utils.iter.choice(firsts))
else:
raise KeyError, 'No firsts for %s.' % channel
def getFollower(self, channel, first, second):
db = self._getDb(channel)
followers = db[self._combine(first, second)]
follower = utils.iter.choice(followers.split(' '))
last = False
if follower == '\n':
follower = None
last = True
return (follower, last)
def firsts(self, channel):
db = self._getDb(channel)
if db.has_key('\n \n'):
return len(set(db['\n \n'].split()))
else:
return 0
def lasts(self, channel):
db = self._getDb(channel)
if db.has_key('\n'):
return len(set(db['\n'].split()))
else:
return 0
def pairs(self, channel):
db = self._getDb(channel)
pairs = [k for k in db.keys() if '\n' not in k]
return len(pairs)
def follows(self, channel):
db = self._getDb(channel)
# anydbm sucks in that we're not guaranteed to have .iteritems()
# *cough*gdbm*cough*, so this has to be done the stupid way
follows = [len([f for f in db[k].split() if f != '\n'])
for k in db.keys() if '\n' not in k]
return sum(follows)
MarkovDB = plugins.DB('Markov', {'anydbm': DbmMarkovDB})
class MarkovWorkQueue(threading.Thread):
def __init__(self, *args, **kwargs):
name = 'Thread #%s (MarkovWorkQueue)' % world.threadsSpawned
world.threadsSpawned += 1
threading.Thread.__init__(self, name=name)
self.db = MarkovDB(*args, **kwargs)
self.q = Queue.Queue()
self.killed = False
self.setDaemon(True)
self.start()
def die(self):
self.killed = True
self.q.put(None)
def enqueue(self, f):
self.q.put(f)
def run(self):
while not self.killed:
f = self.q.get()
if f is not None:
f(self.db)
self.db.close()
class Markov(callbacks.Plugin):
def __init__(self, irc):
self.q = MarkovWorkQueue()
self.__parent = super(Markov, self)
self.__parent.__init__(irc)
self.lastSpoke = time.time()
def die(self):
self.q.die()
self.__parent.die()
def tokenize(self, m):
if ircmsgs.isAction(m):
return ircmsgs.unAction(m).split()
elif ircmsgs.isCtcp(m):
return []
else:
return m.args[1].split()
def doPrivmsg(self, irc, msg):
if irc.isChannel(msg.args[0]):
speakChan = msg.args[0]
dbChan = plugins.getChannel(speakChan)
canSpeak = False
now = time.time()
throttle = self.registryValue('randomSpeaking.throttleTime',
speakChan)
prob = self.registryValue('randomSpeaking.probability', speakChan)
delay = self.registryValue('randomSpeaking.maxDelay', speakChan)
if now > self.lastSpoke + throttle:
canSpeak = True
if canSpeak and random.random() < prob:
f = self._markov(speakChan, irc, prefixNick=False,
to=speakChan, Random=True)
schedule.addEvent(lambda: self.q.enqueue(f), now + delay)
self.lastSpoke = now + delay
words = self.tokenize(msg)
# This shouldn't happen often (CTCP messages being the possible
# exception)
if not words:
return
if self.registryValue('ignoreBotCommands', speakChan) and \
callbacks.addressed(irc.nick, msg):
return
words.insert(0, None)
words.insert(0, None)
words.append(None)
def doPrivmsg(db):
for (first, second, follower) in utils.seq.window(words, 3):
db.addPair(dbChan, first, second, follower,
isFirst=(first is None and second is None),
isLast=(follower is None))
self.q.enqueue(doPrivmsg)
def _markov(self, channel, irc, word1=None, word2=None, **kwargs):
def f(db):
minLength = self.registryValue('minChainLength', channel)
maxTries = self.registryValue('maxAttempts', channel)
Random = kwargs.pop('Random', None)
while maxTries > 0:
maxTries -= 1;
if word1 and word2:
words = [word1, word2]
resp = [word1]
follower = word2
elif word1 or word2:
words = [None, word1 or word2]
resp = []
follower = words[-1]
else:
try:
# words is of the form [None, word]
words = list(db.getFirstPair(channel))
resp = []
follower = words[-1]
except KeyError:
irc.error(
format('I don\'t have any first pairs for %s.',
channel))
return # We can't use raise here because the exception
# isn't caught and therefore isn't sent to the
# server
last = False
while not last:
resp.append(follower)
try:
(follower, last) = db.getFollower(channel, words[-2],
words[-1])
except KeyError:
irc.error('I found a broken link in the Markov chain. '
' Maybe I received two bad links to start '
'the chain.')
return # ditto here re: Raise
words.append(follower)
if len(resp) >= minLength:
irc.reply(' '.join(resp), **kwargs)
return
else:
continue
if not Random:
irc.error(
format('I was unable to generate a Markov chain at least '
'%n long.', (minLength, 'word')))
else:
self.log.debug('Not randomSpeaking. Unable to generate a '
'Markov chain at least %n long.',
(minLength, 'word'))
return f
def markov(self, irc, msg, args, channel, word1, word2):
"""[<channel>] [word1 [word2]]
Returns a randomly-generated Markov Chain generated sentence from the
data kept on <channel> (which is only necessary if not sent in the
channel itself). If word1 and word2 are specified, they will be used
to start the Markov chain.
"""
f = self._markov(channel, irc, word1, word2,
prefixNick=False, Random=False)
self.q.enqueue(f)
markov = wrap(markov, ['channeldb', optional('something'),
additional('something')])
def firsts(self, irc, msg, args, channel):
"""[<channel>]
Returns the number of Markov's first links in the database for
<channel>.
"""
def firsts(db):
irc.reply(
format('There are %s firsts in my Markov database for %s.',
db.firsts(channel), channel))
self.q.enqueue(firsts)
firsts = wrap(firsts, ['channeldb'])
def lasts(self, irc, msg, args, channel):
"""[<channel>]
Returns the number of Markov's last links in the database for
<channel>.
"""
def lasts(db):
irc.reply(
format('There are %i lasts in my Markov database for %s.',
db.lasts(channel), channel))
self.q.enqueue(lasts)
lasts = wrap(lasts, ['channeldb'])
def pairs(self, irc, msg, args, channel):
"""[<channel>]
Returns the number of Markov's chain links in the database for
<channel>.
"""
def pairs(db):
irc.reply(
format('There are %i pairs in my Markov database for %s.',
db.pairs(channel), channel))
self.q.enqueue(pairs)
pairs = wrap(pairs, ['channeldb'])
def follows(self, irc, msg, args, channel):
"""[<channel>]
Returns the number of Markov's third links in the database for
<channel>.
"""
def follows(db):
irc.reply(
format('There are %i follows in my Markov database for %s.',
db.follows(channel), channel))
self.q.enqueue(follows)
follows = wrap(follows, ['channeldb'])
def stats(self, irc, msg, args, channel):
"""[<channel>]
Returns all stats (firsts, lasts, pairs, follows) for <channel>'s
Markov database.
"""
def stats(db):
irc.reply(
format('Firsts: %i; Lasts: %i; Pairs: %i; Follows: %i',
db.firsts(channel), db.lasts(channel),
db.pairs(channel), db.follows(channel)))
self.q.enqueue(stats)
stats = wrap(stats, ['channeldb'])
Class = Markov
# vim:set shiftwidth=4 softtabstop=4 expandtab textwidth=79: