/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar

« back to all changes in this revision

Viewing changes to bzrlib/lazy_regex.py

  • Committer: Marius Kruger
  • Date: 2010-07-10 21:28:56 UTC
  • mto: (5384.1.1 integration)
  • mto: This revision was merged to the branch mainline in revision 5385.
  • Revision ID: marius.kruger@enerweb.co.za-20100710212856-uq4ji3go0u5se7hx
* Update documentation
* add NEWS

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Copyright (C) 2006, 2008-2011, 2017 Canonical Ltd
 
1
# Copyright (C) 2006 Canonical Ltd
2
2
#
3
3
# This program is free software; you can redistribute it and/or modify
4
4
# it under the terms of the GNU General Public License as published by
16
16
 
17
17
"""Lazily compiled regex objects.
18
18
 
19
 
This module defines a class which creates proxy objects for regex
20
 
compilation.  This allows overriding re.compile() to return lazily compiled
21
 
objects.
22
 
 
23
 
We do this rather than just providing a new interface so that it will also
24
 
be used by existing Python modules that create regexs.
 
19
This module defines a class which creates proxy objects for regex compilation.
 
20
This allows overriding re.compile() to return lazily compiled objects.
25
21
"""
26
22
 
27
 
from __future__ import absolute_import
28
 
 
29
23
import re
30
24
 
31
 
from . import errors
32
 
 
33
 
 
34
 
class InvalidPattern(errors.BzrError):
35
 
 
36
 
    _fmt = ('Invalid pattern(s) found. %(msg)s')
37
 
 
38
 
    def __init__(self, msg):
39
 
        self.msg = msg
 
25
from bzrlib import errors
40
26
 
41
27
 
42
28
class LazyRegex(object):
43
29
    """A proxy around a real regex, which won't be compiled until accessed."""
44
30
 
 
31
 
45
32
    # These are the parameters on a real _sre.SRE_Pattern object, which we
46
33
    # will map to local members so that we don't have the proxy overhead.
47
34
    _regex_attributes_to_copy = [
48
 
        '__copy__', '__deepcopy__', 'findall', 'finditer', 'match',
49
 
        'scanner', 'search', 'split', 'sub', 'subn'
50
 
        ]
 
35
                 '__copy__', '__deepcopy__', 'findall', 'finditer', 'match',
 
36
                 'scanner', 'search', 'split', 'sub', 'subn'
 
37
                 ]
51
38
 
52
39
    # We use slots to keep the overhead low. But we need a slot entry for
53
40
    # all of the attributes we will copy
54
41
    __slots__ = ['_real_regex', '_regex_args', '_regex_kwargs',
55
 
                 ] + _regex_attributes_to_copy
 
42
                ] + _regex_attributes_to_copy
56
43
 
57
 
    def __init__(self, args, kwargs):
 
44
    def __init__(self, args=(), kwargs={}):
58
45
        """Create a new proxy object, passing in the args to pass to re.compile
59
46
 
60
 
        :param args: The `*args` to pass to re.compile
61
 
        :param kwargs: The `**kwargs` to pass to re.compile
 
47
        :param args: The *args to pass to re.compile
 
48
        :param kwargs: The **kwargs to pass to re.compile
62
49
        """
63
50
        self._real_regex = None
64
51
        self._regex_args = args
74
61
    def _real_re_compile(self, *args, **kwargs):
75
62
        """Thunk over to the original re.compile"""
76
63
        try:
77
 
            return re.compile(*args, **kwargs)
78
 
        except re.error as e:
 
64
            return _real_re_compile(*args, **kwargs)
 
65
        except re.error, e:
79
66
            # raise InvalidPattern instead of re.error as this gives a
80
67
            # cleaner message to the user.
81
 
            raise InvalidPattern('"' + args[0] + '" ' + str(e))
82
 
 
83
 
    def __getstate__(self):
84
 
        """Return the state to use when pickling."""
85
 
        return {
86
 
            "args": self._regex_args,
87
 
            "kwargs": self._regex_kwargs,
88
 
            }
89
 
 
90
 
    def __setstate__(self, dict):
91
 
        """Restore from a pickled state."""
92
 
        self._real_regex = None
93
 
        setattr(self, "_regex_args", dict["args"])
94
 
        setattr(self, "_regex_kwargs", dict["kwargs"])
 
68
            raise errors.InvalidPattern('"' + args[0] + '" ' +str(e))
95
69
 
96
70
    def __getattr__(self, attr):
97
71
        """Return a member from the proxied regex object.
111
85
    :return: a LazyRegex proxy object.
112
86
    """
113
87
    return LazyRegex(args, kwargs)
 
88
 
 
89
 
 
90
def install_lazy_compile():
 
91
    """Make lazy_compile the default compile mode for regex compilation.
 
92
 
 
93
    This overrides re.compile with lazy_compile. To restore the original
 
94
    functionality, call reset_compile().
 
95
    """
 
96
    re.compile = lazy_compile
 
97
 
 
98
 
 
99
def reset_compile():
 
100
    """Restore the original function to re.compile().
 
101
 
 
102
    It is safe to call reset_compile() multiple times, it will always
 
103
    restore re.compile() to the value that existed at import time.
 
104
    Though the first call will reset back to the original (it doesn't
 
105
    track nesting level)
 
106
    """
 
107
    re.compile = _real_re_compile
 
108
 
 
109
 
 
110
_real_re_compile = re.compile
 
111
if _real_re_compile is lazy_compile:
 
112
    raise AssertionError(
 
113
        "re.compile has already been overridden as lazy_compile, but this would" \
 
114
        " cause infinite recursion")