1
# Copyright (C) 2009, 2010 Canonical Ltd
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.
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.
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
17
"""The pure-python implementation of the StaticTuple type.
19
Note that it is generally just implemented as using tuples of tuples of
23
from __future__ import absolute_import
28
class StaticTuple(tuple):
29
"""A static type, similar to a tuple of strings."""
33
def __new__(cls, *args):
34
# Make the empty StaticTuple a singleton
35
if not args and _empty_tuple is not None:
37
return tuple.__new__(cls, args)
39
def __init__(self, *args):
40
"""Create a new 'StaticTuple'"""
42
if num_keys < 0 or num_keys > 255:
43
raise TypeError('StaticTuple(...) takes from 0 to 255 items')
45
if type(bit) not in _valid_types:
46
raise TypeError('StaticTuple can only point to'
47
' StaticTuple, str, unicode, int, float, bool, or'
48
' None not %s' % (type(bit),))
49
# We don't need to pass args to tuple.__init__, because that was
50
# already handled in __new__.
54
return '%s%s' % (self.__class__.__name__, tuple.__repr__(self))
57
return (StaticTuple, tuple(self))
59
def __add__(self, other):
60
"""Concatenate self with other"""
61
return StaticTuple.from_sequence(tuple.__add__(self, other))
67
return _interned_tuples.setdefault(self, self)
70
def from_sequence(seq):
71
"""Convert a sequence object into a StaticTuple instance."""
72
if isinstance(seq, StaticTuple):
75
return StaticTuple(*seq)
78
_valid_types = (bytes, str, StaticTuple, int, float, None.__class__, bool)
79
if sys.version_info < (3,):
80
_valid_types += (long, unicode)
83
# Have to set it to None first, so that __new__ can determine whether
84
# the _empty_tuple singleton has been created yet or not.
86
_empty_tuple = StaticTuple()