VirtualBox

source: vbox/trunk/include/iprt/log.h@ 52664

Last change on this file since 52664 was 51770, checked in by vboxsync, 10 years ago

Merged in iprt++ dev branch.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 67.4 KB
Line 
1/** @file
2 * IPRT - Logging.
3 */
4
5/*
6 * Copyright (C) 2006-2012 Oracle Corporation
7 *
8 * This file is part of VirtualBox Open Source Edition (OSE), as
9 * available from http://www.virtualbox.org. This file is free software;
10 * you can redistribute it and/or modify it under the terms of the GNU
11 * General Public License (GPL) as published by the Free Software
12 * Foundation, in version 2 as it comes in the "COPYING" file of the
13 * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
14 * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
15 *
16 * The contents of this file may alternatively be used under the terms
17 * of the Common Development and Distribution License Version 1.0
18 * (CDDL) only, as it comes in the "COPYING.CDDL" file of the
19 * VirtualBox OSE distribution, in which case the provisions of the
20 * CDDL are applicable instead of those of the GPL.
21 *
22 * You may elect to license modified versions of this file under the
23 * terms and conditions of either the GPL or the CDDL or both.
24 */
25
26#ifndef ___iprt_log_h
27#define ___iprt_log_h
28
29#include <iprt/cdefs.h>
30#include <iprt/types.h>
31#include <iprt/stdarg.h>
32
33RT_C_DECLS_BEGIN
34
35/** @defgroup grp_rt_log RTLog - Logging
36 * @ingroup grp_rt
37 * @{
38 */
39
40/**
41 * IPRT Logging Groups.
42 * (Remember to update RT_LOGGROUP_NAMES!)
43 *
44 * @remark It should be pretty obvious, but just to have
45 * mentioned it, the values are sorted alphabetically (using the
46 * english alphabet) except for _DEFAULT which is always first.
47 *
48 * If anyone might be wondering what the alphabet looks like:
49 * 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
50 */
51typedef enum RTLOGGROUP
52{
53 /** Default logging group. */
54 RTLOGGROUP_DEFAULT,
55 RTLOGGROUP_DBG,
56 RTLOGGROUP_DBG_DWARF,
57 RTLOGGROUP_DIR,
58 RTLOGGROUP_FILE,
59 RTLOGGROUP_FS,
60 RTLOGGROUP_LDR,
61 RTLOGGROUP_PATH,
62 RTLOGGROUP_PROCESS,
63 RTLOGGROUP_SYMLINK,
64 RTLOGGROUP_THREAD,
65 RTLOGGROUP_TIME,
66 RTLOGGROUP_TIMER,
67 RTLOGGROUP_ZIP = 31,
68 RTLOGGROUP_FIRST_USER = 32
69} RTLOGGROUP;
70
71/** @def RT_LOGGROUP_NAMES
72 * IPRT Logging group names.
73 *
74 * Must correspond 100% to RTLOGGROUP!
75 * Don't forget commas!
76 *
77 * @remark It should be pretty obvious, but just to have
78 * mentioned it, the values are sorted alphabetically (using the
79 * english alphabet) except for _DEFAULT which is always first.
80 *
81 * If anyone might be wondering what the alphabet looks like:
82 * 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
83 */
84#define RT_LOGGROUP_NAMES \
85 "DEFAULT", \
86 "RT_DBG", \
87 "RT_DBG_DWARF", \
88 "RT_DIR", \
89 "RT_FILE", \
90 "RT_FS", \
91 "RT_LDR", \
92 "RT_PATH", \
93 "RT_PROCESS", \
94 "RT_SYMLINK", \
95 "RT_THREAD", \
96 "RT_TIME", \
97 "RT_TIMER", \
98 "RT_13", \
99 "RT_14", \
100 "RT_15", \
101 "RT_16", \
102 "RT_17", \
103 "RT_18", \
104 "RT_19", \
105 "RT_20", \
106 "RT_21", \
107 "RT_22", \
108 "RT_23", \
109 "RT_24", \
110 "RT_25", \
111 "RT_26", \
112 "RT_27", \
113 "RT_28", \
114 "RT_29", \
115 "RT_30", \
116 "RT_ZIP" \
117
118
119/** @def LOG_GROUP
120 * Active logging group.
121 */
122#ifndef LOG_GROUP
123# define LOG_GROUP RTLOGGROUP_DEFAULT
124#endif
125
126/** @def LOG_INSTANCE
127 * Active logging instance.
128 */
129#ifndef LOG_INSTANCE
130# define LOG_INSTANCE NULL
131#endif
132
133/** @def LOG_REL_INSTANCE
134 * Active release logging instance.
135 */
136#ifndef LOG_REL_INSTANCE
137# define LOG_REL_INSTANCE NULL
138#endif
139
140/** @def LOG_FN_FMT
141 * You can use this to specify you desired way of printing __PRETTY_FUNCTION__
142 * if you dislike the default one.
143 */
144#ifndef LOG_FN_FMT
145# define LOG_FN_FMT "%Rfn"
146#endif
147
148/** Logger structure. */
149#ifdef IN_RC
150typedef struct RTLOGGERRC RTLOGGER;
151#else
152typedef struct RTLOGGER RTLOGGER;
153#endif
154/** Pointer to logger structure. */
155typedef RTLOGGER *PRTLOGGER;
156/** Pointer to const logger structure. */
157typedef const RTLOGGER *PCRTLOGGER;
158
159
160/** Guest context logger structure. */
161typedef struct RTLOGGERRC RTLOGGERRC;
162/** Pointer to guest context logger structure. */
163typedef RTLOGGERRC *PRTLOGGERRC;
164/** Pointer to const guest context logger structure. */
165typedef const RTLOGGERRC *PCRTLOGGERRC;
166
167
168/**
169 * Logger phase.
170 *
171 * Used for signalling the log header/footer callback what to do.
172 */
173typedef enum RTLOGPHASE
174{
175 /** Begin of the logging. */
176 RTLOGPHASE_BEGIN = 0,
177 /** End of the logging. */
178 RTLOGPHASE_END,
179 /** Before rotating the log file. */
180 RTLOGPHASE_PREROTATE,
181 /** After rotating the log file. */
182 RTLOGPHASE_POSTROTATE,
183 /** 32-bit type blow up hack. */
184 RTLOGPHASE_32BIT_HACK = 0x7fffffff
185} RTLOGPHASE;
186
187
188/**
189 * Logger function.
190 *
191 * @param pszFormat Format string.
192 * @param ... Optional arguments as specified in the format string.
193 */
194typedef DECLCALLBACK(void) FNRTLOGGER(const char *pszFormat, ...);
195/** Pointer to logger function. */
196typedef FNRTLOGGER *PFNRTLOGGER;
197
198/**
199 * Flush function.
200 *
201 * @param pLogger Pointer to the logger instance which is to be flushed.
202 */
203typedef DECLCALLBACK(void) FNRTLOGFLUSH(PRTLOGGER pLogger);
204/** Pointer to flush function. */
205typedef FNRTLOGFLUSH *PFNRTLOGFLUSH;
206
207/**
208 * Flush function.
209 *
210 * @param pLogger Pointer to the logger instance which is to be flushed.
211 */
212typedef DECLCALLBACK(void) FNRTLOGFLUSHGC(PRTLOGGERRC pLogger);
213/** Pointer to logger function. */
214typedef RCPTRTYPE(FNRTLOGFLUSHGC *) PFNRTLOGFLUSHGC;
215
216/**
217 * Header/footer message callback.
218 *
219 * @param pLogger Pointer to the logger instance.
220 * @param pszFormat Format string.
221 * @param ... Optional arguments specified in the format string.
222 */
223typedef DECLCALLBACK(void) FNRTLOGPHASEMSG(PRTLOGGER pLogger, const char *pszFormat, ...);
224/** Pointer to header/footer message callback function. */
225typedef FNRTLOGPHASEMSG *PFNRTLOGPHASEMSG;
226
227/**
228 * Log file header/footer callback.
229 *
230 * @param pLogger Pointer to the logger instance.
231 * @param enmLogPhase Indicates at what time the callback is invoked.
232 * @param pfnLogPhaseMsg Callback for writing the header/footer (RTLogPrintf
233 * and others are out of bounds).
234 */
235typedef DECLCALLBACK(void) FNRTLOGPHASE(PRTLOGGER pLogger, RTLOGPHASE enmLogPhase, PFNRTLOGPHASEMSG pfnLogPhaseMsg);
236/** Pointer to log header/footer callback function. */
237typedef FNRTLOGPHASE *PFNRTLOGPHASE;
238
239/**
240 * Custom log prefix callback.
241 *
242 *
243 * @returns The number of chars written.
244 *
245 * @param pLogger Pointer to the logger instance.
246 * @param pchBuf Output buffer pointer.
247 * No need to terminate the output.
248 * @param cchBuf The size of the output buffer.
249 * @param pvUser The user argument.
250 */
251typedef DECLCALLBACK(size_t) FNRTLOGPREFIX(PRTLOGGER pLogger, char *pchBuf, size_t cchBuf, void *pvUser);
252/** Pointer to prefix callback function. */
253typedef FNRTLOGPREFIX *PFNRTLOGPREFIX;
254
255
256
257/**
258 * Logger instance structure for GC.
259 */
260struct RTLOGGERRC
261{
262 /** Pointer to temporary scratch buffer.
263 * This is used to format the log messages. */
264 char achScratch[32768];
265 /** Current scratch buffer position. */
266 uint32_t offScratch;
267 /** This is set if a prefix is pending. */
268 bool fPendingPrefix;
269 bool afAlignment[3];
270 /** Pointer to the logger function.
271 * This is actually pointer to a wrapper which will push a pointer to the
272 * instance pointer onto the stack before jumping to the real logger function.
273 * A very unfortunate hack to work around the missing variadic macro support in C++. */
274 RCPTRTYPE(PFNRTLOGGER) pfnLogger;
275 /** Pointer to the flush function. */
276 PFNRTLOGFLUSHGC pfnFlush;
277 /** Magic number (RTLOGGERRC_MAGIC). */
278 uint32_t u32Magic;
279 /** Logger instance flags - RTLOGFLAGS. */
280 uint32_t fFlags;
281 /** Number of groups in the afGroups member. */
282 uint32_t cGroups;
283 /** Group flags array - RTLOGGRPFLAGS.
284 * This member have variable length and may extend way beyond
285 * the declared size of 1 entry. */
286 uint32_t afGroups[1];
287};
288
289/** RTLOGGERRC::u32Magic value. (John Rogers Searle) */
290#define RTLOGGERRC_MAGIC 0x19320731
291
292
293
294#ifndef IN_RC
295
296/** Pointer to internal logger bits. */
297typedef struct RTLOGGERINTERNAL *PRTLOGGERINTERNAL;
298
299/**
300 * Logger instance structure.
301 */
302struct RTLOGGER
303{
304 /** Pointer to temporary scratch buffer.
305 * This is used to format the log messages. */
306 char achScratch[49152];
307 /** Current scratch buffer position. */
308 uint32_t offScratch;
309 /** Magic number. */
310 uint32_t u32Magic;
311 /** Logger instance flags - RTLOGFLAGS. */
312 uint32_t fFlags;
313 /** Destination flags - RTLOGDEST. */
314 uint32_t fDestFlags;
315 /** Pointer to the internal bits of the logger.
316 * (The memory is allocated in the same block as RTLOGGER.) */
317 PRTLOGGERINTERNAL pInt;
318 /** Pointer to the logger function (used in non-C99 mode only).
319 *
320 * This is actually pointer to a wrapper which will push a pointer to the
321 * instance pointer onto the stack before jumping to the real logger function.
322 * A very unfortunate hack to work around the missing variadic macro
323 * support in older C++/C standards. (The memory is allocated using
324 * RTMemExecAlloc(), except for agnostic R0 code.) */
325 PFNRTLOGGER pfnLogger;
326 /** Number of groups in the afGroups and papszGroups members. */
327 uint32_t cGroups;
328 /** Group flags array - RTLOGGRPFLAGS.
329 * This member have variable length and may extend way beyond
330 * the declared size of 1 entry. */
331 uint32_t afGroups[1];
332};
333
334/** RTLOGGER::u32Magic value. (Avram Noam Chomsky) */
335# define RTLOGGER_MAGIC UINT32_C(0x19281207)
336
337#endif /* !IN_RC */
338
339
340/**
341 * Logger flags.
342 */
343typedef enum RTLOGFLAGS
344{
345 /** The logger instance is disabled for normal output. */
346 RTLOGFLAGS_DISABLED = 0x00000001,
347 /** The logger instance is using buffered output. */
348 RTLOGFLAGS_BUFFERED = 0x00000002,
349 /** The logger instance expands LF to CR/LF. */
350 RTLOGFLAGS_USECRLF = 0x00000010,
351 /** Append to the log destination where applicable. */
352 RTLOGFLAGS_APPEND = 0x00000020,
353 /** Show relative timestamps with PREFIX_TSC and PREFIX_TS */
354 RTLOGFLAGS_REL_TS = 0x00000040,
355 /** Show decimal timestamps with PREFIX_TSC and PREFIX_TS */
356 RTLOGFLAGS_DECIMAL_TS = 0x00000080,
357 /** Open the file in write through mode. */
358 RTLOGFLAGS_WRITE_THROUGH = 0x00000100,
359 /** Flush the file to disk when flushing the buffer. */
360 RTLOGFLAGS_FLUSH = 0x00000200,
361 /** Restrict the number of log entries per group. */
362 RTLOGFLAGS_RESTRICT_GROUPS = 0x00000400,
363 /** New lines should be prefixed with the write and read lock counts. */
364 RTLOGFLAGS_PREFIX_LOCK_COUNTS = 0x00008000,
365 /** New lines should be prefixed with the CPU id (ApicID on intel/amd). */
366 RTLOGFLAGS_PREFIX_CPUID = 0x00010000,
367 /** New lines should be prefixed with the native process id. */
368 RTLOGFLAGS_PREFIX_PID = 0x00020000,
369 /** New lines should be prefixed with group flag number causing the output. */
370 RTLOGFLAGS_PREFIX_FLAG_NO = 0x00040000,
371 /** New lines should be prefixed with group flag name causing the output. */
372 RTLOGFLAGS_PREFIX_FLAG = 0x00080000,
373 /** New lines should be prefixed with group number. */
374 RTLOGFLAGS_PREFIX_GROUP_NO = 0x00100000,
375 /** New lines should be prefixed with group name. */
376 RTLOGFLAGS_PREFIX_GROUP = 0x00200000,
377 /** New lines should be prefixed with the native thread id. */
378 RTLOGFLAGS_PREFIX_TID = 0x00400000,
379 /** New lines should be prefixed with thread name. */
380 RTLOGFLAGS_PREFIX_THREAD = 0x00800000,
381 /** New lines should be prefixed with data from a custom callback. */
382 RTLOGFLAGS_PREFIX_CUSTOM = 0x01000000,
383 /** New lines should be prefixed with formatted timestamp since program start. */
384 RTLOGFLAGS_PREFIX_TIME_PROG = 0x04000000,
385 /** New lines should be prefixed with formatted timestamp (UCT). */
386 RTLOGFLAGS_PREFIX_TIME = 0x08000000,
387 /** New lines should be prefixed with milliseconds since program start. */
388 RTLOGFLAGS_PREFIX_MS_PROG = 0x10000000,
389 /** New lines should be prefixed with timestamp. */
390 RTLOGFLAGS_PREFIX_TSC = 0x20000000,
391 /** New lines should be prefixed with timestamp. */
392 RTLOGFLAGS_PREFIX_TS = 0x40000000,
393 /** The prefix mask. */
394 RTLOGFLAGS_PREFIX_MASK = 0x7dff8000
395} RTLOGFLAGS;
396
397/**
398 * Logger per group flags.
399 */
400typedef enum RTLOGGRPFLAGS
401{
402 /** Enabled. */
403 RTLOGGRPFLAGS_ENABLED = 0x00000001,
404 /** Level 1 logging. */
405 RTLOGGRPFLAGS_LEVEL_1 = 0x00000002,
406 /** Level 2 logging. */
407 RTLOGGRPFLAGS_LEVEL_2 = 0x00000004,
408 /** Level 3 logging. */
409 RTLOGGRPFLAGS_LEVEL_3 = 0x00000008,
410 /** Level 4 logging. */
411 RTLOGGRPFLAGS_LEVEL_4 = 0x00000010,
412 /** Level 5 logging. */
413 RTLOGGRPFLAGS_LEVEL_5 = 0x00000020,
414 /** Level 6 logging. */
415 RTLOGGRPFLAGS_LEVEL_6 = 0x00000040,
416 /** Flow logging. */
417 RTLOGGRPFLAGS_FLOW = 0x00000080,
418 /** Restrict the number of log entries. */
419 RTLOGGRPFLAGS_RESTRICT = 0x00000100,
420
421 /** Lelik logging. */
422 RTLOGGRPFLAGS_LELIK = 0x00010000,
423 /** Michael logging. */
424 RTLOGGRPFLAGS_MICHAEL = 0x00020000,
425 /** sunlover logging. */
426 RTLOGGRPFLAGS_SUNLOVER = 0x00040000,
427 /** Achim logging. */
428 RTLOGGRPFLAGS_ACHIM = 0x00080000,
429 /** Sander logging. */
430 RTLOGGRPFLAGS_SANDER = 0x00100000,
431 /** Klaus logging. */
432 RTLOGGRPFLAGS_KLAUS = 0x00200000,
433 /** Frank logging. */
434 RTLOGGRPFLAGS_FRANK = 0x00400000,
435 /** bird logging. */
436 RTLOGGRPFLAGS_BIRD = 0x00800000,
437 /** aleksey logging. */
438 RTLOGGRPFLAGS_ALEKSEY = 0x01000000,
439 /** dj logging. */
440 RTLOGGRPFLAGS_DJ = 0x02000000,
441 /** NoName logging. */
442 RTLOGGRPFLAGS_NONAME = 0x04000000
443} RTLOGGRPFLAGS;
444
445/**
446 * Logger destination type.
447 */
448typedef enum RTLOGDEST
449{
450 /** Log to file. */
451 RTLOGDEST_FILE = 0x00000001,
452 /** Log to stdout. */
453 RTLOGDEST_STDOUT = 0x00000002,
454 /** Log to stderr. */
455 RTLOGDEST_STDERR = 0x00000004,
456 /** Log to debugger (win32 only). */
457 RTLOGDEST_DEBUGGER = 0x00000008,
458 /** Log to com port. */
459 RTLOGDEST_COM = 0x00000010,
460 /** Just a dummy flag to be used when no other flag applies. */
461 RTLOGDEST_DUMMY = 0x20000000,
462 /** Log to a user defined output stream. */
463 RTLOGDEST_USER = 0x40000000
464} RTLOGDEST;
465
466
467RTDECL(void) RTLogPrintfEx(void *pvInstance, unsigned fFlags, unsigned iGroup, const char *pszFormat, ...);
468
469
470#ifdef DOXYGEN_RUNNING
471# define LOG_DISABLED
472# define LOG_ENABLED
473# define LOG_ENABLE_FLOW
474#endif
475
476/** @def LOG_DISABLED
477 * Use this compile time define to disable all logging macros. It can
478 * be overridden for each of the logging macros by the LOG_ENABLE*
479 * compile time defines.
480 */
481
482/** @def LOG_ENABLED
483 * Use this compile time define to enable logging when not in debug mode
484 * or LOG_DISABLED is set.
485 * This will enabled Log() only.
486 */
487
488/** @def LOG_ENABLE_FLOW
489 * Use this compile time define to enable flow logging when not in
490 * debug mode or LOG_DISABLED is defined.
491 * This will enable LogFlow() only.
492 */
493
494/*
495 * Determine whether logging is enabled and forcefully normalize the indicators.
496 */
497#if (defined(DEBUG) || defined(LOG_ENABLED)) && !defined(LOG_DISABLED)
498# undef LOG_DISABLED
499# undef LOG_ENABLED
500# define LOG_ENABLED
501#else
502# undef LOG_ENABLED
503# undef LOG_DISABLED
504# define LOG_DISABLED
505#endif
506
507
508/** @def LOG_USE_C99
509 * Governs the use of variadic macros.
510 */
511#ifndef LOG_USE_C99
512# if defined(RT_ARCH_AMD64) || defined(RT_OS_DARWIN) || defined(RT_ARCH_SPARC) || defined(RT_ARCH_SPARC64)
513# define LOG_USE_C99
514# endif
515#endif
516
517
518/** @def LogIt
519 * Write to specific logger if group enabled.
520 */
521#ifdef LOG_ENABLED
522# if defined(LOG_USE_C99)
523# define _LogRemoveParentheseis(...) __VA_ARGS__
524# define _LogIt(a_pvInst, a_fFlags, a_iGroup, ...) RTLogLoggerEx((PRTLOGGER)a_pvInst, a_fFlags, a_iGroup, __VA_ARGS__)
525# define LogIt(a_pvInst, a_fFlags, a_iGroup, fmtargs) _LogIt(a_pvInst, a_fFlags, a_iGroup, _LogRemoveParentheseis fmtargs)
526# define _LogItAlways(a_pvInst, a_fFlags, a_iGroup, ...) RTLogLoggerEx((PRTLOGGER)a_pvInst, a_fFlags, ~0U, __VA_ARGS__)
527# define LogItAlways(a_pvInst, a_fFlags, a_iGroup, fmtargs) _LogItAlways(a_pvInst, a_fFlags, a_iGroup, _LogRemoveParentheseis fmtargs)
528 /** @todo invent a flag or something for skipping the group check so we can pass iGroup. LogItAlways. */
529# else
530# define LogIt(a_pvInst, a_fFlags, a_iGroup, fmtargs) \
531 do \
532 { \
533 register PRTLOGGER LogIt_pLogger = (PRTLOGGER)(a_pvInst) ? (PRTLOGGER)(a_pvInst) : RTLogDefaultInstance(); \
534 if ( LogIt_pLogger \
535 && !(LogIt_pLogger->fFlags & RTLOGFLAGS_DISABLED)) \
536 { \
537 register unsigned LogIt_fFlags = LogIt_pLogger->afGroups[(unsigned)(a_iGroup) < LogIt_pLogger->cGroups ? (unsigned)(a_iGroup) : 0]; \
538 if ((LogIt_fFlags & ((a_fFlags) | RTLOGGRPFLAGS_ENABLED)) == ((a_fFlags) | RTLOGGRPFLAGS_ENABLED)) \
539 LogIt_pLogger->pfnLogger fmtargs; \
540 } \
541 } while (0)
542# define LogItAlways(a_pvInst, a_fFlags, a_iGroup, fmtargs) \
543 do \
544 { \
545 register PRTLOGGER LogIt_pLogger = (PRTLOGGER)(a_pvInst) ? (PRTLOGGER)(a_pvInst) : RTLogDefaultInstance(); \
546 if ( LogIt_pLogger \
547 && !(LogIt_pLogger->fFlags & RTLOGFLAGS_DISABLED)) \
548 LogIt_pLogger->pfnLogger fmtargs; \
549 } while (0)
550# endif
551#else
552# define LogIt(a_pvInst, a_fFlags, a_iGroup, fmtargs) do { } while (0)
553# define LogItAlways(a_pvInst, a_fFlags, a_iGroup, fmtargs) do { } while (0)
554# if defined(LOG_USE_C99)
555# define _LogRemoveParentheseis(...) __VA_ARGS__
556# define _LogIt(a_pvInst, a_fFlags, a_iGroup, ...) do { } while (0)
557# define _LogItAlways(a_pvInst, a_fFlags, a_iGroup, ...) do { } while (0)
558# endif
559#endif
560
561
562/** @def Log
563 * Level 1 logging that works regardless of the group settings.
564 */
565#define LogAlways(a) LogItAlways(LOG_INSTANCE, RTLOGGRPFLAGS_LEVEL_1, LOG_GROUP, a)
566
567/** @def Log
568 * Level 1 logging.
569 */
570#define Log(a) LogIt(LOG_INSTANCE, RTLOGGRPFLAGS_LEVEL_1, LOG_GROUP, a)
571
572/** @def Log2
573 * Level 2 logging.
574 */
575#define Log2(a) LogIt(LOG_INSTANCE, RTLOGGRPFLAGS_LEVEL_2, LOG_GROUP, a)
576
577/** @def Log3
578 * Level 3 logging.
579 */
580#define Log3(a) LogIt(LOG_INSTANCE, RTLOGGRPFLAGS_LEVEL_3, LOG_GROUP, a)
581
582/** @def Log4
583 * Level 4 logging.
584 */
585#define Log4(a) LogIt(LOG_INSTANCE, RTLOGGRPFLAGS_LEVEL_4, LOG_GROUP, a)
586
587/** @def Log5
588 * Level 5 logging.
589 */
590#define Log5(a) LogIt(LOG_INSTANCE, RTLOGGRPFLAGS_LEVEL_5, LOG_GROUP, a)
591
592/** @def Log6
593 * Level 6 logging.
594 */
595#define Log6(a) LogIt(LOG_INSTANCE, RTLOGGRPFLAGS_LEVEL_6, LOG_GROUP, a)
596
597/** @def LogFlow
598 * Logging of execution flow.
599 */
600#define LogFlow(a) LogIt(LOG_INSTANCE, RTLOGGRPFLAGS_FLOW, LOG_GROUP, a)
601
602/** @def LogLelik
603 * lelik logging.
604 */
605#define LogLelik(a) LogIt(LOG_INSTANCE, RTLOGGRPFLAGS_LELIK, LOG_GROUP, a)
606
607
608/** @def LogMichael
609 * michael logging.
610 */
611#define LogMichael(a) LogIt(LOG_INSTANCE, RTLOGGRPFLAGS_MICHAEL, LOG_GROUP, a)
612
613/** @def LogSunlover
614 * sunlover logging.
615 */
616#define LogSunlover(a) LogIt(LOG_INSTANCE, RTLOGGRPFLAGS_SUNLOVER, LOG_GROUP, a)
617
618/** @def LogAchim
619 * Achim logging.
620 */
621#define LogAchim(a) LogIt(LOG_INSTANCE, RTLOGGRPFLAGS_ACHIM, LOG_GROUP, a)
622
623/** @def LogSander
624 * Sander logging.
625 */
626#define LogSander(a) LogIt(LOG_INSTANCE, RTLOGGRPFLAGS_SANDER, LOG_GROUP, a)
627
628/** @def LogKlaus
629 * klaus logging.
630 */
631#define LogKlaus(a) LogIt(LOG_INSTANCE, RTLOGGRPFLAGS_KLAUS, LOG_GROUP, a)
632
633/** @def LogFrank
634 * frank logging.
635 */
636#define LogFrank(a) LogIt(LOG_INSTANCE, RTLOGGRPFLAGS_FRANK, LOG_GROUP, a)
637
638/** @def LogBird
639 * bird logging.
640 */
641#define LogBird(a) LogIt(LOG_INSTANCE, RTLOGGRPFLAGS_BIRD, LOG_GROUP, a)
642
643/** @def LogAleksey
644 * aleksey logging.
645 */
646#define LogAleksey(a) LogIt(LOG_INSTANCE, RTLOGGRPFLAGS_ALEKSEY, LOG_GROUP, a)
647
648/** @def LogDJ
649 * dj logging.
650 */
651#define LogDJ(a) LogIt(LOG_INSTANCE, RTLOGGRPFLAGS_DJ, LOG_GROUP, a)
652
653/** @def LogNoName
654 * NoName logging.
655 */
656#define LogNoName(a) LogIt(LOG_INSTANCE, RTLOGGRPFLAGS_NONAME, LOG_GROUP, a)
657
658/** @def LogWarning
659 * The same as Log(), but prepents a <tt>"WARNING! "</tt> string to the message.
660 *
661 * @param a Custom log message in format <tt>("string\n" [, args])</tt>.
662 */
663#if defined(LOG_USE_C99)
664# define LogWarning(a) \
665 _LogIt(LOG_INSTANCE, RTLOGGRPFLAGS_LEVEL_1, LOG_GROUP, "WARNING! %M", _LogRemoveParentheseis a )
666#else
667# define LogWarning(a) \
668 do { Log(("WARNING! ")); Log(a); } while (0)
669#endif
670
671/** @def LogTrace
672 * Macro to trace the execution flow: logs the file name, line number and
673 * function name. Can be easily searched for in log files using the
674 * ">>>>>" pattern (prepended to the beginning of each line).
675 */
676#define LogTrace() \
677 LogFlow((">>>>> %s (%d): " LOG_FN_FMT "\n", __FILE__, __LINE__, __PRETTY_FUNCTION__))
678
679/** @def LogTraceMsg
680 * The same as LogTrace but logs a custom log message right after the trace line.
681 *
682 * @param a Custom log message in format <tt>("string\n" [, args])</tt>.
683 */
684#ifdef LOG_USE_C99
685# define LogTraceMsg(a) \
686 _LogIt(LOG_INSTANCE, RTLOGGRPFLAGS_FLOW, LOG_GROUP, ">>>>> %s (%d): " LOG_FN_FMT ": %M", __FILE__, __LINE__, __PRETTY_FUNCTION__, _LogRemoveParentheseis a )
687#else
688# define LogTraceMsg(a) \
689 do { LogFlow((">>>>> %s (%d): " LOG_FN_FMT ": ", __FILE__, __LINE__, __PRETTY_FUNCTION__)); LogFlow(a); } while (0)
690#endif
691
692/** @def LogFunc
693 * Level 1 logging inside C/C++ functions.
694 *
695 * Prepends the given log message with the function name followed by a
696 * semicolon and space.
697 *
698 * @param a Log message in format <tt>("string\n" [, args])</tt>.
699 */
700#ifdef LOG_USE_C99
701# define LogFunc(a) \
702 _LogIt(LOG_INSTANCE, RTLOGGRPFLAGS_LEVEL_1, LOG_GROUP, LOG_FN_FMT ": %M", __PRETTY_FUNCTION__, _LogRemoveParentheseis a )
703#else
704# define LogFunc(a) \
705 do { Log((LOG_FN_FMT ": ", __PRETTY_FUNCTION__)); Log(a); } while (0)
706#endif
707
708/** @def Log4Func
709 * Level 4 logging inside C/C++ functions.
710 *
711 * Prepends the given log message with the function name followed by a
712 * semicolon and space.
713 *
714 * @param a Log message in format <tt>("string\n" [, args])</tt>.
715 */
716#ifdef LOG_USE_C99
717# define Log4Func(a) \
718 _LogIt(LOG_INSTANCE, RTLOGGRPFLAGS_LEVEL_4, LOG_GROUP, LOG_FN_FMT ": %M", __PRETTY_FUNCTION__, _LogRemoveParentheseis a )
719#else
720# define Log4Func(a) \
721 do { Log((LOG_FN_FMT ": ", __PRETTY_FUNCTION__)); Log(a); } while (0)
722#endif
723
724/** @def LogThisFunc
725 * The same as LogFunc but for class functions (methods): the resulting log
726 * line is additionally prepended with a hex value of |this| pointer.
727 *
728 * @param a Log message in format <tt>("string\n" [, args])</tt>.
729 */
730#ifdef LOG_USE_C99
731# define LogThisFunc(a) \
732 _LogIt(LOG_INSTANCE, RTLOGGRPFLAGS_LEVEL_1, LOG_GROUP, "{%p} " LOG_FN_FMT ": %M", this, __PRETTY_FUNCTION__, _LogRemoveParentheseis a )
733#else
734# define LogThisFunc(a) \
735 do { Log(("{%p} " LOG_FN_FMT ": ", this, __PRETTY_FUNCTION__)); Log(a); } while (0)
736#endif
737
738/** @def LogFlowFunc
739 * Macro to log the execution flow inside C/C++ functions.
740 *
741 * Prepends the given log message with the function name followed by
742 * a semicolon and space.
743 *
744 * @param a Log message in format <tt>("string\n" [, args])</tt>.
745 */
746#ifdef LOG_USE_C99
747# define LogFlowFunc(a) \
748 _LogIt(LOG_INSTANCE, RTLOGGRPFLAGS_FLOW, LOG_GROUP, LOG_FN_FMT ": %M", __PRETTY_FUNCTION__, _LogRemoveParentheseis a )
749#else
750# define LogFlowFunc(a) \
751 do { LogFlow((LOG_FN_FMT ": ", __PRETTY_FUNCTION__)); LogFlow(a); } while (0)
752#endif
753
754/** @def LogWarningFunc
755 * The same as LogWarning(), but prepents the log message with the function name.
756 *
757 * @param a Log message in format <tt>("string\n" [, args])</tt>.
758 */
759#ifdef LOG_USE_C99
760# define LogWarningFunc(a) \
761 _LogIt(LOG_INSTANCE, RTLOGGRPFLAGS_LEVEL_1, LOG_GROUP, LOG_FN_FMT ": WARNING! %M", __PRETTY_FUNCTION__, _LogRemoveParentheseis a )
762#else
763# define LogWarningFunc(a) \
764 do { Log((LOG_FN_FMT ": WARNING! ", __PRETTY_FUNCTION__)); Log(a); } while (0)
765#endif
766
767/** @def LogFlowThisFunc
768 * The same as LogFlowFunc but for class functions (methods): the resulting log
769 * line is additionally prepended with a hex value of |this| pointer.
770 *
771 * @param a Log message in format <tt>("string\n" [, args])</tt>.
772 */
773#ifdef LOG_USE_C99
774# define LogFlowThisFunc(a) \
775 _LogIt(LOG_INSTANCE, RTLOGGRPFLAGS_FLOW, LOG_GROUP, "{%p} " LOG_FN_FMT ": %M", this, __PRETTY_FUNCTION__, _LogRemoveParentheseis a )
776#else
777# define LogFlowThisFunc(a) \
778 do { LogFlow(("{%p} " LOG_FN_FMT ": ", this, __PRETTY_FUNCTION__)); LogFlow(a); } while (0)
779#endif
780
781/** @def LogWarningThisFunc
782 * The same as LogWarningFunc() but for class functions (methods): the resulting
783 * log line is additionally prepended with a hex value of |this| pointer.
784 *
785 * @param a Log message in format <tt>("string\n" [, args])</tt>.
786 */
787#ifdef LOG_USE_C99
788# define LogWarningThisFunc(a) \
789 _LogIt(LOG_INSTANCE, RTLOGGRPFLAGS_LEVEL_1, LOG_GROUP, "{%p} " LOG_FN_FMT ": WARNING! %M", this, __PRETTY_FUNCTION__, _LogRemoveParentheseis a )
790#else
791# define LogWarningThisFunc(a) \
792 do { Log(("{%p} " LOG_FN_FMT ": WARNING! ", this, __PRETTY_FUNCTION__)); Log(a); } while (0)
793#endif
794
795/** Shortcut to |LogFlowFunc ("ENTER\n")|, marks the beginnig of the function. */
796#define LogFlowFuncEnter() LogFlowFunc(("ENTER\n"))
797
798/** Shortcut to |LogFlowFunc ("LEAVE\n")|, marks the end of the function. */
799#define LogFlowFuncLeave() LogFlowFunc(("LEAVE\n"))
800
801/** Shortcut to |LogFlowFunc ("LEAVE: %Rrc\n")|, marks the end of the function. */
802#define LogFlowFuncLeaveRC(rc) LogFlowFunc(("LEAVE: %Rrc\n", (rc)))
803
804/** Shortcut to |LogFlowThisFunc ("ENTER\n")|, marks the beginnig of the function. */
805#define LogFlowThisFuncEnter() LogFlowThisFunc(("ENTER\n"))
806
807/** Shortcut to |LogFlowThisFunc ("LEAVE\n")|, marks the end of the function. */
808#define LogFlowThisFuncLeave() LogFlowThisFunc(("LEAVE\n"))
809
810/** @def LogObjRefCnt
811 * Helper macro to print the current reference count of the given COM object
812 * to the log file.
813 *
814 * @param pObj Pointer to the object in question (must be a pointer to an
815 * IUnknown subclass or simply define COM-style AddRef() and
816 * Release() methods)
817 *
818 * @note Use it only for temporary debugging. It leaves dummy code even if
819 * logging is disabled.
820 */
821#define LogObjRefCnt(pObj) \
822 do { \
823 int refc = (pObj)->AddRef(); \
824 LogFlow((#pObj "{%p}.refCnt=%d\n", (pObj), refc - 1)); \
825 (pObj)->Release(); \
826 } while (0)
827
828
829/** @def LogIsItEnabled
830 * Checks whether the specified logging group is enabled or not.
831 */
832#ifdef LOG_ENABLED
833# define LogIsItEnabled(a_pvInst, a_fFlags, a_iGroup) \
834 LogIsItEnabledInternal((a_pvInst), (unsigned)(a_iGroup), (unsigned)(a_fFlags))
835#else
836# define LogIsItEnabled(a_pvInst, a_fFlags, a_iGroup) (false)
837#endif
838
839/** @def LogIsEnabled
840 * Checks whether level 1 logging is enabled.
841 */
842#define LogIsEnabled() LogIsItEnabled(LOG_INSTANCE, RTLOGGRPFLAGS_LEVEL_1, LOG_GROUP)
843
844/** @def LogIs2Enabled
845 * Checks whether level 2 logging is enabled.
846 */
847#define LogIs2Enabled() LogIsItEnabled(LOG_INSTANCE, RTLOGGRPFLAGS_LEVEL_2, LOG_GROUP)
848
849/** @def LogIs3Enabled
850 * Checks whether level 3 logging is enabled.
851 */
852#define LogIs3Enabled() LogIsItEnabled(LOG_INSTANCE, RTLOGGRPFLAGS_LEVEL_3, LOG_GROUP)
853
854/** @def LogIs4Enabled
855 * Checks whether level 4 logging is enabled.
856 */
857#define LogIs4Enabled() LogIsItEnabled(LOG_INSTANCE, RTLOGGRPFLAGS_LEVEL_4, LOG_GROUP)
858
859/** @def LogIs5Enabled
860 * Checks whether level 5 logging is enabled.
861 */
862#define LogIs5Enabled() LogIsItEnabled(LOG_INSTANCE, RTLOGGRPFLAGS_LEVEL_5, LOG_GROUP)
863
864/** @def LogIs6Enabled
865 * Checks whether level 6 logging is enabled.
866 */
867#define LogIs6Enabled() LogIsItEnabled(LOG_INSTANCE, RTLOGGRPFLAGS_LEVEL_6, LOG_GROUP)
868
869/** @def LogIsFlowEnabled
870 * Checks whether execution flow logging is enabled.
871 */
872#define LogIsFlowEnabled() LogIsItEnabled(LOG_INSTANCE, RTLOGGRPFLAGS_FLOW, LOG_GROUP)
873
874
875/** @name Passing Function Call Position When Logging.
876 *
877 * This is a little bit ugly as we have to omit the comma before the
878 * position parameters so that we don't inccur any overhead in non-logging
879 * builds (!defined(LOG_ENABLED).
880 *
881 * @{ */
882/** Source position for passing to a function call. */
883#ifdef LOG_ENABLED
884# define RTLOG_COMMA_SRC_POS , __FILE__, __LINE__, __PRETTY_FUNCTION__
885#else
886# define RTLOG_COMMA_SRC_POS RT_NOTHING
887#endif
888/** Source position declaration. */
889#ifdef LOG_ENABLED
890# define RTLOG_COMMA_SRC_POS_DECL , const char *pszFile, unsigned iLine, const char *pszFunction
891#else
892# define RTLOG_COMMA_SRC_POS_DECL RT_NOTHING
893#endif
894/** Source position arguments. */
895#ifdef LOG_ENABLED
896# define RTLOG_COMMA_SRC_POS_ARGS , pszFile, iLine, pszFunction
897#else
898# define RTLOG_COMMA_SRC_POS_ARGS RT_NOTHING
899#endif
900/** Applies NOREF() to the source position arguments. */
901#ifdef LOG_ENABLED
902# define RTLOG_SRC_POS_NOREF() do { NOREF(pszFile); NOREF(iLine); NOREF(pszFunction); } while (0)
903#else
904# define RTLOG_SRC_POS_NOREF() do { } while (0)
905#endif
906/** @} */
907
908
909
910/** @name Release Logging
911 * @{
912 */
913
914#ifdef DOXYGEN_RUNNING
915# define RTLOG_REL_DISABLED
916# define RTLOG_REL_ENABLED
917#endif
918
919/** @def RTLOG_REL_DISABLED
920 * Use this compile time define to disable all release logging
921 * macros.
922 */
923
924/** @def RTLOG_REL_ENABLED
925 * Use this compile time define to override RTLOG_REL_DISABLE.
926 */
927
928/*
929 * Determine whether release logging is enabled and forcefully normalize the indicators.
930 */
931#if !defined(RTLOG_REL_DISABLED) || defined(RTLOG_REL_ENABLED)
932# undef RTLOG_REL_DISABLED
933# undef RTLOG_REL_ENABLED
934# define RTLOG_REL_ENABLED
935#else
936# undef RTLOG_REL_ENABLED
937# undef RTLOG_REL_DISABLED
938# define RTLOG_REL_DISABLED
939#endif
940
941
942/** @def LogIt
943 * Write to specific logger if group enabled.
944 */
945#ifdef RTLOG_REL_ENABLED
946# if defined(LOG_USE_C99)
947# define _LogRelRemoveParentheseis(...) __VA_ARGS__
948# define _LogRelIt(a_pvInst, a_fFlags, a_iGroup, ...) \
949 do \
950 { \
951 PRTLOGGER LogRelIt_pLogger = (PRTLOGGER)(a_pvInst) ? (PRTLOGGER)(a_pvInst) : RTLogRelDefaultInstance(); \
952 if ( LogRelIt_pLogger \
953 && !(LogRelIt_pLogger->fFlags & RTLOGFLAGS_DISABLED)) \
954 RTLogLoggerEx(LogRelIt_pLogger, a_fFlags, a_iGroup, __VA_ARGS__); \
955 _LogIt(LOG_INSTANCE, a_fFlags, a_iGroup, __VA_ARGS__); \
956 } while (0)
957# define LogRelIt(a_pvInst, a_fFlags, a_iGroup, fmtargs) _LogRelIt(a_pvInst, a_fFlags, a_iGroup, _LogRelRemoveParentheseis fmtargs)
958# else
959# define LogRelIt(a_pvInst, a_fFlags, a_iGroup, fmtargs) \
960 do \
961 { \
962 PRTLOGGER LogRelIt_pLogger = (PRTLOGGER)(a_pvInst) ? (PRTLOGGER)(a_pvInst) : RTLogRelDefaultInstance(); \
963 if ( LogRelIt_pLogger \
964 && !(LogRelIt_pLogger->fFlags & RTLOGFLAGS_DISABLED)) \
965 { \
966 unsigned LogIt_fFlags = LogRelIt_pLogger->afGroups[(unsigned)(a_iGroup) < LogRelIt_pLogger->cGroups ? (unsigned)(a_iGroup) : 0]; \
967 if ((LogIt_fFlags & ((a_fFlags) | RTLOGGRPFLAGS_ENABLED)) == ((a_fFlags) | RTLOGGRPFLAGS_ENABLED)) \
968 LogRelIt_pLogger->pfnLogger fmtargs; \
969 } \
970 LogIt(LOG_INSTANCE, a_fFlags, a_iGroup, fmtargs); \
971 } while (0)
972# endif
973#else /* !RTLOG_REL_ENABLED */
974# define LogRelIt(a_pvInst, a_fFlags, a_iGroup, fmtargs) do { } while (0)
975# if defined(LOG_USE_C99)
976# define _LogRelRemoveParentheseis(...) __VA_ARGS__
977# define _LogRelIt(a_pvInst, a_fFlags, a_iGroup, ...) do { } while (0)
978# endif
979#endif /* !RTLOG_REL_ENABLED */
980
981
982/** @def LogRel
983 * Level 1 logging.
984 */
985#define LogRel(a) LogRelIt(LOG_REL_INSTANCE, RTLOGGRPFLAGS_LEVEL_1, LOG_GROUP, a)
986
987/** @def LogRel2
988 * Level 2 logging.
989 */
990#define LogRel2(a) LogRelIt(LOG_REL_INSTANCE, RTLOGGRPFLAGS_LEVEL_2, LOG_GROUP, a)
991
992/** @def LogRel3
993 * Level 3 logging.
994 */
995#define LogRel3(a) LogRelIt(LOG_REL_INSTANCE, RTLOGGRPFLAGS_LEVEL_3, LOG_GROUP, a)
996
997/** @def LogRel4
998 * Level 4 logging.
999 */
1000#define LogRel4(a) LogRelIt(LOG_REL_INSTANCE, RTLOGGRPFLAGS_LEVEL_4, LOG_GROUP, a)
1001
1002/** @def LogRel5
1003 * Level 5 logging.
1004 */
1005#define LogRel5(a) LogRelIt(LOG_REL_INSTANCE, RTLOGGRPFLAGS_LEVEL_5, LOG_GROUP, a)
1006
1007/** @def LogRel6
1008 * Level 6 logging.
1009 */
1010#define LogRel6(a) LogRelIt(LOG_REL_INSTANCE, RTLOGGRPFLAGS_LEVEL_6, LOG_GROUP, a)
1011
1012/** @def LogRelFlow
1013 * Logging of execution flow.
1014 */
1015#define LogRelFlow(a) LogRelIt(LOG_REL_INSTANCE, RTLOGGRPFLAGS_FLOW, LOG_GROUP, a)
1016
1017/** @def LogRelFunc
1018 * Release logging. Prepends the given log message with the function name
1019 * followed by a semicolon and space.
1020 */
1021#ifdef LOG_USE_C99
1022# define LogRelFunc(a) \
1023 _LogRelIt(LOG_REL_INSTANCE, RTLOGGRPFLAGS_LEVEL_1, LOG_GROUP, LOG_FN_FMT ": %M", __PRETTY_FUNCTION__, _LogRemoveParentheseis a )
1024# define LogFunc(a) \
1025 _LogIt(LOG_INSTANCE, RTLOGGRPFLAGS_LEVEL_1, LOG_GROUP, LOG_FN_FMT ": %M", __PRETTY_FUNCTION__, _LogRemoveParentheseis a )
1026#else
1027# define LogRelFunc(a) \
1028 do { LogRel((LOG_FN_FMT ": ", __PRETTY_FUNCTION__)); LogRel(a); } while (0)
1029#endif
1030
1031/** @def LogRelThisFunc
1032 * The same as LogRelFunc but for class functions (methods): the resulting log
1033 * line is additionally prepended with a hex value of |this| pointer.
1034 */
1035#ifdef LOG_USE_C99
1036# define LogRelThisFunc(a) \
1037 _LogRelIt(LOG_REL_INSTANCE, RTLOGGRPFLAGS_LEVEL_1, LOG_GROUP, "{%p} " LOG_FN_FMT ": %M", this, __PRETTY_FUNCTION__, _LogRemoveParentheseis a )
1038#else
1039# define LogRelThisFunc(a) \
1040 do { LogRel(("{%p} " LOG_FN_FMT ": ", this, __PRETTY_FUNCTION__)); LogRel(a); } while (0)
1041#endif
1042
1043/** @def LogRelFlowFunc
1044 * Release logging. Macro to log the execution flow inside C/C++ functions.
1045 *
1046 * Prepends the given log message with the function name followed by
1047 * a semicolon and space.
1048 *
1049 * @param a Log message in format <tt>("string\n" [, args])</tt>.
1050 */
1051#ifdef LOG_USE_C99
1052# define LogRelFlowFunc(a) \
1053 _LogRelIt(LOG_REL_INSTANCE, RTLOGGRPFLAGS_FLOW, LOG_GROUP, LOG_FN_FMT ": %M", __PRETTY_FUNCTION__, _LogRemoveParentheseis a )
1054#else
1055# define LogRelFlowFunc(a) \
1056 do { LogRelFlow((LOG_FN_FMT ": ", __PRETTY_FUNCTION__)); LogRelFlow(a); } while (0)
1057#endif
1058
1059/** @def LogRelLelik
1060 * lelik logging.
1061 */
1062#define LogRelLelik(a) LogRelIt(LOG_REL_INSTANCE, RTLOGGRPFLAGS_LELIK, LOG_GROUP, a)
1063
1064/** @def LogRelMichael
1065 * michael logging.
1066 */
1067#define LogRelMichael(a) LogRelIt(LOG_REL_INSTANCE, RTLOGGRPFLAGS_MICHAEL, LOG_GROUP, a)
1068
1069/** @def LogRelSunlover
1070 * sunlover logging.
1071 */
1072#define LogRelSunlover(a) LogRelIt(LOG_REL_INSTANCE, RTLOGGRPFLAGS_SUNLOVER, LOG_GROUP, a)
1073
1074/** @def LogRelAchim
1075 * Achim logging.
1076 */
1077#define LogRelAchim(a) LogRelIt(LOG_REL_INSTANCE, RTLOGGRPFLAGS_ACHIM, LOG_GROUP, a)
1078
1079/** @def LogRelSander
1080 * Sander logging.
1081 */
1082#define LogRelSander(a) LogRelIt(LOG_REL_INSTANCE, RTLOGGRPFLAGS_SANDER, LOG_GROUP, a)
1083
1084/** @def LogRelKlaus
1085 * klaus logging.
1086 */
1087#define LogRelKlaus(a) LogRelIt(LOG_REL_INSTANCE, RTLOGGRPFLAGS_KLAUS, LOG_GROUP, a)
1088
1089/** @def LogRelFrank
1090 * frank logging.
1091 */
1092#define LogRelFrank(a) LogRelIt(LOG_REL_INSTANCE, RTLOGGRPFLAGS_FRANK, LOG_GROUP, a)
1093
1094/** @def LogRelBird
1095 * bird logging.
1096 */
1097#define LogRelBird(a) LogRelIt(LOG_REL_INSTANCE, RTLOGGRPFLAGS_BIRD, LOG_GROUP, a)
1098
1099/** @def LogRelNoName
1100 * NoName logging.
1101 */
1102#define LogRelNoName(a) LogRelIt(LOG_REL_INSTANCE, RTLOGGRPFLAGS_NONAME, LOG_GROUP, a)
1103
1104
1105/** @def LogRelIsItEnabled
1106 * Checks whether the specified logging group is enabled or not.
1107 */
1108#define LogRelIsItEnabled(a_pvInst, a_fFlags, a_iGroup) \
1109 LogRelIsItEnabledInternal((a_pvInst), (unsigned)(a_iGroup), (unsigned)(a_fFlags))
1110
1111/** @def LogRelIsEnabled
1112 * Checks whether level 1 logging is enabled.
1113 */
1114#define LogRelIsEnabled() LogRelIsItEnabled(LOG_REL_INSTANCE, RTLOGGRPFLAGS_LEVEL_1, LOG_GROUP)
1115
1116/** @def LogRelIs2Enabled
1117 * Checks whether level 2 logging is enabled.
1118 */
1119#define LogRelIs2Enabled() LogRelIsItEnabled(LOG_REL_INSTANCE, RTLOGGRPFLAGS_LEVEL_2, LOG_GROUP)
1120
1121/** @def LogRelIs3Enabled
1122 * Checks whether level 3 logging is enabled.
1123 */
1124#define LogRelIs3Enabled() LogRelIsItEnabled(LOG_REL_INSTANCE, RTLOGGRPFLAGS_LEVEL_3, LOG_GROUP)
1125
1126/** @def LogRelIs4Enabled
1127 * Checks whether level 4 logging is enabled.
1128 */
1129#define LogRelIs4Enabled() LogRelIsItEnabled(LOG_REL_INSTANCE, RTLOGGRPFLAGS_LEVEL_4, LOG_GROUP)
1130
1131/** @def LogRelIs5Enabled
1132 * Checks whether level 5 logging is enabled.
1133 */
1134#define LogRelIs5Enabled() LogRelIsItEnabled(LOG_REL_INSTANCE, RTLOGGRPFLAGS_LEVEL_5, LOG_GROUP)
1135
1136/** @def LogRelIs6Enabled
1137 * Checks whether level 6 logging is enabled.
1138 */
1139#define LogRelIs6Enabled() LogRelIsItEnabled(LOG_REL_INSTANCE, RTLOGGRPFLAGS_LEVEL_6, LOG_GROUP)
1140
1141/** @def LogRelIsFlowEnabled
1142 * Checks whether execution flow logging is enabled.
1143 */
1144#define LogRelIsFlowEnabled() LogRelIsItEnabled(LOG_REL_INSTANCE, RTLOGGRPFLAGS_FLOW, LOG_GROUP)
1145
1146
1147#ifndef IN_RC
1148/**
1149 * Sets the default release logger instance.
1150 *
1151 * @returns The old default instance.
1152 * @param pLogger The new default release logger instance.
1153 */
1154RTDECL(PRTLOGGER) RTLogRelSetDefaultInstance(PRTLOGGER pLogger);
1155#endif /* !IN_RC */
1156
1157/**
1158 * Gets the default release logger instance.
1159 *
1160 * @returns Pointer to default release logger instance.
1161 * @returns NULL if no default release logger instance available.
1162 */
1163RTDECL(PRTLOGGER) RTLogRelDefaultInstance(void);
1164
1165/** Internal worker function.
1166 * Don't call directly, use the LogRelIsItEnabled macro!
1167 */
1168DECLINLINE(bool) LogRelIsItEnabledInternal(void *pvInst, unsigned iGroup, unsigned fFlags)
1169{
1170 register PRTLOGGER pLogger = (PRTLOGGER)pvInst ? (PRTLOGGER)pvInst : RTLogRelDefaultInstance();
1171 if ( pLogger
1172 && !(pLogger->fFlags & RTLOGFLAGS_DISABLED))
1173 {
1174 register unsigned fGrpFlags = pLogger->afGroups[(unsigned)iGroup < pLogger->cGroups ? (unsigned)iGroup : 0];
1175 if ((fGrpFlags & (fFlags | RTLOGGRPFLAGS_ENABLED)) == (fFlags | RTLOGGRPFLAGS_ENABLED))
1176 return true;
1177 }
1178 return false;
1179}
1180
1181/**
1182 * Write to a logger instance, defaulting to the release one.
1183 *
1184 * This function will check whether the instance, group and flags makes up a
1185 * logging kind which is currently enabled before writing anything to the log.
1186 *
1187 * @param pLogger Pointer to logger instance.
1188 * @param fFlags The logging flags.
1189 * @param iGroup The group.
1190 * The value ~0U is reserved for compatibility with RTLogLogger[V] and is
1191 * only for internal usage!
1192 * @param pszFormat Format string.
1193 * @param ... Format arguments.
1194 * @remark This is a worker function for LogRelIt.
1195 */
1196RTDECL(void) RTLogRelLogger(PRTLOGGER pLogger, unsigned fFlags, unsigned iGroup, const char *pszFormat, ...);
1197
1198/**
1199 * Write to a logger instance, defaulting to the release one.
1200 *
1201 * This function will check whether the instance, group and flags makes up a
1202 * logging kind which is currently enabled before writing anything to the log.
1203 *
1204 * @param pLogger Pointer to logger instance. If NULL the default release instance is attempted.
1205 * @param fFlags The logging flags.
1206 * @param iGroup The group.
1207 * The value ~0U is reserved for compatibility with RTLogLogger[V] and is
1208 * only for internal usage!
1209 * @param pszFormat Format string.
1210 * @param args Format arguments.
1211 */
1212RTDECL(void) RTLogRelLoggerV(PRTLOGGER pLogger, unsigned fFlags, unsigned iGroup, const char *pszFormat, va_list args);
1213
1214/**
1215 * printf like function for writing to the default release log.
1216 *
1217 * @param pszFormat Printf like format string.
1218 * @param ... Optional arguments as specified in pszFormat.
1219 *
1220 * @remark The API doesn't support formatting of floating point numbers at the moment.
1221 */
1222RTDECL(void) RTLogRelPrintf(const char *pszFormat, ...);
1223
1224/**
1225 * vprintf like function for writing to the default release log.
1226 *
1227 * @param pszFormat Printf like format string.
1228 * @param args Optional arguments as specified in pszFormat.
1229 *
1230 * @remark The API doesn't support formatting of floating point numbers at the moment.
1231 */
1232RTDECL(void) RTLogRelPrintfV(const char *pszFormat, va_list args);
1233
1234/**
1235 * Changes the buffering setting of the default release logger.
1236 *
1237 * This can be used for optimizing longish logging sequences.
1238 *
1239 * @returns The old state.
1240 * @param fBuffered The new state.
1241 */
1242RTDECL(bool) RTLogRelSetBuffering(bool fBuffered);
1243
1244/** @} */
1245
1246
1247
1248/** @name COM port logging
1249 * {
1250 */
1251
1252#ifdef DOXYGEN_RUNNING
1253# define LOG_TO_COM
1254# define LOG_NO_COM
1255#endif
1256
1257/** @def LOG_TO_COM
1258 * Redirects the normal logging macros to the serial versions.
1259 */
1260
1261/** @def LOG_NO_COM
1262 * Disables all LogCom* macros.
1263 */
1264
1265/** @def LogCom
1266 * Generic logging to serial port.
1267 */
1268#if defined(LOG_ENABLED) && !defined(LOG_NO_COM)
1269# define LogCom(a) RTLogComPrintf a
1270#else
1271# define LogCom(a) do { } while (0)
1272#endif
1273
1274/** @def LogComFlow
1275 * Logging to serial port of execution flow.
1276 */
1277#if defined(LOG_ENABLED) && defined(LOG_ENABLE_FLOW) && !defined(LOG_NO_COM)
1278# define LogComFlow(a) RTLogComPrintf a
1279#else
1280# define LogComFlow(a) do { } while (0)
1281#endif
1282
1283#ifdef LOG_TO_COM
1284# undef Log
1285# define Log(a) LogCom(a)
1286# undef LogFlow
1287# define LogFlow(a) LogComFlow(a)
1288#endif
1289
1290/** @} */
1291
1292
1293/** @name Backdoor Logging
1294 * @{
1295 */
1296
1297#ifdef DOXYGEN_RUNNING
1298# define LOG_TO_BACKDOOR
1299# define LOG_NO_BACKDOOR
1300#endif
1301
1302/** @def LOG_TO_BACKDOOR
1303 * Redirects the normal logging macros to the backdoor versions.
1304 */
1305
1306/** @def LOG_NO_BACKDOOR
1307 * Disables all LogBackdoor* macros.
1308 */
1309
1310/** @def LogBackdoor
1311 * Generic logging to the VBox backdoor via port I/O.
1312 */
1313#if defined(LOG_ENABLED) && !defined(LOG_NO_BACKDOOR)
1314# define LogBackdoor(a) RTLogBackdoorPrintf a
1315#else
1316# define LogBackdoor(a) do { } while (0)
1317#endif
1318
1319/** @def LogBackdoorFlow
1320 * Logging of execution flow messages to the backdoor I/O port.
1321 */
1322#if defined(LOG_ENABLED) && !defined(LOG_NO_BACKDOOR)
1323# define LogBackdoorFlow(a) RTLogBackdoorPrintf a
1324#else
1325# define LogBackdoorFlow(a) do { } while (0)
1326#endif
1327
1328/** @def LogRelBackdoor
1329 * Release logging to the VBox backdoor via port I/O.
1330 */
1331#if !defined(LOG_NO_BACKDOOR)
1332# define LogRelBackdoor(a) RTLogBackdoorPrintf a
1333#else
1334# define LogRelBackdoor(a) do { } while (0)
1335#endif
1336
1337#ifdef LOG_TO_BACKDOOR
1338# undef Log
1339# define Log(a) LogBackdoor(a)
1340# undef LogFlow
1341# define LogFlow(a) LogBackdoorFlow(a)
1342# undef LogRel
1343# define LogRel(a) LogRelBackdoor(a)
1344# if defined(LOG_USE_C99)
1345# undef _LogIt
1346# define _LogIt(a_pvInst, a_fFlags, a_iGroup, ...) LogBackdoor((__VA_ARGS__))
1347# endif
1348#endif
1349
1350/** @} */
1351
1352
1353
1354/**
1355 * Gets the default logger instance, creating it if necessary.
1356 *
1357 * @returns Pointer to default logger instance.
1358 * @returns NULL if no default logger instance available.
1359 */
1360RTDECL(PRTLOGGER) RTLogDefaultInstance(void);
1361
1362/**
1363 * Gets the default logger instance.
1364 *
1365 * @returns Pointer to default logger instance.
1366 * @returns NULL if no default logger instance available.
1367 */
1368RTDECL(PRTLOGGER) RTLogGetDefaultInstance(void);
1369
1370#ifndef IN_RC
1371/**
1372 * Sets the default logger instance.
1373 *
1374 * @returns The old default instance.
1375 * @param pLogger The new default logger instance.
1376 */
1377RTDECL(PRTLOGGER) RTLogSetDefaultInstance(PRTLOGGER pLogger);
1378#endif /* !IN_RC */
1379
1380#ifdef IN_RING0
1381/**
1382 * Changes the default logger instance for the current thread.
1383 *
1384 * @returns IPRT status code.
1385 * @param pLogger The logger instance. Pass NULL for deregistration.
1386 * @param uKey Associated key for cleanup purposes. If pLogger is NULL,
1387 * all instances with this key will be deregistered. So in
1388 * order to only deregister the instance associated with the
1389 * current thread use 0.
1390 */
1391RTDECL(int) RTLogSetDefaultInstanceThread(PRTLOGGER pLogger, uintptr_t uKey);
1392#endif /* IN_RING0 */
1393
1394
1395#ifdef LOG_ENABLED
1396/** Internal worker function.
1397 * Don't call directly, use the LogIsItEnabled macro!
1398 */
1399DECLINLINE(bool) LogIsItEnabledInternal(void *pvInst, unsigned iGroup, unsigned fFlags)
1400{
1401 register PRTLOGGER pLogger = (PRTLOGGER)pvInst ? (PRTLOGGER)pvInst : RTLogDefaultInstance();
1402 if ( pLogger
1403 && !(pLogger->fFlags & RTLOGFLAGS_DISABLED))
1404 {
1405 register unsigned fGrpFlags = pLogger->afGroups[(unsigned)iGroup < pLogger->cGroups ? (unsigned)iGroup : 0];
1406 if ((fGrpFlags & (fFlags | RTLOGGRPFLAGS_ENABLED)) == (fFlags | RTLOGGRPFLAGS_ENABLED))
1407 return true;
1408 }
1409 return false;
1410}
1411#endif
1412
1413
1414#ifndef IN_RC
1415/**
1416 * Creates the default logger instance for a iprt users.
1417 *
1418 * Any user of the logging features will need to implement
1419 * this or use the generic dummy.
1420 *
1421 * @returns Pointer to the logger instance.
1422 */
1423RTDECL(PRTLOGGER) RTLogDefaultInit(void);
1424
1425/**
1426 * Create a logger instance.
1427 *
1428 * @returns iprt status code.
1429 *
1430 * @param ppLogger Where to store the logger instance.
1431 * @param fFlags Logger instance flags, a combination of the
1432 * RTLOGFLAGS_* values.
1433 * @param pszGroupSettings The initial group settings.
1434 * @param pszEnvVarBase Base name for the environment variables for
1435 * this instance.
1436 * @param cGroups Number of groups in the array.
1437 * @param papszGroups Pointer to array of groups. This must stick
1438 * around for the life of the logger instance.
1439 * @param fDestFlags The destination flags. RTLOGDEST_FILE is ORed
1440 * if pszFilenameFmt specified.
1441 * @param pszFilenameFmt Log filename format string. Standard
1442 * RTStrFormat().
1443 * @param ... Format arguments.
1444 */
1445RTDECL(int) RTLogCreate(PRTLOGGER *ppLogger, uint32_t fFlags, const char *pszGroupSettings,
1446 const char *pszEnvVarBase, unsigned cGroups, const char * const * papszGroups,
1447 uint32_t fDestFlags, const char *pszFilenameFmt, ...);
1448
1449/**
1450 * Create a logger instance.
1451 *
1452 * @returns iprt status code.
1453 *
1454 * @param ppLogger Where to store the logger instance.
1455 * @param fFlags Logger instance flags, a combination of the
1456 * RTLOGFLAGS_* values.
1457 * @param pszGroupSettings The initial group settings.
1458 * @param pszEnvVarBase Base name for the environment variables for
1459 * this instance.
1460 * @param cGroups Number of groups in the array.
1461 * @param papszGroups Pointer to array of groups. This must stick
1462 * around for the life of the logger instance.
1463 * @param fDestFlags The destination flags. RTLOGDEST_FILE is ORed
1464 * if pszFilenameFmt specified.
1465 * @param pfnPhase Callback function for starting logging and for
1466 * ending or starting a new file for log history
1467 * rotation. NULL is OK.
1468 * @param cHistory Number of old log files to keep when performing
1469 * log history rotation. 0 means no history.
1470 * @param cbHistoryFileMax Maximum size of log file when performing
1471 * history rotation. 0 means no size limit.
1472 * @param cSecsHistoryTimeSlot Maximum time interval per log file when
1473 * performing history rotation, in seconds.
1474 * 0 means time limit.
1475 * @param pszErrorMsg A buffer which is filled with an error message if something fails. May be NULL.
1476 * @param cchErrorMsg The size of the error message buffer.
1477 * @param pszFilenameFmt Log filename format string. Standard RTStrFormat().
1478 * @param ... Format arguments.
1479 */
1480RTDECL(int) RTLogCreateEx(PRTLOGGER *ppLogger, uint32_t fFlags, const char *pszGroupSettings,
1481 const char *pszEnvVarBase, unsigned cGroups, const char * const * papszGroups,
1482 uint32_t fDestFlags, PFNRTLOGPHASE pfnPhase, uint32_t cHistory,
1483 uint64_t cbHistoryFileMax, uint32_t cSecsHistoryTimeSlot,
1484 char *pszErrorMsg, size_t cchErrorMsg, const char *pszFilenameFmt, ...);
1485
1486/**
1487 * Create a logger instance.
1488 *
1489 * @returns iprt status code.
1490 *
1491 * @param ppLogger Where to store the logger instance.
1492 * @param fFlags Logger instance flags, a combination of the
1493 * RTLOGFLAGS_* values.
1494 * @param pszGroupSettings The initial group settings.
1495 * @param pszEnvVarBase Base name for the environment variables for
1496 * this instance.
1497 * @param cGroups Number of groups in the array.
1498 * @param papszGroups Pointer to array of groups. This must stick
1499 * around for the life of the logger instance.
1500 * @param fDestFlags The destination flags. RTLOGDEST_FILE is ORed
1501 * if pszFilenameFmt specified.
1502 * @param pfnPhase Callback function for starting logging and for
1503 * ending or starting a new file for log history
1504 * rotation.
1505 * @param cHistory Number of old log files to keep when performing
1506 * log history rotation. 0 means no history.
1507 * @param cbHistoryFileMax Maximum size of log file when performing
1508 * history rotation. 0 means no size limit.
1509 * @param cSecsHistoryTimeSlot Maximum time interval per log file when
1510 * performing history rotation, in seconds.
1511 * 0 means no time limit.
1512 * @param pszErrorMsg A buffer which is filled with an error message
1513 * if something fails. May be NULL.
1514 * @param cchErrorMsg The size of the error message buffer.
1515 * @param pszFilenameFmt Log filename format string. Standard
1516 * RTStrFormat().
1517 * @param args Format arguments.
1518 */
1519RTDECL(int) RTLogCreateExV(PRTLOGGER *ppLogger, uint32_t fFlags, const char *pszGroupSettings,
1520 const char *pszEnvVarBase, unsigned cGroups, const char * const * papszGroups,
1521 uint32_t fDestFlags, PFNRTLOGPHASE pfnPhase, uint32_t cHistory,
1522 uint64_t cbHistoryFileMax, uint32_t cSecsHistoryTimeSlot,
1523 char *pszErrorMsg, size_t cchErrorMsg, const char *pszFilenameFmt, va_list args);
1524
1525/**
1526 * Create a logger instance for singled threaded ring-0 usage.
1527 *
1528 * @returns iprt status code.
1529 *
1530 * @param pLogger Where to create the logger instance.
1531 * @param cbLogger The amount of memory available for the logger instance.
1532 * @param pLoggerR0Ptr The ring-0 address corresponding to @a pLogger.
1533 * @param pfnLoggerR0Ptr Pointer to logger wrapper function.
1534 * @param pfnFlushR0Ptr Pointer to flush function.
1535 * @param fFlags Logger instance flags, a combination of the RTLOGFLAGS_* values.
1536 * @param fDestFlags The destination flags.
1537 */
1538RTDECL(int) RTLogCreateForR0(PRTLOGGER pLogger, size_t cbLogger,
1539 RTR0PTR pLoggerR0Ptr, RTR0PTR pfnLoggerR0Ptr, RTR0PTR pfnFlushR0Ptr,
1540 uint32_t fFlags, uint32_t fDestFlags);
1541
1542/**
1543 * Calculates the minimum size of a ring-0 logger instance.
1544 *
1545 * @returns The minimum size.
1546 * @param cGroups The number of groups.
1547 * @param fFlags Relevant flags.
1548 */
1549RTDECL(size_t) RTLogCalcSizeForR0(uint32_t cGroups, uint32_t fFlags);
1550
1551/**
1552 * Destroys a logger instance.
1553 *
1554 * The instance is flushed and all output destinations closed (where applicable).
1555 *
1556 * @returns iprt status code.
1557 * @param pLogger The logger instance which close destroyed. NULL is fine.
1558 */
1559RTDECL(int) RTLogDestroy(PRTLOGGER pLogger);
1560
1561/**
1562 * Create a logger instance clone for RC usage.
1563 *
1564 * @returns iprt status code.
1565 *
1566 * @param pLogger The logger instance to be cloned.
1567 * @param pLoggerRC Where to create the RC logger instance.
1568 * @param cbLoggerRC Amount of memory allocated to for the RC logger
1569 * instance clone.
1570 * @param pfnLoggerRCPtr Pointer to logger wrapper function for this
1571 * instance (RC Ptr).
1572 * @param pfnFlushRCPtr Pointer to flush function (RC Ptr).
1573 * @param fFlags Logger instance flags, a combination of the RTLOGFLAGS_* values.
1574 */
1575RTDECL(int) RTLogCloneRC(PRTLOGGER pLogger, PRTLOGGERRC pLoggerRC, size_t cbLoggerRC,
1576 RTRCPTR pfnLoggerRCPtr, RTRCPTR pfnFlushRCPtr, uint32_t fFlags);
1577
1578/**
1579 * Flushes a RC logger instance to a R3 logger.
1580 *
1581 * @returns iprt status code.
1582 * @param pLogger The R3 logger instance to flush pLoggerRC to. If NULL
1583 * the default logger is used.
1584 * @param pLoggerRC The RC logger instance to flush.
1585 */
1586RTDECL(void) RTLogFlushRC(PRTLOGGER pLogger, PRTLOGGERRC pLoggerRC);
1587
1588/**
1589 * Flushes the buffer in one logger instance onto another logger.
1590 *
1591 * @returns iprt status code.
1592 *
1593 * @param pSrcLogger The logger instance to flush.
1594 * @param pDstLogger The logger instance to flush onto.
1595 * If NULL the default logger will be used.
1596 */
1597RTDECL(void) RTLogFlushToLogger(PRTLOGGER pSrcLogger, PRTLOGGER pDstLogger);
1598
1599/**
1600 * Flushes a R0 logger instance to a R3 logger.
1601 *
1602 * @returns iprt status code.
1603 * @param pLogger The R3 logger instance to flush pLoggerR0 to. If NULL
1604 * the default logger is used.
1605 * @param pLoggerR0 The R0 logger instance to flush.
1606 */
1607RTDECL(void) RTLogFlushR0(PRTLOGGER pLogger, PRTLOGGER pLoggerR0);
1608
1609/**
1610 * Sets the custom prefix callback.
1611 *
1612 * @returns IPRT status code.
1613 * @param pLogger The logger instance.
1614 * @param pfnCallback The callback.
1615 * @param pvUser The user argument for the callback.
1616 * */
1617RTDECL(int) RTLogSetCustomPrefixCallback(PRTLOGGER pLogger, PFNRTLOGPREFIX pfnCallback, void *pvUser);
1618
1619/**
1620 * Same as RTLogSetCustomPrefixCallback for loggers created by
1621 * RTLogCreateForR0.
1622 *
1623 * @returns IPRT status code.
1624 * @param pLogger The logger instance.
1625 * @param pLoggerR0Ptr The ring-0 address corresponding to @a pLogger.
1626 * @param pfnCallbackR0Ptr The callback.
1627 * @param pvUserR0Ptr The user argument for the callback.
1628 * */
1629RTDECL(int) RTLogSetCustomPrefixCallbackForR0(PRTLOGGER pLogger, RTR0PTR pLoggerR0Ptr,
1630 RTR0PTR pfnCallbackR0Ptr, RTR0PTR pvUserR0Ptr);
1631
1632/**
1633 * Copies the group settings and flags from logger instance to another.
1634 *
1635 * @returns IPRT status code.
1636 * @param pDstLogger The destination logger instance.
1637 * @param pDstLoggerR0Ptr The ring-0 address corresponding to @a pDstLogger.
1638 * @param pSrcLogger The source logger instance. If NULL the default one is used.
1639 * @param fFlagsOr OR mask for the flags.
1640 * @param fFlagsAnd AND mask for the flags.
1641 */
1642RTDECL(int) RTLogCopyGroupsAndFlagsForR0(PRTLOGGER pDstLogger, RTR0PTR pDstLoggerR0Ptr,
1643 PCRTLOGGER pSrcLogger, uint32_t fFlagsOr, uint32_t fFlagsAnd);
1644
1645/**
1646 * Get the current log group settings as a string.
1647 *
1648 * @returns VINF_SUCCESS or VERR_BUFFER_OVERFLOW.
1649 * @param pLogger Logger instance (NULL for default logger).
1650 * @param pszBuf The output buffer.
1651 * @param cchBuf The size of the output buffer. Must be greater
1652 * than zero.
1653 */
1654RTDECL(int) RTLogGetGroupSettings(PRTLOGGER pLogger, char *pszBuf, size_t cchBuf);
1655
1656/**
1657 * Updates the group settings for the logger instance using the specified
1658 * specification string.
1659 *
1660 * @returns iprt status code.
1661 * Failures can safely be ignored.
1662 * @param pLogger Logger instance (NULL for default logger).
1663 * @param pszValue Value to parse.
1664 */
1665RTDECL(int) RTLogGroupSettings(PRTLOGGER pLogger, const char *pszValue);
1666#endif /* !IN_RC */
1667
1668/**
1669 * Updates the flags for the logger instance using the specified
1670 * specification string.
1671 *
1672 * @returns iprt status code.
1673 * Failures can safely be ignored.
1674 * @param pLogger Logger instance (NULL for default logger).
1675 * @param pszValue Value to parse.
1676 */
1677RTDECL(int) RTLogFlags(PRTLOGGER pLogger, const char *pszValue);
1678
1679/**
1680 * Changes the buffering setting of the specified logger.
1681 *
1682 * This can be used for optimizing longish logging sequences.
1683 *
1684 * @returns The old state.
1685 * @param pLogger The logger instance (NULL is an alias for the
1686 * default logger).
1687 * @param fBuffered The new state.
1688 */
1689RTDECL(bool) RTLogSetBuffering(PRTLOGGER pLogger, bool fBuffered);
1690
1691/**
1692 * Sets the max number of entries per group.
1693 *
1694 * @returns Old restriction.
1695 *
1696 * @param pLogger The logger instance (NULL is an alias for the
1697 * default logger).
1698 * @param cMaxEntriesPerGroup The max number of entries per group.
1699 *
1700 * @remarks Lowering the limit of an active logger may quietly mute groups.
1701 * Raising it may reactive already muted groups.
1702 */
1703RTDECL(uint32_t) RTLogSetGroupLimit(PRTLOGGER pLogger, uint32_t cMaxEntriesPerGroup);
1704
1705#ifndef IN_RC
1706/**
1707 * Get the current log flags as a string.
1708 *
1709 * @returns VINF_SUCCESS or VERR_BUFFER_OVERFLOW.
1710 * @param pLogger Logger instance (NULL for default logger).
1711 * @param pszBuf The output buffer.
1712 * @param cchBuf The size of the output buffer. Must be greater
1713 * than zero.
1714 */
1715RTDECL(int) RTLogGetFlags(PRTLOGGER pLogger, char *pszBuf, size_t cchBuf);
1716
1717/**
1718 * Updates the logger destination using the specified string.
1719 *
1720 * @returns VINF_SUCCESS or VERR_BUFFER_OVERFLOW.
1721 * @param pLogger Logger instance (NULL for default logger).
1722 * @param pszValue The value to parse.
1723 */
1724RTDECL(int) RTLogDestinations(PRTLOGGER pLogger, char const *pszValue);
1725
1726/**
1727 * Get the current log destinations as a string.
1728 *
1729 * @returns VINF_SUCCESS or VERR_BUFFER_OVERFLOW.
1730 * @param pLogger Logger instance (NULL for default logger).
1731 * @param pszBuf The output buffer.
1732 * @param cchBuf The size of the output buffer. Must be greater
1733 * than 0.
1734 */
1735RTDECL(int) RTLogGetDestinations(PRTLOGGER pLogger, char *pszBuf, size_t cchBuf);
1736#endif /* !IN_RC */
1737
1738/**
1739 * Flushes the specified logger.
1740 *
1741 * @param pLogger The logger instance to flush.
1742 * If NULL the default instance is used. The default instance
1743 * will not be initialized by this call.
1744 */
1745RTDECL(void) RTLogFlush(PRTLOGGER pLogger);
1746
1747/**
1748 * Write to a logger instance.
1749 *
1750 * @param pLogger Pointer to logger instance.
1751 * @param pvCallerRet Ignored.
1752 * @param pszFormat Format string.
1753 * @param ... Format arguments.
1754 */
1755RTDECL(void) RTLogLogger(PRTLOGGER pLogger, void *pvCallerRet, const char *pszFormat, ...);
1756
1757/**
1758 * Write to a logger instance.
1759 *
1760 * @param pLogger Pointer to logger instance.
1761 * @param pszFormat Format string.
1762 * @param args Format arguments.
1763 */
1764RTDECL(void) RTLogLoggerV(PRTLOGGER pLogger, const char *pszFormat, va_list args);
1765
1766/**
1767 * Write to a logger instance.
1768 *
1769 * This function will check whether the instance, group and flags makes up a
1770 * logging kind which is currently enabled before writing anything to the log.
1771 *
1772 * @param pLogger Pointer to logger instance. If NULL the default logger instance will be attempted.
1773 * @param fFlags The logging flags.
1774 * @param iGroup The group.
1775 * The value ~0U is reserved for compatibility with RTLogLogger[V] and is
1776 * only for internal usage!
1777 * @param pszFormat Format string.
1778 * @param ... Format arguments.
1779 * @remark This is a worker function of LogIt.
1780 */
1781RTDECL(void) RTLogLoggerEx(PRTLOGGER pLogger, unsigned fFlags, unsigned iGroup, const char *pszFormat, ...);
1782
1783/**
1784 * Write to a logger instance.
1785 *
1786 * This function will check whether the instance, group and flags makes up a
1787 * logging kind which is currently enabled before writing anything to the log.
1788 *
1789 * @param pLogger Pointer to logger instance. If NULL the default logger instance will be attempted.
1790 * @param fFlags The logging flags.
1791 * @param iGroup The group.
1792 * The value ~0U is reserved for compatibility with RTLogLogger[V] and is
1793 * only for internal usage!
1794 * @param pszFormat Format string.
1795 * @param args Format arguments.
1796 */
1797RTDECL(void) RTLogLoggerExV(PRTLOGGER pLogger, unsigned fFlags, unsigned iGroup, const char *pszFormat, va_list args);
1798
1799/**
1800 * printf like function for writing to the default log.
1801 *
1802 * @param pszFormat Printf like format string.
1803 * @param ... Optional arguments as specified in pszFormat.
1804 *
1805 * @remark The API doesn't support formatting of floating point numbers at the moment.
1806 */
1807RTDECL(void) RTLogPrintf(const char *pszFormat, ...);
1808
1809/**
1810 * vprintf like function for writing to the default log.
1811 *
1812 * @param pszFormat Printf like format string.
1813 * @param args Optional arguments as specified in pszFormat.
1814 *
1815 * @remark The API doesn't support formatting of floating point numbers at the moment.
1816 */
1817RTDECL(void) RTLogPrintfV(const char *pszFormat, va_list args);
1818
1819/**
1820 * Dumper vprintf-like function outputting to a logger.
1821 *
1822 * @param pvUser Pointer to the logger instance to use, NULL for
1823 * default instance.
1824 * @param pszFormat Format string.
1825 * @param va Format arguments.
1826 */
1827RTDECL(void) RTLogDumpPrintfV(void *pvUser, const char *pszFormat, va_list va);
1828
1829
1830#ifndef DECLARED_FNRTSTROUTPUT /* duplicated in iprt/string.h */
1831#define DECLARED_FNRTSTROUTPUT
1832/**
1833 * Output callback.
1834 *
1835 * @returns number of bytes written.
1836 * @param pvArg User argument.
1837 * @param pachChars Pointer to an array of utf-8 characters.
1838 * @param cbChars Number of bytes in the character array pointed to by pachChars.
1839 */
1840typedef DECLCALLBACK(size_t) FNRTSTROUTPUT(void *pvArg, const char *pachChars, size_t cbChars);
1841/** Pointer to callback function. */
1842typedef FNRTSTROUTPUT *PFNRTSTROUTPUT;
1843#endif
1844
1845/**
1846 * Partial vsprintf worker implementation.
1847 *
1848 * @returns number of bytes formatted.
1849 * @param pfnOutput Output worker.
1850 * Called in two ways. Normally with a string an it's length.
1851 * For termination, it's called with NULL for string, 0 for length.
1852 * @param pvArg Argument to output worker.
1853 * @param pszFormat Format string.
1854 * @param args Argument list.
1855 */
1856RTDECL(size_t) RTLogFormatV(PFNRTSTROUTPUT pfnOutput, void *pvArg, const char *pszFormat, va_list args);
1857
1858/**
1859 * Write log buffer to COM port.
1860 *
1861 * @param pach Pointer to the buffer to write.
1862 * @param cb Number of bytes to write.
1863 */
1864RTDECL(void) RTLogWriteCom(const char *pach, size_t cb);
1865
1866/**
1867 * Prints a formatted string to the serial port used for logging.
1868 *
1869 * @returns Number of bytes written.
1870 * @param pszFormat Format string.
1871 * @param ... Optional arguments specified in the format string.
1872 */
1873RTDECL(size_t) RTLogComPrintf(const char *pszFormat, ...);
1874
1875/**
1876 * Prints a formatted string to the serial port used for logging.
1877 *
1878 * @returns Number of bytes written.
1879 * @param pszFormat Format string.
1880 * @param args Optional arguments specified in the format string.
1881 */
1882RTDECL(size_t) RTLogComPrintfV(const char *pszFormat, va_list args);
1883
1884
1885#if 0 /* not implemented yet */
1886
1887/** Indicates that the semaphores shall be used to notify the other
1888 * part about buffer changes. */
1889#define LOGHOOKBUFFER_FLAGS_SEMAPHORED 1
1890
1891/**
1892 * Log Hook Buffer.
1893 * Use to communicate between the logger and a log consumer.
1894 */
1895typedef struct RTLOGHOOKBUFFER
1896{
1897 /** Write pointer. */
1898 volatile void *pvWrite;
1899 /** Read pointer. */
1900 volatile void *pvRead;
1901 /** Buffer start. */
1902 void *pvStart;
1903 /** Buffer end (exclusive). */
1904 void *pvEnd;
1905 /** Signaling semaphore used by the writer to wait on a full buffer.
1906 * Only used when indicated in flags. */
1907 void *pvSemWriter;
1908 /** Signaling semaphore used by the read to wait on an empty buffer.
1909 * Only used when indicated in flags. */
1910 void *pvSemReader;
1911 /** Buffer flags. Current reserved and set to zero. */
1912 volatile unsigned fFlags;
1913} RTLOGHOOKBUFFER;
1914/** Pointer to a log hook buffer. */
1915typedef RTLOGHOOKBUFFER *PRTLOGHOOKBUFFER;
1916
1917
1918/**
1919 * Register a logging hook.
1920 *
1921 * This type of logging hooks are expecting different threads acting
1922 * producer and consumer. They share a circular buffer which have two
1923 * pointers one for each end. When the buffer is full there are two
1924 * alternatives (indicated by a buffer flag), either wait for the
1925 * consumer to get it's job done, or to write a generic message saying
1926 * buffer overflow.
1927 *
1928 * Since the waiting would need a signal semaphore, we'll skip that for now.
1929 *
1930 * @returns iprt status code.
1931 * @param pBuffer Pointer to a logger hook buffer.
1932 */
1933RTDECL(int) RTLogRegisterHook(PRTLOGGER pLogger, PRTLOGHOOKBUFFER pBuffer);
1934
1935/**
1936 * Deregister a logging hook registered with RTLogRegisterHook().
1937 *
1938 * @returns iprt status code.
1939 * @param pBuffer Pointer to a logger hook buffer.
1940 */
1941RTDECL(int) RTLogDeregisterHook(PRTLOGGER pLogger, PRTLOGHOOKBUFFER pBuffer);
1942
1943#endif /* not implemented yet */
1944
1945
1946
1947/**
1948 * Write log buffer to a debugger (RTLOGDEST_DEBUGGER).
1949 *
1950 * @param pach What to write.
1951 * @param cb How much to write.
1952 * @remark When linking statically, this function can be replaced by defining your own.
1953 */
1954RTDECL(void) RTLogWriteDebugger(const char *pach, size_t cb);
1955
1956/**
1957 * Write log buffer to a user defined output stream (RTLOGDEST_USER).
1958 *
1959 * @param pach What to write.
1960 * @param cb How much to write.
1961 * @remark When linking statically, this function can be replaced by defining your own.
1962 */
1963RTDECL(void) RTLogWriteUser(const char *pach, size_t cb);
1964
1965/**
1966 * Write log buffer to stdout (RTLOGDEST_STDOUT).
1967 *
1968 * @param pach What to write.
1969 * @param cb How much to write.
1970 * @remark When linking statically, this function can be replaced by defining your own.
1971 */
1972RTDECL(void) RTLogWriteStdOut(const char *pach, size_t cb);
1973
1974/**
1975 * Write log buffer to stdout (RTLOGDEST_STDERR).
1976 *
1977 * @param pach What to write.
1978 * @param cb How much to write.
1979 * @remark When linking statically, this function can be replaced by defining your own.
1980 */
1981RTDECL(void) RTLogWriteStdErr(const char *pach, size_t cb);
1982
1983#ifdef VBOX
1984
1985/**
1986 * Prints a formatted string to the backdoor port.
1987 *
1988 * @returns Number of bytes written.
1989 * @param pszFormat Format string.
1990 * @param ... Optional arguments specified in the format string.
1991 */
1992RTDECL(size_t) RTLogBackdoorPrintf(const char *pszFormat, ...);
1993
1994/**
1995 * Prints a formatted string to the backdoor port.
1996 *
1997 * @returns Number of bytes written.
1998 * @param pszFormat Format string.
1999 * @param args Optional arguments specified in the format string.
2000 */
2001RTDECL(size_t) RTLogBackdoorPrintfV(const char *pszFormat, va_list args);
2002
2003#endif /* VBOX */
2004
2005RT_C_DECLS_END
2006
2007/** @} */
2008
2009#endif
2010
Note: See TracBrowser for help on using the repository browser.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette