1 # -*- coding: utf-8 -*-
2 # Copyright (c) 2009-2014 Jack Kaliko <jack@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/>.
22 # Add decorator to filter through history?
24 # standard library import
29 """Player interface to inherit from.
31 When querying player music library for tracks, Player instance *must* return
32 Track objects (usually a list of them)
34 Player instance should expose the following immutable attributes:
45 self.log = logging.getLogger('sima')
48 """Monitor player for change
50 * database player media library has changed
51 * playlist playlist modified
52 * options player options changed: repeat mode, etc…
53 * player player state changed: paused, stopped, skip track…
55 raise NotImplementedError
58 """Any cleanup necessary"""
61 def remove(self, position=0):
62 """Removes the oldest element of the playlist (index 0)
64 raise NotImplementedError
66 def find_track(self, artist, title=None):
68 Find tracks for a specific artist or filtering with a track title
69 >>> player.find_track('The Beatles')
70 >>> player.find_track('Nirvana', title='Smells Like Teen Spirit')
72 Returns a list of Track objects
74 raise NotImplementedError
76 def find_album(self, artist, album):
78 Find tracks by track's album name
79 >>> player.find_album('Nirvana', 'Nevermind')
81 Returns a list of Track objects
83 raise NotImplementedError
85 def find_albums(self, artist):
87 Find albums by artist's name
88 >>> player.find_alums('Nirvana')
90 Returns a list of string objects
92 raise NotImplementedError
94 def fuzzy_find_artist(self, artist):
96 Find artists based on a fuzzy search in the media library
97 >>> bea = player.fuzzy_find_artist('beatles')
101 Returns a list of strings (artist names)
103 raise NotImplementedError
105 def disconnect(self):
106 """Closing client connection with the Player
108 raise NotImplementedError
111 """Connect client to the Player
113 raise NotImplementedError
116 # vim: ai ts=4 sw=4 sts=4 expandtab