1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192 |
- # -*- coding: utf-8 -*-
- # Copyright 2018 Joshua Bronson. All Rights Reserved.
- #
- # This Source Code Form is subject to the terms of the Mozilla Public
- # License, v. 2.0. If a copy of the MPL was not distributed with this
- # file, You can obtain one at http://mozilla.org/MPL/2.0/.
- """Provides :func:`bidict.namedbidict`."""
- import re
- from ._abc import BidirectionalMapping
- from ._bidict import bidict
- _VALID_NAME = re.compile('^[A-z][A-z0-9_]*$')
- def namedbidict(typename, keyname, valname, base_type=bidict):
- r"""Create a new subclass of *base_type* with custom accessors.
- Analagous to :func:`collections.namedtuple`.
- The new class's ``__name__`` will be set to *typename*.
- Instances of it will provide access to their
- :attr:`inverse <BidirectionalMapping.inv>`\s
- via the custom *keyname*\_for property,
- and access to themselves
- via the custom *valname*\_for property.
- *See also* the :ref:`namedbidict usage documentation
- <other-bidict-types:\:func\:\`~bidict.namedbidict\`>`
- :raises ValueError: if any of the *typename*, *keyname*, or *valname*
- strings does not match ``%s``, or if *keyname == valname*.
- :raises TypeError: if *base_type* is not a subclass of
- :class:`BidirectionalMapping`.
- (This function requires slightly more of *base_type*,
- e.g. the availability of an ``_isinv`` attribute,
- but all the :ref:`concrete bidict types
- <other-bidict-types:Bidict Types Diagram>`
- that the :mod:`bidict` module provides can be passed in.
- Check out the code if you actually need to pass in something else.)
- """
- # Re the `base_type` docs above:
- # The additional requirements (providing _isinv and __getstate__) do not belong in the
- # BidirectionalMapping interface, and it's overkill to create additional interface(s) for this.
- # On the other hand, it's overkill to require that base_type be a subclass of BidictBase, since
- # that's too specific. The BidirectionalMapping check along with the docs above should suffice.
- if not issubclass(base_type, BidirectionalMapping):
- raise TypeError(base_type)
- names = (typename, keyname, valname)
- if not all(map(_VALID_NAME.match, names)) or keyname == valname:
- raise ValueError(names)
- class _Named(base_type):
- __slots__ = ()
- def _getfwd(self):
- return self.inv if self._isinv else self
- def _getinv(self):
- return self if self._isinv else self.inv
- def __reduce__(self):
- return (_make_empty, (typename, keyname, valname, base_type), self.__getstate__())
- bname = base_type.__name__
- fname = valname + '_for'
- iname = keyname + '_for'
- names = dict(typename=typename, bname=bname, keyname=keyname, valname=valname)
- fdoc = u'{typename} forward {bname}: {keyname} → {valname}'.format(**names)
- idoc = u'{typename} inverse {bname}: {valname} → {keyname}'.format(**names)
- setattr(_Named, fname, property(_Named._getfwd, doc=fdoc)) # pylint: disable=protected-access
- setattr(_Named, iname, property(_Named._getinv, doc=idoc)) # pylint: disable=protected-access
- _Named.__name__ = typename
- return _Named
- namedbidict.__doc__ %= _VALID_NAME.pattern # pylint: disable=no-member
- def _make_empty(typename, keyname, valname, base_type):
- """Create a named bidict with the indicated arguments and return an empty instance.
- Used to make :func:`bidict.namedbidict` instances picklable.
- """
- cls = namedbidict(typename, keyname, valname, base_type=base_type)
- return cls()
|