1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989
|
/** @file
* IPRT - Logging.
*/
/*
* Copyright (C) 2006-2025 Oracle and/or its affiliates.
*
* This file is part of VirtualBox base platform packages, as
* available from https://www.virtualbox.org.
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation, in version 3 of the
* License.
*
* 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 General Public License
* along with this program; if not, see <https://www.gnu.org/licenses>.
*
* The contents of this file may alternatively be used under the terms
* of the Common Development and Distribution License Version 1.0
* (CDDL), a copy of it is provided in the "COPYING.CDDL" file included
* in the VirtualBox distribution, in which case the provisions of the
* CDDL are applicable instead of those of the GPL.
*
* You may elect to license modified versions of this file under the
* terms and conditions of either the GPL or the CDDL or both.
*
* SPDX-License-Identifier: GPL-3.0-only OR CDDL-1.0
*/
#ifndef IPRT_INCLUDED_log_h
#define IPRT_INCLUDED_log_h
#ifndef RT_WITHOUT_PRAGMA_ONCE
# pragma once
#endif
#include <iprt/cdefs.h>
#include <iprt/types.h>
#include <iprt/stdarg.h>
RT_C_DECLS_BEGIN
/** @defgroup grp_rt_log RTLog - Logging
* @ingroup grp_rt
* @{
*/
/**
* IPRT Logging Groups.
* (Remember to update RT_LOGGROUP_NAMES!)
*
* @remark It should be pretty obvious, but just to have
* mentioned it, the values are sorted alphabetically (using the
* english alphabet) except for _DEFAULT which is always first.
*
* If anyone might be wondering what the alphabet looks like:
* a b c d e f g h i j k l m n o p q r s t u v w x y z
*/
typedef enum RTLOGGROUP
{
/** Default logging group. */
RTLOGGROUP_DEFAULT,
RTLOGGROUP_ACPI,
RTLOGGROUP_CRYPTO,
RTLOGGROUP_DBG,
RTLOGGROUP_DBG_DWARF,
RTLOGGROUP_DIR,
RTLOGGROUP_FDT,
RTLOGGROUP_FILE,
RTLOGGROUP_FS,
RTLOGGROUP_FTP,
RTLOGGROUP_HTTP,
RTLOGGROUP_IOQUEUE,
RTLOGGROUP_LDR,
RTLOGGROUP_LOCALIPC,
RTLOGGROUP_PATH,
RTLOGGROUP_PROCESS,
RTLOGGROUP_REST,
RTLOGGROUP_SYMLINK,
RTLOGGROUP_THREAD,
RTLOGGROUP_TIME,
RTLOGGROUP_TIMER,
RTLOGGROUP_VFS,
RTLOGGROUP_ZIP = 31,
RTLOGGROUP_FIRST_USER = 32
} RTLOGGROUP;
/** @def RT_LOGGROUP_NAMES
* IPRT Logging group names.
*
* Must correspond 100% to RTLOGGROUP!
* Don't forget commas!
*
* @remark It should be pretty obvious, but just to have
* mentioned it, the values are sorted alphabetically (using the
* english alphabet) except for _DEFAULT which is always first.
*
* If anyone might be wondering what the alphabet looks like:
* a b c d e f g h i j k l m n o p q r s t u v w x y z
*
* The RT_XX log group names are placeholders for new modules being added,
* to make sure that there always is a total of 32 log group entries.
*/
#define RT_LOGGROUP_NAMES \
"DEFAULT", \
"RT_ACPI", \
"RT_CRYPTO", \
"RT_DBG", \
"RT_DBG_DWARF", \
"RT_DIR", \
"RT_FDT", \
"RT_FILE", \
"RT_FS", \
"RT_FTP", \
"RT_HTTP", \
"RT_IOQUEUE", \
"RT_LDR", \
"RT_LOCALIPC", \
"RT_PATH", \
"RT_PROCESS", \
"RT_REST", \
"RT_SYMLINK", \
"RT_THREAD", \
"RT_TIME", \
"RT_TIMER", \
"RT_VFS", \
"RT_22", \
"RT_23", \
"RT_24", \
"RT_25", \
"RT_26", \
"RT_27", \
"RT_28", \
"RT_29", \
"RT_30", \
"RT_ZIP"
/** @def LOG_GROUP
* Active logging group.
*/
#ifndef LOG_GROUP
# define LOG_GROUP RTLOGGROUP_DEFAULT
#endif
/** @def LOG_FN_FMT
* You can use this to specify your desired way of printing __PRETTY_FUNCTION__
* if you dislike the default one.
* @todo __PRETTY_FUNCTION__ is not optimal here.
*/
#ifndef LOG_FN_FMT
# define LOG_FN_FMT "%Rfn"
#endif
/** @def LOG_FN_NAME
* Alias for __PRETTY_FUNCTION__ or similar that goes the best with LOG_FN_FMT.
* @todo __PRETTY_FUNCTION__ is not optimal here.
*/
#ifndef LOG_FN_NAME
# define LOG_FN_NAME RT_GCC_EXTENSION __PRETTY_FUNCTION__
#endif
#ifdef LOG_INSTANCE
# error "LOG_INSTANCE is no longer supported."
#endif
#ifdef LOG_REL_INSTANCE
# error "LOG_REL_INSTANCE is no longer supported."
#endif
/** Logger structure. */
typedef struct RTLOGGER RTLOGGER;
/** Pointer to logger structure. */
typedef RTLOGGER *PRTLOGGER;
/** Pointer to const logger structure. */
typedef const RTLOGGER *PCRTLOGGER;
/** Pointer to a log buffer descriptor. */
typedef struct RTLOGBUFFERDESC *PRTLOGBUFFERDESC;
/**
* Logger phase.
*
* Used for signalling the log header/footer callback what to do.
*/
typedef enum RTLOGPHASE
{
/** Begin of the logging. */
RTLOGPHASE_BEGIN = 0,
/** End of the logging. */
RTLOGPHASE_END,
/** Before rotating the log file. */
RTLOGPHASE_PREROTATE,
/** After rotating the log file. */
RTLOGPHASE_POSTROTATE,
/** 32-bit type blow up hack. */
RTLOGPHASE_32BIT_HACK = 0x7fffffff
} RTLOGPHASE;
#if 0 /* retired */
/**
* Logger function.
*
* @param pszFormat Format string.
* @param ... Optional arguments as specified in the format string.
*/
typedef DECLCALLBACKTYPE(void, FNRTLOGGER,(const char *pszFormat, ...)) RT_IPRT_FORMAT_ATTR(1, 2);
/** Pointer to logger function. */
typedef FNRTLOGGER *PFNRTLOGGER;
#endif
/**
* Custom buffer flushing function.
*
* @retval true if flushed and the buffer can be reused.
* @retval false for switching to the next buffer because an async flush of
* @a pBufDesc is still pending. The implementation is responsible for
* only returning when the next buffer is ready for reuse, the generic
* logger code has no facility to make sure of this.
*
* @param pLogger Pointer to the logger instance which is to be flushed.
* @param pBufDesc The descriptor of the buffer to be flushed.
*/
typedef DECLCALLBACKTYPE(bool, FNRTLOGFLUSH,(PRTLOGGER pLogger, PRTLOGBUFFERDESC pBufDesc));
/** Pointer to flush function. */
typedef FNRTLOGFLUSH *PFNRTLOGFLUSH;
/**
* Header/footer message callback.
*
* @param pLogger Pointer to the logger instance.
* @param pszFormat Format string.
* @param ... Optional arguments specified in the format string.
*/
typedef DECLCALLBACKTYPE(void, FNRTLOGPHASEMSG,(PRTLOGGER pLogger, const char *pszFormat, ...)) RT_IPRT_FORMAT_ATTR(2, 3);
/** Pointer to header/footer message callback function. */
typedef FNRTLOGPHASEMSG *PFNRTLOGPHASEMSG;
/**
* Log file header/footer callback.
*
* @param pLogger Pointer to the logger instance.
* @param enmLogPhase Indicates at what time the callback is invoked.
* @param pfnLogPhaseMsg Callback for writing the header/footer (RTLogPrintf
* and others are out of bounds).
*/
typedef DECLCALLBACKTYPE(void, FNRTLOGPHASE,(PRTLOGGER pLogger, RTLOGPHASE enmLogPhase, PFNRTLOGPHASEMSG pfnLogPhaseMsg));
/** Pointer to log header/footer callback function. */
typedef FNRTLOGPHASE *PFNRTLOGPHASE;
/**
* Custom log prefix callback.
*
*
* @returns The number of chars written.
*
* @param pLogger Pointer to the logger instance.
* @param pchBuf Output buffer pointer.
* No need to terminate the output.
* @param cchBuf The size of the output buffer.
* @param pvUser The user argument.
*/
typedef DECLCALLBACKTYPE(size_t, FNRTLOGPREFIX,(PRTLOGGER pLogger, char *pchBuf, size_t cchBuf, void *pvUser));
/** Pointer to prefix callback function. */
typedef FNRTLOGPREFIX *PFNRTLOGPREFIX;
/** Pointer to a constant log output interface. */
typedef const struct RTLOGOUTPUTIF *PCRTLOGOUTPUTIF;
/**
* Logging output interface.
*/
typedef struct RTLOGOUTPUTIF
{
/**
* Opens a log directory context to make log rotation changes within.
*
* @returns IPRT status code.
* @param pIf Pointer to this interface.
* @param pvUser Opaque user data passed when setting the callbacks.
* @param pszFilename The filename to create a context for.
* @param ppvDirCtx Where to return the opaque directory context.
*/
DECLR3CALLBACKMEMBER(int, pfnDirCtxOpen, (PCRTLOGOUTPUTIF pIf, void *pvUser, const char *pszFilename, void **ppvDirCtx));
/**
* Closes the log directory context.
*
* @returns IPRT status code.
* @param pIf Pointer to this interface.
* @param pvUser Opaque user data passed when setting the callbacks.
* @param pvDirCtx The opaque directory context returned by
* pfnDirCtxOpen.
*/
DECLR3CALLBACKMEMBER(int, pfnDirCtxClose, (PCRTLOGOUTPUTIF pIf, void *pvUser, void *pvDirCtx));
/**
* Deletes the given file.
*
* @returns IPRT status code.
* @param pIf Pointer to this interface.
* @param pvUser Opaque user data passed when setting the callbacks.
* @param pvDirCtx The opaque directory context returned by
* pfnDirCtxOpen.
* @param pszFilename The filename to delete.
*/
DECLR3CALLBACKMEMBER(int, pfnDelete, (PCRTLOGOUTPUTIF pIf, void *pvUser, void *pvDirCtx, const char *pszFilename));
/**
* Renames the given file.
*
* @returns IPRT status code.
* @param pIf Pointer to this interface.
* @param pvUser Opaque user data passed when setting the callbacks.
* @param pvDirCtx The opaque directory context returned by
* pfnDirCtxOpen.
* @param pszFilenameOld The old filename to rename.
* @param pszFilenameNew The new filename.
* @param fFlags Flags for the operation, combination of RTFILEMOVE_FLAGS_XXX.
*/
DECLR3CALLBACKMEMBER(int, pfnRename, (PCRTLOGOUTPUTIF pIf, void *pvUser, void *pvDirCtx,
const char *pszFilenameOld, const char *pszFilenameNew, uint32_t fFlags));
/**
* Opens a new log file with the given name.
*
* @returns IPRT status code.
* @param pIf Pointer to this interface.
* @param pvUser Opaque user data passed when setting the callbacks.
* @param pvDirCtx The opaque directory context returned by
* pfnDirCtxOpen.
* @param pszFilename The filename to open.
* @param fFlags Open flags, combination of RTFILE_O_XXX.
*/
DECLR3CALLBACKMEMBER(int, pfnOpen, (PCRTLOGOUTPUTIF pIf, void *pvUser, void *pvDirCtx,
const char *pszFilename, uint32_t fFlags));
/**
* Closes the currently open file.
*
* @returns IPRT status code.
* @param pIf Pointer to this interface.
* @param pvUser Opaque user data passed when setting the callbacks.
*/
DECLR3CALLBACKMEMBER(int, pfnClose, (PCRTLOGOUTPUTIF pIf, void *pvUser));
/**
* Queries the size of the log file.
*
* @returns IPRT status code.
* @param pIf Pointer to this interface.
* @param pvUser Opaque user data passed when setting the callbacks.
* @param pcbFile Where to store the file size in bytes on success.
*/
DECLR3CALLBACKMEMBER(int, pfnQuerySize, (PCRTLOGOUTPUTIF pIf, void *pvUser, uint64_t *pcbSize));
/**
* Writes data to the log file.
*
* @returns IPRT status code.
* @param pIf Pointer to this interface.
* @param pvUser Opaque user data passed when setting the callbacks.
* @param pvBuf The data to write.
* @param cbWrite Number of bytes to write.
* @param pcbWritten Where to store the actual number of bytes written on success.
*/
DECLR3CALLBACKMEMBER(int, pfnWrite, (PCRTLOGOUTPUTIF pIf, void *pvUser, const void *pvBuf,
size_t cbWrite, size_t *pcbWritten));
/**
* Flushes data to the underlying storage medium.
*
* @returns IPRT status code.
* @param pIf Pointer to this interface.
* @param pvUser Opaque user data passed when setting the callbacks.
*/
DECLR3CALLBACKMEMBER(int, pfnFlush, (PCRTLOGOUTPUTIF pIf, void *pvUser));
} RTLOGOUTPUTIF;
/** Pointer to a logging output interface. */
typedef struct RTLOGOUTPUTIF *PRTLOGOUTPUTIF;
/**
* Auxiliary buffer descriptor.
*
* This is what we share we ring-3 and use for flushing ring-0 EMT loggers when
* we return to ring-3.
*/
typedef struct RTLOGBUFFERAUXDESC
{
/** Flush indicator.
* Ring-3 sets this if it flushed the buffer, ring-0 clears it again after
* writing. */
bool volatile fFlushedIndicator;
bool afPadding[3];
/** Copy of RTLOGBUFFERDESC::offBuf. */
uint32_t offBuf;
} RTLOGBUFFERAUXDESC;
/** Pointer to auxiliary buffer descriptor. */
typedef RTLOGBUFFERAUXDESC *PRTLOGBUFFERAUXDESC;
/**
* Log buffer desciptor.
*/
typedef struct RTLOGBUFFERDESC
{
/** Magic value / eye catcher (RTLOGBUFFERDESC_MAGIC). */
uint32_t u32Magic;
/** Padding. */
uint32_t uReserved;
/** The buffer size. */
uint32_t cbBuf;
/** The current buffer offset. */
uint32_t offBuf;
/** Pointer to the buffer. */
char *pchBuf;
/** Pointer to auxiliary desciptor, NULL if not used. */
PRTLOGBUFFERAUXDESC pAux;
} RTLOGBUFFERDESC;
/** RTLOGBUFFERDESC::u32Magic value. (Avram Noam Chomsky) */
#define RTLOGBUFFERDESC_MAGIC UINT32_C(0x19281207)
/**
* The public logger instance part.
*
* The logger instance is mostly abstract and kept as RTLOGGERINTERNAL within
* log.cpp. This public part is at the start of RTLOGGERINTERNAL.
*/
struct RTLOGGER
{
/** Magic number (RTLOGGER_MAGIC). */
uint32_t u32Magic;
/** User value \#1, initialized to zero. */
uint32_t u32UserValue1;
/** User value \#2, initialized to zero. */
uint64_t u64UserValue2;
/** User value \#3, initialized to zero. */
uint64_t u64UserValue3;
#if 0
/** Pointer to the logger function (used in non-C99 mode only).
*
* This is actually pointer to a wrapper/stub function which will push a pointer
* to the instance pointer onto the stack before jumping to the real logger
* function. A very unfortunate hack to work around the missing variadic macro
* support in older C++/C standards. (The memory is allocated using
* RTMemExecAlloc(), except for agnostic R0 code.) */
PFNRTLOGGER pfnLogger;
#else
/** Unused. */
uintptr_t uUsedToBeNonC99Logger;
#endif
#if ARCH_BITS == 32
/** Explicit padding. */
uint32_t uReserved1;
#endif
};
/** RTLOGGER::u32Magic value. (John Rogers Searle) */
#define RTLOGGER_MAGIC UINT32_C(0x19320731)
/**
* Logger flags.
*/
typedef enum RTLOGFLAGS
{
/** The logger instance is disabled for normal output. */
RTLOGFLAGS_DISABLED = 0x00000001,
/** The logger instance is using buffered output. */
RTLOGFLAGS_BUFFERED = 0x00000002,
/** The logger instance expands LF to CR/LF. */
RTLOGFLAGS_USECRLF = 0x00000010,
/** Append to the log destination where applicable. */
RTLOGFLAGS_APPEND = 0x00000020,
/** Show relative timestamps with PREFIX_TSC and PREFIX_TS */
RTLOGFLAGS_REL_TS = 0x00000040,
/** Show decimal timestamps with PREFIX_TSC and PREFIX_TS */
RTLOGFLAGS_DECIMAL_TS = 0x00000080,
/** Open the file in write through mode. */
RTLOGFLAGS_WRITE_THROUGH = 0x00000100,
/** Flush the file to disk when flushing the buffer. */
RTLOGFLAGS_FLUSH = 0x00000200,
/** Restrict the number of log entries per group. */
RTLOGFLAGS_RESTRICT_GROUPS = 0x00000400,
/** New lines should be prefixed with the write and read lock counts. */
RTLOGFLAGS_PREFIX_LOCK_COUNTS = 0x00008000,
/** New lines should be prefixed with the CPU id (ApicID on intel/amd). */
RTLOGFLAGS_PREFIX_CPUID = 0x00010000,
/** New lines should be prefixed with the native process id. */
RTLOGFLAGS_PREFIX_PID = 0x00020000,
/** New lines should be prefixed with group flag number causing the output. */
RTLOGFLAGS_PREFIX_FLAG_NO = 0x00040000,
/** New lines should be prefixed with group flag name causing the output. */
RTLOGFLAGS_PREFIX_FLAG = 0x00080000,
/** New lines should be prefixed with group number. */
RTLOGFLAGS_PREFIX_GROUP_NO = 0x00100000,
/** New lines should be prefixed with group name. */
RTLOGFLAGS_PREFIX_GROUP = 0x00200000,
/** New lines should be prefixed with the native thread id. */
RTLOGFLAGS_PREFIX_TID = 0x00400000,
/** New lines should be prefixed with thread name. */
RTLOGFLAGS_PREFIX_THREAD = 0x00800000,
/** New lines should be prefixed with data from a custom callback. */
RTLOGFLAGS_PREFIX_CUSTOM = 0x01000000,
/** New lines should be prefixed with formatted timestamp since program start. */
RTLOGFLAGS_PREFIX_TIME_PROG = 0x04000000,
/** New lines should be prefixed with formatted timestamp (UCT). */
RTLOGFLAGS_PREFIX_TIME = 0x08000000,
/** New lines should be prefixed with milliseconds since program start. */
RTLOGFLAGS_PREFIX_MS_PROG = 0x10000000,
/** New lines should be prefixed with timestamp. */
RTLOGFLAGS_PREFIX_TSC = 0x20000000,
/** New lines should be prefixed with timestamp. */
RTLOGFLAGS_PREFIX_TS = 0x40000000,
/** The prefix mask. */
RTLOGFLAGS_PREFIX_MASK = 0x7dff8000
} RTLOGFLAGS;
/** Don't use locking. */
#define RTLOG_F_NO_LOCKING RT_BIT_64(63)
/** Mask with all valid log flags (for validation). */
#define RTLOG_F_VALID_MASK UINT64_C(0x800000007fff87f3)
/**
* Logger per group flags.
*
* @remarks We only use the lower 16 bits here. We'll be combining it with the
* group number in a few places (e.g. RTLogDefaultInstanceEx,
* RTLogGetDefaultInstanceEx, RTLogRelGetDefaultInstanceEx, ++) where
* the high 16-bit word is used for the group number.
*/
typedef enum RTLOGGRPFLAGS
{
/** Enabled. */
RTLOGGRPFLAGS_ENABLED = 0x0001,
/** Flow logging. */
RTLOGGRPFLAGS_FLOW = 0x0002,
/** Warnings logging. */
RTLOGGRPFLAGS_WARN = 0x0004,
/* 0x0008 for later. */
/** Level 1 logging. */
RTLOGGRPFLAGS_LEVEL_1 = 0x0010,
/** Level 2 logging. */
RTLOGGRPFLAGS_LEVEL_2 = 0x0020,
/** Level 3 logging. */
RTLOGGRPFLAGS_LEVEL_3 = 0x0040,
/** Level 4 logging. */
RTLOGGRPFLAGS_LEVEL_4 = 0x0080,
/** Level 5 logging. */
RTLOGGRPFLAGS_LEVEL_5 = 0x0100,
/** Level 6 logging. */
RTLOGGRPFLAGS_LEVEL_6 = 0x0200,
/** Level 7 logging. */
RTLOGGRPFLAGS_LEVEL_7 = 0x0400,
/** Level 8 logging. */
RTLOGGRPFLAGS_LEVEL_8 = 0x0800,
/** Level 9 logging. */
RTLOGGRPFLAGS_LEVEL_9 = 0x1000,
/** Level 10 logging. */
RTLOGGRPFLAGS_LEVEL_10 = 0x2000,
/** Level 11 logging. */
RTLOGGRPFLAGS_LEVEL_11 = 0x4000,
/** Level 12 logging. */
RTLOGGRPFLAGS_LEVEL_12 = 0x8000,
/** Restrict the number of log entries. */
RTLOGGRPFLAGS_RESTRICT = 0x40000000,
/** Blow up the type. */
RTLOGGRPFLAGS_32BIT_HACK = 0x7fffffff
} RTLOGGRPFLAGS;
/**
* Logger destination types and flags.
*/
typedef enum RTLOGDEST
{
/** Log to file. */
RTLOGDEST_FILE = 0x00000001,
/** Log to stdout. */
RTLOGDEST_STDOUT = 0x00000002,
/** Log to stderr. */
RTLOGDEST_STDERR = 0x00000004,
/** Log to debugger (win32 only). */
RTLOGDEST_DEBUGGER = 0x00000008,
/** Log to com port. */
RTLOGDEST_COM = 0x00000010,
/** Log a memory ring buffer. */
RTLOGDEST_RINGBUF = 0x00000020,
/** The parent VMM debug log. */
RTLOGDEST_VMM = 0x00000040,
/** The parent VMM release log. */
RTLOGDEST_VMM_REL = 0x00000080,
/** Open files with no deny (share read, write, delete) on Windows. */
RTLOGDEST_F_NO_DENY = 0x00010000,
/** Delay opening the log file, logging to the buffer untill
* RTLogClearFileDelayFlag is called. */
RTLOGDEST_F_DELAY_FILE = 0x00020000,
/** Don't allow changes to the filename or mode of opening it. */
RTLOGDEST_FIXED_FILE = 0x01000000,
/** Don't allow changing the directory. */
RTLOGDEST_FIXED_DIR = 0x02000000,
/** Just a dummy flag to be used when no other flag applies. */
RTLOGDEST_DUMMY = 0x20000000,
/** Log to a user defined output stream. */
RTLOGDEST_USER = 0x40000000
} RTLOGDEST;
/** Valid log destinations. */
#define RTLOG_DST_VALID_MASK UINT32_C(0x630300ff)
/** Log destinations that can be changed via RTLogChangeDestinations. */
#define RTLOG_DST_CHANGE_MASK UINT32_C(0x400000de)
#ifdef DOXYGEN_RUNNING
# define LOG_DISABLED
# define LOG_ENABLED
# define LOG_ENABLE_FLOW
#endif
/** @def LOG_DISABLED
* Use this compile time define to disable all logging macros. It can
* be overridden for each of the logging macros by the LOG_ENABLE*
* compile time defines.
*/
/** @def LOG_ENABLED
* Use this compile time define to enable logging when not in debug mode
* or LOG_DISABLED is set.
* This will enable Log() only.
*/
/** @def LOG_ENABLE_FLOW
* Use this compile time define to enable flow logging when not in
* debug mode or LOG_DISABLED is defined.
* This will enable LogFlow() only.
*/
/*
* Determine whether logging is enabled and forcefully normalize the indicators.
*/
#if (defined(DEBUG) || defined(LOG_ENABLED)) && !defined(LOG_DISABLED)
# undef LOG_DISABLED
# undef LOG_ENABLED
# define LOG_ENABLED
#else
# undef LOG_ENABLED
# undef LOG_DISABLED
# define LOG_DISABLED
#endif
/** @def LOG_USE_C99
* Governs the use of variadic macros.
*/
#ifndef LOG_USE_C99
# define LOG_USE_C99
#endif
/** @name Macros for checking whether a log level is enabled.
* @{ */
/** @def LogIsItEnabled
* Checks whether the specified logging group is enabled or not.
*/
#ifdef LOG_ENABLED
# define LogIsItEnabled(a_fFlags, a_iGroup) ( RTLogDefaultInstanceEx(RT_MAKE_U32(a_fFlags, a_iGroup)) != NULL )
#else
# define LogIsItEnabled(a_fFlags, a_iGroup) (false)
#endif
/** @def LogIsEnabledOnly
* Checks whether the group is enabled w/o reference to any specific level.
*/
#define LogIsEnabledOnly() LogIsItEnabled(RTLOGGRPFLAGS_ENABLED, LOG_GROUP)
/** @def LogIsEnabled
* Checks whether level 1 logging is enabled.
*/
#define LogIsEnabled() LogIsItEnabled(RTLOGGRPFLAGS_LEVEL_1, LOG_GROUP)
/** @def LogIs2Enabled
* Checks whether level 2 logging is enabled.
*/
#define LogIs2Enabled() LogIsItEnabled(RTLOGGRPFLAGS_LEVEL_2, LOG_GROUP)
/** @def LogIs3Enabled
* Checks whether level 3 logging is enabled.
*/
#define LogIs3Enabled() LogIsItEnabled(RTLOGGRPFLAGS_LEVEL_3, LOG_GROUP)
/** @def LogIs4Enabled
* Checks whether level 4 logging is enabled.
*/
#define LogIs4Enabled() LogIsItEnabled(RTLOGGRPFLAGS_LEVEL_4, LOG_GROUP)
/** @def LogIs5Enabled
* Checks whether level 5 logging is enabled.
*/
#define LogIs5Enabled() LogIsItEnabled(RTLOGGRPFLAGS_LEVEL_5, LOG_GROUP)
/** @def LogIs6Enabled
* Checks whether level 6 logging is enabled.
*/
#define LogIs6Enabled() LogIsItEnabled(RTLOGGRPFLAGS_LEVEL_6, LOG_GROUP)
/** @def LogIs7Enabled
* Checks whether level 7 logging is enabled.
*/
#define LogIs7Enabled() LogIsItEnabled(RTLOGGRPFLAGS_LEVEL_7, LOG_GROUP)
/** @def LogIs8Enabled
* Checks whether level 8 logging is enabled.
*/
#define LogIs8Enabled() LogIsItEnabled(RTLOGGRPFLAGS_LEVEL_8, LOG_GROUP)
/** @def LogIs9Enabled
* Checks whether level 9 logging is enabled.
*/
#define LogIs9Enabled() LogIsItEnabled(RTLOGGRPFLAGS_LEVEL_9, LOG_GROUP)
/** @def LogIs10Enabled
* Checks whether level 10 logging is enabled.
*/
#define LogIs10Enabled() LogIsItEnabled(RTLOGGRPFLAGS_LEVEL_10, LOG_GROUP)
/** @def LogIs11Enabled
* Checks whether level 11 logging is enabled.
*/
#define LogIs11Enabled() LogIsItEnabled(RTLOGGRPFLAGS_LEVEL_11, LOG_GROUP)
/** @def LogIs12Enabled
* Checks whether level 12 logging is enabled.
*/
#define LogIs12Enabled() LogIsItEnabled(RTLOGGRPFLAGS_LEVEL_12, LOG_GROUP)
/** @def LogIsFlowEnabled
* Checks whether execution flow logging is enabled.
*/
#define LogIsFlowEnabled() LogIsItEnabled(RTLOGGRPFLAGS_FLOW, LOG_GROUP)
/** @def LogIsWarnEnabled
* Checks whether execution flow logging is enabled.
*/
#define LogIsWarnEnabled() LogIsItEnabled(RTLOGGRPFLAGS_WARN, LOG_GROUP)
/** @} */
/** @def LogIt
* Write to specific logger if group enabled.
*/
#ifdef LOG_ENABLED
# if defined(LOG_USE_C99)
# define _LogRemoveParentheseis(...) __VA_ARGS__
# define _LogIt(a_fFlags, a_iGroup, ...) \
do \
{ \
PRTLOGGER LogIt_pLogger = RTLogDefaultInstanceEx(RT_MAKE_U32(a_fFlags, a_iGroup)); \
if (RT_LIKELY(!LogIt_pLogger)) \
{ /* likely */ } \
else \
RTLogLoggerEx(LogIt_pLogger, a_fFlags, a_iGroup, __VA_ARGS__); \
} while (0)
# define LogIt(a_fFlags, a_iGroup, fmtargs) _LogIt(a_fFlags, a_iGroup, _LogRemoveParentheseis fmtargs)
# define _LogItAlways(a_fFlags, a_iGroup, ...) RTLogLoggerEx(NULL, a_fFlags, UINT32_MAX, __VA_ARGS__)
# define LogItAlways(a_fFlags, a_iGroup, fmtargs) _LogItAlways(a_fFlags, a_iGroup, _LogRemoveParentheseis fmtargs)
/** @todo invent a flag or something for skipping the group check so we can pass iGroup. LogItAlways. */
# else
# define LogIt(a_fFlags, a_iGroup, fmtargs) \
do \
{ \
PRTLOGGER LogIt_pLogger = RTLogDefaultInstanceEx(RT_MAKE_U32(a_fFlags, a_iGroup)); \
if (RT_LIKELY(!LogIt_pLogger)) \
{ /* likely */ } \
else \
{ \
LogIt_pLogger->pfnLogger fmtargs; \
} \
} while (0)
# define LogItAlways(a_fFlags, a_iGroup, fmtargs) \
do \
{ \
PRTLOGGER LogIt_pLogger = RTLogDefaultInstanceEx(RT_MAKE_U32(0, UINT16_MAX)); \
if (LogIt_pLogger) \
LogIt_pLogger->pfnLogger fmtargs; \
} while (0)
# endif
#else
# define LogIt(a_fFlags, a_iGroup, fmtargs) do { } while (0)
# define LogItAlways(a_fFlags, a_iGroup, fmtargs) do { } while (0)
# if defined(LOG_USE_C99)
# define _LogRemoveParentheseis(...) __VA_ARGS__
# define _LogIt(a_fFlags, a_iGroup, ...) do { } while (0)
# define _LogItAlways(a_fFlags, a_iGroup, ...) do { } while (0)
# endif
#endif
/** @name Basic logging macros
* @{ */
/** @def Log
* Level 1 logging that works regardless of the group settings.
*/
#define LogAlways(a) LogItAlways(RTLOGGRPFLAGS_LEVEL_1, LOG_GROUP, a)
/** @def Log
* Level 1 logging.
*/
#define Log(a) LogIt(RTLOGGRPFLAGS_LEVEL_1, LOG_GROUP, a)
/** @def Log2
* Level 2 logging.
*/
#define Log2(a) LogIt(RTLOGGRPFLAGS_LEVEL_2, LOG_GROUP, a)
/** @def Log3
* Level 3 logging.
*/
#define Log3(a) LogIt(RTLOGGRPFLAGS_LEVEL_3, LOG_GROUP, a)
/** @def Log4
* Level 4 logging.
*/
#define Log4(a) LogIt(RTLOGGRPFLAGS_LEVEL_4, LOG_GROUP, a)
/** @def Log5
* Level 5 logging.
*/
#define Log5(a) LogIt(RTLOGGRPFLAGS_LEVEL_5, LOG_GROUP, a)
/** @def Log6
* Level 6 logging.
*/
#define Log6(a) LogIt(RTLOGGRPFLAGS_LEVEL_6, LOG_GROUP, a)
/** @def Log7
* Level 7 logging.
*/
#define Log7(a) LogIt(RTLOGGRPFLAGS_LEVEL_7, LOG_GROUP, a)
/** @def Log8
* Level 8 logging.
*/
#define Log8(a) LogIt(RTLOGGRPFLAGS_LEVEL_8, LOG_GROUP, a)
/** @def Log9
* Level 9 logging.
*/
#define Log9(a) LogIt(RTLOGGRPFLAGS_LEVEL_9, LOG_GROUP, a)
/** @def Log10
* Level 10 logging.
*/
#define Log10(a) LogIt(RTLOGGRPFLAGS_LEVEL_10, LOG_GROUP, a)
/** @def Log11
* Level 11 logging.
*/
#define Log11(a) LogIt(RTLOGGRPFLAGS_LEVEL_11, LOG_GROUP, a)
/** @def Log12
* Level 12 logging.
*/
#define Log12(a) LogIt(RTLOGGRPFLAGS_LEVEL_12, LOG_GROUP, a)
/** @def LogFlow
* Logging of execution flow.
*/
#define LogFlow(a) LogIt(RTLOGGRPFLAGS_FLOW, LOG_GROUP, a)
/** @def LogWarn
* Logging of warnings.
*/
#define LogWarn(a) LogIt(RTLOGGRPFLAGS_WARN, LOG_GROUP, a)
/** @} */
/** @name Logging macros prefixing the current function name.
* @{ */
/** @def LogFunc
* Level 1 logging inside C/C++ functions.
*
* Prepends the given log message with the function name followed by a
* semicolon and space.
*
* @param a Log message in format <tt>("string\n" [, args])</tt>.
*/
#ifdef LOG_USE_C99
# define LogFunc(a) _LogIt(RTLOGGRPFLAGS_LEVEL_1, LOG_GROUP, LOG_FN_FMT ": %M", LOG_FN_NAME, _LogRemoveParentheseis a )
#else
# define LogFunc(a) do { Log((LOG_FN_FMT ": ", LOG_FN_NAME)); Log(a); } while (0)
#endif
/** @def Log2Func
* Level 2 logging inside C/C++ functions.
*
* Prepends the given log message with the function name followed by a
* semicolon and space.
*
* @param a Log message in format <tt>("string\n" [, args])</tt>.
*/
#ifdef LOG_USE_C99
# define Log2Func(a) _LogIt(RTLOGGRPFLAGS_LEVEL_2, LOG_GROUP, LOG_FN_FMT ": %M", LOG_FN_NAME, _LogRemoveParentheseis a )
#else
# define Log2Func(a) do { Log2((LOG_FN_FMT ": ", LOG_FN_NAME)); Log2(a); } while (0)
#endif
/** @def Log3Func
* Level 3 logging inside C/C++ functions.
*
* Prepends the given log message with the function name followed by a
* semicolon and space.
*
* @param a Log message in format <tt>("string\n" [, args])</tt>.
*/
#ifdef LOG_USE_C99
# define Log3Func(a) _LogIt(RTLOGGRPFLAGS_LEVEL_3, LOG_GROUP, LOG_FN_FMT ": %M", LOG_FN_NAME, _LogRemoveParentheseis a )
#else
# define Log3Func(a) do { Log3((LOG_FN_FMT ": ", LOG_FN_NAME)); Log3(a); } while (0)
#endif
/** @def Log4Func
* Level 4 logging inside C/C++ functions.
*
* Prepends the given log message with the function name followed by a
* semicolon and space.
*
* @param a Log message in format <tt>("string\n" [, args])</tt>.
*/
#ifdef LOG_USE_C99
# define Log4Func(a) _LogIt(RTLOGGRPFLAGS_LEVEL_4, LOG_GROUP, LOG_FN_FMT ": %M", LOG_FN_NAME, _LogRemoveParentheseis a )
#else
# define Log4Func(a) do { Log4((LOG_FN_FMT ": ", LOG_FN_NAME)); Log4(a); } while (0)
#endif
/** @def Log5Func
* Level 5 logging inside C/C++ functions.
*
* Prepends the given log message with the function name followed by a
* semicolon and space.
*
* @param a Log message in format <tt>("string\n" [, args])</tt>.
*/
#ifdef LOG_USE_C99
# define Log5Func(a) _LogIt(RTLOGGRPFLAGS_LEVEL_5, LOG_GROUP, LOG_FN_FMT ": %M", LOG_FN_NAME, _LogRemoveParentheseis a )
#else
# define Log5Func(a) do { Log5((LOG_FN_FMT ": ", LOG_FN_NAME)); Log5(a); } while (0)
#endif
/** @def Log6Func
* Level 6 logging inside C/C++ functions.
*
* Prepends the given log message with the function name followed by a
* semicolon and space.
*
* @param a Log message in format <tt>("string\n" [, args])</tt>.
*/
#ifdef LOG_USE_C99
# define Log6Func(a) _LogIt(RTLOGGRPFLAGS_LEVEL_6, LOG_GROUP, LOG_FN_FMT ": %M", LOG_FN_NAME, _LogRemoveParentheseis a )
#else
# define Log6Func(a) do { Log6((LOG_FN_FMT ": ", LOG_FN_NAME)); Log6(a); } while (0)
#endif
/** @def Log7Func
* Level 7 logging inside C/C++ functions.
*
* Prepends the given log message with the function name followed by a
* semicolon and space.
*
* @param a Log message in format <tt>("string\n" [, args])</tt>.
*/
#ifdef LOG_USE_C99
# define Log7Func(a) _LogIt(RTLOGGRPFLAGS_LEVEL_7, LOG_GROUP, LOG_FN_FMT ": %M", LOG_FN_NAME, _LogRemoveParentheseis a )
#else
# define Log7Func(a) do { Log7((LOG_FN_FMT ": ", LOG_FN_NAME)); Log7(a); } while (0)
#endif
/** @def Log8Func
* Level 8 logging inside C/C++ functions.
*
* Prepends the given log message with the function name followed by a
* semicolon and space.
*
* @param a Log message in format <tt>("string\n" [, args])</tt>.
*/
#ifdef LOG_USE_C99
# define Log8Func(a) _LogIt(RTLOGGRPFLAGS_LEVEL_8, LOG_GROUP, LOG_FN_FMT ": %M", LOG_FN_NAME, _LogRemoveParentheseis a )
#else
# define Log8Func(a) do { Log8((LOG_FN_FMT ": ", LOG_FN_NAME)); Log8(a); } while (0)
#endif
/** @def Log9Func
* Level 9 logging inside C/C++ functions.
*
* Prepends the given log message with the function name followed by a
* semicolon and space.
*
* @param a Log message in format <tt>("string\n" [, args])</tt>.
*/
#ifdef LOG_USE_C99
# define Log9Func(a) _LogIt(RTLOGGRPFLAGS_LEVEL_9, LOG_GROUP, LOG_FN_FMT ": %M", LOG_FN_NAME, _LogRemoveParentheseis a )
#else
# define Log9Func(a) do { Log9((LOG_FN_FMT ": ", LOG_FN_NAME)); Log9(a); } while (0)
#endif
/** @def Log10Func
* Level 10 logging inside C/C++ functions.
*
* Prepends the given log message with the function name followed by a
* semicolon and space.
*
* @param a Log message in format <tt>("string\n" [, args])</tt>.
*/
#ifdef LOG_USE_C99
# define Log10Func(a) _LogIt(RTLOGGRPFLAGS_LEVEL_10, LOG_GROUP, LOG_FN_FMT ": %M", LOG_FN_NAME, _LogRemoveParentheseis a )
#else
# define Log10Func(a) do { Log10((LOG_FN_FMT ": ", LOG_FN_NAME)); Log10(a); } while (0)
#endif
/** @def Log11Func
* Level 11 logging inside C/C++ functions.
*
* Prepends the given log message with the function name followed by a
* semicolon and space.
*
* @param a Log message in format <tt>("string\n" [, args])</tt>.
*/
#ifdef LOG_USE_C99
# define Log11Func(a) _LogIt(RTLOGGRPFLAGS_LEVEL_11, LOG_GROUP, LOG_FN_FMT ": %M", LOG_FN_NAME, _LogRemoveParentheseis a )
#else
# define Log11Func(a) do { Log11((LOG_FN_FMT ": ", LOG_FN_NAME)); Log11(a); } while (0)
#endif
/** @def Log12Func
* Level 12 logging inside C/C++ functions.
*
* Prepends the given log message with the function name followed by a
* semicolon and space.
*
* @param a Log message in format <tt>("string\n" [, args])</tt>.
*/
#ifdef LOG_USE_C99
# define Log12Func(a) _LogIt(RTLOGGRPFLAGS_LEVEL_12, LOG_GROUP, LOG_FN_FMT ": %M", LOG_FN_NAME, _LogRemoveParentheseis a )
#else
# define Log12Func(a) do { Log12((LOG_FN_FMT ": ", LOG_FN_NAME)); Log12(a); } while (0)
#endif
/** @def LogFlowFunc
* Macro to log the execution flow inside C/C++ functions.
*
* Prepends the given log message with the function name followed by
* a semicolon and space.
*
* @param a Log message in format <tt>("string\n" [, args])</tt>.
*/
#ifdef LOG_USE_C99
# define LogFlowFunc(a) \
_LogIt(RTLOGGRPFLAGS_FLOW, LOG_GROUP, LOG_FN_FMT ": %M", LOG_FN_NAME, _LogRemoveParentheseis a )
#else
# define LogFlowFunc(a) \
do { LogFlow((LOG_FN_FMT ": ", LOG_FN_NAME)); LogFlow(a); } while (0)
#endif
/** @def LogWarnFunc
* Macro to log a warning inside C/C++ functions.
*
* Prepends the given log message with the function name followed by
* a semicolon and space.
*
* @param a Log message in format <tt>("string\n" [, args])</tt>.
*/
#ifdef LOG_USE_C99
# define LogWarnFunc(a) \
_LogIt(RTLOGGRPFLAGS_WARN, LOG_GROUP, LOG_FN_FMT ": %M", LOG_FN_NAME, _LogRemoveParentheseis a )
#else
# define LogWarnFunc(a) \
do { LogFlow((LOG_FN_FMT ": ", LOG_FN_NAME)); LogFlow(a); } while (0)
#endif
/** @} */
/** @name Logging macros prefixing the this pointer value and method name.
* @{ */
/** @def LogThisFunc
* Level 1 logging inside a C++ non-static method, with object pointer and
* method name prefixed to the given message.
* @param a Log message in format <tt>("string\n" [, args])</tt>.
*/
#ifdef LOG_USE_C99
# define LogThisFunc(a) \
_LogIt(RTLOGGRPFLAGS_LEVEL_1, LOG_GROUP, "{%p} " LOG_FN_FMT ": %M", this, LOG_FN_NAME, _LogRemoveParentheseis a )
#else
# define LogThisFunc(a) do { Log(("{%p} " LOG_FN_FMT ": ", this, LOG_FN_NAME)); Log(a); } while (0)
#endif
/** @def Log2ThisFunc
* Level 2 logging inside a C++ non-static method, with object pointer and
* method name prefixed to the given message.
* @param a Log message in format <tt>("string\n" [, args])</tt>.
*/
#ifdef LOG_USE_C99
# define Log2ThisFunc(a) \
_LogIt(RTLOGGRPFLAGS_LEVEL_2, LOG_GROUP, "{%p} " LOG_FN_FMT ": %M", this, LOG_FN_NAME, _LogRemoveParentheseis a )
#else
# define Log2ThisFunc(a) do { Log2(("{%p} " LOG_FN_FMT ": ", this, LOG_FN_NAME)); Log2(a); } while (0)
#endif
/** @def Log3ThisFunc
* Level 3 logging inside a C++ non-static method, with object pointer and
* method name prefixed to the given message.
* @param a Log message in format <tt>("string\n" [, args])</tt>.
*/
#ifdef LOG_USE_C99
# define Log3ThisFunc(a) \
_LogIt(RTLOGGRPFLAGS_LEVEL_3, LOG_GROUP, "{%p} " LOG_FN_FMT ": %M", this, LOG_FN_NAME, _LogRemoveParentheseis a )
#else
# define Log3ThisFunc(a) do { Log3(("{%p} " LOG_FN_FMT ": ", this, LOG_FN_NAME)); Log3(a); } while (0)
#endif
/** @def Log4ThisFunc
* Level 4 logging inside a C++ non-static method, with object pointer and
* method name prefixed to the given message.
* @param a Log message in format <tt>("string\n" [, args])</tt>.
*/
#ifdef LOG_USE_C99
# define Log4ThisFunc(a) \
_LogIt(RTLOGGRPFLAGS_LEVEL_4, LOG_GROUP, "{%p} " LOG_FN_FMT ": %M", this, LOG_FN_NAME, _LogRemoveParentheseis a )
#else
# define Log4ThisFunc(a) do { Log4(("{%p} " LOG_FN_FMT ": ", this, LOG_FN_NAME)); Log4(a); } while (0)
#endif
/** @def Log5ThisFunc
* Level 5 logging inside a C++ non-static method, with object pointer and
* method name prefixed to the given message.
* @param a Log message in format <tt>("string\n" [, args])</tt>.
*/
#ifdef LOG_USE_C99
# define Log5ThisFunc(a) \
_LogIt(RTLOGGRPFLAGS_LEVEL_5, LOG_GROUP, "{%p} " LOG_FN_FMT ": %M", this, LOG_FN_NAME, _LogRemoveParentheseis a )
#else
# define Log5ThisFunc(a) do { Log5(("{%p} " LOG_FN_FMT ": ", this, LOG_FN_NAME)); Log5(a); } while (0)
#endif
/** @def Log6ThisFunc
* Level 6 logging inside a C++ non-static method, with object pointer and
* method name prefixed to the given message.
* @param a Log message in format <tt>("string\n" [, args])</tt>.
*/
#ifdef LOG_USE_C99
# define Log6ThisFunc(a) \
_LogIt(RTLOGGRPFLAGS_LEVEL_6, LOG_GROUP, "{%p} " LOG_FN_FMT ": %M", this, LOG_FN_NAME, _LogRemoveParentheseis a )
#else
# define Log6ThisFunc(a) do { Log6(("{%p} " LOG_FN_FMT ": ", this, LOG_FN_NAME)); Log6(a); } while (0)
#endif
/** @def Log7ThisFunc
* Level 7 logging inside a C++ non-static method, with object pointer and
* method name prefixed to the given message.
* @param a Log message in format <tt>("string\n" [, args])</tt>.
*/
#ifdef LOG_USE_C99
# define Log7ThisFunc(a) \
_LogIt(RTLOGGRPFLAGS_LEVEL_7, LOG_GROUP, "{%p} " LOG_FN_FMT ": %M", this, LOG_FN_NAME, _LogRemoveParentheseis a )
#else
# define Log7ThisFunc(a) do { Log7(("{%p} " LOG_FN_FMT ": ", this, LOG_FN_NAME)); Log7(a); } while (0)
#endif
/** @def Log8ThisFunc
* Level 8 logging inside a C++ non-static method, with object pointer and
* method name prefixed to the given message.
* @param a Log message in format <tt>("string\n" [, args])</tt>.
*/
#ifdef LOG_USE_C99
# define Log8ThisFunc(a) \
_LogIt(RTLOGGRPFLAGS_LEVEL_8, LOG_GROUP, "{%p} " LOG_FN_FMT ": %M", this, LOG_FN_NAME, _LogRemoveParentheseis a )
#else
# define Log8ThisFunc(a) do { Log8(("{%p} " LOG_FN_FMT ": ", this, LOG_FN_NAME)); Log8(a); } while (0)
#endif
/** @def Log9ThisFunc
* Level 9 logging inside a C++ non-static method, with object pointer and
* method name prefixed to the given message.
* @param a Log message in format <tt>("string\n" [, args])</tt>.
*/
#ifdef LOG_USE_C99
# define Log9ThisFunc(a) \
_LogIt(RTLOGGRPFLAGS_LEVEL_9, LOG_GROUP, "{%p} " LOG_FN_FMT ": %M", this, LOG_FN_NAME, _LogRemoveParentheseis a )
#else
# define Log9ThisFunc(a) do { Log9(("{%p} " LOG_FN_FMT ": ", this, LOG_FN_NAME)); Log9(a); } while (0)
#endif
/** @def Log10ThisFunc
* Level 10 logging inside a C++ non-static method, with object pointer and
* method name prefixed to the given message.
* @param a Log message in format <tt>("string\n" [, args])</tt>.
*/
#ifdef LOG_USE_C99
# define Log10ThisFunc(a) \
_LogIt(RTLOGGRPFLAGS_LEVEL_10, LOG_GROUP, "{%p} " LOG_FN_FMT ": %M", this, LOG_FN_NAME, _LogRemoveParentheseis a )
#else
# define Log10ThisFunc(a) do { Log10(("{%p} " LOG_FN_FMT ": ", this, LOG_FN_NAME)); Log10(a); } while (0)
#endif
/** @def Log11ThisFunc
* Level 11 logging inside a C++ non-static method, with object pointer and
* method name prefixed to the given message.
* @param a Log message in format <tt>("string\n" [, args])</tt>.
*/
#ifdef LOG_USE_C99
# define Log11ThisFunc(a) \
_LogIt(RTLOGGRPFLAGS_LEVEL_11, LOG_GROUP, "{%p} " LOG_FN_FMT ": %M", this, LOG_FN_NAME, _LogRemoveParentheseis a )
#else
# define Log11ThisFunc(a) do { Log11(("{%p} " LOG_FN_FMT ": ", this, LOG_FN_NAME)); Log11(a); } while (0)
#endif
/** @def Log12ThisFunc
* Level 12 logging inside a C++ non-static method, with object pointer and
* method name prefixed to the given message.
* @param a Log message in format <tt>("string\n" [, args])</tt>.
*/
#ifdef LOG_USE_C99
# define Log12ThisFunc(a) \
_LogIt(RTLOGGRPFLAGS_LEVEL_12, LOG_GROUP, "{%p} " LOG_FN_FMT ": %M", this, LOG_FN_NAME, _LogRemoveParentheseis a )
#else
# define Log12ThisFunc(a) do { Log12(("{%p} " LOG_FN_FMT ": ", this, LOG_FN_NAME)); Log12(a); } while (0)
#endif
/** @def LogFlowThisFunc
* Flow level logging inside a C++ non-static method, with object pointer and
* method name prefixed to the given message.
* @param a Log message in format <tt>("string\n" [, args])</tt>.
*/
#ifdef LOG_USE_C99
# define LogFlowThisFunc(a) \
_LogIt(RTLOGGRPFLAGS_FLOW, LOG_GROUP, "{%p} " LOG_FN_FMT ": %M", this, LOG_FN_NAME, _LogRemoveParentheseis a )
#else
# define LogFlowThisFunc(a) do { LogFlow(("{%p} " LOG_FN_FMT ": ", this, LOG_FN_NAME)); LogFlow(a); } while (0)
#endif
/** @def LogWarnThisFunc
* Warning level logging inside a C++ non-static method, with object pointer and
* method name prefixed to the given message.
* @param a Log message in format <tt>("string\n" [, args])</tt>.
*/
#ifdef LOG_USE_C99
# define LogWarnThisFunc(a) \
_LogIt(RTLOGGRPFLAGS_WARN, LOG_GROUP, "{%p} " LOG_FN_FMT ": %M", this, LOG_FN_NAME, _LogRemoveParentheseis a )
#else
# define LogWarnThisFunc(a) do { LogWarn(("{%p} " LOG_FN_FMT ": ", this, LOG_FN_NAME)); LogWarn(a); } while (0)
#endif
/** @} */
/** @name Misc Logging Macros
* @{ */
/** @def Log1Warning
* The same as Log(), but prepents a <tt>"WARNING! "</tt> string to the message.
*
* @param a Custom log message in format <tt>("string\n" [, args])</tt>.
*/
#if defined(LOG_USE_C99)
# define Log1Warning(a) _LogIt(RTLOGGRPFLAGS_LEVEL_1, LOG_GROUP, "WARNING! %M", _LogRemoveParentheseis a )
#else
# define Log1Warning(a) do { Log(("WARNING! ")); Log(a); } while (0)
#endif
/** @def Log1WarningFunc
* The same as LogWarning(), but prepents the log message with the function name.
*
* @param a Log message in format <tt>("string\n" [, args])</tt>.
*/
#ifdef LOG_USE_C99
# define Log1WarningFunc(a) \
_LogIt(RTLOGGRPFLAGS_LEVEL_1, LOG_GROUP, LOG_FN_FMT ": WARNING! %M", LOG_FN_NAME, _LogRemoveParentheseis a )
#else
# define Log1WarningFunc(a) \
do { Log((LOG_FN_FMT ": WARNING! ", LOG_FN_NAME)); Log(a); } while (0)
#endif
/** @def Log1WarningThisFunc
* The same as LogWarningFunc() but for class functions (methods): the resulting
* log line is additionally prepended with a hex value of |this| pointer.
*
* @param a Log message in format <tt>("string\n" [, args])</tt>.
*/
#ifdef LOG_USE_C99
# define Log1WarningThisFunc(a) \
_LogIt(RTLOGGRPFLAGS_LEVEL_1, LOG_GROUP, "{%p} " LOG_FN_FMT ": WARNING! %M", this, LOG_FN_NAME, _LogRemoveParentheseis a )
#else
# define Log1WarningThisFunc(a) \
do { Log(("{%p} " LOG_FN_FMT ": WARNING! ", this, LOG_FN_NAME)); Log(a); } while (0)
#endif
/** Shortcut to |LogFlowFunc ("ENTER\n")|, marks the beginnig of the function. */
#define LogFlowFuncEnter() LogFlowFunc(("ENTER\n"))
/** Shortcut to |LogFlowFunc ("LEAVE\n")|, marks the end of the function. */
#define LogFlowFuncLeave() LogFlowFunc(("LEAVE\n"))
/** Shortcut to |LogFlowFunc ("LEAVE: %Rrc\n")|, marks the end of the function. */
#define LogFlowFuncLeaveRC(rc) LogFlowFunc(("LEAVE: %Rrc\n", (rc)))
/** Shortcut to |LogFlowThisFunc ("ENTER\n")|, marks the beginnig of the function. */
#define LogFlowThisFuncEnter() LogFlowThisFunc(("ENTER\n"))
/** Shortcut to |LogFlowThisFunc ("LEAVE\n")|, marks the end of the function. */
#define LogFlowThisFuncLeave() LogFlowThisFunc(("LEAVE\n"))
/** @def LogObjRefCnt
* Helper macro to print the current reference count of the given COM object
* to the log file.
*
* @param pObj Pointer to the object in question (must be a pointer to an
* IUnknown subclass or simply define COM-style AddRef() and
* Release() methods)
*/
#define LogObjRefCnt(pObj) \
do { \
if (LogIsFlowEnabled()) \
{ \
int cRefsForLog = (pObj)->AddRef(); \
LogFlow((#pObj "{%p}.refCnt=%d\n", (pObj), cRefsForLog - 1)); \
(pObj)->Release(); \
} \
} while (0)
/** @} */
/** @name Logging to specific group.
* @{ */
/** @def LogEx
* Level 1 logging to specific group.
*/
#define LogEx(a_Grp, a) LogIt(RTLOGGRPFLAGS_LEVEL_1, a_Grp, a)
/** @def Log2Ex
* Level 2 logging to specific group.
*/
#define Log2Ex(a_Grp, a) LogIt(RTLOGGRPFLAGS_LEVEL_2, a_Grp, a)
/** @def Log3Ex
* Level 3 logging to specific group.
*/
#define Log3Ex(a_Grp, a) LogIt(RTLOGGRPFLAGS_LEVEL_3, a_Grp, a)
/** @def Log4Ex
* Level 4 logging to specific group.
*/
#define Log4Ex(a_Grp, a) LogIt(RTLOGGRPFLAGS_LEVEL_4, a_Grp, a)
/** @def Log5Ex
* Level 5 logging to specific group.
*/
#define Log5Ex(a_Grp, a) LogIt(RTLOGGRPFLAGS_LEVEL_5, a_Grp, a)
/** @def Log6Ex
* Level 6 logging to specific group.
*/
#define Log6Ex(a_Grp, a) LogIt(RTLOGGRPFLAGS_LEVEL_6, a_Grp, a)
/** @def Log7Ex
* Level 7 logging to specific group.
*/
#define Log7Ex(a_Grp, a) LogIt(RTLOGGRPFLAGS_LEVEL_7, a_Grp, a)
/** @def Log8Ex
* Level 8 logging to specific group.
*/
#define Log8Ex(a_Grp, a) LogIt(RTLOGGRPFLAGS_LEVEL_8, a_Grp, a)
/** @def Log9Ex
* Level 9 logging to specific group.
*/
#define Log9Ex(a_Grp, a) LogIt(RTLOGGRPFLAGS_LEVEL_9, a_Grp, a)
/** @def Log10Ex
* Level 10 logging to specific group.
*/
#define Log10Ex(a_Grp, a) LogIt(RTLOGGRPFLAGS_LEVEL_10, a_Grp, a)
/** @def Log11Ex
* Level 11 logging to specific group.
*/
#define Log11Ex(a_Grp, a) LogIt(RTLOGGRPFLAGS_LEVEL_11, a_Grp, a)
/** @def Log12Ex
* Level 12 logging to specific group.
*/
#define Log12Ex(a_Grp, a) LogIt(RTLOGGRPFLAGS_LEVEL_12, a_Grp, a)
/** @def LogFlowEx
* Logging of execution flow to specific group.
*/
#define LogFlowEx(a_Grp, a) LogIt(RTLOGGRPFLAGS_FLOW, a_Grp, a)
/** @def LogWarnEx
* Logging of warnings to specific group.
*/
#define LogWarnEx(a_Grp, a) LogIt(RTLOGGRPFLAGS_WARN, a_Grp, a)
/** @} */
/** @name Passing Function Call Position When Logging.
*
* This is a little bit ugly as we have to omit the comma before the
* position parameters so that we don't inccur any overhead in non-logging
* builds (!defined(LOG_ENABLED).
*
* @{ */
/** Source position for passing to a function call. */
#ifdef LOG_ENABLED
# define RTLOG_COMMA_SRC_POS , __FILE__, __LINE__, LOG_FN_NAME
#else
# define RTLOG_COMMA_SRC_POS RT_NOTHING
#endif
/** Source position declaration. */
#ifdef LOG_ENABLED
# define RTLOG_COMMA_SRC_POS_DECL , const char *pszFile, unsigned iLine, const char *pszFunction
#else
# define RTLOG_COMMA_SRC_POS_DECL RT_NOTHING
#endif
/** Source position arguments. */
#ifdef LOG_ENABLED
# define RTLOG_COMMA_SRC_POS_ARGS , pszFile, iLine, pszFunction
#else
# define RTLOG_COMMA_SRC_POS_ARGS RT_NOTHING
#endif
/** Applies NOREF() to the source position arguments. */
#ifdef LOG_ENABLED
# define RTLOG_SRC_POS_NOREF() do { NOREF(pszFile); NOREF(iLine); NOREF(pszFunction); } while (0)
#else
# define RTLOG_SRC_POS_NOREF() do { } while (0)
#endif
/** @} */
/** @defgroup grp_rt_log_rel Release Logging
* @{
*/
#ifdef DOXYGEN_RUNNING
# define RTLOG_REL_DISABLED
# define RTLOG_REL_ENABLED
#endif
/** @def RTLOG_REL_DISABLED
* Use this compile time define to disable all release logging
* macros.
*/
/** @def RTLOG_REL_ENABLED
* Use this compile time define to override RTLOG_REL_DISABLE.
*/
/*
* Determine whether release logging is enabled and forcefully normalize the indicators.
*/
#if !defined(RTLOG_REL_DISABLED) || defined(RTLOG_REL_ENABLED)
# undef RTLOG_REL_DISABLED
# undef RTLOG_REL_ENABLED
# define RTLOG_REL_ENABLED
#else
# undef RTLOG_REL_ENABLED
# undef RTLOG_REL_DISABLED
# define RTLOG_REL_DISABLED
#endif
/** @name Macros for checking whether a release log level is enabled.
* @{ */
/** @def LogRelIsItEnabled
* Checks whether the specified release logging group is enabled or not.
*/
#define LogRelIsItEnabled(a_fFlags, a_iGroup) ( RTLogRelGetDefaultInstanceExWeak(RT_MAKE_U32(a_fFlags, a_iGroup)) != NULL )
/** @def LogRelIsEnabled
* Checks whether level 1 release logging is enabled.
*/
#define LogRelIsEnabled() LogRelIsItEnabled(RTLOGGRPFLAGS_LEVEL_1, LOG_GROUP)
/** @def LogRelIs2Enabled
* Checks whether level 2 release logging is enabled.
*/
#define LogRelIs2Enabled() LogRelIsItEnabled(RTLOGGRPFLAGS_LEVEL_2, LOG_GROUP)
/** @def LogRelIs3Enabled
* Checks whether level 3 release logging is enabled.
*/
#define LogRelIs3Enabled() LogRelIsItEnabled(RTLOGGRPFLAGS_LEVEL_3, LOG_GROUP)
/** @def LogRelIs4Enabled
* Checks whether level 4 release logging is enabled.
*/
#define LogRelIs4Enabled() LogRelIsItEnabled(RTLOGGRPFLAGS_LEVEL_4, LOG_GROUP)
/** @def LogRelIs5Enabled
* Checks whether level 5 release logging is enabled.
*/
#define LogRelIs5Enabled() LogRelIsItEnabled(RTLOGGRPFLAGS_LEVEL_5, LOG_GROUP)
/** @def LogRelIs6Enabled
* Checks whether level 6 release logging is enabled.
*/
#define LogRelIs6Enabled() LogRelIsItEnabled(RTLOGGRPFLAGS_LEVEL_6, LOG_GROUP)
/** @def LogRelIs7Enabled
* Checks whether level 7 release logging is enabled.
*/
#define LogRelIs7Enabled() LogRelIsItEnabled(RTLOGGRPFLAGS_LEVEL_7, LOG_GROUP)
/** @def LogRelIs8Enabled
* Checks whether level 8 release logging is enabled.
*/
#define LogRelIs8Enabled() LogRelIsItEnabled(RTLOGGRPFLAGS_LEVEL_8, LOG_GROUP)
/** @def LogRelIs2Enabled
* Checks whether level 9 release logging is enabled.
*/
#define LogRelIs9Enabled() LogRelIsItEnabled(RTLOGGRPFLAGS_LEVEL_9, LOG_GROUP)
/** @def LogRelIs10Enabled
* Checks whether level 10 release logging is enabled.
*/
#define LogRelIs10Enabled() LogRelIsItEnabled(RTLOGGRPFLAGS_LEVEL_10, LOG_GROUP)
/** @def LogRelIs11Enabled
* Checks whether level 10 release logging is enabled.
*/
#define LogRelIs11Enabled() LogRelIsItEnabled(RTLOGGRPFLAGS_LEVEL_11, LOG_GROUP)
/** @def LogRelIs12Enabled
* Checks whether level 12 release logging is enabled.
*/
#define LogRelIs12Enabled() LogRelIsItEnabled(RTLOGGRPFLAGS_LEVEL_12, LOG_GROUP)
/** @def LogRelIsFlowEnabled
* Checks whether execution flow release logging is enabled.
*/
#define LogRelIsFlowEnabled() LogRelIsItEnabled(RTLOGGRPFLAGS_FLOW, LOG_GROUP)
/** @def LogRelIsWarnEnabled
* Checks whether warning level release logging is enabled.
*/
#define LogRelIsWarnEnabled() LogRelIsItEnabled(RTLOGGRPFLAGS_FLOW, LOG_GROUP)
/** @} */
/** @def LogRelIt
* Write to specific logger if group enabled.
*/
/** @def LogRelItLikely
* Write to specific logger if group enabled, assuming it likely it is enabled.
*/
/** @def LogRelMaxIt
* Write to specific logger if group enabled and at less than a_cMax messages
* have hit the log. Uses a static variable to count.
*/
#ifdef RTLOG_REL_ENABLED
# if defined(LOG_USE_C99)
# define _LogRelRemoveParentheseis(...) __VA_ARGS__
# define _LogRelIt(a_fFlags, a_iGroup, ...) \
do \
{ \
PRTLOGGER LogRelIt_pLogger = RTLogRelGetDefaultInstanceExWeak(RT_MAKE_U32(a_fFlags, a_iGroup)); \
if (RT_LIKELY(!LogRelIt_pLogger)) \
{ /* likely */ } \
else \
RTLogLoggerExWeak(LogRelIt_pLogger, a_fFlags, a_iGroup, __VA_ARGS__); \
_LogIt(a_fFlags, a_iGroup, __VA_ARGS__); \
} while (0)
# define LogRelIt(a_fFlags, a_iGroup, fmtargs) \
_LogRelIt(a_fFlags, a_iGroup, _LogRelRemoveParentheseis fmtargs)
# define _LogRelItLikely(a_fFlags, a_iGroup, ...) \
do \
{ \
PRTLOGGER LogRelIt_pLogger = RTLogRelGetDefaultInstanceExWeak(RT_MAKE_U32(a_fFlags, a_iGroup)); \
if (LogRelIt_pLogger) \
RTLogLoggerExWeak(LogRelIt_pLogger, a_fFlags, a_iGroup, __VA_ARGS__); \
_LogIt(a_fFlags, a_iGroup, __VA_ARGS__); \
} while (0)
# define LogRelItLikely(a_fFlags, a_iGroup, fmtargs) \
_LogRelItLikely(a_fFlags, a_iGroup, _LogRelRemoveParentheseis fmtargs)
# define _LogRelMaxIt(a_cMax, a_fFlags, a_iGroup, ...) \
do \
{ \
PRTLOGGER LogRelIt_pLogger = RTLogRelGetDefaultInstanceExWeak(RT_MAKE_U32(a_fFlags, a_iGroup)); \
if (LogRelIt_pLogger) \
{ \
static uint32_t s_LogRelMaxIt_cLogged = 0; \
if (s_LogRelMaxIt_cLogged < (a_cMax)) \
{ \
s_LogRelMaxIt_cLogged++; \
RTLogLoggerExWeak(LogRelIt_pLogger, a_fFlags, a_iGroup, __VA_ARGS__); \
} \
} \
_LogIt(a_fFlags, a_iGroup, __VA_ARGS__); \
} while (0)
# define LogRelMaxIt(a_cMax, a_fFlags, a_iGroup, fmtargs) \
_LogRelMaxIt(a_cMax, a_fFlags, a_iGroup, _LogRelRemoveParentheseis fmtargs)
# else
# define LogRelItLikely(a_fFlags, a_iGroup, fmtargs) \
do \
{ \
PRTLOGGER LogRelIt_pLogger = RTLogRelGetDefaultInstanceExWeak(RT_MAKE_U32(a_fFlags, a_iGroup)); \
if (LogRelIt_pLogger) \
{ \
LogRelIt_pLogger->pfnLogger fmtargs; \
} \
LogIt(a_fFlags, a_iGroup, fmtargs); \
} while (0)
# define LogRelIt(a_fFlags, a_iGroup, fmtargs) \
do \
{ \
PRTLOGGER LogRelIt_pLogger = RTLogRelGetDefaultInstanceExWeak(RT_MAKE_U32(a_fFlags, a_iGroup)); \
if (RT_LIKELY(!LogRelIt_pLogger)) \
{ /* likely */ } \
else \
{ \
LogRelIt_pLogger->pfnLogger fmtargs; \
} \
LogIt(a_fFlags, a_iGroup, fmtargs); \
} while (0)
# define LogRelMaxIt(a_cMax, a_fFlags, a_iGroup, fmtargs) \
do \
{ \
PRTLOGGER LogRelIt_pLogger = RTLogRelGetDefaultInstanceExWeak(RT_MAKE_U32(a_fFlags, a_iGroup)); \
if (LogRelIt_pLogger) \
{ \
static uint32_t s_LogRelMaxIt_cLogged = 0; \
if (s_LogRelMaxIt_cLogged < (a_cMax)) \
{ \
s_LogRelMaxIt_cLogged++; \
LogRelIt_pLogger->pfnLogger fmtargs; \
} \
} \
LogIt(a_fFlags, a_iGroup, fmtargs); \
} while (0)
# endif
#else /* !RTLOG_REL_ENABLED */
# define LogRelIt(a_fFlags, a_iGroup, fmtargs) do { } while (0)
# define LogRelItLikely(a_fFlags, a_iGroup, fmtargs) do { } while (0)
# define LogRelMaxIt(a_cMax, a_fFlags, a_iGroup, fmtargs) do { } while (0)
# if defined(LOG_USE_C99)
# define _LogRelRemoveParentheseis(...) __VA_ARGS__
# define _LogRelIt(a_fFlags, a_iGroup, ...) do { } while (0)
# define _LogRelItLikely(a_fFlags, a_iGroup, ...) do { } while (0)
# define _LogRelMaxIt(a_cMax, a_fFlags, a_iGroup, ...) do { } while (0)
# endif
#endif /* !RTLOG_REL_ENABLED */
/** @name Basic release logging macros
* @{ */
/** @def LogRel
* Level 1 release logging.
*/
#define LogRel(a) LogRelItLikely(RTLOGGRPFLAGS_LEVEL_1, LOG_GROUP, a)
/** @def LogRel2
* Level 2 release logging.
*/
#define LogRel2(a) LogRelIt(RTLOGGRPFLAGS_LEVEL_2, LOG_GROUP, a)
/** @def LogRel3
* Level 3 release logging.
*/
#define LogRel3(a) LogRelIt(RTLOGGRPFLAGS_LEVEL_3, LOG_GROUP, a)
/** @def LogRel4
* Level 4 release logging.
*/
#define LogRel4(a) LogRelIt(RTLOGGRPFLAGS_LEVEL_4, LOG_GROUP, a)
/** @def LogRel5
* Level 5 release logging.
*/
#define LogRel5(a) LogRelIt(RTLOGGRPFLAGS_LEVEL_5, LOG_GROUP, a)
/** @def LogRel6
* Level 6 release logging.
*/
#define LogRel6(a) LogRelIt(RTLOGGRPFLAGS_LEVEL_6, LOG_GROUP, a)
/** @def LogRel7
* Level 7 release logging.
*/
#define LogRel7(a) LogRelIt(RTLOGGRPFLAGS_LEVEL_7, LOG_GROUP, a)
/** @def LogRel8
* Level 8 release logging.
*/
#define LogRel8(a) LogRelIt(RTLOGGRPFLAGS_LEVEL_8, LOG_GROUP, a)
/** @def LogRel9
* Level 9 release logging.
*/
#define LogRel9(a) LogRelIt(RTLOGGRPFLAGS_LEVEL_9, LOG_GROUP, a)
/** @def LogRel10
* Level 10 release logging.
*/
#define LogRel10(a) LogRelIt(RTLOGGRPFLAGS_LEVEL_10, LOG_GROUP, a)
/** @def LogRel11
* Level 11 release logging.
*/
#define LogRel11(a) LogRelIt(RTLOGGRPFLAGS_LEVEL_11, LOG_GROUP, a)
/** @def LogRel12
* Level 12 release logging.
*/
#define LogRel12(a) LogRelIt(RTLOGGRPFLAGS_LEVEL_12, LOG_GROUP, a)
/** @def LogRelFlow
* Logging of execution flow.
*/
#define LogRelFlow(a) LogRelIt(RTLOGGRPFLAGS_FLOW, LOG_GROUP, a)
/** @def LogRelWarn
* Warning level release logging.
*/
#define LogRelWarn(a) LogRelIt(RTLOGGRPFLAGS_WARN, LOG_GROUP, a)
/** @} */
/** @name Basic release logging macros with local max
* @{ */
/** @def LogRelMax
* Level 1 release logging with a max number of log entries.
*/
#define LogRelMax(a_cMax, a) LogRelMaxIt(a_cMax, RTLOGGRPFLAGS_LEVEL_1, LOG_GROUP, a)
/** @def LogRelMax2
* Level 2 release logging with a max number of log entries.
*/
#define LogRelMax2(a_cMax, a) LogRelMaxIt(a_cMax, RTLOGGRPFLAGS_LEVEL_2, LOG_GROUP, a)
/** @def LogRelMax3
* Level 3 release logging with a max number of log entries.
*/
#define LogRelMax3(a_cMax, a) LogRelMaxIt(a_cMax, RTLOGGRPFLAGS_LEVEL_3, LOG_GROUP, a)
/** @def LogRelMax4
* Level 4 release logging with a max number of log entries.
*/
#define LogRelMax4(a_cMax, a) LogRelMaxIt(a_cMax, RTLOGGRPFLAGS_LEVEL_4, LOG_GROUP, a)
/** @def LogRelMax5
* Level 5 release logging with a max number of log entries.
*/
#define LogRelMax5(a_cMax, a) LogRelMaxIt(a_cMax, RTLOGGRPFLAGS_LEVEL_5, LOG_GROUP, a)
/** @def LogRelMax6
* Level 6 release logging with a max number of log entries.
*/
#define LogRelMax6(a_cMax, a) LogRelMaxIt(a_cMax, RTLOGGRPFLAGS_LEVEL_6, LOG_GROUP, a)
/** @def LogRelMax7
* Level 7 release logging with a max number of log entries.
*/
#define LogRelMax7(a_cMax, a) LogRelMaxIt(a_cMax, RTLOGGRPFLAGS_LEVEL_7, LOG_GROUP, a)
/** @def LogRelMax8
* Level 8 release logging with a max number of log entries.
*/
#define LogRelMax8(a_cMax, a) LogRelMaxIt(a_cMax, RTLOGGRPFLAGS_LEVEL_8, LOG_GROUP, a)
/** @def LogRelMax9
* Level 9 release logging with a max number of log entries.
*/
#define LogRelMax9(a_cMax, a) LogRelMaxIt(a_cMax, RTLOGGRPFLAGS_LEVEL_9, LOG_GROUP, a)
/** @def LogRelMax10
* Level 10 release logging with a max number of log entries.
*/
#define LogRelMax10(a_cMax, a) LogRelMaxIt(a_cMax, RTLOGGRPFLAGS_LEVEL_10, LOG_GROUP, a)
/** @def LogRelMax11
* Level 11 release logging with a max number of log entries.
*/
#define LogRelMax11(a_cMax, a) LogRelMaxIt(a_cMax, RTLOGGRPFLAGS_LEVEL_11, LOG_GROUP, a)
/** @def LogRelMax12
* Level 12 release logging with a max number of log entries.
*/
#define LogRelMax12(a_cMax, a) LogRelMaxIt(a_cMax, RTLOGGRPFLAGS_LEVEL_12, LOG_GROUP, a)
/** @def LogRelMaxFlow
* Logging of execution flow with a max number of log entries.
*/
#define LogRelMaxFlow(a_cMax, a) LogRelMaxIt(a_cMax, RTLOGGRPFLAGS_FLOW, LOG_GROUP, a)
/** @} */
/** @name Release logging macros prefixing the current function name.
* @{ */
/** @def LogRelFunc
* Release logging. Prepends the given log message with the function name
* followed by a semicolon and space.
*/
#ifdef LOG_USE_C99
# define LogRelFunc(a) \
_LogRelItLikely(RTLOGGRPFLAGS_LEVEL_1, LOG_GROUP, LOG_FN_FMT ": %M", LOG_FN_NAME, _LogRemoveParentheseis a )
#else
# define LogRelFunc(a) do { LogRel((LOG_FN_FMT ": ", LOG_FN_NAME)); LogRel(a); } while (0)
#endif
/** @def LogRelFlowFunc
* Release logging. Macro to log the execution flow inside C/C++ functions.
*
* Prepends the given log message with the function name followed by
* a semicolon and space.
*
* @param a Log message in format <tt>("string\n" [, args])</tt>.
*/
#ifdef LOG_USE_C99
# define LogRelFlowFunc(a) _LogRelIt(RTLOGGRPFLAGS_FLOW, LOG_GROUP, LOG_FN_FMT ": %M", LOG_FN_NAME, _LogRemoveParentheseis a )
#else
# define LogRelFlowFunc(a) do { LogRelFlow((LOG_FN_FMT ": ", LOG_FN_NAME)); LogRelFlow(a); } while (0)
#endif
/** @def LogRelMaxFunc
* Release logging. Prepends the given log message with the function name
* followed by a semicolon and space.
*/
#ifdef LOG_USE_C99
# define LogRelMaxFunc(a_cMax, a) \
_LogRelMaxIt(a_cMax, RTLOGGRPFLAGS_LEVEL_1, LOG_GROUP, LOG_FN_FMT ": %M", LOG_FN_NAME, _LogRemoveParentheseis a )
#else
# define LogRelMaxFunc(a_cMax, a) \
do { LogRelMax(a_cMax, (LOG_FN_FMT ": ", LOG_FN_NAME)); LogRelMax(a_cMax, a); } while (0)
#endif
/** @def LogRelMaxFlowFunc
* Release logging. Macro to log the execution flow inside C/C++ functions.
*
* Prepends the given log message with the function name followed by
* a semicolon and space.
*
* @param a_cMax Max number of times this should hit the log.
* @param a Log message in format <tt>("string\n" [, args])</tt>.
*/
#ifdef LOG_USE_C99
# define LogRelMaxFlowFunc(a_cMax, a) \
_LogRelMaxIt(a_cMax, RTLOGGRPFLAGS_FLOW, LOG_GROUP, LOG_FN_FMT ": %M", LOG_FN_NAME, _LogRemoveParentheseis a )
#else
# define LogRelMaxFlowFunc(a_cMax, a) \
do { LogRelMaxFlow(a_cMax, (LOG_FN_FMT ": ", LOG_FN_NAME)); LogRelFlow(a_cMax, a); } while (0)
#endif
/** @} */
/** @name Release Logging macros prefixing the this pointer value and method name.
* @{ */
/** @def LogRelThisFunc
* The same as LogRelFunc but for class functions (methods): the resulting log
* line is additionally prepended with a hex value of |this| pointer.
*/
#ifdef LOG_USE_C99
# define LogRelThisFunc(a) \
_LogRelItLikely(RTLOGGRPFLAGS_LEVEL_1, LOG_GROUP, "{%p} " LOG_FN_FMT ": %M", this, LOG_FN_NAME, _LogRemoveParentheseis a )
#else
# define LogRelThisFunc(a) \
do { LogRel(("{%p} " LOG_FN_FMT ": ", this, LOG_FN_NAME)); LogRel(a); } while (0)
#endif
/** @def LogRelMaxThisFunc
* The same as LogRelFunc but for class functions (methods): the resulting log
* line is additionally prepended with a hex value of |this| pointer.
* @param a_cMax Max number of times this should hit the log.
* @param a Log message in format <tt>("string\n" [, args])</tt>.
*/
#ifdef LOG_USE_C99
# define LogRelMaxThisFunc(a_cMax, a) \
_LogRelMaxIt(a_cMax, RTLOGGRPFLAGS_LEVEL_1, LOG_GROUP, "{%p} " LOG_FN_FMT ": %M", this, LOG_FN_NAME, _LogRemoveParentheseis a )
#else
# define LogRelMaxThisFunc(a_cMax, a) \
do { LogRelMax(a_cMax, ("{%p} " LOG_FN_FMT ": ", this, LOG_FN_NAME)); LogRelMax(a_cMax, a); } while (0)
#endif
/** @def LogRelFlowThisFunc
* The same as LogRelFlowFunc but for class functions (methods): the resulting
* log line is additionally prepended with a hex value of |this| pointer.
*/
#ifdef LOG_USE_C99
# define LogRelFlowThisFunc(a) \
_LogRelIt(RTLOGGRPFLAGS_FLOW, LOG_GROUP, "{%p} " LOG_FN_FMT ": %M", this, LOG_FN_NAME, _LogRemoveParentheseis a )
#else
# define LogRelFlowThisFunc(a) do { LogRelFlow(("{%p} " LOG_FN_FMT ": ", this, LOG_FN_NAME)); LogRelFlow(a); } while (0)
#endif
/** Shortcut to |LogRelFlowFunc ("ENTER\n")|, marks the beginnig of the function. */
#define LogRelFlowFuncEnter() LogRelFlowFunc(("ENTER\n"))
/** Shortcut to |LogRelFlowFunc ("LEAVE\n")|, marks the end of the function. */
#define LogRelFlowFuncLeave() LogRelFlowFunc(("LEAVE\n"))
/** Shortcut to |LogRelFlowFunc ("LEAVE: %Rrc\n")|, marks the end of the function. */
#define LogRelFlowFuncLeaveRC(rc) LogRelFlowFunc(("LEAVE: %Rrc\n", (rc)))
/** Shortcut to |LogRelFlowThisFunc ("ENTER\n")|, marks the beginnig of the function. */
#define LogRelFlowThisFuncEnter() LogRelFlowThisFunc(("ENTER\n"))
/** Shortcut to |LogRelFlowThisFunc ("LEAVE\n")|, marks the end of the function. */
#define LogRelFlowThisFuncLeave() LogRelFlowThisFunc(("LEAVE\n"))
/** @} */
/**
* Sets the default release logger instance.
*
* @returns The old default instance.
* @param pLogger The new default release logger instance.
*/
RTDECL(PRTLOGGER) RTLogRelSetDefaultInstance(PRTLOGGER pLogger);
/**
* Gets the default release logger instance.
*
* @returns Pointer to default release logger instance if availble, otherwise NULL.
*/
RTDECL(PRTLOGGER) RTLogRelGetDefaultInstance(void);
/** @copydoc RTLogRelGetDefaultInstance */
typedef DECLCALLBACKTYPE(PRTLOGGER, FNLOGRELGETDEFAULTINSTANCE,(void));
/** Pointer to RTLogRelGetDefaultInstance. */
typedef FNLOGRELGETDEFAULTINSTANCE *PFNLOGRELGETDEFAULTINSTANCE;
/** "Weak symbol" emulation for RTLogRelGetDefaultInstance.
* @note This is first set when RTLogRelSetDefaultInstance is called. */
extern RTDATADECL(PFNLOGRELGETDEFAULTINSTANCE) g_pfnRTLogRelGetDefaultInstance;
/** "Weak symbol" wrapper for RTLogRelGetDefaultInstance. */
DECL_FORCE_INLINE(PRTLOGGER) RTLogRelGetDefaultInstanceWeak(void)
{
#if defined(IN_RING3) && (defined(IN_RT_STATIC) || defined(IPRT_NO_CRT))
if (g_pfnRTLogRelGetDefaultInstance)
return g_pfnRTLogRelGetDefaultInstance();
return NULL;
#else
return RTLogRelGetDefaultInstance();
#endif
}
/**
* Gets the default release logger instance.
*
* @returns Pointer to default release logger instance if availble, otherwise NULL.
* @param fFlagsAndGroup The flags in the lower 16 bits, the group number in
* the high 16 bits.
*/
RTDECL(PRTLOGGER) RTLogRelGetDefaultInstanceEx(uint32_t fFlagsAndGroup);
/** @copydoc RTLogRelGetDefaultInstanceEx */
typedef DECLCALLBACKTYPE(PRTLOGGER, FNLOGRELGETDEFAULTINSTANCEEX,(uint32_t fFlagsAndGroup));
/** Pointer to RTLogRelGetDefaultInstanceEx. */
typedef FNLOGRELGETDEFAULTINSTANCEEX *PFNLOGRELGETDEFAULTINSTANCEEX;
/** "Weak symbol" emulation for RTLogRelGetDefaultInstanceEx.
* @note This is first set when RTLogRelSetDefaultInstance is called. */
extern RTDATADECL(PFNLOGRELGETDEFAULTINSTANCEEX) g_pfnRTLogRelGetDefaultInstanceEx;
/** "Weak symbol" wrapper for RTLogRelGetDefaultInstanceEx. */
DECL_FORCE_INLINE(PRTLOGGER) RTLogRelGetDefaultInstanceExWeak(uint32_t fFlagsAndGroup)
{
#if defined(IN_RING3) && (defined(IN_RT_STATIC) || defined(IPRT_NO_CRT))
if (g_pfnRTLogRelGetDefaultInstanceEx)
return g_pfnRTLogRelGetDefaultInstanceEx(fFlagsAndGroup);
return NULL;
#else
return RTLogRelGetDefaultInstanceEx(fFlagsAndGroup);
#endif
}
/**
* Write to a logger instance, defaulting to the release one.
*
* This function will check whether the instance, group and flags makes up a
* logging kind which is currently enabled before writing anything to the log.
*
* @param pLogger Pointer to logger instance.
* @param fFlags The logging flags.
* @param iGroup The group.
* The value ~0U is reserved for compatibility with RTLogLogger[V] and is
* only for internal usage!
* @param pszFormat Format string.
* @param ... Format arguments.
* @remark This is a worker function for LogRelIt.
*/
RTDECL(void) RTLogRelLogger(PRTLOGGER pLogger, unsigned fFlags, unsigned iGroup,
const char *pszFormat, ...) RT_IPRT_FORMAT_ATTR(4, 5);
/**
* Write to a logger instance, defaulting to the release one.
*
* This function will check whether the instance, group and flags makes up a
* logging kind which is currently enabled before writing anything to the log.
*
* @param pLogger Pointer to logger instance. If NULL the default release instance is attempted.
* @param fFlags The logging flags.
* @param iGroup The group.
* The value ~0U is reserved for compatibility with RTLogLogger[V] and is
* only for internal usage!
* @param pszFormat Format string.
* @param args Format arguments.
*/
RTDECL(void) RTLogRelLoggerV(PRTLOGGER pLogger, unsigned fFlags, unsigned iGroup,
const char *pszFormat, va_list args) RT_IPRT_FORMAT_ATTR(4, 0);
/**
* printf like function for writing to the default release log.
*
* @param pszFormat Printf like format string.
* @param ... Optional arguments as specified in pszFormat.
*
* @remark The API doesn't support formatting of floating point numbers at the moment.
*/
RTDECL(void) RTLogRelPrintf(const char *pszFormat, ...) RT_IPRT_FORMAT_ATTR(1, 2);
/**
* vprintf like function for writing to the default release log.
*
* @param pszFormat Printf like format string.
* @param args Optional arguments as specified in pszFormat.
*
* @remark The API doesn't support formatting of floating point numbers at the moment.
*/
RTDECL(void) RTLogRelPrintfV(const char *pszFormat, va_list args) RT_IPRT_FORMAT_ATTR(1, 0);
/**
* Changes the buffering setting of the default release logger.
*
* This can be used for optimizing longish logging sequences.
*
* @returns The old state.
* @param fBuffered The new state.
*/
RTDECL(bool) RTLogRelSetBuffering(bool fBuffered);
/** @} */
/** @name COM port logging
* @{
*/
#ifdef DOXYGEN_RUNNING
# define LOG_TO_COM
# define LOG_NO_COM
#endif
/** @def LOG_TO_COM
* Redirects the normal logging macros to the serial versions.
*/
/** @def LOG_NO_COM
* Disables all LogCom* macros.
*/
/** @def LogCom
* Generic logging to serial port.
*/
#if defined(LOG_ENABLED) && !defined(LOG_NO_COM)
# define LogCom(a) RTLogComPrintf a
#else
# define LogCom(a) do { } while (0)
#endif
/** @def LogComFlow
* Logging to serial port of execution flow.
*/
#if defined(LOG_ENABLED) && defined(LOG_ENABLE_FLOW) && !defined(LOG_NO_COM)
# define LogComFlow(a) RTLogComPrintf a
#else
# define LogComFlow(a) do { } while (0)
#endif
#ifdef LOG_TO_COM
# undef Log
# define Log(a) LogCom(a)
# undef LogFlow
# define LogFlow(a) LogComFlow(a)
#endif
/** @} */
/** @name Backdoor Logging
* @{
*/
#ifdef DOXYGEN_RUNNING
# define LOG_TO_BACKDOOR
# define LOG_NO_BACKDOOR
#endif
/** @def LOG_TO_BACKDOOR
* Redirects the normal logging macros to the backdoor versions.
*/
/** @def LOG_NO_BACKDOOR
* Disables all LogBackdoor* macros.
*/
/** @def LogBackdoor
* Generic logging to the VBox backdoor via port I/O.
*/
#if defined(LOG_ENABLED) && !defined(LOG_NO_BACKDOOR)
# define LogBackdoor(a) RTLogBackdoorPrintf a
#else
# define LogBackdoor(a) do { } while (0)
#endif
/** @def LogBackdoorFlow
* Logging of execution flow messages to the backdoor I/O port.
*/
#if defined(LOG_ENABLED) && !defined(LOG_NO_BACKDOOR)
# define LogBackdoorFlow(a) RTLogBackdoorPrintf a
#else
# define LogBackdoorFlow(a) do { } while (0)
#endif
/** @def LogRelBackdoor
* Release logging to the VBox backdoor via port I/O.
*/
#if !defined(LOG_NO_BACKDOOR)
# define LogRelBackdoor(a) RTLogBackdoorPrintf a
#else
# define LogRelBackdoor(a) do { } while (0)
#endif
#ifdef LOG_TO_BACKDOOR
# undef Log
# define Log(a) LogBackdoor(a)
# undef LogFlow
# define LogFlow(a) LogBackdoorFlow(a)
# undef LogRel
# define LogRel(a) LogRelBackdoor(a)
# if defined(LOG_USE_C99)
# undef _LogIt
# define _LogIt(a_fFlags, a_iGroup, ...) LogBackdoor((__VA_ARGS__))
# endif
#endif
/** @} */
/**
* Gets the default logger instance, creating it if necessary.
*
* @returns Pointer to default logger instance if availble, otherwise NULL.
*/
RTDECL(PRTLOGGER) RTLogDefaultInstance(void);
/**
* Gets the logger instance if enabled, creating it if necessary.
*
* @returns Pointer to default logger instance, if group has the specified
* flags enabled. Otherwise NULL is returned.
* @param fFlagsAndGroup The flags in the lower 16 bits, the group number in
* the high 16 bits.
*/
RTDECL(PRTLOGGER) RTLogDefaultInstanceEx(uint32_t fFlagsAndGroup);
/**
* Gets the default logger instance (does not create one).
*
* @returns Pointer to default logger instance if availble, otherwise NULL.
*/
RTDECL(PRTLOGGER) RTLogGetDefaultInstance(void);
/** @copydoc RTLogGetDefaultInstance */
typedef DECLCALLBACKTYPE(PRTLOGGER, FNLOGGETDEFAULTINSTANCE,(void));
/** Pointer to RTLogGetDefaultInstance. */
typedef FNLOGGETDEFAULTINSTANCE *PFNLOGGETDEFAULTINSTANCE;
/** "Weak symbol" emulation for RTLogGetDefaultInstance.
* @note This is first set when RTLogSetDefaultInstance is called. */
extern RTDATADECL(PFNLOGGETDEFAULTINSTANCE) g_pfnRTLogGetDefaultInstance;
/** "Weak symbol" wrapper for RTLogGetDefaultInstance. */
DECL_FORCE_INLINE(PRTLOGGER) RTLogGetDefaultInstanceWeak(void)
{
#if defined(IN_RING3) && (defined(IN_RT_STATIC) || defined(IPRT_NO_CRT))
if (g_pfnRTLogGetDefaultInstance)
return g_pfnRTLogGetDefaultInstance();
return NULL;
#else
return RTLogGetDefaultInstance();
#endif
}
/**
* Gets the default logger instance if enabled (does not create one).
*
* @returns Pointer to default logger instance, if group has the specified
* flags enabled. Otherwise NULL is returned.
* @param fFlagsAndGroup The flags in the lower 16 bits, the group number in
* the high 16 bits.
*/
RTDECL(PRTLOGGER) RTLogGetDefaultInstanceEx(uint32_t fFlagsAndGroup);
/** @copydoc RTLogGetDefaultInstanceEx */
typedef DECLCALLBACKTYPE(PRTLOGGER, FNLOGGETDEFAULTINSTANCEEX,(uint32_t fFlagsAndGroup));
/** Pointer to RTLogGetDefaultInstanceEx. */
typedef FNLOGGETDEFAULTINSTANCEEX *PFNLOGGETDEFAULTINSTANCEEX;
/** "Weak symbol" emulation for RTLogGetDefaultInstanceEx.
* @note This is first set when RTLogSetDefaultInstance is called. */
extern RTDATADECL(PFNLOGGETDEFAULTINSTANCEEX) g_pfnRTLogGetDefaultInstanceEx;
/** "Weak symbol" wrapper for RTLogGetDefaultInstanceEx. */
DECL_FORCE_INLINE(PRTLOGGER) RTLogGetDefaultInstanceExWeak(uint32_t fFlagsAndGroup)
{
#if defined(IN_RING3) && (defined(IN_RT_STATIC) || defined(IPRT_NO_CRT))
if (g_pfnRTLogGetDefaultInstanceEx)
return g_pfnRTLogGetDefaultInstanceEx(fFlagsAndGroup);
return NULL;
#else
return RTLogGetDefaultInstanceEx(fFlagsAndGroup);
#endif
}
/**
* Sets the default logger instance.
*
* @returns The old default instance.
* @param pLogger The new default logger instance.
*/
RTDECL(PRTLOGGER) RTLogSetDefaultInstance(PRTLOGGER pLogger);
#ifdef IN_RING0
/**
* Changes the default logger instance for the current thread.
*
* @returns IPRT status code.
* @param pLogger The logger instance. Pass NULL for deregistration.
* @param uKey Associated key for cleanup purposes. If pLogger is NULL,
* all instances with this key will be deregistered. So in
* order to only deregister the instance associated with the
* current thread use 0.
*/
RTR0DECL(int) RTLogSetDefaultInstanceThread(PRTLOGGER pLogger, uintptr_t uKey);
#endif /* IN_RING0 */
/**
* Creates the default logger instance for IPRT users.
*
* Any user of the logging features will need to implement
* this or use the generic dummy.
*
* @returns Pointer to the logger instance.
*/
RTDECL(PRTLOGGER) RTLogDefaultInit(void);
/**
* This is the 2nd half of what RTLogGetDefaultInstanceEx() and
* RTLogRelGetDefaultInstanceEx() does.
*
* @returns If the group has the specified flags enabled @a pLogger will be
* returned returned. Otherwise NULL is returned.
* @param pLogger The logger. NULL is NULL.
* @param fFlagsAndGroup The flags in the lower 16 bits, the group number in
* the high 16 bits.
*/
RTDECL(PRTLOGGER) RTLogCheckGroupFlags(PRTLOGGER pLogger, uint32_t fFlagsAndGroup);
/**
* Create a logger instance.
*
* @returns iprt status code.
*
* @param ppLogger Where to store the logger instance.
* @param fFlags Logger instance flags, a combination of the
* RTLOGFLAGS_* values.
* @param pszGroupSettings The initial group settings.
* @param pszEnvVarBase Base name for the environment variables for
* this instance.
* @param cGroups Number of groups in the array.
* @param papszGroups Pointer to array of groups. This must stick
* around for the life of the logger instance.
* @param fDestFlags The destination flags. RTLOGDEST_FILE is ORed
* if pszFilenameFmt specified.
* @param pszFilenameFmt Log filename format string. Standard
* RTStrFormat().
* @param ... Format arguments.
*/
RTDECL(int) RTLogCreate(PRTLOGGER *ppLogger, uint64_t fFlags, const char *pszGroupSettings,
const char *pszEnvVarBase, unsigned cGroups, const char * const * papszGroups,
uint32_t fDestFlags, const char *pszFilenameFmt, ...) RT_IPRT_FORMAT_ATTR_MAYBE_NULL(8, 9);
/**
* Create a logger instance.
*
* @returns iprt status code.
*
* @param ppLogger Where to store the logger instance.
* @param pszEnvVarBase Base name for the environment variables for
* this instance (ring-3 only).
* @param fFlags Logger instance flags, a combination of the
* RTLOGFLAGS_* values.
* @param pszGroupSettings The initial group settings.
* @param cGroups Number of groups in the array.
* @param papszGroups Pointer to array of groups. This must stick
* around for the life of the logger instance.
* @param cMaxEntriesPerGroup The max number of entries per group. UINT32_MAX
* or zero for unlimited.
* @param cBufDescs Number of buffer descriptors that @a paBufDescs
* points to. Zero for defaults.
* @param paBufDescs Buffer descriptors, optional.
* @param fDestFlags The destination flags. RTLOGDEST_FILE is ORed
* if pszFilenameFmt specified.
* @param pfnPhase Callback function for starting logging and for
* ending or starting a new file for log history
* rotation. NULL is OK.
* @param cHistory Number of old log files to keep when performing
* log history rotation. 0 means no history.
* @param cbHistoryFileMax Maximum size of log file when performing
* history rotation. 0 means no size limit.
* @param cSecsHistoryTimeSlot Maximum time interval per log file when
* performing history rotation, in seconds.
* 0 means time limit.
* @param pOutputIf The optional file output interface, can be NULL which will
* make use of the default one.
* @param pvOutputIfUser The opaque user data to pass to the callbacks in the output interface.
* @param pErrInfo Where to return extended error information.
* Optional.
* @param pszFilenameFmt Log filename format string. Standard RTStrFormat().
* @param ... Format arguments.
*/
RTDECL(int) RTLogCreateEx(PRTLOGGER *ppLogger, const char *pszEnvVarBase, uint64_t fFlags, const char *pszGroupSettings,
unsigned cGroups, const char * const *papszGroups, uint32_t cMaxEntriesPerGroup,
uint32_t cBufDescs, PRTLOGBUFFERDESC paBufDescs, uint32_t fDestFlags,
PFNRTLOGPHASE pfnPhase, uint32_t cHistory, uint64_t cbHistoryFileMax, uint32_t cSecsHistoryTimeSlot,
PCRTLOGOUTPUTIF pOutputIf, void *pvOutputIfUser,
PRTERRINFO pErrInfo, const char *pszFilenameFmt, ...) RT_IPRT_FORMAT_ATTR_MAYBE_NULL(18, 19);
/**
* Create a logger instance.
*
* @returns iprt status code.
*
* @param ppLogger Where to store the logger instance.
* @param pszEnvVarBase Base name for the environment variables for
* this instance (ring-3 only).
* @param fFlags Logger instance flags, a combination of the
* RTLOGFLAGS_* values.
* @param pszGroupSettings The initial group settings.
* @param cGroups Number of groups in the array.
* @param papszGroups Pointer to array of groups. This must stick
* around for the life of the logger instance.
* @param cMaxEntriesPerGroup The max number of entries per group. UINT32_MAX
* or zero for unlimited.
* @param cBufDescs Number of buffer descriptors that @a paBufDescs
* points to. Zero for defaults.
* @param paBufDescs Buffer descriptors, optional.
* @param fDestFlags The destination flags. RTLOGDEST_FILE is ORed
* if pszFilenameFmt specified.
* @param pfnPhase Callback function for starting logging and for
* ending or starting a new file for log history
* rotation.
* @param cHistory Number of old log files to keep when performing
* log history rotation. 0 means no history.
* @param cbHistoryFileMax Maximum size of log file when performing
* history rotation. 0 means no size limit.
* @param cSecsHistoryTimeSlot Maximum time interval per log file when
* performing history rotation, in seconds.
* 0 means no time limit.
* @param pOutputIf The optional file output interface, can be NULL which will
* make use of the default one.
* @param pvOutputIfUser The opaque user data to pass to the callbacks in the output interface.
* @param pErrInfo Where to return extended error information.
* Optional.
* @param pszFilenameFmt Log filename format string. Standard
* RTStrFormat().
* @param va Format arguments.
*/
RTDECL(int) RTLogCreateExV(PRTLOGGER *ppLogger, const char *pszEnvVarBase, uint64_t fFlags, const char *pszGroupSettings,
uint32_t cGroups, const char * const *papszGroups, uint32_t cMaxEntriesPerGroup,
uint32_t cBufDescs, PRTLOGBUFFERDESC paBufDescs, uint32_t fDestFlags,
PFNRTLOGPHASE pfnPhase, uint32_t cHistory, uint64_t cbHistoryFileMax, uint32_t cSecsHistoryTimeSlot,
PCRTLOGOUTPUTIF pOutputIf, void *pvOutputIfUser,
PRTERRINFO pErrInfo, const char *pszFilenameFmt, va_list va) RT_IPRT_FORMAT_ATTR_MAYBE_NULL(18, 0);
/**
* Destroys a logger instance.
*
* The instance is flushed and all output destinations closed (where applicable).
*
* @returns iprt status code.
* @param pLogger The logger instance which close destroyed. NULL is fine.
*/
RTDECL(int) RTLogDestroy(PRTLOGGER pLogger);
/**
* Sets the custom prefix callback.
*
* @returns IPRT status code.
* @param pLogger The logger instance.
* @param pfnCallback The callback.
* @param pvUser The user argument for the callback.
* */
RTDECL(int) RTLogSetCustomPrefixCallback(PRTLOGGER pLogger, PFNRTLOGPREFIX pfnCallback, void *pvUser);
/**
* Sets the custom flush callback.
*
* This can be handy for special loggers like the per-EMT ones in ring-0,
* but also for implementing a log viewer in the debugger GUI.
*
* @returns IPRT status code.
* @retval VWRN_ALREADY_EXISTS if it was set to a different flusher.
* @param pLogger The logger instance.
* @param pfnFlush The flush callback.
*/
RTDECL(int) RTLogSetFlushCallback(PRTLOGGER pLogger, PFNRTLOGFLUSH pfnFlush);
/**
* Sets the thread name for a thread specific ring-0 logger.
*
* @returns IPRT status code.
* @param pLogger The logger. NULL is not allowed.
* @param pszNameFmt The format string for the thread name.
* @param ... Format arguments.
*/
RTR0DECL(int) RTLogSetR0ThreadNameF(PRTLOGGER pLogger, const char *pszNameFmt, ...) RT_IPRT_FORMAT_ATTR(2, 3);
/**
* Sets the thread name for a thread specific ring-0 logger.
*
* @returns IPRT status code.
* @param pLogger The logger. NULL is not allowed.
* @param pszNameFmt The format string for the thread name.
* @param va Format arguments.
*/
RTR0DECL(int) RTLogSetR0ThreadNameV(PRTLOGGER pLogger, const char *pszNameFmt, va_list va) RT_IPRT_FORMAT_ATTR(2, 0);
/**
* Sets the program start time for a thread specific ring-0 logger.
*
* @returns IPRT status code.
* @param pLogger The logger. NULL is not allowed.
* @param nsStart The RTTimeNanoTS() value at program start.
*/
RTR0DECL(int) RTLogSetR0ProgramStart(PRTLOGGER pLogger, uint64_t nsStart);
/**
* Get the current log group settings as a string.
*
* @returns VINF_SUCCESS or VERR_BUFFER_OVERFLOW.
* @param pLogger Logger instance (NULL for default logger).
* @param pszBuf The output buffer.
* @param cchBuf The size of the output buffer. Must be greater than
* zero.
*/
RTDECL(int) RTLogQueryGroupSettings(PRTLOGGER pLogger, char *pszBuf, size_t cchBuf);
/**
* Updates the group settings for the logger instance using the specified
* specification string.
*
* @returns iprt status code.
* Failures can safely be ignored.
* @param pLogger Logger instance (NULL for default logger).
* @param pszValue Value to parse.
*/
RTDECL(int) RTLogGroupSettings(PRTLOGGER pLogger, const char *pszValue);
/**
* Sets the max number of entries per group.
*
* @returns Old restriction.
*
* @param pLogger The logger instance (NULL is an alias for the
* default logger).
* @param cMaxEntriesPerGroup The max number of entries per group.
*
* @remarks Lowering the limit of an active logger may quietly mute groups.
* Raising it may reactive already muted groups.
*/
RTDECL(uint32_t) RTLogSetGroupLimit(PRTLOGGER pLogger, uint32_t cMaxEntriesPerGroup);
/**
* Gets the current flag settings for the given logger.
*
* @returns Logger flags, UINT64_MAX if no logger.
* @param pLogger Logger instance (NULL for default logger).
*/
RTDECL(uint64_t) RTLogGetFlags(PRTLOGGER pLogger);
/**
* Modifies the flag settings for the given logger.
*
* @returns IPRT status code. Returns VINF_LOG_NO_LOGGER if no default logger
* and @a pLogger is NULL.
* @param pLogger Logger instance (NULL for default logger).
* @param fSet Mask of flags to set (OR).
* @param fClear Mask of flags to clear (NAND). This is allowed to
* include invalid flags - e.g. UINT64_MAX is okay.
*/
RTDECL(int) RTLogChangeFlags(PRTLOGGER pLogger, uint64_t fSet, uint64_t fClear);
/**
* Updates the flags for the logger instance using the specified
* specification string.
*
* @returns iprt status code.
* Failures can safely be ignored.
* @param pLogger Logger instance (NULL for default logger).
* @param pszValue Value to parse.
*/
RTDECL(int) RTLogFlags(PRTLOGGER pLogger, const char *pszValue);
/**
* Changes the buffering setting of the specified logger.
*
* This can be used for optimizing longish logging sequences.
*
* @returns The old state.
* @param pLogger The logger instance (NULL is an alias for the default
* logger).
* @param fBuffered The new state.
*/
RTDECL(bool) RTLogSetBuffering(PRTLOGGER pLogger, bool fBuffered);
/**
* Get the current log flags as a string.
*
* @returns VINF_SUCCESS or VERR_BUFFER_OVERFLOW.
* @param pLogger Logger instance (NULL for default logger).
* @param pszBuf The output buffer.
* @param cchBuf The size of the output buffer. Must be greater than
* zero.
*/
RTDECL(int) RTLogQueryFlags(PRTLOGGER pLogger, char *pszBuf, size_t cchBuf);
/**
* Gets the current destinations flags for the given logger.
*
* @returns Logger destination flags, UINT32_MAX if no logger.
* @param pLogger Logger instance (NULL for default logger).
*/
RTDECL(uint32_t) RTLogGetDestinations(PRTLOGGER pLogger);
/**
* Modifies the log destinations settings for the given logger.
*
* This is only suitable for simple destination settings that doesn't take
* additional arguments, like RTLOGDEST_FILE.
*
* @returns IPRT status code. Returns VINF_LOG_NO_LOGGER if no default logger
* and @a pLogger is NULL.
* @param pLogger Logger instance (NULL for default logger).
* @param fSet Mask of destinations to set (OR).
* @param fClear Mask of destinations to clear (NAND).
*/
RTDECL(int) RTLogChangeDestinations(PRTLOGGER pLogger, uint32_t fSet, uint32_t fClear);
/**
* Updates the logger destination using the specified string.
*
* @returns VINF_SUCCESS or VERR_BUFFER_OVERFLOW.
* @param pLogger Logger instance (NULL for default logger).
* @param pszValue The value to parse.
*/
RTDECL(int) RTLogDestinations(PRTLOGGER pLogger, char const *pszValue);
/**
* Clear the file delay flag if set, opening the destination and flushing.
*
* @returns IPRT status code.
* @param pLogger Logger instance (NULL for default logger).
* @param pErrInfo Where to return extended error info. Optional.
*/
RTDECL(int) RTLogClearFileDelayFlag(PRTLOGGER pLogger, PRTERRINFO pErrInfo);
/**
* Get the current log destinations as a string.
*
* @returns VINF_SUCCESS or VERR_BUFFER_OVERFLOW.
* @param pLogger Logger instance (NULL for default logger).
* @param pszBuf The output buffer.
* @param cchBuf The size of the output buffer. Must be greater than 0.
*/
RTDECL(int) RTLogQueryDestinations(PRTLOGGER pLogger, char *pszBuf, size_t cchBuf);
/**
* Performs a bulk update of logger flags and group flags.
*
* This is for instanced used for copying settings from ring-3 to ring-0
* loggers.
*
* @returns IPRT status code.
* @param pLogger The logger instance (NULL for default logger).
* @param fFlags The new logger flags.
* @param uGroupCrc32 The CRC32 of the group name strings.
* @param cGroups Number of groups.
* @param pafGroups Array of group flags.
* @sa RTLogQueryBulk
*/
RTDECL(int) RTLogBulkUpdate(PRTLOGGER pLogger, uint64_t fFlags, uint32_t uGroupCrc32, uint32_t cGroups, uint32_t const *pafGroups);
/**
* Queries data for a bulk update of logger flags and group flags.
*
* This is for instanced used for copying settings from ring-3 to ring-0
* loggers.
*
* @returns IPRT status code.
* @retval VERR_BUFFER_OVERFLOW if pafGroups is too small, @a pcGroups will be
* set to the actual number of groups.
* @param pLogger The logger instance (NULL for default logger).
* @param pfFlags Where to return the logger flags.
* @param puGroupCrc32 Where to return the CRC32 of the group names.
* @param pcGroups Input: Size of the @a pafGroups allocation.
* Output: Actual number of groups returned.
* @param pafGroups Where to return the flags for each group.
* @sa RTLogBulkUpdate
*/
RTDECL(int) RTLogQueryBulk(PRTLOGGER pLogger, uint64_t *pfFlags, uint32_t *puGroupCrc32, uint32_t *pcGroups, uint32_t *pafGroups);
/**
* Write/copy bulk log data from another logger.
*
* This is used for transferring stuff from the ring-0 loggers and into the
* ring-3 one. The text goes in as-is w/o any processing (i.e. prefixing or
* newline fun).
*
* @returns IRPT status code.
* @param pLogger The logger instance (NULL for default logger).
* @param pszBefore Text to log before the bulk text. Optional.
* @param pch Pointer to the block of bulk log text to write.
* @param cch Size of the block of bulk log text to write.
* @param pszAfter Text to log after the bulk text. Optional.
*/
RTDECL(int) RTLogBulkWrite(PRTLOGGER pLogger, const char *pszBefore, const char *pch, size_t cch, const char *pszAfter);
/**
* Write/copy bulk log data from a nested VM logger.
*
* This is used for
*
* @returns IRPT status code.
* @param pLogger The logger instance (NULL for default logger).
* @param pch Pointer to the block of bulk log text to write.
* @param cch Size of the block of bulk log text to write.
* @param pszInfix String to put after the line prefixes and the
* line content.
*/
RTDECL(int) RTLogBulkNestedWrite(PRTLOGGER pLogger, const char *pch, size_t cch, const char *pszInfix);
/**
* Flushes the specified logger.
*
* @returns IRPT status code.
* @param pLogger The logger instance to flush.
* If NULL the default instance is used. The default instance
* will not be initialized by this call.
*/
RTDECL(int) RTLogFlush(PRTLOGGER pLogger);
/**
* Write to a logger instance.
*
* @param pLogger Pointer to logger instance.
* @param pvCallerRet Ignored.
* @param pszFormat Format string.
* @param ... Format arguments.
*/
RTDECL(void) RTLogLogger(PRTLOGGER pLogger, void *pvCallerRet, const char *pszFormat, ...) RT_IPRT_FORMAT_ATTR(3, 4);
/**
* Write to a logger instance, weak version.
*
* @param pLogger Pointer to logger instance.
* @param pvCallerRet Ignored.
* @param pszFormat Format string.
* @param ... Format arguments.
*/
#if defined(IN_RING3) && (defined(IN_RT_STATIC) || defined(IPRT_NO_CRT))
RTDECL(void) RTLogLoggerWeak(PRTLOGGER pLogger, void *pvCallerRet, const char *pszFormat, ...) RT_IPRT_FORMAT_ATTR(3, 4);
#else /* Cannot use a DECL_FORCE_INLINE because older GCC versions doesn't support inlining va_start. */
# undef RTLogLoggerWeak /* in case of mangling */
# define RTLogLoggerWeak RTLogLogger
#endif
/**
* Write to a logger instance.
*
* @param pLogger Pointer to logger instance.
* @param pszFormat Format string.
* @param args Format arguments.
*/
RTDECL(void) RTLogLoggerV(PRTLOGGER pLogger, const char *pszFormat, va_list args) RT_IPRT_FORMAT_ATTR(2, 0);
/**
* Write to a logger instance.
*
* This function will check whether the instance, group and flags makes up a
* logging kind which is currently enabled before writing anything to the log.
*
* @param pLogger Pointer to logger instance. If NULL the default logger instance will be attempted.
* @param fFlags The logging flags.
* @param iGroup The group.
* The value ~0U is reserved for compatibility with RTLogLogger[V] and is
* only for internal usage!
* @param pszFormat Format string.
* @param ... Format arguments.
* @remark This is a worker function of LogIt.
*/
RTDECL(void) RTLogLoggerEx(PRTLOGGER pLogger, unsigned fFlags, unsigned iGroup,
const char *pszFormat, ...) RT_IPRT_FORMAT_ATTR(4, 5);
/**
* Write to a logger instance, weak version.
*
* This function will check whether the instance, group and flags makes up a
* logging kind which is currently enabled before writing anything to the log.
*
* @param pLogger Pointer to logger instance. If NULL the default logger instance will be attempted.
* @param fFlags The logging flags.
* @param iGroup The group.
* The value ~0U is reserved for compatibility with RTLogLogger[V] and is
* only for internal usage!
* @param pszFormat Format string.
* @param ... Format arguments.
* @remark This is a worker function of LogIt.
*/
#if defined(IN_RING3) && (defined(IN_RT_STATIC) || defined(IPRT_NO_CRT))
RTDECL(void) RTLogLoggerExWeak(PRTLOGGER pLogger, unsigned fFlags, unsigned iGroup,
const char *pszFormat, ...) RT_IPRT_FORMAT_ATTR(4, 5);
#else /* Cannot use a DECL_FORCE_INLINE because older GCC versions doesn't support inlining va_start. */
# undef RTLogLoggerExWeak /* in case of mangling */
# define RTLogLoggerExWeak RTLogLoggerEx
#endif
/**
* Write to a logger instance.
*
* This function will check whether the instance, group and flags makes up a
* logging kind which is currently enabled before writing anything to the log.
*
* @returns VINF_SUCCESS, VINF_LOG_NO_LOGGER, VINF_LOG_DISABLED, or IPRT error
* status.
* @param pLogger Pointer to logger instance. If NULL the default logger instance will be attempted.
* @param fFlags The logging flags.
* @param iGroup The group.
* The value ~0U is reserved for compatibility with RTLogLogger[V] and is
* only for internal usage!
* @param pszFormat Format string.
* @param args Format arguments.
*/
RTDECL(int) RTLogLoggerExV(PRTLOGGER pLogger, unsigned fFlags, unsigned iGroup,
const char *pszFormat, va_list args) RT_IPRT_FORMAT_ATTR(4, 0);
/** @copydoc RTLogLoggerExV */
typedef DECLCALLBACKTYPE(int, FNRTLOGLOGGEREXV,(PRTLOGGER pLogger, unsigned fFlags, unsigned iGroup,
const char *pszFormat, va_list args)) RT_IPRT_FORMAT_ATTR(4, 0);
/** Pointer to RTLogLoggerExV. */
typedef FNRTLOGLOGGEREXV *PFNRTLOGLOGGEREXV;
/** "Weak symbol" emulation for RTLogLoggerExV.
* @note This is first set when RTLogCreateEx or RTLogCreate is called. */
extern RTDATADECL(PFNRTLOGLOGGEREXV) g_pfnRTLogLoggerExV;
/** "Weak symbol" wrapper for RTLogLoggerExV. */
DECL_FORCE_INLINE(int) RTLogLoggerExVWeak(PRTLOGGER pLogger, unsigned fFlags, unsigned iGroup,
const char *pszFormat, va_list args) /* RT_IPRT_FORMAT_ATTR(4, 0) */
{
#if defined(IN_RING3) && (defined(IN_RT_STATIC) || defined(IPRT_NO_CRT))
if (g_pfnRTLogLoggerExV)
return g_pfnRTLogLoggerExV(pLogger, fFlags, iGroup, pszFormat, args);
return 22301; /* VINF_LOG_DISABLED, don't want err.h dependency here. */
#else
return RTLogLoggerExV(pLogger, fFlags, iGroup, pszFormat, args);
#endif
}
/**
* printf like function for writing to the default log.
*
* @param pszFormat Printf like format string.
* @param ... Optional arguments as specified in pszFormat.
*
* @remark The API doesn't support formatting of floating point numbers at the moment.
*/
RTDECL(void) RTLogPrintf(const char *pszFormat, ...) RT_IPRT_FORMAT_ATTR(1, 2);
/**
* vprintf like function for writing to the default log.
*
* @param pszFormat Printf like format string.
* @param va Optional arguments as specified in pszFormat.
*
* @remark The API doesn't support formatting of floating point numbers at the moment.
*/
RTDECL(void) RTLogPrintfV(const char *pszFormat, va_list va) RT_IPRT_FORMAT_ATTR(1, 0);
/**
* Dumper vprintf-like function outputting to a logger.
*
* @param pvUser Pointer to the logger instance to use, NULL for default
* instance.
* @param pszFormat Format string.
* @param va Format arguments.
*/
RTDECL(void) RTLogDumpPrintfV(void *pvUser, const char *pszFormat, va_list va) RT_IPRT_FORMAT_ATTR(2, 0);
/**
* Used for logging assertions, debug and release log as appropriate.
*
* Implies flushing.
*
* @param pszFormat Format string.
* @param ... Format arguments.
*/
typedef DECLCALLBACKTYPE(void, FNRTLOGASSERTION,(const char *pszFormat, ...)) RT_IPRT_FORMAT_ATTR(1, 2);
/** Pointer to an assertion logger, ellipsis variant. */
typedef FNRTLOGASSERTION *PFNRTLOGASSERTION;
/**
* Used for logging assertions, debug and release log as appropriate.
*
* Implies flushing.
*
* @param pszFormat Format string.
* @param va Format arguments.
*/
typedef DECLCALLBACKTYPE(void, FNRTLOGASSERTIONV,(const char *pszFormat, va_list va)) RT_IPRT_FORMAT_ATTR(1, 0);
/** Pointer to an assertion logger, va_list variant. */
typedef FNRTLOGASSERTIONV *PFNRTLOGASSERTIONV;
/** @copydoc FNRTLOGASSERTION */
RTDECL(void) RTLogAssert(const char *pszFormat, ...) RT_IPRT_FORMAT_ATTR(1, 2);
/** @copydoc FNRTLOGASSERTIONV */
RTDECL(void) RTLogAssertV(const char *pszFormat, va_list va) RT_IPRT_FORMAT_ATTR(1, 0);
/** "Weak symbol" emulation for RTLogAssert. */
extern RTDATADECL(PFNRTLOGASSERTION) g_pfnRTLogAssert;
/** "Weak symbol" emulation for RTLogAssertV. */
extern RTDATADECL(PFNRTLOGASSERTIONV) g_pfnRTLogAssertV;
#ifndef DECLARED_FNRTSTROUTPUT /* duplicated in iprt/string.h & iprt/errcore.h */
#define DECLARED_FNRTSTROUTPUT
/**
* Output callback.
*
* @returns number of bytes written.
* @param pvArg User argument.
* @param pachChars Pointer to an array of utf-8 characters.
* @param cbChars Number of bytes in the character array pointed to by pachChars.
*/
typedef DECLCALLBACKTYPE(size_t, FNRTSTROUTPUT,(void *pvArg, const char *pachChars, size_t cbChars));
/** Pointer to callback function. */
typedef FNRTSTROUTPUT *PFNRTSTROUTPUT;
#endif
/**
* Partial vsprintf worker implementation.
*
* @returns number of bytes formatted.
* @param pfnOutput Output worker.
* Called in two ways. Normally with a string an it's length.
* For termination, it's called with NULL for string, 0 for length.
* @param pvArg Argument to output worker.
* @param pszFormat Format string.
* @param args Argument list.
*/
RTDECL(size_t) RTLogFormatV(PFNRTSTROUTPUT pfnOutput, void *pvArg, const char *pszFormat, va_list args) RT_IPRT_FORMAT_ATTR(3, 0);
/**
* Write log buffer to COM port.
*
* @param pach Pointer to the buffer to write.
* @param cb Number of bytes to write.
*/
RTDECL(void) RTLogWriteCom(const char *pach, size_t cb);
/**
* Prints a formatted string to the serial port used for logging.
*
* @returns Number of bytes written.
* @param pszFormat Format string.
* @param ... Optional arguments specified in the format string.
*/
RTDECL(size_t) RTLogComPrintf(const char *pszFormat, ...) RT_IPRT_FORMAT_ATTR(1, 2);
/**
* Prints a formatted string to the serial port used for logging.
*
* @returns Number of bytes written.
* @param pszFormat Format string.
* @param args Optional arguments specified in the format string.
*/
RTDECL(size_t) RTLogComPrintfV(const char *pszFormat, va_list args) RT_IPRT_FORMAT_ATTR(1, 0);
/**
* Write log buffer to a debugger (RTLOGDEST_DEBUGGER).
*
* @param pach What to write.
* @param cb How much to write.
* @remark When linking statically, this function can be replaced by defining your own.
*/
RTDECL(void) RTLogWriteDebugger(const char *pach, size_t cb);
/**
* Write log buffer to a user defined output stream (RTLOGDEST_USER).
*
* @param pach What to write.
* @param cb How much to write.
* @remark When linking statically, this function can be replaced by defining your own.
*/
RTDECL(void) RTLogWriteUser(const char *pach, size_t cb);
/**
* Write log buffer to a parent VMM (hypervisor).
*
* @param pach What to write.
* @param cb How much to write.
* @param fRelease Set if targeting the release log, clear if debug log.
*
* @note Currently only available on AMD64 and x86.
*/
RTDECL(void) RTLogWriteVmm(const char *pach, size_t cb, bool fRelease);
/**
* Write log buffer to stdout (RTLOGDEST_STDOUT).
*
* @param pach What to write.
* @param cb How much to write.
* @remark When linking statically, this function can be replaced by defining your own.
*/
RTDECL(void) RTLogWriteStdOut(const char *pach, size_t cb);
/**
* Write log buffer to stdout (RTLOGDEST_STDERR).
*
* @param pach What to write.
* @param cb How much to write.
* @remark When linking statically, this function can be replaced by defining your own.
*/
RTDECL(void) RTLogWriteStdErr(const char *pach, size_t cb);
#ifdef VBOX
/**
* Prints a formatted string to the backdoor port.
*
* @returns Number of bytes written.
* @param pszFormat Format string.
* @param ... Optional arguments specified in the format string.
*/
RTDECL(size_t) RTLogBackdoorPrintf(const char *pszFormat, ...) RT_IPRT_FORMAT_ATTR(1, 2);
/**
* Prints a formatted string to the backdoor port.
*
* @returns Number of bytes written.
* @param pszFormat Format string.
* @param args Optional arguments specified in the format string.
*/
RTDECL(size_t) RTLogBackdoorPrintfV(const char *pszFormat, va_list args) RT_IPRT_FORMAT_ATTR(1, 0);
#endif /* VBOX */
RT_C_DECLS_END
/** @} */
#endif /* !IPRT_INCLUDED_log_h */
|