VirtualBox

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

Last change on this file since 90829 was 90829, checked in by vboxsync, 3 years ago

IPRT,VMM,SUPDrv,++: Reworked the IPRT logger structure and how the VMM ring-0 uses it. bugref:10086

  • Property svn:eol-style set to native
  • Property svn:keywords set to Id Revision
File size: 3.8 KB
Line 
1/* $Id: logrel.cpp 90829 2021-08-24 10:26:07Z vboxsync $ */
2/** @file
3 * Runtime VBox - Release Logger.
4 */
5
6/*
7 * Copyright (C) 2006-2020 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/errcore.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 * Write to a logger instance, defaulting to the release one.
62 *
63 * This function will check whether the instance, group and flags makes up a
64 * logging kind which is currently enabled before writing anything to the log.
65 *
66 * @param pLogger Pointer to logger instance. If NULL the default release instance is attempted.
67 * @param fFlags The logging flags.
68 * @param iGroup The group.
69 * The value ~0U is reserved for compatibility with RTLogLogger[V] and is
70 * only for internal usage!
71 * @param pszFormat Format string.
72 * @param args Format arguments.
73 */
74RTDECL(void) RTLogRelLoggerV(PRTLOGGER pLogger, unsigned fFlags, unsigned iGroup, const char *pszFormat, va_list args)
75{
76 /*
77 * A NULL logger means default instance.
78 */
79 if (!pLogger)
80 {
81 pLogger = RTLogRelGetDefaultInstance();
82 if (!pLogger)
83 return;
84 }
85 RTLogLoggerExV(pLogger, fFlags, iGroup, pszFormat, args);
86}
87RT_EXPORT_SYMBOL(RTLogRelLoggerV);
88
89
90/**
91 * vprintf like function for writing to the default release log.
92 *
93 * @param pszFormat Printf like format string.
94 * @param args Optional arguments as specified in pszFormat.
95 *
96 * @remark The API doesn't support formatting of floating point numbers at the moment.
97 */
98RTDECL(void) RTLogRelPrintfV(const char *pszFormat, va_list args)
99{
100 RTLogRelLoggerV(NULL, 0, ~0U, pszFormat, args);
101}
102RT_EXPORT_SYMBOL(RTLogRelPrintfV);
103
104
105/**
106 * Changes the buffering setting of the default release logger.
107 *
108 * This can be used for optimizing longish logging sequences.
109 *
110 * @returns The old state.
111 * @param fBuffered The new state.
112 */
113RTDECL(bool) RTLogRelSetBuffering(bool fBuffered)
114{
115 PRTLOGGER pLogger = RTLogRelGetDefaultInstance();
116 if (pLogger)
117 return RTLogSetBuffering(pLogger, fBuffered);
118 return false;
119}
120RT_EXPORT_SYMBOL(RTLogRelSetBuffering);
121
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