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
|
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
/*
* Copyright (C) 1999-2008 Novell, Inc. (www.novell.com)
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of version 2 of the GNU Lesser General Public
* License as published by the Free Software Foundation.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the
* Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
* Boston, MA 02110-1301, USA.
*
* Authors: Rodrigo Moya <rodrigo@ximian.com>
*/
#include "config.h"
#include <string.h>
#include <sys/stat.h>
#include <time.h>
#include <unistd.h>
#ifdef HAVE_BACKTRACE_SYMBOLS
#include <execinfo.h>
#ifdef HAVE_ELFUTILS_LIBDWFL
#include <elfutils/libdwfl.h>
#include <errno.h>
#endif
#endif
#ifdef G_OS_WIN32
#include <mbstring.h>
#endif
#include <glib-object.h>
#include "e-data-server-util.h"
/**
* e_get_user_cache_dir:
*
* Returns a base directory in which to store user-specific,
* non-essential cached data for Evolution or Evolution-Data-Server.
*
* The returned string is owned by libedataserver and must not be
* modified or freed.
*
* Returns: base directory for user-specific, non-essential data
*
* Since: 2.32
**/
const gchar *
e_get_user_cache_dir (void)
{
static gchar *dirname = NULL;
if (G_UNLIKELY (dirname == NULL)) {
const gchar *cache_dir = g_get_user_cache_dir ();
dirname = g_build_filename (cache_dir, "evolution", NULL);
g_mkdir_with_parents (dirname, 0700);
}
return dirname;
}
/**
* e_get_user_config_dir:
*
* Returns a base directory in which to store user-specific configuration
* information for Evolution or Evolution-Data-Server.
*
* The returned string is owned by libedataserver and must not be
* modified or freed.
*
* Returns: base directory for user-specific configuration information
*
* Since: 2.32
**/
const gchar *
e_get_user_config_dir (void)
{
static gchar *dirname = NULL;
if (G_UNLIKELY (dirname == NULL)) {
const gchar *config_dir = g_get_user_config_dir ();
dirname = g_build_filename (config_dir, "evolution", NULL);
g_mkdir_with_parents (dirname, 0700);
}
return dirname;
}
/**
* e_get_user_data_dir:
*
* Returns a base directory in which to store user-specific data for
* Evolution or Evolution-Data-Server.
*
* The returned string is owned by libedataserver and must not be
* modified or freed.
*
* Returns: base directory for user-specific data
*
* Since: 2.32
**/
const gchar *
e_get_user_data_dir (void)
{
static gchar *dirname = NULL;
if (G_UNLIKELY (dirname == NULL)) {
const gchar *data_dir = g_get_user_data_dir ();
dirname = g_build_filename (data_dir, "evolution", NULL);
g_mkdir_with_parents (dirname, 0700);
}
return dirname;
}
/**
* e_util_strstrcase:
* @haystack: The string to search in.
* @needle: The string to search for.
*
* Find the first instance of @needle in @haystack, ignoring case for
* bytes that are ASCII characters.
*
* Returns: A pointer to the start of @needle in @haystack, or NULL if
* @needle is not found.
**/
gchar *
e_util_strstrcase (const gchar *haystack,
const gchar *needle)
{
/* find the needle in the haystack neglecting case */
const gchar *ptr;
guint len;
g_return_val_if_fail (haystack != NULL, NULL);
g_return_val_if_fail (needle != NULL, NULL);
len = strlen (needle);
if (len > strlen (haystack))
return NULL;
if (len == 0)
return (gchar *) haystack;
for (ptr = haystack; *(ptr + len - 1) != '\0'; ptr++)
if (!g_ascii_strncasecmp (ptr, needle, len))
return (gchar *) ptr;
return NULL;
}
/**
* e_util_unicode_get_utf8:
* @text: The string to take the UTF-8 character from.
* @out: The location to store the UTF-8 character in.
*
* Get a UTF-8 character from the beginning of @text.
*
* Returns: A pointer to the next character in @text after @out.
**/
gchar *
e_util_unicode_get_utf8 (const gchar *text,
gunichar *out)
{
g_return_val_if_fail (text != NULL, NULL);
g_return_val_if_fail (out != NULL, NULL);
*out = g_utf8_get_char (text);
return (*out == (gunichar) -1) ? NULL : g_utf8_next_char (text);
}
/**
* e_util_utf8_strstrcase:
* @haystack: The string to search in.
* @needle: The string to search for.
*
* Find the first instance of @needle in @haystack, ignoring case. (No
* proper case folding or decomposing is done.) Both @needle and
* @haystack are UTF-8 strings.
*
* Returns: A pointer to the first instance of @needle in @haystack, or
* %NULL if no match is found, or if either of the strings are
* not legal UTF-8 strings.
**/
const gchar *
e_util_utf8_strstrcase (const gchar *haystack,
const gchar *needle)
{
gunichar *nuni, unival;
gint nlen;
const gchar *o, *p;
if (haystack == NULL)
return NULL;
if (needle == NULL)
return NULL;
if (strlen (needle) == 0)
return haystack;
if (strlen (haystack) == 0)
return NULL;
nuni = g_alloca (sizeof (gunichar) * strlen (needle));
nlen = 0;
for (p = e_util_unicode_get_utf8 (needle, &unival);
p && unival;
p = e_util_unicode_get_utf8 (p, &unival)) {
nuni[nlen++] = g_unichar_tolower (unival);
}
/* NULL means there was illegal utf-8 sequence */
if (!p) return NULL;
o = haystack;
for (p = e_util_unicode_get_utf8 (o, &unival);
p && unival;
p = e_util_unicode_get_utf8 (p, &unival)) {
gunichar sc;
sc = g_unichar_tolower (unival);
/* We have valid stripped gchar */
if (sc == nuni[0]) {
const gchar *q = p;
gint npos = 1;
while (npos < nlen) {
q = e_util_unicode_get_utf8 (q, &unival);
if (!q || !unival) return NULL;
sc = g_unichar_tolower (unival);
if (sc != nuni[npos]) break;
npos++;
}
if (npos == nlen) {
return o;
}
}
o = p;
}
return NULL;
}
static gunichar
stripped_char (gunichar ch)
{
gunichar decomp[4];
gunichar retval;
GUnicodeType utype;
gsize dlen;
utype = g_unichar_type (ch);
switch (utype) {
case G_UNICODE_CONTROL:
case G_UNICODE_FORMAT:
case G_UNICODE_UNASSIGNED:
case G_UNICODE_COMBINING_MARK:
/* Ignore those */
return 0;
default:
/* Convert to lowercase, fall through */
ch = g_unichar_tolower (ch);
case G_UNICODE_LOWERCASE_LETTER:
if ((dlen = g_unichar_fully_decompose (ch, FALSE, decomp, 4))) {
retval = decomp[0];
return retval;
}
break;
}
return 0;
}
/**
* e_util_utf8_strstrcasedecomp:
* @haystack: The string to search in.
* @needle: The string to search for.
*
* Find the first instance of @needle in @haystack, where both @needle
* and @haystack are UTF-8 strings. Both strings are stripped and
* decomposed for comparison, and case is ignored.
*
* Returns: A pointer to the first instance of @needle in @haystack, or
* %NULL if either of the strings are not legal UTF-8 strings.
**/
const gchar *
e_util_utf8_strstrcasedecomp (const gchar *haystack,
const gchar *needle)
{
gunichar *nuni;
gunichar unival;
gint nlen;
const gchar *o, *p;
if (haystack == NULL)
return NULL;
if (needle == NULL)
return NULL;
if (strlen (needle) == 0)
return haystack;
if (strlen (haystack) == 0)
return NULL;
nuni = g_alloca (sizeof (gunichar) * strlen (needle));
nlen = 0;
for (p = e_util_unicode_get_utf8 (needle, &unival);
p && unival;
p = e_util_unicode_get_utf8 (p, &unival)) {
gunichar sc;
sc = stripped_char (unival);
if (sc) {
nuni[nlen++] = sc;
}
}
/* NULL means there was illegal utf-8 sequence */
if (!p) return NULL;
/* If everything is correct, we have decomposed,
* lowercase, stripped needle */
if (nlen < 1)
return haystack;
o = haystack;
for (p = e_util_unicode_get_utf8 (o, &unival);
p && unival;
p = e_util_unicode_get_utf8 (p, &unival)) {
gunichar sc;
sc = stripped_char (unival);
if (sc) {
/* We have valid stripped gchar */
if (sc == nuni[0]) {
const gchar *q = p;
gint npos = 1;
while (npos < nlen) {
q = e_util_unicode_get_utf8 (q, &unival);
if (!q || !unival) return NULL;
sc = stripped_char (unival);
if ((!sc) || (sc != nuni[npos])) break;
npos++;
}
if (npos == nlen) {
return o;
}
}
}
o = p;
}
return NULL;
}
/**
* e_util_utf8_strcasecmp:
* @s1: a UTF-8 string
* @s2: another UTF-8 string
*
* Compares two UTF-8 strings using approximate case-insensitive ordering.
*
* Returns: < 0 if @s1 compares before @s2, 0 if they compare equal,
* > 0 if @s1 compares after @s2
**/
gint
e_util_utf8_strcasecmp (const gchar *s1,
const gchar *s2)
{
gchar *folded_s1, *folded_s2;
gint retval;
g_return_val_if_fail (s1 != NULL && s2 != NULL, -1);
if (strcmp (s1, s2) == 0)
return 0;
folded_s1 = g_utf8_casefold (s1, -1);
folded_s2 = g_utf8_casefold (s2, -1);
retval = g_utf8_collate (folded_s1, folded_s2);
g_free (folded_s2);
g_free (folded_s1);
return retval;
}
/**
* e_util_utf8_remove_accents:
* @str: a UTF-8 string, or %NULL
*
* Returns a newly-allocated copy of @str with accents removed.
*
* Returns: a newly-allocated string
*
* Since: 2.28
**/
gchar *
e_util_utf8_remove_accents (const gchar *str)
{
gchar *res;
gint i, j;
if (str == NULL)
return NULL;
res = g_utf8_normalize (str, -1, G_NORMALIZE_NFD);
if (!res)
return g_strdup (str);
for (i = 0, j = 0; res[i]; i++) {
if ((guchar) res[i] != 0xCC || res[i + 1] == 0) {
res[j] = res[i];
j++;
} else {
i++;
}
}
res[j] = 0;
return res;
}
/**
* e_util_utf8_make_valid:
* @str: a UTF-8 string
*
* Returns a newly-allocated copy of @str, with invalid characters
* replaced by Unicode replacement characters (U+FFFD).
*
* Returns: a newly-allocated string
*
* Since: 3.0
**/
gchar *
e_util_utf8_make_valid (const gchar *str)
{
/* almost identical copy of glib's _g_utf8_make_valid() */
GString *string;
const gchar *remainder, *invalid;
gint remaining_bytes, valid_bytes, total_bytes;
g_return_val_if_fail (str != NULL, NULL);
string = NULL;
remainder = str;
remaining_bytes = strlen (str);
total_bytes = remaining_bytes;
while (remaining_bytes != 0) {
if (g_utf8_validate (remainder, remaining_bytes, &invalid))
break;
valid_bytes = invalid - remainder;
if (string == NULL)
string = g_string_sized_new (remaining_bytes);
g_string_append_len (string, remainder, valid_bytes);
/* append U+FFFD REPLACEMENT CHARACTER */
g_string_append (string, "\357\277\275");
remaining_bytes -= valid_bytes + 1;
remainder = invalid + 1;
}
if (string == NULL)
return g_strndup (str, total_bytes);
g_string_append (string, remainder);
g_assert (g_utf8_validate (string->str, -1, NULL));
return g_string_free (string, FALSE);
}
/**
* e_util_ensure_gdbus_string:
* @str: a possibly invalid UTF-8 string, or %NULL
* @gdbus_str: return location for the corrected string
*
* If @str is a valid UTF-8 string, the function returns @str and does
* not set @gdbus_str.
*
* If @str is an invalid UTF-8 string, the function calls
* e_util_utf8_make_valid() and points @gdbus_str to the newly-allocated,
* valid UTF-8 string, and also returns it. The caller should free the
* string pointed to by @gdbus_str with g_free().
*
* If @str is %NULL, the function returns an empty string and does not
* set @gdbus_str.
*
* Admittedly, the function semantics are a little awkward. The example
* below illustrates the easiest way to cope with the @gdbus_str argument:
*
* <informalexample>
* <programlisting>
* const gchar *trusted_utf8;
* gchar *allocated = NULL;
*
* trusted_utf8 = e_util_ensure_gdbus_string (untrusted_utf8, &allocated);
*
* Do stuff with trusted_utf8, then clear it.
*
* trusted_utf8 = NULL;
*
* g_free (allocated);
* allocated = NULL;
* </programlisting>
* </informalexample>
*
* Returns: a valid UTF-8 string
*
* Since: 3.0
**/
const gchar *
e_util_ensure_gdbus_string (const gchar *str,
gchar **gdbus_str)
{
g_return_val_if_fail (gdbus_str != NULL, NULL);
*gdbus_str = NULL;
if (!str || !*str)
return "";
if (g_utf8_validate (str, -1, NULL))
return str;
*gdbus_str = e_util_utf8_make_valid (str);
return *gdbus_str;
}
/**
* e_strftime:
* @string: The string array to store the result in.
* @max: The size of array @s.
* @fmt: The formatting to use on @tm.
* @tm: The time value to format.
*
* This function is a wrapper around the strftime (3) function, which
* converts the %l and %k (12h and 24h) format variables
* if necessary.
*
* Returns: The number of characters placed in @s.
**/
gsize
e_strftime (gchar *string,
gsize max,
const gchar *fmt,
const struct tm *tm)
{
#ifndef HAVE_LKSTRFTIME
gchar *c, *ffmt, *ff;
#endif
gsize ret;
g_return_val_if_fail (string != NULL, 0);
g_return_val_if_fail (fmt != NULL, 0);
g_return_val_if_fail (tm != NULL, 0);
#ifdef HAVE_LKSTRFTIME
ret = strftime (string, max, fmt, tm);
#else
ffmt = g_strdup (fmt);
ff = ffmt;
while ((c = strstr (ff, "%l")) != NULL) {
c[1] = 'I';
ff = c;
}
ff = ffmt;
while ((c = strstr (ff, "%k")) != NULL) {
c[1] = 'H';
ff = c;
}
#ifdef G_OS_WIN32
/* The Microsoft strftime () doesn't have %e either */
ff = ffmt;
while ((c = strstr (ff, "%e")) != NULL) {
c[1] = 'd';
ff = c;
}
#endif
ret = strftime (string, max, ffmt, tm);
g_free (ffmt);
#endif
if (ret == 0 && max > 0)
string[0] = '\0';
return ret;
}
/**
* e_utf8_strftime:
* @string: The string array to store the result in.
* @max: The size of array @s.
* @fmt: The formatting to use on @tm.
* @tm: The time value to format.
*
* The UTF-8 equivalent of e_strftime ().
*
* Returns: The number of characters placed in @s.
**/
gsize
e_utf8_strftime (gchar *string,
gsize max,
const gchar *fmt,
const struct tm *tm)
{
gsize sz, ret;
gchar *locale_fmt, *buf;
g_return_val_if_fail (string != NULL, 0);
g_return_val_if_fail (fmt != NULL, 0);
g_return_val_if_fail (tm != NULL, 0);
locale_fmt = g_locale_from_utf8 (fmt, -1, NULL, &sz, NULL);
if (!locale_fmt)
return 0;
ret = e_strftime (string, max, locale_fmt, tm);
if (!ret) {
g_free (locale_fmt);
return 0;
}
buf = g_locale_to_utf8 (string, ret, NULL, &sz, NULL);
if (!buf) {
g_free (locale_fmt);
return 0;
}
if (sz >= max) {
gchar *tmp = buf + max - 1;
tmp = g_utf8_find_prev_char (buf, tmp);
if (tmp)
sz = tmp - buf;
else
sz = 0;
}
memcpy (string, buf, sz);
string[sz] = '\0';
g_free (locale_fmt);
g_free (buf);
return sz;
}
/**
* e_util_gthread_id:
* @thread: A #GThread pointer
*
* Returns a 64-bit integer hopefully uniquely identifying the
* thread. To be used in debugging output and logging only.
* The returned value is just a cast of a pointer to the 64-bit integer.
*
* There is no guarantee that calling e_util_gthread_id () on one
* thread first and later after that thread has dies on another won't
* return the same integer.
*
* On Linux and Win32, known to really return a unique id for each
* thread existing at a certain time. No guarantee that ids won't be
* reused after a thread has terminated, though.
*
* Returns: A 64-bit integer.
*
* Since: 2.32
*/
guint64
e_util_gthread_id (GThread *thread)
{
#if GLIB_SIZEOF_VOID_P == 8
/* 64-bit Windows */
return (guint64) thread;
#else
return (gint) thread;
#endif
}
/* This only makes a filename safe for usage as a filename.
* It still may have shell meta-characters in it. */
/* This code is rather misguided and mostly pointless, but can't be
* changed because of backward compatibility, I guess.
*
* It replaces some perfectly safe characters like '%' with an
* underscore. (Recall that on Unix, the only bytes not allowed in a
* file name component are '\0' and '/'.) On the other hand, the UTF-8
* for a printable non-ASCII Unicode character (that thus consists of
* several very nonprintable non-ASCII bytes) is let through as
* such. But those bytes are of course also allowed in filenames, so
* it doesn't matter as such...
*/
void
e_filename_make_safe (gchar *string)
{
gchar *p, *ts;
gunichar c;
#ifdef G_OS_WIN32
const gchar *unsafe_chars = " /'\"`&();|<>$%{}!\\:*?#";
#else
const gchar *unsafe_chars = " /'\"`&();|<>$%{}!#";
#endif
g_return_if_fail (string != NULL);
p = string;
while (p && *p) {
c = g_utf8_get_char (p);
ts = p;
p = g_utf8_next_char (p);
/* I wonder what this code is supposed to actually
* achieve, and whether it does that as currently
* written?
*/
if (!g_unichar_isprint (c) || ( c < 0xff && strchr (unsafe_chars, c&0xff ))) {
while (ts < p)
*ts++ = '_';
}
}
}
/**
* e_filename_mkdir_encoded:
* @basepath: base path of a file name; this is left unchanged
* @fileprefix: prefix for the filename; this is encoded
* @filename: file name to use; this is encoded; can be %NULL
* @fileindex: used when @filename is NULL, then the filename
* is generated as "file" + fileindex
*
* Creates a local path constructed from @basepath / @fileprefix + "-" + @filename,
* and makes sure the path @basepath exists. If creation of
* the path fails, then NULL is returned.
*
* Returns: Full local path like g_build_filename() except that @fileprefix
* and @filename are encoded to create a proper file elements for
* a file system. Free returned pointer with g_free().
*
* Since: 3.4
**/
gchar *
e_filename_mkdir_encoded (const gchar *basepath,
const gchar *fileprefix,
const gchar *filename,
gint fileindex)
{
gchar *elem1, *elem2, *res, *fn;
g_return_val_if_fail (basepath != NULL, NULL);
g_return_val_if_fail (*basepath != 0, NULL);
g_return_val_if_fail (fileprefix != NULL, NULL);
g_return_val_if_fail (*fileprefix != 0, NULL);
g_return_val_if_fail (!filename || *filename, NULL);
if (g_mkdir_with_parents (basepath, 0700) < 0)
return NULL;
elem1 = g_strdup (fileprefix);
if (filename)
elem2 = g_strdup (filename);
else
elem2 = g_strdup_printf ("file%d", fileindex);
e_filename_make_safe (elem1);
e_filename_make_safe (elem2);
fn = g_strconcat (elem1, "-", elem2, NULL);
res = g_build_filename (basepath, fn, NULL);
g_free (fn);
g_free (elem1);
g_free (elem2);
return res;
}
/**
* e_util_slist_to_strv:
* @strings: a #GSList of strings (const gchar *)
*
* Convert list of strings into NULL-terminates array of strings.
*
* Returns: (transfer full): Newly allocated NULL-terminated array of strings.
* Returned pointer should be freed with g_strfreev().
*
* Note: Pair function for this is e_util_strv_to_slist().
*
* Since: 3.4
**/
gchar **
e_util_slist_to_strv (const GSList *strings)
{
const GSList *iter;
GPtrArray *array;
array = g_ptr_array_sized_new (g_slist_length ((GSList *) strings) + 1);
for (iter = strings; iter; iter = iter->next) {
const gchar *str = iter->data;
if (str)
g_ptr_array_add (array, g_strdup (str));
}
/* NULL-terminated */
g_ptr_array_add (array, NULL);
return (gchar **) g_ptr_array_free (array, FALSE);
}
/**
* e_util_strv_to_slist:
* @strv: a NULL-terminated array of strings (const gchar *)
*
* Convert NULL-terminated array of strings to a list of strings.
*
* Returns: (transfer full): Newly allocated #GSList of newly allocated strings.
* Returned pointer should be freed with e_util_free_string_slist().
*
* Note: Pair function for this is e_util_slist_to_strv().
*
* Since: 3.4
**/
GSList *
e_util_strv_to_slist (const gchar * const *strv)
{
GSList *slist = NULL;
gint ii;
if (!strv)
return NULL;
for (ii = 0; strv[ii]; ii++) {
slist = g_slist_prepend (slist, g_strdup (strv[ii]));
}
return g_slist_reverse (slist);
}
/**
* e_util_copy_string_slist:
* @copy_to: Where to copy; can be NULL
* @strings: GSList of strings to be copied
*
* Copies GSList of strings at the end of @copy_to.
*
* Returns: (transfer full): New head of @copy_to.
* Returned pointer can be freed with e_util_free_string_slist().
*
* Since: 3.4
**/
GSList *
e_util_copy_string_slist (GSList *copy_to,
const GSList *strings)
{
if (strings != NULL) {
const GSList *iter;
GSList *strings_copy = NULL;
/* Make deep copy of strings */
for (iter = strings; iter; iter = iter->next)
strings_copy = g_slist_prepend (strings_copy, g_strdup (iter->data));
/* Concatenate the two lists */
return g_slist_concat (copy_to, g_slist_reverse (strings_copy));
}
return copy_to;
}
/**
* e_util_copy_object_slist:
* @copy_to: Where to copy; can be NULL
* @objects: GSList of GObject-s to be copied
*
* Copies GSList of GObject-s at the end of @copy_to.
*
* Returns: (transfer full): New head of @copy_to.
* Returned pointer can be freed with e_util_free_object_slist().
*
* Since: 3.4
**/
GSList *
e_util_copy_object_slist (GSList *copy_to,
const GSList *objects)
{
if (objects != NULL) {
const GSList *iter;
GSList *objects_copy = NULL;
/* Make deep copy of objects */
for (iter = objects; iter; iter = iter->next)
objects_copy = g_slist_prepend (objects_copy, g_object_ref (iter->data));
/* Concatenate the two lists */
return g_slist_concat (copy_to, g_slist_reverse (objects_copy));
}
return copy_to;
}
/**
* e_util_free_string_slist:
* @strings: a #GSList of strings (gchar *)
*
* Frees memory previously allocated by e_util_strv_to_slist().
*
* Since: 3.4
**/
void
e_util_free_string_slist (GSList *strings)
{
g_slist_free_full (strings, (GDestroyNotify) g_free);
}
/**
* e_util_free_object_slist:
* @objects: a #GSList of #GObject-s
*
* Calls g_object_unref() on each member of @objects and then frees
* also @objects itself.
*
* Since: 3.4
**/
void
e_util_free_object_slist (GSList *objects)
{
g_slist_free_full (objects, (GDestroyNotify) g_object_unref);
}
/**
* e_binding_transform_enum_value_to_nick:
* @binding: a #GBinding
* @source_value: a #GValue whose type is derived from #G_TYPE_ENUM
* @target_value: a #GValue of type #G_TYPE_STRING
* @not_used: not used
*
* Transforms an enumeration value to its corresponding nickname.
*
* Returns: %TRUE if the enum value has a corresponding nickname
*
* Since: 3.4
**/
gboolean
e_binding_transform_enum_value_to_nick (GBinding *binding,
const GValue *source_value,
GValue *target_value,
gpointer not_used)
{
GEnumClass *enum_class;
GEnumValue *enum_value;
gint value;
gboolean success = FALSE;
g_return_val_if_fail (G_IS_BINDING (binding), FALSE);
enum_class = g_type_class_peek (G_VALUE_TYPE (source_value));
g_return_val_if_fail (G_IS_ENUM_CLASS (enum_class), FALSE);
value = g_value_get_enum (source_value);
enum_value = g_enum_get_value (enum_class, value);
if (enum_value != NULL) {
g_value_set_string (target_value, enum_value->value_nick);
success = TRUE;
}
return success;
}
/**
* e_binding_transform_enum_nick_to_value:
* @binding: a #GBinding
* @source_value: a #GValue of type #G_TYPE_STRING
* @target_value: a #GValue whose type is derived from #G_TYPE_ENUM
* @not_used: not used
*
* Transforms an enumeration nickname to its corresponding value.
*
* Returns: %TRUE if the enum nickname has a corresponding value
*
* Since: 3.4
**/
gboolean
e_binding_transform_enum_nick_to_value (GBinding *binding,
const GValue *source_value,
GValue *target_value,
gpointer not_used)
{
GEnumClass *enum_class;
GEnumValue *enum_value;
const gchar *string;
gboolean success = FALSE;
g_return_val_if_fail (G_IS_BINDING (binding), FALSE);
enum_class = g_type_class_peek (G_VALUE_TYPE (target_value));
g_return_val_if_fail (G_IS_ENUM_CLASS (enum_class), FALSE);
string = g_value_get_string (source_value);
enum_value = g_enum_get_value_by_nick (enum_class, string);
if (enum_value != NULL) {
g_value_set_enum (target_value, enum_value->value);
success = TRUE;
}
return success;
}
#ifdef G_OS_WIN32
#include <windows.h>
static const gchar *prefix = NULL;
static const gchar *cp_prefix;
static const gchar *localedir;
static const gchar *extensiondir;
static const gchar *imagesdir;
static const gchar *ui_uidir;
static HMODULE hmodule;
G_LOCK_DEFINE_STATIC (mutex);
/* Silence gcc with a prototype. Yes, this is silly. */
BOOL WINAPI DllMain (HINSTANCE hinstDLL,
DWORD fdwReason,
LPVOID lpvReserved);
/* Minimal DllMain that just tucks away the DLL's HMODULE */
BOOL WINAPI
DllMain (HINSTANCE hinstDLL,
DWORD fdwReason,
LPVOID lpvReserved)
{
switch (fdwReason) {
case DLL_PROCESS_ATTACH:
hmodule = hinstDLL;
break;
}
return TRUE;
}
gchar *
e_util_replace_prefix (const gchar *configure_time_prefix,
const gchar *runtime_prefix,
const gchar *configure_time_path)
{
gchar *c_t_prefix_slash = g_strconcat (configure_time_prefix, "/",
NULL);
gchar *retval;
if (runtime_prefix &&
g_str_has_prefix (configure_time_path, c_t_prefix_slash)) {
retval = g_strconcat (runtime_prefix,
configure_time_path + strlen (configure_time_prefix),
NULL);
} else
retval = g_strdup (configure_time_path);
g_free (c_t_prefix_slash);
return retval;
}
static gchar *
replace_prefix (const gchar *runtime_prefix,
const gchar *configure_time_path)
{
return e_util_replace_prefix (
E_DATA_SERVER_PREFIX, runtime_prefix, configure_time_path);
}
static void
setup (void)
{
gchar *full_pfx;
gchar *cp_pfx;
G_LOCK (mutex);
if (prefix != NULL) {
G_UNLOCK (mutex);
return;
}
/* This requires that the libedataserver DLL is installed in $bindir */
full_pfx = g_win32_get_package_installation_directory_of_module (hmodule);
cp_pfx = g_win32_locale_filename_from_utf8 (full_pfx);
prefix = g_strdup (full_pfx);
cp_prefix = g_strdup (cp_pfx);
g_free (full_pfx);
g_free (cp_pfx);
localedir = replace_prefix (cp_prefix, E_DATA_SERVER_LOCALEDIR);
extensiondir = replace_prefix (prefix, E_DATA_SERVER_EXTENSIONDIR);
imagesdir = replace_prefix (prefix, E_DATA_SERVER_IMAGESDIR);
ui_uidir = replace_prefix (prefix, E_DATA_SERVER_UI_UIDIR);
G_UNLOCK (mutex);
}
#include "libedataserver-private.h" /* For prototypes */
#define GETTER_IMPL(varbl) \
{ \
setup (); \
return varbl; \
}
#define PRIVATE_GETTER(varbl) \
const gchar * \
_libedataserver_get_##varbl (void) \
GETTER_IMPL (varbl)
#define PUBLIC_GETTER(varbl) \
const gchar * \
e_util_get_##varbl (void) \
GETTER_IMPL (varbl)
PRIVATE_GETTER (extensiondir)
PRIVATE_GETTER (imagesdir)
PRIVATE_GETTER (ui_uidir)
PUBLIC_GETTER (prefix)
PUBLIC_GETTER (cp_prefix)
PUBLIC_GETTER (localedir)
#endif /* G_OS_WIN32 */
static gint default_dbus_timeout = DEFAULT_EDS_DBUS_TIMEOUT;
/**
* e_data_server_util_set_dbus_call_timeout:
* @timeout_msec: default timeout for D-Bus calls in miliseconds
*
* Sets default timeout, in milliseconds, for calls of g_dbus_proxy_call()
* family functions.
*
* -1 means the default value as set by D-Bus itself.
* G_MAXINT means no timeout at all.
*
* Default value is set also by configure option --with-dbus-call-timeout=ms
* and -1 is used when not set.
*
* Since: 3.0
**/
void
e_data_server_util_set_dbus_call_timeout (gint timeout_msec)
{
default_dbus_timeout = timeout_msec;
}
/**
* e_data_server_util_get_dbus_call_timeout:
*
* Returns the value set by e_data_server_util_set_dbus_call_timeout().
*
* Returns: the D-Bus call timeout in milliseconds
*
* Since: 3.0
**/
gint
e_data_server_util_get_dbus_call_timeout (void)
{
return default_dbus_timeout;
}
G_LOCK_DEFINE_STATIC (ptr_tracker);
static GHashTable *ptr_tracker = NULL;
struct pt_data {
gpointer ptr;
gchar *info;
GString *backtrace;
};
static void
free_pt_data (gpointer ptr)
{
struct pt_data *ptd = ptr;
if (!ptd)
return;
g_free (ptd->info);
if (ptd->backtrace)
g_string_free (ptd->backtrace, TRUE);
g_free (ptd);
}
static void
dump_left_ptrs_cb (gpointer key,
gpointer value,
gpointer user_data)
{
guint *left = user_data;
struct pt_data *ptd = value;
gboolean have_info = ptd && ptd->info;
gboolean have_bt = ptd && ptd->backtrace && ptd->backtrace->str && *ptd->backtrace->str;
*left = (*left) - 1;
g_print (" %p %s%s%s%s%s%s\n", key, have_info ? "(" : "", have_info ? ptd->info : "", have_info ? ")" : "", have_bt ? "\n" : "", have_bt ? ptd->backtrace->str : "", have_bt && *left > 0 ? "\n" : "");
}
#ifdef HAVE_BACKTRACE_SYMBOLS
static guint
by_backtrace_hash (gconstpointer ptr)
{
const struct pt_data *ptd = ptr;
if (!ptd || !ptd->backtrace)
return 0;
return g_str_hash (ptd->backtrace->str);
}
static gboolean
by_backtrace_equal (gconstpointer ptr1,
gconstpointer ptr2)
{
const struct pt_data *ptd1 = ptr1, *ptd2 = ptr2;
if ((!ptd1 || !ptd1->backtrace) && (!ptd2 || !ptd2->backtrace))
return TRUE;
return ptd1 && ptd1->backtrace && ptd2 && ptd2->backtrace && g_str_equal (ptd1->backtrace->str, ptd2->backtrace->str);
}
static void
dump_by_backtrace_cb (gpointer key,
gpointer value,
gpointer user_data)
{
guint *left = user_data;
struct pt_data *ptd = key;
guint count = GPOINTER_TO_UINT (value);
if (count == 1) {
dump_left_ptrs_cb (ptd->ptr, ptd, left);
} else {
gboolean have_info = ptd && ptd->info;
gboolean have_bt = ptd && ptd->backtrace && ptd->backtrace->str && *ptd->backtrace->str;
*left = (*left) - 1;
g_print (" %d x %s%s%s%s%s%s\n", count, have_info ? "(" : "", have_info ? ptd->info : "", have_info ? ")" : "", have_bt ? "\n" : "", have_bt ? ptd->backtrace->str : "", have_bt && *left > 0 ? "\n" : "");
}
}
static void
dump_by_backtrace (GHashTable *ptrs)
{
GHashTable *by_bt = g_hash_table_new (by_backtrace_hash, by_backtrace_equal);
GHashTableIter iter;
gpointer key, value;
struct ptr_data *ptd;
guint count;
g_hash_table_iter_init (&iter, ptrs);
while (g_hash_table_iter_next (&iter, &key, &value)) {
guint cnt;
ptd = value;
if (!ptd)
continue;
cnt = GPOINTER_TO_UINT (g_hash_table_lookup (by_bt, ptd));
cnt++;
g_hash_table_insert (by_bt, ptd, GUINT_TO_POINTER (cnt));
}
count = g_hash_table_size (by_bt);
g_hash_table_foreach (by_bt, dump_by_backtrace_cb, &count);
g_hash_table_destroy (by_bt);
}
#endif /* HAVE_BACKTRACE_SYMBOLS */
static void
dump_tracked_ptrs (gboolean is_at_exit)
{
G_LOCK (ptr_tracker);
if (ptr_tracker) {
g_print ("\n----------------------------------------------------------\n");
if (g_hash_table_size (ptr_tracker) == 0) {
g_print (" All tracked pointers were properly removed\n");
} else {
guint count = g_hash_table_size (ptr_tracker);
g_print (" Left %d tracked pointers:\n", count);
#ifdef HAVE_BACKTRACE_SYMBOLS
dump_by_backtrace (ptr_tracker);
#else
g_hash_table_foreach (ptr_tracker, dump_left_ptrs_cb, &count);
#endif
}
g_print ("----------------------------------------------------------\n");
} else if (!is_at_exit) {
g_print ("\n----------------------------------------------------------\n");
g_print (" Did not track any pointers yet\n");
g_print ("----------------------------------------------------------\n");
}
G_UNLOCK (ptr_tracker);
}
#ifdef HAVE_BACKTRACE_SYMBOLS
#ifdef HAVE_ELFUTILS_LIBDWFL
static Dwfl *
dwfl_get (gboolean reload)
{
static gchar *debuginfo_path = NULL;
static Dwfl *dwfl = NULL;
static gboolean checked_for_dwfl = FALSE;
static GStaticMutex dwfl_mutex = G_STATIC_MUTEX_INIT;
static const Dwfl_Callbacks proc_callbacks = {
.find_debuginfo = dwfl_standard_find_debuginfo,
.debuginfo_path = &debuginfo_path,
.find_elf = dwfl_linux_proc_find_elf
};
g_static_mutex_lock (&dwfl_mutex);
if (checked_for_dwfl) {
if (!reload) {
g_static_mutex_unlock (&dwfl_mutex);
return dwfl;
}
dwfl_end (dwfl);
dwfl = NULL;
}
checked_for_dwfl = TRUE;
dwfl = dwfl_begin (&proc_callbacks);
if (!dwfl) {
g_static_mutex_unlock (&dwfl_mutex);
return NULL;
}
errno = 0;
if (dwfl_linux_proc_report (dwfl, getpid ()) != 0 || dwfl_report_end (dwfl, NULL, NULL) != 0) {
dwfl_end (dwfl);
dwfl = NULL;
}
g_static_mutex_unlock (&dwfl_mutex);
return dwfl;
}
struct getmodules_callback_arg
{
gpointer addr;
const gchar *func_name;
const gchar *file_path;
gint lineno;
};
static gint
getmodules_callback (Dwfl_Module *module,
gpointer *module_userdata_pointer,
const gchar *module_name,
Dwarf_Addr module_low_addr,
gpointer arg_voidp)
{
struct getmodules_callback_arg *arg = arg_voidp;
Dwfl_Line *line;
arg->func_name = dwfl_module_addrname (module, (GElf_Addr) arg->addr);
line = dwfl_module_getsrc (module, (GElf_Addr) arg->addr);
if (line) {
arg->file_path = dwfl_lineinfo (line, NULL, &arg->lineno, NULL, NULL, NULL);
} else {
arg->file_path = NULL;
}
return arg->func_name ? DWARF_CB_ABORT : DWARF_CB_OK;
}
#endif /* HAVE_ELFUTILS_LIBDWFL */
static const gchar *
addr_lookup (gpointer addr,
const gchar **file_path,
gint *lineno,
const gchar *fallback)
{
#ifdef HAVE_ELFUTILS_LIBDWFL
Dwfl *dwfl = dwfl_get (FALSE);
struct getmodules_callback_arg arg;
if (!dwfl)
return NULL;
arg.addr = addr;
arg.func_name = NULL;
arg.file_path = NULL;
arg.lineno = -1;
dwfl_getmodules (dwfl, getmodules_callback, &arg, 0);
if (!arg.func_name && fallback && strstr (fallback, "/lib") != fallback && strstr (fallback, "/usr/lib") != fallback) {
dwfl = dwfl_get (TRUE);
if (dwfl)
dwfl_getmodules (dwfl, getmodules_callback, &arg, 0);
}
*file_path = arg.file_path;
*lineno = arg.lineno;
return arg.func_name;
#else /* HAVE_ELFUTILS_LIBDWFL */
return NULL;
#endif /* HAVE_ELFUTILS_LIBDWFL */
}
#endif /* HAVE_BACKTRACE_SYMBOLS */
static GString *
get_current_backtrace (void)
{
#ifdef HAVE_BACKTRACE_SYMBOLS
#define MAX_BT_DEPTH 50
gint nptrs, ii;
gpointer bt[MAX_BT_DEPTH + 1];
gchar **bt_syms;
GString *bt_str;
nptrs = backtrace (bt, MAX_BT_DEPTH + 1);
if (nptrs <= 2)
return NULL;
bt_syms = backtrace_symbols (bt, nptrs);
if (!bt_syms)
return NULL;
bt_str = g_string_new ("");
for (ii = 2; ii < nptrs; ii++) {
gint lineno = -1;
const gchar *file_path = NULL;
const gchar *str = addr_lookup (bt[ii], &file_path, &lineno, bt_syms[ii]);
if (!str) {
str = bt_syms[ii];
file_path = NULL;
lineno = -1;
}
if (!str)
continue;
if (bt_str->len)
g_string_append (bt_str, "\n\t by ");
g_string_append (bt_str, str);
if (str != bt_syms[ii])
g_string_append (bt_str, "()");
if (file_path && lineno > 0) {
const gchar *lastsep = strrchr (file_path, G_DIR_SEPARATOR);
g_string_append_printf (bt_str, " at %s:%d", lastsep ? lastsep + 1 : file_path, lineno);
}
}
g_free (bt_syms);
if (bt_str->len == 0) {
g_string_free (bt_str, TRUE);
bt_str = NULL;
} else {
g_string_insert (bt_str, 0, "\t at ");
}
return bt_str;
#undef MAX_BT_DEPTH
#else /* HAVE_BACKTRACE_SYMBOLS */
return NULL;
#endif /* HAVE_BACKTRACE_SYMBOLS */
}
static void
dump_left_at_exit_cb (void)
{
dump_tracked_ptrs (TRUE);
G_LOCK (ptr_tracker);
if (ptr_tracker) {
g_hash_table_destroy (ptr_tracker);
ptr_tracker = NULL;
}
G_UNLOCK (ptr_tracker);
}
/**
* e_pointer_tracker_track_with_info:
*
* FIXME: Document me.
*
* Since: 3.2
**/
void
e_pointer_tracker_track_with_info (gpointer ptr,
const gchar *info)
{
struct pt_data *ptd;
g_return_if_fail (ptr != NULL);
G_LOCK (ptr_tracker);
if (!ptr_tracker) {
ptr_tracker = g_hash_table_new_full (g_direct_hash, g_direct_equal, NULL, free_pt_data);
g_atexit (dump_left_at_exit_cb);
}
ptd = g_new0 (struct pt_data, 1);
ptd->ptr = ptr;
ptd->info = g_strdup (info);
ptd->backtrace = get_current_backtrace ();
g_hash_table_insert (ptr_tracker, ptr, ptd);
G_UNLOCK (ptr_tracker);
}
/**
* e_pointer_tracker_untrack:
*
* FIXME: Document me.
*
* Since: 3.2
**/
void
e_pointer_tracker_untrack (gpointer ptr)
{
g_return_if_fail (ptr != NULL);
G_LOCK (ptr_tracker);
if (!ptr_tracker)
g_printerr ("Pointer tracker not initialized, thus cannot remove %p\n", ptr);
else if (!g_hash_table_lookup (ptr_tracker, ptr))
g_printerr ("Pointer %p is not tracked\n", ptr);
else
g_hash_table_remove (ptr_tracker, ptr);
G_UNLOCK (ptr_tracker);
}
/**
* e_pointer_tracker_dump:
*
* FIXME: Document me.
*
* Since: 3.2
**/
void
e_pointer_tracker_dump (void)
{
dump_tracked_ptrs (FALSE);
}
|