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 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254
|
;;; emms-browser.el --- a track browser supporting covers and filtering
;; Copyright (C) 2006, 2007, 2008, 2009 Free Software Foundation, Inc.
;; Author: Damien Elmes <emacs@repose.cx>
;; Keywords: emms, mp3, mpeg, multimedia
;; This file is part of EMMS.
;; EMMS is free software; you can redistribute it and/or modify
;; it under the terms of the GNU General Public License as published by
;; the Free Software Foundation; either version 3, or (at your option)
;; any later version.
;; EMMS 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 General Public License for more details.
;; You should have received a copy of the GNU General Public License
;; along with EMMS; see the file COPYING. If not, write to the
;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
;; Boston, MA 02110-1301, USA.
;;; Commentary:
;; This code allows you to browse the metadata cache and add tracks to
;; your playlist. To be properly useful, you should M-x
;; emms-add-directory-tree to all the files you own at least once so
;; that the cache is fully populated.
;; Usage
;; -------------------------------------------------------------------
;; To use, run (emms-all) and then bind `emms-smart-browse' to a key,
;; like:
;; (global-set-key (kbd "<f2>") 'emms-smart-browse)
;; The 'smart browsing' code attempts to link the browser and playlist
;; windows together, so that closing one will close both. Activating
;; it will toggle between three states:
;; a) both windows displayed, with the browser focused
;; b) focus switched to the playlist window
;; c) the extra window closed, and both buffers buried
;; If you just want access to the browser, try M-x
;; emms-browse-by-TYPE, where TYPE is one of artist, album, composer,
;; genre or year. These commands can also be used while smart browsing to
;; change the browsing category.
;; If you don't want to activate the code with (emms-devel), you can
;; activate it manually with:
;; (require 'emms-browser)
;; Key bindings
;; -------------------------------------------------------------------
;; C-j emms-browser-add-tracks-and-play
;; RET emms-browser-add-tracks
;; SPC emms-browser-toggle-subitems
;; ^ emms-browser-move-up-level
;; / emms-isearch-buffer
;; 1 emms-browser-collapse-all
;; 2 emms-browser-expand-to-level-2
;; 3 emms-browser-expand-to-level-3
;; 4 emms-browser-expand-to-level-4
;; < emms-browser-previous-filter
;; > emms-browser-next-filter
;; ? describe-mode
;; C emms-browser-clear-playlist
;; E emms-browser-expand-all
;; d emms-browser-view-in-dired
;; D emms-browser-delete-files
;; q emms-browser-bury-buffer
;; r emms-browser-goto-random
;; n next-line
;; p previous-line
;; C-/ emms-playlist-mode-undo
;; <C-return> emms-browser-add-tracks-and-play
;; <backtab> emms-browser-prev-non-track
;; <tab> emms-browser-next-non-track
;; s A emms-browser-search-by-album
;; s a emms-browser-search-by-artist
;; s c emms-browser-search-by-composer
;; s s emms-browser-search-by-names
;; s t emms-browser-search-by-title
;; s p emms-browser-search-by-performer
;; b 1 emms-browse-by-artist
;; b 2 emms-browse-by-album
;; b 3 emms-browse-by-genre
;; b 4 emms-browse-by-year
;; b 5 emms-browse-by-composer
;; b 6 emms-browse-by-performer
;; W a w emms-browser-lookup-album-on-wikipedia
;; W A w emms-browser-lookup-artist-on-wikipedia
;; W C w emms-browser-lookup-composer-on-wikipedia
;; W P w emms-browser-lookup-performer-on-wikipedia
;; Displaying covers
;; -------------------------------------------------------------------
;; The browser will attempt to display cover images if they're
;; available. By default it looks for images cover_small.jpg,
;; cover_med.jpg, etc. Customize emms-browser-covers to use your own
;; covers. Note that you'll probably want to resize your existing
;; covers to particular sizes. Suggested sizes are 100x100 for small,
;; and 200x200 for medium.
;; Also emacs by default will jump around a lot when scrolling a
;; buffer with images. Set the following variables to prevent that:
;; scroll-up-aggressively 0.0
;; scroll-down-aggressively 0.0
;; To show a 'no cover' image for albums which don't have a cover, add
;; the following code to your .emacs:
;; (setq emms-browser-default-covers
;; (list "/path/to/cover_small.jpg" nil nil)
;; (the medium and large images can be set too, if you want)
;; You can download an example 'no cover' image from:
;; http://repose.cx/cover_small.jpg
;; Filtering tracks
;; -------------------------------------------------------------------
;; If you want to display a subset of your collection (such as a
;; directory of 80s music, only avi files, etc), then you can make
;; some filters using code like this:
;; ;; show everything
;; (emms-browser-make-filter "all" 'ignore)
;; ;; Set "all" as the default filter
;; (emms-browser-set-filter (assoc "all" emms-browser-filters))
;; ;; show all files (no streamlists, etc)
;; (emms-browser-make-filter
;; "all-files" (emms-browser-filter-only-type 'file))
;; ;; show only tracks in one folder
;; (emms-browser-make-filter
;; "80s" (emms-browser-filter-only-dir "~/Mp3s/80s"))
;; ;; show all tracks played in the last month
;; (emms-browser-make-filter
;; "last-month" (emms-browser-filter-only-recent 30))
;; After executing the above commands, you can use M-x
;; emms-browser-show-all, emms-browser-show-80s, etc to toggle
;; between different collections. Alternatively you can use '<' and
;; '>' to cycle through the available filters.
;; The second argument to make-filter is a function which returns t if
;; a single track should be filtered. You can write your own filter
;; functions to check the type of a file, etc.
;; Some more examples:
;; ;; show only tracks not played in the last year
;; (emms-browser-make-filter "not-played"
;; (lambda (track)
;; (not (funcall (emms-browser-filter-only-recent 365) track))))
;; ;; show all files that are not in the pending directory
;; (emms-browser-make-filter
;; "all"
;; (lambda (track)
;; (or
;; (funcall (emms-browser-filter-only-type 'file) track)
;; (not (funcall
;; (emms-browser-filter-only-dir "~/Media/pending") track)))))
;; Changing tree structure
;; -------------------------------------------------------------------
;; You can change the way the tree is displayed by modifying
;; `emms-browser-next-mapping-type'. The following code displays
;; artist->track instead of artist->album->track when you switch to
;; the 'singles' filter.
;; (defadvice emms-browser-next-mapping-type
;; (after no-album (current-mapping))
;; (when (eq ad-return-value 'info-album)
;; (setq ad-return-value 'info-title)))
;; (defun toggle-album-display ()
;; (if (string= emms-browser-current-filter-name "singles")
;; (ad-activate 'emms-browser-next-mapping-type)
;; (ad-deactivate 'emms-browser-next-mapping-type)))
;; (add-hook 'emms-browser-filter-changed-hook 'toggle-album-display)
;; Changing display format
;; -------------------------------------------------------------------
;; Format strings govern the way items are displayed in the browser
;; and playlist. You can customize these if you wish.
;; `emms-browser-default-format' controls the format to use when no
;; other format has been explicitly defined. By default, only track and
;; albums deviate from the default.
;; To customise the format of a particular type, find the name of the
;; field you want to use (eg `info-artist', `info-title', etc), and
;; insert that into emms-browser-<type>-format or
;; emms-browser-playlist-<type>-format. For example, if you wanted to
;; remove track numbers from tracks in both the browser and playlist,
;; you could do:
;; (defvar emms-browser-info-title-format "%i%n")
;; (defvar emms-browser-playlist-info-title-format
;; emms-browser-info-title-format)
;; The format specifiers available include:
;; %i indent relative to the current level
;; %n the value of the item - eg -info-artist might be "pink floyd"
;; %y the album year
;; %A the album name
;; %a the artist name of the track
;; %C the composer name of the track
;; %p the performer name of the track
;; %t the title of the track
;; %T the track number
;; %cS a small album cover
;; %cM a medium album cover
;; %cL a big album cover
;; Note that if you use track-related items like %t, it will take the
;; data from the first track.
;; Changing display faces
;; -------------------------------------------------------------------
;; The faces used to display the various fields are also customizable.
;; They are in the format emms-browser-<type>-face, where type is one
;; of "year/genre", "artist", "composer", "performer", "album" or
;; "track". Note that faces lack the initial "info-" part. For example,
;; to change the artist face, type
;; M-x customize-face emms-browser-artist-face.
;; Deleting files
;; -------------------------------------------------------------------
;; You can use the browser to delete tracks from your hard disk.
;; Because this is dangerous, it is disabled by default.
;; The following code will delete covers at the same time, and remove
;; parent directories if they're now empty.
;; (defun de-kill-covers-and-parents (dir tracks)
;; (when (> (length tracks) 1)
;; ;; if we're not deleting an individual file, delete covers too
;; (dolist (cover '("cover.jpg"
;; "cover_med.jpg"
;; "cover_small.jpg"
;; "folder.jpg"))
;; (condition-case nil
;; (delete-file (concat dir cover))
;; (error nil)))
;; ;; try and delete empty parents - we actually do the work of the
;; ;; calling function here, too
;; (let (failed)
;; (while (and (not (string= dir "/"))
;; (not failed))
;; (condition-case nil
;; (delete-directory dir)
;; (error (setq failed t)))
;; (setq dir (file-name-directory (directory-file-name dir)))))))
;; (add-hook 'emms-browser-delete-files-hook 'de-kill-covers-and-parents)
;;; Code:
(require 'cl-lib)
(require 'emms)
(require 'emms-cache)
(require 'emms-source-file)
(require 'emms-playlist-sort)
(require 'sort)
(require 'seq)
;; --------------------------------------------------
;; Variables and configuration
;; --------------------------------------------------
(defvar emms-browser-mode-hook nil
"Emms browser mode hook.")
(defgroup emms-browser nil
"*The Emacs Multimedia System browser"
:prefix "emms-browser-"
:group 'multimedia
:group 'applications)
(defcustom emms-browser-default-browse-type
'info-artist
"*The default browsing mode."
:group 'emms-browser
:type 'function)
(defcustom emms-browser-make-name-function
'emms-browser-make-name-standard
"*A function to make names for entries and subentries.
Overriding this function allows you to customise how various elements
are displayed. It is called with two arguments - track and type."
:group 'emms-browser
:type 'function)
(defcustom emms-browser-get-track-field-function
'emms-browser-get-track-field-albumartist
"*A function to get an element from a track.
Change this to customize the way data is organized in the
browser. For example,
`emms-browser-get-track-field-use-directory-name' uses the
directory name to determine the artist. This means that
soundtracks, compilations and so on don't populate the artist
view with lots of 1-track elements."
:group 'emms-browser
:type '(choice (function :tag "Sort by album-artist" emms-browser-get-track-field-albumartist)
(function :tag "Simple" emms-browser-get-track-field-simple)))
(defcustom emms-browser-covers
'("cover_small" "cover_med" "cover_large")
"*Control how cover images are found.
Can be either a list of small, medium and large images (large
currently not used), a function which takes a directory and one
of the symbols `small', `medium' or `large', and should return a
path to the cover, or nil to turn off cover loading."
:group 'emms-browser
:type '(choice list function boolean))
(defcustom emms-browser-covers-file-extensions
'("jpg" "jpeg" "png" "gif" "bmp")
"*File extensions accepted for `emms-browser-covers'.
Should be a list of extensions as strings. Should be set before
emms-browser is required."
:group 'emms-browser
:type '(repeat (string :tag "Extension")))
(defconst emms-browser--covers-filename nil
"*List of potential cover art names.")
(defcustom emms-browser-default-covers nil
"*A list of default images to use if a cover isn't found."
:group 'emms-browser
:type 'list)
(defcustom emms-browser-comparison-test
(if (fboundp 'define-hash-table-test)
'case-fold
'equal)
"*A method for comparing entries in the cache.
The default is to compare case-insensitively."
:group 'emms-browser
:type 'symbol)
(defcustom emms-browser-track-sort-function
'emms-sort-natural-order-less-p
"*How to sort tracks in the browser.
Ues nil for no sorting."
:group 'emms-browser
:type 'function)
(defcustom emms-browser-alpha-sort-function
(if (functionp 'string-collate-lessp) 'string-collate-lessp 'string<)
"*How to sort artists/albums/etc. in the browser.
Use nil for no sorting."
:group 'emms-browser
:type 'function)
(defcustom emms-browser-album-sort-function
'emms-browser-sort-by-year-or-name
"*How to sort artists/albums/etc. in the browser.
Use nil for no sorting."
:group 'emms-browser
:type 'function)
(defcustom emms-browser-show-display-hook nil
"*Hooks to run when starting or switching to a browser buffer."
:group 'emms-browser
:type 'hook)
(defcustom emms-browser-hide-display-hook nil
"*Hooks to run when burying or removing a browser buffer."
:group 'emms-browser
:type 'hook)
(defcustom emms-browser-tracks-added-hook nil
"*Hooks to run when tracks are added to the playlist."
:group 'emms-browser
:type 'hook)
(defcustom emms-browser-filter-tracks-hook nil
"*Given a track, return t if the track should be ignored."
:group 'emms-browser
:type 'hook)
(defcustom emms-browser-filter-changed-hook nil
"*Hook run after the filter has changed."
:group 'emms-browser
:type 'hook)
(defcustom emms-browser-delete-files-hook nil
"*Hook run after files have been deleted.
This hook can be used to clean up extra files, such as album covers.
Called once for each directory."
:group 'emms-browser
:type 'hook)
(defvar emms-browser-buffer nil
"The current browser buffer, if any.")
(defvar emms-browser-buffer-name "*EMMS Browser*"
"The default buffer name.")
(defvar emms-browser-search-buffer-name "*emms-browser-search*"
"The search buffer name.")
(defvar emms-browser-top-level-hash nil
"The current mapping db, eg. artist -> track.")
(make-variable-buffer-local 'emms-browser-top-level-hash)
(defvar emms-browser-top-level-type nil
"The current mapping type, eg. 'info-artist.")
(make-variable-buffer-local 'emms-browser-top-level-type)
(defvar emms-browser-current-indent nil
"Used to override the current indent, for the playlist, etc.")
(defvar emms-browser-current-filter-name nil
"The name of the current filter in place, if any.")
(defvar emms-browser-mode-map
(let ((map (make-sparse-keymap)))
(define-key map (kbd "q") 'emms-browser-bury-buffer)
(define-key map (kbd "/") 'emms-isearch-buffer)
(define-key map (kbd "r") 'emms-browser-goto-random)
(define-key map (kbd "n") 'next-line)
(define-key map (kbd "p") 'previous-line)
(define-key map (kbd "C") 'emms-browser-clear-playlist)
(define-key map (kbd "?") 'describe-mode)
(define-key map (kbd "C-/") 'emms-playlist-mode-undo)
(define-key map (kbd "SPC") 'emms-browser-toggle-subitems)
(define-key map (kbd "^") 'emms-browser-move-up-level)
(define-key map (kbd "RET") 'emms-browser-add-tracks)
(define-key map (kbd "<C-return>") 'emms-browser-add-tracks-and-play)
(define-key map (kbd "C-j") 'emms-browser-add-tracks-and-play)
(define-key map (kbd "<tab>") 'emms-browser-next-non-track)
(define-key map (kbd "<backtab>") 'emms-browser-prev-non-track)
(define-key map (kbd "d") 'emms-browser-view-in-dired)
(define-key map (kbd "D") 'emms-browser-delete-files)
(define-key map (kbd "E") 'emms-browser-expand-all)
(define-key map (kbd "1") 'emms-browser-collapse-all)
(define-key map (kbd "2") 'emms-browser-expand-to-level-2)
(define-key map (kbd "3") 'emms-browser-expand-to-level-3)
(define-key map (kbd "4") 'emms-browser-expand-to-level-4)
(define-key map (kbd "b 1") 'emms-browse-by-artist)
(define-key map (kbd "b 2") 'emms-browse-by-album)
(define-key map (kbd "b 3") 'emms-browse-by-genre)
(define-key map (kbd "b 4") 'emms-browse-by-year)
(define-key map (kbd "b 5") 'emms-browse-by-composer)
(define-key map (kbd "b 6") 'emms-browse-by-performer)
(define-key map (kbd "s a") 'emms-browser-search-by-artist)
(define-key map (kbd "s c") 'emms-browser-search-by-composer)
(define-key map (kbd "s p") 'emms-browser-search-by-performer)
(define-key map (kbd "s A") 'emms-browser-search-by-album)
(define-key map (kbd "s t") 'emms-browser-search-by-title)
(define-key map (kbd "s s") 'emms-browser-search-by-names)
(define-key map (kbd "W A w") 'emms-browser-lookup-artist-on-wikipedia)
(define-key map (kbd "W C w") 'emms-browser-lookup-composer-on-wikipedia)
(define-key map (kbd "W P w") 'emms-browser-lookup-performer-on-wikipedia)
(define-key map (kbd "W a w") 'emms-browser-lookup-album-on-wikipedia)
(define-key map (kbd ">") 'emms-browser-next-filter)
(define-key map (kbd "<") 'emms-browser-previous-filter)
(define-key map (kbd "+") 'emms-volume-raise)
(define-key map (kbd "-") 'emms-volume-lower)
map)
"Keymap for `emms-browser-mode'.")
(defvar emms-browser-search-mode-map
(let ((map (make-sparse-keymap)))
(set-keymap-parent map emms-browser-mode-map)
(define-key map (kbd "q") 'emms-browser-kill-search)
map)
"Keymap for `emms-browser-mode'.")
;; --------------------------------------------------
;; Compatability functions
;; --------------------------------------------------
(eval-and-compile
(if (fboundp 'with-selected-window)
(defalias 'emms-browser-with-selected-window 'with-selected-window)
(defmacro emms-browser-with-selected-window (window &rest body)
;; this emulates the behavior introduced earlier, though it
;; might be best to do something with `window'
`(save-selected-window ,body)))
(put 'emms-browser-with-selected-window 'lisp-indent-function 1)
(put 'emms-browser-with-selected-window 'edebug-form-spec '(form body))
(if (fboundp 'run-mode-hooks)
(defalias 'emms-browser-run-mode-hooks 'run-mode-hooks)
(defalias 'emms-browser-run-mode-hooks 'run-hooks)))
;; --------------------------------------------------
;; General mode setup
;; --------------------------------------------------
;;;###autoload
(defun emms-browser ()
"Launch or switch to the EMMS Browser."
(interactive)
(emms-browser-create-or-focus
emms-browser-default-browse-type))
(defun emms-browser-create-or-focus (type)
"Create a new browser buffer with BROWSE-FUNC, or switch.
BROWSE-FUNC should fill the buffer with something of interest. An
example function is `emms-browse-by-artist'."
(let ((buf (emms-browser-get-buffer))
wind)
(if buf
;; if the buffer is displayed, switch the window instead
(progn
(setq wind (get-buffer-window buf))
(if wind
(select-window wind)
(switch-to-buffer buf))
(emms-browser-run-mode-hooks 'emms-browser-show-display-hook))
;; if there's no buffer, create a new window
(emms-browser-create)
(emms-browse-by type))))
(defun emms-browser-create ()
"Create a new emms-browser buffer and start emms-browser-mode."
(emms-browser-new-buffer)
(emms-browser-mode)
(emms-browser-run-mode-hooks 'emms-browser-show-display-hook))
(defun emms-browser-mode (&optional no-update)
"A major mode for the Emms browser.
\\{emms-browser-mode-map}"
;; create a new buffer
(interactive)
(use-local-map emms-browser-mode-map)
(setq major-mode 'emms-browser-mode
mode-name "Emms-Browser")
(setq buffer-read-only t)
(unless no-update
(setq emms-browser-buffer (current-buffer)))
(run-hooks 'emms-browser-mode-hook))
(defun emms-browser-new-buffer ()
"Create a new browser buffer, and switch to it."
(switch-to-buffer (generate-new-buffer
emms-browser-buffer-name)))
(defun emms-browser-clear ()
"Create or switch to a browser buffer, clearing it."
(let ((buf (emms-browser-get-buffer)))
(if buf
(progn
(switch-to-buffer buf)
(emms-with-inhibit-read-only-t
(delete-region (point-min) (point-max))))
(emms-browser-create))))
(defun emms-browser-get-buffer ()
"Return the current buffer if it exists, or nil.
If a browser search exists, return it."
(or (get-buffer emms-browser-search-buffer-name)
(unless (or (null emms-browser-buffer)
(not (buffer-live-p emms-browser-buffer)))
emms-browser-buffer)))
(defun emms-browser-ensure-browser-buffer ()
(unless (eq major-mode 'emms-browser-mode)
(error "Current buffer is not an emms-browser buffer")))
(defun emms-browser-bury-buffer ()
"Bury the browser buffer, running hooks."
(interactive)
(emms-browser-run-mode-hooks 'emms-browser-hide-display-hook)
(bury-buffer))
;; --------------------------------------------------
;; Top-level browsing methods - by artist/album/etc
;; --------------------------------------------------
;; Since the number of tracks may be rather large, we use a hash to
;; sort the top level elements into various categories. All
;; subelements will be stored in a bdata alist structure.
(defmacro emms-browser-add-category (name type)
"Create an interactive function emms-browse-by-NAME."
(let ((funname (intern (concat "emms-browse-by-" name)))
(funcdesc (concat "Browse by " name ".")))
`(defun ,funname ()
,funcdesc
(interactive)
(emms-browse-by ,type))))
(defun emms-browse-by (type)
"Render a top level buffer based on TYPE."
;; FIXME: assumes we only browse by info-*
(let* ((name (substring (symbol-name type) 5))
(modedesc (concat "Browsing by: " name))
(hash (emms-browser-make-hash-by type)))
(when emms-browser-current-filter-name
(setq modedesc (concat modedesc
" [" emms-browser-current-filter-name "]")))
(emms-browser-clear)
(rename-buffer modedesc)
(emms-browser-render-hash hash type)
(setq emms-browser-top-level-hash hash)
(setq emms-browser-top-level-type type)
(unless (> (hash-table-count hash) 0)
(emms-browser-show-empty-cache-message))
(goto-char (point-min))))
(emms-browser-add-category "artist" 'info-artist)
(emms-browser-add-category "composer" 'info-composer)
(emms-browser-add-category "performer" 'info-performer)
(emms-browser-add-category "album" 'info-album)
(emms-browser-add-category "genre" 'info-genre)
(emms-browser-add-category "year" 'info-year)
(defun emms-browser-get-track-field (track type)
"Return TYPE from TRACK.
This can be customized to group different artists into one for
compilations, etc."
(funcall emms-browser-get-track-field-function track type))
(defun emms-browser-get-track-field-simple (track type)
"Return TYPE from TRACK without any heuristic.
This function can be used as
`emms-browser-get-track-field-function'."
(emms-track-get track type "misc"))
(defun emms-browser-get-track-field-albumartist (track type)
"Return TYPE from TRACK with an albumartist-oriented heuristic.
For 'info-artist TYPE, use 'info-albumartistsort, 'info-albumartist,
'info-artistsort.
For 'info-year TYPE, use 'info-originalyear, 'info-originaldate and
'info-date symbols."
(cond ((eq type 'info-artist)
(or (emms-track-get track 'info-albumartist)
(emms-track-get track 'info-albumartistsort)
(emms-track-get track 'info-artist)
(emms-track-get track 'info-artistsort "<unknown artist>")))
((eq type 'info-year)
(let ((date (or (emms-track-get track 'info-originaldate)
(emms-track-get track 'info-originalyear)
(emms-track-get track 'info-date)
(emms-track-get track 'info-year "<unknown year>"))))
(emms-format-date-to-year date)))
(t (emms-track-get track type "misc"))))
(defun emms-browser-get-track-field-use-directory-name (track type)
(if (eq type 'info-artist)
(emms-browser-get-artist-from-path
track)
(emms-track-get track type "misc")))
(defun emms-browser-get-artist-from-path (track)
(let* ((path (emms-track-get track 'name))
(dir (file-name-directory path))
(basedir
(file-name-nondirectory
(directory-file-name
(file-name-directory dir)))))
(car (split-string basedir " - "))))
(defun emms-browser-make-hash-by (type)
"Make a hash, mapping with TYPE, eg artist -> tracks."
(let ((hash (make-hash-table
:test emms-browser-comparison-test))
field existing-entry)
(maphash (lambda (path track)
(unless (run-hook-with-args-until-success
'emms-browser-filter-tracks-hook track)
(setq field
(emms-browser-get-track-field track type))
(when field
(setq existing-entry (gethash field hash))
(if existing-entry
(puthash field (cons track existing-entry) hash)
(puthash field (list track) hash)))))
emms-cache-db)
hash))
(defun emms-browser-render-hash (db type)
"Render a mapping (DB) into a browser buffer."
(maphash (lambda (desc data)
(emms-browser-insert-top-level-entry desc data type))
db)
(emms-with-inhibit-read-only-t
(let ((sort-fold-case t))
(if emms-browser-alpha-sort-function
(progn
(goto-char (point-min))
(sort-subr nil
#'forward-line #'end-of-line
(lambda () (buffer-substring-no-properties
(line-beginning-position) (line-end-position)))
nil
emms-browser-alpha-sort-function))
(sort-lines nil (point-min) (point-max))))))
(defun case-fold-string= (a b)
(eq t (compare-strings a nil nil b nil nil t)))
(defun case-fold-string-hash (a)
(sxhash (upcase a)))
(when (fboundp 'define-hash-table-test)
(define-hash-table-test 'case-fold
'case-fold-string= 'case-fold-string-hash))
(defun emms-browser-insert-top-level-entry (name tracks type)
"Insert a single top level entry into the buffer."
(emms-browser-ensure-browser-buffer)
(let ((bdata (emms-browser-make-bdata-tree type 1 tracks name)))
(emms-browser-insert-format bdata)))
(defun emms-browser-show-empty-cache-message ()
"Display some help if the cache is empty."
(emms-with-inhibit-read-only-t
(insert "
Welcome to EMMS.
There are currently no files in the EMMS database.
To browse music, you need to tell EMMS where your
files are.
Try the following commands:
M-x emms-add-directory-tree:
Add all music in a directory and its subdirectories.
M-x emms-add-directory:
Add all music in a directory
M-x emms-add-file: Add a single music file.
After you have added some files, wait for EMMS to say
'all track information loaded,' then return to the
browser, and hit 'b 1' to refresh.")))
;; --------------------------------------------------
;; Building a subitem tree
;; --------------------------------------------------
(defun emms-browser-next-mapping-type (current-mapping)
"Return the next sensible mapping.
Eg. if CURRENT-MAPPING is currently 'info-artist, return 'info-album."
(cond
((eq current-mapping 'info-artist) 'info-album)
((eq current-mapping 'info-composer) 'info-album)
((eq current-mapping 'info-performer) 'info-album)
((eq current-mapping 'info-album) 'info-title)
((eq current-mapping 'info-genre) 'info-artist)
((eq current-mapping 'info-year) 'info-artist)))
(defun emms-browser-make-bdata-tree (type level tracks name)
"Build a tree of browser DB elements for tracks."
(emms-browser-make-bdata
(emms-browser-make-bdata-tree-recurse
type level tracks)
name
type level))
(defun emms-browser-make-bdata-tree-recurse (type level tracks)
"Build a tree of alists based on a list of tracks, TRACKS.
For example, if TYPE is 'info-year, return an alist like:
artist1 -> album1 -> *track* 1.."
(let* ((next-type (emms-browser-next-mapping-type type))
(next-level (1+ level))
alist name new-db new-tracks)
;; if we're at a leaf, the db data is a list of tracks
(if (eq type 'info-title)
tracks
;; otherwise, make DBs from the sub elements
(setq alist
(emms-browser-make-sorted-alist
next-type tracks))
(mapcar (lambda (entry)
(setq name (emms-browser-make-name
entry next-type))
(setq new-tracks (cdr entry))
(emms-browser-make-bdata
(emms-browser-make-bdata-tree-recurse
next-type next-level new-tracks)
name next-type next-level))
alist))))
(defun emms-browser-make-name (entry type)
"Return a name for ENTRY, used for making a bdata object."
(let ((key (car entry))
(track (cadr entry))
artist title) ;; only the first track
(cond
((eq type 'info-title)
(setq artist (emms-track-get track 'info-artist))
(setq title (emms-track-get track 'info-title))
(if (not (and artist title))
key
(concat artist " - " title)))
(t key))))
(defun emms-browser-track-number (track)
"Return a string representation of a track number.
The string will end in a space. If no track number is available,
return an empty string."
(let ((tracknum (emms-track-get track 'info-tracknumber)))
(if (or (not (stringp tracknum)) (string= tracknum "0"))
""
(concat
(if (eq (length tracknum) 1)
(concat "0" tracknum)
tracknum)))))
(defun emms-browser-disc-number (track)
"Return a string representation of a track number.
The string will end in a space. If no track number is available,
return an empty string."
(let ((discnum (emms-track-get track 'info-discnumber)))
(if (or (not (stringp discnum)) (string= discnum "0"))
""
discnum)))
(defun emms-browser-year-number (track)
"Return a string representation of a track's year.
This will be in the form '(1998) '."
(let ((year (emms-track-get-year track)))
(if (or (not (stringp year)) (string= year "0"))
""
(concat
"(" year ") "))))
(defun emms-browser-track-duration (track)
"Return a string representation of a track duration.
If no duration is available, return an empty string."
(let ((pmin (emms-track-get track 'info-playing-time-min))
(psec (emms-track-get track 'info-playing-time-sec))
(ptot (emms-track-get track 'info-playing-time)))
(cond ((and pmin psec) (format "%02d:%02d" pmin psec))
(ptot (format "%02d:%02d" (/ ptot 60) (% ptot 60)))
(t ""))))
(defun emms-browser-make-bdata (data name type level)
"Return a browser data item from ALIST.
DATA should be a list of DB items, or a list of tracks.
NAME is a name for the DB item.
TYPE is a category the data is organised by, such as 'info-artist.
LEVEL is the number of the sublevel the db item will be placed in."
(list (cons 'type type)
(cons 'level level)
(cons 'name name)
(cons 'data data)))
(defun emms-browser-make-alist (type tracks)
"Make an alist mapping of TYPE -> TRACKS.
Items with no metadata for TYPE will be placed in 'misc'"
(let (db key existing tracknum)
(dolist (track tracks)
(setq key (emms-browser-get-track-field track type))
(when (eq type 'info-title)
;; try and make every track unique
(setq tracknum (emms-browser-track-number track))
(if (string= tracknum "")
(setq key (file-name-nondirectory
(emms-track-get track 'name)))
(setq key (concat tracknum key))))
(setq existing (assoc key db))
(if existing
(setcdr existing (cons track (cdr existing)))
(push (cons key (list track)) db)))
;; sort the entries we've built
(dolist (item db)
(setcdr item (nreverse (cdr item))))
db))
(defun emms-browser-make-sorted-alist (type tracks)
"Return a sorted alist of TRACKS.
TYPE is the metadata to make the alist by - eg. if it's
'info-artist, an alist of artists will be made."
(emms-browser-sort-alist
(emms-browser-make-alist type tracks)
type))
;; --------------------------------------------------
;; BDATA accessors and predicates
;; --------------------------------------------------
(defun emms-browser-bdata-level (bdata)
(cdr (assq 'level bdata)))
(defun emms-browser-bdata-name (bdata)
(cdr (assq 'name bdata)))
(defun emms-browser-bdata-type (bdata)
(cdr (assq 'type bdata)))
(defun emms-browser-bdata-data (bdata)
(cdr (assq 'data bdata)))
(defun emms-browser-bdata-p (obj)
"True if obj is a BDATA object."
(consp (assq 'data obj)))
;; --------------------------------------------------
;; Sorting expanded entries
;; --------------------------------------------------
(defmacro emms-browser-sort-cadr (sort-func)
"Return a function to sort an alist using SORT-FUNC.
This sorting predicate will compare the cadr of each entry.
SORT-FUNC should be a playlist sorting predicate like
`emms-playlist-sort-by-natural-order'."
`(lambda (a b)
(funcall ,sort-func (cadr a) (cadr b))))
(defmacro emms-browser-sort-car (sort-func)
"Return a function to sort an alist using SORT-FUNC.
This sorting predicate will compare the car of each entry.
SORT-FUNC should be a playlist sorting predicate like
`emms-playlist-sort-by-natural-order'."
`(lambda (a b)
(funcall ,sort-func (car a) (car b))))
(defun emms-browser-sort-by-track (alist)
"Sort an ALIST by the tracks in each entry.
Uses `emms-browser-track-sort-function'."
(if emms-browser-track-sort-function
(sort alist (emms-browser-sort-cadr
emms-browser-track-sort-function))
alist))
(defun emms-browser-sort-by-name (alist)
"Sort ALIST by keys alphabetically.
Uses `emms-browser-alpha-sort-function'."
(if emms-browser-alpha-sort-function
(sort alist (emms-browser-sort-car
emms-browser-alpha-sort-function))
alist))
(defun emms-browser-sort-by-year-or-name (alist)
"Sort based on year or name."
(sort alist (emms-browser-sort-cadr
'emms-browser-sort-by-year-or-name-p)))
(defun emms-browser-sort-by-year-or-name-p (a b)
;; FIXME: this is a bit of a hack
(let ((a-desc (concat
(emms-browser-year-number a)
(emms-track-get a 'info-album "misc")))
(b-desc (concat
(emms-browser-year-number b)
(emms-track-get b 'info-album "misc"))))
(string< a-desc b-desc)))
(defun emms-browser-sort-alist (alist type)
"Sort ALIST using the sorting function for TYPE."
(let ((sort-func
(cond
((or
(eq type 'info-artist)
(eq type 'info-composer)
(eq type 'info-performer)
(eq type 'info-year)
(eq type 'info-genre))
'emms-browser-sort-by-name)
((eq type 'info-album)
emms-browser-album-sort-function)
((eq type 'info-title)
'emms-browser-sort-by-track)
(t (message "Can't sort unknown mapping!")))))
(funcall sort-func alist)))
;; --------------------------------------------------
;; Subitem operations on the buffer
;; --------------------------------------------------
(defun emms-browser-bdata-at-point ()
"Return the bdata object at point.
Includes information at point (such as album name), and metadata."
(get-text-property (point-at-bol)
'emms-browser-bdata))
(defun emms-browser-data-at-point ()
"Return the data stored under point.
This will be a list of DB items."
(emms-browser-bdata-data (emms-browser-bdata-at-point)))
(defun emms-browser-level-at-point ()
"Return the current level at point."
(emms-browser-bdata-level (emms-browser-bdata-at-point)))
(defun emms-browser-tracks-at-point (&optional node)
"Return a list of tracks at point."
(let (tracks)
(dolist (node (if node
node
(emms-browser-data-at-point)))
(if (not (emms-browser-bdata-p node))
(setq tracks (cons node tracks))
(setq tracks
(append tracks
(emms-browser-tracks-at-point
(emms-browser-bdata-data node))))))
tracks))
(defun emms-browser-expand-one-level ()
"Expand the current line by one sublevel."
(interactive)
(let* ((data (emms-browser-data-at-point)))
(save-excursion
(forward-line 1)
(beginning-of-line)
(dolist (data-item data)
(emms-browser-insert-data-item data-item)))))
(defun emms-browser-insert-data-item (data-item)
"Insert DATA-ITEM into the buffer.
This checks DATA-ITEM's level to determine how much to indent.
The line will have a property emms-browser-bdata storing subitem
information."
(emms-browser-insert-format data-item))
(defun emms-browser-find-entry-more-than-level (level)
"Move point to next entry more than LEVEL and return point.
If no entry exits, return nil.
Returns point if currently on a an entry more than LEVEL."
(let ((old-pos (point))
level-at-point)
(forward-line 1)
(setq level-at-point (emms-browser-level-at-point))
(if (and level-at-point
(> level-at-point level))
(point)
(goto-char old-pos)
nil)))
(defun emms-browser-subitems-visible ()
"True if there are any subentries visible point."
(let ((current-level (emms-browser-level-at-point))
new-level)
(save-excursion
(re-search-forward "\n" nil t)
(when (setq new-level (emms-browser-level-at-point))
(> new-level current-level)))))
(defun emms-browser-subitems-exist ()
"True if it's possible to expand the current line."
(not (eq (emms-browser-bdata-type
(emms-browser-bdata-at-point))
'info-title)))
(defun emms-browser-move-up-level (&optional direction)
"Move up one level if possible.
Return true if we were able to move up.
If DIRECTION is 1, move forward, otherwise move backwards."
(interactive "P")
(let ((moved nil)
(continue t)
(current-level (emms-browser-level-at-point)))
(while (and
continue
(zerop (forward-line
(or (and (numberp direction) direction) -1))))
(when (> current-level (or (emms-browser-level-at-point) 0))
(setq moved t)
(setq continue nil)))
moved))
(defun emms-browser-toggle-subitems ()
"Show or hide (kill) subitems under the current line."
(interactive)
(if (emms-browser-subitems-visible)
(emms-browser-kill-subitems)
(if (emms-browser-subitems-exist)
(emms-browser-show-subitems)
(cl-assert (emms-browser-move-up-level))
(emms-browser-kill-subitems))))
(defun emms-browser-toggle-subitems-recursively ()
"Recursively toggle all subitems under the current line.
If there is no more subitems to expand, collapse the current node."
(interactive)
(let ((current-level (emms-browser-level-at-point))
first-expandable-level)
(save-excursion
(while (or (and (emms-browser-subitems-exist)
(not (emms-browser-subitems-visible))
(or (and (not first-expandable-level)
(setq first-expandable-level (emms-browser-level-at-point)))
(= first-expandable-level (emms-browser-level-at-point)))
(emms-browser-show-subitems))
(emms-browser-find-entry-more-than-level current-level))))
(unless first-expandable-level
(emms-browser-kill-subitems))))
(defun emms-browser-show-subitems ()
"Show subitems under the current line."
(unless (emms-browser-subitems-visible)
(if (emms-browser-subitems-exist)
(emms-browser-expand-one-level))))
(defun emms-browser-kill-subitems ()
"Remove all subitems under the current line.
Stops at the next line at the same level, or EOF."
(when (emms-browser-subitems-visible)
(let ((current-level (emms-browser-level-at-point))
(next-line (point-at-bol 2)))
(emms-with-inhibit-read-only-t
(delete-region next-line
(save-excursion
(while
(emms-browser-find-entry-more-than-level
current-level))
(point-at-bol 2)))))))
;; --------------------------------------------------
;; Dealing with the playlist (queuing songs, etc)
;; --------------------------------------------------
(defun emms-browser-playlist-insert-group (bdata)
"Insert a group description into the playlist buffer."
(let* ((type (emms-browser-bdata-type bdata))
(short-type (substring (symbol-name type) 5))
(name (emms-browser-format-line bdata 'playlist)))
(with-current-emms-playlist
(goto-char (point-max))
(insert name "\n"))))
(defun emms-browser-playlist-insert-track (bdata)
"Insert a track into the playlist buffer."
(let ((name (emms-browser-format-line bdata 'playlist))
(track (car (emms-browser-bdata-data bdata))))
(with-current-emms-playlist
(goto-char (point-max))
(insert name "\n"))))
(defun emms-browser-playlist-insert-bdata (bdata starting-level)
"Add all tracks in BDATA to the playlist."
(let ((type (emms-browser-bdata-type bdata))
(name (emms-browser-bdata-name bdata))
(level (emms-browser-bdata-level bdata))
emms-browser-current-indent)
;; adjust the indentation relative to the starting level
(when starting-level
(setq level (- level (1- starting-level))))
;; we temporarily rebind the current indent to the relative indent
(setq emms-browser-current-indent
(emms-browser-make-indent level))
;; add a group heading?
(unless (eq type 'info-title)
(emms-browser-playlist-insert-group bdata))
;; recurse or add tracks
(dolist (item (emms-browser-bdata-data bdata))
(if (not (eq type 'info-title))
(emms-browser-playlist-insert-bdata item starting-level)
(emms-browser-playlist-insert-track bdata)))))
;; --------------------------------------------------
;; Expanding/contracting
;; --------------------------------------------------
(defun emms-browser-expand-to-level (level)
"Expand to a depth specified by LEVEL.
After expanding, jump to the currently marked entry."
(let ((count 1)
(total 0)
progress-reporter)
(goto-char (point-min))
(while (not (eq (buffer-end 1) (point)))
(when (= (emms-browser-level-at-point) 1)
(setq total (1+ total)))
(emms-browser-next-non-track))
(goto-char (point-min))
(setq progress-reporter
(make-progress-reporter "Expanding EMMS browser entries..."
0 total))
(while (not (eq (buffer-end 1) (point)))
(when (= (emms-browser-level-at-point) 1)
(progress-reporter-update progress-reporter count)
(setq count (1+ count)))
(if (< (emms-browser-level-at-point) level)
(emms-browser-show-subitems))
(emms-browser-next-non-track))
(progress-reporter-done progress-reporter)
(emms-browser-pop-mark)
(recenter '(4))))
(defun emms-browser-mark-and-collapse ()
"Save the current top level element, and collapse."
(emms-browser-mark-entry)
(goto-char (point-max))
(while (not (eq (buffer-end -1) (point)))
(emms-browser-prev-non-track)
(emms-browser-kill-subitems)))
(defun emms-browser-find-top-level ()
"Move up until reaching a top-level element."
(while (not (eq (emms-browser-level-at-point) 1))
(forward-line -1)))
(defun emms-browser-mark-entry ()
"Mark the current top level entry."
(save-excursion
(emms-browser-find-top-level)
(emms-with-inhibit-read-only-t
(add-text-properties (point-at-bol)
(point-at-eol)
(list 'emms-browser-mark t)))))
(defun emms-browser-pop-mark ()
"Return to the last marked entry, and remove the mark."
(goto-char (point-min))
(let ((pos (text-property-any (point-min) (point-max)
'emms-browser-mark t)))
(if pos
(progn
(goto-char pos)
(emms-with-inhibit-read-only-t
(remove-text-properties (point-at-bol)
(point-at-eol)
(list 'emms-browser-mark))))
(message "No mark saved!"))))
(defun emms-browser-go-to-parent ()
"Move point to the parent of the current node.
Return point. If at level one, return the current point."
(let ((current-level (emms-browser-level-at-point)))
(unless (eq current-level 1)
(while (<= current-level (emms-browser-level-at-point))
(forward-line -1)))
(point)))
(defun emms-browser-delete-current-node ()
"Remove the current node, and empty parents."
;; set the data to empty
(setcdr (assq 'data (emms-browser-bdata-at-point)) nil)
(emms-browser-delete-node-if-empty))
(defun emms-browser-delete-node-if-empty ()
"If empty, remove node and empty parents."
(when (zerop (length (emms-browser-data-at-point)))
(save-excursion
(let ((child-bdata (emms-browser-bdata-at-point))
parent-bdata parent-point)
;; record the parent's position before we delete anything
(save-excursion
(setq parent-point (emms-browser-go-to-parent)))
;; delete the current line
(when (emms-browser-subitems-visible)
(emms-browser-kill-subitems))
(emms-with-inhibit-read-only-t
(goto-char (point-at-bol))
(kill-line 1))
(unless (eq (emms-browser-bdata-level child-bdata) 1)
;; remove the node from the parent, and recurse
(goto-char parent-point)
(setq parent-bdata (emms-browser-bdata-at-point))
(setcdr (assq 'data parent-bdata)
(delq child-bdata
(emms-browser-bdata-data parent-bdata)))
(emms-browser-delete-node-if-empty))))))
;; --------------------------------------------------
;; User-visible commands
;; --------------------------------------------------
(defun emms-browser-add-tracks ()
"Add all tracks at point or in region if active.
When the region is not active, a numeric prefix argument inserts that many
tracks from point.
Return the playlist buffer point-max before adding."
(interactive)
(let ((count (cond
((use-region-p)
(1+ (- (line-number-at-pos (region-end)) (line-number-at-pos (region-beginning)))))
((numberp current-prefix-arg)
current-prefix-arg)
(t 1)))
(first-new-track (with-current-emms-playlist (point-max))))
(when (use-region-p) (goto-char (region-beginning)))
(dotimes (_ count first-new-track)
(let ((bdata (emms-browser-bdata-at-point)))
(when bdata
(emms-browser-playlist-insert-bdata
bdata (emms-browser-bdata-level bdata))
(forward-line))))
(run-hook-with-args 'emms-browser-tracks-added-hook
first-new-track)
(deactivate-mark)
first-new-track))
(defun emms-browser-add-tracks-and-play ()
"Add all tracks at point, and play the first added track."
(interactive)
(let ((old-pos (emms-browser-add-tracks)))
(with-current-emms-playlist
(goto-char old-pos)
;; if we're sitting on a group name, move forward
(unless (emms-playlist-track-at (point))
(emms-playlist-next))
(emms-playlist-select (point)))
;; FIXME: is there a better way of doing this?
(emms-stop)
(emms-start)))
(defun emms-isearch-buffer ()
"Isearch through the buffer."
(interactive)
(goto-char (point-min))
(when (isearch-forward)
(unless (emms-browser-subitems-visible)
(emms-browser-show-subitems))))
(defun emms-browser-next-non-track (&optional direction)
"Jump to the next non-track element."
(interactive)
(let ((continue t))
(while (and continue
(forward-line (or direction 1)))
(unless (eq (emms-browser-bdata-type
(emms-browser-bdata-at-point)) 'info-title)
(setq continue nil)))))
(defun emms-browser-prev-non-track ()
"Jump to the previous non-track element."
(interactive)
(emms-browser-next-non-track -1))
(defun emms-browser-expand-all ()
"Expand everything."
(interactive)
(emms-browser-expand-to-level 99))
(defun emms-browser-expand-to-level-2 ()
"Expand all top level items one level."
(interactive)
(emms-browser-mark-and-collapse)
(emms-browser-expand-to-level 2))
(defun emms-browser-expand-to-level-3 ()
"Expand all top level items two levels."
(interactive)
(emms-browser-mark-and-collapse)
(emms-browser-expand-to-level 3))
(defun emms-browser-expand-to-level-4 ()
"Expand all top level items three levels."
(interactive)
(emms-browser-mark-and-collapse)
(emms-browser-expand-to-level 4))
(defun emms-browser-collapse-all ()
"Collapse everything, saving and restoring the mark."
(interactive)
(emms-browser-mark-and-collapse)
(emms-browser-pop-mark)
(recenter '(4)))
(defvar emms-browser-seed-pending t
"Do we need to seed (random)?")
(defun emms-browser-goto-random ()
"Move cursor to random item with the lowest visible level."
(interactive)
(when emms-browser-seed-pending
(random t)
(setq emms-browser-seed-pending nil))
(while (progn (goto-char (point-min))
(forward-line (1- (random (count-lines (point-min) (point-max)))))
(emms-browser-subitems-visible))))
(defun emms-browser-view-in-dired (&optional bdata)
"View the current directory in dired."
;; FIXME: currently just grabs the directory from the first track
(interactive)
(if bdata
(if (eq (emms-browser-bdata-type bdata) 'info-title)
(let* ((track (car (emms-browser-bdata-data bdata)))
(path (emms-track-get track 'name))
(dir (file-name-directory path)))
(find-file dir))
(emms-browser-view-in-dired (car (emms-browser-bdata-data bdata))))
(emms-browser-view-in-dired (emms-browser-bdata-at-point))))
(defun emms-browser-remove-tracks (&optional delete start end)
"Remove all tracks at point or in region if active.
Unless DELETE is non-nil or with prefix argument, this only acts on the browser,
files are untouched.
If caching is enabled, files are removed from the cache as well.
When the region is not active, a numeric prefix argument remove that many
tracks from point, it does not delete files."
(interactive "P\nr")
(let ((count (cond
((use-region-p)
(1+ (- (line-number-at-pos end) (line-number-at-pos start))))
((numberp current-prefix-arg)
current-prefix-arg)
(t 1)))
dirs path tracks)
;; If numeric prefix argument, never delete files.
(when (numberp delete) (setq delete nil))
(when delete
(save-mark-and-excursion
(when (use-region-p) (goto-char start))
(let ((lines (min count (- (line-number-at-pos (point-max)) (line-number-at-pos (point))))))
(dotimes (_ lines)
;; TODO: Test this!
(setq tracks (append tracks (emms-browser-tracks-at-point)))
(forward-line))))
(unless (yes-or-no-p
(format "Really permanently delete these %d tracks? " (length tracks)))
(error "Cancelled!"))
(message "Deleting files..."))
(when (use-region-p) (goto-char start))
(dotimes (_ count)
(dolist (track (emms-browser-tracks-at-point))
(setq path (emms-track-get track 'name))
(when delete
(delete-file path))
(add-to-list 'dirs (file-name-directory path))
(emms-cache-del path))
;; remove the item from the browser
(when (emms-browser-tracks-at-point)
(emms-browser-delete-current-node)))
(deactivate-mark)
;; remove empty dirs
(when delete
(dolist (dir dirs)
(run-hook-with-args 'emms-browser-delete-files-hook dir tracks)
(condition-case nil
(delete-directory dir)
(error nil))))
(when delete
(message "Deleting files...done"))))
(defalias 'emms-browser-delete-files 'emms-browser-remove-tracks)
(put 'emms-browser-delete-files 'disabled t)
(defun emms-browser-clear-playlist ()
(interactive)
(with-current-emms-playlist
(emms-playlist-clear)))
(defun emms-browser-lookup (field url)
(let ((data
(emms-track-get (emms-browser-bdata-first-track
(emms-browser-bdata-at-point))
field)))
(when data
(browse-url
(concat url data)))))
(defun emms-browser-lookup-wikipedia (field)
(emms-browser-lookup
field "http://en.wikipedia.org/wiki/Special:Search?search="))
(defun emms-browser-lookup-artist-on-wikipedia ()
(interactive)
(emms-browser-lookup-wikipedia 'info-artist))
(defun emms-browser-lookup-composer-on-wikipedia ()
(interactive)
(emms-browser-lookup-wikipedia 'info-composer))
(defun emms-browser-lookup-performer-on-wikipedia ()
(interactive)
(emms-browser-lookup-wikipedia 'info-performer))
(defun emms-browser-lookup-album-on-wikipedia ()
(interactive)
(emms-browser-lookup-wikipedia 'info-album))
;; --------------------------------------------------
;; Linked browser and playlist windows
;; --------------------------------------------------
(defcustom emms-browser-switch-to-playlist-on-add
nil
"Whether to switch to to the playlist after adding files."
:group 'emms-browser
:type 'boolean)
;;;###autoload
(defun emms-smart-browse ()
"Display browser and playlist.
Toggle between selecting browser, playlist or hiding both. Tries
to behave sanely if the user has manually changed the window
configuration."
(interactive)
(add-to-list 'emms-browser-show-display-hook
'emms-browser-display-playlist)
(add-to-list 'emms-browser-hide-display-hook
'emms-browser-hide-linked-window)
;; switch to the playlist window when adding tracks?
(add-to-list 'emms-browser-tracks-added-hook
(lambda (start-of-tracks) (interactive)
(let (playlist-window)
(when emms-browser-switch-to-playlist-on-add
(emms-smart-browse))
;; center on the first added track/group name
(when
(setq playlist-window
(emms-browser-get-linked-window))
(emms-browser-with-selected-window
playlist-window
(goto-char start-of-tracks)
(recenter '(4)))))))
(let (wind buf)
(cond
((eq major-mode 'emms-browser-mode)
(setq buf (emms-browser-get-linked-buffer))
(setq wind (emms-browser-get-linked-window))
;; if the playlist window is visible, select it
(if wind
(select-window wind)
;; otherwise display and select it
(select-window (emms-browser-display-playlist))))
((eq major-mode 'emms-playlist-mode)
(setq wind (emms-browser-get-linked-window))
;; if the playlist window is selected, and the browser is visible,
;; hide both
(if wind
(progn
(select-window wind)
(emms-browser-bury-buffer)
;; After a browser search, the following buffer could be the
;; unfiltered browser, which we want to bury as well. We don't want
;; to call `emms-browser-hide-display-hook' for this one so we bury it
;; directly.
(when (eq major-mode 'emms-browser-mode)
(bury-buffer)))
;; otherwise bury both
(bury-buffer)
(emms-browser-hide-linked-window)))
(t
;; show both
(emms-browser)))))
(defun emms-browser-get-linked-buffer ()
"Return linked buffer (eg browser if playlist is selected."
(cond
((eq major-mode 'emms-browser-mode)
(car (emms-playlist-buffer-list)))
((eq major-mode 'emms-playlist-mode)
(emms-browser-get-buffer))))
(defun emms-browser-get-linked-window ()
"Return linked window (eg browser if playlist is selected."
(let ((buf (emms-browser-get-linked-buffer)))
(when buf
(get-buffer-window buf))))
(defun emms-browser-display-playlist ()
"A hook to show the playlist when the browser is displayed.
Returns the playlist window."
(interactive)
(let ((pbuf (emms-browser-get-linked-buffer))
(pwin (emms-browser-get-linked-window)))
;; if the window isn't alive..
(unless (window-live-p pwin)
(save-selected-window
(split-window-horizontally)
(other-window 1)
(if pbuf
(switch-to-buffer pbuf)
;; there's no playlist - create one
(setq pbuf (emms-playlist-current-clear))
(switch-to-buffer pbuf))
;; make q in the playlist window hide the linked browser
(when (boundp 'emms-playlist-mode-map)
(define-key emms-playlist-mode-map (kbd "q")
(lambda ()
(interactive)
(emms-browser-hide-linked-window)
(bury-buffer))))
(setq pwin (get-buffer-window pbuf))))
pwin))
(defun emms-browser-hide-linked-window ()
"Delete a playlist or browser window when the other is hidden."
(interactive)
(let ((other-buf (emms-browser-get-linked-buffer))
(other-win (emms-browser-get-linked-window)))
(when (and other-win
(window-live-p other-win))
(delete-window other-win))
;; bury the buffer, or it becomes visible when we hide the
;; linked buffer
(bury-buffer other-buf)))
;; --------------------------------------------------
;; Searching
;; --------------------------------------------------
(defun emms-browser-filter-cache (search-list)
"Return a list of tracks that match SEARCH-LIST.
SEARCH-LIST is a list of cons pairs, in the form:
((field1 field2) string)
If string matches any of the fields in a cons pair, it will be
included."
(let (tracks)
(maphash (lambda (k track)
(when (emms-browser-matches-p track search-list)
(push track tracks)))
emms-cache-db)
tracks))
(defun emms-browser-matches-p (track search-list)
(let (no-match matched)
(dolist (item search-list)
(setq matched nil)
(dolist (field (car item))
(let ((track-field (emms-track-get track field "")))
(when (and track-field (string-match (cadr item) track-field))
(setq matched t))))
(unless matched
(setq no-match t)))
(not no-match)))
(defun emms-browser-search-buffer-go ()
"Create a new search buffer, or clean the existing one."
(switch-to-buffer
(get-buffer-create emms-browser-search-buffer-name))
(emms-browser-mode t)
(use-local-map emms-browser-search-mode-map)
(emms-with-inhibit-read-only-t
(delete-region (point-min) (point-max))))
(defun emms-browser-search (fields)
"Search for STR using FIELDS."
(let* ((prompt (format "Searching with %S: " fields))
(str (read-string prompt)))
(emms-browser-search-buffer-go)
(emms-with-inhibit-read-only-t
(emms-browser-render-search
(emms-browser-filter-cache
(list (list fields str)))))
(emms-browser-expand-all)
(goto-char (point-min))))
(defun emms-browser-render-search (tracks)
(let ((entries
(emms-browser-make-sorted-alist 'info-artist tracks)))
(dolist (entry entries)
(emms-browser-insert-top-level-entry (car entry)
(cdr entry)
'info-artist))))
;; hmm - should we be doing this?
(defun emms-browser-kill-search ()
"Kill the buffer when q is hit."
(interactive)
(kill-buffer (current-buffer)))
(defun emms-browser-search-by-artist ()
(interactive)
(emms-browser-search '(info-artist)))
(defun emms-browser-search-by-composer ()
(interactive)
(emms-browser-search '(info-composer)))
(defun emms-browser-search-by-performer ()
(interactive)
(emms-browser-search '(info-performer)))
(defun emms-browser-search-by-title ()
(interactive)
(emms-browser-search '(info-title)))
(defun emms-browser-search-by-album ()
(interactive)
(emms-browser-search '(info-album)))
(defun emms-browser-search-by-names ()
(interactive)
(emms-browser-search '(info-artist info-composer info-performer info-title info-album)))
;; --------------------------------------------------
;; Album covers
;; --------------------------------------------------
(defun emms-browser--build-cover-filename ()
"Build `emms-browser--covers-filename'.
Based on from `emms-browser-covers' (when a list) and
`emms-browser-covers-file-extensions'."
(setq emms-browser--covers-filename
(mapcar (lambda (cover)
(if (file-name-extension cover)
(list cover)
(mapcar (lambda (ext) (concat cover "." ext))
emms-browser-covers-file-extensions)))
emms-browser-covers)))
(defun emms-browser-get-cover-from-album (bdata &optional size)
(cl-assert (eq (emms-browser-bdata-type bdata) 'info-album))
(let* ((track1data (emms-browser-bdata-data bdata))
(track1 (car (emms-browser-bdata-data (car track1data))))
(path (emms-track-get track1 'name)))
(emms-browser-get-cover-from-path path size)))
(defun emms-browser-get-cover-from-path (path &optional size)
"Return a cover filename, if it exists."
(unless size
(setq size 'medium))
(let* ((size-idx (cond
((eq size 'small) 0)
((eq size 'medium) 1)
((eq size 'large) 2)))
(cover
(cond
((functionp emms-browser-covers)
(funcall emms-browser-covers (file-name-directory path) size))
((and (listp emms-browser-covers)
(nth size-idx emms-browser-covers))
(unless emms-browser--covers-filename
(emms-browser--build-cover-filename))
(car (delq nil
(mapcar (lambda (cover)
(let ((coverpath
(concat (file-name-directory path) cover)))
(and (file-exists-p coverpath) coverpath)))
(nth size-idx emms-browser--covers-filename))))))))
(if (and cover (file-readable-p cover))
cover
;; no cover found, use default
(when emms-browser-default-covers
(nth size-idx emms-browser-default-covers)))))
(defun emms-browser-insert-cover (path)
(insert (emms-browser-make-cover path)))
(defun emms-browser-make-cover (path)
(let* ((ext (file-name-extension path))
(type (cond
((string= ext "png") 'png)
((string= ext "xbm") 'xbm)
((string= ext "xpm") 'xpm)
((string= ext "pbm") 'pbm)
((string-match "e?ps"
ext) 'postscript)
((string= ext "gif") 'gif)
((string= ext "tiff") 'tiff)
(t 'jpeg))))
(emms-propertize " "
'display `(image
:type ,type
:margin 5
:file ,path)
'rear-nonsticky '(display))))
(defun emms-browser-get-cover-str (path size)
(let ((cover (emms-browser-get-cover-from-path path size)))
(if cover
(emms-browser-make-cover cover)
;; we use a single space so that cover & no cover tracks line up
;; in a terminal
" ")))
;; --------------------------------------------------
;; Display formats
;; --------------------------------------------------
(defun emms-browser-bdata-first-track (bdata)
"Return the first track from a given bdata.
If > album level, most of the track data will not make sense."
(let ((type (emms-browser-bdata-type bdata)))
(if (eq type 'info-title)
(car (emms-browser-bdata-data bdata))
;; recurse
(emms-browser-bdata-first-track
(car (emms-browser-bdata-data bdata))))))
(defun emms-browser-insert-format (bdata)
(emms-with-inhibit-read-only-t
(insert
(emms-browser-format-line bdata)
"\n")))
(defun emms-browser-make-indent (level)
(or
emms-browser-current-indent
(make-string (* 1 (1- level)) ?\s)))
(defun emms-browser-format-elem (format-string elem)
(cdr (assoc elem format-string)))
(defun emms-browser-format-line (bdata &optional target)
"Return a propertized string to be inserted in the buffer."
(unless target
(setq target 'browser))
(let* ((name (or (emms-browser-bdata-name bdata) "misc"))
(level (emms-browser-bdata-level bdata))
(type (emms-browser-bdata-type bdata))
(indent (emms-browser-make-indent level))
(track (emms-browser-bdata-first-track bdata))
(path (emms-track-get track 'name))
(face (emms-browser-get-face bdata))
(format (emms-browser-get-format bdata target))
(props (list 'emms-browser-bdata bdata))
(format-choices
`(("i" . ,indent)
("n" . ,name)
("y" . ,(emms-track-get-year track))
("A" . ,(emms-track-get track 'info-album))
("a" . ,(emms-track-get track 'info-artist))
("C" . ,(emms-track-get track 'info-composer))
("p" . ,(emms-track-get track 'info-performer))
("t" . ,(emms-track-get track 'info-title))
("D" . ,(emms-browser-disc-number track))
("T" . ,(emms-browser-track-number track))
("d" . ,(emms-browser-track-duration track))))
str)
(when (equal type 'info-album)
(setq format-choices (append format-choices
`(("cS" . ,(emms-browser-get-cover-str path 'small))
("cM" . ,(emms-browser-get-cover-str path 'medium))
("cL" . ,(emms-browser-get-cover-str path 'large))))))
(when (functionp format)
(setq format (funcall format bdata format-choices)))
(setq str
(with-temp-buffer
(insert format)
(goto-char (point-min))
(let ((start (point-min)))
;; jump over any image
(when (re-search-forward "%c[SML]" nil t)
(setq start (point)))
;; jump over the indent
(when (re-search-forward "%i" nil t)
(setq start (point)))
(add-text-properties start (point-max)
(list 'face face)))
(buffer-string)))
(setq str (emms-browser-format-spec str format-choices))
;; give tracks a 'boost' if they're not top-level
;; (covers take up an extra space)
(when (and (eq type 'info-title)
(not (string= indent "")))
(setq str (concat " " str)))
;; if we're in playlist mode, add a track
(when (and (eq target 'playlist)
(eq type 'info-title))
(setq props
(append props `(emms-track ,track))))
;; add properties to the whole string
(add-text-properties 0 (length str) props str)
str))
(defun emms-browser-get-face (bdata)
"Return a suitable face for BDATA."
(let* ((type (emms-browser-bdata-type bdata))
(name (cond
((or (eq type 'info-year)
(eq type 'info-genre)) "year/genre")
((eq type 'info-artist) "artist")
((eq type 'info-composer) "composer")
((eq type 'info-performer) "performer")
((eq type 'info-album) "album")
((eq type 'info-title) "track"))))
(intern
(concat "emms-browser-" name "-face"))))
;; based on gnus code
(defun emms-browser-format-spec (format specification)
"Return a string based on FORMAT and SPECIFICATION.
FORMAT is a string containing `format'-like specs like \"bash %u %k\",
while SPECIFICATION is an alist mapping from format spec characters
to values. Any text properties on a %-spec itself are propagated to
the text that it generates."
(with-temp-buffer
(insert format)
(goto-char (point-min))
(while (search-forward "%" nil t)
(cond
;; Quoted percent sign.
((eq (char-after) ?%)
(delete-char 1))
;; Valid format spec.
((looking-at "\\([-0-9.]*\\)\\([a-zA-Z]+\\)")
(let* ((num (match-string 1))
(spec (match-string 2))
(val (cdr (assoc spec specification))))
(unless val
(error "Invalid format character: %s" spec))
;; Pad result to desired length.
(let ((text (format (concat "%" num "s") val)))
;; Insert first, to preserve text properties.
(insert-and-inherit text)
;; Delete the specifier body.
(delete-region (+ (match-beginning 0) (length text))
(+ (match-end 0) (length text)))
;; Delete the percent sign.
(delete-region (1- (match-beginning 0)) (match-beginning 0)))))
;; Signal an error on bogus format strings.
(t
(error "Invalid format string"))))
(buffer-string)))
;; --------------------------------------------------
;; Display formats - defaults
;; --------------------------------------------------
;; FIXME: optional format strings would avoid having to define a
;; function for specifiers which may be empty.
(defvar emms-browser-default-format "%i%n"
"indent + name")
;; tracks
(defvar emms-browser-info-title-format
'emms-browser-track-artist-and-title-format)
(defvar emms-browser-playlist-info-title-format
'emms-browser-track-artist-and-title-format)
(defun emms-browser-get-format (bdata target)
(let* ((type (emms-browser-bdata-type bdata))
(target-str (or
(and (eq target 'browser) "")
(concat (symbol-name target) "-")))
(sym
(intern
(concat "emms-browser-"
target-str
(symbol-name type)
"-format"))))
(if (boundp sym)
(symbol-value sym)
emms-browser-default-format)))
(defun emms-browser-track-artist-and-title-format (bdata fmt)
(concat
"%i"
(let ((track (emms-browser-format-elem fmt "T")))
(if (and track (not (string= track "0")))
"%T. "
""))
"%n"))
;; albums - we define two formats, one for a small cover (browser),
;; and one for a medium sized cover (playlist).
(defvar emms-browser-info-album-format
'emms-browser-year-and-album-fmt)
(defvar emms-browser-playlist-info-album-format
'emms-browser-year-and-album-fmt-med)
(defun emms-browser-year-and-album-fmt (bdata fmt)
(concat
"%i%cS"
(let ((year (emms-browser-format-elem fmt "y")))
(if (and year (not (string= year "0")))
"(%y) "
""))
"%n"))
(defun emms-browser-year-and-album-fmt-med (bdata fmt)
(concat
"%i%cM"
(let ((year (emms-browser-format-elem fmt "y")))
(if (and year (not (string= year "0")))
"(%y) "
""))
"%n"))
;; --------------------------------------------------
;; Display faces
;; --------------------------------------------------
(defmacro emms-browser-make-face (name dark-col light-col height)
(let ((face-name (intern (concat "emms-browser-" name "-face"))))
`(defface ,face-name
'((((class color) (background dark))
(:foreground ,dark-col
:height ,height))
(((class color) (background light))
(:foreground ,light-col
:height ,height))
(((type tty) (class mono))
(:inverse-video t))
(t (:background ,dark-col)))
,(concat "Face for "
name
" in a browser/playlist buffer.")
:group 'emms-browser-mode)))
(emms-browser-make-face "year/genre" "#aaaaff" "#444477" 1.5)
(emms-browser-make-face "artist" "#aaaaff" "#444477" 1.3)
(emms-browser-make-face "composer" "#aaaaff" "#444477" 1.3)
(emms-browser-make-face "performer" "#aaaaff" "#444477" 1.3)
(emms-browser-make-face "album" "#aaaaff" "#444477" 1.1)
(emms-browser-make-face "track" "#aaaaff" "#444477" 1.0)
;; --------------------------------------------------
;; Filtering
;; --------------------------------------------------
(defvar emms-browser-filters nil
"A list of available filters.")
(defmacro emms-browser-make-filter (name func)
"Make a user-level function for filtering tracks.
This:
- defines an interactive function M-x emms-browser-show-NAME.
- defines a variable emms-browser-filter-NAME of (name . func).
- adds the filter to emms-browser-filters."
(let ((funcnam (intern (concat "emms-browser-show-" name)))
(var (intern (concat "emms-browser-filter-" name)))
(desc (concat "Filter the cache using rule '"
name "'")))
`(progn
(defvar ,var nil ,desc)
(setq ,var (cons ,name ,func))
(add-to-list 'emms-browser-filters ,var)
(defun ,funcnam ()
,desc
(interactive)
(emms-browser-refilter ,var)))))
(defun emms-browser-set-filter (filter)
"Set the current filter to be used on next update.
This does not refresh the current buffer."
(setq emms-browser-filter-tracks-hook (cdr filter))
(setq emms-browser-current-filter-name (car filter))
(run-hooks 'emms-browser-filter-changed-hook))
(defun emms-browser-refilter (filter)
"Filter and render the top-level tracks."
(emms-browser-set-filter filter)
(emms-browse-by (or emms-browser-top-level-type
emms-browser-default-browse-type)))
(defun emms-browser-next-filter (&optional reverse)
"Redisplay with the next filter."
(interactive)
(let* ((list (if reverse
(reverse emms-browser-filters)
emms-browser-filters))
(key emms-browser-current-filter-name)
(next (cadr (member (assoc key list) list))))
;; wrapped
(unless next
(setq next (car list)))
(emms-browser-refilter next)))
(defun emms-browser-previous-filter ()
"Redisplay with the previous filter."
(interactive)
(emms-browser-next-filter t))
(defun emms-browser-filter-only-dir (path)
"Generate a function which checks if a track is in path.
If the track is not in path, return t."
`(lambda (track)
(not (string-match ,(concat "^" (expand-file-name path))
(emms-track-get track 'name)))))
(defun emms-browser-filter-only-type (type)
"Generate a function which checks a track's type.
If the track is not of TYPE, return t."
`(lambda (track)
(not (eq (quote ,type) (emms-track-get track 'type)))))
;; seconds in a day (* 60 60 24) = 86400
(defun emms-browser-filter-only-recent (days)
"Show only tracks played within the last number of DAYS."
`(lambda (track)
(let ((min-date (time-subtract
(current-time)
(seconds-to-time (* ,days 86400))))
last-played)
(not (and (setq last-played
(emms-track-get track 'last-played nil))
(time-less-p min-date last-played))))))
;; TODO: Add function to clear the cache from thumbnails that have no associated
;; cover folders. This is especially useful in case the music library path
;; changes: currently, all covers will have to be re-cached while the old ones
;; are left as is, useless.
;; TODO: `emms-browser-expand-all' is slow because of all the covers (about 30
;; sec fot 1500 covers in my case). Try to profile & optimize. It will
;; probably not be enough and we might need to run emms-browser-expand-all
;; asynchronously.
(defvar emms-browser-thumbnail-directory (expand-file-name "thumbnails" emms-directory)
"Directory where to store cover thumbnails.")
(defvar emms-browser-thumbnail-small-size 128
"Cover thumbnail will be resized if necessary so that neither width nor height exceed this dimension.")
(defvar emms-browser-thumbnail-medium-size 256
"Cover thumbnail will be resized if necessary so that neither width nor height exceed this dimension.")
(defvar emms-browser-thumbnail-large-size 1024 ; Emms does not use large covers as of 2017-11-26.
"Cover thumbnail will be resized if necessary so that neither width nor height exceed this dimension.")
(defun emms-browser-thumbnail-filter-default (dir)
"Select covers containing 'front' or 'cover' in DIR.
If none was found, fallback on `emms-browser-thumbnail-filter-all'.
See `emms-browser-thumbnail-filter'."
(when (file-directory-p dir)
(let ((ls (directory-files dir t nil t))
(case-fold-search t)
covers)
(dolist (ext emms-browser-covers-file-extensions)
(setq covers (append (seq-filter (lambda (c) (string-match (concat "\\(front\\|cover\\).*\\." ext) c)) ls) covers)))
(unless covers
(setq covers (emms-browser-thumbnail-filter-all dir)))
covers)))
(defun emms-browser-thumbnail-filter-all (dir)
"Return the list of all files with `emms-browser-covers-file-extensions' in DIR.
See `emms-browser-thumbnail-filter'."
(let (covers)
(dolist (ext emms-browser-covers-file-extensions covers)
(setq covers (append (file-expand-wildcards (expand-file-name (concat "*." ext) dir)) covers)))))
(defvar emms-browser-thumbnail-filter 'emms-browser-thumbnail-filter-default
"This filter must hold a function that takes a directory argument and returns a list of cover file names.
The list will be processed by `emms-browser-cache-thumbnail'.
See also `emms-browser-thumbnail-filter-default'.")
(defvar emms-browser-thumbnail-convert-program (executable-find "convert")
"The ImageMagick's `convert' program.")
(defun emms-browser-cache-thumbnail (dir size)
"Return cached cover SIZE for album in DIR.
SIZE must be 'small, 'medium or 'large. It will determine the
resolution of the cached file. See the variables
`emms-browser-thumbnail-SIZE-size'.
If cover is not cached or if cache is out-of-date, re-cache it.
If both the width and the height of the cover are smaller than
`emms-browser-thumbnail-SIZE-size', it need not be cached and
will be used directly.
Emms assumes that you have one album per folder. This function
will always use the same cover per folder.
`emms-browser-covers' can be `fset' to this function."
(if (eq size 'large)
;; 'large is unused for now. Return empty.
nil
(let (covers
cover
(cover-width 0) (cover-height 0)
(size-value (symbol-value (intern (concat "emms-browser-thumbnail-" (symbol-name size) "-size"))))
cache-dest-file)
(setq covers (funcall emms-browser-thumbnail-filter dir))
(if (not covers)
nil
;; Find best quality cover.
(let (res)
(dolist (c covers)
(setq res (image-size (create-image c) t))
;; image-size does not error, it returns (30 . 30) instead.
(and (> (car res) 30) (> (cdr res) 30)
(< cover-width (car res)) (< cover-height (cdr res))
(setq cover-width (car res) cover-height (cdr res) cover c))))
(if (and (>= size-value cover-width) (>= size-value cover-height))
;; No need to resize and cache.
cover
(let ((cache-dest (concat emms-browser-thumbnail-directory (file-name-directory cover))))
(mkdir cache-dest t)
(setq cache-dest-file (concat
(expand-file-name "cover_" cache-dest)
(symbol-name size)
"." (file-name-extension cover))))
(and emms-browser-thumbnail-convert-program
(or (not (file-exists-p cache-dest-file))
(time-less-p (nth 5 (file-attributes cache-dest-file))
(nth 5 (file-attributes cover)) ))
(let (err msg)
;; An Elisp function would be faster, but Emacs does not seem be be
;; able to resize image files. It can resize image displays though.
;; TODO: Add image resizing support to Emacs.
(setq msg (with-output-to-string
(with-current-buffer standard-output
(setq err (call-process (executable-find "convert") nil '(t t) nil
"-resize" (format "%sx%s" size-value size-value)
cover
cache-dest-file)))))
(when (/= err 0)
(warn "%s" msg)
(setq cache-dest-file nil))))
cache-dest-file)))))
(defvar emms-browser--cache-hash nil
"Cache for `emms-browser-cache-thumbnail-async'.")
(defun emms-browser-cache-thumbnail-async (dir size)
"Like `emms-browser-cache-thumbnail' but caches queries for faster lookups.
The drawback is that if changes are made to the covers in DIR
after `emms-browser-cache-thumbnail-async' queried them, it won't
be taken into account. Call `emms-browser-clear-cache-hash' to
refresh the cache."
(unless emms-browser--cache-hash
(setq emms-browser--cache-hash (make-hash-table :test 'equal)))
(let* ((key (cons dir size))
(val (gethash key emms-browser--cache-hash)))
(or val
(puthash key (emms-browser-cache-thumbnail dir size)
emms-browser--cache-hash))))
(defun emms-browser-clear-cache-hash ()
"Resets `emms-browser-cache-thumbnail-async' cache.
This is useful if there were changes on disk after
`emms-browser-cache-thumbnail-async' first cached them."
(interactive)
(clrhash emms-browser--cache-hash))
(provide 'emms-browser)
;;; emms-browser.el ends here
|