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 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537
|
/*
Copyright (C) 2002, 2003, 2004, 2005, 2006 Bastien Nocera
Copyright (C) 2003, 2004 Colin Walters <walters@rhythmbox.org>
The Gnome Library is free software; you can redistribute it and/or
modify it under the terms of the GNU Library General Public License as
published by the Free Software Foundation; either version 2 of the
License, or (at your option) any later version.
The Gnome Library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Library General Public License for more details.
You should have received a copy of the GNU Library General Public
License along with the Gnome Library; see the file COPYING.LIB. If not,
write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
Boston, MA 02110-1301 USA.
Authors: Bastien Nocera <hadess@hadess.net>
*/
/**
* SECTION:totem-pl-parser
* @short_description: playlist parser
* @stability: Stable
* @include: totem-pl-parser.h
*
* #TotemPlParser is a general-purpose playlist parser and writer, with
* support for several different types of playlist. Note that totem-pl-parser requires a main loop
* to operate properly (e.g. for the #TotemPlParser::entry-parsed signal to be emitted).
*
* <example>
* <title>Reading a Playlist</title>
* <programlisting>
* TotemPlParser *pl = totem_pl_parser_new ();
* g_object_set (pl, "recurse", FALSE, "disable-unsafe", TRUE, NULL);
* g_signal_connect (G_OBJECT (pl), "playlist-started", G_CALLBACK (playlist_started), NULL);
* g_signal_connect (G_OBJECT (pl), "entry-parsed", G_CALLBACK (entry_parsed), NULL);
*
* if (totem_pl_parser_parse (pl, "http://example.com/playlist.pls", FALSE) != TOTEM_PL_PARSER_RESULT_SUCCESS)
* g_error ("Playlist parsing failed.");
*
* g_object_unref (pl);
* </programlisting>
* </example>
*
* <example>
* <title>Reading a Playlist Asynchronously</title>
* <programlisting>
* TotemPlParser *pl = totem_pl_parser_new ();
* g_object_set (pl, "recurse", FALSE, "disable-unsafe", TRUE, NULL);
* g_signal_connect (G_OBJECT (pl), "playlist-started", G_CALLBACK (playlist_started), NULL);
* g_signal_connect (G_OBJECT (pl), "entry-parsed", G_CALLBACK (entry_parsed), NULL);
*
* totem_pl_parser_parse_async (pl, "http://example.com/playlist.pls", FALSE, NULL, parse_cb, NULL);
* g_object_unref (pl);
*
* static void
* parse_cb (TotemPlParser *parser, GAsyncResult *result, gpointer user_data)
* {
* GError *error = NULL;
* if (totem_pl_parser_parse_finish (parser, result, &error) != TOTEM_PL_PARSER_RESULT_SUCCESS) {
* g_error ("Playlist parsing failed: %s", error->message);
* g_error_free (error);
* }
* }
* </programlisting>
* </example>
*
* <example>
* <title>Getting Metadata from Entries</title>
* <programlisting>
* static void
* entry_parsed (TotemPlParser *parser, const gchar *uri, GHashTable *metadata, gpointer user_data)
* {
* gchar *title = g_hash_table_lookup (metadata, TOTEM_PL_PARSER_FIELD_TITLE);
* if (title != NULL)
* g_message ("Entry title: %s", title);
* else
* g_message ("Entry (URI: %s) has no title.", uri);
* }
* </programlisting>
* </example>
*
*
* <example>
* <title>Writing a Playlist</title>
* <programlisting>
* {
* TotemPlParser *pl;
* TotemPlPlaylist *playlist;
* TotemPlPlaylistIter iter;
* GFile *file;
*
* pl = totem_pl_parser_new ();
* playlist = totem_pl_playlist_new ();
* file = g_file_new_for_path ("/tmp/playlist.pls");
*
* totem_pl_playlist_append (playlist, &iter);
* totem_pl_playlist_set (playlist, &iter,
* TOTEM_PL_PARSER_FIELD_URI, "file:///1.ogg",
* TOTEM_PL_PARSER_FIELD_TITLE, "1.ogg",
* NULL);
*
* totem_pl_playlist_append (playlist, &iter);
* totem_pl_playlist_set (playlist, &iter,
* TOTEM_PL_PARSER_FIELD_URI, "file:///2.ogg",
* NULL);
*
* if (totem_pl_parser_save (pl, playlist, file, "Title",
* TOTEM_PL_PARSER_PLS, NULL) != TRUE) {
* g_error ("Playlist writing failed.");
* }
*
* g_object_unref (playlist);
* g_object_unref (pl);
* g_object_unref (file);
* }
* </programlisting>
* </example>
**/
#include "config.h"
#include <string.h>
#include <glib.h>
#include <glib/gstdio.h>
#include <glib/gi18n-lib.h>
#include <gio/gio.h>
#ifndef TOTEM_PL_PARSER_MINI
#include <gobject/gvaluecollector.h>
#ifdef HAVE_GMIME
#include <gmime/gmime-utils.h>
#endif
#include "totem-pl-parser.h"
#include "totemplparser-marshal.h"
#include "totem-disc.h"
#endif /* !TOTEM_PL_PARSER_MINI */
#include "totem-pl-parser-mini.h"
#include "totem-pl-parser-wm.h"
#include "totem-pl-parser-qt.h"
#include "totem-pl-parser-pls.h"
#include "totem-pl-parser-xspf.h"
#include "totem-pl-parser-media.h"
#include "totem-pl-parser-smil.h"
#include "totem-pl-parser-pla.h"
#include "totem-pl-parser-podcast.h"
#include "totem-pl-parser-lines.h"
#include "totem-pl-parser-misc.h"
#include "totem-pl-parser-private.h"
#include "totem-pl-parser-videosite.h"
#include "totem-pl-parser-amz.h"
#define READ_CHUNK_SIZE 8192
#define RECURSE_LEVEL_MAX 4
#define D(x) if (debug) x
typedef const char * (*PlaylistIdenCallback) (const char *data, gsize len);
#ifndef TOTEM_PL_PARSER_MINI
typedef TotemPlParserResult (*PlaylistCallback) (TotemPlParser *parser, GFile *uri, GFile *base_file, TotemPlParseData *parse_data, gpointer data);
#endif
typedef struct {
const char *mimetype;
#ifndef TOTEM_PL_PARSER_MINI
PlaylistCallback func;
#endif
PlaylistIdenCallback iden;
#ifndef TOTEM_PL_PARSER_MINI
guint unsafe : 1;
#endif
} PlaylistTypes;
#ifndef TOTEM_PL_PARSER_MINI
#define PLAYLIST_TYPE(mime,cb,identcb,unsafe) { mime, cb, identcb, unsafe }
#define PLAYLIST_TYPE2(mime,cb,identcb) { mime, cb, identcb }
#define PLAYLIST_TYPE3(mime) { mime, NULL, NULL, FALSE }
#else
#define PLAYLIST_TYPE(mime,cb,identcb,unsafe) { mime }
#define PLAYLIST_TYPE2(mime,cb,identcb) { mime, identcb }
#define PLAYLIST_TYPE3(mime) { mime }
#endif
/* These ones need a special treatment, mostly parser formats */
static PlaylistTypes special_types[] = {
PLAYLIST_TYPE ("audio/x-mpegurl", totem_pl_parser_add_m3u, NULL, FALSE),
PLAYLIST_TYPE ("video/vnd.mpegurl", totem_pl_parser_add_m4u, NULL, FALSE),
PLAYLIST_TYPE ("audio/playlist", totem_pl_parser_add_m3u, NULL, FALSE),
PLAYLIST_TYPE ("audio/x-scpls", totem_pl_parser_add_pls, NULL, FALSE),
PLAYLIST_TYPE ("application/x-smil", totem_pl_parser_add_smil, NULL, FALSE),
PLAYLIST_TYPE ("application/smil", totem_pl_parser_add_smil, NULL, FALSE),
PLAYLIST_TYPE ("application/vnd.ms-wpl", totem_pl_parser_add_smil, NULL, FALSE),
PLAYLIST_TYPE ("video/x-ms-wvx", totem_pl_parser_add_asx, NULL, FALSE),
PLAYLIST_TYPE ("audio/x-ms-wax", totem_pl_parser_add_asx, NULL, FALSE),
PLAYLIST_TYPE ("application/xspf+xml", totem_pl_parser_add_xspf, NULL, FALSE),
PLAYLIST_TYPE ("text/uri-list", totem_pl_parser_add_ra, totem_pl_parser_is_uri_list, FALSE),
PLAYLIST_TYPE ("text/x-google-video-pointer", totem_pl_parser_add_gvp, NULL, FALSE),
PLAYLIST_TYPE ("text/google-video-pointer", totem_pl_parser_add_gvp, NULL, FALSE),
PLAYLIST_TYPE ("audio/x-iriver-pla", totem_pl_parser_add_pla, NULL, FALSE),
PLAYLIST_TYPE ("application/atom+xml", totem_pl_parser_add_atom, NULL, FALSE),
PLAYLIST_TYPE ("application/rss+xml", totem_pl_parser_add_rss, totem_pl_parser_is_rss, FALSE),
PLAYLIST_TYPE ("text/x-opml+xml", totem_pl_parser_add_opml, NULL, FALSE),
PLAYLIST_TYPE ("audio/x-amzxml", totem_pl_parser_add_amz, NULL, FALSE),
#ifndef TOTEM_PL_PARSER_MINI
PLAYLIST_TYPE ("application/x-desktop", totem_pl_parser_add_desktop, NULL, TRUE),
PLAYLIST_TYPE ("application/x-gnome-app-info", totem_pl_parser_add_desktop, NULL, TRUE),
PLAYLIST_TYPE ("application/x-cd-image", totem_pl_parser_add_iso, NULL, TRUE),
PLAYLIST_TYPE ("application/x-extension-img", totem_pl_parser_add_iso, NULL, TRUE),
PLAYLIST_TYPE ("application/x-cue", totem_pl_parser_add_cue, NULL, TRUE),
PLAYLIST_TYPE (DIR_MIME_TYPE, totem_pl_parser_add_directory, NULL, TRUE),
PLAYLIST_TYPE (BLOCK_DEVICE_TYPE, totem_pl_parser_add_block, NULL, TRUE),
#endif
};
/* These ones are "dual" types, might be a video, might be a parser
* Please keep the same _is_ functions together */
static PlaylistTypes dual_types[] = {
PLAYLIST_TYPE2 ("audio/x-real-audio", totem_pl_parser_add_ra, totem_pl_parser_is_uri_list),
PLAYLIST_TYPE2 ("audio/x-pn-realaudio", totem_pl_parser_add_ra, totem_pl_parser_is_uri_list),
PLAYLIST_TYPE2 ("application/ram", totem_pl_parser_add_ra, totem_pl_parser_is_uri_list),
PLAYLIST_TYPE2 ("application/vnd.rn-realmedia", totem_pl_parser_add_ra, totem_pl_parser_is_uri_list),
PLAYLIST_TYPE2 ("audio/x-pn-realaudio-plugin", totem_pl_parser_add_ra, totem_pl_parser_is_uri_list),
PLAYLIST_TYPE2 ("audio/vnd.rn-realaudio", totem_pl_parser_add_ra, totem_pl_parser_is_uri_list),
PLAYLIST_TYPE2 ("audio/x-realaudio", totem_pl_parser_add_ra, totem_pl_parser_is_uri_list),
PLAYLIST_TYPE2 ("text/plain", totem_pl_parser_add_ra, totem_pl_parser_is_uri_list),
PLAYLIST_TYPE2 ("application/x-php", NULL, NULL),
PLAYLIST_TYPE2 ("audio/x-ms-asx", totem_pl_parser_add_asx, totem_pl_parser_is_asx),
PLAYLIST_TYPE2 ("video/x-ms-asf", totem_pl_parser_add_asf, totem_pl_parser_is_asf),
PLAYLIST_TYPE2 ("application/vnd.ms-asf", totem_pl_parser_add_asf, totem_pl_parser_is_asf),
PLAYLIST_TYPE2 ("video/x-ms-wmv", totem_pl_parser_add_asf, totem_pl_parser_is_asf),
PLAYLIST_TYPE2 ("audio/x-ms-wma", totem_pl_parser_add_asf, totem_pl_parser_is_asf),
PLAYLIST_TYPE2 ("video/quicktime", totem_pl_parser_add_quicktime, totem_pl_parser_is_quicktime),
PLAYLIST_TYPE2 ("video/mp4", totem_pl_parser_add_quicktime, totem_pl_parser_is_quicktime),
PLAYLIST_TYPE2 ("application/x-quicktime-media-link", totem_pl_parser_add_quicktime, totem_pl_parser_is_quicktime),
PLAYLIST_TYPE2 ("application/x-quicktimeplayer", totem_pl_parser_add_quicktime, totem_pl_parser_is_quicktime),
PLAYLIST_TYPE2 ("application/xml", totem_pl_parser_add_xml_feed, totem_pl_parser_is_xml_feed),
};
static char *totem_pl_parser_mime_type_from_data (gconstpointer data, int len);
#ifndef TOTEM_PL_PARSER_MINI
static void totem_pl_parser_set_property (GObject *object,
guint prop_id,
const GValue *value,
GParamSpec *pspec);
static void totem_pl_parser_get_property (GObject *object,
guint prop_id,
GValue *value,
GParamSpec *pspec);
struct TotemPlParserPrivate {
GHashTable *ignore_schemes; /* key = char *, value = boolean */
GHashTable *ignore_mimetypes; /*key = char *, value = boolean */
GMutex ignore_mutex;
GThread *main_thread; /* see CALL_ASYNC() in *-private.h */
guint recurse : 1;
guint debug : 1;
guint force : 1;
guint disable_unsafe : 1;
};
enum {
PROP_NONE,
PROP_RECURSE,
PROP_DEBUG,
PROP_FORCE,
PROP_DISABLE_UNSAFE
};
/* Signals */
enum {
ENTRY_PARSED,
PLAYLIST_STARTED,
PLAYLIST_ENDED,
LAST_SIGNAL
};
static int totem_pl_parser_table_signals[LAST_SIGNAL];
static GParamSpecPool *totem_pl_parser_pspec_pool = NULL;
static void totem_pl_parser_class_init (TotemPlParserClass *klass);
static void totem_pl_parser_base_class_finalize (TotemPlParserClass *klass);
static void totem_pl_parser_init (TotemPlParser *parser);
static void totem_pl_parser_finalize (GObject *object);
static gpointer totem_pl_parser_parent_class = NULL;
#define TOTEM_PL_PARSER_GET_PRIVATE(obj) (G_TYPE_INSTANCE_GET_PRIVATE ((obj), TOTEM_TYPE_PL_PARSER, TotemPlParserPrivate))
GType
totem_pl_parser_get_type (void)
{
static volatile gsize g_define_type_id__volatile = 0;
if (g_once_init_enter (&g_define_type_id__volatile))
{
const GTypeInfo g_define_type_info = {
sizeof (TotemPlParserClass),
NULL,
(GBaseFinalizeFunc) totem_pl_parser_base_class_finalize,
(GClassInitFunc) totem_pl_parser_class_init,
NULL,
NULL,
sizeof (TotemPlParser),
0,
(GInstanceInitFunc) totem_pl_parser_init,
};
GType g_define_type_id = g_type_register_static (G_TYPE_OBJECT, "TotemPlParser", &g_define_type_info, 0);
g_once_init_leave (&g_define_type_id__volatile, g_define_type_id);
}
return g_define_type_id__volatile;
}
static void
totem_pl_parser_class_init (TotemPlParserClass *klass)
{
GParamSpec *pspec;
GObjectClass *object_class = G_OBJECT_CLASS (klass);
totem_pl_parser_parent_class = g_type_class_peek_parent (klass);
g_type_class_add_private (klass, sizeof (TotemPlParserPrivate));
object_class->finalize = totem_pl_parser_finalize;
object_class->set_property = totem_pl_parser_set_property;
object_class->get_property = totem_pl_parser_get_property;
/* Properties */
/**
* TotemPlParser:recurse:
*
* If %TRUE, the parser will recursively fetch playlists linked to by
* the current one.
**/
g_object_class_install_property (object_class,
PROP_RECURSE,
g_param_spec_boolean ("recurse",
"recurse",
"Whether or not to process URIs further",
TRUE,
G_PARAM_READWRITE | G_PARAM_CONSTRUCT));
/**
* TotemPlParser:debug:
*
* If %TRUE, the parser will output debug information.
**/
g_object_class_install_property (object_class,
PROP_DEBUG,
g_param_spec_boolean ("debug",
"debug",
"Whether or not to enable debugging output",
FALSE,
G_PARAM_READWRITE));
/**
* TotemPlParser:force:
*
* If %TRUE, the parser will attempt to parse a playlist, even if it
* appears to be unsupported (usually because of its filename extension).
**/
g_object_class_install_property (object_class,
PROP_FORCE,
g_param_spec_boolean ("force",
"force",
"Whether or not to force parsing the file if the playlist looks unsupported",
FALSE,
G_PARAM_READWRITE));
/**
* TotemPlParser:disable-unsafe:
*
* If %TRUE, the parser will not parse unsafe locations, such as local devices
* and local files if the playlist isn't local. This is useful if the library
* is parsing a playlist from a remote location such as a website.
**/
g_object_class_install_property (object_class,
PROP_DISABLE_UNSAFE,
g_param_spec_boolean ("disable-unsafe",
"disable-unsafe",
"Whether or not to disable parsing of unsafe locations",
FALSE,
G_PARAM_READWRITE));
/**
* TotemPlParser::entry-parsed:
* @parser: the object which received the signal
* @uri: the URI of the entry parsed
* @metadata: (type GHashTable) (element-type utf8 utf8): a #GHashTable of metadata relating to the entry added
*
* The ::entry-parsed signal is emitted when a new entry is parsed.
*/
totem_pl_parser_table_signals[ENTRY_PARSED] =
g_signal_new ("entry-parsed",
G_TYPE_FROM_CLASS (klass),
G_SIGNAL_RUN_LAST,
G_STRUCT_OFFSET (TotemPlParserClass, entry_parsed),
NULL, NULL,
_totemplparser_marshal_VOID__STRING_BOXED,
G_TYPE_NONE, 2, G_TYPE_STRING, TOTEM_TYPE_PL_PARSER_METADATA);
/**
* TotemPlParser::playlist-started:
* @parser: the object which received the signal
* @uri: the URI of the new playlist started
* @metadata: (type GHashTable) (element-type utf8 utf8): a #GHashTable of metadata relating to the playlist that
* started.
*
* The ::playlist-started signal is emitted when a playlist parsing has
* started. This signal isn't emitted for all types of playlists, but
* can be relied on to be called for playlists which support playlist
* metadata, such as title.
*/
totem_pl_parser_table_signals[PLAYLIST_STARTED] =
g_signal_new ("playlist-started",
G_TYPE_FROM_CLASS (klass),
G_SIGNAL_RUN_LAST,
G_STRUCT_OFFSET (TotemPlParserClass, playlist_started),
NULL, NULL,
_totemplparser_marshal_VOID__STRING_BOXED,
G_TYPE_NONE, 2, G_TYPE_STRING, TOTEM_TYPE_PL_PARSER_METADATA);
/**
* TotemPlParser::playlist-ended:
* @parser: the object which received the signal
* @uri: the URI of the playlist that finished parsing.
*
* The ::playlist-ended signal is emitted when a playlist is finished
* parsing. It is only called when #TotemPlParser::playlist-started
* has been called for that playlist.
*/
totem_pl_parser_table_signals[PLAYLIST_ENDED] =
g_signal_new ("playlist-ended",
G_TYPE_FROM_CLASS (klass),
G_SIGNAL_RUN_LAST,
G_STRUCT_OFFSET (TotemPlParserClass, playlist_ended),
NULL, NULL,
g_cclosure_marshal_VOID__STRING,
G_TYPE_NONE, 1, G_TYPE_STRING);
/* param specs */
totem_pl_parser_pspec_pool = g_param_spec_pool_new (FALSE);
pspec = g_param_spec_string ("url", "url",
"URI to be added", NULL,
G_PARAM_READABLE & G_PARAM_WRITABLE);
g_param_spec_pool_insert (totem_pl_parser_pspec_pool, pspec, TOTEM_TYPE_PL_PARSER);
pspec = g_param_spec_string ("title", "title",
"Title of the item to be added", NULL,
G_PARAM_READABLE & G_PARAM_WRITABLE);
g_param_spec_pool_insert (totem_pl_parser_pspec_pool, pspec, TOTEM_TYPE_PL_PARSER);
pspec = g_param_spec_string ("author", "author",
"Author of the item to be added", NULL,
G_PARAM_READABLE & G_PARAM_WRITABLE);
g_param_spec_pool_insert (totem_pl_parser_pspec_pool, pspec, TOTEM_TYPE_PL_PARSER);
pspec = g_param_spec_string ("genre", "genre",
"Genre of the item to be added", NULL,
G_PARAM_READABLE & G_PARAM_WRITABLE);
g_param_spec_pool_insert (totem_pl_parser_pspec_pool, pspec, TOTEM_TYPE_PL_PARSER);
pspec = g_param_spec_string ("album", "album",
"Album of the item to be added", NULL,
G_PARAM_READABLE & G_PARAM_WRITABLE);
g_param_spec_pool_insert (totem_pl_parser_pspec_pool, pspec, TOTEM_TYPE_PL_PARSER);
pspec = g_param_spec_string ("base", "base",
"Base URI of the item to be added", NULL,
G_PARAM_READABLE & G_PARAM_WRITABLE);
g_param_spec_pool_insert (totem_pl_parser_pspec_pool, pspec, TOTEM_TYPE_PL_PARSER);
pspec = g_param_spec_string ("volume", "volume",
"Default playback volume (in percents)", NULL,
G_PARAM_READABLE & G_PARAM_WRITABLE);
g_param_spec_pool_insert (totem_pl_parser_pspec_pool, pspec, TOTEM_TYPE_PL_PARSER);
pspec = g_param_spec_string ("autoplay", "autoplay",
"Whether or not to autoplay the stream", NULL,
G_PARAM_READABLE & G_PARAM_WRITABLE);
g_param_spec_pool_insert (totem_pl_parser_pspec_pool, pspec, TOTEM_TYPE_PL_PARSER);
pspec = g_param_spec_string ("duration", "duration",
"String representing the duration of the entry", NULL,
G_PARAM_READABLE & G_PARAM_WRITABLE);
g_param_spec_pool_insert (totem_pl_parser_pspec_pool, pspec, TOTEM_TYPE_PL_PARSER);
pspec = g_param_spec_string ("duration-ms", "duration-ms",
"String representing the duration of the entry in milliseconds", NULL,
G_PARAM_READABLE & G_PARAM_WRITABLE);
g_param_spec_pool_insert (totem_pl_parser_pspec_pool, pspec, TOTEM_TYPE_PL_PARSER);
pspec = g_param_spec_string ("starttime", "starttime",
"String representing the start time of the stream (initial seek)", NULL,
G_PARAM_READABLE & G_PARAM_WRITABLE);
g_param_spec_pool_insert (totem_pl_parser_pspec_pool, pspec, TOTEM_TYPE_PL_PARSER);
pspec = g_param_spec_string ("copyright", "copyright",
"Copyright of the item to be added", NULL,
G_PARAM_READABLE & G_PARAM_WRITABLE);
g_param_spec_pool_insert (totem_pl_parser_pspec_pool, pspec, TOTEM_TYPE_PL_PARSER);
pspec = g_param_spec_string ("abstract", "abstract",
"Abstract of the item to be added", NULL,
G_PARAM_READABLE & G_PARAM_WRITABLE);
g_param_spec_pool_insert (totem_pl_parser_pspec_pool, pspec, TOTEM_TYPE_PL_PARSER);
pspec = g_param_spec_string ("moreinfo", "moreinfo",
"URI to get more information for item to be added", NULL,
G_PARAM_READABLE & G_PARAM_WRITABLE);
g_param_spec_pool_insert (totem_pl_parser_pspec_pool, pspec, TOTEM_TYPE_PL_PARSER);
pspec = g_param_spec_string ("screensize", "screensize",
"String representing the default movie size (double, full or original)", NULL,
G_PARAM_READABLE & G_PARAM_WRITABLE);
g_param_spec_pool_insert (totem_pl_parser_pspec_pool, pspec, TOTEM_TYPE_PL_PARSER);
pspec = g_param_spec_string ("ui-mode", "ui-mode",
"String representing the default UI mode (only compact is supported)", NULL,
G_PARAM_READABLE & G_PARAM_WRITABLE);
g_param_spec_pool_insert (totem_pl_parser_pspec_pool, pspec, TOTEM_TYPE_PL_PARSER);
pspec = g_param_spec_string ("endtime", "endtime",
"String representing the end time of the stream", NULL,
G_PARAM_READABLE & G_PARAM_WRITABLE);
g_param_spec_pool_insert (totem_pl_parser_pspec_pool, pspec, TOTEM_TYPE_PL_PARSER);
pspec = g_param_spec_boolean ("is-playlist", "is-playlist",
"Boolean saying whether the entry pushed is the top-level of a playlist", FALSE,
G_PARAM_READABLE & G_PARAM_WRITABLE);
g_param_spec_pool_insert (totem_pl_parser_pspec_pool, pspec, TOTEM_TYPE_PL_PARSER);
pspec = g_param_spec_string ("description", "description",
"String representing the description of the stream", NULL,
G_PARAM_READABLE & G_PARAM_WRITABLE);
g_param_spec_pool_insert (totem_pl_parser_pspec_pool, pspec, TOTEM_TYPE_PL_PARSER);
pspec = g_param_spec_string ("publication-date", "publication-date",
"String representing the publication date of the stream", NULL,
G_PARAM_READABLE & G_PARAM_WRITABLE);
g_param_spec_pool_insert (totem_pl_parser_pspec_pool, pspec, TOTEM_TYPE_PL_PARSER);
pspec = g_param_spec_string ("filesize", "filesize",
"String representing the filesize of a file", NULL,
G_PARAM_READABLE & G_PARAM_WRITABLE);
g_param_spec_pool_insert (totem_pl_parser_pspec_pool, pspec, TOTEM_TYPE_PL_PARSER);
pspec = g_param_spec_string ("language", "language",
"String representing the language of a stream", NULL,
G_PARAM_READABLE & G_PARAM_WRITABLE);
g_param_spec_pool_insert (totem_pl_parser_pspec_pool, pspec, TOTEM_TYPE_PL_PARSER);
pspec = g_param_spec_string ("contact", "contact",
"String representing the contact for a playlist", NULL,
G_PARAM_READABLE & G_PARAM_WRITABLE);
g_param_spec_pool_insert (totem_pl_parser_pspec_pool, pspec, TOTEM_TYPE_PL_PARSER);
pspec = g_param_spec_string ("image-url", "image-url",
"String representing the location of an image for a playlist", NULL,
G_PARAM_READABLE & G_PARAM_WRITABLE);
g_param_spec_pool_insert (totem_pl_parser_pspec_pool, pspec, TOTEM_TYPE_PL_PARSER);
pspec = g_param_spec_object ("gfile-object", "gfile-object",
"Object representing the GFile for an entry", G_TYPE_FILE,
G_PARAM_READABLE & G_PARAM_WRITABLE);
g_param_spec_pool_insert (totem_pl_parser_pspec_pool, pspec, TOTEM_TYPE_PL_PARSER);
pspec = g_param_spec_object ("gfile-object-base", "gfile-object-base",
"Object representing the GFile for base URI of an entry", G_TYPE_FILE,
G_PARAM_READABLE & G_PARAM_WRITABLE);
g_param_spec_pool_insert (totem_pl_parser_pspec_pool, pspec, TOTEM_TYPE_PL_PARSER);
pspec = g_param_spec_string ("download-url", "download-url",
"String representing the location of a download URI", NULL,
G_PARAM_READABLE & G_PARAM_WRITABLE);
g_param_spec_pool_insert (totem_pl_parser_pspec_pool, pspec, TOTEM_TYPE_PL_PARSER);
pspec = g_param_spec_string ("id", "id",
"String representing the identifier for an entry", NULL,
G_PARAM_READABLE & G_PARAM_WRITABLE);
g_param_spec_pool_insert (totem_pl_parser_pspec_pool, pspec, TOTEM_TYPE_PL_PARSER);
pspec = g_param_spec_string ("subtitle-uri", "subtitle-uri",
"Subtitle URI to be added", NULL,
G_PARAM_READABLE & G_PARAM_WRITABLE);
g_param_spec_pool_insert (totem_pl_parser_pspec_pool, pspec, TOTEM_TYPE_PL_PARSER);
pspec = g_param_spec_string ("content-type", "content-type",
"Content type for the video stream", NULL,
G_PARAM_READABLE & G_PARAM_WRITABLE);
g_param_spec_pool_insert (totem_pl_parser_pspec_pool, pspec, TOTEM_TYPE_PL_PARSER);
pspec = g_param_spec_string ("playing", "playing",
"Whether the track is playing", NULL,
G_PARAM_READABLE & G_PARAM_WRITABLE);
g_param_spec_pool_insert (totem_pl_parser_pspec_pool, pspec, TOTEM_TYPE_PL_PARSER);
}
static void
totem_pl_parser_base_class_finalize (TotemPlParserClass *klass)
{
GList *list, *node;
list = g_param_spec_pool_list_owned (totem_pl_parser_pspec_pool, G_OBJECT_CLASS_TYPE (klass));
for (node = list; node; node = node->next) {
GParamSpec *pspec = node->data;
g_param_spec_pool_remove (totem_pl_parser_pspec_pool, pspec);
g_param_spec_unref (pspec);
}
g_list_free (list);
}
static void
totem_pl_parser_set_property (GObject *object,
guint prop_id,
const GValue *value,
GParamSpec *pspec)
{
TotemPlParser *parser = TOTEM_PL_PARSER (object);
switch (prop_id)
{
case PROP_RECURSE:
parser->priv->recurse = g_value_get_boolean (value) != FALSE;
break;
case PROP_DEBUG:
parser->priv->debug = g_value_get_boolean (value) != FALSE;
break;
case PROP_FORCE:
parser->priv->force = g_value_get_boolean (value) != FALSE;
break;
case PROP_DISABLE_UNSAFE:
parser->priv->disable_unsafe = g_value_get_boolean (value) != FALSE;
break;
default:
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
break;
}
}
static void
totem_pl_parser_get_property (GObject *object,
guint prop_id,
GValue *value,
GParamSpec *pspec)
{
TotemPlParser *parser = TOTEM_PL_PARSER (object);
switch (prop_id)
{
case PROP_RECURSE:
g_value_set_boolean (value, parser->priv->recurse);
break;
case PROP_DEBUG:
g_value_set_boolean (value, parser->priv->debug);
break;
case PROP_FORCE:
g_value_set_boolean (value, parser->priv->force);
break;
case PROP_DISABLE_UNSAFE:
g_value_set_boolean (value, parser->priv->disable_unsafe);
break;
default:
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
break;
}
}
GQuark
totem_pl_parser_error_quark (void)
{
static GQuark quark;
if (!quark)
quark = g_quark_from_static_string ("totem_pl_parser_error");
return quark;
}
static gpointer
totem_pl_parser_real_init_i18n (gpointer data)
{
bindtextdomain (GETTEXT_PACKAGE, GNOMELOCALEDIR);
bind_textdomain_codeset (GETTEXT_PACKAGE, "UTF-8");
return NULL;
}
static void
totem_pl_parser_init_i18n (void)
{
static GOnce my_once = G_ONCE_INIT;
g_once (&my_once, totem_pl_parser_real_init_i18n, NULL);
}
/**
* totem_pl_parser_new:
*
* Creates a #TotemPlParser object.
*
* Return value: a new #TotemPlParser
*/
TotemPlParser *
totem_pl_parser_new (void)
{
totem_pl_parser_init_i18n ();
return TOTEM_PL_PARSER (g_object_new (TOTEM_TYPE_PL_PARSER, NULL));
}
typedef struct {
TotemPlParser *parser;
char *playlist_uri;
} PlaylistEndedSignalData;
static gboolean
emit_playlist_ended_signal (PlaylistEndedSignalData *data)
{
g_signal_emit (data->parser,
totem_pl_parser_table_signals[PLAYLIST_ENDED],
0, data->playlist_uri);
/* Free the data */
g_object_unref (data->parser);
g_free (data->playlist_uri);
g_free (data);
return FALSE;
}
/**
* totem_pl_parser_playlist_end:
* @parser: a #TotemPlParser
* @playlist_uri: the playlist URI
*
* Emits the #TotemPlParser::playlist-ended signal on @parser for
* the playlist @playlist_uri.
**/
void
totem_pl_parser_playlist_end (TotemPlParser *parser, const char *playlist_uri)
{
PlaylistEndedSignalData *data;
data = g_new (PlaylistEndedSignalData, 1);
data->parser = g_object_ref (parser);
data->playlist_uri = g_strdup (playlist_uri);
CALL_ASYNC (parser, emit_playlist_ended_signal, data);
}
static char *
my_g_file_info_get_mime_type_with_data (GFile *file, gpointer *data, TotemPlParser *parser)
{
char *buffer;
gsize bytes_read;
GFileInputStream *stream;
GError *error = NULL;
*data = NULL;
#ifndef _WIN32
/* Stat for a block device, we're screwed as far as speed
* is concerned now */
if (g_file_is_native (file) != FALSE) {
struct stat buf;
char *path;
path = g_file_get_path (file);
if (g_stat (path, &buf) == 0 && S_ISBLK (buf.st_mode)) {
g_free (path);
return g_strdup (BLOCK_DEVICE_TYPE);
}
g_free (path);
}
#endif
/* Open the file. */
stream = g_file_read (file, NULL, &error);
if (stream == NULL) {
if (g_error_matches (error, G_IO_ERROR, G_IO_ERROR_IS_DIRECTORY) != FALSE) {
g_error_free (error);
return g_strdup (DIR_MIME_TYPE);
}
DEBUG(file, g_print ("URI '%s' couldn't be opened in _get_mime_type_with_data: '%s'\n", uri, error->message));
g_error_free (error);
return NULL;
}
DEBUG(file, g_print ("URI '%s' was opened successfully in _get_mime_type_with_data\n", uri));
/* Read the whole thing, up to MIME_READ_CHUNK_SIZE */
buffer = g_malloc (MIME_READ_CHUNK_SIZE);
if (g_input_stream_read_all (G_INPUT_STREAM (stream), buffer, MIME_READ_CHUNK_SIZE, &bytes_read, NULL, &error) == FALSE) {
g_object_unref (stream);
DEBUG(file, g_print ("Couldn't read data from '%s'\n", uri));
g_free (buffer);
return NULL;
}
g_object_unref (G_INPUT_STREAM (stream));
/* Empty file */
if (bytes_read == 0) {
g_free (buffer);
DEBUG(file, g_print ("URI '%s' is empty in _get_mime_type_with_data\n", uri));
return g_strdup (EMPTY_FILE_TYPE);
}
/* Return the file null-terminated. */
buffer = g_realloc (buffer, bytes_read + 1);
buffer[bytes_read] = '\0';
*data = buffer;
return totem_pl_parser_mime_type_from_data (*data, bytes_read);
}
/**
* totem_pl_parser_is_debugging_enabled:
* @parser: a #TotemPlParser
*
* Returns whether debugging is enabled. This is a private method, not exposed by the library.
*
* Return value: %TRUE if debugging is enabled, %FALSE otherwise
**/
gboolean
totem_pl_parser_is_debugging_enabled (TotemPlParser *parser)
{
return parser->priv->debug;
}
/**
* totem_pl_parser_base_uri:
* @uri: a URI
*
* Returns the parent URI of @uri.
*
* Return value: a newly-allocated string containing @uri's parent URI, or %NULL
**/
char *
totem_pl_parser_base_uri (GFile *uri)
{
GFile *parent;
char *ret;
parent = g_file_get_parent (uri);
ret = g_file_get_uri (parent);
g_object_unref (uri);
return ret;
}
/**
* totem_pl_parser_line_is_empty:
* @line: a playlist line to check
*
* Checks to see if the given string line is empty or %NULL,
* counting tabs and spaces, but not newlines, as "empty".
*
* Return value: %TRUE if @line is empty
**/
gboolean
totem_pl_parser_line_is_empty (const char *line)
{
guint i;
if (line == NULL)
return TRUE;
for (i = 0; line[i] != '\0'; i++) {
if (line[i] != '\t' && line[i] != ' ')
return FALSE;
}
return TRUE;
}
/**
* totem_pl_parser_write_string:
* @handle: a #GFileOutputStream to an open file
* @buf: the string buffer to write out
* @error: return location for a #GError, or %NULL
*
* Writes the string @buf out to the file specified by @handle.
* Possible error codes are as per totem_pl_parser_write_buffer().
*
* Return value: %TRUE on success
**/
gboolean
totem_pl_parser_write_string (GOutputStream *stream, const char *buf, GError **error)
{
guint len;
len = strlen (buf);
return totem_pl_parser_write_buffer (stream, buf, len, error);
}
/**
* totem_pl_parser_write_buffer:
* @stream: a #GFileOutputStream to an open file
* @buf: the string buffer to write out
* @len: the length of the string to write out
* @error: return location for a #GError, or %NULL
*
* Writes @len bytes of @buf to the file specified by @handle.
*
* A value of @len greater than #G_MAXSSIZE will cause a #G_IO_ERROR_INVALID_ARGUMENT argument.
*
* Return value: %TRUE on success
**/
gboolean
totem_pl_parser_write_buffer (GOutputStream *stream, const char *buf, guint len, GError **error)
{
gsize bytes_written;
if (g_output_stream_write_all (stream,
buf, len,
&bytes_written,
NULL, error) == FALSE) {
g_object_unref (stream);
return FALSE;
}
return TRUE;
}
/**
* totem_pl_parser_num_entries:
* @parser: a #TotemPlParser
* @playlist: a #TotemPlPlaylist
*
* Returns the number of valid entries in @playlist.
*
* Return value: the number of entries in the playlist
**/
int
totem_pl_parser_num_entries (TotemPlParser *parser,
TotemPlPlaylist *playlist)
{
int num_entries, ignored;
TotemPlPlaylistIter iter;
gboolean valid;
num_entries = totem_pl_playlist_size (playlist);
valid = totem_pl_playlist_iter_first (playlist, &iter);
ignored = 0;
while (valid) {
gchar *uri;
GFile *file;
totem_pl_playlist_get (playlist, &iter,
TOTEM_PL_PARSER_FIELD_URI, &uri,
NULL);
valid = totem_pl_playlist_iter_next (playlist, &iter);
if (!uri) {
ignored++;
continue;
}
file = g_file_new_for_uri (uri);
if (totem_pl_parser_scheme_is_ignored (parser, file)) {
ignored++;
}
g_object_unref (file);
g_free (uri);
}
return num_entries - ignored;
}
char *
totem_pl_parser_relative (GFile *output, const char *filepath)
{
GFile *parent, *file;
char *retval;
parent = g_file_get_parent (output);
file = g_file_new_for_commandline_arg (filepath);
retval = g_file_get_relative_path (parent, file);
g_object_unref (parent);
g_object_unref (file);
return retval;
}
static char *
relative_uri_remove_query (const char *uri, char **query)
{
char *qmark;
/* Look for '?' */
qmark = strrchr (uri, '?');
if (qmark == NULL)
return NULL;
if (query != NULL)
*query = g_strdup (qmark);
return g_strndup (uri, qmark - uri);
}
static const char *suffixes[] = {
".jsp",
".php",
".asp"
};
static gboolean
is_probably_dir (const char *filename)
{
gboolean ret;
char *content_type, *short_name;
short_name = relative_uri_remove_query (filename, NULL);
if (short_name == NULL)
short_name = g_strdup (filename);
content_type = g_content_type_guess (short_name, NULL, 0, NULL);
if (g_content_type_is_unknown (content_type) != FALSE) {
guint i;
for (i = 0; i < G_N_ELEMENTS (suffixes); i++) {
if (g_str_has_suffix (short_name, suffixes[i]) != FALSE) {
g_free (content_type);
g_free (short_name);
return FALSE;
}
}
ret = TRUE;
} else {
ret = FALSE;
}
g_free (content_type);
g_free (short_name);
return ret;
}
char *
totem_pl_parser_resolve_uri (GFile *base_gfile,
const char *relative_uri)
{
char *uri, *scheme, *query, *new_relative_uri, *base_uri;
GFile *base_parent_gfile, *resolved_gfile;
if (relative_uri == NULL) {
if (base_gfile == NULL)
return NULL;
return g_file_get_uri (base_gfile);
}
if (base_gfile == NULL)
return g_strdup (relative_uri);
/* If |relative_uri| has a scheme, it's a full URI, just return it */
scheme = g_uri_parse_scheme (relative_uri);
if (scheme != NULL) {
g_free (scheme);
return g_strdup (relative_uri);
}
/* Check whether we need to get the parent for the base or not */
base_uri = g_file_get_path (base_gfile);
if (base_uri == NULL)
base_uri = g_file_get_uri (base_gfile);
if (is_probably_dir (base_uri) == FALSE)
base_parent_gfile = g_file_get_parent (base_gfile);
else
base_parent_gfile = g_object_ref (base_gfile);
g_free (base_uri);
if (base_parent_gfile == NULL) {
resolved_gfile = g_file_resolve_relative_path (base_gfile, relative_uri);
uri = g_file_get_uri (resolved_gfile);
g_object_unref (resolved_gfile);
return uri;
}
/* Remove the query portion of the URI, to transplant it again
* if there is any */
query = NULL;
new_relative_uri = relative_uri_remove_query (relative_uri, &query);
if (new_relative_uri) {
char *tmpuri;
resolved_gfile = g_file_resolve_relative_path (base_parent_gfile, new_relative_uri);
g_object_unref (base_parent_gfile);
if (!resolved_gfile) {
base_uri = g_file_get_uri (base_gfile);
g_warning ("Failed to resolve relative URI '%s' against base '%s'\n", relative_uri, base_uri);
g_free (base_uri);
g_free (new_relative_uri);
g_free (query);
return NULL;
}
tmpuri = g_file_get_uri (resolved_gfile);
g_object_unref (resolved_gfile);
uri = g_strdup_printf ("%s%s", tmpuri, query);
g_free (tmpuri);
g_free (new_relative_uri);
g_free (query);
return uri;
} else {
resolved_gfile = g_file_resolve_relative_path (base_parent_gfile, relative_uri);
g_object_unref (base_parent_gfile);
if (!resolved_gfile) {
base_uri = g_file_get_uri (base_gfile);
g_warning ("Failed to resolve relative URI '%s' against base '%s'\n", relative_uri, base_uri);
g_free (base_uri);
return NULL;
}
uri = g_file_get_uri (resolved_gfile);
g_object_unref (resolved_gfile);
return uri;
}
}
#ifndef TOTEM_PL_PARSER_MINI
/**
* totem_pl_parser_save:
* @parser: a #TotemPlParser
* @playlist: a #TotemPlPlaylist
* @dest: output #GFile
* @title: the playlist title
* @type: a #TotemPlParserType for the outputted playlist
* @error: return loction for a #GError, or %NULL
*
* Writes the playlist held by @parser and @playlist out to the path
* pointed by @dest. The playlist is written in the format @type and is
* given the title @title.
*
* If the @output file is a directory the #G_IO_ERROR_IS_DIRECTORY error
* will be returned, and if the file is some other form of non-regular file
* then a #G_IO_ERROR_NOT_REGULAR_FILE error will be returned. Some file
* systems don't allow all file names, and may return a
* #G_IO_ERROR_INVALID_FILENAME error, and if the name is too long,
* #G_IO_ERROR_FILENAME_TOO_LONG will be returned. Other errors are possible
* too, and depend on what kind of filesystem the file is on.
*
* In extreme cases, a #G_IO_ERROR_INVALID_ARGUMENT error can be returned, if
* parts of the playlist to be written are too long.
*
* If writing a PLA playlist and there is an error converting a URI's encoding,
* a code from #GConvertError will be returned.
*
* Returns: %TRUE on success
**/
gboolean
totem_pl_parser_save (TotemPlParser *parser,
TotemPlPlaylist *playlist,
GFile *dest,
const gchar *title,
TotemPlParserType type,
GError **error)
{
g_return_val_if_fail (TOTEM_IS_PL_PARSER (parser), FALSE);
g_return_val_if_fail (TOTEM_IS_PL_PLAYLIST (playlist), FALSE);
g_return_val_if_fail (G_IS_FILE (dest), FALSE);
if (totem_pl_playlist_size (playlist) == 0) {
/* FIXME add translation */
g_set_error (error,
TOTEM_PL_PARSER_ERROR,
TOTEM_PL_PARSER_ERROR_EMPTY_PLAYLIST,
"Playlist selected for saving is empty");
return FALSE;
}
switch (type)
{
case TOTEM_PL_PARSER_PLS:
return totem_pl_parser_save_pls (parser, playlist, dest, title, error);
case TOTEM_PL_PARSER_M3U:
case TOTEM_PL_PARSER_M3U_DOS:
return totem_pl_parser_save_m3u (parser, playlist, dest,
(type == TOTEM_PL_PARSER_M3U_DOS),
error);
case TOTEM_PL_PARSER_XSPF:
return totem_pl_parser_save_xspf (parser, playlist, dest, title, error);
case TOTEM_PL_PARSER_IRIVER_PLA:
return totem_pl_parser_save_pla (parser, playlist, dest, title, error);
default:
g_assert_not_reached ();
}
return FALSE;
}
#endif /* TOTEM_PL_PARSER_MINI */
/**
* totem_pl_parser_read_ini_line_int:
* @lines: a NULL-terminated array of INI lines to read
* @key: the key to match
*
* Returns the first integer value case-insensitively matching the specified
* key as an integer. The parser ignores leading whitespace on lines.
*
* Return value: the integer value, or -1 on error
**/
int
totem_pl_parser_read_ini_line_int (char **lines, const char *key)
{
int retval = -1;
int i;
if (lines == NULL || key == NULL)
return -1;
for (i = 0; (lines[i] != NULL && retval == -1); i++) {
char *line = lines[i];
while (*line == '\t' || *line == ' ')
line++;
if (g_ascii_strncasecmp (line, key, strlen (key)) == 0) {
char **bits;
bits = g_strsplit (line, "=", 2);
if (bits[0] == NULL || bits [1] == NULL) {
g_strfreev (bits);
return -1;
}
retval = (gint) g_strtod (bits[1], NULL);
g_strfreev (bits);
}
}
return retval;
}
/**
* totem_pl_parser_read_ini_line_string_with_sep:
* @lines: a NULL-terminated array of INI lines to read
* @key: the key to match
* @sep: the key-value separator
*
* Returns the first string value case-insensitively matching the specified
* key, where the two are separated by @sep. The parser ignores leading whitespace
* on lines.
*
* Return value: a newly-allocated string value, or %NULL
**/
char*
totem_pl_parser_read_ini_line_string_with_sep (char **lines, const char *key,
const char *sep)
{
char *retval = NULL;
int i;
if (lines == NULL || key == NULL)
return NULL;
for (i = 0; (lines[i] != NULL && retval == NULL); i++) {
char *line = lines[i];
while (*line == '\t' || *line == ' ')
line++;
if (g_ascii_strncasecmp (line, key, strlen (key)) == 0) {
char **bits;
bits = g_strsplit (line, sep, 2);
if (bits[0] == NULL || bits [1] == NULL) {
g_strfreev (bits);
return NULL;
}
retval = g_strdup (bits[1]);
g_strfreev (bits);
}
}
return retval;
}
/**
* totem_pl_parser_read_ini_line_string:
* @lines: a NULL-terminated array of INI lines to read
* @key: the key to match
*
* Returns the first string value case-insensitively matching the
* specified key. The parser ignores leading whitespace on lines.
*
* Return value: a newly-allocated string value, or %NULL
**/
char*
totem_pl_parser_read_ini_line_string (char **lines, const char *key)
{
return totem_pl_parser_read_ini_line_string_with_sep (lines, key, "=");
}
static void
totem_pl_parser_init (TotemPlParser *parser)
{
parser->priv = G_TYPE_INSTANCE_GET_PRIVATE (parser, TOTEM_TYPE_PL_PARSER, TotemPlParserPrivate);
parser->priv->main_thread = g_thread_self ();
g_mutex_init (&parser->priv->ignore_mutex);
parser->priv->ignore_schemes = g_hash_table_new_full (g_str_hash, g_str_equal, g_free, NULL);
parser->priv->ignore_mimetypes = g_hash_table_new_full (g_str_hash, g_str_equal, g_free, NULL);
}
static void
totem_pl_parser_finalize (GObject *object)
{
TotemPlParserPrivate *priv = TOTEM_PL_PARSER (object)->priv;
g_return_if_fail (object != NULL);
g_return_if_fail (priv != NULL);
g_clear_pointer (&priv->ignore_schemes, g_hash_table_destroy);
g_clear_pointer (&priv->ignore_mimetypes, g_hash_table_destroy);
g_mutex_clear (&priv->ignore_mutex);
G_OBJECT_CLASS (totem_pl_parser_parent_class)->finalize (object);
}
typedef struct {
TotemPlParser *parser;
guint signal_id;
char *uri;
GHashTable *metadata;
} EntryParsedSignalData;
static gboolean
emit_entry_parsed_signal (EntryParsedSignalData *data)
{
g_signal_emit (data->parser, data->signal_id, 0, data->uri, data->metadata);
/* Free the data */
g_object_unref (data->parser);
g_free (data->uri);
g_hash_table_unref (data->metadata);
g_free (data);
return FALSE;
}
gboolean
totem_pl_parser_fix_string (const char *name,
const char *value,
char **ret)
{
char *fixed = NULL;
/* Check for UTF-8 or ISO8859-1 string */
if (g_utf8_validate (value, -1, NULL) == FALSE) {
fixed = g_convert (value, -1, "UTF-8", "ISO8859-1", NULL, NULL, NULL);
if (fixed == NULL) {
g_warning ("Ignored non-UTF-8 and non-ISO8859-1 string for field '%s'", name);
return FALSE;
}
}
/* Remove trailing spaces from titles */
if (g_str_equal (name, TOTEM_PL_PARSER_FIELD_TITLE)) {
if (fixed == NULL)
fixed = g_strchomp (g_strdup (value));
else
g_strchomp (fixed);
}
*ret = fixed;
return TRUE;
}
void
totem_pl_parser_add_hash_table (TotemPlParser *parser,
GHashTable *metadata,
const char *uri,
gboolean is_playlist)
{
if (g_hash_table_size (metadata) > 0 || uri != NULL) {
EntryParsedSignalData *data;
/* Make sure to emit the signals asynchronously, as we could be in the main loop
* *or* a worker thread at this point. */
data = g_new (EntryParsedSignalData, 1);
data->parser = g_object_ref (parser);
data->uri = g_strdup (uri);
data->metadata = g_hash_table_ref (metadata);
if (is_playlist == FALSE)
data->signal_id = totem_pl_parser_table_signals[ENTRY_PARSED];
else
data->signal_id = totem_pl_parser_table_signals[PLAYLIST_STARTED];
CALL_ASYNC (parser, emit_entry_parsed_signal, data);
}
}
static void
totem_pl_parser_add_uri_valist (TotemPlParser *parser,
const gchar *first_property_name,
va_list var_args)
{
const char *name;
char *uri;
GHashTable *metadata;
gboolean is_playlist;
uri = NULL;
is_playlist = FALSE;
g_object_ref (G_OBJECT (parser));
metadata = g_hash_table_new_full (g_str_hash, g_str_equal, g_free, g_free);
name = first_property_name;
while (name) {
GValue value = { 0, };
GParamSpec *pspec;
char *error = NULL;
const char *string;
pspec = g_param_spec_pool_lookup (totem_pl_parser_pspec_pool,
name,
G_OBJECT_TYPE (parser),
FALSE);
if (!pspec) {
g_warning ("Unknown property '%s'", name);
name = va_arg (var_args, char*);
continue;
}
g_value_init (&value, G_PARAM_SPEC_VALUE_TYPE (pspec));
G_VALUE_COLLECT (&value, var_args, 0, &error);
if (error != NULL) {
g_warning ("Error getting the value for property '%s'", name);
break;
}
if (strcmp (name, TOTEM_PL_PARSER_FIELD_URI) == 0) {
if (uri == NULL)
uri = g_value_dup_string (&value);
} else if (strcmp (name, TOTEM_PL_PARSER_FIELD_FILE) == 0) {
GFile *file;
file = g_value_get_object (&value);
uri = g_file_get_uri (file);
g_value_unset (&value);
name = va_arg (var_args, char*);
continue;
} else if (strcmp (name, TOTEM_PL_PARSER_FIELD_BASE_FILE) == 0) {
GFile *file;
char *base_uri;
file = g_value_get_object (&value);
base_uri = g_file_get_uri (file);
g_hash_table_insert (metadata,
g_strdup (TOTEM_PL_PARSER_FIELD_BASE),
base_uri);
g_value_unset (&value);
name = va_arg (var_args, char*);
continue;
} else if (strcmp (name, TOTEM_PL_PARSER_FIELD_IS_PLAYLIST) == 0) {
is_playlist = g_value_get_boolean (&value);
g_value_unset (&value);
name = va_arg (var_args, char*);
continue;
}
/* Ignore empty values */
string = g_value_get_string (&value);
if (string != NULL && string[0] != '\0') {
char *fixed = NULL;
if (!totem_pl_parser_fix_string (name, string, &fixed)) {
g_value_unset (&value);
name = va_arg (var_args, char*);
continue;
}
/* Add other values to the metadata hashtable */
g_hash_table_insert (metadata,
g_strdup (name),
fixed ? fixed : g_strdup (string));
}
g_value_unset (&value);
name = va_arg (var_args, char*);
}
if (parser->priv->disable_unsafe != FALSE) {
//FIXME fix this! 396710
}
totem_pl_parser_add_hash_table (parser,
metadata,
uri,
is_playlist);
g_hash_table_unref (metadata);
g_free (uri);
g_object_unref (G_OBJECT (parser));
}
/**
* totem_pl_parser_add_uri:
* @parser: a #TotemPlParser
* @first_property_name: the first property name
* @...: value for the first property, followed optionally by more
* name/value pairs, followed by %NULL
*
* Adds a URI to the playlist with the properties given in @first_property_name
* and @....
**/
void
totem_pl_parser_add_uri (TotemPlParser *parser,
const char *first_property_name,
...)
{
va_list var_args;
va_start (var_args, first_property_name);
totem_pl_parser_add_uri_valist (parser, first_property_name, var_args);
va_end (var_args);
}
/**
* totem_pl_parser_add_one_uri:
* @parser: a #TotemPlParser
* @uri: the entry's URI
* @title: the entry's title
*
* Adds a single URI entry with only URI and title strings to the playlist.
**/
void
totem_pl_parser_add_one_uri (TotemPlParser *parser, const char *uri, const char *title)
{
totem_pl_parser_add_uri (parser,
TOTEM_PL_PARSER_FIELD_URI, uri,
TOTEM_PL_PARSER_FIELD_TITLE, title,
NULL);
}
void
totem_pl_parser_add_one_file (TotemPlParser *parser, GFile *file, const char *title)
{
totem_pl_parser_add_uri (parser,
TOTEM_PL_PARSER_FIELD_FILE, file,
TOTEM_PL_PARSER_FIELD_TITLE, title,
NULL);
}
static PlaylistTypes ignore_types[] = {
PLAYLIST_TYPE3 ("image/*"),
PLAYLIST_TYPE3 ("text/plain"),
PLAYLIST_TYPE3 ("application/x-rar"),
PLAYLIST_TYPE3 ("application/zip"),
PLAYLIST_TYPE3 ("application/x-trash"),
};
/**
* totem_pl_parser_scheme_is_ignored:
* @parser: a #TotemPlParser
* @uri: a URI
*
* Checks to see if @uri's scheme is in the @parser's list of
* schemes to ignore.
*
* Return value: %TRUE if @uri's scheme is ignored
**/
gboolean
totem_pl_parser_scheme_is_ignored (TotemPlParser *parser, GFile *uri)
{
char *scheme;
gboolean ret;
g_mutex_lock (&parser->priv->ignore_mutex);
scheme = g_file_get_uri_scheme (uri);
if (!scheme)
return TRUE;
ret = GPOINTER_TO_INT (g_hash_table_lookup (parser->priv->ignore_schemes, scheme));
g_free (scheme);
g_mutex_unlock (&parser->priv->ignore_mutex);
return ret;
}
static gboolean
totem_pl_parser_mimetype_is_ignored (TotemPlParser *parser,
const char *mimetype)
{
gboolean ret;
g_mutex_lock (&parser->priv->ignore_mutex);
ret = GPOINTER_TO_INT (g_hash_table_lookup (parser->priv->ignore_mimetypes, mimetype));
g_mutex_unlock (&parser->priv->ignore_mutex);
return ret;
}
/**
* totem_pl_parser_ignore:
* @parser: a #TotemPlParser
* @uri: a URI
*
* Checks if the URI should be ignored. URIs are <emphasis>not</emphasis> ignored if:
* <itemizedlist>
* <listitem><para>they have an unknown mimetype,</para></listitem>
* <listitem><para>they have a special mimetype,</para></listitem>
* <listitem><para>they have a mimetype which could be a video or a playlist.</para></listitem>
* </itemizedlist>
*
* URIs are automatically ignored if their scheme is ignored as per totem_pl_parser_scheme_is_ignored(),
* and are ignored if all the other tests are inconclusive.
*
* Return value: %TRUE if @uri is to be ignored
**/
gboolean
totem_pl_parser_ignore (TotemPlParser *parser, const char *uri)
{
char *mimetype;
GFile *file;
guint i;
file = g_file_new_for_path (uri);
if (totem_pl_parser_scheme_is_ignored (parser, file) != FALSE) {
g_object_unref (file);
return TRUE;
}
g_object_unref (file);
//FIXME wrong for win32
mimetype = g_content_type_guess (uri, NULL, 0, NULL);
if (mimetype == NULL || strcmp (mimetype, UNKNOWN_TYPE) == 0) {
g_free (mimetype);
return FALSE;
}
for (i = 0; i < G_N_ELEMENTS (special_types); i++) {
if (strcmp (special_types[i].mimetype, mimetype) == 0) {
g_free (mimetype);
return FALSE;
}
}
for (i = 0; i < G_N_ELEMENTS (dual_types); i++) {
if (strcmp (dual_types[i].mimetype, mimetype) == 0) {
g_free (mimetype);
return FALSE;
}
}
g_free (mimetype);
return TRUE;
}
/**
* totem_pl_parser_cleanup_xml:
* @contents: the contents of the file
*
* Removes HTML comments from a string representing the contents of an XML file.
* The function modifies the string in place.
*/
static void
totem_pl_parser_cleanup_xml (char *contents)
{
char *needle;
needle = contents;
while ((needle = strstr (needle, "<!--")) != NULL) {
char *end;
/* Find end of comments */
end = strstr (needle, "-->");
/* Broken file? */
if (end == NULL)
return;
if (g_strstr_len (needle, end - needle, "]]>") != NULL) {
/* Advance 3 and skip */
needle += 3;
continue;
}
/* Empty the comment */
memset (needle, ' ', end + 3 - needle);
}
}
xml_node_t *
totem_pl_parser_parse_xml_relaxed (char *contents,
gsize size)
{
xml_node_t* doc, *node;
char *encoding, *new_contents;
gsize new_size;
xml_parser_t *xml_parser;
totem_pl_parser_cleanup_xml (contents);
xml_parser = xml_parser_init_r (contents, size, XML_PARSER_CASE_INSENSITIVE);
if (xml_parser_build_tree_with_options_r (xml_parser, &doc, XML_PARSER_RELAXED | XML_PARSER_MULTI_TEXT) < 0) {
xml_parser_finalize_r (xml_parser);
return NULL;
}
xml_parser_finalize_r (xml_parser);
encoding = NULL;
for (node = doc; node != NULL; node = node->next) {
if (node->name == NULL || g_str_equal (node->name, "?XML") == FALSE)
continue;
encoding = g_strdup (xml_parser_get_property (node, "ENCODING"));
break;
}
if (encoding == NULL || g_str_equal (encoding, "UTF-8") != FALSE) {
g_free (encoding);
return doc;
}
xml_parser_free_tree (doc);
new_contents = g_convert (contents, size, "UTF-8", encoding, NULL, &new_size, NULL);
if (new_contents == NULL) {
g_warning ("Failed to convert XML data to UTF-8");
g_free (encoding);
return NULL;
}
g_free (encoding);
xml_parser = xml_parser_init_r (new_contents, new_size, XML_PARSER_CASE_INSENSITIVE);
if (xml_parser_build_tree_with_options_r (xml_parser, &doc, XML_PARSER_RELAXED | XML_PARSER_MULTI_TEXT) < 0) {
xml_parser_finalize_r (xml_parser);
g_free (new_contents);
return NULL;
}
xml_parser_finalize_r (xml_parser);
g_free (new_contents);
return doc;
}
static gboolean
totem_pl_parser_ignore_from_mimetype (TotemPlParser *parser, const char *mimetype)
{
guint i;
if (mimetype == NULL)
return FALSE;
for (i = 0; i < G_N_ELEMENTS (ignore_types); i++) {
if (g_content_type_is_a (mimetype, ignore_types[i].mimetype) != FALSE)
return TRUE;
if (g_content_type_equals (mimetype, ignore_types[i].mimetype) != FALSE)
return TRUE;
}
return FALSE;
}
static PlaylistCallback
totem_pl_parser_get_function_for_mimetype (const char *mimetype)
{
guint i;
if (mimetype == NULL)
return NULL;
for (i = 0; i < G_N_ELEMENTS(special_types); i++) {
if (strcmp (special_types[i].mimetype, mimetype) == 0)
return special_types[i].func;
}
for (i = 0; i < G_N_ELEMENTS(dual_types); i++) {
if (strcmp (dual_types[i].mimetype, mimetype) == 0)
return dual_types[i].func;
}
return NULL;
}
TotemPlParserResult
totem_pl_parser_parse_internal (TotemPlParser *parser,
GFile *file,
GFile *base_file,
TotemPlParseData *parse_data)
{
char *mimetype;
guint i;
gpointer data = NULL;
TotemPlParserResult ret = TOTEM_PL_PARSER_RESULT_UNHANDLED;
gboolean found = FALSE;
if (parse_data->recurse_level > RECURSE_LEVEL_MAX)
return TOTEM_PL_PARSER_RESULT_ERROR;
if (g_file_has_uri_scheme (file, "mms") != FALSE
|| g_file_has_uri_scheme (file, "rtsp") != FALSE
|| g_file_has_uri_scheme (file, "rtmp") != FALSE
|| g_file_has_uri_scheme (file, "icy") != FALSE
|| g_file_has_uri_scheme (file, "pnm") != FALSE) {
DEBUG(file, g_print ("URI '%s' is MMS, RTSP, RTMP, PNM or ICY, not a playlist\n", uri));
return TOTEM_PL_PARSER_RESULT_UNHANDLED;
}
/* Fix up itpc, see http://www.apple.com/itunes/store/podcaststechspecs.html,
* feed:// as used by Firefox 3,
* as well as zcast:// as used by ZENCast */
if (g_file_has_uri_scheme (file, "itpc") != FALSE
|| g_file_has_uri_scheme (file, "feed") != FALSE
|| g_file_has_uri_scheme (file, "zcast") != FALSE) {
DEBUG(file, g_print ("URI '%s' is getting special cased for ITPC/FEED/ZCAST parsing\n", uri));
return totem_pl_parser_add_itpc (parser, file, base_file, parse_data, NULL);
}
if (g_file_has_uri_scheme (file, "zune") != FALSE) {
DEBUG(file, g_print ("URI '%s' is getting special cased for ZUNE parsing\n", uri));
return totem_pl_parser_add_zune (parser, file, base_file, parse_data, NULL);
}
/* Try itms Podcast references, see itunes.py in PenguinTV */
if (totem_pl_parser_is_itms_feed (file) != FALSE) {
DEBUG(file, g_print ("URI '%s' is getting special cased for ITMS parsing\n", uri));
return totem_pl_parser_add_itms (parser, file, NULL, parse_data, NULL);
}
if (!parse_data->recurse && parse_data->recurse_level > 0)
return TOTEM_PL_PARSER_RESULT_UNHANDLED;
#ifdef HAVE_QUVI
/* Should we try to parse it with quvi? */
if (g_file_has_uri_scheme (file, "http")) {
char *url;
url = g_file_get_uri (file);
if (url != NULL && totem_pl_parser_is_videosite (url, parser->priv->debug) != FALSE) {
ret = totem_pl_parser_add_videosite (parser, file, base_file, parse_data, NULL);
if (ret == TOTEM_PL_PARSER_RESULT_SUCCESS)
return ret;
}
g_free (url);
}
#endif /* HAVE_QUVI */
/* In force mode we want to get the data */
if (parse_data->force != FALSE) {
mimetype = my_g_file_info_get_mime_type_with_data (file, &data, parser);
} else {
char *uri;
uri = g_file_get_uri (file);
#ifdef G_OS_WIN32
{
char *content_type;
content_type = g_content_type_guess (uri, NULL, 0, NULL);
mimetype = g_content_type_get_mime_type (content_type);
g_free (content_type);
}
#else
mimetype = g_content_type_guess (uri, NULL, 0, NULL);
#endif
g_free (uri);
}
/* We're much more likely to have an MP2T file instead */
if (g_strcmp0 (mimetype, "application/x-linguist") == 0 ||
g_strcmp0 (mimetype, "text/vnd.trolltech.linguist") == 0) {
g_free (mimetype);
mimetype = g_strdup ("video/mp2t");
}
/* Not a directory on http though */
if (g_strcmp0 (mimetype, "inode/directory") == 0 &&
g_file_has_uri_scheme (file, "http")) {
g_free (mimetype);
mimetype = NULL;
}
DEBUG(file, g_print ("_get_mime_type_for_name for '%s' returned '%s'\n", uri, mimetype));
if (mimetype == NULL || strcmp (UNKNOWN_TYPE, mimetype) == 0
|| (g_file_is_native (file) && g_content_type_is_a (mimetype, "text/plain") != FALSE)) {
char *new_mimetype;
new_mimetype = my_g_file_info_get_mime_type_with_data (file, &data, parser);
if (new_mimetype) {
g_free (mimetype);
mimetype = new_mimetype;
DEBUG(file, g_print ("_get_mime_type_with_data for '%s' returned '%s'\n", uri, mimetype ? mimetype : "NULL"));
} else {
DEBUG(file, g_print ("_get_mime_type_with_data for '%s' returned NULL, ignoring\n", uri));
}
}
if (mimetype == NULL) {
g_free (data);
return TOTEM_PL_PARSER_RESULT_UNHANDLED;
}
if (strcmp (mimetype, EMPTY_FILE_TYPE) == 0) {
g_free (data);
g_free (mimetype);
return TOTEM_PL_PARSER_RESULT_SUCCESS;
}
/* If we're at the top-level of the parsing, try to get more
* data from the playlist parser */
if (strcmp (mimetype, AUDIO_MPEG_TYPE) == 0 && parse_data->recurse_level == 0 && data == NULL) {
char *tmp;
tmp = my_g_file_info_get_mime_type_with_data (file, &data, parser);
if (tmp != NULL) {
g_free (mimetype);
mimetype = tmp;
}
DEBUG(file, g_print ("_get_mime_type_with_data for '%s' returned '%s' (was %s)\n", uri, mimetype, AUDIO_MPEG_TYPE));
}
if (totem_pl_parser_mimetype_is_ignored (parser, mimetype) != FALSE) {
g_free (mimetype);
g_free (data);
return TOTEM_PL_PARSER_RESULT_IGNORED;
}
if (parse_data->recurse || parse_data->recurse_level == 0) {
parse_data->recurse_level++;
for (i = 0; i < G_N_ELEMENTS(special_types); i++) {
if (strcmp (special_types[i].mimetype, mimetype) == 0) {
DEBUG(file, g_print ("URI '%s' is special type '%s'\n", uri, mimetype));
if (parse_data->disable_unsafe != FALSE && special_types[i].unsafe != FALSE) {
DEBUG(file, g_print ("URI '%s' is unsafe so was ignored\n", uri));
g_free (mimetype);
g_free (data);
return TOTEM_PL_PARSER_RESULT_IGNORED;
}
if (base_file == NULL)
base_file = g_file_get_parent (file);
else
base_file = g_object_ref (base_file);
DEBUG (file, g_print ("Using %s function for '%s'\n", special_types[i].mimetype, uri));
ret = (* special_types[i].func) (parser, file, base_file, parse_data, data);
if (base_file != NULL)
g_object_unref (base_file);
found = TRUE;
break;
}
}
for (i = 0; i < G_N_ELEMENTS(dual_types) && found == FALSE; i++) {
if (strcmp (dual_types[i].mimetype, mimetype) == 0) {
PlaylistCallback func;
DEBUG(file, g_print ("URI '%s' is dual type '%s'\n", uri, mimetype));
if (data == NULL) {
g_free (mimetype);
mimetype = my_g_file_info_get_mime_type_with_data (file, &data, parser);
DEBUG(file, g_print ("URI '%s' dual type has type '%s' from data\n", uri, mimetype));
}
/* If it's _still_ a text/plain, we don't want it */
if (mimetype != NULL &&
g_content_type_is_a (mimetype, "text/plain") &&
g_content_type_is_a (mimetype, "application/xml") == FALSE) {
DEBUG(file, g_print ("Ignoring URI '%s' dual type because '%s' is a text/plain\n", uri, mimetype));
ret = TOTEM_PL_PARSER_RESULT_IGNORED;
g_free (mimetype);
mimetype = NULL;
break;
}
/* Now look for the proper function to use */
func = totem_pl_parser_get_function_for_mimetype (mimetype);
if ((func == NULL && mimetype != NULL) || (mimetype == NULL && dual_types[i].func == NULL)) {
DEBUG(file, g_print ("Ignoring URI '%s' because we couldn't find a playlist parser for '%s'\n", uri, mimetype));
ret = TOTEM_PL_PARSER_RESULT_UNHANDLED;
g_free (mimetype);
mimetype = NULL;
break;
} else if (func == NULL) {
func = dual_types[i].func;
}
if (base_file == NULL)
base_file = g_file_get_parent (file);
else
base_file = g_object_ref (base_file);
ret = (* func) (parser, file, base_file ? base_file : file, parse_data, data);
if (base_file != NULL)
g_object_unref (base_file);
found = TRUE;
break;
}
}
g_free (data);
parse_data->recurse_level--;
}
if (ret == TOTEM_PL_PARSER_RESULT_SUCCESS) {
g_free (mimetype);
return ret;
}
if (totem_pl_parser_ignore_from_mimetype (parser, mimetype) != FALSE) {
g_free (mimetype);
return TOTEM_PL_PARSER_RESULT_IGNORED;
}
g_free (mimetype);
if (ret != TOTEM_PL_PARSER_RESULT_SUCCESS && parse_data->fallback) {
totem_pl_parser_add_one_file (parser, file, NULL);
return TOTEM_PL_PARSER_RESULT_SUCCESS;
}
return ret;
}
typedef struct {
char *uri;
char *base;
gboolean fallback;
} ParseAsyncData;
static void
parse_async_data_free (ParseAsyncData *data)
{
g_free (data->uri);
g_free (data->base);
g_slice_free (ParseAsyncData, data);
}
static void
parse_thread (GSimpleAsyncResult *result, GObject *object, GCancellable *cancellable)
{
TotemPlParserResult parse_result;
GError *error = NULL;
ParseAsyncData *data = g_simple_async_result_get_op_res_gpointer (result);
/* Check to see if it's been cancelled already */
if (g_cancellable_set_error_if_cancelled (cancellable, &error) == TRUE) {
g_simple_async_result_set_from_error (result, error);
g_simple_async_result_set_op_res_gpointer (result, GUINT_TO_POINTER (TOTEM_PL_PARSER_RESULT_CANCELLED), NULL);
g_error_free (error);
return;
}
/* Parse and return */
parse_result = totem_pl_parser_parse_with_base (TOTEM_PL_PARSER (object), data->uri, data->base, data->fallback);
g_simple_async_result_set_op_res_gpointer (result, GUINT_TO_POINTER (parse_result), NULL);
}
/**
* totem_pl_parser_parse_with_base_async:
* @parser: a #TotemPlParser
* @uri: the URI of the playlist to parse
* @base: (allow-none): the base path for relative filenames, or %NULL
* @fallback: %TRUE if the parser should add the playlist URI to the
* end of the playlist on parse failure
* @cancellable: (allow-none): optional #GCancellable object, or %NULL
* @callback: (allow-none): a #GAsyncReadyCallback to call when parsing is finished
* @user_data: data to pass to the @callback function
*
* Starts asynchronous parsing of a playlist given by the absolute URI @uri, using @base to resolve relative paths where appropriate.
* @parser and @uri are both reffed/copied when this function is called, so can safely be freed after this function returns.
*
* For more details, see totem_pl_parser_parse_with_base(), which is the synchronous version of this function.
*
* When the operation is finished, @callback will be called. You can then call totem_pl_parser_parse_finish()
* to get the results of the operation.
**/
void
totem_pl_parser_parse_with_base_async (TotemPlParser *parser, const char *uri, const char *base, gboolean fallback,
GCancellable *cancellable, GAsyncReadyCallback callback, gpointer user_data)
{
GSimpleAsyncResult *result;
ParseAsyncData *data;
g_return_if_fail (TOTEM_IS_PL_PARSER (parser));
g_return_if_fail (uri != NULL);
g_return_if_fail (strstr (uri, "://") != NULL);
data = g_slice_new (ParseAsyncData);
data->uri = g_strdup (uri);
data->base = g_strdup (base);
data->fallback = fallback;
result = g_simple_async_result_new (G_OBJECT (parser), callback, user_data, totem_pl_parser_parse_with_base_async);
g_simple_async_result_set_op_res_gpointer (result, data, (GDestroyNotify) parse_async_data_free);
g_simple_async_result_run_in_thread (result, (GSimpleAsyncThreadFunc) parse_thread, G_PRIORITY_DEFAULT, cancellable);
g_object_unref (result);
}
/**
* totem_pl_parser_parse_with_base:
* @parser: a #TotemPlParser
* @uri: the URI of the playlist to parse
* @base: (allow-none): the base path for relative filenames, or %NULL
* @fallback: %TRUE if the parser should add the playlist URI to the
* end of the playlist on parse failure
*
* Parses a playlist given by the absolute URI @uri, using
* @base to resolve relative paths where appropriate.
*
* Return value: a #TotemPlParserResult
**/
TotemPlParserResult
totem_pl_parser_parse_with_base (TotemPlParser *parser, const char *uri,
const char *base, gboolean fallback)
{
GFile *file, *base_file;
TotemPlParserResult retval;
TotemPlParseData data;
g_return_val_if_fail (TOTEM_IS_PL_PARSER (parser), TOTEM_PL_PARSER_RESULT_UNHANDLED);
g_return_val_if_fail (uri != NULL, TOTEM_PL_PARSER_RESULT_UNHANDLED);
g_return_val_if_fail (strstr (uri, "://") != NULL,
TOTEM_PL_PARSER_RESULT_ERROR);
file = g_file_new_for_uri (uri);
base_file = NULL;
if (totem_pl_parser_scheme_is_ignored (parser, file) != FALSE) {
g_object_unref (file);
return TOTEM_PL_PARSER_RESULT_UNHANDLED;
}
/* Use a struct to store copies of the options as set for this parse operation */
data.recurse_level = 0;
data.fallback = fallback;
data.recurse = parser->priv->recurse;
data.force = parser->priv->force;
data.disable_unsafe = parser->priv->disable_unsafe;
if (base != NULL)
base_file = g_file_new_for_uri (base);
retval = totem_pl_parser_parse_internal (parser, file, base_file, &data);
g_object_unref (file);
if (base_file != NULL)
g_object_unref (base_file);
return retval;
}
/**
* totem_pl_parser_parse_async:
* @parser: a #TotemPlParser
* @uri: the URI of the playlist to parse
* @fallback: %TRUE if the parser should add the playlist URI to the
* end of the playlist on parse failure
* @cancellable: (allow-none): optional #GCancellable object, or %NULL
* @callback: (allow-none): a #GAsyncReadyCallback to call when parsing is finished
* @user_data: data to pass to the @callback function
*
* Starts asynchronous parsing of a playlist given by the absolute URI @uri. @parser and @uri are both reffed/copied
* when this function is called, so can safely be freed after this function returns.
*
* For more details, see totem_pl_parser_parse(), which is the synchronous version of this function.
*
* When the operation is finished, @callback will be called. You can then call totem_pl_parser_parse_finish()
* to get the results of the operation.
**/
void
totem_pl_parser_parse_async (TotemPlParser *parser, const char *uri, gboolean fallback,
GCancellable *cancellable, GAsyncReadyCallback callback, gpointer user_data)
{
totem_pl_parser_parse_with_base_async (parser, uri, NULL, fallback, cancellable, callback, user_data);
}
/**
* totem_pl_parser_parse_finish:
* @parser: a #TotemPlParser
* @async_result: a #GAsyncResult
* @error: a #GError, or %NULL
*
* Finishes an asynchronous playlist parsing operation started with totem_pl_parser_parse_async()
* or totem_pl_parser_parse_with_base_async().
*
* If parsing of the playlist is cancelled part-way through, %TOTEM_PL_PARSER_RESULT_CANCELLED is returned when
* this function is called.
*
* Return value: a #TotemPlParserResult
**/
TotemPlParserResult
totem_pl_parser_parse_finish (TotemPlParser *parser, GAsyncResult *async_result, GError **error)
{
GSimpleAsyncResult *result = G_SIMPLE_ASYNC_RESULT (async_result);
g_return_val_if_fail (TOTEM_IS_PL_PARSER (parser), FALSE);
g_return_val_if_fail (G_IS_ASYNC_RESULT (async_result), FALSE);
g_warn_if_fail (g_simple_async_result_get_source_tag (result) == totem_pl_parser_parse_with_base_async);
/* Propagate any errors which were caught and return the result; otherwise just return the result */
g_simple_async_result_propagate_error (result, error);
return GPOINTER_TO_UINT (g_simple_async_result_get_op_res_gpointer (result));
}
/**
* totem_pl_parser_parse:
* @parser: a #TotemPlParser
* @uri: the URI of the playlist to parse
* @fallback: %TRUE if the parser should add the playlist URI to the
* end of the playlist on parse failure
*
* Parses a playlist given by the absolute URI @uri. This method is
* synchronous, and will block on (e.g.) network requests to slow
* servers. totem_pl_parser_parse_async() is recommended instead.
*
* Return values are as totem_pl_parser_parse_with_base().
*
* Return value: a #TotemPlParserResult
**/
TotemPlParserResult
totem_pl_parser_parse (TotemPlParser *parser, const char *uri,
gboolean fallback)
{
return totem_pl_parser_parse_with_base (parser, uri, NULL, fallback);
}
/**
* totem_pl_parser_add_ignored_scheme:
* @parser: a #TotemPlParser
* @scheme: the scheme to ignore
*
* Adds a scheme to the list of schemes to ignore, so that
* any URI using that scheme is ignored during playlist parsing.
**/
void
totem_pl_parser_add_ignored_scheme (TotemPlParser *parser,
const char *scheme)
{
char *s;
g_return_if_fail (TOTEM_IS_PL_PARSER (parser));
g_mutex_lock (&parser->priv->ignore_mutex);
s = g_strdup (scheme);
if (s[strlen (s) - 1] == ':')
s[strlen (s) - 1] = '\0';
g_hash_table_insert (parser->priv->ignore_schemes, s, GINT_TO_POINTER (1));
g_mutex_unlock (&parser->priv->ignore_mutex);
}
/**
* totem_pl_parser_add_ignored_mimetype:
* @parser: a #TotemPlParser
* @mimetype: the mimetype to ignore
*
* Adds a mimetype to the list of mimetypes to ignore, so that
* any URI of that mimetype is ignored during playlist parsing.
**/
void
totem_pl_parser_add_ignored_mimetype (TotemPlParser *parser,
const char *mimetype)
{
g_return_if_fail (TOTEM_IS_PL_PARSER (parser));
g_mutex_lock (&parser->priv->ignore_mutex);
g_hash_table_insert (parser->priv->ignore_mimetypes, g_strdup (mimetype), GINT_TO_POINTER (1));
g_mutex_unlock (&parser->priv->ignore_mutex);
}
/**
* totem_pl_parser_parse_duration:
* @duration: the duration string to parse
* @debug: %TRUE if debug statements should be printed
*
* Parses the given duration string and returns it as a <type>gint64</type>
* denoting the duration in seconds.
*
* Return value: the duration in seconds, or -1 on error
**/
gint64
totem_pl_parser_parse_duration (const char *duration, gboolean debug)
{
int hours, minutes, seconds, fractions;
if (duration == NULL) {
D(g_print ("No duration passed\n"));
return -1;
}
/* Formats used by both ASX and RAM files */
if (sscanf (duration, "%d:%d:%d.%d", &hours, &minutes, &seconds, &fractions) == 4) {
gint64 ret = (gint64) hours * 3600 + (gint64) minutes * 60 + seconds;
if (ret == 0 && fractions > 0) {
D(g_print ("Used 00:00:00.00 format, with fractions rounding\n"));
ret = 1;
} else {
D(g_print ("Used 00:00:00.00 format\n"));
}
return ret;
}
if (sscanf (duration, "%d:%d:%d", &hours, &minutes, &seconds) == 3) {
D(g_print ("Used 00:00:00 format\n"));
return (gint64) hours * 3600 + (gint64) minutes * 60 + seconds;
}
if (sscanf (duration, "%d:%d.%d", &minutes, &seconds, &fractions) == 3) {
gint64 ret = minutes * 60 + seconds;
if (ret == 0 && fractions > 0) {
D(g_print ("Used 00:00.00 format, with fractions rounding\n"));
ret = 1;
} else {
D(g_print ("Used 00:00.00 format\n"));
}
return ret;
}
if (sscanf (duration, "%d:%d", &minutes, &seconds) == 2) {
D(g_print ("Used 00:00 format\n"));
return (gint64) minutes * 60 + seconds;
}
if (sscanf (duration, "%d.%d", &minutes, &seconds) == 2) {
D(g_print ("Used broken float format (00.00)\n"));
return (gint64) minutes * 60 + seconds;
}
/* YouTube format */
if (sscanf (duration, "%dm%ds", &minutes, &seconds) == 2) {
D(g_print ("Used YouTube format\n"));
return (gint64) minutes * 60 + seconds;
}
/* PLS files format */
if (sscanf (duration, "%d", &seconds) == 1) {
D(g_print ("Used PLS format\n"));
return seconds;
}
D(g_message ("Couldn't parse duration '%s'\n", duration));
return -1;
}
/**
* totem_pl_parser_parse_date:
* @date_str: the date string to parse
* @debug: %TRUE if debug statements should be printed
*
* Parses the given date string and returns it as a <type>gint64</type>
* denoting the date in seconds since the UNIX Epoch.
*
* Return value: the date in seconds, or -1 on error
**/
guint64
totem_pl_parser_parse_date (const char *date_str, gboolean debug)
{
#ifdef HAVE_GMIME
GTimeVal val;
g_return_val_if_fail (date_str != NULL, -1);
memset (&val, 0, sizeof(val));
/* Try to parse as an ISO8601/RFC3339 date */
if (g_time_val_from_iso8601 (date_str, &val) != FALSE) {
D(g_message ("Parsed duration '%s' using the ISO8601 parser", date_str));
return val.tv_sec;
}
D(g_message ("Failed to parse duration '%s' using the ISO8601 parser", date_str));
/* Fall back to RFC 2822 date parsing */
return g_mime_utils_header_decode_date (date_str, NULL);
#else
WARN_NO_GMIME;
#endif /* HAVE_GMIME */
}
#endif /* !TOTEM_PL_PARSER_MINI */
static char *
totem_pl_parser_mime_type_from_data (gconstpointer data, int len)
{
char *mime_type;
gboolean uncertain;
#ifdef G_OS_WIN32
char *content_type;
content_type = g_content_type_guess (NULL, data, len, &uncertain);
if (uncertain == FALSE) {
mime_type = g_content_type_get_mime_type (content_type);
g_free (content_type);
} else {
mime_type = NULL;
}
#else
mime_type = g_content_type_guess (NULL, data, len, &uncertain);
if (uncertain != FALSE) {
g_free (mime_type);
mime_type = NULL;
}
#endif
if (mime_type != NULL &&
(strcmp (mime_type, "text/plain") == 0 ||
strcmp (mime_type, "application/octet-stream") == 0 ||
strcmp (mime_type, "application/xml") == 0 ||
strcmp (mime_type, "text/html") == 0)) {
PlaylistIdenCallback func;
guint i;
func = NULL;
for (i = 0; i < G_N_ELEMENTS(dual_types); i++) {
const char *res;
if (func == dual_types[i].iden)
continue;
func = dual_types[i].iden;
if (func == NULL)
continue;
res = func (data, len);
if (res != NULL) {
g_free (mime_type);
return g_strdup (res);
}
}
return NULL;
}
return mime_type;
}
/**
* totem_pl_parser_can_parse_from_data:
* @data: the data to check for parsability
* @len: the length of data to check
* @debug: %TRUE if debug statements should be printed
*
* Checks if the first @len bytes of @data can be parsed.
*
* Return value: %TRUE if @data can be parsed
**/
gboolean
totem_pl_parser_can_parse_from_data (const char *data,
gsize len,
gboolean debug)
{
char *mimetype;
guint i;
g_return_val_if_fail (data != NULL, FALSE);
/* Bad cast! */
mimetype = totem_pl_parser_mime_type_from_data ((gpointer) data, (int) len);
if (mimetype == NULL) {
D(g_message ("totem_pl_parser_can_parse_from_data couldn't get mimetype"));
return FALSE;
}
for (i = 0; i < G_N_ELEMENTS(special_types); i++) {
if (strcmp (special_types[i].mimetype, mimetype) == 0) {
D(g_message ("Is special type '%s'", mimetype));
g_free (mimetype);
return TRUE;
}
}
for (i = 0; i < G_N_ELEMENTS(dual_types); i++) {
if (strcmp (dual_types[i].mimetype, mimetype) == 0) {
D(g_message ("Should be dual type '%s', making sure now", mimetype));
if (dual_types[i].iden != NULL) {
gboolean retval = ((* dual_types[i].iden) (data, len) != NULL);
D(g_message ("%s dual type '%s'",
retval ? "Is" : "Is not", mimetype));
g_free (mimetype);
return retval;
}
g_free (mimetype);
return FALSE;
}
}
D(g_message ("Is unsupported mime-type '%s'", mimetype));
g_free (mimetype);
return FALSE;
}
/**
* totem_pl_parser_can_parse_from_filename:
* @filename: the file to check for parsability
* @debug: %TRUE if debug statements should be printed
*
* Checks if the file can be parsed. Files can be parsed if:
* <itemizedlist>
* <listitem><para>they have a special mimetype, or</para></listitem>
* <listitem><para>they have a mimetype which could be a video or a playlist.</para></listitem>
* </itemizedlist>
*
* Return value: %TRUE if @filename can be parsed
**/
gboolean
totem_pl_parser_can_parse_from_filename (const char *filename, gboolean debug)
{
GMappedFile *map;
GError *err = NULL;
gboolean retval;
g_return_val_if_fail (filename != NULL, FALSE);
map = g_mapped_file_new (filename, FALSE, &err);
if (map == NULL) {
D(g_message ("couldn't mmap %s: %s", filename, err->message));
g_error_free (err);
return FALSE;
}
retval = totem_pl_parser_can_parse_from_data
(g_mapped_file_get_contents (map),
g_mapped_file_get_length (map), debug);
g_mapped_file_unref (map);
return retval;
}
/**
* totem_pl_parser_can_parse_from_uri:
* @uri: the remote URI to check for parsability
* @debug: %TRUE if debug statements should be printed
*
* Checks if the remote URI can be parsed. Note that this does
* not actually try to open the remote URI, or deduce its mime-type
* from filename, as this would bring too many false positives.
*
* Return value: %TRUE if @uri could be parsed
**/
gboolean
totem_pl_parser_can_parse_from_uri (const char *uri, gboolean debug)
{
return totem_pl_parser_is_videosite (uri, debug);
}
#ifndef TOTEM_PL_PARSER_MINI
GType
totem_pl_parser_metadata_get_type (void)
{
static volatile gsize g_define_type_id__volatile = 0;
if (g_once_init_enter (&g_define_type_id__volatile))
{
/* NOTE: This is equivalent to the definition for GHashTable in gboxed.c, in that it uses the same copy/free functions.
* This means that if we box a TotemPlParserMetadata inside a GValue, we can safely unbox it as a GHashTable (and vice-versa).
* This means we can hide TotemPlParserMetadata from introspection, and just pretend it's actually been a GHashTable all along. */
GType g_define_type_id = g_boxed_type_register_static (
g_intern_static_string ("TotemPlParserMetadata"),
(GBoxedCopyFunc) g_hash_table_ref,
(GBoxedFreeFunc) g_hash_table_unref);
g_once_init_leave (&g_define_type_id__volatile, g_define_type_id);
}
return g_define_type_id__volatile;
}
#endif /* !TOTEM_PL_PARSER_MINI */
|