/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 breezy/_static_tuple_py.py

  • Committer: Jelmer Vernooij
  • Date: 2020-03-22 01:35:14 UTC
  • mfrom: (7490.7.6 work)
  • mto: This revision was merged to the branch mainline in revision 7499.
  • Revision ID: jelmer@jelmer.uk-20200322013514-7vw1ntwho04rcuj3
merge lp:brz/3.1.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# Copyright (C) 2009, 2010 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
"""The pure-python implementation of the StaticTuple type.
 
18
 
 
19
Note that it is generally just implemented as using tuples of tuples of
 
20
strings.
 
21
"""
 
22
 
 
23
import sys
 
24
 
 
25
 
 
26
class StaticTuple(tuple):
 
27
    """A static type, similar to a tuple of strings."""
 
28
 
 
29
    __slots__ = ()
 
30
 
 
31
    def __new__(cls, *args):
 
32
        # Make the empty StaticTuple a singleton
 
33
        if not args and _empty_tuple is not None:
 
34
            return _empty_tuple
 
35
        return tuple.__new__(cls, args)
 
36
 
 
37
    def __init__(self, *args):
 
38
        """Create a new 'StaticTuple'"""
 
39
        num_keys = len(args)
 
40
        if num_keys < 0 or num_keys > 255:
 
41
            raise TypeError('StaticTuple(...) takes from 0 to 255 items')
 
42
        for bit in args:
 
43
            if type(bit) not in _valid_types:
 
44
                raise TypeError('StaticTuple can only point to'
 
45
                                ' StaticTuple, str, unicode, int, float, bool, or'
 
46
                                ' None not %s' % (type(bit),))
 
47
        # We don't need to pass args to tuple.__init__, because that was
 
48
        # already handled in __new__.
 
49
        tuple.__init__(self)
 
50
 
 
51
    def __repr__(self):
 
52
        return '%s%s' % (self.__class__.__name__, tuple.__repr__(self))
 
53
 
 
54
    def __reduce__(self):
 
55
        return (StaticTuple, tuple(self))
 
56
 
 
57
    def __add__(self, other):
 
58
        """Concatenate self with other"""
 
59
        return StaticTuple.from_sequence(tuple.__add__(self, other))
 
60
 
 
61
    def as_tuple(self):
 
62
        return tuple(self)
 
63
 
 
64
    def intern(self):
 
65
        return _interned_tuples.setdefault(self, self)
 
66
 
 
67
    @staticmethod
 
68
    def from_sequence(seq):
 
69
        """Convert a sequence object into a StaticTuple instance."""
 
70
        if isinstance(seq, StaticTuple):
 
71
            # it already is
 
72
            return seq
 
73
        return StaticTuple(*seq)
 
74
 
 
75
 
 
76
_valid_types = (bytes, str, StaticTuple, int, float, None.__class__, bool)
 
77
 
 
78
 
 
79
# Have to set it to None first, so that __new__ can determine whether
 
80
# the _empty_tuple singleton has been created yet or not.
 
81
_empty_tuple = None
 
82
_empty_tuple = StaticTuple()
 
83
_interned_tuples = {}