summaryrefslogtreecommitdiffstats
path: root/colorclass/core.py
blob: 481bb4057c0a2e5437ea9deb98be73342ad4a88d (plain)
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
"""String subclass that handles ANSI color codes."""

from colorclass.codes import ANSICodeMapping
from colorclass.parse import parse_input, RE_SPLIT
from colorclass.search import build_color_index, find_char_color

PARENT_CLASS = type(u'')


def apply_text(incoming, func):
    """Call `func` on text portions of incoming color string.

    :param iter incoming: Incoming string/ColorStr/string-like object to iterate.
    :param func: Function to call with string portion as first and only parameter.

    :return: Modified string, same class type as incoming string.
    """
    split = RE_SPLIT.split(incoming)
    for i, item in enumerate(split):
        if not item or RE_SPLIT.match(item):
            continue
        split[i] = func(item)
    return incoming.__class__().join(split)


class ColorBytes(bytes):
    """Str (bytes in Python3) subclass, .decode() overridden to return unicode (str in Python3) subclass instance."""

    def __new__(cls, *args, **kwargs):
        """Save original class so decode() returns an instance of it."""
        original_class = kwargs.pop('original_class')
        combined_args = [cls] + list(args)
        instance = bytes.__new__(*combined_args, **kwargs)
        instance.original_class = original_class
        return instance

    def decode(self, encoding='utf-8', errors='strict'):
        """Decode using the codec registered for encoding. Default encoding is 'utf-8'.

        errors may be given to set a different error handling scheme. Default is 'strict' meaning that encoding errors
        raise a UnicodeDecodeError. Other possible values are 'ignore' and 'replace' as well as any other name
        registered with codecs.register_error that is able to handle UnicodeDecodeErrors.

        :param str encoding: Codec.
        :param str errors: Error handling scheme.
        """
        original_class = getattr(self, 'original_class')
        return original_class(super(ColorBytes, self).decode(encoding, errors))


