-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmpd_client.py
325 lines (276 loc) · 10.7 KB
/
mpd_client.py
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
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
#import mpd as musicpd
import musicpd
import json
import jsonpickle
import os.path
import heapq
from libs.collation import latin2ascii
#from os import environ
from kb import database as knowledge_base
#album_kb = knowledge_base.load_albums()
def connect_server(host='localhost', port=6600):
client = musicpd.MPDClient() # create client object
client.connect(host, port) # use MPD_HOST/MPD_PORT if set else
# test ${XDG_RUNTIME_DIR}/mpd/socket for existence
# fallback to localhost:6600
# connect support host/port argument as well
print(client.mpd_version) # print the mpd version
#print(client.listall())
# print(client.lsinfo('file:/disk2/share/Music/Music/Sviatoslav Richter/Beethoven_ Rondos, Bagatelles_ Chopin_ E/08 Chopin_ Etude #3 In E, Op. 10_3,.m4a'))
#print(album)
return client
class Album(object):
@classmethod
def get_album_key(cls, file):
""" Sample format:
"file": "file:/disk2/share/Music/Music/Walter Gieseking/Bach_ Partitas/1-06 Partita No.1 in B-flat, BWV 825.m4a",
"last-modified": "2017-11-29T15:42:37Z",
"time": "138",
"artist": "Walter Gieseking",
"albumartist": "Walter Gieseking",
"artistsort": "Walter Gieseking",
"albumartistsort": "Walter Gieseking",
"album": "Bach: Partitas",
"title": "Partita No.1 in B-flat, BWV 825 - 6. Giga",
"track": "6",
"date": "1950",
"genre": "Classical",
"disc": "1"}"""
rows = os.path.split(file['file'])
return rows[0] + "/" + file['album']
def __init__(self, album_id):
self.album_key = None
self.album_id = album_id
self.tracks = []
self.title = ""
self.last_modified = ""
self.artist = ""
self.keywords = ""
def search_kb(self):
return []
global album_kb
for a in album_kb:
pass
def get_metadata(self):
return []
def add(self, track):
key = Album.get_album_key(track)
if not self.album_key:
self.album_key = key
self.title = track['album']
self.last_modified = track['last-modified']
self.artist = track['albumartist']
elif self.album_key != key:
raise ValueError('The album key %s does not match %s.' % (key, self.album_key))
if 'disc' not in track:
track['disc'] = 1
else:
track['disc'] = int(track['disc'])
if 'track' not in track:
track['track'] = 1
else:
track['track'] = int(track['track'])
self.tracks.append(track)
def match(self, keywords):
for keyword in keywords:
if latin2ascii(keyword.lower()) not in self.keywords:
return False
return True
def complete(self):
self.get_metadata()
self.gen_keywords()
self.sort_tracks()
def sort_tracks(self):
self.tracks.sort(key=lambda x: (x['disc'], x['track']))
def gen_keywords(self):
keywords = set([self.title.lower(), self.artist.lower()])
for track in self.tracks:
keywords.add(latin2ascii(track['title'].lower()))
keywords.add(latin2ascii(track['artist'].lower()))
self.keywords = " ".join(keywords)
def __cmp__(self, other):
return cmp(self.last_modified, other.last_modified)
class Library(object):
def __init__(self, client, update=False):
self.client = client
self.cache_path = "library.json"
self.album_path = "albums.json"
if True or update:
self.update()
self.build()
"""with open(self.album_path) as fin:
self.albums = jsonpickle.decode(json.load(fin))
print("Number of albums loaded: %d" % len(self.albums))"""
def update(self):
data = self.client.find({"any": ""}, "Album")
with open(self.cache_path, "w") as fout:
json.dump(data, fout)
def build(self):
cached_albums = []
try:
with open(self.cache_path) as fin:
cached_albums = json.load(fin)
except:
print("Cached file for albums is not found.")
print("building albums from json")
albums = self.build_albums(cached_albums)
with open(self.album_path, "w") as fout:
json.dump(jsonpickle.encode(albums), fout)
def build_albums(self, data):
self.albums = {}
self.album_lookup = []
num_tracks = 0
for entry in data:
if 'file' not in entry:
continue
key = Album.get_album_key(entry)
if key not in self.albums:
self.albums[key] = Album(len(self.album_lookup))
self.album_lookup.append(key)
self.albums[key].add(entry)
num_tracks += 1
print("Number of albums: %d, Number of tracks: %d" % (len(self.albums), num_tracks))
self.latest_albums = []
for album in self.albums.values():
album.complete()
self.latest_albums.append((album.album_id, album.last_modified))
self.latest_albums.sort(key=lambda x: x[1], reverse=True)
print(self.latest_albums)
def get_album(self, album_id):
return self.albums[self.album_lookup[album_id]]
def list_latest_albums(self, size=20):
albums = []
for album_id, _ in self.latest_albums[:size]:
albums.append(self.get_album(album_id))
return albums
def search(self, keywords):
albums = []
keywords = list(map(str.lower, keywords))
for album in self.albums.values():
if album.match(keywords):
albums.append(album)
return albums
def find(self):
albums = self.client.find({"any": ""}, "Album", 0, 10)
print(albums)
print(len(albums))
class PlayQueue(object):
def __init__(self, client):
self.client = client
def add_album(self, album, play=False):
for track in album.tracks:
self.client.add(track['file'])
if play:
self.client.play()
play = False
def add_albums(self, albums, play=False):
print(self.client)
for album in albums:
for track in album.tracks:
print("Adding: %s" % track['file'])
self.client.add(track['file'])
if play:
self.client.play()
play = False
def add_files(self, files, play=False):
for file in files:
self.client.add(file)
if play:
self.client.play()
play = False
def add_track(self, album, track):
self.client.add(album.tracks[track - 1]['file'])
def clear(self):
self.client.clear()
def list(self):
return self.client.playlistinfo()
def get_current_song(self):
return self.client.currentsong()
class Player(object):
def __init__(self, client):
self.client = client
def play(self):
self.client.play()
def stop(self):
self.client.stop()
def pause(self):
try:
self.client.pause()
except:
pass
def next(self):
self.client.next()
def previous(self):
self.client.previous()
def status(self):
return self.client.status()
def idle(self, *args, **kwargs):
return self.client.idle(*args, **kwargs)
def noidle(self):
return self.client.noidle()
def seek(self, time):
self.client.seekcur(time)
def playid(self, songid):
self.client.playid(songid)
def setvol(self, vol):
pass
#self.client.setvol(vol)
def show_list(albums):
print("Number of albums: %d" % len(albums))
for album in albums:
print("%6d: %s %s" % (album.album_id, album.title, album.artist))
def show_album(album):
print("%6d: %s %s" % (album.album_id, album.title, album.artist))
for track in album.tracks:
print("%2d:%3d - %s %s" % (track['disc'], track['track'], track['title'], track['artist']))
if __name__ == "__main__":
client = connect_server('192.168.11.235', 6601)
music_lib = Library(client, update=False)
pq = PlayQueue(client)
player = Player(client)
pause = False
while True:
cmd = input()
rows = cmd.split()
cmd = rows[0]
if cmd == 'q':
break
elif cmd == 'p':
if len(rows) >= 2:
pq.clear()
if len(rows) == 2:
album = music_lib.get_album(int(rows[1]))
pq.add_album(album, True)
show_album(album)
elif len(rows) == 3:
album = music_lib.get_album(int(rows[1]))
track = int(rows[2])
pq.add_track(album, track, True)
show_album(album)
client.status()
elif cmd == 's':
player.pause()
elif cmd == 'latest':
size = int(rows[1]) if len(rows) == 2 else 20
show_list(music_lib.list_latest_albums(size))
elif cmd == 'search':
show_list(music_lib.search(rows[1:]))
elif cmd == 'v':
show_album(music_lib.get_album(int(rows[1])))
elif cmd == 'update':
music_lib = Library(client, update=True)
elif cmd == 'status':
print(client.status())
print(pq.get_current_song())
for track in client.playlistinfo():
print(track['file'])
elif cmd == 'idle':
print(player.idle())
elif cmd == 'volume':
player.setvol((int(rows[1])))
elif cmd == 'find':
music_lib.find()
else:
print("Unknown command: %s" % cmd)
client.close() # send the close command
client.disconnect() # disconnect from the server