VirtualBox

source: vbox/trunk/src/VBox/Runtime/common/log/logformat.cpp@ 25659

Last change on this file since 25659 was 21337, checked in by vboxsync, 15 years ago

IPRT,HostDrv,AddDrv: Export public IPRT symbols for the linux kernel (pain).

  • Property svn:eol-style set to native
  • Property svn:keywords set to Id
File size: 4.1 KB
Line 
1/* $Id: logformat.cpp 21337 2009-07-07 14:58:27Z vboxsync $ */
2/** @file
3 * IPRT - Log Formatter.
4 */
5
6/*
7 * Copyright (C) 2006-2007 Sun Microsystems, Inc.
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 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa
27 * Clara, CA 95054 USA or visit http://www.sun.com if you need
28 * additional information or have any questions.
29 */
30
31
32/*******************************************************************************
33* Header Files *
34*******************************************************************************/
35#include <iprt/log.h>
36#include "internal/iprt.h"
37
38#include <iprt/string.h>
39#include <iprt/assert.h>
40#ifdef IN_RING3
41# include <iprt/thread.h>
42# include <iprt/err.h>
43#endif
44
45#include <iprt/stdarg.h>
46#include <iprt/string.h>
47
48
49/*******************************************************************************
50* Internal Functions *
51*******************************************************************************/
52static DECLCALLBACK(size_t) rtlogFormatStr(void *pvArg, PFNRTSTROUTPUT pfnOutput,
53 void *pvArgOutput, const char **ppszFormat,
54 va_list *pArgs, int cchWidth, int cchPrecision,
55 unsigned fFlags, char chArgSize);
56
57
58/**
59 * Partial vsprintf worker implementation.
60 *
61 * @returns number of bytes formatted.
62 * @param pfnOutput Output worker.
63 * Called in two ways. Normally with a string an it's length.
64 * For termination, it's called with NULL for string, 0 for length.
65 * @param pvArg Argument to output worker.
66 * @param pszFormat Format string.
67 * @param args Argument list.
68 */
69RTDECL(size_t) RTLogFormatV(PFNRTSTROUTPUT pfnOutput, void *pvArg, const char *pszFormat, va_list args)
70{
71 return RTStrFormatV(pfnOutput, pvArg, rtlogFormatStr, NULL, pszFormat, args);
72}
73RT_EXPORT_SYMBOL(RTLogFormatV);
74
75
76/**
77 * Callback to format VBox formatting extentions.
78 * See @ref pg_rt_str_format_rt for a reference on the format types.
79 *
80 * @returns The number of bytes formatted.
81 * @param pvArg Formatter argument.
82 * @param pfnOutput Pointer to output function.
83 * @param pvArgOutput Argument for the output function.
84 * @param ppszFormat Pointer to the format string pointer. Advance this till the char
85 * after the format specifier.
86 * @param pArgs Pointer to the argument list. Use this to fetch the arguments.
87 * @param cchWidth Format Width. -1 if not specified.
88 * @param cchPrecision Format Precision. -1 if not specified.
89 * @param fFlags Flags (RTSTR_NTFS_*).
90 * @param chArgSize The argument size specifier, 'l' or 'L'.
91 */
92static DECLCALLBACK(size_t) rtlogFormatStr(void *pvArg, PFNRTSTROUTPUT pfnOutput, void *pvArgOutput,
93 const char **ppszFormat, va_list *pArgs, int cchWidth,
94 int cchPrecision, unsigned fFlags, char chArgSize)
95{
96 char ch = *(*ppszFormat)++;
97
98 AssertMsgFailed(("Invalid logger format type '%%%c%.10s'!\n", ch, *ppszFormat)); NOREF(ch);
99
100 return 0;
101}
102
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