UserString.py 7.61 KB
Newer Older
1 2 3 4
#!/usr/bin/env python
## vim:ts=4:et:nowrap
"""A user-defined wrapper around string objects

5
Note: string objects have grown methods in Python 1.6
6 7
This module requires Python 1.6 or later.
"""
8
from types import StringTypes
9 10
import sys

11 12
__all__ = ["UserString","MutableString"]

13 14
class UserString:
    def __init__(self, seq):
15
        if isinstance(seq, StringTypes):
16 17 18
            self.data = seq
        elif isinstance(seq, UserString):
            self.data = seq.data[:]
19
        else:
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
            self.data = str(seq)
    def __str__(self): return str(self.data)
    def __repr__(self): return repr(self.data)
    def __int__(self): return int(self.data)
    def __long__(self): return long(self.data)
    def __float__(self): return float(self.data)
    def __complex__(self): return complex(self.data)
    def __hash__(self): return hash(self.data)

    def __cmp__(self, string):
        if isinstance(string, UserString):
            return cmp(self.data, string.data)
        else:
            return cmp(self.data, string)
    def __contains__(self, char):
        return char in self.data

    def __len__(self): return len(self.data)
    def __getitem__(self, index): return self.__class__(self.data[index])
    def __getslice__(self, start, end):
        start = max(start, 0); end = max(end, 0)
        return self.__class__(self.data[start:end])

    def __add__(self, other):
        if isinstance(other, UserString):
            return self.__class__(self.data + other.data)
46
        elif isinstance(other, StringTypes):
47 48 49 50
            return self.__class__(self.data + other)
        else:
            return self.__class__(self.data + str(other))
    def __radd__(self, other):
51
        if isinstance(other, StringTypes):
52 53 54 55 56 57
            return self.__class__(other + self.data)
        else:
            return self.__class__(str(other) + self.data)
    def __mul__(self, n):
        return self.__class__(self.data*n)
    __rmul__ = __mul__
58 59
    def __mod__(self, args):
        return self.__class__(self.data % args)
60 61 62 63 64 65

    # the following methods are defined in alphabetical order:
    def capitalize(self): return self.__class__(self.data.capitalize())
    def center(self, width): return self.__class__(self.data.center(width))
    def count(self, sub, start=0, end=sys.maxint):
        return self.data.count(sub, start, end)
66 67 68 69 70 71 72 73
    def decode(self, encoding=None, errors=None): # XXX improve this?
        if encoding:
            if errors:
                return self.__class__(self.data.decode(encoding, errors))
            else:
                return self.__class__(self.data.decode(encoding))
        else:
            return self.__class__(self.data.decode())
74 75 76 77 78 79
    def encode(self, encoding=None, errors=None): # XXX improve this?
        if encoding:
            if errors:
                return self.__class__(self.data.encode(encoding, errors))
            else:
                return self.__class__(self.data.encode(encoding))
80
        else:
81 82 83
            return self.__class__(self.data.encode())
    def endswith(self, suffix, start=0, end=sys.maxint):
        return self.data.endswith(suffix, start, end)
84
    def expandtabs(self, tabsize=8):
85
        return self.__class__(self.data.expandtabs(tabsize))
86
    def find(self, sub, start=0, end=sys.maxint):
87
        return self.data.find(sub, start, end)
88
    def index(self, sub, start=0, end=sys.maxint):
89
        return self.data.index(sub, start, end)
90 91
    def isalpha(self): return self.data.isalpha()
    def isalnum(self): return self.data.isalnum()
92 93 94 95 96 97 98 99 100 101
    def isdecimal(self): return self.data.isdecimal()
    def isdigit(self): return self.data.isdigit()
    def islower(self): return self.data.islower()
    def isnumeric(self): return self.data.isnumeric()
    def isspace(self): return self.data.isspace()
    def istitle(self): return self.data.istitle()
    def isupper(self): return self.data.isupper()
    def join(self, seq): return self.data.join(seq)
    def ljust(self, width): return self.__class__(self.data.ljust(width))
    def lower(self): return self.__class__(self.data.lower())
