1 # -*- coding: utf-8 -*-
2 # Copyright (c) 2013, 2014 Jack Kaliko <kaliko@azylum.org>
4 # This file is part of sima
6 # sima is free software: you can redistribute it and/or modify
7 # it under the terms of the GNU General Public License as published by
8 # the Free Software Foundation, either version 3 of the License, or
9 # (at your option) any later version.
11 # sima is distributed in the hope that it will be useful,
12 # but WITHOUT ANY WARRANTY; without even the implied warranty of
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 # GNU General Public License for more details.
16 # You should have received a copy of the GNU General Public License
17 # along with sima. If not, see <http://www.gnu.org/licenses/>.
21 Defines some object to handle audio file metadata
25 from collections.abc import Set # python >= 3.3
27 from collections import Set # python 3.2
31 UUID_RE = r'^[a-f0-9]{8}-[a-f0-9]{4}-4[a-f0-9]{3}-[89aAbB][a-f0-9]{3}-[a-f0-9]{12}$'
34 regexp = re.compile(UUID_RE, re.IGNORECASE)
35 if regexp.match(uuid):
37 raise WrongUUID4(uuid)
39 class MetaException(Exception):
40 """Generic Meta Exception"""
43 class WrongUUID4(MetaException):
47 def wrapper(*args, **kwargs):
50 kwargs.pop('mbid', None)
51 kwargs.pop('musicbrainz_artistid', None)
52 kwargs.pop('musicbrainz_albumartistid', None)
58 """Generic Class for Meta object
59 Meta(name=<str>[, mbid=UUID4])
63 def __init__(self, **kwargs):
64 self.__name = None #TODO: should be immutable
66 self.__aliases = set()
67 self.log = logging.getLogger(__name__)
68 if 'name' not in kwargs or not kwargs.get('name'):
69 raise MetaException('Need a "name" argument')
71 self.__name = kwargs.pop('name')
72 if 'mbid' in kwargs and kwargs.get('mbid'):
74 is_uuid4(kwargs.get('mbid'))
75 self.__mbid = kwargs.pop('mbid').lower()
77 self.log.warning('Wrong mbid %s:%s', self.__name,
79 # mbid immutable as hash rests on
80 self.__dict__.update(**kwargs)
83 fmt = '{0}(name={1.name!r}, mbid={1.mbid!r})'
84 return fmt.format(self.__class__.__name__, self)
87 return self.__name.__str__()
89 def __eq__(self, other):
91 Perform mbid equality test
93 #if hasattr(other, 'mbid'): # better isinstance?
94 if isinstance(other, Meta) and self.mbid and other.mbid:
95 return self.mbid == other.mbid
96 elif isinstance(other, Meta):
97 return bool(self.names & other.names)
98 elif getattr(other, '__str__', None):
99 # is other.__str__() in self.__name or self.__aliases
100 return other.__str__() in self.names
105 return hash(self.mbid)
106 return hash(self.__name)
108 def add_alias(self, other):
109 if getattr(other, '__str__', None):
110 if callable(other.__str__) and other.__str__() != self.name:
111 self.__aliases |= {other.__str__()}
112 elif isinstance(other, Meta):
113 if other.name != self.name:
114 self.__aliases |= other.__aliases
116 raise MetaException('No __str__ method found in {!r}'.format(other))
128 return self.__aliases
132 return self.__aliases | {self.__name,}
144 def __init__(self, name=None, mbid=None, **kwargs):
145 """Artist object built from a mapping dict containing at least an
147 >>> trk = {'artist':'Art Name',
148 >>> 'albumartist': 'Alb Art Name', # optional
149 >>> 'musicbrainz_artistid': '<UUID4>' , # optional
150 >>> 'musicbrainz_albumartistid': '<UUID4>', # optional
152 >>> artobj0 = Artist(**trk)
153 >>> artobj1 = Artist(name='Tool')
155 name = kwargs.get('artist', name).split(', ')[0]
156 mbid = kwargs.get('musicbrainz_artistid', mbid)
157 if (kwargs.get('albumartist', False) and
158 kwargs.get('albumartist') != 'Various Artists'):
159 name = kwargs.get('albumartist').split(', ')[0]
160 if (kwargs.get('musicbrainz_albumartistid', False) and
161 kwargs.get('musicbrainz_albumartistid') != '89ad4ac3-39f7-470e-963a-56509c546377'):
162 mbid = kwargs.get('musicbrainz_albumartistid').split(', ')[0]
163 super().__init__(name=name, mbid=mbid)
165 class MetaContainer(Set):
167 def __init__(self, iterable):
168 self.elements = lst = []
169 for value in iterable:
175 inlst.add_alias(value)
178 return iter(self.elements)
180 def __contains__(self, value):
181 return value in self.elements
184 return len(self.elements)
187 return repr(self.elements)
190 # vim: ai ts=4 sw=4 sts=4 expandtab