2003-03-27 21:10:10 +01: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.
|
|
|
|
###
|
|
|
|
|
|
|
|
"""
|
|
|
|
Simple utility functions.
|
|
|
|
"""
|
|
|
|
|
2003-08-07 04:48:44 +02:00
|
|
|
## from __future__ import generators
|
2003-03-31 08:55:34 +02:00
|
|
|
|
2003-11-25 09:38:19 +01:00
|
|
|
__revision__ = "$Id$"
|
|
|
|
|
2003-10-05 14:47:19 +02:00
|
|
|
import fix
|
2003-03-27 21:10:10 +01:00
|
|
|
|
2003-08-17 22:09:09 +02:00
|
|
|
import os
|
2003-04-16 07:26:24 +02:00
|
|
|
import re
|
2003-10-28 15:20:00 +01:00
|
|
|
import md5
|
|
|
|
import sha
|
2004-01-16 17:13:24 +01:00
|
|
|
import types
|
2004-01-16 18:33:51 +01:00
|
|
|
import socket
|
2003-04-05 13:23:28 +02:00
|
|
|
import string
|
2003-03-27 21:10:10 +01:00
|
|
|
import sgmllib
|
2003-11-07 20:40:03 +01:00
|
|
|
import compiler
|
2003-08-27 18:25:43 +02:00
|
|
|
import textwrap
|
2003-03-27 21:10:10 +01:00
|
|
|
import htmlentitydefs
|
2003-12-02 19:58:57 +01:00
|
|
|
from itertools import imap, ifilter
|
2003-03-27 21:10:10 +01:00
|
|
|
|
2003-10-16 22:05:45 +02:00
|
|
|
from structures import TwoWayDictionary
|
|
|
|
|
2003-09-01 20:39:27 +02:00
|
|
|
def normalizeWhitespace(s):
|
|
|
|
"""Normalizes the whitespace in a string; \s+ becomes one space."""
|
|
|
|
return ' '.join(s.split())
|
|
|
|
|
2003-03-27 21:10:10 +01:00
|
|
|
class HtmlToText(sgmllib.SGMLParser):
|
|
|
|
"""Taken from some eff-bot code on c.l.p."""
|
|
|
|
entitydefs = htmlentitydefs.entitydefs
|
2003-04-02 11:20:49 +02:00
|
|
|
def __init__(self, tagReplace=' '):
|
2003-03-27 21:10:10 +01:00
|
|
|
self.data = []
|
2003-04-02 11:20:49 +02:00
|
|
|
self.tagReplace = tagReplace
|
2003-03-27 21:10:10 +01:00
|
|
|
sgmllib.SGMLParser.__init__(self)
|
|
|
|
|
2003-08-19 12:38:45 +02:00
|
|
|
def unknown_starttag(self, tag, attr):
|
2003-04-02 11:20:49 +02:00
|
|
|
self.data.append(self.tagReplace)
|
2003-03-27 21:10:10 +01:00
|
|
|
|
|
|
|
def unknown_endtag(self, tag):
|
2003-04-02 11:20:49 +02:00
|
|
|
self.data.append(self.tagReplace)
|
2003-03-27 21:10:10 +01:00
|
|
|
|
|
|
|
def handle_data(self, data):
|
|
|
|
self.data.append(data)
|
|
|
|
|
|
|
|
def getText(self):
|
|
|
|
text = ''.join(self.data).strip()
|
2003-09-01 20:39:27 +02:00
|
|
|
return normalizeWhitespace(text)
|
2003-03-27 21:10:10 +01:00
|
|
|
|
2003-04-02 11:20:49 +02:00
|
|
|
def htmlToText(s, tagReplace=' '):
|
2003-08-10 12:45:44 +02:00
|
|
|
"""Turns HTML into text. tagReplace is a string to replace HTML tags with.
|
|
|
|
"""
|
2003-04-02 11:20:49 +02:00
|
|
|
x = HtmlToText(tagReplace)
|
2003-03-27 21:10:10 +01:00
|
|
|
x.feed(s)
|
|
|
|
return x.getText()
|
|
|
|
|
2003-03-31 07:14:21 +02:00
|
|
|
def eachSubstring(s):
|
2003-08-10 12:45:44 +02:00
|
|
|
"""Returns every substring starting at the first index until the last."""
|
|
|
|
for i in xrange(1, len(s)+1):
|
2003-03-31 07:14:21 +02:00
|
|
|
yield s[:i]
|
|
|
|
|
2003-11-11 15:16:27 +01:00
|
|
|
def abbrev(strings, d=None):
|
2003-08-10 12:45:44 +02:00
|
|
|
"""Returns a dictionary mapping unambiguous abbreviations to full forms."""
|
2003-11-11 15:16:27 +01:00
|
|
|
if d is None:
|
|
|
|
d = {}
|
2003-03-31 07:14:21 +02:00
|
|
|
for s in strings:
|
|
|
|
for abbreviation in eachSubstring(s):
|
|
|
|
if abbreviation not in d:
|
|
|
|
d[abbreviation] = s
|
|
|
|
else:
|
2003-04-04 18:14:58 +02:00
|
|
|
if abbreviation not in strings:
|
|
|
|
d[abbreviation] = None
|
2003-03-31 07:14:21 +02:00
|
|
|
removals = []
|
|
|
|
for key in d:
|
|
|
|
if d[key] is None:
|
|
|
|
removals.append(key)
|
|
|
|
for key in removals:
|
|
|
|
del d[key]
|
|
|
|
return d
|
|
|
|
|
2003-05-20 17:37:25 +02:00
|
|
|
def timeElapsed(elapsed, leadingZeroes=False, years=True, weeks=True,
|
2003-04-03 11:11:57 +02:00
|
|
|
days=True, hours=True, minutes=True, seconds=True):
|
2003-08-10 12:45:44 +02:00
|
|
|
"""Given <elapsed> seconds, returns a string with an English description of
|
|
|
|
how much time as passed. leadingZeroes determines whether 0 days, 0 hours,
|
|
|
|
etc. will be printed; the others determine what larger time periods should
|
|
|
|
be used.
|
|
|
|
"""
|
2003-06-03 05:18:14 +02:00
|
|
|
elapsed = int(elapsed)
|
2003-05-20 17:37:25 +02:00
|
|
|
assert years or weeks or days or \
|
|
|
|
hours or minutes or seconds, 'One flag must be True'
|
2003-04-03 11:11:57 +02:00
|
|
|
ret = []
|
|
|
|
if years:
|
|
|
|
yrs, elapsed = elapsed // 31536000, elapsed % 31536000
|
|
|
|
if leadingZeroes or yrs:
|
|
|
|
if yrs:
|
|
|
|
leadingZeroes = True
|
2003-12-12 16:41:33 +01:00
|
|
|
ret.append(nItems('year', yrs))
|
2003-04-03 11:11:57 +02:00
|
|
|
if weeks:
|
|
|
|
wks, elapsed = elapsed // 604800, elapsed % 604800
|
|
|
|
if leadingZeroes or wks:
|
|
|
|
if wks:
|
|
|
|
leadingZeroes = True
|
2003-12-12 16:41:33 +01:00
|
|
|
ret.append(nItems('week', wks))
|
2003-04-03 11:11:57 +02:00
|
|
|
if days:
|
|
|
|
ds, elapsed = elapsed // 86400, elapsed % 86400
|
|
|
|
if leadingZeroes or ds:
|
|
|
|
if ds:
|
|
|
|
leadingZeroes = True
|
2003-12-12 16:41:33 +01:00
|
|
|
ret.append(nItems('day', ds))
|
2003-04-03 11:11:57 +02:00
|
|
|
if hours:
|
|
|
|
hrs, elapsed = elapsed // 3600, elapsed % 3600
|
|
|
|
if leadingZeroes or hrs:
|
|
|
|
if hrs:
|
|
|
|
leadingZeroes = True
|
2003-12-12 16:41:33 +01:00
|
|
|
ret.append(nItems('hour', hrs))
|
2003-04-03 11:11:57 +02:00
|
|
|
if minutes or seconds:
|
|
|
|
mins, secs = elapsed // 60, elapsed % 60
|
|
|
|
if leadingZeroes or mins:
|
2003-12-12 16:41:33 +01:00
|
|
|
ret.append(nItems('minute', mins))
|
2003-04-03 11:11:57 +02:00
|
|
|
if seconds:
|
2003-12-12 16:41:33 +01:00
|
|
|
ret.append(nItems('second', secs))
|
2003-04-03 11:11:57 +02:00
|
|
|
if len(ret) == 0:
|
|
|
|
raise ValueError, 'Time difference not great enough to be noted.'
|
|
|
|
if len(ret) == 1:
|
|
|
|
return ret[0]
|
|
|
|
else:
|
2003-08-21 18:31:11 +02:00
|
|
|
return commaAndify(ret)
|
2003-08-20 11:24:57 +02:00
|
|
|
|
2003-04-04 17:49:24 +02:00
|
|
|
def distance(s, t):
|
2003-08-10 12:45:44 +02:00
|
|
|
"""Returns the levenshtein edit distance between two strings."""
|
2003-04-04 17:49:24 +02:00
|
|
|
n = len(s)
|
|
|
|
m = len(t)
|
|
|
|
if n == 0:
|
|
|
|
return m
|
|
|
|
elif m == 0:
|
|
|
|
return n
|
2003-04-06 17:10:14 +02:00
|
|
|
d = []
|
|
|
|
for i in range(n+1):
|
|
|
|
d.append([])
|
|
|
|
for j in range(m+1):
|
|
|
|
d[i].append(0)
|
|
|
|
d[0][j] = j
|
|
|
|
d[i][0] = i
|
2003-04-04 17:49:24 +02:00
|
|
|
for i in range(1, n+1):
|
|
|
|
cs = s[i-1]
|
|
|
|
for j in range(1, m+1):
|
|
|
|
ct = t[j-1]
|
2003-04-06 17:10:14 +02:00
|
|
|
cost = int(cs != ct)
|
2003-04-04 17:49:24 +02:00
|
|
|
d[i][j] = min(d[i-1][j]+1, d[i][j-1]+1, d[i-1][j-1]+cost)
|
|
|
|
return d[n][m]
|
2003-04-05 13:23:28 +02:00
|
|
|
|
|
|
|
_soundextrans = string.maketrans(string.ascii_uppercase,
|
|
|
|
'01230120022455012623010202')
|
|
|
|
_notUpper = string.ascii.translate(string.ascii, string.ascii_uppercase)
|
|
|
|
def soundex(s, length=4):
|
2003-08-10 12:45:44 +02:00
|
|
|
"""Returns the soundex hash of a given string."""
|
2003-04-05 13:23:28 +02:00
|
|
|
s = s.upper() # Make everything uppercase.
|
|
|
|
s = s.translate(string.ascii, _notUpper) # Delete non-letters.
|
2003-09-08 08:10:06 +02:00
|
|
|
if not s:
|
|
|
|
raise ValueError, 'Invalid string for soundex: %s'
|
|
|
|
firstChar = s[0] # Save the first character.
|
2003-04-05 13:23:28 +02:00
|
|
|
s = s.translate(_soundextrans) # Convert to soundex numbers.
|
|
|
|
s = s.lstrip(s[0]) # Remove all repeated first characters.
|
|
|
|
L = [firstChar]
|
|
|
|
for c in s:
|
|
|
|
if c != L[-1]:
|
|
|
|
L.append(c)
|
2003-08-10 12:45:44 +02:00
|
|
|
L = [c for c in L if c != '0'] + (['0']*(length-1))
|
2003-04-05 13:23:28 +02:00
|
|
|
s = ''.join(L)
|
2003-04-05 13:29:29 +02:00
|
|
|
return length and s[:length] or s.rstrip('0')
|
2003-04-03 11:11:57 +02:00
|
|
|
|
2003-04-12 14:50:20 +02:00
|
|
|
def dqrepr(s):
|
|
|
|
"""Returns a repr() of s guaranteed to be in double quotes."""
|
2003-07-31 08:20:58 +02:00
|
|
|
# The wankers-that-be decided not to use double-quotes anymore in 2.3.
|
|
|
|
# return '"' + repr("'\x00" + s)[6:]
|
2003-08-17 08:28:05 +02:00
|
|
|
return '"%s"' % s.encode('string_escape').replace('"', '\\"')
|
2003-04-12 14:50:20 +02:00
|
|
|
|
2003-04-16 07:26:24 +02:00
|
|
|
nonEscapedSlashes = re.compile(r'(?<!\\)/')
|
|
|
|
def perlReToPythonRe(s):
|
2003-08-10 12:45:44 +02:00
|
|
|
"""Converts a string representation of a Perl regular expression (i.e.,
|
|
|
|
m/^foo$/i or /foo|bar/) to a Python regular expression.
|
|
|
|
"""
|
2003-11-25 10:13:28 +01:00
|
|
|
try:
|
|
|
|
(kind, regexp, flags) = nonEscapedSlashes.split(s)
|
|
|
|
except ValueError: # Unpack list of wrong size.
|
|
|
|
raise ValueError, 'Must be of the form m/.../ or /.../'
|
2003-04-16 07:26:24 +02:00
|
|
|
regexp = regexp.replace('\\/', '/')
|
|
|
|
if kind not in ('', 'm'):
|
|
|
|
raise ValueError, 'Invalid kind: must be in ("", "m")'
|
|
|
|
flag = 0
|
|
|
|
try:
|
|
|
|
for c in flags.upper():
|
2003-08-30 20:39:19 +02:00
|
|
|
flag |= getattr(re, c)
|
2003-04-16 07:26:24 +02:00
|
|
|
except AttributeError:
|
|
|
|
raise ValueError, 'Invalid flag: %s' % c
|
2003-10-15 07:07:07 +02:00
|
|
|
try:
|
|
|
|
return re.compile(regexp, flag)
|
|
|
|
except re.error, e:
|
|
|
|
raise ValueError, str(e)
|
2003-08-20 11:24:57 +02:00
|
|
|
|
2003-04-16 07:26:24 +02:00
|
|
|
def perlReToReplacer(s):
|
2003-08-10 12:45:44 +02:00
|
|
|
"""Converts a string representation of a Perl regular expression (i.e.,
|
|
|
|
s/foo/bar/g or s/foo/bar/i) to a Python function doing the equivalent
|
|
|
|
replacement.
|
|
|
|
"""
|
2003-11-25 10:13:28 +01:00
|
|
|
try:
|
|
|
|
(kind, regexp, replace, flags) = nonEscapedSlashes.split(s)
|
|
|
|
except ValueError: # Unpack list of wrong size.
|
|
|
|
raise ValueError, 'Must be of the form s/.../.../'
|
2003-12-01 12:06:17 +01:00
|
|
|
regexp = regexp.replace('\x08', r'\b')
|
2003-10-12 15:11:53 +02:00
|
|
|
replace = replace.replace('\\/', '/')
|
2003-12-01 12:06:17 +01:00
|
|
|
for i in xrange(10):
|
|
|
|
replace = replace.replace(chr(i), r'\%s' % i)
|
2003-04-16 07:26:24 +02:00
|
|
|
if kind != 's':
|
|
|
|
raise ValueError, 'Invalid kind: must be "s"'
|
|
|
|
g = False
|
|
|
|
if 'g' in flags:
|
|
|
|
g = True
|
|
|
|
flags = filter('g'.__ne__, flags)
|
|
|
|
r = perlReToPythonRe('/'.join(('', regexp, flags)))
|
|
|
|
if g:
|
2003-11-04 09:26:54 +01:00
|
|
|
return curry(r.sub, replace)
|
2003-04-16 07:26:24 +02:00
|
|
|
else:
|
|
|
|
return lambda s: r.sub(replace, s, 1)
|
|
|
|
|
2003-08-17 22:09:09 +02:00
|
|
|
def findBinaryInPath(s):
|
2003-08-19 21:02:59 +02:00
|
|
|
"""Return full path of a binary if it's in PATH, otherwise return None."""
|
2003-08-17 22:09:09 +02:00
|
|
|
cmdLine = None
|
|
|
|
for dir in os.getenv('PATH').split(':'):
|
|
|
|
filename = os.path.join(dir, s)
|
|
|
|
if os.path.exists(filename):
|
|
|
|
cmdLine = filename
|
|
|
|
break
|
|
|
|
return cmdLine
|
|
|
|
|
2003-09-12 10:55:30 +02:00
|
|
|
def commaAndify(seq, And='and'):
|
2003-09-03 10:51:45 +02:00
|
|
|
"""Given a a sequence, returns an english clause for that sequence.
|
|
|
|
|
|
|
|
I.e., given [1, 2, 3], returns '1, 2, and 3'
|
|
|
|
"""
|
2003-08-22 23:31:17 +02:00
|
|
|
L = list(seq)
|
2003-08-20 11:24:57 +02:00
|
|
|
if len(L) == 0:
|
|
|
|
return ''
|
|
|
|
elif len(L) == 1:
|
2003-10-28 06:10:03 +01:00
|
|
|
return ''.join(L) # We need this because it raises TypeError.
|
2003-08-20 11:24:57 +02:00
|
|
|
elif len(L) == 2:
|
2003-10-28 06:10:03 +01:00
|
|
|
L.insert(1, And)
|
|
|
|
return ' '.join(L)
|
2003-08-20 11:24:57 +02:00
|
|
|
else:
|
2003-09-12 10:55:30 +02:00
|
|
|
L[-1] = '%s %s' % (And, L[-1])
|
2003-08-22 23:31:17 +02:00
|
|
|
return ', '.join(L)
|
2003-08-20 11:24:57 +02:00
|
|
|
|
2003-08-23 09:57:04 +02:00
|
|
|
_unCommaTheRe = re.compile(r'(.*),\s*(the)$', re.I)
|
|
|
|
def unCommaThe(s):
|
2003-09-03 10:51:45 +02:00
|
|
|
"""Takes a string of the form 'foo, the' and turns it into 'the foo'."""
|
2003-08-23 09:57:04 +02:00
|
|
|
m = _unCommaTheRe.match(s)
|
|
|
|
if m is not None:
|
|
|
|
return '%s %s' % (m.group(2), m.group(1))
|
|
|
|
else:
|
|
|
|
return s
|
|
|
|
|
2003-08-27 18:25:43 +02:00
|
|
|
def wrapLines(s):
|
2003-09-03 10:51:45 +02:00
|
|
|
"""Word wraps several paragraphs in a string s."""
|
2003-08-27 18:25:43 +02:00
|
|
|
L = []
|
|
|
|
for line in s.splitlines():
|
|
|
|
L.append(textwrap.fill(line))
|
|
|
|
return '\n'.join(L)
|
|
|
|
|
2003-10-10 06:28:49 +02:00
|
|
|
def ellipsisify(s, n):
|
|
|
|
"""Returns a shortened version of s. Produces up to the first n chars at
|
|
|
|
the nearest word boundary.
|
|
|
|
"""
|
|
|
|
if len(s) <= n:
|
|
|
|
return s
|
|
|
|
else:
|
|
|
|
return (textwrap.wrap(s, n-3)[0] + '...')
|
|
|
|
|
2003-12-02 19:58:57 +01:00
|
|
|
plurals = TwoWayDictionary({})
|
2004-01-01 20:47:13 +01:00
|
|
|
def matchCase(s1, s2):
|
2003-10-16 22:05:45 +02:00
|
|
|
"""Matches the case of s1 in s2"""
|
2003-12-02 19:58:57 +01:00
|
|
|
if s1.isupper():
|
|
|
|
return s2.upper()
|
|
|
|
else:
|
|
|
|
L = list(s2)
|
|
|
|
for (i, char) in enumerate(s1[:len(s2)]):
|
|
|
|
if char.isupper():
|
2004-01-01 20:47:13 +01:00
|
|
|
L[i] = L[i].upper()
|
2003-12-02 19:58:57 +01:00
|
|
|
return ''.join(L)
|
2003-10-16 22:05:45 +02:00
|
|
|
|
2003-12-12 16:41:33 +01:00
|
|
|
def pluralize(s, i=2):
|
2003-09-03 10:51:45 +02:00
|
|
|
"""Returns the plural of s based on its number i. Put any exceptions to
|
|
|
|
the general English rule of appending 's' in the plurals dictionary.
|
|
|
|
"""
|
2003-09-01 07:42:35 +02:00
|
|
|
if i == 1:
|
|
|
|
return s
|
|
|
|
else:
|
2003-10-16 22:05:45 +02:00
|
|
|
lowered = s.lower()
|
|
|
|
if lowered in plurals:
|
2004-01-01 20:47:13 +01:00
|
|
|
return matchCase(s, plurals[lowered])
|
2003-12-02 19:58:57 +01:00
|
|
|
elif any(lowered.endswith, ['ch', 'ss']):
|
2004-01-01 20:47:13 +01:00
|
|
|
return matchCase(s, s+'es')
|
2004-01-23 14:23:20 +01:00
|
|
|
elif lowered.endswith('y'):
|
|
|
|
return matchCase(s, s[:-1]+'ies')
|
2003-10-16 22:05:45 +02:00
|
|
|
else:
|
2004-01-01 20:47:13 +01:00
|
|
|
return matchCase(s, s+'s')
|
2003-10-16 22:05:45 +02:00
|
|
|
|
|
|
|
def depluralize(s):
|
2003-10-16 22:06:17 +02:00
|
|
|
"""Returns the singular of s."""
|
2003-10-16 22:05:45 +02:00
|
|
|
lowered = s.lower()
|
|
|
|
if lowered in plurals:
|
2004-01-01 20:47:13 +01:00
|
|
|
return matchCase(s, plurals[lowered])
|
2003-12-02 19:58:57 +01:00
|
|
|
elif any(lowered.endswith, ['ches', 'sses']):
|
|
|
|
return s[:-2]
|
2004-01-23 14:23:20 +01:00
|
|
|
elif lowered.endswith('ies'):
|
|
|
|
return matchCase(s, s[:-3]+'y')
|
2003-10-16 22:05:45 +02:00
|
|
|
else:
|
2004-01-23 14:23:20 +01:00
|
|
|
if lowered.endswith('s'):
|
2003-10-16 22:05:45 +02:00
|
|
|
return s[:-1] # Chop off 's'.
|
2003-09-01 07:42:35 +02:00
|
|
|
else:
|
2003-10-16 22:05:45 +02:00
|
|
|
return s # Don't know what to do.
|
2003-09-01 07:42:35 +02:00
|
|
|
|
2003-12-12 16:41:33 +01:00
|
|
|
def nItems(item, n, between=None):
|
2003-10-04 15:04:01 +02:00
|
|
|
"""Works like this:
|
|
|
|
|
2003-12-12 16:41:33 +01:00
|
|
|
>>> nItems('clock', 1)
|
2003-10-04 15:04:01 +02:00
|
|
|
'1 clock'
|
|
|
|
|
2003-12-12 16:41:33 +01:00
|
|
|
>>> nItems('clock', 10)
|
2003-10-04 15:04:01 +02:00
|
|
|
'10 clocks'
|
|
|
|
|
2003-12-12 16:41:33 +01:00
|
|
|
>>> nItems('clock', 10, between='grandfather')
|
2003-10-04 15:04:01 +02:00
|
|
|
'10 grandfather clocks'
|
|
|
|
"""
|
2003-09-03 11:40:26 +02:00
|
|
|
if between is None:
|
2003-12-12 16:41:33 +01:00
|
|
|
return '%s %s' % (n, pluralize(item, n))
|
2003-09-03 11:40:26 +02:00
|
|
|
else:
|
2003-12-12 16:41:33 +01:00
|
|
|
return '%s %s %s' % (n, between, pluralize(item, n))
|
2003-09-03 11:40:26 +02:00
|
|
|
|
2003-09-01 07:42:35 +02:00
|
|
|
def be(i):
|
2003-09-03 10:51:45 +02:00
|
|
|
"""Returns the form of the verb 'to be' based on the number i."""
|
2003-09-01 07:42:35 +02:00
|
|
|
if i == 1:
|
|
|
|
return 'is'
|
|
|
|
else:
|
|
|
|
return 'are'
|
|
|
|
|
2003-09-03 10:51:45 +02:00
|
|
|
def sortBy(f, L, cmp=cmp):
|
|
|
|
"""Uses the decorate-sort-undecorate pattern to sort L by function f."""
|
|
|
|
for (i, elt) in enumerate(L):
|
2003-10-14 05:47:35 +02:00
|
|
|
L[i] = (f(elt), i, elt)
|
2003-09-03 10:51:45 +02:00
|
|
|
L.sort(cmp)
|
|
|
|
for (i, elt) in enumerate(L):
|
2003-10-14 05:47:35 +02:00
|
|
|
L[i] = L[i][2]
|
2003-09-01 20:39:27 +02:00
|
|
|
|
2003-12-09 15:46:12 +01:00
|
|
|
def sorted(iterable, *args, **kwargs):
|
|
|
|
"""Returns a sorted list made from iterable. All other args are given to
|
|
|
|
list.sort unchanged."""
|
|
|
|
L = list(iterable)
|
|
|
|
L.sort(*args, **kwargs)
|
|
|
|
return L
|
|
|
|
|
2003-09-04 22:42:37 +02:00
|
|
|
def mktemp(suffix=''):
|
|
|
|
"""Gives a decent random string, suitable for a filename."""
|
|
|
|
import sha
|
|
|
|
import md5
|
|
|
|
import time
|
|
|
|
import random
|
|
|
|
r = random.Random()
|
|
|
|
m = md5.md5(suffix)
|
|
|
|
r.seed(time.time())
|
|
|
|
s = str(r.getstate())
|
|
|
|
for x in xrange(0, random.randrange(400), random.randrange(1, 5)):
|
|
|
|
m.update(str(x))
|
|
|
|
m.update(s)
|
|
|
|
m.update(str(time.time()))
|
|
|
|
s = m.hexdigest()
|
|
|
|
return sha.sha(s + str(time.time())).hexdigest() + suffix
|
|
|
|
|
|
|
|
def itersplit(isSeparator, iterable, maxsplit=-1, yieldEmpty=False):
|
|
|
|
"""Splits an iterator based on a predicate isSeparator."""
|
|
|
|
acc = []
|
|
|
|
for element in iterable:
|
|
|
|
if maxsplit == 0 or not isSeparator(element):
|
|
|
|
acc.append(element)
|
|
|
|
else:
|
|
|
|
maxsplit -= 1
|
|
|
|
if acc or yieldEmpty:
|
|
|
|
yield acc
|
|
|
|
acc = []
|
|
|
|
if acc or yieldEmpty:
|
|
|
|
yield acc
|
|
|
|
|
|
|
|
def flatten(seq, strings=False):
|
|
|
|
"""Flattens a list of lists into a single list. See the test for examples.
|
|
|
|
"""
|
|
|
|
for elt in seq:
|
|
|
|
if not strings and type(elt) == str or type(elt) == unicode:
|
|
|
|
yield elt
|
|
|
|
else:
|
|
|
|
try:
|
|
|
|
for x in flatten(elt):
|
|
|
|
yield x
|
|
|
|
except TypeError:
|
|
|
|
yield elt
|
|
|
|
|
2003-10-28 15:20:00 +01:00
|
|
|
def saltHash(password, salt=None, hash='sha'):
|
|
|
|
if salt is None:
|
|
|
|
salt = mktemp()[:8]
|
2003-11-07 20:40:03 +01:00
|
|
|
if hash == 'sha':
|
2003-10-28 15:20:00 +01:00
|
|
|
hasher = sha.sha
|
2003-11-07 20:40:03 +01:00
|
|
|
elif hash == 'md5':
|
|
|
|
hasher = md5.md5
|
2003-10-28 16:13:53 +01:00
|
|
|
return '|'.join([salt, hasher(salt + password).hexdigest()])
|
2003-10-28 15:20:00 +01:00
|
|
|
|
2003-11-07 20:40:03 +01:00
|
|
|
def safeEval(s, namespace={'True': True, 'False': False, 'None': None}):
|
|
|
|
"""Evaluates s, safely. Useful for turning strings into tuples/lists/etc.
|
|
|
|
without unsafely using eval()."""
|
|
|
|
node = compiler.parse(s)
|
|
|
|
nodes = compiler.parse(s).node.nodes
|
|
|
|
if not nodes:
|
|
|
|
if node.__class__ is compiler.ast.Module:
|
|
|
|
return node.doc
|
|
|
|
else:
|
|
|
|
raise ValueError, 'Unsafe string.'
|
|
|
|
node = nodes[0]
|
|
|
|
if node.__class__ is not compiler.ast.Discard:
|
|
|
|
raise ValueError, 'Invalid expression: %s'
|
|
|
|
node = node.getChildNodes()[0]
|
|
|
|
def checkNode(node):
|
|
|
|
if node.__class__ is compiler.ast.Const:
|
|
|
|
return True
|
|
|
|
if node.__class__ in (compiler.ast.List,
|
|
|
|
compiler.ast.Tuple,
|
|
|
|
compiler.ast.Dict):
|
|
|
|
return all(checkNode, node.getChildNodes())
|
|
|
|
if node.__class__ is compiler.ast.Name:
|
|
|
|
if node.name in namespace:
|
|
|
|
return True
|
|
|
|
else:
|
|
|
|
return False
|
|
|
|
else:
|
|
|
|
return False
|
|
|
|
if checkNode(node):
|
|
|
|
return eval(s, namespace, namespace)
|
|
|
|
else:
|
|
|
|
raise ValueError, 'Unsafe string.'
|
2003-11-26 19:21:12 +01:00
|
|
|
|
|
|
|
|
|
|
|
def exnToString(e):
|
|
|
|
"""Turns a simple exception instance into a string (better than str(e))"""
|
|
|
|
return '%s: %s' % (e.__class__.__name__, e)
|
2003-11-07 20:40:03 +01:00
|
|
|
|
2003-09-04 22:42:37 +02:00
|
|
|
class IterableMap(object):
|
|
|
|
"""Define .iteritems() in a class and subclass this to get the other iters.
|
|
|
|
"""
|
|
|
|
def iteritems(self):
|
|
|
|
raise NotImplementedError
|
|
|
|
|
|
|
|
def iterkeys(self):
|
|
|
|
for (key, _) in self.iteritems():
|
|
|
|
yield key
|
2003-11-23 15:09:20 +01:00
|
|
|
__iter__ = iterkeys
|
2003-09-04 22:42:37 +02:00
|
|
|
|
|
|
|
def itervalues(self):
|
|
|
|
for (_, value) in self.iteritems():
|
|
|
|
yield value
|
|
|
|
|
|
|
|
def items(self):
|
|
|
|
return list(self.iteritems())
|
|
|
|
|
|
|
|
def keys(self):
|
|
|
|
return list(self.iterkeys())
|
|
|
|
|
|
|
|
def values(self):
|
|
|
|
return list(self.itervalues())
|
|
|
|
|
|
|
|
def __len__(self):
|
|
|
|
ret = 0
|
|
|
|
for _ in self.iteritems():
|
|
|
|
ret += 1
|
|
|
|
return ret
|
|
|
|
|
|
|
|
def __nonzero__(self):
|
|
|
|
for _ in self.iteritems():
|
|
|
|
return True
|
|
|
|
return False
|
|
|
|
|
|
|
|
|
2004-01-11 15:33:38 +01:00
|
|
|
def nonCommentLines(fd):
|
|
|
|
for line in fd:
|
|
|
|
if not line.startswith('#'):
|
|
|
|
yield line
|
|
|
|
|
|
|
|
def nonEmptyLines(fd):
|
|
|
|
## for line in fd:
|
|
|
|
## if line.strip():
|
|
|
|
## yield line
|
|
|
|
return ifilter(str.strip, fd)
|
|
|
|
|
|
|
|
def nonCommentNonEmptyLines(fd):
|
|
|
|
return nonEmptyLines(nonCommentLines(fd))
|
|
|
|
|
2004-01-16 17:13:24 +01:00
|
|
|
def changeFunctionName(f, name, doc=None):
|
|
|
|
if doc is None:
|
|
|
|
doc = f.__doc__
|
|
|
|
newf = types.FunctionType(f.func_code, f.func_globals, name,
|
|
|
|
f.func_defaults, f.func_closure)
|
|
|
|
newf.__doc__ = doc
|
|
|
|
return newf
|
2004-01-11 15:33:38 +01:00
|
|
|
|
2004-01-16 18:33:51 +01:00
|
|
|
_ipchars = string.digits + '.'
|
|
|
|
def isIP(s):
|
|
|
|
"""Returns whether or not a given string is an IPV4 address.
|
|
|
|
|
|
|
|
>>> isIP('255.255.255.255')
|
|
|
|
1
|
|
|
|
|
|
|
|
>>> isIP('abc.abc.abc.abc')
|
|
|
|
0
|
|
|
|
"""
|
|
|
|
try:
|
|
|
|
return bool(socket.inet_aton(s))
|
|
|
|
except socket.error:
|
|
|
|
return False
|
|
|
|
|
|
|
|
def isIPV6(s):
|
|
|
|
"""Returns whether or not a given string is an IPV6 address."""
|
|
|
|
try:
|
|
|
|
return bool(socket.inet_pton(socket.AF_INET6, s))
|
|
|
|
except socket.error:
|
|
|
|
try:
|
|
|
|
socket.inet_pton(socket.AF_INET6, '::')
|
|
|
|
except socket.error:
|
|
|
|
# We gotta fake it.
|
|
|
|
if s.count('::') <= 1:
|
|
|
|
L = s.split(':')
|
|
|
|
if len(L) <= 8:
|
|
|
|
for x in L:
|
|
|
|
if x:
|
|
|
|
try:
|
|
|
|
int(x, 16)
|
|
|
|
except ValueError:
|
|
|
|
return False
|
|
|
|
return True
|
|
|
|
return False
|
|
|
|
|
2003-10-04 15:04:01 +02:00
|
|
|
if __name__ == '__main__':
|
|
|
|
import sys, doctest
|
|
|
|
doctest.testmod(sys.modules['__main__'])
|
|
|
|
|
2004-01-16 17:13:24 +01:00
|
|
|
|
2003-03-27 21:10:10 +01:00
|
|
|
# vim:set shiftwidth=4 tabstop=8 expandtab textwidth=78:
|