102
    def lstrip(self, sep=None): return self.__class__(self.data.lstrip(sep))
103
    def replace(self, old, new, maxsplit=-1):
104
        return self.__class__(self.data.replace(old, new, maxsplit))
105
    def rfind(self, sub, start=0, end=sys.maxint):
106
        return self.data.rfind(sub, start, end)
107
    def rindex(self, sub, start=0, end=sys.maxint):
108 109
        return self.data.rindex(sub, start, end)
    def rjust(self, width): return self.__class__(self.data.rjust(width))
110
    def rstrip(self, sep=None): return self.__class__(self.data.rstrip(sep))
111
    def split(self, sep=None, maxsplit=-1):
112
        return self.data.split(sep, maxsplit)
Guido van Rossum's avatar
Guido van Rossum committed
113
    def splitlines(self, keepends=0): return self.data.splitlines(keepends)
114
    def startswith(self, prefix, start=0, end=sys.maxint):
115
        return self.data.startswith(prefix, start, end)
116
    def strip(self, sep=None): return self.__class__(self.data.strip(sep))
117 118
    def swapcase(self): return self.__class__(self.data.swapcase())
    def title(self): return self.__class__(self.data.title())
119
    def translate(self, *args):
120
        return self.__class__(self.data.translate(*args))
121
    def upper(self): return self.__class__(self.data.upper())
122
    def zfill(self, width): return self.__class__(self.data.zfill(width))
123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140

class MutableString(UserString):
    """mutable string objects

    Python strings are immutable objects.  This has the advantage, that
    strings may be used as dictionary keys.  If this property isn't needed
    and you insist on changing string values in place instead, you may cheat
    and use MutableString.

    But the purpose of this class is an educational one: to prevent
    people from inventing their own mutable string class derived
    from UserString and than forget thereby to remove (override) the
    __hash__ method inherited from ^UserString.  This would lead to
    errors that would be very hard to track down.

    A faster and better solution is to rewrite your program using lists."""
    def __init__(self, string=""):
        self.data = string
141
    def __hash__(self):
142 143 144 145 146 147 148 149 150 151 152
        raise TypeError, "unhashable type (it is mutable)"
    def __setitem__(self, index, sub):
        if index < 0 or index >= len(self.data): raise IndexError
        self.data = self.data[:index] + sub + self.data[index+1:]
    def __delitem__(self, index):
        if index < 0 or index >= len(self.data): raise IndexError
        self.data = self.data[:index] + self.data[index+1:]
    def __setslice__(self, start, end, sub):
        start = max(start, 0); end = max(end, 0)
        if isinstance(sub, UserString):
            self.data = self.data[:start]+sub.data+self.data[end:]
153
        elif isinstance(sub, StringTypes):
154 155 156 157 158 159 160 161
            self.data = self.data[:start]+sub+self.data[end:]
        else:
            self.data =  self.data[:start]+str(sub)+self.data[end:]
    def __delslice__(self, start, end):
        start = max(start, 0); end = max(end, 0)
        self.data = self.data[:start] + self.data[end:]
    def immutable(self):
        return UserString(self.data)
162 163 164 165 166 167 168 169 170 171 172
    def __iadd__(self, other):
        if isinstance(other, UserString):
            self.data += other.data
        elif isinstance(other, StringTypes):
            self.data += other
        else:
            self.data += str(other)
        return self
    def __imul__(self, n):
        self.data *= n
        return self
173

174 175 176 177 178 179
if __name__ == "__main__":
    # execute the regression test to stdout, if called as a script:
    import os
    called_in_dir, called_as = os.path.split(sys.argv[0])
    called_as, py = os.path.splitext(called_as)
    if '-q' in sys.argv:
180
        from test import test_support
181
        test_support.verbose = 0
182
    __import__('test.test_' + called_as.lower())