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 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890
|
"""
Python bindings for XMMS2.
"""
# CImports
from cpython.mem cimport PyMem_Malloc, PyMem_Free
from cpython.bytes cimport PyBytes_FromStringAndSize
cimport cython
from xmmsutils cimport from_unicode
from cxmmsvalue cimport *
from cxmmsclient cimport *
from xmmsvalue cimport *
# The following constants are meant for interpreting the return value of
# XMMS.playback_status ()
PLAYBACK_STATUS_STOP = XMMS_PLAYBACK_STATUS_STOP
PLAYBACK_STATUS_PLAY = XMMS_PLAYBACK_STATUS_PLAY
PLAYBACK_STATUS_PAUSE = XMMS_PLAYBACK_STATUS_PAUSE
PLAYLIST_CHANGED_ADD = XMMS_PLAYLIST_CHANGED_ADD
PLAYLIST_CHANGED_INSERT = XMMS_PLAYLIST_CHANGED_INSERT
PLAYLIST_CHANGED_SHUFFLE = XMMS_PLAYLIST_CHANGED_SHUFFLE
PLAYLIST_CHANGED_REMOVE = XMMS_PLAYLIST_CHANGED_REMOVE
PLAYLIST_CHANGED_CLEAR = XMMS_PLAYLIST_CHANGED_CLEAR
PLAYLIST_CHANGED_MOVE = XMMS_PLAYLIST_CHANGED_MOVE
PLAYLIST_CHANGED_SORT = XMMS_PLAYLIST_CHANGED_SORT
PLAYLIST_CHANGED_UPDATE = XMMS_PLAYLIST_CHANGED_UPDATE
PLUGIN_TYPE_ALL = XMMS_PLUGIN_TYPE_ALL
PLUGIN_TYPE_XFORM = XMMS_PLUGIN_TYPE_XFORM
PLUGIN_TYPE_OUTPUT = XMMS_PLUGIN_TYPE_OUTPUT
MEDIALIB_ENTRY_STATUS_NEW = XMMS_MEDIALIB_ENTRY_STATUS_NEW
MEDIALIB_ENTRY_STATUS_OK = XMMS_MEDIALIB_ENTRY_STATUS_OK
MEDIALIB_ENTRY_STATUS_RESOLVING = XMMS_MEDIALIB_ENTRY_STATUS_RESOLVING
MEDIALIB_ENTRY_STATUS_NOT_AVAILABLE = XMMS_MEDIALIB_ENTRY_STATUS_NOT_AVAILABLE
MEDIALIB_ENTRY_STATUS_REHASH = XMMS_MEDIALIB_ENTRY_STATUS_REHASH
COLLECTION_CHANGED_ADD = XMMS_COLLECTION_CHANGED_ADD
COLLECTION_CHANGED_UPDATE = XMMS_COLLECTION_CHANGED_UPDATE
COLLECTION_CHANGED_RENAME = XMMS_COLLECTION_CHANGED_RENAME
COLLECTION_CHANGED_REMOVE = XMMS_COLLECTION_CHANGED_REMOVE
PLAYBACK_SEEK_CUR = XMMS_PLAYBACK_SEEK_CUR
PLAYBACK_SEEK_SET = XMMS_PLAYBACK_SEEK_SET
COLLECTION_NS_COLLECTIONS = <char *>XMMS_COLLECTION_NS_COLLECTIONS
COLLECTION_NS_PLAYLISTS = <char *>XMMS_COLLECTION_NS_PLAYLISTS
COLLECTION_NS_ALL = <char *>XMMS_COLLECTION_NS_ALL
ACTIVE_PLAYLIST = <char *>XMMS_ACTIVE_PLAYLIST
#####################################################################
cdef int show_deprecated = 0
from os import getenv
if getenv('XMMS_PYTHON_SHOW_DEPRECATED'):
show_deprecated = 1
del getenv
def deprecated(f):
def deprecated_decorator(*a, **kw):
if show_deprecated:
from sys import stderr
print >>stderr, "DEPRECATED: %s()" % f.__name__
return f(*a, **kw)
return deprecated_decorator
# Trick to not expose select in the module, but keep it accessible from builtins
# methods.
cdef object select
cdef _install_select():
global select
from select import select as _sel
select = _sel
_install_select()
cdef bint ResultNotifier(xmmsv_t *res, void *o):
cdef object xres
xres = <object> o
try:
return xres()
except:
import traceback, sys
exc = sys.exc_info()
traceback.print_exception(*exc)
return False
cdef void ResultDestroyNotifier(void *o):
cdef XmmsResult obj
obj = <XmmsResult>o
obj._cb = None
obj.result_tracker.release_result(obj)
cdef class XmmsSourcePreference:
"""
Source preference manager
"""
#cdef object sources
def __init__(self, sources=None):
self.set(sources)
def get(self):
return self.sources
def set(self, sources):
if sources is None:
self.sources = []
else:
self.sources = map(enforce_unicode, [s for s in sources])
cdef class XmmsResultTracker:
"""
Class used by XmmsCore to track results that set a notifier.
"""
#cdef object results
def __cinit__(self):
self.results = []
cdef track_result(self, XmmsResult r):
self.results.append(r)
cdef release_result(self, XmmsResult r):
self.results.remove(r)
cdef disconnect_all(self, bint unset_result):
cdef XmmsResult r
for r in self.results[:]: # Create a copy because r.disconnect() will remove the result from the list.
r.disconnect()
if unset_result: #This would become useless if results didn't xmmsc_ref() the connection.
xmmsc_result_unref(r.res)
r.res = NULL
cdef class XmmsResult:
"""
Class containing the results of some operation
"""
#cdef xmmsc_result_t *res
#cdef object _cb
#cdef bint _cb_issetup
#cdef object _exc
#cdef XmmsSourcePreference source_pref
#cdef int ispropdict
#cdef XmmsResultTracker result_tracker
def __cinit__(self):
self.res = NULL
self.ispropdict = 0
self._cb_issetup = False
def __dealloc__(self):
if self.res != NULL:
xmmsc_result_unref(self.res)
self.res = NULL
cdef set_sourcepref(self, XmmsSourcePreference sourcepref):
self.source_pref = sourcepref
cdef set_result(self, xmmsc_result_t *res):
self.res = res
cdef set_callback(self, XmmsResultTracker rt, cb):
"""
Set a callback function for a result
"""
if cb is not None and not hasattr(cb, '__call__'):
raise TypeError("Type '%s' is not callable"%cb.__class__.__name__)
self._cb = cb
if cb is not None and not self._cb_issetup:
self.result_tracker = rt
rt.track_result(self)
xmmsc_result_notifier_set_full(self.res, ResultNotifier, <void *> self, ResultDestroyNotifier)
self._cb_issetup = True
cpdef disconnect(self):
self._cb = None
if self._cb_issetup and self.res != NULL:
self._cb_issetup = False
#xmmsc_result_ref(self.res) # Needed ? oO
xmmsc_result_disconnect(self.res) #self.result_tracker.release_result() called in ResultDestroyNotifier()
property callback:
def __get__(self):
return self._cb
# XXX Kept for compatibility.
@deprecated
def _callback(self):
"""
@deprecated
Use __call__ instead.
"""
try:
ret = self()
except:
import traceback, sys
exc = sys.exc_info()
traceback.print_exception(exc[0], exc[1], exc[2])
return False
return ret
def __call__(self):
cb = self.callback
if cb is not None:
ret = cb(self.xmmsvalue())
return True if ret is None else ret
return False
cpdef wait(self):
"""
Wait for the result from the daemon.
"""
if self.res == NULL:
raise RuntimeError("Uninitialized result")
xmmsc_result_wait(self.res)
# XXX Never used.
if self._exc is not None:
raise self._exc[0], self._exc[1], self._exc[2]
cpdef is_error(self):
"""
@return: Whether the result represents an error or not.
@rtype: Boolean
"""
return self._value().is_error()
cpdef iserror(self):
return self.is_error()
cpdef xmmsvalue(self):
cdef XmmsValue obj
cdef xmmsv_t *value
if self.res == NULL:
raise RuntimeError("Uninitialized result")
value = xmmsc_result_get_value(self.res)
obj = XmmsValue(self.source_pref.get())
obj.set_value(value, self.ispropdict)
return obj
cpdef _value(self):
return self.xmmsvalue()
cpdef value(self):
return self.xmmsvalue().value()
cdef class XmmsVisResult(XmmsResult):
#cdef XmmsValue _val
#cdef VisResultCommand command
#cdef xmmsc_connection_t *conn
def __cinit__(self):
self.command = VIS_RESULT_CMD_NONE
self.conn = NULL
def __dealloc__(self):
if self.conn != NULL:
xmmsc_unref(self.conn)
self.conn = NULL
cdef set_command(self, VisResultCommand cmd, xmmsc_connection_t *conn):
self.command = cmd
if self.conn != NULL:
xmmsc_unref(self.conn)
self.conn = NULL
if conn != NULL:
self.conn = xmmsc_ref(conn)
cdef retrieve_error(self):
cdef xmmsv_t *errval
xval = XmmsResult.xmmsvalue(self)
if xval.is_error():
self._val = xval
else:
self._val = XmmsValue()
errval = xmmsv_new_error("Failed to initialize visualization")
self._val.set_value(errval)
xmmsv_unref(errval)
cdef _init_xmmsvalue(self):
if self._val is None:
if self.res == NULL:
raise RuntimeError("Uninitialized result")
hid = xmmsc_visualization_init_handle(self.res)
if hid == -1:
self.retrieve_error()
else:
self._val = XmmsValue(pyval=hid)
return self._val
cdef _start_xmmsvalue(self):
if self._val is None:
if self.res == NULL:
raise RuntimeError("Uninitialized result")
xval = XmmsResult.xmmsvalue(self)
if xval.is_error():
self._val = xval
elif self.conn == NULL:
raise RuntimeError("Internal connection reference not set")
else:
xmmsc_visualization_start_handle(self.conn, self.res)
self._val = XmmsValue(pyval=None)
return self._val
cpdef xmmsvalue(self):
if self.command == VIS_RESULT_CMD_INIT:
return self._init_xmmsvalue()
elif self.command == VIS_RESULT_CMD_START:
return self._start_xmmsvalue()
else:
# XXX Raise an exception ?
return XmmsResult.xmmsvalue(self)
cdef class XmmsVisChunk:
#cdef short *data
#cdef int sample_count
def __cinit__(self):
self.data = NULL
self.sample_count = 0
def __dealloc__(self):
if self.data != NULL:
PyMem_Free(self.data)
cdef set_data(self, short *data, int sample_count):
if self.data != NULL:
PyMem_Free(self.data)
self.sample_count = 0
self.data = <short *>PyMem_Malloc(sizeof (short) * sample_count)
if self.data == NULL:
raise RuntimeError("Failed to initialize chunk data")
for i in range(sample_count):
self.data[i] = data[i]
self.sample_count = sample_count
def __len__(self):
return self.sample_count
cpdef get_buffer(self):
"""
get_buffer() -> bytes (str in python 2.x)
Get the chunk buffer
@rtype: L{bytes}
@return chunk data as a string
"""
if self.data == NULL:
raise RuntimeError("chunk data not initialized")
return PyBytes_FromStringAndSize(<char *>self.data, sizeof (short) * self.sample_count)
cpdef get_data(self):
"""
get_data() -> list
Get chunk data as a list.
@rtype: L{list}
@return A list of int
"""
if self.data == NULL:
raise RuntimeError("chunk data not initialized")
return [<int>self.data[i] for i in range(self.sample_count)]
class VisualizationError(Exception):
pass
cdef void python_need_out_fun(int i, void *obj):
cdef object o
o = <object> obj
o._needout_cb(i)
cdef void python_disconnect_fun(void *obj):
cdef object o
o = <object> obj
o._disconnect_cb()
cpdef userconfdir_get():
"""
Get the user configuration directory, where XMMS2 stores its
user-specific configuration files. Clients may store their
configuration under the 'clients' subdirectory. This varies from
platform to platform so should always be retrieved at runtime.
"""
cdef char path[XMMS_PATH_MAX]
if xmmsc_userconfdir_get (path, XMMS_PATH_MAX) == NULL:
return None
return path
def enforce_unicode(object o):
if isinstance(o, unicode):
s = o
else:
try:
s = unicode(o, "UTF-8")
except:
s = o
return s
cdef object check_playlist(object pls, bint None_is_active):
if pls is None and not None_is_active:
raise TypeError("expected str, %s found" % pls.__class__.__name__)
return from_unicode(pls or ACTIVE_PLAYLIST)
cdef class XmmsCore:
"""
This is the class representing the XMMS2 client itself. The methods in
this class may be used to control and interact with XMMS2.
"""
#cdef xmmsc_connection_t *conn
#cdef int isconnected
#cdef object disconnect_fun
#cdef object needout_fun
#cdef readonly XmmsSourcePreference source_preference
#cdef XmmsResultTracker result_tracker
#cdef readonly object clientname
def __cinit__(self, *args, **kargs): #Trick to allow subclass with init arguments
"""
Initiates a connection to the XMMS2 daemon. All operations
involving the daemon are done via this connection.
"""
if 'clientname' in kargs:
clientname = kargs['clientname']
elif len(args):
clientname = args[0]
else:
clientname = None
if clientname is None:
clientname = "UnnamedPythonClient"
self.clientname = clientname
self.source_preference = XmmsSourcePreference(["client/"+clientname, "server", "plugins/*", "client/*", "*"])
self.result_tracker = XmmsResultTracker() # Keep track of all results that set a notifier.
self.new_connection()
def __dealloc__(self):
if self.conn != NULL:
xmmsc_unref(self.conn)
self.conn = NULL
def __del__(self):
self.disconnect()
cdef new_connection(self):
cn = from_unicode(self.clientname)
self.conn = xmmsc_init(<char *>cn)
if self.conn == NULL:
raise ValueError("Failed to initialize xmmsclient library! Probably due to broken name.")
cpdef get_source_preference(self):
return self.source_preference.get()
cpdef set_source_preference(self, sources):
self.source_preference.set(sources)
cpdef _needout_cb(self, int i):
if self.needout_fun is not None:
self.needout_fun(i)
cpdef _disconnect_cb(self):
if self.disconnect_fun is not None:
self.disconnect_fun(self)
cpdef disconnect(self):
# Disconnect all results.
self.result_tracker.disconnect_all(True)
if self.conn is not NULL:
xmmsc_unref(self.conn)
self.conn = NULL
self.new_connection()
cpdef ioin(self):
"""
ioin() -> bool
Read data from the daemon, when available.
Note: This is a low level function that should only be used in
certain circumstances. e.g. a custom event loop
"""
return xmmsc_io_in_handle(self.conn)
cpdef ioout(self):
"""
ioout() -> bool
Write data out to the daemon, when available. Note: This is a
low level function that should only be used in certain
circumstances. e.g. a custom event loop
"""
return xmmsc_io_out_handle(self.conn)
cpdef want_ioout(self):
"""
want_ioout() -> bool
"""
return xmmsc_io_want_out(self.conn)
cpdef set_need_out_fun(self, fun):
"""
set_need_out_fun(fun)
"""
self.needout_fun = fun
cpdef get_fd(self):
"""
get_fd() -> int
Get the underlying file descriptor used for communication with
the XMMS2 daemon. You can use this in a client to ensure that
the IPC link is still active and safe to use.(e.g by calling
select() or poll())
@rtype: int
@return: IPC file descriptor
"""
return xmmsc_io_fd_get(self.conn)
cpdef connect(self, path=None, disconnect_func=None):
"""
connect(path=None, disconnect_func=None)
Connect to the appropriate IPC path, for communication with the
XMMS2 daemon. This path defaults to /tmp/xmms-ipc-<username> if
not specified. Call this once you have instantiated the object:
C{import xmmsclient}
C{xmms = xmmsclient.XMMS()}
C{xmms.connect()}
...
You can provide a disconnect callback function to be activated
when the daemon disconnects.(e.g. daemon quit) This function
typically has to exit the main loop used by your application.
For example, if using L{loop}, your callback should call
L{exit_loop} at some point.
"""
if path:
p = from_unicode(path)
ret = xmmsc_connect(self.conn, <char *>p)
else:
ret = xmmsc_connect(self.conn, NULL)
if not ret:
raise IOError("Couldn't connect to the server")
self.isconnected = 1
self.disconnect_fun = disconnect_func
xmmsc_disconnect_callback_set_full(self.conn, python_disconnect_fun, <void *>self, NULL)
xmmsc_io_need_out_callback_set_full(self.conn, python_need_out_fun, <void *> self, NULL)
def is_connected(self):
return self.isconnected != 0
cdef XmmsResult _create_result(self, cb, xmmsc_result_t *res, Cls):
cdef XmmsResult ret
if res == NULL:
raise RuntimeError("xmmsc_result_t couldn't be allocated")
ret = Cls()
ret.set_sourcepref(self.source_preference)
ret.set_result(res)
if cb is not None:
ret.set_callback(self.result_tracker, cb) # property that setup all.
return ret
cdef XmmsResult create_result(self, cb, xmmsc_result_t *res):
return self._create_result(cb, res, XmmsResult)
cdef XmmsResult create_vis_result(self, cb, xmmsc_result_t *res, VisResultCommand cmd):
cdef XmmsVisResult vres = self._create_result(cb, res, XmmsVisResult)
vres.set_command(cmd, self.conn)
return vres
cdef class XmmsApi(XmmsCore):
cpdef XmmsResult quit(self, cb=None):
"""
quit(cb=None) -> XmmsResult
Tell the XMMS2 daemon to quit.
@rtype: L{XmmsResult}
@return: The result of the operation.
"""
return self.create_result(cb, xmmsc_quit(self.conn))
cpdef XmmsResult plugin_list(self, typ, cb = None):
"""
plugin_list(typ, cb=None) -> XmmsResult
Get a list of loaded plugins from the server
@rtype: L{XmmsResult}
@return: The result of the operation.
"""
return self.create_result(cb, xmmsc_main_list_plugins(self.conn, typ))
cpdef XmmsResult playback_start(self, cb = None):
"""
playback_start(cb=None) -> XmmsResult
Instruct the XMMS2 daemon to start playing the currently
selected file from the playlist.
@rtype: L{XmmsResult}
@return: The result of the operation.
"""
return self.create_result(cb, xmmsc_playback_start(self.conn))
cpdef XmmsResult playback_stop(self, cb = None):
"""
playback_stop(cb=None) -> XmmsResult
Instruct the XMMS2 daemon to stop playing the file
currently being played.
@rtype: L{XmmsResult}
@return: The result of the operation.
"""
return self.create_result(cb, xmmsc_playback_stop(self.conn))
cpdef XmmsResult playback_tickle(self, cb = None):
"""
playback_tickle(cb=None) -> XmmsResult
Instruct the XMMS2 daemon to move on to the next playlist item.
@rtype: L{XmmsResult}
@return: The result of the operation.
"""
return self.create_result(cb, xmmsc_playback_tickle(self.conn))
cpdef XmmsResult playback_pause(self, cb = None):
"""
playback_pause(cb=None) -> XmmsResult
Instruct the XMMS2 daemon to pause playback.
@rtype: L{XmmsResult}
@return: The result of the operation.
"""
return self.create_result(cb, xmmsc_playback_pause(self.conn))
cpdef XmmsResult playback_current_id(self, cb = None):
"""
playback_current_id(cb=None) -> XmmsResult
@rtype: L{XmmsResult}(UInt)
@return: The medialib id of the item currently selected.
"""
return self.create_result(cb, xmmsc_playback_current_id(self.conn))
cpdef XmmsResult playback_seek_ms(self, int ms, xmms_playback_seek_mode_t whence = PLAYBACK_SEEK_SET, cb = None):
"""
playback_seek_ms(ms, whence=PLAYBACK_SEEK_SET, cb=None) -> XmmsResult
Seek to a time position in the current file or stream in playback.
@rtype: L{XmmsResult}
@return: The result of the operation.
"""
if whence == PLAYBACK_SEEK_SET or whence == PLAYBACK_SEEK_CUR:
return self.create_result(cb, xmmsc_playback_seek_ms(self.conn, ms, whence))
else:
raise ValueError("Bad whence parameter")
@deprecated
def playback_seek_ms_rel(self, int ms, cb = None):
"""
@deprecated
playback_seek_ms_rel(ms, cb=None) -> XmmsResult
Seek to a time position by the given offset in the current file or
stream in playback.
@rtype: L{XmmsResult}
@return: The result of the operation.
"""
return self.playback_seek_ms(ms, PLAYBACK_SEEK_CUR, cb=cb)
cpdef XmmsResult playback_seek_samples(self, int samples, xmms_playback_seek_mode_t whence=PLAYBACK_SEEK_SET, cb = None):
"""
playback_seek_samples(samples, cb=None) -> XmmsResult
Seek to a number of samples in the current file or stream in playback.
@rtype: L{XmmsResult}
@return: The result of the operation.
"""
if whence == PLAYBACK_SEEK_SET or whence == PLAYBACK_SEEK_CUR:
return self.create_result(cb, xmmsc_playback_seek_samples(self.conn, samples, whence))
else:
raise ValueError("Bad whence parameter")
@deprecated
def playback_seek_samples_rel(self, int samples, cb = None):
"""
@deprecated
playback_seek_samples_rel(samples, cb=None) -> XmmsResult
Seek to a number of samples by the given offset in the
current file or stream in playback.
@rtype: L{XmmsResult}
@return: The result of the operation.
"""
return self.playback_seek_samples(samples, XMMS_PLAYBACK_SEEK_CUR, cb=cb)
cpdef XmmsResult playback_status(self, cb = None):
"""
playback_status(cb=None) -> XmmsResult
Get current playback status from XMMS2 daemon. This is
essentially the more direct version of
L{broadcast_playback_status}. Possible return values are:
L{PLAYBACK_STATUS_STOP}, L{PLAYBACK_STATUS_PLAY},
L{PLAYBACK_STATUS_PAUSE}
@rtype: L{XmmsResult}(UInt)
@return: Current playback status(UInt)
"""
return self.create_result(cb, xmmsc_playback_status(self.conn))
cpdef XmmsResult broadcast_playback_status(self, cb = None):
"""
broadcast_playback_status(cb=None) -> XmmsResult
Set a method to handle the playback status broadcast from the
XMMS2 daemon.
@rtype: L{XmmsResult}(UInt)
"""
return self.create_result(cb, xmmsc_broadcast_playback_status(self.conn))
cpdef XmmsResult broadcast_playback_current_id(self, cb = None):
"""
broadcast_playback_current_id(cb=None) -> XmmsResult
Set a method to handle the playback id broadcast from the
XMMS2 daemon.
@rtype: L{XmmsResult}(UInt)
"""
return self.create_result(cb, xmmsc_broadcast_playback_current_id(self.conn))
cpdef XmmsResult playback_playtime(self, cb = None):
"""
playback_playtime(cb=None) -> XmmsResult
Return playtime on current file/stream. This is essentially a
more direct version of L{signal_playback_playtime}
@rtype: L{XmmsResult}(UInt)
@return: The result of the operation.(playtime in milliseconds)
"""
return self.create_result(cb, xmmsc_playback_playtime(self.conn))
cpdef XmmsResult signal_playback_playtime(self, cb = None):
"""
signal_playback_playtime(cb=None) -> XmmsResult
Set a method to handle the playback playtime signal from the
XMMS2 daemon.
@rtype: L{XmmsResult}(UInt)
"""
return self.create_result(cb, xmmsc_signal_playback_playtime(self.conn))
cpdef XmmsResult playback_volume_set(self, channel, int volume, cb = None):
"""
playback_volume_set(channel, volume, cb=None) -> XmmsResult
Set the playback volume for specified channel
@rtype: L{XmmsResult}(UInt)
"""
c = from_unicode(channel)
return self.create_result(cb, xmmsc_playback_volume_set(self.conn, c, volume))
cpdef XmmsResult playback_volume_get(self, cb = None):
"""
playback_volume_get(cb=None) -> XmmsResult
Get the playback for all channels
@rtype: L{XmmsResult}(UInt)
"""
return self.create_result(cb, xmmsc_playback_volume_get(self.conn))
cpdef XmmsResult broadcast_playback_volume_changed(self, cb = None):
"""
broadcast_playback_volume_changed(cb=None) -> XmmsResult
Set a broadcast callback for volume updates
@rtype: L{XmmsResult}(UInt)
"""
return self.create_result(cb, xmmsc_broadcast_playback_volume_changed(self.conn))
cpdef XmmsResult broadcast_playlist_loaded(self, cb = None):
"""
broadcast_playlist_loaded(cb=None) -> XmmsResult
Set a broadcast callback for loaded playlist event
@rtype: L{XmmsResult}(UInt)
"""
return self.create_result(cb, xmmsc_broadcast_playlist_loaded(self.conn))
cpdef XmmsResult playlist_load(self, playlist, cb = None):
"""
playlist_load(playlist, cb=None) -> XmmsResult
Load the playlist as current playlist
@rtype: L{XmmsResult}
@return: The result of the operation.
"""
p = check_playlist(playlist, False)
return self.create_result(cb, xmmsc_playlist_load(self.conn, <char *>p))
cpdef XmmsResult playlist_list(self, cb = None):
"""
playlist_list(cb=None) -> XmmsResult
Lists the playlists
@rtype: L{XmmsResult}
@return: The result of the operation.
"""
return self.create_result(cb, xmmsc_playlist_list(self.conn))
cpdef XmmsResult playlist_remove(self, playlist, cb = None):
"""
playlist_remove(playlist, cb=None) -> XmmsResult
Remove the playlist from the server
@rtype: L{XmmsResult}
@return: The result of the operation.
"""
p = check_playlist(playlist, False)
return self.create_result(cb, xmmsc_playlist_remove(self.conn, <char *>p))
cpdef XmmsResult playlist_shuffle(self, playlist = None, cb = None):
"""
playlist_shuffle(playlist=None, cb=None) -> XmmsResult
Instruct the XMMS2 daemon to shuffle the playlist.
@rtype: L{XmmsResult}
@return: The result of the operation.
"""
p = check_playlist(playlist, True)
return self.create_result(cb, xmmsc_playlist_shuffle(self.conn, <char *>p))
cpdef XmmsResult playlist_rinsert(self, int pos, url, playlist = None, cb = None, encoded=False):
"""
playlist_rinsert(pos, url, playlist=None, cb=None, encoded=False) -> XmmsResult
Insert a directory in the playlist.
Requires an int 'pos' and a string 'url' as argument.
@rtype: L{XmmsResult}
@return: The result of the operation.
"""
cdef xmmsc_result_t *res
c = from_unicode(url)
p = check_playlist(playlist, True)
if encoded:
res = xmmsc_playlist_rinsert_encoded(self.conn, <char *>p, pos, <char *>c)
else:
res = xmmsc_playlist_rinsert(self.conn, <char *>p, pos, <char *>c)
return self.create_result(cb, res)
@deprecated
def playlist_rinsert_encoded(self, int pos, url, playlist = None, cb = None):
"""
@deprecated
Use playlist_rinsert(pos, url, ..., encoded=True) instead
"""
return self.playlist_rinsert(pos, url, playlist, cb=cb, encoded=True)
cpdef XmmsResult playlist_insert_url(self, int pos, url, playlist = None, cb = None, encoded = False):
"""
playlist_insert_url(pos, url, playlist=None, cb=None, encoded=False) -> XmmsResult
Insert a path or URL to a playable media item to the playlist.
Playable media items may be files or streams.
Requires an int 'pos' and a string 'url' as argument.
@rtype: L{XmmsResult}
@return: The result of the operation.
"""
cdef xmmsc_result_t *res
c = from_unicode(url)
p = check_playlist(playlist, True)
if encoded:
res = xmmsc_playlist_insert_encoded(self.conn, <char *>p, pos, <char *>c)
else:
res = xmmsc_playlist_insert_url(self.conn, <char *>p, pos, <char *>c)
return self.create_result(cb, res)
@deprecated
def playlist_insert_encoded(self, int pos, url, playlist = None, cb = None):
"""
@deprecated
Use playlist_insert_url(pos, url, ..., encoded=True) instead
"""
return self.playlist_insert_url(pos, url, playlist, cb=cb, encoded=True)
cpdef XmmsResult playlist_insert_id(self, int pos, int id, playlist = None, cb = None):
"""
playlist_insert_id(pos, id, playlist=None, cb=None) -> XmmsResult
Insert a medialib to the playlist.
Requires an int 'pos' and an int 'id' as argument.
@rtype: L{XmmsResult}
@return: The result of the operation.
"""
p = check_playlist(playlist, True)
return self.create_result(cb, xmmsc_playlist_insert_id(self.conn, <char *>p, pos, id))
cpdef XmmsResult playlist_insert_collection(self, int pos, Collection coll, order = None, playlist = None, cb = None):
"""
playlist_insert_collection(pos, coll, order=None, playlist=None, cb=None) -> XmmsResult
Insert the content of a collection to the playlist.
Requires an int 'pos' and an int 'id' as argument.
@rtype: L{XmmsResult}
@return: The result of the operation.
"""
cdef xmmsv_t *order_val
cdef xmmsc_result_t *res
if order is None:
order = []
p = check_playlist(playlist, True)
order_val = create_native_value(order)
res = xmmsc_playlist_insert_collection(self.conn, <char *>p, pos, coll.coll, order_val)
xmmsv_unref(order_val)
return self.create_result(cb, res)
cpdef XmmsResult playlist_radd(self, url, playlist = None, cb = None, encoded=False):
"""
playlist_radd(url, playlist=None, cb=None, encoded=False) -> XmmsResult
Add a directory to the playlist.
Requires a string 'url' as argument.
@rtype: L{XmmsResult}
@return: The result of the operation.
"""
cdef xmmsc_result_t *res
c = from_unicode(url)
p = check_playlist(playlist, True)
if encoded:
res = xmmsc_playlist_radd_encoded(self.conn, <char *>p, <char *>c)
else:
res = xmmsc_playlist_radd(self.conn, <char *>p, <char *>c)
return self.create_result(cb, res)
@deprecated
def playlist_radd_encoded(self, url, playlist = None, cb = None):
"""
@deprecated
Use playlist_radd(url, ..., encoded=True) instead
"""
return self.playlist_radd(url, playlist, cb = cb, encoded=True)
cpdef XmmsResult playlist_add_url(self, url, playlist = None, cb = None, encoded=False):
"""
playlist_add_url(url, playlist=None, cb=None, encoded=False) -> XmmsResult
Add a path or URL to a playable media item to the playlist.
Playable media items may be files or streams.
Requires a string 'url' as argument.
@rtype: L{XmmsResult}
@return: The result of the operation.
"""
cdef xmmsc_result_t *res
c = from_unicode(url)
p = check_playlist(playlist, True)
if encoded:
res = xmmsc_playlist_add_encoded(self.conn, <char *>p, <char *>c)
else:
res = xmmsc_playlist_add_url(self.conn, <char *>p, <char *>c)
return self.create_result(cb, res)
@deprecated
def playlist_add_encoded(self, url, playlist = None, cb = None):
"""
@deprecated
Use playlist_add_url(url, ..., encoded=True) instead
"""
return self.playlist_add_url(url, playlist, cb=cb, encoded=True)
cpdef XmmsResult playlist_add_id(self, int id, playlist = None, cb = None):
"""
playlist_add_id(id, playlist=None, cb=None) -> XmmsResult
Add a medialib id to the playlist.
@rtype: L{XmmsResult}
@return: The result of the operation.
"""
p = check_playlist(playlist, True)
return self.create_result(cb, xmmsc_playlist_add_id(self.conn, <char *>p, id))
cpdef XmmsResult playlist_add_collection(self, Collection coll, order = None, playlist = None, cb = None):
"""
playlist_add_collection(coll, order, playlist=None, cb=None) -> XmmsResult
Add the content of a collection to the playlist.
@rtype: L{XmmsResult}
@return: The result of the operation.
"""
cdef xmmsv_t *order_val
cdef xmmsc_result_t *res
p = check_playlist(playlist, True)
if order is None:
order = []
order_val = create_native_value(order)
res = xmmsc_playlist_add_collection(self.conn, <char *>p, coll.coll, order_val)
xmmsv_unref(order_val)
return self.create_result(cb, res)
cpdef XmmsResult playlist_remove_entry(self, int id, playlist = None, cb = None):
"""
playlist_remove_entry(id, playlist=None, cb=None) -> XmmsResult
Remove a certain media item from the playlist.
Requires a number 'id' as argument.
@rtype: L{XmmsResult}
@return: The result of the operation.
"""
p = check_playlist(playlist, True)
return self.create_result(cb, xmmsc_playlist_remove_entry(self.conn, <char *>p, id))
cpdef XmmsResult playlist_clear(self, playlist = None, cb = None):
"""
playlist_clear(playlist=None, cb=None) -> XmmsResult
Clear the playlist.
@rtype: L{XmmsResult}
@return: The result of the operation.
"""
p = check_playlist(playlist, True)
return self.create_result(cb, xmmsc_playlist_clear(self.conn, <char *>p))
cpdef XmmsResult playlist_list_entries(self, playlist = None, cb = None):
"""
playlist_list_entries(playlist=None, cb=None) -> XmmsResult
Get the current playlist. This function returns a list of IDs
of the files/streams currently in the playlist. Use
L{medialib_get_info} to retrieve more specific information.
@rtype: L{XmmsResult}(UIntList)
@return: The current playlist.
"""
p = check_playlist(playlist, True)
return self.create_result(cb, xmmsc_playlist_list_entries(self.conn, <char *>p))
cpdef XmmsResult playlist_sort(self, props, playlist = None, cb = None):
"""
playlist_sort(props, playlist=None, cb=None) -> XmmsResult
Sorts the playlist according to the properties specified.
@rtype: L{XmmsResult}
@return: The result of the operation.
"""
cdef xmmsv_t *props_val
cdef xmmsc_result_t *res
p = check_playlist(playlist, True)
props_val = create_native_value(props)
res = xmmsc_playlist_sort(self.conn, <char *>p, props_val)
xmmsv_unref(props_val)
return self.create_result(cb, res)
cpdef XmmsResult playlist_set_next_rel(self, int position, cb = None):
"""
playlist_set_next_rel(position, cb=None) -> XmmsResult
Sets the position in the playlist. Same as L{playlist_set_next}
but sets the next position relative to the current position.
You can do set_next_rel(-1) to move backwards for example.
@rtype: L{XmmsResult}
"""
return self.create_result(cb, xmmsc_playlist_set_next_rel(self.conn, position))
cpdef XmmsResult playlist_set_next(self, int position, cb = None):
"""
playlist_set_next(position, cb=None) -> XmmsResult
Sets the position to move to, next, in the playlist. Calling
L{playback_tickle} will perform the jump to that position.
@rtype: L{XmmsResult}
"""
return self.create_result(cb, xmmsc_playlist_set_next(self.conn, position))
cpdef XmmsResult playlist_move(self, int cur_pos, int new_pos, playlist = None, cb = None):
"""
playlist_move(cur_pos, new_pos, playlist=None, cb=None) -> XmmsResult
Moves a playlist entry to a new position.
@rtype: L{XmmsResult}
@return: The result of the operation.
"""
p = check_playlist(playlist, True)
return self.create_result(cb, xmmsc_playlist_move_entry(self.conn, <char *>p, cur_pos, new_pos))
cpdef XmmsResult playlist_create(self, playlist, cb = None):
"""
playlist_create(playlist, cb=None) -> XmmsResult
Create a new playlist.
@rtype: L{XmmsResult}
@return: The result of the operation.
"""
p = check_playlist(playlist, False)
return self.create_result(cb, xmmsc_playlist_create(self.conn, <char *>p))
cpdef XmmsResult playlist_current_pos(self, playlist = None, cb = None):
"""
playlist_current_pos(playlist=None, cb=None) -> XmmsResult
Returns the current position in the playlist. This value will
always be equal to, or larger than 0. The first entry in the
list is 0.
@rtype: L{XmmsResult}
"""
p = check_playlist(playlist, True)
return self.create_result(cb, xmmsc_playlist_current_pos(self.conn, <char *>p))
cpdef XmmsResult playlist_current_active(self, cb = None):
"""
playlist_current_active(cb=None) -> XmmsResult
Returns the name of the current active playlist
@rtype: L{XmmsResult}
"""
return self.create_result(cb, xmmsc_playlist_current_active(self.conn))
cpdef XmmsResult broadcast_playlist_current_pos(self, cb = None):
"""
broadcast_playlist_current_pos(cb=None) -> XmmsResult
Set a method to handle the playlist current position updates
from the XMMS2 daemon. This is triggered whenever the daemon
jumps from one playlist position to another. (not when moving
a playlist item from one position to another)
@rtype: L{XmmsResult}
"""
return self.create_result(cb, xmmsc_broadcast_playlist_current_pos(self.conn))
cpdef XmmsResult broadcast_playlist_changed(self, cb = None):
"""
broadcast_playlist_changed(cb=None) -> XmmsResult
Set a method to handle the playlist changed broadcast from the
XMMS2 daemon. Updated data is sent whenever the daemon's
playlist changes.
@rtype: L{XmmsResult}
"""
return self.create_result(cb, xmmsc_broadcast_playlist_changed(self.conn))
cpdef XmmsResult broadcast_config_value_changed(self, cb = None):
"""
broadcast_config_value_changed(cb=None) -> XmmsResult
Set a method to handle the config value changed broadcast
from the XMMS2 daemon.(i.e. some configuration value has
been modified) Updated data is sent whenever a config
value is modified.
@rtype: L{XmmsResult} (the modified config key and its value)
"""
return self.create_result(cb, xmmsc_broadcast_config_value_changed(self.conn))
@deprecated
def broadcast_configval_changed(self, cb = None):
"""
@deprecated
Use broadcast_config_value_changed(...) instead
"""
return self.broadcast_config_value_changed(cb)
cpdef XmmsResult config_set_value(self, key, val, cb = None):
"""
config_set_value(key, val, cb=None) -> XmmsResult
Set a configuration value on the daemon, given a key.
@rtype: L{XmmsResult}
@return: The result of the operation.
"""
k = from_unicode(key)
v = from_unicode(val)
return self.create_result(cb, xmmsc_config_set_value(self.conn, <char *>k, <char *>v))
@deprecated
def configval_set(self, key, val, cb = None):
"""
@deprecated
Use config_set_value(key, val, ...) instead
"""
return self.config_set_value(key, val, cb)
cpdef XmmsResult config_get_value(self, key, cb = None):
"""
config_get_value(key, cb=None) -> XmmsResult
Get the configuration value of a given key, from the daemon.
@rtype: L{XmmsResult}(String)
@return: The result of the operation.
"""
k = from_unicode(key)
return self.create_result(cb, xmmsc_config_get_value(self.conn, <char *>k))
@deprecated
def configval_get(self, key, cb = None):
"""
@deprecated
Use config_get_value(key, ...) instead
"""
return self.config_get_value(key, cb)
cpdef XmmsResult config_list_values(self, cb = None):
"""
config_list_values(cb=None) -> XmmsResult
Get list of configuration keys on the daemon. Use
L{config_get_value} to retrieve the values corresponding to the
configuration keys.
@rtype: L{XmmsResult}(StringList)
@return: The result of the operation.
"""
return self.create_result(cb, xmmsc_config_list_values(self.conn))
@deprecated
def configval_list(self, cb = None):
"""
@deprecated
Use config_list_values(...) instead
"""
return self.config_list_values(cb)
cpdef XmmsResult config_register_value(self, valuename, defaultvalue, cb = None):
"""
config_register_value(valuename, defaultvalue, cb=None) -> XmmsResult
Register a new configvalue.
This should be called in the initcode as XMMS2 won't allow
set/get on values that haven't been registered.
@rtype: L{XmmsResult}
@return: The result of the operation.
"""
v = from_unicode(valuename)
dv = from_unicode(defaultvalue)
return self.create_result(cb, xmmsc_config_register_value(self.conn, <char *>v, <char *>dv))
@deprecated
def configval_register(self, valuename, defaultvalue, cb = None):
"""
@deprecated
Use config_register_value(valuename, defaultvalue, ...) instead
"""
return self.config_register_value(valuename, defaultvalue, cb)
cpdef XmmsResult medialib_add_entry(self, path, cb = None, encoded=False):
"""
medialib_add_entry(file, cb=None, encoded=False) -> XmmsResult
Add an entry to the MediaLib.
@rtype: L{XmmsResult}
@return: The result of the operation.
"""
cdef xmmsc_result_t *res
p = from_unicode(path)
if encoded:
res = xmmsc_medialib_add_entry_encoded(self.conn, <char *>p)
else:
res = xmmsc_medialib_add_entry(self.conn, <char *>p)
return self.create_result(cb, res)
@deprecated
def medialib_add_entry_encoded(self, path, cb = None):
"""
@deprecated
Use medialib_add_entry(file, ..., encoded=True) instead
"""
return self.medialib_add_entry(path, cb=cb, encoded=True)
cpdef XmmsResult medialib_remove_entry(self, int id, cb=None):
"""
medialib_remove_entry(id, cb=None) -> XmmsResult
Remove an entry from the medialib.
@rtype: L{XmmsResult}
@return: The result of the operation.
"""
return self.create_result(cb, xmmsc_medialib_remove_entry(self.conn, id))
cpdef XmmsResult medialib_move_entry(self, int id, url, cb = None, encoded = False):
"""
medialib_move_entry(id, url, cb=None, encoded=False) -> XmmsResult
Set a new url for an entry in the medialib.
@rtype: L{XmmsResult}
@return The result of the operation.
"""
if encoded:
try:
from urllib import unquote_plus
except ImportError: #Py3k
from urllib.parse import unquote_plus
url = unquote_plus(url)
u = from_unicode(url)
return self.create_result(cb, xmmsc_medialib_move_entry(self.conn, id, <char *>u))
cpdef XmmsResult medialib_get_info(self, int id, cb = None):
"""
medialib_get_info(id, cb=None) -> XmmsResult
@rtype: L{XmmsResult}(HashTable)
@return: Information about the medialib entry position
specified.
"""
cdef XmmsResult res
res = self.create_result(cb, xmmsc_medialib_get_info(self.conn, id))
res.ispropdict = 1
return res
cpdef XmmsResult medialib_rehash(self, int id = 0, cb = None):
"""
medialib_rehash(id=0, cb=None) -> XmmsResult
Force the medialib to check that metadata stored is up to
date.
@rtype: L{XmmsResult}
@return: The result of the operation.
"""
return self.create_result(cb, xmmsc_medialib_rehash(self.conn, id))
cpdef XmmsResult medialib_get_id(self, url, cb = None, encoded=False):
"""
medialib_get_id(url, cb=None, encoded=False) -> XmmsResult
Search for an entry (URL) in the medialib and return its ID
number.
@rtype: L{XmmsResult}
@return: The result of the operation.
"""
cdef xmmsc_result_t *res
u = from_unicode(url)
if encoded:
res = xmmsc_medialib_get_id_encoded(self.conn, <char *>u)
else:
res = xmmsc_medialib_get_id(self.conn, <char *>u)
return self.create_result(cb, res)
cpdef XmmsResult medialib_import_path(self, path, cb = None, encoded=False):
"""
medialib_import_path(path, cb=None, encoded=False) -> XmmsResult
Import metadata from all files recursively from the directory
passed as argument.
@rtype: L{XmmsResult}
@return: The result of the operation.
"""
cdef xmmsc_result_t *res
p = from_unicode(path)
if encoded:
res = xmmsc_medialib_import_path_encoded(self.conn, <char *>p)
else:
res = xmmsc_medialib_import_path(self.conn, <char *>p)
return self.create_result(cb, res)
@deprecated
def medialib_path_import(self, path, cb = None, encoded=False):
"""
@deprecated
Use medialib_import_path(path, ...) instead
"""
return self.medialib_import_path(path, cb=cb, encoded=encoded)
@deprecated
def medialib_path_import_encoded(self, path, cb = None):
"""
@deprecated
Use medialib_import_path(path, ..., encoded=True) instead
"""
return self.medialib_import_path(path, cb=cb, encoded=True)
cpdef XmmsResult medialib_property_set(self, int id, key, value, source=None, cb=None):
"""
medialib_property_set(id, key, value, source=None, cb=None) -> XmmsResult
Associate a value with a medialib entry. Source is optional.
@rtype: L{XmmsResult}
@return: The result of the operation.
"""
cdef xmmsc_result_t *res
k = from_unicode(key)
if isinstance(value, int):
if source:
s = from_unicode(source)
res = xmmsc_medialib_entry_property_set_int_with_source(self.conn, id, <char *>s, <char *>k, value)
else:
res = xmmsc_medialib_entry_property_set_int(self.conn, id, <char *>k, value)
else:
v = from_unicode(value)
if source:
s = from_unicode(source)
res = xmmsc_medialib_entry_property_set_str_with_source(self.conn, id, <char *>s, <char *>k, <char *>v)
else:
res = xmmsc_medialib_entry_property_set_str(self.conn, id, <char *>k, <char *>v)
return self.create_result(cb, res)
cpdef XmmsResult medialib_property_remove(self, int id, key, source=None, cb=None):
"""
medialib_property_remove(id, key, source=None, cb=None) -> XmmsResult
Remove a value from a medialib entry. Source is optional.
@rtype: L{XmmsResult}
@return: The result of the operation.
"""
cdef xmmsc_result_t *res
k = from_unicode(key)
if source:
s = from_unicode(source)
res = xmmsc_medialib_entry_property_remove_with_source(self.conn, id, <char *>s, <char *>k)
else:
res = xmmsc_medialib_entry_property_remove(self.conn, id, <char *>k)
return self.create_result(cb, res)
cpdef XmmsResult broadcast_medialib_entry_added(self, cb = None):
"""
broadcast_medialib_entry_added(cb=None) -> XmmsResult
Set a method to handle the medialib entry added broadcast
from the XMMS2 daemon. (i.e. a new entry has been added)
@rtype: L{XmmsResult}
"""
return self.create_result(cb, xmmsc_broadcast_medialib_entry_added(self.conn))
cpdef XmmsResult broadcast_medialib_entry_changed(self, cb = None):
"""
broadcast_medialib_entry_changed(cb=None) -> XmmsResult
Set a method to handle the medialib entry changed broadcast
from the XMMS2 daemon.
Updated data is sent when the metadata for a song is updated
in the medialib.
@rtype: L{XmmsResult}
"""
return self.create_result(cb, xmmsc_broadcast_medialib_entry_changed(self.conn))
cpdef XmmsResult broadcast_collection_changed(self, cb = None):
"""
broadcast_collection_changed(cb=None) -> XmmsResult
Set a method to handle the collection changed broadcast
from the XMMS2 daemon.
@rtype: L{XmmsResult}
"""
return self.create_result(cb, xmmsc_broadcast_collection_changed(self.conn))
cpdef XmmsResult signal_mediainfo_reader_unindexed(self, cb = None):
"""
signal_mediainfo_reader_unindexed(cb=None) -> XmmsResult
Tell daemon to send you the number of unindexed files in the mlib
@rtype: L{XmmsResult}
@return: The result of the operation.
"""
return self.create_result(cb, xmmsc_signal_mediainfo_reader_unindexed(self.conn))
cpdef XmmsResult broadcast_mediainfo_reader_status(self, cb = None):
"""
broadcast_mediainfo_reader_status(cb=None) -> XmmsResult
Tell daemon to send you the status of the mediainfo reader
@rtype: L{XmmsResult}
@return: The result of the operation.
"""
return self.create_result(cb, xmmsc_broadcast_mediainfo_reader_status(self.conn))
cpdef XmmsResult xform_media_browse(self, url, cb=None, encoded=False):
"""
xform_media_browse(url, cb=None, encoded=False) -> XmmsResult
Browse files from xform plugins.
@rtype: L{XmmsResult}
@return: The result of the operation.
"""
cdef xmmsc_result_t *res
u = from_unicode(url)
if encoded:
res = xmmsc_xform_media_browse_encoded(self.conn, <char *>u)
else:
res = xmmsc_xform_media_browse(self.conn, <char *>u)
return self.create_result(cb, res)
@deprecated
def xform_media_browse_encoded(self, url, cb=None):
"""
@deprecated
Use xform_media_browse(url, ..., encoded=True) instead
"""
return self.xform_media_browse(url, cb=cb, encoded=True)
cpdef XmmsResult coll_get(self, name, ns="Collections", cb=None):
"""
coll_get(name, ns="Collections", cb=None) -> XmmsResult
Retrieve a Collection
@rtype: L{XmmsResult}
@return: The result of the operation.
"""
cdef char *n
n = check_namespace(ns, False)
nam = from_unicode(name)
return self.create_result(cb, xmmsc_coll_get(self.conn, nam, n))
cpdef XmmsResult coll_list(self, ns="Collections", cb=None):
"""
coll_list(name, ns="Collections", cb=None) -> XmmsResult
List collections
@rtype: L{XmmsResult}
@return: The result of the operation.
"""
cdef char *n
n = check_namespace(ns, False)
return self.create_result(cb, xmmsc_coll_list(self.conn, n))
cpdef XmmsResult coll_save(self, Collection coll, name, ns="Collections", cb=None):
"""
coll_save(coll, name, ns="Collections", cb=None) -> XmmsResult
Save a collection on server.
@rtype: L{XmmsResult}
@return: The result of the operation.
"""
cdef char *n
n = check_namespace(ns, False)
nam = from_unicode(name)
return self.create_result(cb, xmmsc_coll_save(self.conn, coll.coll, <char *>nam, n))
cpdef XmmsResult coll_remove(self, name, ns="Collections", cb=None):
"""
coll_remove(name, ns="Collections", cb=None) -> XmmsResult
Remove a collection on server.
@rtype: L{XmmsResult}
@return: The result of the operation.
"""
cdef char *n
n = check_namespace(ns, False)
nam = from_unicode(name)
return self.create_result(cb, xmmsc_coll_remove(self.conn, <char *>nam, n))
cpdef XmmsResult coll_rename(self, oldname, newname, ns="Collections", cb=None):
"""
coll_rename(oldname, newname, ns="Collections", cb=None) -> XmmsResult
Rename a collection.
@rtype: L{XmmsResult}
@return: The result of the operation.
"""
cdef char *n
n = check_namespace(ns, False)
oldnam = from_unicode(oldname)
newnam = from_unicode(newname)
return self.create_result(cb, xmmsc_coll_rename(self.conn, <char *>oldnam, <char *>newnam, n))
cpdef XmmsResult coll_idlist_from_playlist_file(self, path, cb=None):
"""
coll_idlist_from_playlist_file(path, cb=None) -> XmmsResult
Create an idlist from a playlist.
@rtype: L{XmmsResult}
@return: The result of the operation.
"""
p = from_unicode(path)
return self.create_result(cb, xmmsc_coll_idlist_from_playlist_file(self.conn, <char *>p))
cpdef XmmsResult coll_query_ids(self, Collection coll, start=0, leng=0, order=None, cb=None):
"""
coll_query_ids(coll, start=0, leng=0, order=None, cb=None) -> XmmsResult
Retrive a list of ids of the media matching the collection
@rtype: L{XmmsResult}
@return: The result of the operation.
"""
cdef xmmsv_t *order_val
cdef xmmsc_result_t *res
if order is None:
order = []
order_val = create_native_value(order)
res = xmmsc_coll_query_ids(self.conn, coll.coll, order_val, start, leng)
xmmsv_unref(order_val)
return self.create_result(cb, res)
cpdef XmmsResult coll_query_infos(self, Collection coll, fields, start=0, leng=0, order=None, groupby=None, cb=None):
"""
coll_query_infos(coll, fields, start=0, leng=0, order=None, groupby=None, cb=None) -> XmmsResult
Retrive a list of mediainfo of the media matching the collection
@rtype: L{XmmsResult}
@return: The result of the operation.
"""
cdef xmmsv_t *order_val
cdef xmmsv_t *fields_val
cdef xmmsv_t *groupby_val
cdef xmmsc_result_t *res
if order is None:
order = []
if groupby is None:
groupby = []
order_val = create_native_value(order)
fields_val = create_native_value(fields)
groupby_val = create_native_value(groupby)
res = xmmsc_coll_query_infos(self.conn, coll.coll, order_val, start, leng, fields_val, groupby_val)
xmmsv_unref(order_val)
xmmsv_unref(fields_val)
xmmsv_unref(groupby_val)
return self.create_result(cb, res)
cpdef XmmsResult bindata_add(self, data, cb=None):
"""
bindata_add(data, cb=None) -> XmmsResult
Add a datafile to the server
@rtype: L{XmmsResult}
@return: The result of the operation.
"""
cdef char *t
t = <char *>data
return self.create_result(cb, xmmsc_bindata_add(self.conn,<unsigned char *>t,len(data)))
cpdef XmmsResult bindata_retrieve(self, hash, cb=None):
"""
bindata_retrieve(hash, cb=None) -> XmmsResult
Retrieve a datafile from the server
@rtype: L{XmmsResult}
@return: The result of the operation.
"""
h = from_unicode(hash)
return self.create_result(cb, xmmsc_bindata_retrieve(self.conn, <char *>h))
cpdef XmmsResult bindata_remove(self, hash, cb=None):
"""
bindata_remove(hash, cb=None) -> XmmsResult
Remove a datafile from the server
@rtype: L{XmmsResult}
@return: The result of the operation.
"""
h = from_unicode(hash)
return self.create_result(cb, xmmsc_bindata_remove(self.conn, <char *>h))
cpdef XmmsResult bindata_list(self, cb=None):
"""
bindata_list(cb=None) -> XmmsResult
List all bindata hashes stored on the server
@rtype: L{XmmsResult}
@return: The result of the operation.
"""
return self.create_result(cb, xmmsc_bindata_list(self.conn))
cpdef XmmsResult stats(self, cb=None):
"""
stats(cb=None) -> XmmsResult
Get statistics information from the server
@rtype: L{XmmsResult}
@return: The result of the operation.
"""
return self.create_result(cb, xmmsc_main_stats(self.conn))
cpdef XmmsResult visualization_version(self, cb=None):
"""
xmmsc_visualization_version(cb=None) -> XmmsResult
Get the version of the visualization plugin installed on the server.
@rtype: L{XmmsResult}
@return: The result of the operation.
"""
return self.create_result(cb, xmmsc_visualization_version(self.conn))
cpdef XmmsResult visualization_init(self, cb=None):
"""
xmmsc_visualization_init(cb=None) -> XmmsResult
Get a new visualization handle.
@rtype: L{XmmsResult}
@return: The result of the operation
"""
return self.create_vis_result(cb, xmmsc_visualization_init(self.conn), VIS_RESULT_CMD_INIT)
cpdef XmmsResult visualization_start(self, int handle, cb=None):
"""
xmmsc_visualization_start(handle, cb=None) -> XmmsResult
Starts the visualization.
@rtype: L{XmmsResult}
@return: The result of the operation
"""
return self.create_vis_result(cb, xmmsc_visualization_start(self.conn, handle), VIS_RESULT_CMD_START)
cpdef bint visualization_started(self, int handle):
"""
xmmsc_visualization_started(handle) -> bool
Whether the visualization is started or not.
@rtype: L{bool}
@return: True if the visualization is started, False otherwise.
"""
return xmmsc_visualization_started(self.conn, handle)
cpdef bint visualization_errored(self, int handle):
"""
xmmsc_visualization_errored(handle) -> bool
Whether the visualization got an error.
@rtype: L{bool}
@return: True if the visualization got an error, False otherwise.
"""
return xmmsc_visualization_errored(self.conn, handle)
cpdef XmmsResult visualization_property_set(self, int handle, key, value, cb=None):
"""
xmmsc_visualization_property_set(handle, key, value, cb=None) -> XmmsResult
Set a visualization's property.
@rtype: L{bool}
@return: The result of the operation
"""
k = from_unicode(key)
v = from_unicode(value)
return self.create_result(cb, xmmsc_visualization_property_set(self.conn, handle, <char *>k, <char *>v))
cpdef XmmsResult visualization_properties_set(self, int handle, props={}, cb=None):
"""
xmmsc_visualization_properties_set(handle, props={}, cb=None) -> XmmsResult
Set visualization's properties.
@rtype: L{bool}
@return: The result of the operation
"""
cdef xmmsv_t *_props
cdef xmmsc_result_t *res
_props = create_native_value(props)
res = xmmsc_visualization_properties_set(self.conn, handle, _props)
xmmsv_unref(_props)
return self.create_result(cb, res)
cpdef XmmsVisChunk visualization_chunk_get(self, int handle, int drawtime=0, bint blocking=False):
"""
xmmsv_visualization_chunk_get(handle, drawtime=0, blocking=False)
Fetches the next available data chunk
@rtype: L{XmmsVisChunk}
@return: Visualization chunk.
"""
cdef short *buf
cdef int size
cdef XmmsVisChunk chunk
buf = <short *>PyMem_Malloc(2 * XMMSC_VISUALIZATION_WINDOW_SIZE * sizeof (short))
size = xmmsc_visualization_chunk_get (self.conn, handle, buf, drawtime, blocking)
if size < 0:
PyMem_Free(buf)
raise VisualizationError("Unrecoverable error in visualization")
chunk = XmmsVisChunk()
chunk.set_data(buf, size)
PyMem_Free(buf)
return chunk
cpdef visualization_shutdown(self, int handle):
"""
xmmsc_visualization_shutdown(handle) -> None
Shutdown and destroy a visualization. After this, handle is no longer valid.
"""
xmmsc_visualization_shutdown(self.conn, handle)
class XmmsDisconnectException(Exception):
pass
from os import write
cdef class XmmsLoop(XmmsApi):
#cdef bint do_loop
#cdef object wakeup
def __cinit__(self):
self.do_loop = 0
def _loop_set_wakeup(self, fd):
"""
Set the file descriptor for wakeup operations.
This method should not be used outside the XmmsLoop class implementation.
It is provided to allow subclasses to add some locking on it in
multithreaded applications.
Use a Rlock if you want to synchronize other methods using the same lock.
"""
self.wakeup = fd
def _loop_get_wakeup(self):
"""
Get the file descriptor for wakeup operations.
This method should not be used outside the XmmsLoop class implementation.
It is provided to allow subclasses to add some locking on it in
multithreaded applications.
Use a Rlock if you want to synchronize other methods using the same lock.
"""
return self.wakeup
def exit_loop(self):
"""
exit_loop()
Exits from the L{loop} call
"""
self.do_loop = False
self.loop_tickle()
def loop_tickle(self):
w = self._loop_get_wakeup()
if w is not None:
write(w, "1".encode('ascii'))
def loop_iter(self, infd=None, outfd=None, errfd=None, timeout=-1):
"""
loop_iter(infd=None, outfd=None, errfd=None, timeout=-1)
Run one iteration of the main loop. Should be overridden to add
custom operations in the main loop.
@return The tuple returned by select.select() to be used by overridding
methods in subclasses.
"""
cdef int fd
fd = xmmsc_io_fd_get(self.conn)
if self.want_ioout():
w = [fd]
else:
w = []
r = [fd]
err = [fd]
if infd:
r += infd
if outfd:
w += outfd
if errfd:
err += errfd
if timeout < 0:
(i, o, e) = select(r, w, err)
else:
(i, o, e) = select(r, w, err, timeout)
if e and fd in e:
xmmsc_io_disconnect(self.conn)
raise XmmsDisconnectException()
if i and fd in i:
if not xmmsc_io_in_handle(self.conn):
raise XmmsDisconnectException()
if o and fd in o:
if not xmmsc_io_out_handle(self.conn):
raise XmmsDisconnectException()
return (i, o, e) #Can be used by overridding methods for extra handling.
def loop(self):
"""
loop()
Main client loop for most python clients. Call this to run the
client once everything has been set up. This function blocks
until L{exit_loop} is called. One can override L {loop_iter} to
perform extra processing.
"""
from os import pipe, read
(r, w) = pipe()
self.do_loop = True
self._loop_set_wakeup(w)
while self.do_loop:
try:
(i, o, e) = self.loop_iter(infd=[r])
if r in i:
read(r, 1) # Purge wakeup stream (each wakeup signal should not write more than one byte)
except XmmsDisconnectException:
self.do_loop = False
self._loop_set_wakeup(None)
# Compatibility
XMMS = XmmsLoop
XMMSResult = XmmsResult
|