X-Git-Url: https://git.kaliko.me/?a=blobdiff_plain;f=sima%2Flib%2Fmeta.py;h=de9f44fb7bd6afad2a25b0eede0e8534ee081946;hb=e5ac6da78e3433a1b94676f6523e358d6089f263;hp=44369a272e8cc51f1313d9b60519e0e59ac4589f;hpb=41048503e9b3cf0fdc58e14f35f483889a0b05ae;p=mpd-sima.git diff --git a/sima/lib/meta.py b/sima/lib/meta.py index 44369a2..de9f44f 100644 --- a/sima/lib/meta.py +++ b/sima/lib/meta.py @@ -1,5 +1,5 @@ # -*- coding: utf-8 -*- -# Copyright (c) 2013, 2014 Jack Kaliko +# Copyright (c) 2013, 2014, 2015 Jack Kaliko # # This file is part of sima # @@ -21,10 +21,17 @@ Defines some object to handle audio file metadata """ +try: + from collections.abc import Set # python >= 3.3 +except ImportError: + from collections import Set # python 3.2 import logging import re 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}$' +# 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): regexp = re.compile(UUID_RE, re.IGNORECASE) @@ -68,10 +75,10 @@ class Meta: if 'mbid' in kwargs and kwargs.get('mbid'): try: is_uuid4(kwargs.get('mbid')) - self.__mbid = kwargs.pop('mbid') + self.__mbid = kwargs.pop('mbid').lower() except WrongUUID4: - self.log.warning('Wrong mbid {}:{}'.format(self.__name, - kwargs.get('mbid'))) + self.log.warning('Wrong mbid %s:%s', self.__name, + kwargs.get('mbid')) # mbid immutable as hash rests on self.__dict__.update(**kwargs) @@ -88,8 +95,7 @@ class Meta: """ #if hasattr(other, 'mbid'): # better isinstance? if isinstance(other, Meta) and self.mbid and other.mbid: - if self.mbid and other.mbid: - return self.mbid == other.mbid + return self.mbid == other.mbid elif isinstance(other, Meta): return bool(self.names & other.names) elif getattr(other, '__str__', None): @@ -143,21 +149,47 @@ class Artist(Meta): "artist" entry: >>> trk = {'artist':'Art Name', >>> 'albumartist': 'Alb Art Name', # optional - >>> 'musicbrainz_artistid': '' , # optional + >>> 'musicbrainz_artistid': '', # optional >>> 'musicbrainz_albumartistid': '', # optional >>> } >>> artobj0 = Artist(**trk) >>> artobj1 = Artist(name='Tool') """ - name = kwargs.get('artist', name) - mbid = kwargs.get('musicbrainz_artistid', mbid) + if kwargs.get('artist', False): + name = kwargs.get('artist').split(SEPARATOR)[0] + if kwargs.get('musicbrainz_artistid', False): + mbid = kwargs.get('musicbrainz_artistid').split(SEPARATOR)[0] if (kwargs.get('albumartist', False) and kwargs.get('albumartist') != 'Various Artists'): - name = kwargs.get('albumartist').split(', ')[0] + name = kwargs.get('albumartist').split(SEPARATOR)[0] if (kwargs.get('musicbrainz_albumartistid', False) and kwargs.get('musicbrainz_albumartistid') != '89ad4ac3-39f7-470e-963a-56509c546377'): - mbid = kwargs.get('musicbrainz_albumartistid').split(', ')[0] + mbid = kwargs.get('musicbrainz_albumartistid').split(SEPARATOR)[0] super().__init__(name=name, mbid=mbid) +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