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
|
# Copyright (C) 1998-2018 by the Free Software Foundation, Inc.
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
# as published by the Free Software Foundation; either version 2
# of the License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,
# USA.
#
# site modules
#
import os
import marshal
import time
import errno
#
# package/project modules
#
import pipermail
from Mailman import LockFile
CACHESIZE = pipermail.CACHESIZE
try:
import cPickle
pickle = cPickle
except ImportError:
import pickle
#
# we're using a python dict in place of
# of bsddb.btree database. only defining
# the parts of the interface used by class HyperDatabase
# only one thing can access this at a time.
#
class DumbBTree:
"""Stores pickles of Article objects
This dictionary-like object stores pickles of all the Article
objects. The object itself is stored using marshal. It would be
much simpler, and probably faster, to store the actual objects in
the DumbBTree and pickle it.
TBD: Also needs a more sensible name, like IteratableDictionary or
SortedDictionary.
"""
def __init__(self, path):
self.current_index = 0
self.path = path
self.lockfile = LockFile.LockFile(self.path + ".lock")
self.lock()
self.__dirty = 0
self.dict = {}
self.sorted = []
self.load()
def __repr__(self):
return "DumbBTree(%s)" % self.path
def __sort(self, dirty=None):
if self.__dirty == 1 or dirty:
self.sorted = self.dict.keys()
self.sorted.sort()
self.__dirty = 0
def lock(self):
self.lockfile.lock()
def unlock(self):
try:
self.lockfile.unlock()
except LockFile.NotLockedError:
pass
def __delitem__(self, item):
# if first hasn't been called, we can skip the sort
if self.current_index == 0:
del self.dict[item]
self.__dirty = 1
return
try:
ci = self.sorted[self.current_index]
except IndexError:
ci = None
if ci == item:
try:
ci = self.sorted[self.current_index + 1]
except IndexError:
ci = None
del self.dict[item]
self.__sort(dirty=1)
if ci is not None:
self.current_index = self.sorted.index(ci)
else:
self.current_index = self.current_index + 1
def clear(self):
# bulk clearing much faster than deleting each item, esp. with the
# implementation of __delitem__() above :(
self.dict = {}
def first(self):
self.__sort() # guarantee that the list is sorted
if not self.sorted:
raise KeyError
else:
key = self.sorted[0]
self.current_index = 1
return key, self.dict[key]
def last(self):
if not self.sorted:
raise KeyError
else:
key = self.sorted[-1]
self.current_index = len(self.sorted) - 1
return key, self.dict[key]
def next(self):
try:
key = self.sorted[self.current_index]
except IndexError:
raise KeyError
self.current_index = self.current_index + 1
return key, self.dict[key]
def has_key(self, key):
return self.dict.has_key(key)
def set_location(self, loc):
index = 0
self.__sort()
for key in self.sorted:
if key[0] == loc:
self.current_index = index
return key,self.dict[key]
index = index + 1
raise KeyError(loc)
def __getitem__(self, item):
return self.dict[item]
def __setitem__(self, item, val):
# if first hasn't been called, then we don't need to worry
# about sorting again
if self.current_index == 0:
self.dict[item] = val
self.__dirty = 1
return
try:
current_item = self.sorted[self.current_index]
except IndexError:
current_item = item
self.dict[item] = val
self.__sort(dirty=1)
self.current_index = self.sorted.index(current_item)
def __len__(self):
return len(self.sorted)
def load(self):
try:
fp = open(self.path)
try:
self.dict = marshal.load(fp)
finally:
fp.close()
except IOError, e:
if e.errno <> errno.ENOENT: raise
pass
except EOFError:
pass
else:
self.__sort(dirty=1)
def close(self):
omask = os.umask(007)
try:
fp = open(self.path, 'w')
finally:
os.umask(omask)
fp.write(marshal.dumps(self.dict))
fp.close()
self.unlock()
# this is lifted straight out of pipermail with
# the bsddb.btree replaced with above class.
# didn't use inheritance because of all the
# __internal stuff that needs to be here -scott
#
class HyperDatabase(pipermail.Database):
__super_addArticle = pipermail.Database.addArticle
def __init__(self, basedir, mlist):
self.__cache = {}
self.__currentOpenArchive = None # The currently open indices
self._mlist = mlist
self.basedir = os.path.expanduser(basedir)
# Recently added articles, indexed only by message ID
self.changed={}
def firstdate(self, archive):
self.__openIndices(archive)
date = 'None'
try:
datekey, msgid = self.dateIndex.first()
date = time.asctime(time.localtime(float(datekey[0])))
except KeyError:
pass
return date
def lastdate(self, archive):
self.__openIndices(archive)
date = 'None'
try:
datekey, msgid = self.dateIndex.last()
date = time.asctime(time.localtime(float(datekey[0])))
except KeyError:
pass
return date
def numArticles(self, archive):
self.__openIndices(archive)
return len(self.dateIndex)
def addArticle(self, archive, article, subject=None, author=None,
date=None):
self.__openIndices(archive)
self.__super_addArticle(archive, article, subject, author, date)
def __openIndices(self, archive):
if self.__currentOpenArchive == archive:
return
self.__closeIndices()
arcdir = os.path.join(self.basedir, 'database')
omask = os.umask(0)
try:
try:
os.mkdir(arcdir, 02770)
except OSError, e:
if e.errno <> errno.EEXIST: raise
finally:
os.umask(omask)
for i in ('date', 'author', 'subject', 'article', 'thread'):
t = DumbBTree(os.path.join(arcdir, archive + '-' + i))
setattr(self, i + 'Index', t)
self.__currentOpenArchive = archive
def __closeIndices(self):
for i in ('date', 'author', 'subject', 'thread', 'article'):
attr = i + 'Index'
if hasattr(self, attr):
index = getattr(self, attr)
if i == 'article':
if not hasattr(self, 'archive_length'):
self.archive_length = {}
l = len(index)
self.archive_length[self.__currentOpenArchive] = l
index.close()
delattr(self, attr)
self.__currentOpenArchive = None
def close(self):
self.__closeIndices()
def hasArticle(self, archive, msgid):
self.__openIndices(archive)
return self.articleIndex.has_key(msgid)
def setThreadKey(self, archive, key, msgid):
self.__openIndices(archive)
self.threadIndex[key]=msgid
def getArticle(self, archive, msgid):
self.__openIndices(archive)
if not self.__cache.has_key(msgid):
# get the pickled object out of the DumbBTree
buf = self.articleIndex[msgid]
article = self.__cache[msgid] = pickle.loads(buf)
# For upgrading older archives
article.setListIfUnset(self._mlist)
else:
article = self.__cache[msgid]
return article
def first(self, archive, index):
self.__openIndices(archive)
index = getattr(self, index + 'Index')
try:
key, msgid = index.first()
return msgid
except KeyError:
return None
def next(self, archive, index):
self.__openIndices(archive)
index = getattr(self, index + 'Index')
try:
key, msgid = index.next()
return msgid
except KeyError:
return None
def getOldestArticle(self, archive, subject):
self.__openIndices(archive)
subject = subject.lower()
try:
self.subjectIndex.set_location(subject)
key, tempid = self.subjectIndex.next()
[subject2, date]= key[:2]
if subject!=subject2: return None
return tempid
except KeyError:
return None
def newArchive(self, archive):
pass
def clearIndex(self, archive, index):
self.__openIndices(archive)
if hasattr(self.threadIndex, 'clear'):
self.threadIndex.clear()
return
finished=0
try:
key, msgid=self.threadIndex.first()
except KeyError: finished=1
while not finished:
del self.threadIndex[key]
try:
key, msgid=self.threadIndex.next()
except KeyError: finished=1
|