1 | /* $Id: logellipsis.cpp 98103 2023-01-17 14:15:46Z vboxsync $ */
|
---|
2 | /** @file
|
---|
3 | * Runtime VBox - Logger, the ellipsis variants.
|
---|
4 | */
|
---|
5 |
|
---|
6 | /*
|
---|
7 | * Copyright (C) 2006-2023 Oracle and/or its affiliates.
|
---|
8 | *
|
---|
9 | * This file is part of VirtualBox base platform packages, as
|
---|
10 | * available from https://www.virtualbox.org.
|
---|
11 | *
|
---|
12 | * This program is free software; you can redistribute it and/or
|
---|
13 | * modify it under the terms of the GNU General Public License
|
---|
14 | * as published by the Free Software Foundation, in version 3 of the
|
---|
15 | * License.
|
---|
16 | *
|
---|
17 | * This program is distributed in the hope that it will be useful, but
|
---|
18 | * WITHOUT ANY WARRANTY; without even the implied warranty of
|
---|
19 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
---|
20 | * General Public License for more details.
|
---|
21 | *
|
---|
22 | * You should have received a copy of the GNU General Public License
|
---|
23 | * along with this program; if not, see <https://www.gnu.org/licenses>.
|
---|
24 | *
|
---|
25 | * The contents of this file may alternatively be used under the terms
|
---|
26 | * of the Common Development and Distribution License Version 1.0
|
---|
27 | * (CDDL), a copy of it is provided in the "COPYING.CDDL" file included
|
---|
28 | * in the VirtualBox distribution, in which case the provisions of the
|
---|
29 | * CDDL are applicable instead of those of the GPL.
|
---|
30 | *
|
---|
31 | * You may elect to license modified versions of this file under the
|
---|
32 | * terms and conditions of either the GPL or the CDDL or both.
|
---|
33 | *
|
---|
34 | * SPDX-License-Identifier: GPL-3.0-only OR CDDL-1.0
|
---|
35 | */
|
---|
36 |
|
---|
37 |
|
---|
38 | /*********************************************************************************************************************************
|
---|
39 | * Header Files *
|
---|
40 | *********************************************************************************************************************************/
|
---|
41 | #include <iprt/log.h>
|
---|
42 | #include "internal/iprt.h"
|
---|
43 |
|
---|
44 | #include <iprt/asm.h>
|
---|
45 | #include <iprt/stdarg.h>
|
---|
46 |
|
---|
47 |
|
---|
48 | /**
|
---|
49 | * Write to a logger instance.
|
---|
50 | *
|
---|
51 | * @param pLogger Pointer to logger instance.
|
---|
52 | * @param pvCallerRet Ignored.
|
---|
53 | * @param pszFormat Format string.
|
---|
54 | * @param ... Format arguments.
|
---|
55 | */
|
---|
56 | RTDECL(void) RTLogLogger(PRTLOGGER pLogger, void *pvCallerRet, const char *pszFormat, ...)
|
---|
57 | {
|
---|
58 | va_list args;
|
---|
59 | va_start(args, pszFormat);
|
---|
60 | #if defined(RT_OS_DARWIN) && defined(RT_ARCH_X86) && defined(IN_RING3)
|
---|
61 | /* manually align the stack before doing the call.
|
---|
62 | * We boldly assume that there is a stack frame here! */
|
---|
63 | __asm__ __volatile__("andl $-32, %%esp\t\n" ::: "%esp");
|
---|
64 | RTLogLoggerExV(pLogger, 0, ~0U, pszFormat, args);
|
---|
65 | #else
|
---|
66 | RTLogLoggerExV(pLogger, 0, ~0U, pszFormat, args);
|
---|
67 | #endif
|
---|
68 | va_end(args);
|
---|
69 | NOREF(pvCallerRet);
|
---|
70 | }
|
---|
71 | RT_EXPORT_SYMBOL(RTLogLogger);
|
---|
72 |
|
---|
73 |
|
---|
74 | /**
|
---|
75 | * Write to a logger instance.
|
---|
76 | *
|
---|
77 | * This function will check whether the instance, group and flags makes up a
|
---|
78 | * logging kind which is currently enabled before writing anything to the log.
|
---|
79 | *
|
---|
80 | * @param pLogger Pointer to logger instance. If NULL the default logger instance will be attempted.
|
---|
81 | * @param fFlags The logging flags.
|
---|
82 | * @param iGroup The group.
|
---|
83 | * The value ~0U is reserved for compatibility with RTLogLogger[V] and is
|
---|
84 | * only for internal usage!
|
---|
85 | * @param pszFormat Format string.
|
---|
86 | * @param ... Format arguments.
|
---|
87 | * @remark This is a worker function of LogIt.
|
---|
88 | */
|
---|
89 | RTDECL(void) RTLogLoggerEx(PRTLOGGER pLogger, unsigned fFlags, unsigned iGroup, const char *pszFormat, ...)
|
---|
90 | {
|
---|
91 | va_list args;
|
---|
92 | va_start(args, pszFormat);
|
---|
93 | RTLogLoggerExV(pLogger, fFlags, iGroup, pszFormat, args);
|
---|
94 | va_end(args);
|
---|
95 | }
|
---|
96 | RT_EXPORT_SYMBOL(RTLogLoggerEx);
|
---|
97 |
|
---|
98 |
|
---|
99 | /**
|
---|
100 | * printf like function for writing to the default log.
|
---|
101 | *
|
---|
102 | * @param pszFormat Printf like format string.
|
---|
103 | * @param ... Optional arguments as specified in pszFormat.
|
---|
104 | *
|
---|
105 | * @remark The API doesn't support formatting of floating point numbers at the moment.
|
---|
106 | */
|
---|
107 | RTDECL(void) RTLogPrintf(const char *pszFormat, ...)
|
---|
108 | {
|
---|
109 | va_list args;
|
---|
110 | va_start(args, pszFormat);
|
---|
111 | RTLogPrintfV(pszFormat, args);
|
---|
112 | va_end(args);
|
---|
113 | }
|
---|
114 | RT_EXPORT_SYMBOL(RTLogPrintf);
|
---|
115 |
|
---|