| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156 | # -*- coding: utf-8 -*-"""Text formatting utilities."""from __future__ import absolute_import, unicode_literalsimport refrom collections import Callablefrom functools import partialfrom textwrap import fillfrom pprint import pformatfrom celery.five import string_t__all__ = [    'abbr', 'abbrtask', 'dedent', 'dedent_initial',    'ensure_newlines', 'ensure_sep',    'fill_paragraphs', 'indent', 'join',    'pluralize', 'pretty', 'str_to_list', 'simple_format', 'truncate',]UNKNOWN_SIMPLE_FORMAT_KEY = """Unknown format %{0} in string {1!r}.Possible causes: Did you forget to escape the expand sign (use '%%{0!r}'),or did you escape and the value was expanded twice? (%%N -> %N -> %hostname)?""".strip()RE_FORMAT = re.compile(r'%(\w)')def str_to_list(s):    # type: (str) -> List[str]    """Convert string to list."""    if isinstance(s, string_t):        return s.split(',')    return sdef dedent_initial(s, n=4):    # type: (str, int) -> str    """Remove identation from first line of text."""    return s[n:] if s[:n] == ' ' * n else sdef dedent(s, n=4, sep='\n'):    # type: (str, int, str) -> str    """Remove identation."""    return sep.join(dedent_initial(l) for l in s.splitlines())def fill_paragraphs(s, width, sep='\n'):    # type: (str, int, str) -> str    """Fill paragraphs with newlines (or custom separator)."""    return sep.join(fill(p, width) for p in s.split(sep))def join(l, sep='\n'):    # type: (str, str) -> str    """Concatenate list of strings."""    return sep.join(v for v in l if v)def ensure_sep(sep, s, n=2):    # type: (str, str, int) -> str    """Ensure text s ends in separator sep'."""    return s + sep * (n - s.count(sep))ensure_newlines = partial(ensure_sep, '\n')def abbr(S, max, ellipsis='...'):    # type: (str, int, str) -> str    """Abbreviate word."""    if S is None:        return '???'    if len(S) > max:        return ellipsis and (S[:max - len(ellipsis)] + ellipsis) or S[:max]    return Sdef abbrtask(S, max):    # type: (str, int) -> str    """Abbreviate task name."""    if S is None:        return '???'    if len(S) > max:        module, _, cls = S.rpartition('.')        module = abbr(module, max - len(cls) - 3, False)        return module + '[.]' + cls    return Sdef indent(t, indent=0, sep='\n'):    # type: (str, int, str) -> str    """Indent text."""    return sep.join(' ' * indent + p for p in t.split(sep))def truncate(s, maxlen=128, suffix='...'):    # type: (str, int, str) -> str    """Truncate text to a maximum number of characters."""    if maxlen and len(s) >= maxlen:        return s[:maxlen].rsplit(' ', 1)[0] + suffix    return sdef truncate_bytes(s, maxlen=128, suffix=b'...'):    # type: (bytes, int, bytes) -> bytes    if maxlen and len(s) >= maxlen:        return s[:maxlen].rsplit(b' ', 1)[0] + suffix    return sdef pluralize(n, text, suffix='s'):    # type: (int, str, str) -> str    """Pluralize term when n is greater than one."""    if n != 1:        return text + suffix    return textdef pretty(value, width=80, nl_width=80, sep='\n', **kw):    # type: (str, int, int, str, **Any) -> str    """Format value for printing to console."""    if isinstance(value, dict):        return '{{{0} {1}'.format(sep, pformat(value, 4, nl_width)[1:])    elif isinstance(value, tuple):        return '{0}{1}{2}'.format(            sep, ' ' * 4, pformat(value, width=nl_width, **kw),        )    else:        return pformat(value, width=width, **kw)def match_case(s, other):    # type: (str, str) -> str    return s.upper() if other.isupper() else s.lower()def simple_format(s, keys, pattern=RE_FORMAT, expand=r'\1'):    # type: (str, Mapping[str, str], Pattern, str) -> str    """Format string, expanding abbreviations in keys'."""    if s:        keys.setdefault('%', '%')        def resolve(match):            key = match.expand(expand)            try:                resolver = keys[key]            except KeyError:                raise ValueError(UNKNOWN_SIMPLE_FORMAT_KEY.format(key, s))            if isinstance(resolver, Callable):                return resolver()            return resolver        return pattern.sub(resolve, s)    return s
 |