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
|
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*-
*
* Copyright (C) 2014-2016 Richard Hughes <richard@hughsie.com>
* Copyright (C) 2011 Paolo Bacchilega <paobac@src.gnome.org>
*
* SPDX-License-Identifier: LGPL-2.1+
*/
/**
* SECTION:as-utils
* @short_description: Helper functions that are used inside libappstream-glib
* @include: appstream-glib.h
* @stability: Stable
*
* These functions are used internally to libappstream-glib, and some may be
* useful to user-applications.
*/
#include "config.h"
#include <string.h>
#include <archive_entry.h>
#include <archive.h>
#include <libsoup/soup.h>
#include <stdlib.h>
#ifndef _WIN32
#ifdef __APPLE__
#include <uuid/uuid.h>
#else
#include <uuid.h>
#endif
#endif
#ifdef HAVE_RPM
#include <rpm/rpmlib.h>
#endif
#include "as-app-private.h"
#include "as-enums.h"
#include "as-node.h"
#include "as-resources.h"
#include "as-store.h"
#include "as-utils.h"
#include "as-utils-private.h"
/**
* as_utils_error_quark:
*
* Return value: An error quark.
*
* Since: 0.3.7
**/
G_DEFINE_QUARK (as-utils-error-quark, as_utils_error)
/**
* as_hash_lookup_by_locale:
* @hash: a #GHashTable.
* @locale: the locale, or %NULL to use the users default local.
*
* Gets the 'best' data entry in a hash table using the user-set list
* of preferred languages.
*
* This is how methods like as_app_get_name(app,NULL) return the localized
* data for the user.
*
* Returns: the string value, or %NULL if there was no data
*
* Since: 0.1.0
**/
const gchar *
as_hash_lookup_by_locale (GHashTable *hash, const gchar *locale)
{
const gchar *const *locales;
const gchar *tmp = NULL;
guint i;
g_return_val_if_fail (hash != NULL, NULL);
/* the user specified a locale */
if (locale != NULL)
return g_hash_table_lookup (hash, locale);
/* use LANGUAGE, LC_ALL, LC_MESSAGES and LANG */
locales = g_get_language_names ();
for (i = 0; locales[i] != NULL; i++) {
tmp = g_hash_table_lookup (hash, locales[i]);
if (tmp != NULL)
return tmp;
}
return NULL;
}
static gchar *
as_utils_locale_to_language (const gchar *locale)
{
gchar *tmp;
gchar *country_code;
/* invalid */
if (locale == NULL)
return NULL;
/* return the part before the _ (not always 2 chars!) */
country_code = g_strdup (locale);
tmp = g_strstr_len (country_code, -1, "_");
if (tmp != NULL)
*tmp = '\0';
return country_code;
}
/**
* as_utils_locale_is_compatible:
* @locale1: a locale string, or %NULL
* @locale2: a locale string, or %NULL
*
* Calculates if one locale is compatible with another.
* When doing the calculation the locale and language code is taken into
* account if possible.
*
* Returns: %TRUE if the locale is compatible.
*
* Since: 0.5.14
**/
gboolean
as_utils_locale_is_compatible (const gchar *locale1, const gchar *locale2)
{
g_autofree gchar *lang1 = as_utils_locale_to_language (locale1);
g_autofree gchar *lang2 = as_utils_locale_to_language (locale2);
/* we've specified "don't care" and locale unspecified */
if (locale1 == NULL && locale2 == NULL)
return TRUE;
/* forward */
if (locale1 == NULL && locale2 != NULL) {
const gchar *const *locales = g_get_language_names ();
return g_strv_contains (locales, locale2) ||
g_strv_contains (locales, lang2);
}
/* backwards */
if (locale1 != NULL && locale2 == NULL) {
const gchar *const *locales = g_get_language_names ();
return g_strv_contains (locales, locale1) ||
g_strv_contains (locales, lang1);
}
/* both specified */
if (g_strcmp0 (locale1, locale2) == 0)
return TRUE;
if (g_strcmp0 (locale1, lang2) == 0)
return TRUE;
if (g_strcmp0 (lang1, locale2) == 0)
return TRUE;
return FALSE;
}
/**
* as_utils_is_stock_icon_name:
* @name: an icon name
*
* Searches the known list of stock icons.
*
* Returns: %TRUE if the icon is a "stock icon name" and does not need to be
* included in the AppStream icon tarball
*
* Since: 0.1.3
**/
gboolean
as_utils_is_stock_icon_name (const gchar *name)
{
g_autoptr(GBytes) data = NULL;
g_autofree gchar *key = NULL;
gchar *tmp;
/* load the readonly data section and look for the icon name */
data = g_resource_lookup_data (as_get_resource (),
"/org/freedesktop/appstream-glib/as-stock-icons.txt",
G_RESOURCE_LOOKUP_FLAGS_NONE,
NULL);
if (data == NULL)
return FALSE;
key = g_strdup_printf ("\n%s\n", name);
tmp = g_strstr_len (key, -1, "-symbolic");
if (tmp != NULL) {
tmp[0] = '\n';
tmp[1] = '\0';
}
return g_strstr_len (g_bytes_get_data (data, NULL), -1, key) != NULL;
}
/**
* as_utils_is_spdx_license_id:
* @license_id: a single SPDX license ID, e.g. "CC-BY-3.0"
*
* Searches the known list of SPDX license IDs.
*
* Returns: %TRUE if the license ID is a valid "SPDX license ID"
*
* Since: 0.1.5
**/
gboolean
as_utils_is_spdx_license_id (const gchar *license_id)
{
g_autoptr(GBytes) data = NULL;
g_autofree gchar *key = NULL;
/* handle invalid */
if (license_id == NULL || license_id[0] == '\0')
return FALSE;
/* this is used to map non-SPDX licence-ids to legitimate values */
if (g_str_has_prefix (license_id, "LicenseRef-"))
return TRUE;
/* load the readonly data section and look for the license ID */
data = g_resource_lookup_data (as_get_resource (),
"/org/freedesktop/appstream-glib/as-license-ids.txt",
G_RESOURCE_LOOKUP_FLAGS_NONE,
NULL);
if (data == NULL)
return FALSE;
key = g_strdup_printf ("\n%s\n", license_id);
return g_strstr_len (g_bytes_get_data (data, NULL), -1, key) != NULL;
}
/**
* as_utils_is_blacklisted_id:
* @desktop_id: a desktop ID, e.g. "gimp.desktop"
*
* Searches the known list of blacklisted desktop IDs.
*
* Returns: %TRUE if the desktop ID is blacklisted
*
* Since: 0.2.2
**/
gboolean
as_utils_is_blacklisted_id (const gchar *desktop_id)
{
return FALSE;
}
/**
* as_utils_is_environment_id:
* @environment_id: a desktop ID, e.g. "GNOME"
*
* Searches the known list of registered environment IDs.
*
* Returns: %TRUE if the environment ID is valid
*
* Since: 0.2.4
**/
gboolean
as_utils_is_environment_id (const gchar *environment_id)
{
g_autoptr(GBytes) data = NULL;
g_autofree gchar *key = NULL;
/* load the readonly data section and look for the environment ID */
data = g_resource_lookup_data (as_get_resource (),
"/org/freedesktop/appstream-glib/as-environment-ids.txt",
G_RESOURCE_LOOKUP_FLAGS_NONE,
NULL);
if (data == NULL)
return FALSE;
key = g_strdup_printf ("\n%s\n", environment_id);
return g_strstr_len (g_bytes_get_data (data, NULL), -1, key) != NULL;
}
/**
* as_utils_is_category_id:
* @category_id: a desktop ID, e.g. "AudioVideoEditing"
*
* Searches the known list of registered category IDs.
*
* Returns: %TRUE if the category ID is valid
*
* Since: 0.2.4
**/
gboolean
as_utils_is_category_id (const gchar *category_id)
{
g_autoptr(GBytes) data = NULL;
g_autofree gchar *key = NULL;
/* load the readonly data section and look for the category ID */
data = g_resource_lookup_data (as_get_resource (),
"/org/freedesktop/appstream-glib/as-category-ids.txt",
G_RESOURCE_LOOKUP_FLAGS_NONE,
NULL);
if (data == NULL)
return FALSE;
key = g_strdup_printf ("\n%s\n", category_id);
return g_strstr_len (g_bytes_get_data (data, NULL), -1, key) != NULL;
}
typedef struct {
gboolean last_token_literal;
GPtrArray *array;
GString *collect;
} AsUtilsSpdxHelper;
static gpointer
_g_ptr_array_last (GPtrArray *array)
{
return g_ptr_array_index (array, array->len - 1);
}
static void
as_utils_spdx_license_tokenize_drop (AsUtilsSpdxHelper *helper)
{
const gchar *tmp = helper->collect->str;
guint i;
g_autofree gchar *last_literal = NULL;
struct {
const gchar *old;
const gchar *new;
} licenses[] = {
{ "CC0", "CC0-1.0" },
{ "CC-BY", "CC-BY-3.0" },
{ "CC-BY-SA", "CC-BY-SA-3.0" },
{ "GFDL", "GFDL-1.3" },
{ "GPL-2", "GPL-2.0" },
{ "GPL-3", "GPL-3.0" },
{ "proprietary", "LicenseRef-proprietary" },
{ NULL, NULL } };
/* nothing from last time */
if (helper->collect->len == 0)
return;
/* is license enum */
if (as_utils_is_spdx_license_id (tmp)) {
g_ptr_array_add (helper->array, g_strdup_printf ("@%s", tmp));
helper->last_token_literal = FALSE;
g_string_truncate (helper->collect, 0);
return;
}
/* is license enum with "+" */
if (g_str_has_suffix (tmp, "+")) {
g_autofree gchar *license_id = g_strndup (tmp, strlen (tmp) - 1);
if (as_utils_is_spdx_license_id (license_id)) {
g_ptr_array_add (helper->array, g_strdup_printf ("@%s", license_id));
g_ptr_array_add (helper->array, g_strdup ("+"));
helper->last_token_literal = FALSE;
g_string_truncate (helper->collect, 0);
return;
}
}
/* is old license enum */
for (i = 0; licenses[i].old != NULL; i++) {
if (g_strcmp0 (tmp, licenses[i].old) != 0)
continue;
g_ptr_array_add (helper->array,
g_strdup_printf ("@%s", licenses[i].new));
helper->last_token_literal = FALSE;
g_string_truncate (helper->collect, 0);
return;
}
/* is conjunctive */
if (g_strcmp0 (tmp, "and") == 0 || g_strcmp0 (tmp, "AND") == 0) {
g_ptr_array_add (helper->array, g_strdup ("&"));
helper->last_token_literal = FALSE;
g_string_truncate (helper->collect, 0);
return;
}
/* is disjunctive */
if (g_strcmp0 (tmp, "or") == 0 || g_strcmp0 (tmp, "OR") == 0) {
g_ptr_array_add (helper->array, g_strdup ("|"));
helper->last_token_literal = FALSE;
g_string_truncate (helper->collect, 0);
return;
}
/* is literal */
if (helper->last_token_literal) {
last_literal = g_strdup (_g_ptr_array_last (helper->array));
g_ptr_array_remove_index (helper->array, helper->array->len - 1);
g_ptr_array_add (helper->array,
g_strdup_printf ("%s %s", last_literal, tmp));
} else {
g_ptr_array_add (helper->array, g_strdup (tmp));
helper->last_token_literal = TRUE;
}
g_string_truncate (helper->collect, 0);
}
/* SPDX decided to rename some of the really common license IDs in v3
* which broke a lot of tools that we cannot really fix now */
static GString *
as_utils_spdx_license_3to2 (const gchar *license3)
{
GString *license2 = g_string_new (license3);
as_utils_string_replace (license2, "-only", "");
as_utils_string_replace (license2, "-or-later", "+");
return license2;
}
/**
* as_utils_spdx_license_tokenize:
* @license: a license string, e.g. "LGPLv2+ and (QPL or GPLv2) and MIT"
*
* Tokenizes the SPDX license string (or any simarly formatted string)
* into parts. Any licence parts of the string e.g. "LGPL-2.0+" are prefexed
* with "@", the conjunctive replaced with "&" and the disjunctive replaced
* with "|". Brackets are added as indervidual tokens and other strings are
* appended into single tokens where possible.
*
* Returns: (transfer full): array of strings, or %NULL for invalid
*
* Since: 0.1.5
**/
gchar **
as_utils_spdx_license_tokenize (const gchar *license)
{
AsUtilsSpdxHelper helper;
g_autoptr(GString) license2 = NULL;
/* handle invalid */
if (license == NULL)
return NULL;
/* SPDX broke the world with v3 */
license2 = as_utils_spdx_license_3to2 (license);
helper.last_token_literal = FALSE;
helper.collect = g_string_new ("");
helper.array = g_ptr_array_new_with_free_func (g_free);
for (guint i = 0; i < license2->len; i++) {
/* handle brackets */
const gchar tmp = license2->str[i];
if (tmp == '(' || tmp == ')') {
as_utils_spdx_license_tokenize_drop (&helper);
g_ptr_array_add (helper.array, g_strdup_printf ("%c", tmp));
helper.last_token_literal = FALSE;
continue;
}
/* space, so dump queue */
if (tmp == ' ') {
as_utils_spdx_license_tokenize_drop (&helper);
continue;
}
g_string_append_c (helper.collect, tmp);
}
/* dump anything remaining */
as_utils_spdx_license_tokenize_drop (&helper);
/* return GStrv */
g_ptr_array_add (helper.array, NULL);
g_string_free (helper.collect, TRUE);
return (gchar **) g_ptr_array_free (helper.array, FALSE);
}
/**
* as_utils_spdx_license_detokenize:
* @license_tokens: license tokens, typically from as_utils_spdx_license_tokenize()
*
* De-tokenizes the SPDX licenses into a string.
*
* Returns: (transfer full): string, or %NULL for invalid
*
* Since: 0.2.5
**/
gchar *
as_utils_spdx_license_detokenize (gchar **license_tokens)
{
GString *tmp;
guint i;
/* handle invalid */
if (license_tokens == NULL)
return NULL;
tmp = g_string_new ("");
for (i = 0; license_tokens[i] != NULL; i++) {
if (g_strcmp0 (license_tokens[i], "&") == 0) {
g_string_append (tmp, " AND ");
continue;
}
if (g_strcmp0 (license_tokens[i], "|") == 0) {
g_string_append (tmp, " OR ");
continue;
}
if (g_strcmp0 (license_tokens[i], "+") == 0) {
g_string_append (tmp, "+");
continue;
}
if (license_tokens[i][0] != '@') {
g_string_append (tmp, license_tokens[i]);
continue;
}
g_string_append (tmp, license_tokens[i] + 1);
}
return g_string_free (tmp, FALSE);
}
/**
* as_utils_is_spdx_license:
* @license: a SPDX license string, e.g. "CC-BY-3.0 and GFDL-1.3"
*
* Checks the licence string to check it being a valid licence.
* NOTE: SPDX licences can't typically contain brackets.
*
* Returns: %TRUE if the license is a valid "SPDX license"
*
* Since: 0.2.5
**/
gboolean
as_utils_is_spdx_license (const gchar *license)
{
guint i;
g_auto(GStrv) tokens = NULL;
/* handle nothing set */
if (license == NULL || license[0] == '\0')
return FALSE;
/* no license information whatsoever */
if (g_strcmp0 (license, "NONE") == 0)
return TRUE;
/* creator has intentionally provided no information */
if (g_strcmp0 (license, "NOASSERTION") == 0)
return TRUE;
tokens = as_utils_spdx_license_tokenize (license);
if (tokens == NULL)
return FALSE;
for (i = 0; tokens[i] != NULL; i++) {
if (tokens[i][0] == '@') {
if (as_utils_is_spdx_license_id (tokens[i] + 1))
continue;
}
if (as_utils_is_spdx_license_id (tokens[i]))
continue;
if (g_strcmp0 (tokens[i], "&") == 0)
continue;
if (g_strcmp0 (tokens[i], "|") == 0)
continue;
if (g_strcmp0 (tokens[i], "+") == 0)
continue;
return FALSE;
}
return TRUE;
}
/**
* as_utils_license_to_spdx:
* @license: a not-quite SPDX license string, e.g. "GPLv3+"
*
* Converts a non-SPDX license into an SPDX format string where possible.
*
* Returns: the best-effort SPDX license string
*
* Since: 0.5.5
**/
gchar *
as_utils_license_to_spdx (const gchar *license)
{
GString *str;
guint i;
guint j;
guint license_len;
struct {
const gchar *old;
const gchar *new;
} convert[] = {
{ " with exceptions", NULL },
{ " with advertising", NULL },
{ " and ", " AND " },
{ " or ", " OR " },
{ "AGPLv3+", "AGPL-3.0" },
{ "AGPLv3", "AGPL-3.0" },
{ "Artistic 2.0", "Artistic-2.0" },
{ "Artistic clarified", "Artistic-2.0" },
{ "Artistic", "Artistic-1.0" },
{ "ASL 1.1", "Apache-1.1" },
{ "ASL 2.0", "Apache-2.0" },
{ "Boost", "BSL-1.0" },
{ "BSD", "BSD-3-Clause" },
{ "CC0", "CC0-1.0" },
{ "CC-BY-SA", "CC-BY-SA-3.0" },
{ "CC-BY", "CC-BY-3.0" },
{ "CDDL", "CDDL-1.0" },
{ "CeCILL-C", "CECILL-C" },
{ "CeCILL", "CECILL-2.0" },
{ "CPAL", "CPAL-1.0" },
{ "CPL", "CPL-1.0" },
{ "EPL", "EPL-1.0" },
{ "Free Art", "ClArtistic" },
{ "GFDL", "GFDL-1.3" },
{ "GPL+", "GPL-1.0+" },
{ "GPLv2+", "GPL-2.0+" },
{ "GPLv2", "GPL-2.0" },
{ "GPLv3+", "GPL-3.0+" },
{ "GPLv3", "GPL-3.0" },
{ "IBM", "IPL-1.0" },
{ "LGPL+", "LGPL-2.1+" },
{ "LGPLv2.1", "LGPL-2.1" },
{ "LGPLv2+", "LGPL-2.1+" },
{ "LGPLv2", "LGPL-2.1" },
{ "LGPLv3+", "LGPL-3.0+" },
{ "LGPLv3", "LGPL-3.0" },
{ "LPPL", "LPPL-1.3c" },
{ "MPLv1.0", "MPL-1.0" },
{ "MPLv1.1", "MPL-1.1" },
{ "MPLv2.0", "MPL-2.0" },
{ "Netscape", "NPL-1.1" },
{ "OFL", "OFL-1.1" },
{ "Python", "Python-2.0" },
{ "QPL", "QPL-1.0" },
{ "SPL", "SPL-1.0" },
{ "UPL", "UPL-1.0" },
{ "zlib", "Zlib" },
{ "ZPLv2.0", "ZPL-2.0" },
{ "Unlicense", "CC0-1.0" },
{ "Public Domain", "LicenseRef-public-domain" },
{ "SUSE-Public-Domain", "LicenseRef-public-domain" },
{ "Copyright only", "LicenseRef-public-domain" },
{ "Proprietary", "LicenseRef-proprietary" },
{ "Commercial", "LicenseRef-proprietary" },
{ NULL, NULL } };
/* nothing set */
if (license == NULL)
return NULL;
/* already in SPDX format */
if (as_utils_is_spdx_license (license))
return g_strdup (license);
/* go through the string looking for case-insensitive matches */
str = g_string_new ("");
license_len = (guint) strlen (license);
for (i = 0; i < license_len; i++) {
gboolean found = FALSE;
for (j = 0; convert[j].old != NULL; j++) {
guint old_len = (guint) strlen (convert[j].old);
if (g_ascii_strncasecmp (license + i,
convert[j].old,
old_len) != 0)
continue;
if (convert[j].new != NULL)
g_string_append (str, convert[j].new);
i += old_len - 1;
found = TRUE;
}
if (!found)
g_string_append_c (str, license[i]);
}
return g_string_free (str, FALSE);
}
static void
as_pixbuf_blur_private (GdkPixbuf *src, GdkPixbuf *dest, gint radius, guchar *div_kernel_size)
{
gint width, height, src_rowstride, dest_rowstride, n_channels;
guchar *p_src, *p_dest, *c1, *c2;
gint x, y, i, i1, i2, width_minus_1, height_minus_1, radius_plus_1;
gint r, g, b, a;
guchar *p_dest_row, *p_dest_col;
width = gdk_pixbuf_get_width (src);
height = gdk_pixbuf_get_height (src);
n_channels = gdk_pixbuf_get_n_channels (src);
radius_plus_1 = radius + 1;
/* horizontal blur */
p_src = gdk_pixbuf_get_pixels (src);
p_dest = gdk_pixbuf_get_pixels (dest);
src_rowstride = gdk_pixbuf_get_rowstride (src);
dest_rowstride = gdk_pixbuf_get_rowstride (dest);
width_minus_1 = width - 1;
for (y = 0; y < height; y++) {
/* calc the initial sums of the kernel */
r = g = b = a = 0;
for (i = -radius; i <= radius; i++) {
c1 = p_src + (CLAMP (i, 0, width_minus_1) * n_channels);
r += c1[0];
g += c1[1];
b += c1[2];
}
p_dest_row = p_dest;
for (x = 0; x < width; x++) {
/* set as the mean of the kernel */
p_dest_row[0] = div_kernel_size[r];
p_dest_row[1] = div_kernel_size[g];
p_dest_row[2] = div_kernel_size[b];
p_dest_row += n_channels;
/* the pixel to add to the kernel */
i1 = x + radius_plus_1;
if (i1 > width_minus_1)
i1 = width_minus_1;
c1 = p_src + (i1 * n_channels);
/* the pixel to remove from the kernel */
i2 = x - radius;
if (i2 < 0)
i2 = 0;
c2 = p_src + (i2 * n_channels);
/* calc the new sums of the kernel */
r += c1[0] - c2[0];
g += c1[1] - c2[1];
b += c1[2] - c2[2];
}
p_src += src_rowstride;
p_dest += dest_rowstride;
}
/* vertical blur */
p_src = gdk_pixbuf_get_pixels (dest);
p_dest = gdk_pixbuf_get_pixels (src);
src_rowstride = gdk_pixbuf_get_rowstride (dest);
dest_rowstride = gdk_pixbuf_get_rowstride (src);
height_minus_1 = height - 1;
for (x = 0; x < width; x++) {
/* calc the initial sums of the kernel */
r = g = b = a = 0;
for (i = -radius; i <= radius; i++) {
c1 = p_src + (CLAMP (i, 0, height_minus_1) * src_rowstride);
r += c1[0];
g += c1[1];
b += c1[2];
}
p_dest_col = p_dest;
for (y = 0; y < height; y++) {
/* set as the mean of the kernel */
p_dest_col[0] = div_kernel_size[r];
p_dest_col[1] = div_kernel_size[g];
p_dest_col[2] = div_kernel_size[b];
p_dest_col += dest_rowstride;
/* the pixel to add to the kernel */
i1 = y + radius_plus_1;
if (i1 > height_minus_1)
i1 = height_minus_1;
c1 = p_src + (i1 * src_rowstride);
/* the pixel to remove from the kernel */
i2 = y - radius;
if (i2 < 0)
i2 = 0;
c2 = p_src + (i2 * src_rowstride);
/* calc the new sums of the kernel */
r += c1[0] - c2[0];
g += c1[1] - c2[1];
b += c1[2] - c2[2];
}
p_src += n_channels;
p_dest += n_channels;
}
}
/**
* as_pixbuf_blur:
* @src: the GdkPixbuf.
* @radius: the pixel radius for the gaussian blur, typical values are 1..3
* @iterations: Amount to blur the image, typical values are 1..5
*
* Blurs an image. Warning, this method is s..l..o..w... for large images.
*
* Since: 0.3.2
**/
void
as_pixbuf_blur (GdkPixbuf *src, gint radius, gint iterations)
{
gint kernel_size;
gint i;
g_autofree guchar *div_kernel_size = NULL;
g_autoptr(GdkPixbuf) tmp = NULL;
tmp = gdk_pixbuf_new (gdk_pixbuf_get_colorspace (src),
gdk_pixbuf_get_has_alpha (src),
gdk_pixbuf_get_bits_per_sample (src),
gdk_pixbuf_get_width (src),
gdk_pixbuf_get_height (src));
kernel_size = 2 * radius + 1;
div_kernel_size = g_new (guchar, 256 * kernel_size);
for (i = 0; i < 256 * kernel_size; i++)
div_kernel_size[i] = (guchar) (i / kernel_size);
while (iterations-- > 0)
as_pixbuf_blur_private (src, tmp, radius, div_kernel_size);
}
#define interpolate_value(original, reference, distance) \
(CLAMP (((distance) * (reference)) + \
((1.0 - (distance)) * (original)), 0, 255))
/**
* as_pixbuf_sharpen: (skip)
* @src: the GdkPixbuf.
* @radius: the pixel radius for the unsharp mask, typical values are 1..3
* @amount: Amount to sharpen the image, typical values are -0.1 to -0.9
*
* Sharpens an image. Warning, this method is s..l..o..w... for large images.
*
* Since: 0.2.2
**/
void
as_pixbuf_sharpen (GdkPixbuf *src, gint radius, gdouble amount)
{
gint width, height, rowstride, n_channels;
gint x, y;
guchar *p_blurred;
guchar *p_blurred_row;
guchar *p_src;
guchar *p_src_row;
g_autoptr(GdkPixbuf) blurred = NULL;
blurred = gdk_pixbuf_copy (src);
as_pixbuf_blur (blurred, radius, 3);
width = gdk_pixbuf_get_width (src);
height = gdk_pixbuf_get_height (src);
rowstride = gdk_pixbuf_get_rowstride (src);
n_channels = gdk_pixbuf_get_n_channels (src);
p_src = gdk_pixbuf_get_pixels (src);
p_blurred = gdk_pixbuf_get_pixels (blurred);
for (y = 0; y < height; y++) {
p_src_row = p_src;
p_blurred_row = p_blurred;
for (x = 0; x < width; x++) {
p_src_row[0] = (guchar) interpolate_value (p_src_row[0],
p_blurred_row[0],
amount);
p_src_row[1] = (guchar) interpolate_value (p_src_row[1],
p_blurred_row[1],
amount);
p_src_row[2] = (guchar) interpolate_value (p_src_row[2],
p_blurred_row[2],
amount);
p_src_row += n_channels;
p_blurred_row += n_channels;
}
p_src += rowstride;
p_blurred += rowstride;
}
}
/**
* as_utils_find_icon_filename_full:
* @destdir: the destdir.
* @search: the icon search name, e.g. "microphone.svg"
* @flags: A #AsUtilsFindIconFlag bitfield
* @error: A #GError or %NULL
*
* Finds an icon filename from a filesystem root.
*
* Returns: (transfer full): a newly allocated %NULL terminated string
*
* Since: 0.3.1
**/
gchar *
as_utils_find_icon_filename_full (const gchar *destdir,
const gchar *search,
AsUtilsFindIconFlag flags,
GError **error)
{
guint i;
guint j;
guint k;
guint m;
const gchar **sizes;
const gchar *pixmap_dirs[] = { "pixmaps", "icons", NULL };
const gchar *theme_dirs[] = { "hicolor", "oxygen", NULL };
const gchar *supported_ext[] = { ".png",
".gif",
".svg",
".xpm",
"",
NULL };
const gchar *sizes_lo_dpi[] = { "64x64",
"128x128",
"96x96",
"256x256",
"512x512",
"scalable",
"48x48",
"32x32",
"24x24",
"16x16",
NULL };
const gchar *sizes_hi_dpi[] = { "128x128",
"256x256",
"512x512",
"scalable",
NULL };
const gchar *types[] = { "actions",
"animations",
"apps",
"categories",
"devices",
"emblems",
"emotes",
"filesystems",
"intl",
"mimetypes",
"places",
"status",
"stock",
NULL };
g_autofree gchar *prefix = NULL;
g_return_val_if_fail (search != NULL, NULL);
/* fallback */
if (destdir == NULL)
destdir = "";
/* is this an absolute path */
if (search[0] == '/') {
g_autofree gchar *tmp = NULL;
tmp = g_build_filename (destdir, search, NULL);
if (!g_file_test (tmp, G_FILE_TEST_EXISTS)) {
g_set_error (error,
AS_UTILS_ERROR,
AS_UTILS_ERROR_FAILED,
"specified icon '%s' does not exist",
search);
return NULL;
}
return g_strdup (tmp);
}
/* all now found in the prefix */
prefix = g_strdup_printf ("%s/usr", destdir);
if (!g_file_test (prefix, G_FILE_TEST_EXISTS)) {
g_free (prefix);
prefix = g_strdup (destdir);
}
if (!g_file_test (prefix, G_FILE_TEST_EXISTS)) {
g_set_error (error,
AS_UTILS_ERROR,
AS_UTILS_ERROR_FAILED,
"Failed to find icon in prefix %s", search);
return NULL;
}
/* icon theme apps */
sizes = flags & AS_UTILS_FIND_ICON_HI_DPI ? sizes_hi_dpi : sizes_lo_dpi;
for (k = 0; theme_dirs[k] != NULL; k++) {
for (i = 0; sizes[i] != NULL; i++) {
for (m = 0; types[m] != NULL; m++) {
for (j = 0; supported_ext[j] != NULL; j++) {
g_autofree gchar *tmp = NULL;
tmp = g_strdup_printf ("%s/share/icons/"
"%s/%s/%s/%s%s",
prefix,
theme_dirs[k],
sizes[i],
types[m],
search,
supported_ext[j]);
if (g_file_test (tmp, G_FILE_TEST_EXISTS))
return g_strdup (tmp);
}
}
}
}
/* pixmap */
for (i = 0; pixmap_dirs[i] != NULL; i++) {
for (j = 0; supported_ext[j] != NULL; j++) {
g_autofree gchar *tmp = NULL;
tmp = g_strdup_printf ("%s/share/%s/%s%s",
prefix,
pixmap_dirs[i],
search,
supported_ext[j]);
if (g_file_test (tmp, G_FILE_TEST_IS_REGULAR))
return g_strdup (tmp);
}
}
/* failed */
g_set_error (error,
AS_UTILS_ERROR,
AS_UTILS_ERROR_FAILED,
"Failed to find icon %s", search);
return NULL;
}
/**
* as_utils_find_icon_filename:
* @destdir: the destdir.
* @search: the icon search name, e.g. "microphone.svg"
* @error: A #GError or %NULL
*
* Finds an icon filename from a filesystem root.
*
* Returns: (transfer full): a newly allocated %NULL terminated string
*
* Since: 0.2.5
**/
gchar *
as_utils_find_icon_filename (const gchar *destdir,
const gchar *search,
GError **error)
{
return as_utils_find_icon_filename_full (destdir, search,
AS_UTILS_FIND_ICON_NONE,
error);
}
static const gchar *
as_utils_location_get_prefix (AsUtilsLocation location)
{
if (location == AS_UTILS_LOCATION_SHARED)
return "/usr/share";
if (location == AS_UTILS_LOCATION_CACHE)
return "/var/cache";
if (location == AS_UTILS_LOCATION_USER)
return "~/.local/share";
return NULL;
}
static gboolean
as_utils_install_icon (AsUtilsLocation location,
const gchar *filename,
const gchar *origin,
const gchar *destdir,
GError **error)
{
const gchar *pathname;
const gchar *tmp;
gboolean ret = TRUE;
gsize len;
int r;
struct archive *arch = NULL;
struct archive_entry *entry;
g_autofree gchar *data = NULL;
g_autofree gchar *dir = NULL;
dir = g_strdup_printf ("%s%s/app-info/icons/%s",
destdir,
as_utils_location_get_prefix (location),
origin);
/* load file at once to avoid seeking */
ret = g_file_get_contents (filename, &data, &len, error);
if (!ret)
goto out;
/* read anything */
arch = archive_read_new ();
archive_read_support_format_all (arch);
archive_read_support_filter_all (arch);
r = archive_read_open_memory (arch, data, len);
if (r) {
ret = FALSE;
g_set_error (error,
AS_UTILS_ERROR,
AS_UTILS_ERROR_FAILED,
"Cannot open %s: %s",
filename,
archive_error_string (arch));
goto out;
}
/* decompress each file */
for (;;) {
g_autofree gchar *buf = NULL;
r = archive_read_next_header (arch, &entry);
if (r == ARCHIVE_EOF)
break;
if (r != ARCHIVE_OK) {
ret = FALSE;
g_set_error (error,
AS_UTILS_ERROR,
AS_UTILS_ERROR_FAILED,
"Cannot read header: %s",
archive_error_string (arch));
goto out;
}
/* no output file */
pathname = archive_entry_pathname (entry);
if (pathname == NULL)
continue;
/* update output path */
buf = g_build_filename (dir, pathname, NULL);
archive_entry_update_pathname_utf8 (entry, buf);
/* update hardlinks */
tmp = archive_entry_hardlink (entry);
if (tmp != NULL) {
g_autofree gchar *buf_link = NULL;
buf_link = g_build_filename (dir, tmp, NULL);
archive_entry_update_hardlink_utf8 (entry, buf_link);
}
/* update symlinks */
tmp = archive_entry_symlink (entry);
if (tmp != NULL) {
g_autofree gchar *buf_link = NULL;
buf_link = g_build_filename (dir, tmp, NULL);
archive_entry_update_symlink_utf8 (entry, buf_link);
}
r = archive_read_extract (arch, entry, 0);
if (r != ARCHIVE_OK) {
ret = FALSE;
g_set_error (error,
AS_UTILS_ERROR,
AS_UTILS_ERROR_FAILED,
"Cannot extract: %s",
archive_error_string (arch));
goto out;
}
}
out:
if (arch != NULL) {
archive_read_close (arch);
archive_read_free (arch);
}
return ret;
}
static gboolean
as_utils_install_xml (const gchar *filename,
const gchar *origin,
const gchar *dir,
const gchar *destdir,
GError **error)
{
gchar *tmp;
g_autofree gchar *basename = NULL;
g_autofree gchar *path_dest = NULL;
g_autofree gchar *path_parent = NULL;
g_autoptr(GFile) file_dest = NULL;
g_autoptr(GFile) file_src = NULL;
/* create directory structure */
path_parent = g_strdup_printf ("%s%s", destdir, dir);
if (g_mkdir_with_parents (path_parent, 0777) != 0) {
g_set_error (error,
AS_UTILS_ERROR,
AS_UTILS_ERROR_FAILED,
"Failed to create %s", path_parent);
return FALSE;
}
/* calculate the new destination */
file_src = g_file_new_for_path (filename);
basename = g_path_get_basename (filename);
if (origin != NULL) {
g_autofree gchar *basename_new = NULL;
tmp = g_strstr_len (basename, -1, ".");
if (tmp == NULL) {
g_set_error (error,
AS_UTILS_ERROR,
AS_UTILS_ERROR_FAILED,
"Name of XML file invalid %s",
basename);
return FALSE;
}
basename_new = g_strdup_printf ("%s%s", origin, tmp);
/* replace the fedora.xml.gz into %{origin}.xml.gz */
path_dest = g_build_filename (path_parent, basename_new, NULL);
} else {
path_dest = g_build_filename (path_parent, basename, NULL);
}
/* actually copy file */
file_dest = g_file_new_for_path (path_dest);
if (!g_file_copy (file_src, file_dest,
G_FILE_COPY_OVERWRITE,
NULL, NULL, NULL, error))
return FALSE;
/* fix the origin */
if (origin != NULL) {
g_autoptr(AsStore) store = NULL;
store = as_store_new ();
if (!as_store_from_file (store, file_dest, NULL, NULL, error))
return FALSE;
as_store_set_origin (store, origin);
if (!as_store_to_file (store, file_dest,
AS_NODE_TO_XML_FLAG_ADD_HEADER |
AS_NODE_TO_XML_FLAG_FORMAT_MULTILINE,
NULL, error))
return FALSE;
}
return TRUE;
}
/**
* as_utils_install_filename:
* @location: the #AsUtilsLocation, e.g. %AS_UTILS_LOCATION_CACHE
* @filename: the full path of the file to install
* @origin: the origin to use for the installation, or %NULL
* @destdir: the destdir to use, or %NULL
* @error: A #GError or %NULL
*
* Installs an AppData, MetaInfo, AppStream XML or AppStream Icon metadata file.
*
* Returns: %TRUE for success, %FALSE if error is set
*
* Since: 0.3.4
**/
gboolean
as_utils_install_filename (AsUtilsLocation location,
const gchar *filename,
const gchar *origin,
const gchar *destdir,
GError **error)
{
gboolean ret = FALSE;
gchar *tmp;
g_autofree gchar *basename = NULL;
g_autofree gchar *path = NULL;
/* default value */
if (destdir == NULL)
destdir = "";
switch (as_format_guess_kind (filename)) {
case AS_FORMAT_KIND_APPSTREAM:
if (g_strstr_len (filename, -1, ".yml.gz") != NULL) {
path = g_build_filename (as_utils_location_get_prefix (location),
"app-info", "yaml", NULL);
ret = as_utils_install_xml (filename, origin, path, destdir, error);
} else {
path = g_build_filename (as_utils_location_get_prefix (location),
"app-info", "xmls", NULL);
ret = as_utils_install_xml (filename, origin, path, destdir, error);
}
break;
case AS_FORMAT_KIND_APPDATA:
case AS_FORMAT_KIND_METAINFO:
if (location == AS_UTILS_LOCATION_CACHE) {
g_set_error_literal (error,
AS_UTILS_ERROR,
AS_UTILS_ERROR_INVALID_TYPE,
"cached location unsupported for "
"MetaInfo and AppData files");
return FALSE;
}
path = g_build_filename (as_utils_location_get_prefix (location),
"appdata", NULL);
ret = as_utils_install_xml (filename, NULL, path, destdir, error);
break;
default:
/* icons */
if (origin != NULL) {
ret = as_utils_install_icon (location, filename, origin, destdir, error);
break;
}
basename = g_path_get_basename (filename);
tmp = g_strstr_len (basename, -1, "-icons.tar.gz");
if (tmp != NULL) {
*tmp = '\0';
ret = as_utils_install_icon (location, filename, basename, destdir, error);
break;
}
/* unrecognised */
g_set_error_literal (error,
AS_UTILS_ERROR,
AS_UTILS_ERROR_INVALID_TYPE,
"No idea how to process files of this type");
break;
}
return ret;
}
/**
* as_utils_search_token_valid:
* @token: the search token
*
* Checks the search token if it is valid. Valid tokens are at least 3 chars in
* length, not common words like "and", and do not contain markup.
*
* Returns: %TRUE is the search token was valid
*
* Since: 0.3.4
**/
gboolean
as_utils_search_token_valid (const gchar *token)
{
guint i;
for (i = 0; token[i] != '\0'; i++) {
if (token[i] == '<' ||
token[i] == '>' ||
token[i] == '(' ||
token[i] == ')')
return FALSE;
}
if (i < 3)
return FALSE;
return TRUE;
}
/**
* as_utils_search_tokenize:
* @search: the search string
*
* Splits up a string into tokens and returns tokens that are suitable for
* searching. This includes taking out common words and casefolding the
* returned search tokens.
*
* Returns: (transfer full): Valid tokens to search for, or %NULL for error
*
* Since: 0.3.4
**/
gchar **
as_utils_search_tokenize (const gchar *search)
{
gchar **values = NULL;
guint i;
guint idx = 0;
g_auto(GStrv) tmp = NULL;
/* only add keywords that are long enough */
tmp = g_strsplit (search, " ", -1);
values = g_new0 (gchar *, g_strv_length (tmp) + 1);
for (i = 0; tmp[i] != NULL; i++) {
if (!as_utils_search_token_valid (tmp[i]))
continue;
values[idx++] = g_utf8_casefold (tmp[i], -1);
}
if (idx == 0) {
g_free (values);
return NULL;
}
return values;
}
static gint
as_utils_vercmp_char (gchar chr1, gchar chr2)
{
if (chr1 == chr2)
return 0;
if (chr1 == '~')
return -1;
if (chr2 == '~')
return 1;
return chr1 < chr2 ? -1 : 1;
}
static gint
as_utils_vercmp_chunk (const gchar *str1, const gchar *str2)
{
guint i;
/* trivial */
if (g_strcmp0 (str1, str2) == 0)
return 0;
if (str1 == NULL)
return 1;
if (str2 == NULL)
return -1;
/* check each char of the chunk */
for (i = 0; str1[i] != '\0' && str2[i] != '\0'; i++) {
gint rc = as_utils_vercmp_char (str1[i], str2[i]);
if (rc != 0)
return rc;
}
return as_utils_vercmp_char (str1[i], str2[i]);
}
static gint
as_utils_vercmp_internal (const gchar *version_a,
const gchar *version_b)
{
guint longest_split;
g_auto(GStrv) split_a = NULL;
g_auto(GStrv) split_b = NULL;
split_a = g_strsplit (version_a, ".", -1);
split_b = g_strsplit (version_b, ".", -1);
longest_split = MAX (g_strv_length (split_a), g_strv_length (split_b));
for (guint i = 0; i < longest_split; i++) {
gchar *endptr_a = NULL;
gchar *endptr_b = NULL;
gint64 ver_a;
gint64 ver_b;
/* we lost or gained a dot */
if (split_a[i] == NULL)
return -1;
if (split_b[i] == NULL)
return 1;
/* compare integers */
ver_a = g_ascii_strtoll (split_a[i], &endptr_a, 10);
ver_b = g_ascii_strtoll (split_b[i], &endptr_b, 10);
if (ver_a < ver_b)
return -1;
if (ver_a > ver_b)
return 1;
/* compare strings */
if ((endptr_a != NULL && endptr_a[0] != '\0') ||
(endptr_b != NULL && endptr_b[0] != '\0')) {
gint rc = as_utils_vercmp_chunk (endptr_a, endptr_b);
if (rc < 0)
return -1;
if (rc > 0)
return 1;
}
}
/* we really shouldn't get here */
return 0;
}
/**
* as_utils_vercmp_full:
* @version_a: the release version, e.g. 1.2.3
* @version_b: the release version, e.g. 1.2.3.1
* @flags: some #AsVersionCompareFlag
*
* Compares version numbers for sorting.
*
* Returns: -1 if a < b, +1 if a > b, 0 if they are equal, and %G_MAXINT on error
*
* Since: 0.7.15
*/
gint
as_utils_vercmp_full (const gchar *version_a,
const gchar *version_b,
AsVersionCompareFlag flags)
{
/* sanity check */
if (version_a == NULL || version_b == NULL)
return G_MAXINT;
/* optimisation */
if (g_strcmp0 (version_a, version_b) == 0)
return 0;
if (flags & AS_VERSION_COMPARE_FLAG_USE_HEURISTICS) {
/* split into sections, and try to parse */
g_autofree gchar *str_a = as_utils_version_parse (version_a);
g_autofree gchar *str_b = as_utils_version_parse (version_b);
return as_utils_vercmp_internal (str_a, str_b);
} else {
#ifdef HAVE_RPM
return rpmvercmp (version_a, version_b);
#else
return as_utils_vercmp_internal (version_a, version_b);
#endif
}
}
/**
* as_utils_vercmp:
* @version_a: the release version, e.g. 1.2.3
* @version_b: the release version, e.g. 1.2.3.1
*
* Compares version numbers for sorting.
*
* Returns: -1 if a < b, +1 if a > b, 0 if they are equal, and %G_MAXINT on error
*
* Since: 0.3.5
*/
gint
as_utils_vercmp (const gchar *version_a, const gchar *version_b)
{
return as_utils_vercmp_full (version_a, version_b,
AS_VERSION_COMPARE_FLAG_USE_HEURISTICS);
}
/**
* as_ptr_array_find_string:
* @array: gchar* array
* @value: string to find
*
* Finds a string in a pointer array.
*
* Returns: the const string, or %NULL if not found
**/
const gchar *
as_ptr_array_find_string (GPtrArray *array, const gchar *value)
{
const gchar *tmp;
guint i;
for (i = 0; i < array->len; i++) {
tmp = g_ptr_array_index (array, i);
if (g_strcmp0 (tmp, value) == 0)
return tmp;
}
return NULL;
}
/**
* as_utils_guid_from_data:
* @namespace_id: A namespace ID, e.g. "6ba7b810-9dad-11d1-80b4-00c04fd430c8"
* @data: data to hash
* @data_len: length of @data
* @error: A #GError or %NULL
*
* Returns a GUID for some data. This uses a hash and so even small
* differences in the @data will produce radically different return values.
*
* The implementation is taken from RFC4122, Section 4.1.3; specifically
* using a type-5 SHA-1 hash.
*
* Returns: A new GUID, or %NULL if the namespace_id was invalid
*
* Since: 0.6.13
**/
gchar *
as_utils_guid_from_data (const gchar *namespace_id,
const guint8 *data,
gsize data_len,
GError **error)
{
#ifdef _WIN32
g_set_error_literal (error,
AS_UTILS_ERROR,
AS_UTILS_ERROR_FAILED,
"not supported");
return FALSE;
#else
gchar guid_new[37]; /* 36 plus NUL */
gsize digestlen = 20;
guint8 hash[20];
gint rc;
uuid_t uu_namespace;
uuid_t uu_new;
g_autoptr(GChecksum) csum = NULL;
g_return_val_if_fail (namespace_id != NULL, FALSE);
g_return_val_if_fail (data != NULL, FALSE);
g_return_val_if_fail (data_len != 0, FALSE);
/* convert the namespace to binary */
rc = uuid_parse (namespace_id, uu_namespace);
if (rc != 0) {
g_set_error (error,
AS_UTILS_ERROR,
AS_UTILS_ERROR_FAILED,
"namespace '%s' is invalid",
namespace_id);
return FALSE;
}
/* hash the namespace and then the string */
csum = g_checksum_new (G_CHECKSUM_SHA1);
g_checksum_update (csum, (guchar *) uu_namespace, 16);
g_checksum_update (csum, (guchar *) data, (gssize) data_len);
g_checksum_get_digest (csum, hash, &digestlen);
/* copy most parts of the hash 1:1 */
memcpy (uu_new, hash, 16);
/* set specific bits according to Section 4.1.3 */
uu_new[6] = (guint8) ((uu_new[6] & 0x0f) | (5 << 4));
uu_new[8] = (guint8) ((uu_new[8] & 0x3f) | 0x80);
/* return as a string */
uuid_unparse (uu_new, guid_new);
return g_strdup (guid_new);
#endif
}
/**
* as_utils_guid_is_valid:
* @guid: string to check
*
* Checks the source string is a valid string GUID descriptor.
*
* Returns: %TRUE if @guid was a valid GUID, %FALSE otherwise
*
* Since: 0.5.0
**/
gboolean
as_utils_guid_is_valid (const gchar *guid)
{
#ifdef _WIN32
/* XXX Ideally we should set a GError but this was already a public
* API, and it doesn't have such parameter.
*/
g_printerr ("%s: not supported\n", G_STRFUNC);
return FALSE;
#else
gint rc;
uuid_t uu;
if (guid == NULL)
return FALSE;
rc = uuid_parse (guid, uu);
return rc == 0;
#endif
}
/**
* as_utils_guid_from_string:
* @str: A source string to use as a key
*
* Returns a GUID for a given string. This uses a hash and so even small
* differences in the @str will produce radically different return values.
*
* The implementation is taken from RFC4122, Section 4.1.3; specifically
* using a type-5 SHA-1 hash with a DNS namespace.
* The same result can be obtained with this simple python program:
*
* #!/usr/bin/python
* import uuid
* print uuid.uuid5(uuid.NAMESPACE_DNS, 'python.org')
*
* Returns: A new GUID, or %NULL if the string was invalid
*
* Since: 0.5.0
**/
gchar *
as_utils_guid_from_string (const gchar *str)
{
if (str == NULL)
return NULL;
return as_utils_guid_from_data ("6ba7b810-9dad-11d1-80b4-00c04fd430c8",
(const guint8 *) str, strlen (str), NULL);
}
#define AS_UTILS_DECODE_BCD(val) ((((val) >> 4) & 0x0f) * 10 + ((val) & 0x0f))
/**
* as_utils_version_from_uint32:
* @val: A uint32le version number
* @flags: flags used for formatting, e.g. %AS_VERSION_PARSE_FLAG_USE_TRIPLET
*
* Returns a dotted decimal version string from a 32 bit number.
*
* Returns: A version number, e.g. "1.0.3"
*
* Since: 0.5.2
**/
gchar *
as_utils_version_from_uint32 (guint32 val, AsVersionParseFlag flags)
{
if (flags & AS_VERSION_PARSE_FLAG_USE_TRIPLET) {
return g_strdup_printf ("%u.%u.%u",
(val >> 24) & 0xff,
(val >> 16) & 0xff,
val & 0xffff);
}
return g_strdup_printf ("%u.%u.%u.%u",
(val >> 24) & 0xff,
(val >> 16) & 0xff,
(val >> 8) & 0xff,
val & 0xff);
}
/**
* as_utils_version_from_uint16:
* @val: A uint16le version number
* @flags: flags used for formatting, e.g. %AS_VERSION_PARSE_FLAG_USE_TRIPLET
*
* Returns a dotted decimal version string from a 16 bit number.
*
* Returns: A version number, e.g. "1.3"
*
* Since: 0.5.2
**/
gchar *
as_utils_version_from_uint16 (guint16 val, AsVersionParseFlag flags)
{
if (flags & AS_VERSION_PARSE_FLAG_USE_BCD) {
return g_strdup_printf ("%u.%u",
AS_UTILS_DECODE_BCD(val >> 8),
AS_UTILS_DECODE_BCD(val));
}
return g_strdup_printf ("%u.%u",
(guint) (val >> 8) & 0xff,
(guint) val & 0xff);
}
/**
* as_utils_version_parse:
* @version: A version number
*
* Returns a dotted decimal version string from a version string. The supported
* formats are:
*
* - Dotted decimal, e.g. "1.2.3"
* - Base 16, a hex number *with* a 0x prefix, e.g. "0x10203"
* - Base 10, a string containing just [0-9], e.g. "66051"
* - Date in YYYYMMDD format, e.g. 20150915
*
* Anything with a '.' or that doesn't match [0-9] or 0x[a-f,0-9] is considered
* a string and returned without modification.
*
* Returns: A version number, e.g. "1.0.3"
*
* Since: 0.5.2
*/
gchar *
as_utils_version_parse (const gchar *version)
{
const gchar *version_noprefix = version;
gchar *endptr = NULL;
guint64 tmp;
guint base;
guint i;
/* already dotted decimal */
if (g_strstr_len (version, -1, ".") != NULL)
return g_strdup (version);
/* is a date */
if (g_str_has_prefix (version, "20") &&
strlen (version) == 8)
return g_strdup (version);
/* convert 0x prefixed strings to dotted decimal */
if (g_str_has_prefix (version, "0x")) {
version_noprefix += 2;
base = 16;
} else {
/* for non-numeric content, just return the string */
for (i = 0; version[i] != '\0'; i++) {
if (!g_ascii_isdigit (version[i]))
return g_strdup (version);
}
base = 10;
}
/* convert */
tmp = g_ascii_strtoull (version_noprefix, &endptr, base);
if (endptr != NULL && endptr[0] != '\0')
return g_strdup (version);
if (tmp == 0)
return g_strdup (version);
return as_utils_version_from_uint32 ((guint32) tmp, AS_VERSION_PARSE_FLAG_USE_TRIPLET);
}
/**
* as_utils_string_replace:
* @string: The #GString to operate on
* @search: The text to search for
* @replace: The text to use for substitutions
*
* Performs multiple search and replace operations on the given string.
*
* Returns: the number of replacements done, or 0 if @search is not found.
*
* Since: 0.5.11
**/
guint
as_utils_string_replace (GString *string, const gchar *search, const gchar *replace)
{
gchar *tmp;
guint count = 0;
gsize search_idx = 0;
gsize replace_len;
gsize search_len;
g_return_val_if_fail (string != NULL, 0);
g_return_val_if_fail (search != NULL, 0);
g_return_val_if_fail (replace != NULL, 0);
/* nothing to do */
if (string->len == 0)
return 0;
search_len = strlen (search);
replace_len = strlen (replace);
do {
tmp = g_strstr_len (string->str + search_idx, -1, search);
if (tmp == NULL)
break;
/* advance the counter in case @replace contains @search */
search_idx = (gsize) (tmp - string->str);
/* reallocate the string if required */
if (search_len > replace_len) {
g_string_erase (string,
(gssize) search_idx,
(gssize) (search_len - replace_len));
memcpy (tmp, replace, replace_len);
} else if (search_len < replace_len) {
g_string_insert_len (string,
(gssize) search_idx,
replace,
(gssize) (replace_len - search_len));
/* we have to treat this specially as it could have
* been reallocated when the insertion happened */
memcpy (string->str + search_idx, replace, replace_len);
} else {
/* just memcmp in the new string */
memcpy (tmp, replace, replace_len);
}
search_idx += replace_len;
count++;
} while (TRUE);
return count;
}
/**
* as_utils_iso8601_to_datetime: (skip)
* @iso_date: The ISO8601 date
*
* Converts an ISO8601 to a #GDateTime.
*
* Returns: a #GDateTime, or %NULL for error.
*
* Since: 0.6.1
**/
GDateTime *
as_utils_iso8601_to_datetime (const gchar *iso_date)
{
GTimeVal tv;
guint dmy[] = {0, 0, 0};
/* nothing set */
if (iso_date == NULL || iso_date[0] == '\0')
return NULL;
/* try to parse complete ISO8601 date */
if (g_strstr_len (iso_date, -1, " ") != NULL) {
if (g_time_val_from_iso8601 (iso_date, &tv) && tv.tv_sec != 0)
return g_date_time_new_from_timeval_utc (&tv);
}
/* g_time_val_from_iso8601() blows goats and won't
* accept a valid ISO8601 formatted date without a
* time value - try and parse this case */
if (sscanf (iso_date, "%u-%u-%u", &dmy[0], &dmy[1], &dmy[2]) != 3)
return NULL;
/* create valid object */
return g_date_time_new_utc ((gint) dmy[0], (gint) dmy[1], (gint) dmy[2], 0, 0, 0);
}
static const gchar *
_as_utils_fix_unique_id_part (const gchar *tmp)
{
if (tmp == NULL || tmp[0] == '\0')
return AS_APP_UNIQUE_WILDCARD;
return tmp;
}
/**
* as_utils_unique_id_build:
* @scope: a #AsAppScope e.g. %AS_APP_SCOPE_SYSTEM
* @bundle_kind: System, e.g. 'package' or 'flatpak'
* @origin: Origin, e.g. 'fedora' or 'gnome-apps-nightly'
* @kind: #AsAppKind, e.g. %AS_APP_KIND_DESKTOP
* @id: AppStream ID, e.g. 'gimp.desktop'
* @branch: Branch, e.g. '3-20' or 'master'
*
* Builds a valid unique ID using available data.
*
* Returns: a unique name, or %NULL for error;
*
* Since: 0.6.1
*/
gchar *
as_utils_unique_id_build (AsAppScope scope,
AsBundleKind bundle_kind,
const gchar *origin,
AsAppKind kind,
const gchar *id,
const gchar *branch)
{
const gchar *bundle_str = NULL;
const gchar *kind_str = NULL;
const gchar *scope_str = NULL;
g_return_val_if_fail (id != NULL, NULL);
if (kind != AS_APP_KIND_UNKNOWN)
kind_str = as_app_kind_to_string (kind);
if (scope != AS_APP_SCOPE_UNKNOWN)
scope_str = as_app_scope_to_string (scope);
if (bundle_kind != AS_BUNDLE_KIND_UNKNOWN)
bundle_str = as_bundle_kind_to_string (bundle_kind);
return g_strdup_printf ("%s/%s/%s/%s/%s/%s",
_as_utils_fix_unique_id_part (scope_str),
_as_utils_fix_unique_id_part (bundle_str),
_as_utils_fix_unique_id_part (origin),
_as_utils_fix_unique_id_part (kind_str),
_as_utils_fix_unique_id_part (id),
_as_utils_fix_unique_id_part (branch));
}
static inline guint
as_utils_unique_id_find_part (const gchar *str)
{
guint i;
for (i = 0; str[i] != '/' && str[i] != '\0'; i++);
return i;
}
/**
* as_utils_unique_id_valid:
* @unique_id: a unique ID
*
* Checks if a unique ID is valid i.e. has the correct number of
* sections.
*
* Returns: %TRUE if the ID is valid
*
* Since: 0.6.1
*/
gboolean
as_utils_unique_id_valid (const gchar *unique_id)
{
guint i;
guint sections = 1;
if (unique_id == NULL)
return FALSE;
for (i = 0; unique_id[i] != '\0'; i++) {
if (unique_id[i] == '/')
sections++;
}
return sections == AS_UTILS_UNIQUE_ID_PARTS;
}
static inline gboolean
as_utils_unique_id_is_wildcard_part (const gchar *str, guint len)
{
return len == 1 && str[0] == '*';
}
/**
* as_utils_unique_id_match:
* @unique_id1: a unique ID
* @unique_id2: another unique ID
* @match_flags: a #AsUniqueIdMatchFlags bitfield, e.g. %AS_UNIQUE_ID_MATCH_FLAG_ID
*
* Checks two unique IDs for equality allowing globs to match, whilst also
* allowing clients to whitelist sections that have to match.
*
* Returns: %TRUE if the ID's should be considered equal.
*
* Since: 0.7.8
*/
gboolean
as_utils_unique_id_match (const gchar *unique_id1,
const gchar *unique_id2,
AsUniqueIdMatchFlags match_flags)
{
guint last1 = 0;
guint last2 = 0;
guint len1;
guint len2;
/* trivial */
if (unique_id1 == unique_id2)
return TRUE;
/* invalid */
if (!as_utils_unique_id_valid (unique_id1) ||
!as_utils_unique_id_valid (unique_id2))
return g_strcmp0 (unique_id1, unique_id2) == 0;
/* look at each part */
for (guint i = 0; i < AS_UTILS_UNIQUE_ID_PARTS; i++) {
const gchar *tmp1 = unique_id1 + last1;
const gchar *tmp2 = unique_id2 + last2;
/* find the slash or the end of the string */
len1 = as_utils_unique_id_find_part (tmp1);
len2 = as_utils_unique_id_find_part (tmp2);
/* either string was a wildcard */
if (match_flags & (1 << i) &&
!as_utils_unique_id_is_wildcard_part (tmp1, len1) &&
!as_utils_unique_id_is_wildcard_part (tmp2, len2)) {
/* are substrings the same */
if (len1 != len2)
return FALSE;
if (memcmp (tmp1, tmp2, len1) != 0)
return FALSE;
}
/* advance to next section */
last1 += len1 + 1;
last2 += len2 + 1;
}
return TRUE;
}
/**
* as_utils_unique_id_equal:
* @unique_id1: a unique ID
* @unique_id2: another unique ID
*
* Checks two unique IDs for equality allowing globs to match.
*
* Returns: %TRUE if the ID's should be considered equal.
*
* Since: 0.6.1
*/
gboolean
as_utils_unique_id_equal (const gchar *unique_id1, const gchar *unique_id2)
{
return as_utils_unique_id_match (unique_id1,
unique_id2,
AS_UNIQUE_ID_MATCH_FLAG_SCOPE |
AS_UNIQUE_ID_MATCH_FLAG_BUNDLE_KIND |
AS_UNIQUE_ID_MATCH_FLAG_ORIGIN |
AS_UNIQUE_ID_MATCH_FLAG_KIND |
AS_UNIQUE_ID_MATCH_FLAG_ID |
AS_UNIQUE_ID_MATCH_FLAG_BRANCH);
}
/**
* as_utils_unique_id_hash:
* @unique_id: a unique ID
*
* Converts a unique-id to a hash value.
*
* This function implements the widely used DJB hash on the ID subset of the
* unique-id string.
*
* It can be passed to g_hash_table_new() as the hash_func parameter,
* when using non-NULL strings or unique_ids as keys in a GHashTable.
*
* Returns: a hash value corresponding to the key
*
* Since: 0.6.2
*/
guint
as_utils_unique_id_hash (const gchar *unique_id)
{
gsize i;
guint hash = 5381;
guint section_cnt = 0;
/* not a unique ID */
if (!as_utils_unique_id_valid (unique_id))
return g_str_hash (unique_id);
/* only include the app-id */
for (i = 0; unique_id[i] != '\0'; i++) {
if (unique_id[i] == '/') {
if (++section_cnt > 4)
break;
continue;
}
if (section_cnt < 4)
continue;
hash = (guint) ((hash << 5) + hash) + (guint) (unique_id[i]);
}
return hash;
}
static gboolean
as_utils_appstream_id_is_valid_char (gchar ch)
{
if (g_ascii_isalnum (ch))
return TRUE;
if (ch == '.')
return TRUE;
if (ch == '-')
return TRUE;
return FALSE;
}
/**
* as_utils_appstream_id_build:
* @str: a string to build the AppStream ID from
*
* Fixes a string to be a valid AppStream ID.
*
* This function replaces any invalid chars with an underscore.
*
* Returns: a valid AppStream ID, or %NULL if @str is invalid
*
* Since: 0.6.4
*/
gchar *
as_utils_appstream_id_build (const gchar *str)
{
gchar *tmp;
guint i;
/* invalid */
if (str == NULL)
return NULL;
if (str[0] == '\0')
return NULL;
tmp = g_strdup (str);
for (i = 0; tmp[i] != '\0'; i++) {
if (!as_utils_appstream_id_is_valid_char (tmp[i]))
tmp[i] = '_';
}
return tmp;
}
/**
* as_utils_appstream_id_valid:
* @str: a string
*
* Checks to see if a string is a valid AppStream ID. A valid AppStream ID only
* contains alphanumeric chars, dots and dashes.
*
* Returns: %TRUE if the string is a valid AppStream ID
*
* Since: 0.6.4
*/
gboolean
as_utils_appstream_id_valid (const gchar *str)
{
guint i;
for (i = 0; str[i] != '\0'; i++) {
if (!as_utils_appstream_id_is_valid_char (str[i]))
return FALSE;
}
return TRUE;
}
|