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
|
#!/usr/bin/env python
# XMMS2 - X Music Multiplexer System
# Copyright (C) 2003-2006 XMMS2 Team
#
# This library is free software; you can redistribute it and/or
# modify it under the terms of the GNU Lesser General Public
# License as published by the Free Software Foundation; either
# version 2.1 of the License, or (at your option) any later version.
#
# This library 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
# Lesser General Public License for more details.
#
# This file is a part of the XMMS2 client tutorial #5
# More about dicts and propdicts
import xmmsclient
import os
import sys
"""
The first part of this program is
commented in tut1.
"""
xmms = xmmsclient.XMMS("tutorial5")
try:
xmms.connect(os.getenv("XMMS_PATH"))
except IOError, detail:
print "Connection failed:", detail
sys.exit(1)
"""
In tut3 we learned about dicts. But there is more to know on this
topic. There are actually two kinds of dicts. The normal ones and
property dicts. I will try to explain them here.
A normal dict contains key:value mappings as normal. Getting values from
this is straight forward: just access them as normal python dicts as
we did in tut3.
Property dicts are dicts that can have the same key multiple times.
Like two "artists" or "titles". If a propdict is treated like a dict,
it will return only one of the possible values for a key. For example,
mypropdict["artist"] will return only one possible value for 'artist'
To get the values for keys from a specific source, use
PropDict.set_source_preference() Alternatively, you can access a
value associated to a key from a specific source by using a tuple
as the key: mypropdict[("server", "artist")] The tuple key always
has the source as first item and the real key name as second item.
Property dicts are primarily used by the medialib. In this case the
source refers to the application which set the tag.
Most of the time you don't have to care because the default source is
set to prefer values set by the server over values set by clients. But
if your program wants to override title or artist, for example, you need
to call PropDict.set_source_preference() before extracting values.
It's also important when iterating over the dicts. Let me show you.
First we retrieve the config values stored in the server and print
them out. This is a normal dict.
"""
result = xmms.configval_list()
result.wait()
for key, value in result.value().items():
print key, "=", value
"""
Now get a prop dict. Entry 1 should be the default clip
we ship so it should be safe to request information
about it.
"""
result = xmms.medialib_get_info(1)
result.wait()
for key, value in result.value().items():
print "%s:%s" % key, "=", value
|