]> kaliko git repositories - mpd-sima.git/blob - sima/client.py
667242cc7ab569a4cb94792e26550a8de4e5526c
[mpd-sima.git] / sima / client.py
1 # -*- coding: utf-8 -*-
2 # Copyright (c) 2013, 2014 Jack Kaliko <kaliko@azylum.org>
3 #
4 #  This file is part of sima
5 #
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.
10 #
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.
15 #
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/>.
18 #
19 #
20 """MPD client for Sima
21
22 This client is built above python-musicpd a fork of python-mpd
23 """
24 #  pylint: disable=C0111
25
26 # standard library import
27 from difflib import get_close_matches
28 from select import select
29
30 # third parties components
31 try:
32     from musicpd import (MPDClient, MPDError, CommandError)
33 except ImportError as err:
34     from sys import exit as sexit
35     print('ERROR: missing python-musicpd?\n{0}'.format(err))
36     sexit(1)
37
38 # local import
39 from .lib.simastr import SimaStr
40 from .lib.player import Player, blacklist
41 from .lib.track import Track
42 from .lib.meta import Album, Artist
43 from .utils.leven import levenshtein_ratio
44
45
46 class PlayerError(Exception):
47     """Fatal error in poller."""
48
49 class PlayerCommandError(PlayerError):
50     """Command error"""
51
52 PlayerUnHandledError = MPDError  # pylint: disable=C0103
53
54 def bl_artist(func):
55     def wrapper(*args, **kwargs):
56         cls = args[0]
57         if not args[0].database:
58             return func(*args, **kwargs)
59         result = func(*args, **kwargs)
60         if not result:
61             return
62         names = list()
63         for art in result.names:
64             if cls.database.get_bl_artist(art, add_not=True):
65                 cls.log.debug('Blacklisted "{0}"'.format(art))
66                 continue
67             names.append(art)
68         if not names:
69             return
70         resp = Artist(name=names.pop(), mbid=result.mbid)
71         for name in names:
72             resp.add_alias(name)
73         return resp
74     return wrapper
75
76
77 class PlayerClient(Player):
78     """MPD Client
79     From python-musicpd:
80         _fetch_nothing  …
81         _fetch_item     single str
82         _fetch_object   single dict
83         _fetch_list     list of str
84         _fetch_playlist list of str
85         _fetch_changes  list of dict
86         _fetch_database list of dict
87         _fetch_songs    list of dict, especially tracks
88         _fetch_plugins,
89     TODO: handle exception in command not going through _client_wrapper() (ie.
90           remove…)
91     """
92     database = None  # sima database (history, blacklist)
93
94     def __init__(self, host="localhost", port="6600", password=None):
95         super().__init__()
96         self._comm = self._args = None
97         self._mpd = host, port, password
98         self._client = MPDClient()
99         self._client.iterate = True
100         self._cache = None
101
102     def __getattr__(self, attr):
103         command = attr
104         wrapper = self._execute
105         return lambda *args: wrapper(command, args)
106
107     def _execute(self, command, args):
108         self._write_command(command, args)
109         return self._client_wrapper()
110
111     def _write_command(self, command, args=None):
112         self._comm = command
113         self._args = list()
114         for arg in args:
115             self._args.append(arg)
116
117     def _client_wrapper(self):
118         func = self._client.__getattr__(self._comm)
119         try:
120             ans = func(*self._args)
121         # WARNING: MPDError is an ancestor class of # CommandError
122         except CommandError as err:
123             raise PlayerCommandError('MPD command error: %s' % err)
124         except (MPDError, IOError) as err:
125             raise PlayerError(err)
126         return self._track_format(ans)
127
128     def _track_format(self, ans):
129         """
130         unicode_obj = ["idle", "listplaylist", "list", "sticker list",
131                 "commands", "notcommands", "tagtypes", "urlhandlers",]
132         """
133         # TODO: ain't working for "sticker find" and "sticker list"
134         tracks_listing = ["playlistfind", "playlistid", "playlistinfo",
135                 "playlistsearch", "plchanges", "listplaylistinfo", "find",
136                 "search", "sticker find",]
137         track_obj = ['currentsong']
138         if self._comm in tracks_listing + track_obj:
139             #  pylint: disable=w0142
140             if isinstance(ans, list):
141                 return [Track(**track) for track in ans]
142             elif isinstance(ans, dict):
143                 return Track(**ans)
144         return ans
145
146     def __skipped_track(self, old_curr):
147         if (self.state == 'stop'
148             or not hasattr(old_curr, 'id')
149             or not hasattr(self.current, 'id')):
150             return False
151         return self.current.id != old_curr.id  # pylint: disable=no-member
152
153     def _flush_cache(self):
154         """
155         Both flushes and instantiates _cache
156         """
157         if isinstance(self._cache, dict):
158             self.log.info('Player: Flushing cache!')
159         else:
160             self.log.info('Player: Initialising cache!')
161         self._cache = {
162                 'artists': None,
163                 'nombid_artists': None,
164                 }
165         self._cache['artists'] = frozenset(self._client.list('artist'))
166         self._cache['nombid_artists'] = frozenset(self._client.list('artist', 'musicbrainz_artistid', ''))
167
168     @blacklist(track=True)
169     def find_track(self, artist, title=None):
170         tracks = set()
171         for name in artist.names:
172             if title:
173                 tracks |= set(self.find('artist', name, 'title', title))
174             else:
175                 tracks |= set(self.find('artist', name))
176         if artist.mbid:
177             if title:
178                 tracks |= set(self.find('musicbrainz_artistid', artist.mbid))
179             else:
180                 tracks |= set(self.find('musicbrainz_artistid', artist.mbid,
181                                         'title', title))
182         return list(tracks)
183
184     @bl_artist
185     def search_artist(self, artist):
186         """
187         Search artists based on a fuzzy search in the media library
188             >>> art = Artist(name='the beatles', mbid=<UUID4>) # mbid optional
189             >>> bea = player.search_artist(art)
190             >>> print(bea.names)
191             >>> ['The Beatles', 'Beatles', 'the beatles']
192
193         Returns an Artist object
194         """
195         found = False
196         if artist.mbid:
197             # look for exact search w/ musicbrainz_artistid
198             exact_m = self._client.list('artist', 'musicbrainz_artistid', artist.mbid)
199             if exact_m:
200                 [artist.add_alias(name) for name in exact_m]
201                 found = True
202         else:
203             artist = Artist(name=artist.name)
204         # then complete with fuzzy search on artist with no musicbrainz_artistid
205         if artist.mbid:
206             # we already performed a lookup on artists with mbid set
207             # search through remaining artists
208             artists = self._cache.get('nombid_artists', [])
209         else:
210             artists = self._cache.get('artists', [])
211         match = get_close_matches(artist.name, artists, 50, 0.73)
212         if not match and not found:
213             return
214         if len(match) > 1:
215             self.log.debug('found close match for "%s": %s' %
216                            (artist, '/'.join(match)))
217         # Does not perform fuzzy matching on short and single word strings
218         # Only lowercased comparison
219         if ' ' not in artist.name and len(artist.name) < 8:
220             for fuzz_art in match:
221                 # Regular lowered string comparison
222                 if artist.name.lower() == fuzz_art.lower():
223                     artist.add_alias(fuzz_art)
224                     return artist
225         fzartist = SimaStr(artist.name)
226         for fuzz_art in match:
227             # Regular lowered string comparison
228             if artist.name.lower() == fuzz_art.lower():
229                 found = True
230                 artist.add_alias(fuzz_art)
231                 if artist.name != fuzz_art:
232                     self.log.debug('"%s" matches "%s".' % (fuzz_art, artist))
233                 continue
234             # SimaStr string __eq__ (not regular string comparison here)
235             if fzartist == fuzz_art:
236                 found = True
237                 artist.add_alias(fuzz_art)
238                 self.log.info('"%s" quite probably matches "%s" (SimaStr)' %
239                               (fuzz_art, artist))
240         if found:
241             if artist.aliases:
242                 self.log.debug('Found: {}'.format('/'.join(list(artist.names)[:4])))
243             return artist
244
245     def fuzzy_find_track(self, artist, title):
246         # Retrieve all tracks from artist
247         all_tracks = self.find_track(artist, title)
248         # Get all titles (filter missing titles set to 'None')
249         all_artist_titles = frozenset([tr.title for tr in all_tracks
250                                        if tr.title is not None])
251         match = get_close_matches(title, all_artist_titles, 50, 0.78)
252         if not match:
253             return []
254         for title_ in match:
255             leven = levenshtein_ratio(title.lower(), title_.lower())
256             if leven == 1:
257                 pass
258             elif leven >= 0.79:  # PARAM
259                 self.log.debug('title: "%s" should match "%s" (lr=%1.3f)' %
260                                (title_, title, leven))
261             else:
262                 self.log.debug('title: "%s" does not match "%s" (lr=%1.3f)' %
263                                (title_, title, leven))
264                 return []
265             return self.find('artist', artist, 'title', title_)
266
267     def find_album(self, artist, album):
268         """
269         Special wrapper around album search:
270         Album lookup is made through AlbumArtist/Album instead of Artist/Album
271         """
272         alb_art_search = self.find('albumartist', artist, 'album', album)
273         if alb_art_search:
274             return alb_art_search
275         return self.find('artist', artist, 'album', album)
276
277     @blacklist(album=True)
278     def search_albums(self, artist):
279         """
280         Fetch all albums for "AlbumArtist"  == artist
281         Filter albums returned for "artist" == artist since MPD returns any
282                album containing at least a single track for artist
283         """
284         albums = []
285         for name in artist.names:
286             if len(artist.names) > 1:
287                 self.log.debug('Searching album for aliase: "{}"'.format(name))
288             kwalbart = {'albumartist':name, 'artist':name}
289             for album in self.list('album', 'albumartist', artist):
290                 if album and album not in albums:
291                     albums.append(Album(name=album, **kwalbart))
292             for album in self.list('album', 'artist', artist):
293                 album_trks = [trk for trk in self.find('album', album)]
294                 if 'Various Artists' in [tr.albumartist for tr in album_trks]:
295                     self.log.debug('Discarding {0} ("Various Artists" set)'.format(album))
296                     continue
297                 arts = set([trk.artist for trk in album_trks])
298                 if len(set(arts)) < 2:  # TODO: better heuristic, use a ratio instead
299                     if album not in albums:
300                         albums.append(Album(name=album, **kwalbart))
301                 elif album and album not in albums:
302                     self.log.debug('"{0}" probably not an album of "{1}"'.format(
303                                    album, artist) + '({0})'.format('/'.join(arts)))
304         return albums
305
306     def monitor(self):
307         curr = self.current
308         try:
309             self.send_idle('database', 'playlist', 'player', 'options')
310             select([self._client], [], [], 60)
311             ret = self.fetch_idle()
312             if self.__skipped_track(curr):
313                 ret.append('skipped')
314             if 'database' in ret:
315                 self._flush_cache()
316             return ret
317         except (MPDError, IOError) as err:
318             raise PlayerError("Couldn't init idle: %s" % err)
319
320     def clean(self):
321         """Clean blocking event (idle) and pending commands
322         """
323         if 'idle' in self._client._pending:
324             self._client.noidle()
325         elif self._client._pending:
326             self.log.warning('pending commands: {}'.format(self._client._pending))
327
328     def remove(self, position=0):
329         self.delete(position)
330
331     def add(self, track):
332         """Overriding MPD's add method to accept add signature with a Track
333         object"""
334         self._client.add(track.file)
335
336     @property
337     def artists(self):
338         return self._cache.get('artists')
339
340     @property
341     def state(self):
342         return str(self.status().get('state'))
343
344     @property
345     def current(self):
346         return self.currentsong()
347
348     @property
349     def queue(self):
350         plst = self.playlist
351         plst.reverse()
352         return [trk for trk in plst if int(trk.pos) > int(self.current.pos)]
353
354     @property
355     def playlist(self):
356         """
357         Override deprecated MPD playlist command
358         """
359         return self.playlistinfo()
360
361     def connect(self):
362         host, port, password = self._mpd
363         self.disconnect()
364         try:
365             self._client.connect(host, port)
366
367         # Catch socket errors
368         except IOError as err:
369             raise PlayerError('Could not connect to "%s:%s": %s' %
370                               (host, port, err.strerror))
371
372         # Catch all other possible errors
373         # ConnectionError and ProtocolError are always fatal.  Others may not
374         # be, but we don't know how to handle them here, so treat them as if
375         # they are instead of ignoring them.
376         except MPDError as err:
377             raise PlayerError('Could not connect to "%s:%s": %s' %
378                               (host, port, err))
379
380         if password:
381             try:
382                 self._client.password(password)
383
384             # Catch errors with the password command (e.g., wrong password)
385             except CommandError as err:
386                 raise PlayerError("Could not connect to '%s': "
387                                   "password command failed: %s" %
388                                   (host, err))
389
390             # Catch all other possible errors
391             except (MPDError, IOError) as err:
392                 raise PlayerError("Could not connect to '%s': "
393                                   "error with password command: %s" %
394                                   (host, err))
395         # Controls we have sufficient rights
396         needed_cmds = ['status', 'stats', 'add', 'find', \
397                        'search', 'currentsong', 'ping']
398
399         available_cmd = self._client.commands()
400         for nddcmd in needed_cmds:
401             if nddcmd not in available_cmd:
402                 self.disconnect()
403                 raise PlayerError('Could connect to "%s", '
404                                   'but command "%s" not available' %
405                                   (host, nddcmd))
406
407         #  Controls use of MusicBrainzIdentifier
408         if Artist.use_mbid:
409             if 'MUSICBRAINZ_ARTISTID' not in self._client.tagtypes():
410                 self.log.warning('Use of MusicBrainzIdentifier is set but MPD is '
411                         'not providing related metadata')
412                 self.log.info(self._client.tagtypes())
413                 self.log.warning('Disabling MusicBrainzIdentifier')
414                 Artist.use_mbid = False
415         else:
416             self.log.warning('Use of MusicBrainzIdentifier disabled!')
417             self.log.info('Consider using MusicBrainzIdentifier for your music library')
418         self._flush_cache()
419
420     def disconnect(self):
421         # Try to tell MPD we're closing the connection first
422         try:
423             self._client.noidle()
424             self._client.close()
425         # If that fails, don't worry, just ignore it and disconnect
426         except (MPDError, IOError):
427             pass
428         try:
429             self._client.disconnect()
430         # Disconnecting failed, so use a new client object instead
431         # This should never happen.  If it does, something is seriously broken,
432         # and the client object shouldn't be trusted to be re-used.
433         except (MPDError, IOError):
434             self._client = MPDClient()
435
436 # VIM MODLINE
437 # vim: ai ts=4 sw=4 sts=4 expandtab