VirtualBox

source: vbox/trunk/src/VBox/Runtime/common/log/logrel.cpp@ 43363

Last change on this file since 43363 was 40938, checked in by vboxsync, 13 years ago

runtime: backed out r77481,r77482,r77483,r77484,r77485

  • Property svn:eol-style set to native
  • Property svn:keywords set to Id
File size: 4.9 KB
Line 
1/* $Id: logrel.cpp 40938 2012-04-16 11:58:26Z vboxsync $ */
2/** @file
3 * Runtime VBox - Release Logger.
4 */
5
6/*
7 * Copyright (C) 2006-2010 Oracle Corporation
8 *
9 * This file is part of VirtualBox Open Source Edition (OSE), as
10 * available from http://www.virtualbox.org. This file is free software;
11 * you can redistribute it and/or modify it under the terms of the GNU
12 * General Public License (GPL) as published by the Free Software
13 * Foundation, in version 2 as it comes in the "COPYING" file of the
14 * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
15 * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
16 *
17 * The contents of this file may alternatively be used under the terms
18 * of the Common Development and Distribution License Version 1.0
19 * (CDDL) only, as it comes in the "COPYING.CDDL" file of the
20 * VirtualBox OSE distribution, in which case the provisions of the
21 * CDDL are applicable instead of those of the GPL.
22 *
23 * You may elect to license modified versions of this file under the
24 * terms and conditions of either the GPL or the CDDL or both.
25 */
26
27
28/*******************************************************************************
29* Header Files *
30*******************************************************************************/
31#include <iprt/log.h>
32#include "internal/iprt.h"
33
34#ifndef IN_RC
35# include <iprt/alloc.h>
36# include <iprt/process.h>
37# include <iprt/semaphore.h>
38# include <iprt/thread.h>
39# include <iprt/mp.h>
40#endif
41#ifdef IN_RING3
42# include <iprt/file.h>
43# include <iprt/path.h>
44#endif
45#include <iprt/time.h>
46#include <iprt/asm.h>
47#include <iprt/assert.h>
48#include <iprt/err.h>
49#include <iprt/param.h>
50
51#include <iprt/stdarg.h>
52#include <iprt/string.h>
53#include <iprt/ctype.h>
54#ifdef IN_RING3
55# include <iprt/alloca.h>
56# include <stdio.h>
57#endif
58
59
60/*******************************************************************************
61* Global Variables *
62*******************************************************************************/
63#ifdef IN_RC
64/** Default release logger instance. */
65extern "C" DECLIMPORT(RTLOGGERRC) g_RelLogger;
66#else /* !IN_RC */
67/** Default release logger instance. */
68static PRTLOGGER g_pRelLogger;
69#endif /* !IN_RC */
70
71
72/**
73 * Gets the default release logger instance.
74 *
75 * @returns Pointer to default release logger instance.
76 * @returns NULL if no default release logger instance available.
77 */
78RTDECL(PRTLOGGER) RTLogRelDefaultInstance(void)
79{
80#ifdef IN_RC
81 return &g_RelLogger;
82#else /* !IN_RC */
83 return g_pRelLogger;
84#endif /* !IN_RC */
85}
86RT_EXPORT_SYMBOL(RTLogRelDefaultInstance);
87
88
89#ifndef IN_RC
90/**
91 * Sets the default logger instance.
92 *
93 * @returns iprt status code.
94 * @param pLogger The new default release logger instance.
95 */
96RTDECL(PRTLOGGER) RTLogRelSetDefaultInstance(PRTLOGGER pLogger)
97{
98 return ASMAtomicXchgPtrT(&g_pRelLogger, pLogger, PRTLOGGER);
99}
100RT_EXPORT_SYMBOL(RTLogRelSetDefaultInstance);
101#endif /* !IN_RC */
102
103
104/**
105 * Write to a logger instance, defaulting to the release one.
106 *
107 * This function will check whether the instance, group and flags makes up a
108 * logging kind which is currently enabled before writing anything to the log.
109 *
110 * @param pLogger Pointer to logger instance. If NULL the default release instance is attempted.
111 * @param fFlags The logging flags.
112 * @param iGroup The group.
113 * The value ~0U is reserved for compatibility with RTLogLogger[V] and is
114 * only for internal usage!
115 * @param pszFormat Format string.
116 * @param args Format arguments.
117 */
118RTDECL(void) RTLogRelLoggerV(PRTLOGGER pLogger, unsigned fFlags, unsigned iGroup, const char *pszFormat, va_list args)
119{
120 /*
121 * A NULL logger means default instance.
122 */
123 if (!pLogger)
124 {
125 pLogger = RTLogRelDefaultInstance();
126 if (!pLogger)
127 return;
128 }
129 RTLogLoggerExV(pLogger, fFlags, iGroup, pszFormat, args);
130}
131RT_EXPORT_SYMBOL(RTLogRelLoggerV);
132
133
134/**
135 * vprintf like function for writing to the default release log.
136 *
137 * @param pszFormat Printf like format string.
138 * @param args Optional arguments as specified in pszFormat.
139 *
140 * @remark The API doesn't support formatting of floating point numbers at the moment.
141 */
142RTDECL(void) RTLogRelPrintfV(const char *pszFormat, va_list args)
143{
144 RTLogRelLoggerV(NULL, 0, ~0U, pszFormat, args);
145}
146RT_EXPORT_SYMBOL(RTLogRelPrintfV);
147
148
149/**
150 * Changes the buffering setting of the default release logger.
151 *
152 * This can be used for optimizing longish logging sequences.
153 *
154 * @returns The old state.
155 * @param fBuffered The new state.
156 */
157RTDECL(bool) RTLogRelSetBuffering(bool fBuffered)
158{
159 PRTLOGGER pLogger = RTLogRelDefaultInstance();
160 if (pLogger)
161 return RTLogSetBuffering(pLogger, fBuffered);
162 return false;
163}
164RT_EXPORT_SYMBOL(RTLogRelSetBuffering);
165
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