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
|
/* -*- Mode: C; indent-tabs-mode: t; c-basic-offset: 8; tab-width: 8 -*- */
/* gnome-vfs-mime-handlers.c - Mime type handlers for the GNOME Virtual
File System.
Copyright (C) 2000 Eazel, Inc.
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., 59 Temple Place - Suite 330,
Boston, MA 02111-1307, USA.
Author: Maciej Stachowiak <mjs@eazel.com> */
#include <config.h>
#include "gnome-vfs-mime-handlers.h"
#include "gnome-vfs-application-registry.h"
#include "gnome-vfs-mime-info.h"
#include "gnome-vfs-mime-info-cache.h"
#include "gnome-vfs-mime.h"
#include "gnome-vfs-mime-private.h"
#include "gnome-vfs-result.h"
#include "gnome-vfs-private-utils.h"
#include "gnome-vfs-utils.h"
#include <gconf/gconf-client.h>
#include <stdio.h>
#include <string.h>
#include <glib/gi18n-lib.h>
#include <gmodule.h>
#define MIXED_API_WARNING "Cannot call %s with a GNOMEVFSMimeApplication structure "\
"constructed by the deprecated application registry", \
G_STRFUNC
struct _GnomeVFSMimeApplicationPrivate
{
char *desktop_file_path;
char *generic_name;
char *icon;
char *exec;
char *binary_name;
char *path;
gboolean supports_uris;
gboolean startup_notification;
char *startup_wm_class;
};
extern GList * _gnome_vfs_configuration_get_methods_list (void);
static GnomeVFSResult expand_application_parameters (GnomeVFSMimeApplication *application,
GList **uri_list,
int *argc,
char ***argv);
static GList * copy_str_list (GList *string_list);
/**
* gnome_vfs_mime_get_description:
* @mime_type: the mime type.
*
* Query the MIME database for a description of the @mime_type.
*
* Return value: description of MIME type @mime_type.
*/
const char *
gnome_vfs_mime_get_description (const char *mime_type)
{
/* We use a different folder type than the freedesktop spec */
if (strcmp (mime_type, "x-directory/normal") == 0) {
mime_type = "inode/directory";
}
return gnome_vfs_mime_get_value (mime_type, "description");
}
/**
* gnome_vfs_mime_set_description:
* @mime_type: a const char * containing a mime type.
* @description: a description of this MIME type.
*
* Set the @description of this MIME type in the MIME database. The @description
* should be something like "Gnumeric spreadsheet".
*
* Return value: #GnomeVFSResult indicating the success of the operation or any
* errors that may have occurred.
*
* Deprecated: User modifications to the MIME database are no longer supported by gnome-vfs.
*/
GnomeVFSResult
gnome_vfs_mime_set_description (const char *mime_type, const char *description)
{
g_warning (_("Deprecated function. User modifications to the MIME database are no longer supported."));
return GNOME_VFS_ERROR_DEPRECATED_FUNCTION;
}
/**
* gnome_vfs_mime_get_default_action_type:
* @mime_type: a const char * containing a mime type, e.g. "application/x-php".
*
* Query the MIME database for the type of action to be performed on @mime_type.
*
* Deprecated: This function does not work with the new mime system.
* It always returns none
*
* Return value: The type of action to be performed on a file of
* MIME type @mime_type by default.
*/
GnomeVFSMimeActionType
gnome_vfs_mime_get_default_action_type (const char *mime_type)
{
return GNOME_VFS_MIME_ACTION_TYPE_NONE;
}
/**
* gnome_vfs_mime_get_default_action:
* @mime_type: a const char * containing a mime type, e.g. "application/x-php".
*
* Query the MIME database for default action associated with @mime_type.
*
* Deprecated: Use gnome_vfs_mime_get_default_application() instead.
*
* Return value: a #GnomeVFSMimeAction representing the default action to perform upon
* file of type @mime_type.
*/
GnomeVFSMimeAction *
gnome_vfs_mime_get_default_action (const char *mime_type)
{
GnomeVFSMimeAction *action;
action = g_new0 (GnomeVFSMimeAction, 1);
action->action_type = GNOME_VFS_MIME_ACTION_TYPE_APPLICATION;
action->action.application =
gnome_vfs_mime_get_default_application (mime_type);
if (action->action.application == NULL) {
g_free (action);
action = NULL;
}
return action;
}
/**
* gnome_vfs_mime_get_default_application:
* @mime_type: a const char * containing a mime type, e.g. "image/png".
*
* Query the MIME database for the application to be executed on files of MIME type
* @mime_type by default.
*
* If you know the actual uri of the file you should use gnome_vfs_mime_get_default_application_for_uri
* instead, as it will then be able to pick a better app. For instance it won't pick
* an app that claims to only handle local files for a remote uri.
*
* Return value: a #GnomeVFSMimeApplication representing the default handler of @mime_type.
*/
GnomeVFSMimeApplication *
gnome_vfs_mime_get_default_application (const char *mime_type)
{
GnomeVFSMimeApplication *app;
GList *applications, *l;
app = NULL;
applications = gnome_vfs_mime_get_all_desktop_entries (mime_type);
for (l = applications; l != NULL; l = l->next) {
app = gnome_vfs_mime_application_new_from_id (l->data);
if (app != NULL) {
break;
}
}
g_list_foreach (applications, (GFunc) g_free, NULL);
g_list_free (applications);
return app;
}
/**
* gnome_vfs_mime_get_icon:
* @mime_type: a const char * containing a MIME type.
*
* Query the MIME database for an icon representing the @mime_type.
*
* It usually returns a filename without path information, e.g. "i-chardev.png", and sometimes
* does not have an extension, e.g. "i-regular" if the icon is supposed to be image
* type agnostic between icon themes. Icons are generic and not theme specific. These
* will not necessarily match with the icons a user sees in Nautilus, you have been warned.
*
* Return value: The filename of the icon as listed in the MIME database.
*
* Deprecated: Use gnome_icon_lookup() function in libgnomeui instead.
*/
const char *
gnome_vfs_mime_get_icon (const char *mime_type)
{
return gnome_vfs_mime_get_value (mime_type, "icon_filename");
}
/**
* gnome_vfs_mime_set_icon:
* @mime_type: a const char * containing a MIME type.
* @filename: a const char * containing an image filename.
*
* Set the icon entry for @mime_type in the MIME database. Note that
* icon entries need not necessarily contain the full path, and do not necessarily need to
* specify an extension. So "i-regular", "my-special-icon.png", and "some-icon"
* are all valid icon filenames.
*
* Return value: a #GnomeVFSResult indicating the success of the operation
* or any errors that may have occurred.
*
* Deprecated: User modifications to the MIME database are no longer
* supported in gnome-vfs.
*
*/
GnomeVFSResult
gnome_vfs_mime_set_icon (const char *mime_type, const char *filename)
{
g_warning (_("Deprecated function. User modifications to the MIME database are no longer supported."));
return GNOME_VFS_ERROR_DEPRECATED_FUNCTION;
}
/**
* gnome_vfs_mime_can_be_executable:
* @mime_type: a const char * containing a mime type.
*
* Check whether files of @mime_type might conceivably be executable.
* Default for known types if %FALSE. Default for unknown types is %TRUE.
*
* Return value: %TRUE if files of @mime_type
* can be executable, %FALSE otherwise.
*/
gboolean
gnome_vfs_mime_can_be_executable (const char *mime_type)
{
const char *result_as_string;
gboolean result;
result_as_string = gnome_vfs_mime_get_value (mime_type, "can_be_executable");
if (result_as_string != NULL) {
result = strcmp (result_as_string, "TRUE") == 0;
} else {
/* If type is not known, we treat it as potentially executable.
* If type is known, we use default value of not executable.
*/
result = !gnome_vfs_mime_type_is_known (mime_type);
if (!strncmp (mime_type, "x-directory", strlen ("x-directory"))) {
result = FALSE;
}
}
return result;
}
/**
* gnome_vfs_mime_set_can_be_executable:
* @mime_type: a const char * containing a mime type.
* @new_value: a boolean value indicating whether @mime_type could be executable.
*
* Set whether files of @mime_type might conceivably be executable.
*
* Return value: a #GnomeVFSResult indicating the success of the operation or any
* errors that may have occurred.
*/
GnomeVFSResult
gnome_vfs_mime_set_can_be_executable (const char *mime_type, gboolean new_value)
{
g_warning (_("Deprecated function. User modifications to the MIME database are no longer supported."));
return GNOME_VFS_ERROR_DEPRECATED_FUNCTION;
}
/**
* gnome_vfs_mime_get_short_list_applications:
* @mime_type: a const char * containing a mime type, e.g. "image/png".
*
* Return an alphabetically sorted list of #GnomeVFSMimeApplication data
* structures for the @mime_type. gnome-vfs no longer supports the
* concept of a "short list" of applications that the user might be interested
* in.
*
* Return value: a #GList * where the elements are #GnomeVFSMimeApplication *
* representing various applications to display in the short list for @mime_type.
*
* Deprecated: Use gnome_vfs_mime_get_all_applications() instead.
*/
GList *
gnome_vfs_mime_get_short_list_applications (const char *mime_type)
{
return gnome_vfs_mime_get_all_applications (mime_type);
}
/**
* gnome_vfs_mime_get_all_applications:
* @mime_type: a const char * containing a mime type, e.g. "image/png".
*
* Return an alphabetically sorted list of #GnomeVFSMimeApplication
* data structures representing all applications in the MIME database registered
* to handle files of MIME type @mime_type (and supertypes).
*
* Return value: a #GList * where the elements are #GnomeVFSMimeApplication *
* representing applications that handle MIME type @mime_type.
*/
GList *
gnome_vfs_mime_get_all_applications (const char *mime_type)
{
GList *applications, *node, *next;
char *application_id;
GnomeVFSMimeApplication *application;
g_return_val_if_fail (mime_type != NULL, NULL);
applications = gnome_vfs_mime_get_all_desktop_entries (mime_type);
/* Convert to GnomeVFSMimeApplication's (leaving out NULLs) */
for (node = applications; node != NULL; node = next) {
next = node->next;
application_id = node->data;
application = gnome_vfs_mime_application_new_from_id (application_id);
/* Replace the application ID with the application */
if (application == NULL) {
applications = g_list_remove_link (applications, node);
g_list_free_1 (node);
} else {
node->data = application;
}
g_free (application_id);
}
return applications;
}
/**
* gnome_vfs_mime_set_default_action_type:
* @mime_type: a const char * containing a mime type, e.g. "image/png".
* @action_type: a #GnomeVFSMimeActionType containing the action to perform by default.
*
* Sets the default action type to be performed on files of @mime_type.
*
* Return value: a #GnomeVFSResult indicating the success of the operation or reporting
* any errors encountered.
*
* Deprecated: User modifications to the MIME database are no longer supported by gnome-vfs.
*/
GnomeVFSResult
gnome_vfs_mime_set_default_action_type (const char *mime_type,
GnomeVFSMimeActionType action_type)
{
g_warning (_("Deprecated function. User modifications to the MIME database are no longer supported."));
return GNOME_VFS_ERROR_DEPRECATED_FUNCTION;
}
/**
* gnome_vfs_mime_set_default_application:
* @mime_type: a const char * containing a mime type, e.g. "application/x-php".
* @application_id: a key representing an application in the MIME database
* (#GnomeVFSMimeApplication->id, for example).
*
* Sets the default application to be run on files of @mime_type.
*
* Return value: a #GnomeVFSResult indicating the success of the operation or reporting
* any errors encountered.
*
* Deprecated: User modifications to the MIME database are no longer supported by gnome-vfs.
*/
GnomeVFSResult
gnome_vfs_mime_set_default_application (const char *mime_type,
const char *application_id)
{
g_warning (_("Deprecated function. User modifications to the MIME database are no longer supported."));
return GNOME_VFS_ERROR_DEPRECATED_FUNCTION;
}
/**
* gnome_vfs_mime_set_default_component:
* @mime_type: a const char * containing a mime type, e.g. "application/x-php".
* @component_iid: OAFIID of a component.
*
* Sets the default component to be activated for files of @mime_type.
*
* Return value: a #GnomeVFSResult indicating the success of the operation or reporting
* any errors encountered.
*
* Deprecated: User modifications to the MIME database are no longer supported by gnome-vfs.
*/
GnomeVFSResult
gnome_vfs_mime_set_default_component (const char *mime_type,
const char *component_iid)
{
g_warning (_("Deprecated function. User modifications to the MIME database are no longer supported."));
return GNOME_VFS_ERROR_DEPRECATED_FUNCTION;
}
/**
* gnome_vfs_mime_set_short_list_applications:
* @mime_type: a const char * containing a mime type, e.g. "application/x-php".
* @application_ids: #GList of const char * application ids.
*
* Set the short list of applications for the specified MIME type. The short list
* contains applications recommended for possible selection by the user.
*
* Return value: a #GnomeVFSResult indicating the success of the operation or reporting
* any errors encountered.
*
* Deprecated: User modifications to the MIME database are no longer supported by gnome-vfs.
*/
GnomeVFSResult
gnome_vfs_mime_set_short_list_applications (const char *mime_type,
GList *application_ids)
{
g_warning (_("Deprecated function. User modifications to the MIME database are no longer supported."));
return GNOME_VFS_ERROR_DEPRECATED_FUNCTION;
}
/**
* gnome_vfs_mime_set_short_list_components:
* @mime_type: a const char * containing a mime type, e.g. "application/x-php".
* @component_iids: #GList of const char * OAFIIDs.
*
* Set the short list of components for the @mime_type. The short list
* contains companents recommended for possible selection by the user.
*
* Return value: a #GnomeVFSResult indicating the success of the operation or reporting
* any errors encountered.
*
* Deprecated: User modifications to the MIME database are no longer supported by gnome-vfs.
*/
GnomeVFSResult
gnome_vfs_mime_set_short_list_components (const char *mime_type,
GList *component_iids)
{
g_warning (_("Deprecated function. User modifications to the MIME database are no longer supported."));
return GNOME_VFS_ERROR_DEPRECATED_FUNCTION;
}
/* FIXME bugzilla.eazel.com 1148:
* The next set of helper functions are all replicated in nautilus-mime-actions.c.
* Need to refactor so they can share code.
*/
static gint
gnome_vfs_mime_application_has_id (GnomeVFSMimeApplication *application, const char *id)
{
return strcmp (application->id, id);
}
static gint
gnome_vfs_mime_id_matches_application (const char *id, GnomeVFSMimeApplication *application)
{
return gnome_vfs_mime_application_has_id (application, id);
}
static gint
gnome_vfs_mime_application_matches_id (GnomeVFSMimeApplication *application, const char *id)
{
return gnome_vfs_mime_id_matches_application (id, application);
}
/**
* gnome_vfs_mime_id_in_application_list:
* @id: an application id.
* @applications: a #GList * whose nodes are #GnomeVFSMimeApplications, such as the
* result of gnome_vfs_mime_get_short_list_applications().
*
* Check whether an application id is in a list of #GnomeVFSMimeApplications.
*
* Return value: %TRUE if an application whose id matches @id is in @applications.
*
* Deprecated:
*/
gboolean
gnome_vfs_mime_id_in_application_list (const char *id, GList *applications)
{
return g_list_find_custom
(applications, (gpointer) id,
(GCompareFunc) gnome_vfs_mime_application_matches_id) != NULL;
}
/**
* gnome_vfs_mime_id_list_from_application_list:
* @applications: a #GList * whose nodes are GnomeVFSMimeApplications, such as the
* result of gnome_vfs_mime_get_short_list_applications().
*
* Create a list of application ids from a list of #GnomeVFSMimeApplications.
*
* Return value: a new list where each #GnomeVFSMimeApplication in the original
* list is replaced by a char * with the application's id. The original list is
* not modified.
*
* Deprecated:
*/
GList *
gnome_vfs_mime_id_list_from_application_list (GList *applications)
{
GList *result;
GList *node;
result = NULL;
for (node = applications; node != NULL; node = node->next) {
result = g_list_append
(result, g_strdup (((GnomeVFSMimeApplication *)node->data)->id));
}
return result;
}
/**
* gnome_vfs_mime_add_application_to_short_list:
* @mime_type: a const char * containing a mime type, e.g. "application/x-php".
* @application_id: const char * containing the application's id in the MIME database.
*
* Add an application to the short list for @mime_type. The short list contains
* applications recommended for display as choices to the user for a particular MIME type.
*
* Return value: a #GnomeVFSResult indicating the success of the operation or reporting
* any errors encountered.
*
* Deprecated: User modifications to the MIME database are no longer supported by gnome-vfs.
*/
GnomeVFSResult
gnome_vfs_mime_add_application_to_short_list (const char *mime_type,
const char *application_id)
{
g_warning (_("Deprecated function. User modifications to the MIME database are no longer supported."));
return GNOME_VFS_ERROR_DEPRECATED_FUNCTION;
}
/**
* gnome_vfs_mime_remove_application_from_list:
* @applications: a #GList * whose nodes are #GnomeVFSMimeApplications, such as the
* result of gnome_vfs_mime_get_short_list_applications().
* @application_id: id of an application to remove from @applications.
* @did_remove: If non-NULL, this is filled in with %TRUE if the application
* was found in the list, %FALSE otherwise.
*
* Remove an application specified by id from a list of #GnomeVFSMimeApplications.
*
* Return value: The modified list. If the application is not found, the list will
* be unchanged.
*
* Deprecated: User modifications to the MIME database are no longer supported by gnome-vfs.
*/
GList *
gnome_vfs_mime_remove_application_from_list (GList *applications,
const char *application_id,
gboolean *did_remove)
{
g_warning (_("Deprecated function. User modifications to the MIME database are no longer supported."));
return NULL;
}
/**
* gnome_vfs_mime_remove_application_from_short_list:
* @mime_type: a const char * containing a mime type, e.g. "application/x-php".
* @application_id: const char * containing the application's id in the MIME database.
*
* Remove an application specified by @application_id from the short list for @mime_type. A short list contains
* applications recommended for display as choices to the user for a particular MIME type.
*
* Return value: a #GnomeVFSResult indicating the success of the operation or reporting
* any errors encountered.
*
* Deprecated: User modifications to the MIME database are no longer supported by gnome-vfs.
*/
GnomeVFSResult
gnome_vfs_mime_remove_application_from_short_list (const char *mime_type,
const char *application_id)
{
g_warning (_("Deprecated function. User modifications to the MIME database are no longer supported."));
return GNOME_VFS_ERROR_DEPRECATED_FUNCTION;
}
/**
* gnome_vfs_mime_add_component_to_short_list:
* @mime_type: a const char * containing a mime type, e.g. "application/x-php".
* @iid: const char * containing the component's OAFIID.
*
* Add a component to the short list for @mime_type. A short list contains
* components recommended for display as choices to the user for a particular MIME type.
*
* Return value: a #GnomeVFSResult indicating the success of the operation or reporting
* any errors encountered.
*
* Deprecated: User modifications to the MIME database are no longer supported by gnome-vfs.
*/
GnomeVFSResult
gnome_vfs_mime_add_component_to_short_list (const char *mime_type,
const char *iid)
{
g_warning (_("Deprecated function. User modifications to the MIME database are no longer supported."));
return GNOME_VFS_ERROR_DEPRECATED_FUNCTION;
}
/**
* gnome_vfs_mime_remove_component_from_short_list:
* @mime_type: a const char * containing a mime type, e.g. "application/x-php".
* @iid: const char * containing the component's OAFIID.
*
* Remove a component from the short list for @mime_type. The short list contains
* components recommended for display as choices to the user for a particular MIME type.
*
* Return value: a #GnomeVFSResult indicating the success of the operation or reporting
* any errors encountered.
*
* Deprecated: User modifications to the MIME database are no longer supported by gnome-vfs.
*/
GnomeVFSResult
gnome_vfs_mime_remove_component_from_short_list (const char *mime_type,
const char *iid)
{
g_warning (_("Deprecated function. User modifications to the MIME database are no longer supported."));
return GNOME_VFS_ERROR_DEPRECATED_FUNCTION;
}
/**
* gnome_vfs_mime_add_extension:
* @extension: extension to add (e.g. "txt").
* @mime_type: mime type to add the mapping to.
*
* Add a file extension to the specificed MIME type in the MIME database.
*
* Return value: a #GnomeVFSResult indicating the success of the operation or any
* errors that may have occurred.
*
* Deprecated: User modifications to the MIME database are no longer supported by gnome-vfs.
*/
GnomeVFSResult
gnome_vfs_mime_add_extension (const char *mime_type, const char *extension)
{
g_warning (_("Deprecated function. User modifications to the MIME database are no longer supported."));
return GNOME_VFS_ERROR_DEPRECATED_FUNCTION;
}
/**
* gnome_vfs_mime_remove_extension:
* @extension: extension to remove.
* @mime_type: mime type to remove the extension from.
*
* Removes a file extension from the @mime_type in the MIME database.
*
* Return value: a #GnomeVFSResult indicating the success of the operation or any
* errors that may have occurred.
*
* Deprecated: User modifications to the MIME database are no longer supported by gnome-vfs.
*/
GnomeVFSResult
gnome_vfs_mime_remove_extension (const char *mime_type, const char *extension)
{
g_warning (_("Deprecated function. User modifications to the MIME database are no longer supported."));
return GNOME_VFS_ERROR_DEPRECATED_FUNCTION;
}
/**
* gnome_vfs_mime_extend_all_applications:
* @mime_type: a const char * containing a mime type, e.g. "application/x-php".
* @application_ids: a #GList of const char * containing application ids.
*
* Register @mime_type as being handled by all applications list in @application_ids.
*
* Return value: a #GnomeVFSResult indicating the success of the operation or reporting
* any errors encountered.
*
* Deprecated: User modifications to the MIME database are no longer supported by gnome-vfs.
*/
GnomeVFSResult
gnome_vfs_mime_extend_all_applications (const char *mime_type,
GList *application_ids)
{
g_warning (_("Deprecated function. User modifications to the MIME database are no longer supported."));
return GNOME_VFS_ERROR_DEPRECATED_FUNCTION;
}
/**
* gnome_vfs_mime_remove_from_all_applications:
* @mime_type: a const char * containing a mime type, e.g. "application/x-php".
* @application_ids: a #GList of const char * containing application ids.
*
* Remove @mime_type as a handled type from every application in @application_ids
*
* Return value: a #GnomeVFSResult indicating the success of the operation or reporting
* any errors encountered.
*
* Deprecated: User modifications to the MIME database are no longer supported by gnome-vfs.
*/
GnomeVFSResult
gnome_vfs_mime_remove_from_all_applications (const char *mime_type,
GList *application_ids)
{
g_warning (_("Deprecated function. User modifications to the MIME database are no longer supported."));
return GNOME_VFS_ERROR_DEPRECATED_FUNCTION;
}
/**
* gnome_vfs_mime_application_equal:
* @app_a: a #GnomeVFSMimeApplication.
* @app_b: a #GnomeVFSMimeApplication.
*
* Compare @app_a and @app_b.
*
* Return value: %TRUE if @app_a and @app_b are equal, %FALSE otherwise.
*
* Since: 2.10
*/
gboolean
gnome_vfs_mime_application_equal (GnomeVFSMimeApplication *app_a,
GnomeVFSMimeApplication *app_b)
{
g_return_val_if_fail (app_a != NULL, FALSE);
g_return_val_if_fail (app_b != NULL, FALSE);
return (strcmp (app_a->id, app_b->id) == 0);
}
/**
* gnome_vfs_mime_application_copy:
* @application: a #GnomeVFSMimeApplication to be duplicated.
*
* Creates a newly referenced copy of a #GnomeVFSMimeApplication object.
*
* Return value: a copy of @application.
*/
GnomeVFSMimeApplication *
gnome_vfs_mime_application_copy (GnomeVFSMimeApplication *application)
{
GnomeVFSMimeApplication *result;
if (application == NULL) {
return NULL;
}
result = g_new0 (GnomeVFSMimeApplication, 1);
result->id = g_strdup (application->id);
result->name = g_strdup (application->name);
result->command = g_strdup (application->command);
result->can_open_multiple_files = application->can_open_multiple_files;
result->expects_uris = application->expects_uris;
result->supported_uri_schemes = copy_str_list (application->supported_uri_schemes);
result->requires_terminal = application->requires_terminal;
result->priv = g_new0 (GnomeVFSMimeApplicationPrivate, 1);
result->priv->desktop_file_path = g_strdup (application->priv->desktop_file_path);
result->priv->generic_name = g_strdup (application->priv->generic_name);
result->priv->icon = g_strdup (application->priv->icon);
result->priv->exec = g_strdup (application->priv->exec);
result->priv->binary_name = g_strdup (application->priv->binary_name);
result->priv->path = g_strdup (application->priv->path);
result->priv->supports_uris = application->priv->supports_uris;
result->priv->startup_notification = application->priv->startup_notification;
result->priv->startup_wm_class = g_strdup (application->priv->startup_wm_class);
return result;
}
/**
* gnome_vfs_mime_application_free:
* @application: a #GnomeVFSMimeApplication to be freed.
*
* Frees a #GnomeVFSMimeApplication *.
*
*/
void
gnome_vfs_mime_application_free (GnomeVFSMimeApplication *application)
{
if (application != NULL) {
GnomeVFSMimeApplicationPrivate *priv = application->priv;
if (priv != NULL) {
g_free (priv->desktop_file_path);
g_free (priv->generic_name);
g_free (priv->icon);
g_free (priv->exec);
g_free (priv->binary_name);
g_free (priv->path);
g_free (priv->startup_wm_class);
}
g_free (priv);
g_free (application->name);
g_free (application->command);
g_list_foreach (application->supported_uri_schemes,
(GFunc) g_free,
NULL);
g_list_free (application->supported_uri_schemes);
g_free (application->id);
g_free (application);
}
}
/**
* gnome_vfs_mime_action_free:
* @action: a #GnomeVFSMimeAction to be freed.
*
* Frees a #GnomeVFSMimeAction *.
*
* Deprecated: #GnomeVFSMimeAction structures should not be used in new
* code.
*/
void
gnome_vfs_mime_action_free (GnomeVFSMimeAction *action)
{
switch (action->action_type) {
case GNOME_VFS_MIME_ACTION_TYPE_APPLICATION:
gnome_vfs_mime_application_free (action->action.application);
break;
default:
g_assert_not_reached ();
}
g_free (action);
}
/**
* gnome_vfs_mime_application_list_free:
* @list: a #GList of #GnomeVFSApplication * to be freed.
*
* Frees lists of #GnomeVFSApplications, as returned from functions such
* as gnome_vfs_get_all_applications().
*/
void
gnome_vfs_mime_application_list_free (GList *list)
{
g_list_foreach (list, (GFunc) gnome_vfs_mime_application_free, NULL);
g_list_free (list);
}
/**
* gnome_vfs_mime_application_new_from_id:
* @id: a const char * containing an application id.
*
* Fetches the #GnomeVFSMimeApplication associated with the specified
* application @id from the MIME database.
*
* Return value: a #GnomeVFSMimeApplication * corresponding to @id.
*
* Deprecated: Use gnome_vfs_mime_application_new_from_desktop_id()
* instead.
*/
GnomeVFSMimeApplication *
gnome_vfs_mime_application_new_from_id (const char *id)
{
return gnome_vfs_mime_application_new_from_desktop_id (id);
}
/**
* gnome_vfs_mime_action_launch:
* @action: the #GnomeVFSMimeAction to launch.
* @uris: parameters for the #GnomeVFSMimeAction.
*
* Launches the given mime @action with the given parameters. If
* the @action is an application the command line parameters will
* be expanded as required by the application. The application
* will also be launched in a terminal if that is required. If the
* application only supports one argument per instance then multiple
* instances of the application will be launched.
*
* If the default action is a component it will be launched with
* the component viewer application defined using the gconf value:
* /desktop/gnome/application/component_viewer/exec. The parameters
* %s and %c in the command line will be replaced with the list of
* parameters and the default component IID respectively.
*
* Return value: %GNOME_VFS_OK if the @action was launched,
* %GNOME_VFS_ERROR_BAD_PARAMETERS for an invalid @action.
* %GNOME_VFS_ERROR_NOT_SUPPORTED if the uri protocol is
* not supported by the @action.
* %GNOME_VFS_ERROR_PARSE if the @action command can not be parsed.
* %GNOME_VFS_ERROR_LAUNCH if the @action command can not be launched.
* %GNOME_VFS_ERROR_INTERNAL for other internal and GConf errors.
*
* Since: 2.4
*
* Deprecated: MIME actions are deprecated, use
* gnome_vfs_mime_application_launch() instead.
*/
GnomeVFSResult
gnome_vfs_mime_action_launch (GnomeVFSMimeAction *action,
GList *uris)
{
return gnome_vfs_mime_action_launch_with_env (action, uris, NULL);
}
/**
* gnome_vfs_mime_action_launch_with_env:
* @action: the #GnomeVFSMimeAction to launch.
* @uris: parameters for the #GnomeVFSMimeAction.
* @envp: the environment to use for the action.
*
* Same as gnome_vfs_mime_action_launch() except that the
* application or component viewer will be launched with
* the given environment.
*
* Return value: same as gnome_vfs_mime_action_launch().
*
* Since: 2.4
*
* Deprecated: MIME actions are deprecated, use
* gnome_vfs_mime_application_launch_with_env() instead.
*/
GnomeVFSResult
gnome_vfs_mime_action_launch_with_env (GnomeVFSMimeAction *action,
GList *uris,
char **envp)
{
g_return_val_if_fail (action != NULL, GNOME_VFS_ERROR_BAD_PARAMETERS);
g_return_val_if_fail (uris != NULL, GNOME_VFS_ERROR_BAD_PARAMETERS);
switch (action->action_type) {
case GNOME_VFS_MIME_ACTION_TYPE_APPLICATION:
return gnome_vfs_mime_application_launch_with_env
(action->action.application,
uris, envp);
case GNOME_VFS_MIME_ACTION_TYPE_COMPONENT:
return GNOME_VFS_OK;
default:
g_assert_not_reached ();
}
return GNOME_VFS_ERROR_BAD_PARAMETERS;
}
/**
* gnome_vfs_mime_application_launch:
* @app: the #GnomeVFSMimeApplication to launch.
* @uris: parameters for the #GnomeVFSMimeApplication.
*
* Launches the given mime application with the given parameters.
* Command line parameters will be expanded as required by the
* application. The application will also be launched in a terminal
* if that is required. If the application only supports one argument
* per instance then multiple instances of the application will be
* launched.
*
* Return value:
* %GNOME_VFS_OK if the application was launched.
* %GNOME_VFS_ERROR_NOT_SUPPORTED if the uri protocol is not
* supported by the application.
* %GNOME_VFS_ERROR_PARSE if the application command can not
* be parsed.
* %GNOME_VFS_ERROR_LAUNCH if the application command can not
* be launched.
* %GNOME_VFS_ERROR_INTERNAL for other internal and GConf errors.
*
* Since: 2.4
*/
GnomeVFSResult
gnome_vfs_mime_application_launch (GnomeVFSMimeApplication *app,
GList *uris)
{
return gnome_vfs_mime_application_launch_with_env (app, uris, NULL);
}
/**
* gnome_vfs_mime_application_launch_with_env:
* @app: the #GnomeVFSMimeApplication to launch.
* @uris: parameters for the #GnomeVFSMimeApplication.
* @envp: the environment to use for the application.
*
* Same as gnome_vfs_mime_application_launch() except that
* the application will be launched with the given environment.
*
* Return value: same as gnome_vfs_mime_application_launch().
*
* Since: 2.4
*/
GnomeVFSResult
gnome_vfs_mime_application_launch_with_env (GnomeVFSMimeApplication *app,
GList *uris,
char **envp)
{
GnomeVFSResult result;
char **argv;
int argc;
g_return_val_if_fail (app != NULL, GNOME_VFS_ERROR_BAD_PARAMETERS);
g_return_val_if_fail (uris != NULL, GNOME_VFS_ERROR_BAD_PARAMETERS);
while (uris != NULL) {
result = expand_application_parameters (app, &uris,
&argc, &argv);
if (result != GNOME_VFS_OK) {
return result;
}
if (app->requires_terminal) {
if (!_gnome_vfs_prepend_terminal_to_vector (&argc, &argv)) {
g_strfreev (argv);
return GNOME_VFS_ERROR_INTERNAL;
}
}
if (!g_spawn_async (app->priv->path, /* working directory */
argv,
envp,
G_SPAWN_SEARCH_PATH /* flags */,
NULL /* child_setup */,
NULL /* data */,
NULL /* child_pid */,
NULL /* error */)) {
g_strfreev (argv);
return GNOME_VFS_ERROR_LAUNCH;
}
g_strfreev (argv);
}
return GNOME_VFS_OK;
}
static char *
expand_macro_single (char macro, const char *uri)
{
char *result = NULL, *path;
switch (macro) {
case 'u':
case 'U':
result = g_shell_quote (uri);
break;
case 'f':
case 'F':
path = gnome_vfs_get_local_path_from_uri (uri);
if (path) {
result = g_shell_quote (path);
g_free (path);
}
break;
case 'd':
case 'D':
path = gnome_vfs_get_local_path_from_uri (uri);
if (path) {
result = g_shell_quote (g_path_get_dirname (path));
g_free (path);
}
break;
case 'n':
case 'N':
path = gnome_vfs_get_local_path_from_uri (uri);
if (path) {
result = g_shell_quote (g_path_get_basename (path));
g_free (path);
}
break;
}
return result;
}
static void
expand_macro (char macro, GString *exec, GnomeVFSMimeApplication *application, GList **uri_list)
{
GList *uris = *uri_list;
char *expanded;
g_return_if_fail (uris != NULL);
g_return_if_fail (exec != NULL);
if (uris == NULL) {
return;
}
switch (macro) {
case 'u':
case 'f':
case 'd':
case 'n':
expanded = expand_macro_single (macro, uris->data);
if (expanded) {
g_string_append (exec, expanded);
g_free (expanded);
}
uris = uris->next;
break;
case 'U':
case 'F':
case 'D':
case 'N':
while (uris) {
expanded = expand_macro_single (macro, uris->data);
if (expanded) {
g_string_append (exec, expanded);
g_free (expanded);
}
uris = uris->next;
if (uris != NULL && expanded) {
g_string_append_c (exec, ' ');
}
}
break;
case 'i':
if (application->priv->icon) {
g_string_append (exec, "--icon ");
g_string_append (exec, application->priv->icon);
}
break;
case 'c':
if (application->name) {
g_string_append (exec, application->name);
}
break;
case 'k':
if (application->priv->desktop_file_path) {
g_string_append (exec, application->priv->desktop_file_path);
}
case 'm': /* deprecated */
break;
case '%':
g_string_append_c (exec, '%');
break;
}
*uri_list = uris;
}
static GnomeVFSResult
expand_application_parameters (GnomeVFSMimeApplication *application,
GList **uris,
int *argc,
char ***argv)
{
GList *uri_list = *uris;
const char *p = application->priv->exec;
GString *expanded_exec = g_string_new (NULL);
g_return_val_if_fail (p != NULL, GNOME_VFS_ERROR_PARSE);
while (*p) {
if (p[0] == '%' && p[1] != '\0') {
expand_macro (p[1], expanded_exec, application, uris);
p++;
} else {
g_string_append_c (expanded_exec, *p);
}
p++;
}
/* No substitutions */
if (uri_list == *uris) {
return GNOME_VFS_ERROR_PARSE;
}
if (!g_shell_parse_argv (expanded_exec->str, argc, argv, NULL)) {
return GNOME_VFS_ERROR_PARSE;
}
return GNOME_VFS_OK;
}
#ifdef TEXT_EXEC_MACRO_EXPANSION
static void
print_expansion_data (GList *uris, const char *exec)
{
GList *l;
int i;
g_print ("Exec %s\n", exec);
for (l = uris, i = 0; l != NULL; l = l->next, i++)
{
g_print ("URI %d: %s\n", i, (char *)l->data);
}
}
static void
print_macro_expansion (char **argv, GnomeVFSResult res)
{
int i;
if (res != GNOME_VFS_OK) {
g_print ("Error\n");
} else {
for (i = 0; argv[i] != NULL; i++)
{
g_print ("Arg %d: %s\n", i, argv[i]);
}
}
}
static void
test_exec_array (GList *apps, GList *uris)
{
int argc;
char **argv;
GList *app;
for (app = apps; app != NULL; app = app->next)
{
GnomeVFSMimeApplication *application = app->data;
GList *l = uris;
print_expansion_data (uris, application->priv->exec);
while (l != NULL) {
GnomeVFSResult res;
res = expand_application_parameters
(application, &l, &argc, &argv);
print_macro_expansion (argv, res);
g_strfreev (argv);
}
g_print ("---------------------\n");
}
}
void test_exec_macro_expansion (void);
void
test_exec_macro_expansion (void)
{
GList *uris = NULL;
const char *local[] = { "test --open-file=%f",
"test --open-files %F",
"test %d",
"test %D",
"test %n",
"test %N",
NULL };
const char *remote[] = { "test --open-uri=%u",
"test --open-uris %U",
"test %u",
"test %U",
NULL };
const char **p;
GList* applications = NULL;
GnomeVFSMimeApplication *application, *app;
application = g_new0 (GnomeVFSMimeApplication, 1);
application->priv = g_new0 (GnomeVFSMimeApplicationPrivate, 1);
application->id = g_strdup ("foobar.desktop");
aplication->name = g_strdup ("foobar");
application->priv->icon = g_strdup ("icon.png");
for (p = local; p ; p++) {
app = gnome_vfs_mime_application_copy (application);
g_free (app->priv->exec);
app->priv->exec = g_strdup (*p);
applications = g_list_prepend(applications, app);
}
uris = g_list_append (uris, "file:///home/test/test1.txt");
uris = g_list_append (uris, "file:///home/test/test2.txt");
test_exec_array (applications, uris);
gnome_vfs_mime_application_list_free (applications);
applications = NULL;
for (p = remote; p ; p++) {
app = gnome_vfs_mime_application_copy (application);
g_free (app->priv->exec);
app->priv->exec = g_strdup (*p);
applications = g_list_prepend (applications, app);
}
uris = g_list_append (uris, "http://www.test.org/test1.txt");
uris = g_list_append (uris, "http://www.test.org/test2.txt");
test_exec_array (applications, uris);
gnome_vfs_mime_application_list_free (applications);
g_list_free (uris);
gnome_vfs_mime_application_free (application);
}
#endif
static GList *
copy_str_list (GList *string_list)
{
GList *copy, *node;
copy = NULL;
for (node = string_list; node != NULL; node = node->next) {
copy = g_list_prepend (copy,
g_strdup ((char *) node->data));
}
return g_list_reverse (copy);
}
static void
guess_deprecated_fields_from_exec (GnomeVFSMimeApplication *application)
{
char *p;
application->command = g_strdup (application->priv->exec);
/* Guess on these last fields based on parameters passed to Exec line
*/
if ((p = strstr (application->command, "%f")) != NULL
|| (p = strstr (application->command, "%d")) != NULL
|| (p = strstr (application->command, "%n")) != NULL) {
do {
*p = '\0';
p--;
} while (p >= application->command && g_ascii_isspace (*p));
application->can_open_multiple_files = FALSE;
application->expects_uris = GNOME_VFS_MIME_APPLICATION_ARGUMENT_TYPE_PATHS;
application->supported_uri_schemes = NULL;
} else if ((p = strstr (application->command, "%F")) != NULL
|| (p = strstr (application->command, "%D")) != NULL
|| (p = strstr (application->command, "%N")) != NULL) {
do {
*p = '\0';
p--;
} while (p >= application->command && g_ascii_isspace (*p));
application->can_open_multiple_files = TRUE;
application->expects_uris = GNOME_VFS_MIME_APPLICATION_ARGUMENT_TYPE_PATHS;
application->supported_uri_schemes = NULL;
} else if ((p = strstr (application->command, "%u")) != NULL) {
do {
*p = '\0';
p--;
} while (p >= application->command && g_ascii_isspace (*p));
application->can_open_multiple_files = FALSE;
application->expects_uris = GNOME_VFS_MIME_APPLICATION_ARGUMENT_TYPE_URIS;
application->supported_uri_schemes = _gnome_vfs_configuration_get_methods_list ();
} else if ((p = strstr (application->command, "%U")) != NULL) {
do {
*p = '\0';
p--;
} while (p >= application->command && g_ascii_isspace (*p));
application->can_open_multiple_files = TRUE;
application->expects_uris = GNOME_VFS_MIME_APPLICATION_ARGUMENT_TYPE_URIS;
application->supported_uri_schemes = _gnome_vfs_configuration_get_methods_list ();
} else {
application->can_open_multiple_files = FALSE;
application->expects_uris = GNOME_VFS_MIME_APPLICATION_ARGUMENT_TYPE_URIS_FOR_NON_FILES;
application->supported_uri_schemes = _gnome_vfs_configuration_get_methods_list ();
}
}
/**
* gnome_vfs_mime_application_new_from_desktop_id:
* @id: the identifier of a desktop entry.
*
* Returns a new #GnomeVFSMimeApplication for the @id.
*
* Return value: a #GnomeVFSMimeApplication.
*
* Since: 2.10
*/
GnomeVFSMimeApplication *
gnome_vfs_mime_application_new_from_desktop_id (const char *id)
{
GError *err = NULL;
GKeyFile *key_file;
GnomeVFSMimeApplication *app;
char **argv;
int argc;
char *filename;
g_return_val_if_fail (id != NULL, NULL);
app = g_new0 (GnomeVFSMimeApplication, 1);
app->priv = g_new0 (GnomeVFSMimeApplicationPrivate, 1);
app->id = g_strdup (id);
filename = g_build_filename ("applications", id, NULL);
key_file = g_key_file_new ();
if (!g_key_file_load_from_data_dirs (key_file, filename,
&app->priv->desktop_file_path,
G_KEY_FILE_NONE, &err)) {
goto exit;
}
app->name = g_key_file_get_locale_string (key_file, DESKTOP_ENTRY_GROUP,
"Name", NULL, &err);
if (err) goto exit;
/* Not REQUIRED by the specification but required in our context */
app->priv->exec = g_key_file_get_string (key_file, DESKTOP_ENTRY_GROUP,
"Exec", &err);
if (err) goto exit;
/* If there is no macro default to %f. This is also what KDE does */
if (!strchr (app->priv->exec, '%')) {
char *exec;
exec = g_strconcat (app->priv->exec, " %f", NULL);
g_free (app->priv->exec);
app->priv->exec = exec;
}
if (!g_shell_parse_argv (app->priv->exec, &argc, &argv, NULL)) {
goto exit;
}
app->priv->binary_name = g_strdup (argv[0]);
g_strfreev (argv);
app->priv->path = g_key_file_get_string (key_file, DESKTOP_ENTRY_GROUP,
"Path", NULL);
/* 'Path=' .desktop item is not working. bugzilla.gnome.org/389273 */
if (app->priv->path != NULL && *app->priv->path == 0) {
g_free (app->priv->path);
app->priv->path = NULL;
}
app->requires_terminal = g_key_file_get_boolean
(key_file, DESKTOP_ENTRY_GROUP, "Terminal", &err);
if (err) {
g_error_free (err);
err = NULL;
app->requires_terminal = FALSE;
}
app->priv->startup_notification = g_key_file_get_boolean
(key_file, DESKTOP_ENTRY_GROUP, "StartupNotify", &err);
if (err) {
g_error_free (err);
err = NULL;
app->priv->startup_notification = FALSE;
}
app->priv->generic_name = g_key_file_get_locale_string
(key_file, DESKTOP_ENTRY_GROUP, "GenericName", NULL, NULL);
app->priv->icon = g_key_file_get_string
(key_file, DESKTOP_ENTRY_GROUP, "Icon", NULL);
app->priv->startup_wm_class = g_key_file_get_string
(key_file, DESKTOP_ENTRY_GROUP, "StartupWMClass", NULL);
app->priv->supports_uris = strstr (app->priv->exec, "%u") ||
strstr (app->priv->exec, "%U");
guess_deprecated_fields_from_exec (app);
exit:
g_free (filename);
g_key_file_free (key_file);
if (err) {
g_error_free (err);
gnome_vfs_mime_application_free (app);
return NULL;
}
return app;
}
static gboolean
uri_is_local (const char *uri)
{
char *scheme;
gboolean local;
local = FALSE;
scheme = gnome_vfs_get_uri_scheme (uri);
if (scheme != NULL) {
local = (strcmp (scheme, "file") == 0);
g_free (scheme);
}
return local;
}
/**
* gnome_vfs_mime_application_get_default_application_for_uri:
* @mime_type: a const char * containing a mime type, e.g. "application/x-php".
* @uri: a stringified uri.
*
* Query the MIME database for the application to be executed on the file
* identified by @uri of @mime_type by default.
*
* Return value: a #GnomeVFSMimeApplication representing the default handler.
*
* Since: 2.10
*/
GnomeVFSMimeApplication *
gnome_vfs_mime_get_default_application_for_uri (const char *uri,
const char *mime_type)
{
GList *applications, *l;
GnomeVFSMimeApplication *app = NULL;
gboolean local;
g_return_val_if_fail (uri != NULL, NULL);
g_return_val_if_fail (mime_type != NULL, NULL);
local = uri_is_local (uri);
applications = gnome_vfs_mime_get_all_desktop_entries (mime_type);
for (l = applications; l != NULL; l = l->next) {
app = gnome_vfs_mime_application_new_from_id (l->data);
if (app != NULL) {
if (local || gnome_vfs_mime_application_supports_uris (app)) {
break;
} else {
gnome_vfs_mime_application_free (app);
app = NULL;
}
}
}
g_list_foreach (applications, (GFunc) g_free, NULL);
g_list_free (applications);
return app;
}
/**
* gnome_vfs_mime_get_all_applications_for_uri:
* @mime_type: a const char * containing a mime type, e.g. "application/x-php".
* @uri: a stringified uri.
*
* Return an alphabetically sorted list of #GnomeVFSMimeApplication
* data structures representing all applications in the MIME database able
* to handle the file identified by @uri of @mime_type (and supertypes).
*
* Return value: a #GList * where the elements are #GnomeVFSMimeApplication *
* representing all possible handlers
*
* Since: 2.10
*/
GList *
gnome_vfs_mime_get_all_applications_for_uri (const char *uri,
const char *mime_type)
{
GList *applications, *l, *result = NULL;
GnomeVFSMimeApplication *app;
gboolean local;
g_return_val_if_fail (uri != NULL, NULL);
g_return_val_if_fail (mime_type != NULL, NULL);
local = uri_is_local (uri);
applications = gnome_vfs_mime_get_all_desktop_entries (mime_type);
for (l = applications; l != NULL; l = l->next) {
app = gnome_vfs_mime_application_new_from_id (l->data);
if (app != NULL)
{
if (local || gnome_vfs_mime_application_supports_uris (app)) {
result = g_list_append (result, app);
} else {
gnome_vfs_mime_application_free (app);
}
}
}
g_list_foreach (applications, (GFunc) g_free, NULL);
g_list_free (applications);
return result;
}
/**
* gnome_vfs_mime_application_get_desktop_id:
* @app: a #GnomeVFSMimeApplication.
*
* Returns the identifier of the desktop entry.
*
* Return value: the identifier of the desktop entry.
*
* Since: 2.10
*/
const char *
gnome_vfs_mime_application_get_desktop_id (GnomeVFSMimeApplication *app)
{
g_return_val_if_fail (app != NULL, NULL);
if (app->priv == NULL) {
g_warning (MIXED_API_WARNING);
return NULL;
}
return app->id;
}
/**
* gnome_vfs_mime_application_get_desktop_file_path:
* @app: a #GnomeVFSMimeApplication.
*
* Returns the path of the desktop entry, a configuration
* file describing the properties of a particular program like
* it's name, how it is to be launched, how it appears in menus.
*
* Return value: the path of the .desktop file.
*
* Since: 2.10
*/
const char *
gnome_vfs_mime_application_get_desktop_file_path (GnomeVFSMimeApplication *app)
{
g_return_val_if_fail (app != NULL, NULL);
if (app->priv == NULL) {
g_warning (MIXED_API_WARNING);
return NULL;
}
return app->priv->desktop_file_path;
}
/**
* gnome_vfs_mime_application_get_name:
* @app: a #GnomeVFSMimeApplication.
*
* Returns the name of the application @app
*
* Return value: the name of the application.
*
* Since: 2.10
*/
const char *
gnome_vfs_mime_application_get_name (GnomeVFSMimeApplication *app)
{
g_return_val_if_fail (app != NULL, NULL);
return app->name;
}
/**
* gnome_vfs_mime_application_get_generic_name:
* @app: a #GnomeVFSMimeApplication.
*
* Returns the generic name of the application.
*
* Return value: the generic name of the application.
*
* Since: 2.10
*/
const char *
gnome_vfs_mime_application_get_generic_name (GnomeVFSMimeApplication *app)
{
g_return_val_if_fail (app != NULL, NULL);
if (app->priv == NULL) {
g_warning (MIXED_API_WARNING);
return NULL;
}
return app->priv->generic_name;
}
/**
* gnome_vfs_mime_application_get_icon:
* @app: a #GnomeVFSMimeApplication.
*
* Returns an icon representing the specified application.
*
* Return value: the filename of the icon usually without path information,
* e.g. "gedit-icon.png", and sometimes does not have an extension,
* e.g. "gnome-pdf" if the icon is supposed to be image type agnostic between
* icon themes. Icons are generic, and not theme specific.
*
* Since: 2.10
*/
const char *
gnome_vfs_mime_application_get_icon (GnomeVFSMimeApplication *app)
{
g_return_val_if_fail (app != NULL, NULL);
if (app->priv == NULL) {
g_warning (MIXED_API_WARNING);
return NULL;
}
return app->priv->icon;
}
/**
* gnome_vfs_mime_application_get_exec:
* @app: a #GnomeVFSMimeApplication.
*
* Returns the program to execute, possibly with arguments
* and parameter variables, as specified by the
* <ulink url="http://standards.freedesktop.org/desktop-entry-spec/">
* Desktop Entry Specification</ulink>.
*
* Return value: the command line to execute.
*
* Since: 2.10
*/
const char *
gnome_vfs_mime_application_get_exec (GnomeVFSMimeApplication *app)
{
g_return_val_if_fail (app != NULL, NULL);
if (app->priv == NULL) {
g_warning (MIXED_API_WARNING);
return NULL;
}
return app->priv->exec;
}
/**
* gnome_vfs_mime_application_get_binary_name:
* @app: a #GnomeVFSMimeApplication.
*
* Returns the binary name of the specified application.
* Useful to implement startup notification.
* Note that this only provides partial information about
* application execution, it misses arguments and macros.
* DO NOT USE it to launch the application.
* Use gnome_vfs_mime_application_launch or
* gnome_vfs_mime_application_get_exec() if you really
* need to write a custom launcher.
*
* Return value: the application's binary name.
*
* Since: 2.10
*/
const char *
gnome_vfs_mime_application_get_binary_name (GnomeVFSMimeApplication *app)
{
g_return_val_if_fail (app != NULL, NULL);
if (app->priv == NULL) {
g_warning (MIXED_API_WARNING);
return NULL;
}
return app->priv->binary_name;
}
/**
* gnome_vfs_mime_application_supports_uris:
* @app: a #GnomeVFSMimeApplication.
*
* Returns whether the application accept uris as command
* lines arguments.
*
* Return value: %TRUE if the application can handle uris.
*
* Since: 2.10
*/
gboolean
gnome_vfs_mime_application_supports_uris (GnomeVFSMimeApplication *app)
{
g_return_val_if_fail (app != NULL, FALSE);
if (app->priv == NULL) {
g_warning (MIXED_API_WARNING);
return FALSE;
}
return app->priv->supports_uris;
}
/**
* gnome_vfs_mime_application_requires_terminal:
* @app: a #GnomeVFSMimeApplication.
*
* Returns whether the application runs in a terminal window.
*
* Return value: %TRUE if the application runs in a terminal.
*
* Since: 2.10
*/
gboolean
gnome_vfs_mime_application_requires_terminal (GnomeVFSMimeApplication *app)
{
g_return_val_if_fail (app != NULL, FALSE);
return app->requires_terminal;
}
/**
* gnome_vfs_mime_application_supports_startup_notification:
* @app: a #GnomeVFSMimeApplication.
*
* Returns whether the application supports startup notification.
* If true, it is KNOWN that the application will send a
* "remove" message when started with the DESKTOP_LAUNCH_ID
* environment variable set.
*
* Return value: %TRUE if the application supports startup notification.
*
* Since: 2.10
*/
gboolean
gnome_vfs_mime_application_supports_startup_notification (GnomeVFSMimeApplication *app)
{
g_return_val_if_fail (app != NULL, FALSE);
if (app->priv == NULL) {
g_warning (MIXED_API_WARNING);
return FALSE;
}
return app->priv->startup_notification;
}
/**
* gnome_vfs_mime_application_get_startup_wm_class:
* @app: a #GnomeVFSMimeApplication
*
* Returns the WM class of the main window of the application.
*
* Return value: The WM class of the application's window
*
* Since: 2.10
*/
const char *
gnome_vfs_mime_application_get_startup_wm_class (GnomeVFSMimeApplication *app)
{
g_return_val_if_fail (app != NULL, NULL);
if (app->priv == NULL) {
g_warning (MIXED_API_WARNING);
return NULL;
}
return app->priv->startup_wm_class;
}
|