~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/lazy_regex.py

  • Committer: Jelmer Vernooij
  • Date: 2011-11-30 20:02:16 UTC
  • mto: This revision was merged to the branch mainline in revision 6333.
  • Revision ID: jelmer@samba.org-20111130200216-aoju21pdl20d1gkd
Consistently pass tree path when exporting.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# Copyright (C) 2006 Canonical Ltd
 
2
#
 
3
# This program is free software; you can redistribute it and/or modify
 
4
# it under the terms of the GNU General Public License as published by
 
5
# the Free Software Foundation; either version 2 of the License, or
 
6
# (at your option) any later version.
 
7
#
 
8
# This program is distributed in the hope that it will be useful,
 
9
# but WITHOUT ANY WARRANTY; without even the implied warranty of
 
10
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
11
# GNU General Public License for more details.
 
12
#
 
13
# You should have received a copy of the GNU General Public License
 
14
# along with this program; if not, write to the Free Software
 
15
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
 
16
 
 
17
"""Lazily compiled regex objects.
 
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.
 
25
"""
 
26
 
 
27
import re
 
28
 
 
29
from bzrlib import errors
 
30
 
 
31
 
 
32
class LazyRegex(object):
 
33
    """A proxy around a real regex, which won't be compiled until accessed."""
 
34
 
 
35
 
 
36
    # These are the parameters on a real _sre.SRE_Pattern object, which we
 
37
    # will map to local members so that we don't have the proxy overhead.
 
38
    _regex_attributes_to_copy = [
 
39
                 '__copy__', '__deepcopy__', 'findall', 'finditer', 'match',
 
40
                 'scanner', 'search', 'split', 'sub', 'subn'
 
41
                 ]
 
42
 
 
43
    # We use slots to keep the overhead low. But we need a slot entry for
 
44
    # all of the attributes we will copy
 
45
    __slots__ = ['_real_regex', '_regex_args', '_regex_kwargs',
 
46
                ] + _regex_attributes_to_copy
 
47
 
 
48
    def __init__(self, args=(), kwargs={}):
 
49
        """Create a new proxy object, passing in the args to pass to re.compile
 
50
 
 
51
        :param args: The `*args` to pass to re.compile
 
52
        :param kwargs: The `**kwargs` to pass to re.compile
 
53
        """
 
54
        self._real_regex = None
 
55
        self._regex_args = args
 
56
        self._regex_kwargs = kwargs
 
57
 
 
58
    def _compile_and_collapse(self):
 
59
        """Actually compile the requested regex"""
 
60
        self._real_regex = self._real_re_compile(*self._regex_args,
 
61
                                                 **self._regex_kwargs)
 
62
        for attr in self._regex_attributes_to_copy:
 
63
            setattr(self, attr, getattr(self._real_regex, attr))
 
64
 
 
65
    def _real_re_compile(self, *args, **kwargs):
 
66
        """Thunk over to the original re.compile"""
 
67
        try:
 
68
            return _real_re_compile(*args, **kwargs)
 
69
        except re.error, e:
 
70
            # raise InvalidPattern instead of re.error as this gives a
 
71
            # cleaner message to the user.
 
72
            raise errors.InvalidPattern('"' + args[0] + '" ' +str(e))
 
73
 
 
74
    def __getstate__(self):
 
75
        """Return the state to use when pickling."""
 
76
        return {
 
77
            "args": self._regex_args,
 
78
            "kwargs": self._regex_kwargs,
 
79
            }
 
80
 
 
81
    def __setstate__(self, dict):
 
82
        """Restore from a pickled state."""
 
83
        self._real_regex = None
 
84
        setattr(self, "_regex_args", dict["args"])
 
85
        setattr(self, "_regex_kwargs", dict["kwargs"])
 
86
 
 
87
    def __getattr__(self, attr):
 
88
        """Return a member from the proxied regex object.
 
89
 
 
90
        If the regex hasn't been compiled yet, compile it
 
91
        """
 
92
        if self._real_regex is None:
 
93
            self._compile_and_collapse()
 
94
        # Once we have compiled, the only time we should come here
 
95
        # is actually if the attribute is missing.
 
96
        return getattr(self._real_regex, attr)
 
97
 
 
98
 
 
99
def lazy_compile(*args, **kwargs):
 
100
    """Create a proxy object which will compile the regex on demand.
 
101
 
 
102
    :return: a LazyRegex proxy object.
 
103
    """
 
104
    return LazyRegex(args, kwargs)
 
105
 
 
106
 
 
107
def install_lazy_compile():
 
108
    """Make lazy_compile the default compile mode for regex compilation.
 
109
 
 
110
    This overrides re.compile with lazy_compile. To restore the original
 
111
    functionality, call reset_compile().
 
112
    """
 
113
    re.compile = lazy_compile
 
114
 
 
115
 
 
116
def reset_compile():
 
117
    """Restore the original function to re.compile().
 
118
 
 
119
    It is safe to call reset_compile() multiple times, it will always
 
120
    restore re.compile() to the value that existed at import time.
 
121
    Though the first call will reset back to the original (it doesn't
 
122
    track nesting level)
 
123
    """
 
124
    re.compile = _real_re_compile
 
125
 
 
126
 
 
127
_real_re_compile = re.compile
 
128
if _real_re_compile is lazy_compile:
 
129
    raise AssertionError(
 
130
        "re.compile has already been overridden as lazy_compile, but this would" \
 
131
        " cause infinite recursion")