1 | /* $Id: Logging.h 28800 2010-04-27 08:22:32Z vboxsync $ */
|
---|
2 |
|
---|
3 | /** @file
|
---|
4 | *
|
---|
5 | * VirtualBox COM: logging macros and function definitions
|
---|
6 | */
|
---|
7 |
|
---|
8 | /*
|
---|
9 | * Copyright (C) 2006-2010 Oracle Corporation
|
---|
10 | *
|
---|
11 | * This file is part of VirtualBox Open Source Edition (OSE), as
|
---|
12 | * available from http://www.virtualbox.org. This file is free software;
|
---|
13 | * you can redistribute it and/or modify it under the terms of the GNU
|
---|
14 | * General Public License (GPL) as published by the Free Software
|
---|
15 | * Foundation, in version 2 as it comes in the "COPYING" file of the
|
---|
16 | * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
|
---|
17 | * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
|
---|
18 | */
|
---|
19 |
|
---|
20 | #ifndef ____H_LOGGING
|
---|
21 | #define ____H_LOGGING
|
---|
22 |
|
---|
23 | /** @def LOG_GROUP_MAIN_OVERRIDE
|
---|
24 | * Define this macro to point to the desired log group before including
|
---|
25 | * the |Logging.h| header if you want to use a group other than LOG_GROUP_MAIN
|
---|
26 | * for logging from within Main source files.
|
---|
27 | *
|
---|
28 | * @example #define LOG_GROUP_MAIN_OVERRIDE LOG_GROUP_HGCM
|
---|
29 | */
|
---|
30 |
|
---|
31 | /*
|
---|
32 | * We might be including the VBox logging subsystem before
|
---|
33 | * including this header file, so reset the logging group.
|
---|
34 | */
|
---|
35 | #ifdef LOG_GROUP
|
---|
36 | # undef LOG_GROUP
|
---|
37 | #endif
|
---|
38 | #ifdef LOG_GROUP_MAIN_OVERRIDE
|
---|
39 | # define LOG_GROUP LOG_GROUP_MAIN_OVERRIDE
|
---|
40 | #else
|
---|
41 | # define LOG_GROUP LOG_GROUP_MAIN
|
---|
42 | #endif
|
---|
43 |
|
---|
44 | /* Ensure log macros are enabled if release logging is requested */
|
---|
45 | #if defined (VBOX_MAIN_RELEASE_LOG) && !defined (DEBUG)
|
---|
46 | # ifndef LOG_ENABLED
|
---|
47 | # define LOG_ENABLED
|
---|
48 | # endif
|
---|
49 | #endif
|
---|
50 |
|
---|
51 | #include <VBox/log.h>
|
---|
52 | #include <iprt/assert.h>
|
---|
53 |
|
---|
54 | /** @def MyLogIt
|
---|
55 | * Copy of LogIt that works even when logging is completely disabled (e.g. in
|
---|
56 | * release builds) and doesn't interefere with the default release logger
|
---|
57 | * instance (which is already in use by the VM process).
|
---|
58 | *
|
---|
59 | * @warning Logging using MyLog* is intended only as a temporary mean to debug
|
---|
60 | * release builds (e.g. in case if the error is not reproducible with
|
---|
61 | * the debug builds)! Any MyLog* usage must be removed from the sources
|
---|
62 | * after the error has been fixed.
|
---|
63 | */
|
---|
64 | #if defined(RT_ARCH_AMD64) || defined(LOG_USE_C99)
|
---|
65 | # define _MyLogRemoveParentheseis(...) __VA_ARGS__
|
---|
66 | # define _MyLogIt(pvInst, fFlags, iGroup, ...) RTLogLoggerEx((PRTLOGGER)pvInst, fFlags, iGroup, __VA_ARGS__)
|
---|
67 | # define MyLogIt(pvInst, fFlags, iGroup, fmtargs) _MyLogIt(pvInst, fFlags, iGroup, _MyLogRemoveParentheseis fmtargs)
|
---|
68 | #else
|
---|
69 | # define MyLogIt(pvInst, fFlags, iGroup, fmtargs) \
|
---|
70 | do \
|
---|
71 | { \
|
---|
72 | register PRTLOGGER LogIt_pLogger = (PRTLOGGER)(pvInst) ? (PRTLOGGER)(pvInst) : RTLogDefaultInstance(); \
|
---|
73 | if (LogIt_pLogger) \
|
---|
74 | { \
|
---|
75 | register unsigned LogIt_fFlags = LogIt_pLogger->afGroups[(unsigned)(iGroup) < LogIt_pLogger->cGroups ? (unsigned)(iGroup) : 0]; \
|
---|
76 | if ((LogIt_fFlags & ((fFlags) | RTLOGGRPFLAGS_ENABLED)) == ((fFlags) | RTLOGGRPFLAGS_ENABLED)) \
|
---|
77 | LogIt_pLogger->pfnLogger fmtargs; \
|
---|
78 | } \
|
---|
79 | } while (0)
|
---|
80 | #endif
|
---|
81 |
|
---|
82 | /** @def MyLog
|
---|
83 | * Equivalent to LogFlow but uses MyLogIt instead of LogIt.
|
---|
84 | *
|
---|
85 | * @warning Logging using MyLog* is intended only as a temporary mean to debug
|
---|
86 | * release builds (e.g. in case if the error is not reproducible with
|
---|
87 | * the debug builds)! Any MyLog* usage must be removed from the sources
|
---|
88 | * after the error has been fixed.
|
---|
89 | */
|
---|
90 | #define MyLog(a) MyLogIt(LOG_INSTANCE, RTLOGGRPFLAGS_FLOW, LOG_GROUP, a)
|
---|
91 |
|
---|
92 | #endif // ____H_LOGGING
|
---|
93 | /* vi: set tabstop=4 shiftwidth=4 expandtab: */
|
---|