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
|
/** @file
* IPRT - Logging.
*/
/*
* Copyright (C) 2006-2007 Sun Microsystems, Inc.
*
* This file is part of VirtualBox Open Source Edition (OSE), as
* available from http://www.virtualbox.org. This file is free software;
* you can redistribute it and/or modify it under the terms of the GNU
* General Public License (GPL) as published by the Free Software
* Foundation, in version 2 as it comes in the "COPYING" file of the
* VirtualBox OSE distribution. VirtualBox OSE is distributed in the
* hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
*
* The contents of this file may alternatively be used under the terms
* of the Common Development and Distribution License Version 1.0
* (CDDL) only, as it comes in the "COPYING.CDDL" file of the
* VirtualBox OSE 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.
*
* Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa
* Clara, CA 95054 USA or visit http://www.sun.com if you need
* additional information or have any questions.
*/
#ifndef ___iprt_log_h
#define ___iprt_log_h
#include <iprt/cdefs.h>
#include <iprt/types.h>
#include <iprt/stdarg.h>
__BEGIN_DECLS
/** @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_DIR,
RTLOGGROUP_FILE,
RTLOGGROUP_FS,
RTLOGGROUP_LDR,
RTLOGGROUP_PATH,
RTLOGGROUP_PROCESS,
RTLOGGROUP_THREAD,
RTLOGGROUP_TIME,
RTLOGGROUP_TIMER,
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
*/
#define RT_LOGGROUP_NAMES \
"DEFAULT", \
"RT_DIR", \
"RT_FILE", \
"RT_FS", \
"RT_LDR", \
"RT_PATH", \
"RT_PROCESS", \
"RT_THREAD", \
"RT_TIME", \
"RT_TIMER", \
"RT_10", \
"RT_11", \
"RT_12", \
"RT_13", \
"RT_14", \
"RT_15", \
"RT_16", \
"RT_17", \
"RT_18", \
"RT_19", \
"RT_20", \
"RT_21", \
"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_INSTANCE
* Active logging instance.
*/
#ifndef LOG_INSTANCE
# define LOG_INSTANCE NULL
#endif
/** @def LOG_REL_INSTANCE
* Active release logging instance.
*/
#ifndef LOG_REL_INSTANCE
# define LOG_REL_INSTANCE NULL
#endif
/** @def LOG_FN_FMT
* You can use this to specify you desired way of printing __PRETTY_FUNCTION__
* if you dislike the default one.
*/
#ifndef LOG_FN_FMT
# define LOG_FN_FMT "%Rfn"
#endif
/** Logger structure. */
#ifdef IN_GC
typedef struct RTLOGGERGC RTLOGGER;
#else
typedef struct RTLOGGER RTLOGGER;
#endif
/** Pointer to logger structure. */
typedef RTLOGGER *PRTLOGGER;
/** Pointer to const logger structure. */
typedef const RTLOGGER *PCRTLOGGER;
/** Guest context logger structure. */
typedef struct RTLOGGERGC RTLOGGERGC;
/** Pointer to guest context logger structure. */
typedef RTLOGGERGC *PRTLOGGERGC;
/** Pointer to const guest context logger structure. */
typedef const RTLOGGERGC *PCRTLOGGERGC;
/**
* Logger function.
*
* @param pszFormat Format string.
* @param ... Optional arguments as specified in the format string.
*/
typedef DECLCALLBACK(void) FNRTLOGGER(const char *pszFormat, ...);
/** Pointer to logger function. */
typedef FNRTLOGGER *PFNRTLOGGER;
/**
* Flush function.
*
* @param pLogger Pointer to the logger instance which is to be flushed.
*/
typedef DECLCALLBACK(void) FNRTLOGFLUSH(PRTLOGGER pLogger);
/** Pointer to logger function. */
typedef FNRTLOGFLUSH *PFNRTLOGFLUSH;
/**
* Flush function.
*
* @param pLogger Pointer to the logger instance which is to be flushed.
*/
typedef DECLCALLBACK(void) FNRTLOGFLUSHGC(PRTLOGGERGC pLogger);
/** Pointer to logger function. */
typedef GCPTRTYPE(FNRTLOGFLUSHGC *) PFNRTLOGFLUSHGC;
/**
* Logger instance structure for GC.
*/
struct RTLOGGERGC
{
/** Pointer to temporary scratch buffer.
* This is used to format the log messages. */
char achScratch[16384];
/** Current scratch buffer position. */
RTUINT offScratch;
/** This is set if a prefix is pending. */
RTUINT fPendingPrefix;
/** Pointer to the logger function.
* This is actually pointer to a wrapper 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 C++. */
GCPTRTYPE(PFNRTLOGGER) pfnLogger;
/** Pointer to the flush function. */
PFNRTLOGFLUSHGC pfnFlush;
/** Magic number (RTLOGGERGC_MAGIC). */
uint32_t u32Magic;
/** Logger instance flags - RTLOGFLAGS. */
RTUINT fFlags;
/** Number of groups in the afGroups member. */
RTUINT cGroups;
/** Group flags array - RTLOGGRPFLAGS.
* This member have variable length and may extend way beyond
* the declared size of 1 entry. */
RTUINT afGroups[1];
};
/** RTLOGGERGC::u32Magic value. (John Rogers Searle) */
#define RTLOGGERGC_MAGIC 0x19320731
#ifndef IN_GC
/**
* Logger instance structure.
*/
struct RTLOGGER
{
/** Pointer to temporary scratch buffer.
* This is used to format the log messages. */
char achScratch[16384];
/** Current scratch buffer position. */
RTUINT offScratch;
/** This is set if a prefix is pending. */
RTUINT fPendingPrefix;
/** Pointer to the logger function.
* This is actually pointer to a wrapper 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 C++.
* (The memory is (not R0) allocated using RTMemExecAlloc().) */
PFNRTLOGGER pfnLogger;
/** Pointer to the flush function. */
PFNRTLOGFLUSH pfnFlush;
/** Mutex. */
RTSEMFASTMUTEX MutexSem;
/** Magic number. */
uint32_t u32Magic;
/** Logger instance flags - RTLOGFLAGS. */
RTUINT fFlags;
/** Destination flags - RTLOGDEST. */
RTUINT fDestFlags;
/** Handle to log file (if open). */
RTFILE File;
/** Pointer to filename.
* (The memory is allocated in the smae block as RTLOGGER.) */
char *pszFilename;
/** Pointer to the group name array.
* (The data is readonly and provided by the user.) */
const char * const *papszGroups;
/** The max number of groups that there is room for in afGroups and papszGroups.
* Used by RTLogCopyGroupAndFlags(). */
RTUINT cMaxGroups;
/** Number of groups in the afGroups and papszGroups members. */
RTUINT cGroups;
/** Group flags array - RTLOGGRPFLAGS.
* This member have variable length and may extend way beyond
* the declared size of 1 entry. */
RTUINT afGroups[1];
};
/** RTLOGGER::u32Magic value. (Avram Noam Chomsky) */
#define RTLOGGER_MAGIC 0x19281207
#endif
/**
* 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,
/** Show relative timestamps with PREFIX_TSC and PREFIX_TS */
RTLOGFLAGS_REL_TS = 0x00000020,
/** Show decimal timestamps with PREFIX_TSC and PREFIX_TS */
RTLOGFLAGS_DECIMAL_TS = 0x00000040,
/** 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 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 = 0x7cff8000
} RTLOGFLAGS;
/**
* Logger per group flags.
*/
typedef enum RTLOGGRPFLAGS
{
/** Enabled. */
RTLOGGRPFLAGS_ENABLED = 0x00000001,
/** Level 1 logging. */
RTLOGGRPFLAGS_LEVEL_1 = 0x00000002,
/** Level 2 logging. */
RTLOGGRPFLAGS_LEVEL_2 = 0x00000004,
/** Level 3 logging. */
RTLOGGRPFLAGS_LEVEL_3 = 0x00000008,
/** Level 4 logging. */
RTLOGGRPFLAGS_LEVEL_4 = 0x00000010,
/** Level 5 logging. */
RTLOGGRPFLAGS_LEVEL_5 = 0x00000020,
/** Level 6 logging. */
RTLOGGRPFLAGS_LEVEL_6 = 0x00000040,
/** Flow logging. */
RTLOGGRPFLAGS_FLOW = 0x00000080,
/** Lelik logging. */
RTLOGGRPFLAGS_LELIK = 0x00000100,
/** Michael logging. */
RTLOGGRPFLAGS_MICHAEL = 0x00000200,
/** dmik logging. */
RTLOGGRPFLAGS_DMIK = 0x00000400,
/** sunlover logging. */
RTLOGGRPFLAGS_SUNLOVER = 0x00000800,
/** Achim logging. */
RTLOGGRPFLAGS_ACHIM = 0x00001000,
/** Sander logging. */
RTLOGGRPFLAGS_SANDER = 0x00002000,
/** Klaus logging. */
RTLOGGRPFLAGS_KLAUS = 0x00004000,
/** Frank logging. */
RTLOGGRPFLAGS_FRANK = 0x00008000,
/** bird logging. */
RTLOGGRPFLAGS_BIRD = 0x00010000,
/** NoName logging. */
RTLOGGRPFLAGS_NONAME = 0x00020000
} RTLOGGRPFLAGS;
/**
* Logger destination type.
*/
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,
/** 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;
RTDECL(void) RTLogPrintfEx(void *pvInstance, unsigned fFlags, unsigned iGroup, const char *pszFormat, ...);
/*
* Determin 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
# if defined(RT_ARCH_AMD64)
# define LOG_USE_C99
# endif
#endif
/** @def LogIt
* Write to specific logger if group enabled.
*/
#ifdef LOG_ENABLED
# if defined(LOG_USE_C99)
# define _LogRemoveParentheseis(...) __VA_ARGS__
# define _LogIt(pvInst, fFlags, iGroup, ...) RTLogLoggerEx((PRTLOGGER)pvInst, fFlags, iGroup, __VA_ARGS__)
# define LogIt(pvInst, fFlags, iGroup, fmtargs) _LogIt(pvInst, fFlags, iGroup, _LogRemoveParentheseis fmtargs)
# define _LogItAlways(pvInst, fFlags, iGroup, ...) RTLogLoggerEx((PRTLOGGER)pvInst, fFlags, ~0U, __VA_ARGS__)
# define LogItAlways(pvInst, fFlags, iGroup, fmtargs) _LogItAlways(pvInst, fFlags, iGroup, _LogRemoveParentheseis fmtargs)
/** @todo invent a flag or something for skipping the group check so we can pass iGroup. LogItAlways. */
# else
# define LogIt(pvInst, fFlags, iGroup, fmtargs) \
do \
{ \
register PRTLOGGER LogIt_pLogger = (PRTLOGGER)(pvInst) ? (PRTLOGGER)(pvInst) : RTLogDefaultInstance(); \
if (LogIt_pLogger) \
{ \
register unsigned LogIt_fFlags = LogIt_pLogger->afGroups[(unsigned)(iGroup) < LogIt_pLogger->cGroups ? (unsigned)(iGroup) : 0]; \
if ((LogIt_fFlags & ((fFlags) | RTLOGGRPFLAGS_ENABLED)) == ((fFlags) | RTLOGGRPFLAGS_ENABLED)) \
LogIt_pLogger->pfnLogger fmtargs; \
} \
} while (0)
# define LogItAlways(pvInst, fFlags, iGroup, fmtargs) \
do \
{ \
register PRTLOGGER LogIt_pLogger = (PRTLOGGER)(pvInst) ? (PRTLOGGER)(pvInst) : RTLogDefaultInstance(); \
if (LogIt_pLogger) \
LogIt_pLogger->pfnLogger fmtargs; \
} while (0)
# endif
#else
# define LogIt(pvInst, fFlags, iGroup, fmtargs) do { } while (0)
# define LogItAlways(pvInst, fFlags, iGroup, fmtargs) do { } while (0)
# if defined(LOG_USE_C99)
# define _LogRemoveParentheseis(...) __VA_ARGS__
# define _LogIt(pvInst, fFlags, iGroup, ...) do { } while (0)
# define _LogItAlways(pvInst, fFlags, iGroup, ...) do { } while (0)
# endif
#endif
/** @def Log
* Level 1 logging that works regardless of the group settings.
*/
#define LogAlways(a) LogItAlways(LOG_INSTANCE, RTLOGGRPFLAGS_LEVEL_1, LOG_GROUP, a)
/** @def Log
* Level 1 logging.
*/
#define Log(a) LogIt(LOG_INSTANCE, RTLOGGRPFLAGS_LEVEL_1, LOG_GROUP, a)
/** @def Log2
* Level 2 logging.
*/
#define Log2(a) LogIt(LOG_INSTANCE, RTLOGGRPFLAGS_LEVEL_2, LOG_GROUP, a)
/** @def Log3
* Level 3 logging.
*/
#define Log3(a) LogIt(LOG_INSTANCE, RTLOGGRPFLAGS_LEVEL_3, LOG_GROUP, a)
/** @def Log4
* Level 4 logging.
*/
#define Log4(a) LogIt(LOG_INSTANCE, RTLOGGRPFLAGS_LEVEL_4, LOG_GROUP, a)
/** @def Log5
* Level 5 logging.
*/
#define Log5(a) LogIt(LOG_INSTANCE, RTLOGGRPFLAGS_LEVEL_5, LOG_GROUP, a)
/** @def Log6
* Level 6 logging.
*/
#define Log6(a) LogIt(LOG_INSTANCE, RTLOGGRPFLAGS_LEVEL_6, LOG_GROUP, a)
/** @def LogFlow
* Logging of execution flow.
*/
#define LogFlow(a) LogIt(LOG_INSTANCE, RTLOGGRPFLAGS_FLOW, LOG_GROUP, a)
/** @def LogLelik
* lelik logging.
*/
#define LogLelik(a) LogIt(LOG_INSTANCE, RTLOGGRPFLAGS_LELIK, LOG_GROUP, a)
/** @def LogMichael
* michael logging.
*/
#define LogMichael(a) LogIt(LOG_INSTANCE, RTLOGGRPFLAGS_MICHAEL, LOG_GROUP, a)
/** @def LogDmik
* dmik logging.
*/
#define LogDmik(a) LogIt(LOG_INSTANCE, RTLOGGRPFLAGS_DMIK, LOG_GROUP, a)
/** @def LogSunlover
* sunlover logging.
*/
#define LogSunlover(a) LogIt(LOG_INSTANCE, RTLOGGRPFLAGS_SUNLOVER, LOG_GROUP, a)
/** @def LogAchim
* Achim logging.
*/
#define LogAchim(a) LogIt(LOG_INSTANCE, RTLOGGRPFLAGS_ACHIM, LOG_GROUP, a)
/** @def LogSander
* Sander logging.
*/
#define LogSander(a) LogIt(LOG_INSTANCE, RTLOGGRPFLAGS_SANDER, LOG_GROUP, a)
/** @def LogKlaus
* klaus logging.
*/
#define LogKlaus(a) LogIt(LOG_INSTANCE, RTLOGGRPFLAGS_KLAUS, LOG_GROUP, a)
/** @def LogFrank
* frank logging.
*/
#define LogFrank(a) LogIt(LOG_INSTANCE, RTLOGGRPFLAGS_FRANK, LOG_GROUP, a)
/** @def LogBird
* bird logging.
*/
#define LogBird(a) LogIt(LOG_INSTANCE, RTLOGGRPFLAGS_BIRD, LOG_GROUP, a)
/** @def LogNoName
* NoName logging.
*/
#define LogNoName(a) LogIt(LOG_INSTANCE, RTLOGGRPFLAGS_NONAME, LOG_GROUP, a)
/** @def LogWarning
* 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 LogWarning(a) \
_LogIt(LOG_INSTANCE, RTLOGGRPFLAGS_LEVEL_1, LOG_GROUP, "WARNING! %M", _LogRemoveParentheseis a )
#else
# define LogWarning(a) \
do { Log(("WARNING! ")); Log(a); } while (0)
#endif
/** @def LogTrace
* Macro to trace the execution flow: logs the file name, line number and
* function name. Can be easily searched for in log files using the
* ">>>>>" pattern (prepended to the beginning of each line).
*/
#define LogTrace() \
LogFlow((">>>>> %s (%d): " LOG_FN_FMT "\n", __FILE__, __LINE__, __PRETTY_FUNCTION__))
/** @def LogTraceMsg
* The same as LogTrace but logs a custom log message right after the trace line.
*
* @param a Custom log message in format <tt>("string\n" [, args])</tt>.
*/
#ifdef LOG_USE_C99
# define LogTraceMsg(a) \
_LogIt(LOG_INSTANCE, RTLOGGRPFLAGS_FLOW, LOG_GROUP, ">>>>> %s (%d): %M" LOG_FN_FMT, __FILE__, __LINE__, __PRETTY_FUNCTION__, _LogRemoveParentheseis a )
#else
# define LogTraceMsg(a) \
do { LogFlow((">>>>> %s (%d): " LOG_FN_FMT, __FILE__, __LINE__, __PRETTY_FUNCTION__)); LogFlow(a); } while (0)
#endif
/** @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(LOG_INSTANCE, RTLOGGRPFLAGS_LEVEL_1, LOG_GROUP, LOG_FN_FMT ": %M", __PRETTY_FUNCTION__, _LogRemoveParentheseis a )
#else
# define LogFunc(a) \
do { Log((LOG_FN_FMT ": ", __PRETTY_FUNCTION__)); Log(a); } while (0)
#endif
/** @def LogThisFunc
* The same as LogFunc 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 LogThisFunc(a) \
_LogIt(LOG_INSTANCE, RTLOGGRPFLAGS_LEVEL_1, LOG_GROUP, "{%p} " LOG_FN_FMT ": %M", this, __PRETTY_FUNCTION__, _LogRemoveParentheseis a )
#else
# define LogThisFunc(a) \
do { Log(("{%p} " LOG_FN_FMT ": ", this, __PRETTY_FUNCTION__)); Log(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(LOG_INSTANCE, RTLOGGRPFLAGS_FLOW, LOG_GROUP, LOG_FN_FMT ": %M", __PRETTY_FUNCTION__, _LogRemoveParentheseis a )
#else
# define LogFlowFunc(a) \
do { LogFlow((LOG_FN_FMT ": ", __PRETTY_FUNCTION__)); LogFlow(a); } while (0)
#endif
/** @def LogWarningFunc
* 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 LogWarningFunc(a) \
_LogIt(LOG_INSTANCE, RTLOGGRPFLAGS_LEVEL_1, LOG_GROUP, LOG_FN_FMT ": WARNING! %M", __PRETTY_FUNCTION__, _LogRemoveParentheseis a )
#else
# define LogWarningFunc(a) \
do { Log((LOG_FN_FMT ": WARNING! ", __PRETTY_FUNCTION__)); Log(a); } while (0)
#endif
/** @def LogFlowThisFunc
* The same as LogFlowFunc 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 LogFlowThisFunc(a) \
_LogIt(LOG_INSTANCE, RTLOGGRPFLAGS_FLOW, LOG_GROUP, "{%p} " LOG_FN_FMT ": %M", this, __PRETTY_FUNCTION__, _LogRemoveParentheseis a )
#else
# define LogFlowThisFunc(a) \
do { LogFlow(("{%p} " LOG_FN_FMT ": ", this, __PRETTY_FUNCTION__)); LogFlow(a); } while (0)
#endif
/** @def LogWarningThisFunc
* 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 LogWarningThisFunc(a) \
_LogIt(LOG_INSTANCE, RTLOGGRPFLAGS_LEVEL_1, LOG_GROUP, "{%p} " LOG_FN_FMT ": WARNING! %M", this, __PRETTY_FUNCTION__, _LogRemoveParentheseis a )
#else
# define LogWarningThisFunc(a) \
do { Log(("{%p} " LOG_FN_FMT ": WARNING! ", this, __PRETTY_FUNCTION__)); 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 |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)
*
* @note Use it only for temporary debugging. It leaves dummy code even if
* logging is disabled.
*/
#define LogObjRefCnt(pObj) \
do { \
int refc = (pObj)->AddRef(); \
LogFlow((#pObj "{%p}.refCnt=%d\n", (pObj), refc - 1)); \
(pObj)->Release(); \
} while (0)
/** @def LogIsItEnabled
* Checks whether the specified logging group is enabled or not.
*/
#ifdef LOG_ENABLED
# define LogIsItEnabled(pvInst, fFlags, iGroup) \
LogIsItEnabledInternal((pvInst), (unsigned)(iGroup), (unsigned)(fFlags))
#else
# define LogIsItEnabled(pvInst, fFlags, iGroup) (false)
#endif
/** @def LogIsEnabled
* Checks whether level 1 logging is enabled.
*/
#define LogIsEnabled() LogIsItEnabled(LOG_INSTANCE, RTLOGGRPFLAGS_LEVEL_1, LOG_GROUP)
/** @def LogIs2Enabled
* Checks whether level 2 logging is enabled.
*/
#define LogIs2Enabled() LogIsItEnabled(LOG_INSTANCE, RTLOGGRPFLAGS_LEVEL_2, LOG_GROUP)
/** @def LogIs3Enabled
* Checks whether level 3 logging is enabled.
*/
#define LogIs3Enabled() LogIsItEnabled(LOG_INSTANCE, RTLOGGRPFLAGS_LEVEL_3, LOG_GROUP)
/** @def LogIs4Enabled
* Checks whether level 4 logging is enabled.
*/
#define LogIs4Enabled() LogIsItEnabled(LOG_INSTANCE, RTLOGGRPFLAGS_LEVEL_4, LOG_GROUP)
/** @def LogIs5Enabled
* Checks whether level 5 logging is enabled.
*/
#define LogIs5Enabled() LogIsItEnabled(LOG_INSTANCE, RTLOGGRPFLAGS_LEVEL_5, LOG_GROUP)
/** @def LogIs6Enabled
* Checks whether level 6 logging is enabled.
*/
#define LogIs6Enabled() LogIsItEnabled(LOG_INSTANCE, RTLOGGRPFLAGS_LEVEL_6, LOG_GROUP)
/** @def LogIsFlowEnabled
* Checks whether execution flow logging is enabled.
*/
#define LogIsFlowEnabled() LogIsItEnabled(LOG_INSTANCE, RTLOGGRPFLAGS_FLOW, LOG_GROUP)
#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 overriden 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 enabled 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.
*/
/** @name Release Logging
* @{
*/
/** @def LogIt
* Write to specific logger if group enabled.
*/
#if defined(LOG_USE_C99)
# define _LogRelRemoveParentheseis(...) __VA_ARGS__
# define _LogRelIt(pvInst, fFlags, iGroup, ...) RTLogLoggerEx((PRTLOGGER)pvInst, fFlags, iGroup, __VA_ARGS__)
# define LogRelIt(pvInst, fFlags, iGroup, fmtargs) \
do \
{ \
PRTLOGGER LogRelIt_pLogger = (PRTLOGGER)(pvInst) ? (PRTLOGGER)(pvInst) : RTLogRelDefaultInstance(); \
if (LogRelIt_pLogger) \
_LogRelIt(LogRelIt_pLogger, fFlags, iGroup, _LogRelRemoveParentheseis fmtargs); \
LogIt(LOG_INSTANCE, fFlags, iGroup, fmtargs); \
} while (0)
#else
# define LogRelIt(pvInst, fFlags, iGroup, fmtargs) \
do \
{ \
PRTLOGGER LogRelIt_pLogger = (PRTLOGGER)(pvInst) ? (PRTLOGGER)(pvInst) : RTLogRelDefaultInstance(); \
if (LogRelIt_pLogger) \
{ \
unsigned LogIt_fFlags = LogRelIt_pLogger->afGroups[(unsigned)(iGroup) < LogRelIt_pLogger->cGroups ? (unsigned)(iGroup) : 0]; \
if ((LogIt_fFlags & ((fFlags) | RTLOGGRPFLAGS_ENABLED)) == ((fFlags) | RTLOGGRPFLAGS_ENABLED)) \
LogRelIt_pLogger->pfnLogger fmtargs; \
} \
LogIt(LOG_INSTANCE, fFlags, iGroup, fmtargs); \
} while (0)
#endif
/** @def LogRel
* Level 1 logging.
*/
#define LogRel(a) LogRelIt(LOG_REL_INSTANCE, RTLOGGRPFLAGS_LEVEL_1, LOG_GROUP, a)
/** @def LogRel2
* Level 2 logging.
*/
#define LogRel2(a) LogRelIt(LOG_REL_INSTANCE, RTLOGGRPFLAGS_LEVEL_2, LOG_GROUP, a)
/** @def LogRel3
* Level 3 logging.
*/
#define LogRel3(a) LogRelIt(LOG_REL_INSTANCE, RTLOGGRPFLAGS_LEVEL_3, LOG_GROUP, a)
/** @def LogRel4
* Level 4 logging.
*/
#define LogRel4(a) LogRelIt(LOG_REL_INSTANCE, RTLOGGRPFLAGS_LEVEL_4, LOG_GROUP, a)
/** @def LogRel5
* Level 5 logging.
*/
#define LogRel5(a) LogRelIt(LOG_REL_INSTANCE, RTLOGGRPFLAGS_LEVEL_5, LOG_GROUP, a)
/** @def LogRel6
* Level 6 logging.
*/
#define LogRel6(a) LogRelIt(LOG_REL_INSTANCE, RTLOGGRPFLAGS_LEVEL_6, LOG_GROUP, a)
/** @def LogRelFlow
* Logging of execution flow.
*/
#define LogRelFlow(a) LogRelIt(LOG_REL_INSTANCE, RTLOGGRPFLAGS_FLOW, LOG_GROUP, a)
/** @def LogRelFunc
* Release logging. Prepends the given log message with the function name
* followed by a semicolon and space.
*/
#define LogRelFunc(a) \
do { LogRel((LOG_FN_FMT ": ", __PRETTY_FUNCTION__)); LogRel(a); } while (0)
/** @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.
*/
#define LogRelThisFunc(a) \
do { LogRel(("{%p} " LOG_FN_FMT ": ", this, __PRETTY_FUNCTION__)); LogRel(a); } while (0)
/** @def LogRelLelik
* lelik logging.
*/
#define LogRelLelik(a) LogRelIt(LOG_REL_INSTANCE, RTLOGGRPFLAGS_LELIK, LOG_GROUP, a)
/** @def LogRelMichael
* michael logging.
*/
#define LogRelMichael(a) LogRelIt(LOG_REL_INSTANCE, RTLOGGRPFLAGS_MICHAEL, LOG_GROUP, a)
/** @def LogRelDmik
* dmik logging.
*/
#define LogRelDmik(a) LogRelIt(LOG_REL_INSTANCE, RTLOGGRPFLAGS_DMIK, LOG_GROUP, a)
/** @def LogRelSunlover
* sunlover logging.
*/
#define LogRelSunlover(a) LogRelIt(LOG_REL_INSTANCE, RTLOGGRPFLAGS_SUNLOVER, LOG_GROUP, a)
/** @def LogRelAchim
* Achim logging.
*/
#define LogRelAchim(a) LogRelIt(LOG_REL_INSTANCE, RTLOGGRPFLAGS_ACHIM, LOG_GROUP, a)
/** @def LogRelSander
* Sander logging.
*/
#define LogRelSander(a) LogRelIt(LOG_REL_INSTANCE, RTLOGGRPFLAGS_SANDER, LOG_GROUP, a)
/** @def LogRelKlaus
* klaus logging.
*/
#define LogRelKlaus(a) LogRelIt(LOG_REL_INSTANCE, RTLOGGRPFLAGS_KLAUS, LOG_GROUP, a)
/** @def LogRelFrank
* frank logging.
*/
#define LogRelFrank(a) LogRelIt(LOG_REL_INSTANCE, RTLOGGRPFLAGS_FRANK, LOG_GROUP, a)
/** @def LogRelBird
* bird logging.
*/
#define LogRelBird(a) LogRelIt(LOG_REL_INSTANCE, RTLOGGRPFLAGS_BIRD, LOG_GROUP, a)
/** @def LogRelNoName
* NoName logging.
*/
#define LogRelNoName(a) LogRelIt(LOG_REL_INSTANCE, RTLOGGRPFLAGS_NONAME, LOG_GROUP, a)
/** @def LogRelIsItEnabled
* Checks whether the specified logging group is enabled or not.
*/
#define LogRelIsItEnabled(pvInst, fFlags, iGroup) \
LogRelIsItEnabledInternal((pvInst), (unsigned)(iGroup), (unsigned)(fFlags))
/** @def LogRelIsEnabled
* Checks whether level 1 logging is enabled.
*/
#define LogRelIsEnabled() LogRelIsItEnabled(LOG_REL_INSTANCE, RTLOGGRPFLAGS_LEVEL_1, LOG_GROUP)
/** @def LogRelIs2Enabled
* Checks whether level 2 logging is enabled.
*/
#define LogRelIs2Enabled() LogRelIsItEnabled(LOG_REL_INSTANCE, RTLOGGRPFLAGS_LEVEL_2, LOG_GROUP)
/** @def LogRelIs3Enabled
* Checks whether level 3 logging is enabled.
*/
#define LogRelIs3Enabled() LogRelIsItEnabled(LOG_REL_INSTANCE, RTLOGGRPFLAGS_LEVEL_3, LOG_GROUP)
/** @def LogRelIs4Enabled
* Checks whether level 4 logging is enabled.
*/
#define LogRelIs4Enabled() LogRelIsItEnabled(LOG_REL_INSTANCE, RTLOGGRPFLAGS_LEVEL_4, LOG_GROUP)
/** @def LogRelIs5Enabled
* Checks whether level 5 logging is enabled.
*/
#define LogRelIs5Enabled() LogRelIsItEnabled(LOG_REL_INSTANCE, RTLOGGRPFLAGS_LEVEL_5, LOG_GROUP)
/** @def LogRelIs6Enabled
* Checks whether level 6 logging is enabled.
*/
#define LogRelIs6Enabled() LogRelIsItEnabled(LOG_REL_INSTANCE, RTLOGGRPFLAGS_LEVEL_6, LOG_GROUP)
/** @def LogRelIsFlowEnabled
* Checks whether execution flow logging is enabled.
*/
#define LogRelIsFlowEnabled() LogRelIsItEnabled(LOG_REL_INSTANCE, RTLOGGRPFLAGS_FLOW, LOG_GROUP)
#ifndef IN_GC
/**
* Sets the default release logger instance.
*
* @returns The old default instance.
* @param pLogger The new default release logger instance.
*/
RTDECL(PRTLOGGER) RTLogRelSetDefaultInstance(PRTLOGGER pLogger);
#endif /* !IN_GC */
/**
* Gets the default release logger instance.
*
* @returns Pointer to default release logger instance.
* @returns NULL if no default release logger instance available.
*/
RTDECL(PRTLOGGER) RTLogRelDefaultInstance(void);
/** Internal worker function.
* Don't call directly, use the LogRelIsItEnabled macro!
*/
DECLINLINE(bool) LogRelIsItEnabledInternal(void *pvInst, unsigned iGroup, unsigned fFlags)
{
register PRTLOGGER pLogger = (PRTLOGGER)pvInst ? (PRTLOGGER)pvInst : RTLogRelDefaultInstance();
if (pLogger)
{
register unsigned fGrpFlags = pLogger->afGroups[(unsigned)iGroup < pLogger->cGroups ? (unsigned)iGroup : 0];
if ((fGrpFlags & (fFlags | RTLOGGRPFLAGS_ENABLED)) == (fFlags | RTLOGGRPFLAGS_ENABLED))
return true;
}
return false;
}
/**
* 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 compatability 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, ...);
/**
* 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 compatability 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);
/**
* 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, ...);
/**
* 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);
/** @} */
/** @name COM port logging
* {
*/
#ifdef DOXYGEN_RUNNING
# define LOG_TO_COM
# define LOG_NO_COM
#endif
/** @def LOG_TO_COM
* Redirects the normal loging 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)
#endif
/** @} */
/**
* Gets the default logger instance.
*
* @returns Pointer to default logger instance.
* @returns NULL if no default logger instance available.
*/
RTDECL(PRTLOGGER) RTLogDefaultInstance(void);
#ifndef IN_GC
/**
* Sets the default logger instance.
*
* @returns The old default instance.
* @param pLogger The new default logger instance.
*/
RTDECL(PRTLOGGER) RTLogSetDefaultInstance(PRTLOGGER pLogger);
#endif /* !IN_GC */
#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.
*/
RTDECL(int) RTLogSetDefaultInstanceThread(PRTLOGGER pLogger, uintptr_t uKey);
#endif /* IN_RING0 */
#ifdef LOG_ENABLED
/** Internal worker function.
* Don't call directly, use the LogIsItEnabled macro!
*/
DECLINLINE(bool) LogIsItEnabledInternal(void *pvInst, unsigned iGroup, unsigned fFlags)
{
register PRTLOGGER pLogger = (PRTLOGGER)pvInst ? (PRTLOGGER)pvInst : RTLogDefaultInstance();
if (pLogger)
{
register unsigned fGrpFlags = pLogger->afGroups[(unsigned)iGroup < pLogger->cGroups ? (unsigned)iGroup : 0];
if ((fGrpFlags & (fFlags | RTLOGGRPFLAGS_ENABLED)) == (fFlags | RTLOGGRPFLAGS_ENABLED))
return true;
}
return false;
}
#endif
#ifndef IN_GC
/**
* Creates the default logger instance for a 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);
/**
* 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, RTUINT fFlags, const char *pszGroupSettings,
const char *pszEnvVarBase, unsigned cGroups, const char * const * papszGroups,
RTUINT fDestFlags, const char *pszFilenameFmt, ...);
/**
* 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 pszErrorMsg A buffer which is filled with an error message if something fails. May be NULL.
* @param cchErrorMsg The size of the error message buffer.
* @param pszFilenameFmt Log filename format string. Standard RTStrFormat().
* @param ... Format arguments.
*/
RTDECL(int) RTLogCreateEx(PRTLOGGER *ppLogger, RTUINT fFlags, const char *pszGroupSettings,
const char *pszEnvVarBase, unsigned cGroups, const char * const * papszGroups,
RTUINT fDestFlags, char *pszErrorMsg, size_t cchErrorMsg, const char *pszFilenameFmt, ...);
/**
* 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 pszErrorMsg A buffer which is filled with an error message if something fails. May be NULL.
* @param cchErrorMsg The size of the error message buffer.
* @param pszFilenameFmt Log filename format string. Standard RTStrFormat().
* @param args Format arguments.
*/
RTDECL(int) RTLogCreateExV(PRTLOGGER *ppLogger, RTUINT fFlags, const char *pszGroupSettings,
const char *pszEnvVarBase, unsigned cGroups, const char * const * papszGroups,
RTUINT fDestFlags, char *pszErrorMsg, size_t cchErrorMsg, const char *pszFilenameFmt, va_list args);
/**
* Create a logger instance for singled threaded ring-0 usage.
*
* @returns iprt status code.
*
* @param pLogger Where to create the logger instance.
* @param cbLogger The amount of memory available for the logger instance.
* @param pfnLogger Pointer to logger wrapper function for the clone.
* @param pfnFlush Pointer to flush function for the clone.
* @param fFlags Logger instance flags for the clone, a combination of the RTLOGFLAGS_* values.
* @param fDestFlags The destination flags.
*/
RTDECL(int) RTLogCreateForR0(PRTLOGGER pLogger, size_t cbLogger, PFNRTLOGGER pfnLogger, PFNRTLOGFLUSH pfnFlush, RTUINT fFlags, RTUINT fDestFlags);
/**
* 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.
*/
RTDECL(int) RTLogDestroy(PRTLOGGER pLogger);
/**
* Create a logger instance clone for GC usage.
*
* @returns iprt status code.
*
* @param pLogger The logger instance to be cloned.
* @param pLoggerGC Where to create the GC logger instance.
* @param cbLoggerGC Amount of memory allocated to for the GC logger instance clone.
* @param pfnLoggerGCPtr Pointer to logger wrapper function for this instance (GC Ptr).
* @param pfnFlushGCPtr Pointer to flush function (GC Ptr).
* @param fFlags Logger instance flags, a combination of the RTLOGFLAGS_* values.
*/
RTDECL(int) RTLogCloneGC(PRTLOGGER pLogger, PRTLOGGERGC pLoggerGC, size_t cbLoggerGC,
RTGCPTR pfnLoggerGCPtr, RTGCPTR pfnFlushGCPtr, RTUINT fFlags);
/**
* Flushes a GC logger instance to a HC logger.
*
* @returns iprt status code.
* @param pLogger The HC logger instance to flush pLoggerGC to.
* If NULL the default logger is used.
* @param pLoggerGC The GC logger instance to flush.
*/
RTDECL(void) RTLogFlushGC(PRTLOGGER pLogger, PRTLOGGERGC pLoggerGC);
/**
* Flushes the buffer in one logger instance onto another logger.
*
* @returns iprt status code.
*
* @param pSrcLogger The logger instance to flush.
* @param pDstLogger The logger instance to flush onto.
* If NULL the default logger will be used.
*/
RTDECL(void) RTLogFlushToLogger(PRTLOGGER pSrcLogger, PRTLOGGER pDstLogger);
/**
* Copies the group settings and flags from logger instance to another.
*
* @returns IPRT status code.
* @param pDstLogger The destination logger instance.
* @param pSrcLogger The source logger instance. If NULL the default one is used.
* @param fFlagsOr OR mask for the flags.
* @param fFlagsAnd AND mask for the flags.
*/
RTDECL(int) RTLogCopyGroupsAndFlags(PRTLOGGER pDstLogger, PCRTLOGGER pSrcLogger, unsigned fFlagsOr, unsigned fFlagsAnd);
/**
* 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 pszVar Value to parse.
*/
RTDECL(int) RTLogGroupSettings(PRTLOGGER pLogger, const char *pszVar);
#endif /* !IN_GC */
/**
* 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 pszVar Value to parse.
*/
RTDECL(int) RTLogFlags(PRTLOGGER pLogger, const char *pszVar);
/**
* Flushes the specified logger.
*
* @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(void) 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, ...);
/**
* 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);
/**
* 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 compatability 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, ...);
/**
* 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 compatability with RTLogLogger[V] and is
* only for internal usage!
* @param pszFormat Format string.
* @param args Format arguments.
*/
RTDECL(void) RTLogLoggerExV(PRTLOGGER pLogger, unsigned fFlags, unsigned iGroup, const char *pszFormat, va_list args);
/**
* 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, ...);
/**
* vprintf like function for writing to the default 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) RTLogPrintfV(const char *pszFormat, va_list args);
#ifndef DECLARED_FNRTSTROUTPUT /* duplicated in iprt/string.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 DECLCALLBACK(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);
/**
* 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, ...);
/**
* 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);
#if 0 /* not implemented yet */
/** Indicates that the semaphores shall be used to notify the other
* part about buffer changes. */
#define LOGHOOKBUFFER_FLAGS_SEMAPHORED 1
/**
* Log Hook Buffer.
* Use to commuicate between the logger and a log consumer.
*/
typedef struct RTLOGHOOKBUFFER
{
/** Write pointer. */
volatile void *pvWrite;
/** Read pointer. */
volatile void *pvRead;
/** Buffer start. */
void *pvStart;
/** Buffer end (exclusive). */
void *pvEnd;
/** Signaling semaphore used by the writer to wait on a full buffer.
* Only used when indicated in flags. */
void *pvSemWriter;
/** Signaling semaphore used by the read to wait on an empty buffer.
* Only used when indicated in flags. */
void *pvSemReader;
/** Buffer flags. Current reserved and set to zero. */
volatile unsigned fFlags;
} RTLOGHOOKBUFFER;
/** Pointer to a log hook buffer. */
typedef RTLOGHOOKBUFFER *PRTLOGHOOKBUFFER;
/**
* Register a logging hook.
*
* This type of logging hooks are expecting different threads acting
* producer and consumer. They share a circular buffer which have two
* pointers one for each end. When the buffer is full there are two
* alternatives (indicated by a buffer flag), either wait for the
* consumer to get it's job done, or to write a generic message saying
* buffer overflow.
*
* Since the waiting would need a signal semaphore, we'll skip that for now.
*
* @returns iprt status code.
* @param pBuffer Pointer to a logger hook buffer.
*/
RTDECL(int) RTLogRegisterHook(PRTLOGGER pLogger, PRTLOGHOOKBUFFER pBuffer);
/**
* Deregister a logging hook registerd with RTLogRegisterHook().
*
* @returns iprt status code.
* @param pBuffer Pointer to a logger hook buffer.
*/
RTDECL(int) RTLogDeregisterHook(PRTLOGGER pLogger, PRTLOGHOOKBUFFER pBuffer);
#endif /* not implemented yet */
/**
* 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 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, ...);
/**
* 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);
#endif /* VBOX */
__END_DECLS
/** @} */
#endif
|