/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: Vincent Ladeuil
  • Date: 2007-11-24 14:20:59 UTC
  • mto: (3928.1.1 bzr.integration)
  • mto: This revision was merged to the branch mainline in revision 3929.
  • Revision ID: v.ladeuil+lp@free.fr-20071124142059-2114qtsgfdv8g9p1
Ssl files needed for the test https server.

* bzrlib/tests/ssl_certs/create_ssls.py: 
Script to create the ssl keys and certificates.

* bzrlib/tests/ssl_certs/server.crt: 
Server certificate signed by the certificate authority.

* bzrlib/tests/ssl_certs/server.csr: 
Server certificate signing request.

* bzrlib/tests/ssl_certs/server_without_pass.key: 
Server key usable without password.

* bzrlib/tests/ssl_certs/server_with_pass.key: 
Server key.

* bzrlib/tests/ssl_certs/ca.key: 
Certificate authority private key.

* bzrlib/tests/ssl_certs/ca.crt: 
Certificate authority certificate.

* bzrlib/tests/ssl_certs/__init__.py: 
Provide access to ssl files (keys and certificates). 

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
12
12
#
13
13
# You should have received a copy of the GNU General Public License
14
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
 
15
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
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
40
 
 
41
25
 
42
26
class LazyRegex(object):
43
27
    """A proxy around a real regex, which won't be compiled until accessed."""
58
42
    def __init__(self, args=(), kwargs={}):
59
43
        """Create a new proxy object, passing in the args to pass to re.compile
60
44
 
61
 
        :param args: The `*args` to pass to re.compile
62
 
        :param kwargs: The `**kwargs` to pass to re.compile
 
45
        :param args: The *args to pass to re.compile
 
46
        :param kwargs: The **kwargs to pass to re.compile
63
47
        """
64
48
        self._real_regex = None
65
49
        self._regex_args = args
74
58
 
75
59
    def _real_re_compile(self, *args, **kwargs):
76
60
        """Thunk over to the original re.compile"""
77
 
        try:
78
 
            return _real_re_compile(*args, **kwargs)
79
 
        except re.error as e:
80
 
            # raise InvalidPattern instead of re.error as this gives a
81
 
            # cleaner message to the user.
82
 
            raise InvalidPattern('"' + args[0] + '" ' +str(e))
83
 
 
84
 
    def __getstate__(self):
85
 
        """Return the state to use when pickling."""
86
 
        return {
87
 
            "args": self._regex_args,
88
 
            "kwargs": self._regex_kwargs,
89
 
            }
90
 
 
91
 
    def __setstate__(self, dict):
92
 
        """Restore from a pickled state."""
93
 
        self._real_regex = None
94
 
        setattr(self, "_regex_args", dict["args"])
95
 
        setattr(self, "_regex_kwargs", dict["kwargs"])
 
61
        return _real_re_compile(*args, **kwargs)
96
62
 
97
63
    def __getattr__(self, attr):
98
64
        """Return a member from the proxied regex object.
125
91
 
126
92
def reset_compile():
127
93
    """Restore the original function to re.compile().
128
 
 
 
94
    
129
95
    It is safe to call reset_compile() multiple times, it will always
130
96
    restore re.compile() to the value that existed at import time.
131
97
    Though the first call will reset back to the original (it doesn't
135
101
 
136
102
 
137
103
_real_re_compile = re.compile
138
 
if _real_re_compile is lazy_compile:
139
 
    raise AssertionError(
140
 
        "re.compile has already been overridden as lazy_compile, but this would" \
141
 
        " cause infinite recursion")
142
 
 
143
 
 
144
 
# Some libraries calls re.finditer which fails it if receives a LazyRegex.
145
 
if getattr(re, 'finditer', False):
146
 
    def finditer_public(pattern, string, flags=0):
147
 
        if isinstance(pattern, LazyRegex):
148
 
            return pattern.finditer(string)
149
 
        else:
150
 
            return _real_re_compile(pattern, flags).finditer(string)
151
 
    re.finditer = finditer_public
 
104
assert _real_re_compile is not lazy_compile, \
 
105
    "re.compile has already been overridden as lazy_compile, but this would" \
 
106
    " cause infinite recursion"