class ColorStr(PARENT_CLASS):
    """Core color class."""

    def __new__(cls, *args, **kwargs):
        """Parse color markup and instantiate."""
        keep_tags = kwargs.pop('keep_tags', False)

        # Parse string.
        value_markup = args[0] if args else PARENT_CLASS()  # e.g. '{red}test{/red}'
        value_colors, value_no_colors = parse_input(value_markup, ANSICodeMapping.DISABLE_COLORS, keep_tags)
        color_index = build_color_index(value_colors)

        # Instantiate.
        color_args = [cls, value_colors] + list(args[1:])
        instance = PARENT_CLASS.__new__(*color_args, **kwargs)

        # Add additional attributes and return.
        instance.value_colors = value_colors
        instance.value_no_colors = value_no_colors
        instance.has_colors = value_colors != value_no_colors
        instance.color_index = color_index
        return instance

    def __add__(self, other):
        """Concatenate."""
        return self.__class__(self.value_colors + other, keep_tags=True)

    def __getitem__(self, item):
        """Retrieve character."""
        try:
            color_pos = self.color_index[int(item)]
        except TypeError:  # slice
            return super(ColorStr, self).__getitem__(item)
        return self.__class__(find_char_color(self.value_colors, color_pos), keep_tags=True)

    def __iter__(self):
        """Yield one color-coded character at a time."""
        for color_pos in self.color_index:
            yield self.__class__(find_char_color(self.value_colors, color_pos))

    def __len__(self):
        """Length of string without color codes (what users expect)."""
        return self.value_no_colors.__len__()

    def __mod__(self, other):
        """String substitution (like printf)."""
        return self.__class__(self.value_colors % other, keep_tags=True)

    def __mul__(self, other):
        """Multiply string."""
        return self.__class__(self.value_colors * other, keep_tags=True)

    def __repr__(self):
        """Representation of a class instance (like datetime.datetime.now())."""
        return '{name}({value})'.format(name=self.__class__.__name__, value=repr(self.value_colors))

    def capitalize(self):
        """Return a copy of the string with only its first character capitalized."""
        return apply_text(self, lambda s: s.capitalize())

    def center(self, width, fillchar=None):
        """Return centered in a string of length width. Padding is done using the specified fill character or space.

        :param int width: Length of output string.
        :param str fillchar: Use this character instead of spaces.
        """
        if fillchar is not None:
            result = self.value_no_colors.center(width, fillchar)
        else:
            result = self.value_no_colors.center(width)
        return self.__class__(result.replace(self.value_no_colors, self.value_colors), keep_tags=True)

    def count(self, sub, start=0, end=-1):
        """Return the number of non-overlapping occurrences of substring sub in string[start:end].

        Optional arguments start and end are interpreted as in slice notation.

        :param str sub: Substring to search.
        :param int start: Beginning position.
        :param int end: Stop comparison at this position.
        """
        return self.value_no_colors.count(sub, start, end)

    def endswith(self, suffix, start=0, end=None):
        """Return True if ends with the specified suffix, False otherwise.

        With optional start, test beginning at that position. With optional end, stop comparing at that position.
        suffix can also be a tuple of strings to try.

        :param str suffix: Suffix to search.
        :param int start: Beginning position.
        :param int end: Stop comparison at this position.
        """
        args = [suffix, start] + ([] if end is None else [end])
        return self.value_no_colors.endswith(*args)

    def encode(self, encoding=None, errors='strict'):
        """Encode using the codec registered for encoding. encoding defaults to the default encoding.

        errors may be given to set a different error handling scheme. Default is 'strict' meaning that encoding errors
        raise a UnicodeEncodeError. Other possible values are 'ignore', 'replace' and 'xmlcharrefreplace' as well as any
        other name registered with codecs.register_error that is able to handle UnicodeEncodeErrors.

        :param str encoding: Codec.
        :param str errors: Error handling scheme.
        """
        return ColorBytes(super(ColorStr, self).encode(encoding, errors), original_class=self.__class__)

    def decode(self, encoding=None, errors='strict'):
        """Decode using the codec registered for encoding. encoding defaults to the default encoding.

        errors may be given to set a different error handling scheme. Default is 'strict' meaning that encoding errors
        raise a UnicodeDecodeError. Other possible values are 'ignore' and 'replace' as well as any other name
        registered with codecs.register_error that is able to handle UnicodeDecodeErrors.

        :param str encoding: Codec.
        :param str errors: Error handling scheme.
        """
        return self.__class__(super(ColorStr, self).decode(encoding, errors), keep_tags=True)

    def find(self, sub, start=None, end=None):
        """Return the lowest index where substring sub is found, such that sub is contained within string[start:end].

        Optional arguments start and end are interpreted as in slice notation.

        :param str sub: Substring to search.
        :param int start: Beginning position.
        :param int end: Stop comparison at this position.
        """
        return self.value_no_colors.find(sub, start, end)

    def format(self, *args, **kwargs):
        """Return a formatted version, using substitutions from args and kwargs.

        The substitutions are identified by braces ('{' and '}').
        """
        return self.__class__(super(ColorStr, self).format(*args, **kwargs), keep_tags=True)

    def index(self, sub, start=None, end=None):
        """Like S.find() but raise ValueError when the substring is not found.

        :param str sub: Substring to search.
        :param int start: Beginning position.
        :param int end: Stop comparison at this position.
        """
        return self.value_no_colors.index(sub, start, end)

    def isalnum(self):
        """Return True if all characters in string are alphanumeric and there is at least one character in it."""
        return self.value_no_colors.isalnum()

    def isalpha(self):
        """Return True if all characters in string are alphabetic and there is at least one character in it."""
        return self.value_no_colors.isalpha()

    def isdecimal(self):
        """Return True if there are only decimal characters in string, False otherwise."""
        return self.value_no_colors.isdecimal()

    def isdigit(self):
        """Return True if all characters in string are digits and there is at least one character in it."""
        return self.value_no_colors.isdigit()

    def isnumeric(self):
        """Return True if there are only numeric characters in string, False otherwise."""
        return self.value_no_colors.isnumeric()

    def isspace(self):
        """Return True if all characters in string are whitespace and there is at least one character in it."""
        return self.value_no_colors.isspace()

    def istitle(self):
        """Return True if string is a titlecased string and there is at least one character in it.

        That is uppercase characters may only follow uncased characters and lowercase characters only cased ones. Return
        False otherwise.
        """
        return self.value_no_colors.istitle()

    def isupper(self):
        """Return True if all cased characters are uppercase and there is at least one cased character in it."""
        return self.value_no_colors.isupper()

    def join(self, iterable):
        """Return a string which is the concatenation of the strings in the iterable.

        :param iterable: Join items in this iterable.
        """
        return self.__class__(super(ColorStr, self).join(iterable), keep_tags=True)

    def ljust(self, width, fillchar=None):
        """Return left-justified string of length width. Padding is done using the specified fill character or space.

        :param int width: Length of output string.
        :param str fillchar: Use this character instead of spaces.
        """
        if fillchar is not None:
            result = self.value_no_colors.ljust(width, fillchar)
        else:
            result = self.value_no_colors.ljust(width)
        return self.__class__(result.replace(self.value_no_colors, self.value_colors), keep_tags=True)

    def rfind(self, sub, start=None, end=None):
        """Return the highest index where substring sub is found, such that sub is contained within string[start:end].

        Optional arguments start and end are interpreted as in slice notation.

        :param str sub: Substring to search.
        :param int start: Beginning position.
        :param int end: Stop comparison at this position.
        """
        return self.value_no_colors.rfind(sub, start, end)

    def rindex(self, sub, start=None, end=None):
        """Like .rfind() but raise ValueError when the substring is not found.

        :param str sub: Substring to search.
        :param int start: Beginning position.
        :param int end: Stop comparison at this position.
        """
        return self.value_no_colors.rindex(sub, start, end)

    def rjust(self, width, fillchar=None):
        """Return right-justified string of length width. Padding is done using the specified fill character or space.

        :param int width: Length of output string.
        :param str fillchar: Use this character instead of spaces.
        """
        if fillchar is not None:
            result = self.value_no_colors.rjust(width, fillchar)
        else:
            result = self.value_no_colors.rjust(width)
        return self.__class__(result.replace(self.value_no_colors, self.value_colors), keep_tags=True)

    def splitlines(self, keepends=False):
        """Return a list of the lines in the string, breaking at line boundaries.

        Line breaks are not included in the resulting list unless keepends is given and True.

        :param bool keepends: Include linebreaks.
        """
        return [self.__class__(l) for l in self.value_colors.splitlines(keepends)]

    def startswith(self, prefix, start=0, end=-1):
        """Return True if string starts with the specified prefix, False otherwise.

        With optional start, test beginning at that position. With optional end, stop comparing at that position. prefix
        can also be a tuple of strings to try.

        :param str prefix: Prefix to search.
        :param int start: Beginning position.
        :param int end: Stop comparison at this position.
        """
        return self.value_no_colors.startswith(prefix, start, end)

    def swapcase(self):
        """Return a copy of the string with uppercase characters converted to lowercase and vice versa."""
        return apply_text(self, lambda s: s.swapcase())

    def title(self):
        """Return a titlecased version of the string.

        That is words start with uppercase characters, all remaining cased characters have lowercase.
        """
        return apply_text(self, lambda s: s.title())

    def translate(self, table):
        """Return a copy of the string, where all characters have been mapped through the given translation table.

        Table must be a mapping of Unicode ordinals to Unicode ordinals, strings, or None. Unmapped characters are left
        untouched. Characters mapped to None are deleted.

        :param table: Translation table.
        """
        return apply_text(self, lambda s: s.translate(table))

    def upper(self):
        """Return a copy of the string converted to uppercase."""
        return apply_text(self, lambda s: s.upper())

    def zfill(self, width):
        """Pad a numeric string with zeros on the left, to fill a field of the specified width.

        The string is never truncated.

        :param int width: Length of output string.
        """
        if not self.value_no_colors:
            result = self.value_no_colors.zfill(width)
        else:
            result = self.value_colors.replace(self.value_no_colors, self.value_no_colors.zfill(width))
        return self.__class__(result, keep_tags=True)