1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255
|
# -*- coding: utf-8 -*-
# Copyright (c) 2013, 2014, 2015, 2021 kaliko <kaliko@azylum.org>
#
# This file is part of sima
#
# sima is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# sima is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with sima. If not, see <http://www.gnu.org/licenses/>.
#
#
"""
Defines some object to handle audio file metadata
"""
from collections.abc import Set
import logging
import re
from ..utils.utils import MPDSimaException
UUID_RE = r'^[a-f0-9]{8}-[a-f0-9]{4}-[a-f0-9]{4}-[89AB][a-f0-9]{3}-[a-f0-9]{12}$'
#: The Track Object is collapsing multiple tags into a single string using this
# separator. It is used then to split back the string to tags list.
SEPARATOR = chr(0x1F) # ASCII Unit Separator
def is_uuid4(uuid):
"""Controls MusicBrainz UUID4 format
:param str uuid: String representing the UUID
:returns: boolean
"""
regexp = re.compile(UUID_RE, re.IGNORECASE)
if regexp.match(uuid):
return True
return False
class MetaException(MPDSimaException):
"""Generic Meta Exception"""
def mbidfilter(func):
def wrapper(*args, **kwargs):
cls = args[0]
if not cls.use_mbid:
kwargs.pop('mbid', None)
kwargs.pop('musicbrainz_artistid', None)
kwargs.pop('musicbrainz_albumartistid', None)
func(*args, **kwargs)
return wrapper
def serialize(func):
def wrapper(*args, **kwargs):
ans = func(*args, **kwargs)
if isinstance(ans, set):
return {s.replace("'", r"\'").replace('"', r'\"') for s in ans}
return ans.replace("'", r"\'").replace('"', r'\"')
return wrapper
class Meta:
"""
A generic Class to handle tracks metadata such as artist, album, albumartist
names and their associated MusicBrainz's ID.
Using generic kwargs in constructor for convenience but the actual signature is:
>>> Meta(name, mbid=None, **kwargs)
:param str name: set name attribute
:param str mbid: set MusicBrainz ID
"""
use_mbid = True
"""Class attribute to disable use of MusicBrainz IDs"""
def __init__(self, **kwargs):
"""Meta(name=<str>[, mbid=UUID4])"""
self.__name = None # TODO: should be immutable
self.__mbid = None
self.__aliases = set()
self.log = logging.getLogger(__name__)
if 'name' not in kwargs or not kwargs.get('name'):
raise MetaException('Need a "name" argument (str type)')
if not isinstance(kwargs.get('name'), str):
raise MetaException('"name" argument not a string')
self.__name = kwargs.pop('name').split(SEPARATOR)[0]
if 'mbid' in kwargs and kwargs.get('mbid'):
mbid = kwargs.get('mbid').lower().split(SEPARATOR)[0]
if is_uuid4(mbid):
self.__mbid = mbid
else:
self.log.warning('Wrong mbid %s:%s', self.__name, mbid)
# mbid immutable as hash rests on
self.__dict__.update(**kwargs)
def __repr__(self):
fmt = '{0}(name={1.name!r}, mbid={1.mbid!r})'
return fmt.format(self.__class__.__name__, self)
def __str__(self):
return self.__name.__str__()
def __eq__(self, other):
"""
Perform mbid equality test
"""
#if hasattr(other, 'mbid'): # better isinstance?
if isinstance(other, Meta) and self.mbid and other.mbid:
return self.mbid == other.mbid
if isinstance(other, Meta):
return bool(self.names & other.names)
if getattr(other, '__str__', None):
# is other.__str__() in self.__name or self.__aliases
return other.__str__() in self.names
return False
def __hash__(self):
if self.mbid:
return hash(self.mbid)
return hash(self.__name)
def add_alias(self, other):
"""Add alternative name to `aliases` attibute.
`other` can be a :class:`sima.lib.meta.Meta` object in which case aliases are merged.
:param str other: Alias to add, could be any object with ``__str__`` method.
"""
if isinstance(other, Meta):
self.__aliases |= other.__aliases
self.__aliases -= {self.name}
if getattr(other, '__str__', None):
if callable(other.__str__) and other.__str__() != self.name:
self.__aliases |= {other.__str__()}
else:
raise MetaException(f'No __str__ method found in {other!r}')
@property
def name(self):
return self.__name
@property
@serialize
def name_sz(self):
return self.name
@property
def mbid(self):
return self.__mbid
@property
def aliases(self):
return self.__aliases
@property
@serialize
def aliases_sz(self):
return self.aliases
@property
def names(self):
"""aliases + name"""
return self.__aliases | {self.__name, }
@property
@serialize
def names_sz(self):
return self.names
class Album(Meta):
"""Album object"""
@mbidfilter
def __init__(self, name=None, mbid=None, **kwargs):
if kwargs.get('musicbrainz_albumid', False):
mbid = kwargs.get('musicbrainz_albumid')
super().__init__(name=name, mbid=mbid, **kwargs)
@property
def album(self):
return self.name
class Artist(Meta):
"""Artist object deriving from :class:`Meta`.
:param str name: Artist name
:param str mbid: Musicbrainz artist ID
:param str artist: Overrides "name" argument
:param str albumartist: use "name" if not set
:param str musicbrainz_artistid: Overrides "mbid" argument
:Example:
>>> trk = {'artist':'Art Name',
>>> 'albumartist': 'Alb Art Name', # optional
>>> 'musicbrainz_artistid': '<UUID4>', # optional
>>> }
>>> artobj0 = Artist(**trk)
>>> artobj1 = Artist(name='Tool')
"""
@mbidfilter
def __init__(self, name=None, mbid=None, **kwargs):
if kwargs.get('artist', False):
name = kwargs.get('artist')
if kwargs.get('musicbrainz_artistid', False):
mbid = kwargs.get('musicbrainz_artistid')
if name and not kwargs.get('albumartist', False):
kwargs['albumartist'] = name.split(SEPARATOR)[0]
super().__init__(name=name, mbid=mbid,
albumartist=kwargs.get('albumartist'))
class MetaContainer(Set):
def __init__(self, iterable):
self.elements = lst = []
for value in iterable:
if value not in lst:
lst.append(value)
else:
for inlst in lst:
if value == inlst:
inlst.add_alias(value)
def __iter__(self):
return iter(self.elements)
def __contains__(self, value):
return value in self.elements
def __len__(self):
return len(self.elements)
def __repr__(self):
return repr(self.elements)
# VIM MODLINE
# vim: ai ts=4 sw=4 sts=4 expandtab
|