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
24 from .simastr import SimaStr
26 class MetaException(Exception):
27 """Generic Meta Exception"""
30 class NotSameArtist(MetaException):
35 """Generic Class for Meta object"""
37 def __init__(self, **kwargs):
40 if 'name' not in kwargs:
41 raise MetaException('need at least a "name" argument')
42 self.__dict__.update(kwargs)
45 fmt = '{0}(name="{1.name}", mbid="{1.mbid}")'
46 return fmt.format(self.__class__.__name__, self)
51 def __eq__(self, other):
53 Perform mbid equality test if present,
54 else fallback on fuzzy equality
56 if hasattr(other, 'mbid'):
57 if other.mbid and self.mbid:
58 return self.mbid == other.mbid
59 return SimaStr(str(self)) == SimaStr(str(other))
62 if self.mbid is not None:
63 return hash(self.mbid)
67 def __bool__(self): # empty name not possible for a valid obj
68 return bool(self.name)
71 __hash__ = Meta.__hash__
73 def __init__(self, **kwargs):
74 super().__init__(**kwargs)
76 def __eq__(self, other):
78 Perform mbid equality test if present,
79 else fallback on self.name equality
81 if hasattr(other, 'mbid'):
82 if other.mbid and self.mbid:
83 return self.mbid == other.mbid
84 return str(self) == str(other)
93 def __init__(self, **kwargs):
95 super().__init__(**kwargs)
97 def append(self, name):
98 self._aliases.update({name,})
102 return self._aliases | {self.name,}
104 def __add__(self, other):
105 if isinstance(other, Artist):
106 if self.mbid == other.mbid:
107 res = Artist(**self.__dict__)
108 res._aliases.extend(other.names)
111 raise NotSameArtist('different mbids: {0} and {1}'.format(self, other))
113 # vim: ai ts=4 sw=4 sts=4 expandtab