VirtualBox

source: vbox/trunk/src/VBox/Main/include/Logging.h@ 33540

Last change on this file since 33540 was 33540, checked in by vboxsync, 14 years ago

*: spelling fixes, thanks Timeless!

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 4.9 KB
Line 
1/* $Id: Logging.h 33540 2010-10-28 09:27:05Z 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 interfere 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#ifdef VBOX_WITH_VRDP_MEMLEAK_DETECTOR
93#include <iprt/err.h>
94#include <iprt/log.h>
95#include <iprt/critsect.h>
96#include <iprt/mem.h>
97
98void *MLDMemAllocDbg (size_t cb, bool fTmp, bool fZero, const char *pszCaller, int iLine);
99void *MLDMemReallocDbg (void *pv, size_t cb, const char *pszCaller, int iLine);
100void MLDMemFreeDbg (void *pv, bool fTmp);
101
102void MLDMemInit (const char *pszPrefix);
103void MLDMemUninit (void);
104
105void MLDMemDump (void);
106
107#define MLDMemAlloc(__cb) MLDMemAllocDbg (__cb, false /* fTmp */, false /* fZero */, __FILE__, __LINE__)
108#define MLDMemAllocZ(__cb) MLDMemAllocDbg (__cb, false /* fTmp */, true /* fZero */, __FILE__, __LINE__)
109#define MLDMemTmpAlloc(__cb) MLDMemAllocDbg (__cb, true /* fTmp */, false /* fZero */, __FILE__, __LINE__)
110#define MLDMemTmpAllocZ(__cb) MLDMemAllocDbg (__cb, true /* fTmp */, true /* fZero */, __FILE__, __LINE__)
111#define MLDMemRealloc(__pv, __cb) MLDMemReallocDbg (__pv, __cb, __FILE__, __LINE__)
112#define MLDMemFree(__pv) MLDMemFreeDbg (__pv, false /* fTmp */)
113#define MLDMemTmpFree(__pv) MLDMemFreeDbg (__pv, true /* fTmp */)
114
115#undef RTMemAlloc
116#define RTMemAlloc MLDMemAlloc
117#undef RTMemAllocZ
118#define RTMemAllocZ MLDMemAllocZ
119#undef RTMemTmpAlloc
120#define RTMemTmpAlloc MLDMemTmpAlloc
121#undef RTMemTmpAllocZ
122#define RTMemTmpAllocZ MLDMemTmpAllocZ
123#undef RTMemRealloc
124#define RTMemRealloc MLDMemRealloc
125#undef RTMemFree
126#define RTMemFree MLDMemFree
127#undef RTMemTmpFree
128#define RTMemTmpFree MLDMemTmpFree
129#endif /* VBOX_WITH_MLD_MEMLEAK_DETECTOR */
130
131#endif // ____H_LOGGING
132/* vi: set tabstop=4 shiftwidth=4 expandtab: */
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