VirtualBox

source: vbox/trunk/include/iprt/message.h@ 30670

Last change on this file since 30670 was 28800, checked in by vboxsync, 15 years ago

Automated rebranding to Oracle copyright/license strings via filemuncher

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 6.5 KB
Line 
1/** @file
2 * IPRT - Message Formatting.
3 */
4
5/*
6 * Copyright (C) 2009 Oracle Corporation
7 *
8 * This file is part of VirtualBox Open Source Edition (OSE), as
9 * available from http://www.virtualbox.org. This file is free software;
10 * you can redistribute it and/or modify it under the terms of the GNU
11 * General Public License (GPL) as published by the Free Software
12 * Foundation, in version 2 as it comes in the "COPYING" file of the
13 * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
14 * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
15 *
16 * The contents of this file may alternatively be used under the terms
17 * of the Common Development and Distribution License Version 1.0
18 * (CDDL) only, as it comes in the "COPYING.CDDL" file of the
19 * VirtualBox OSE distribution, in which case the provisions of the
20 * CDDL are applicable instead of those of the GPL.
21 *
22 * You may elect to license modified versions of this file under the
23 * terms and conditions of either the GPL or the CDDL or both.
24 */
25
26#ifndef ___iprt_msg_h
27#define ___iprt_msg_h
28
29#include <iprt/cdefs.h>
30#include <iprt/types.h>
31#include <iprt/stdarg.h>
32
33RT_C_DECLS_BEGIN
34
35/** @defgroup grp_rt_msg RTMsg - Message Formatting
36 * @ingroup grp_rt
37 * @{
38 */
39
40/**
41 * Print error message to standard error.
42 *
43 * The message will be prefixed with the file name part of process image name
44 * (i.e. no path) and "error: ". If the message doesn't end with a new line,
45 * one will be added. The caller should call this with an empty string if
46 * unsure whether the cursor is currently position at the start of a new line.
47 *
48 * @returns IPRT status code.
49 * @param pszFormat The message format string.
50 * @param ... Format arguments.
51 */
52RTDECL(int) RTMsgError(const char *pszFormat, ...);
53
54/**
55 * Print error message to standard error.
56 *
57 * The message will be prefixed with the file name part of process image name
58 * (i.e. no path) and "error: ". If the message doesn't end with a new line,
59 * one will be added. The caller should call this with an empty string if
60 * unsure whether the cursor is currently position at the start of a new line.
61 *
62 * @returns IPRT status code.
63 * @param pszFormat The message format string.
64 * @param va Format arguments.
65 */
66RTDECL(int) RTMsgErrorV(const char *pszFormat, va_list va);
67
68/**
69 * Same as RTMsgError() except for the return value.
70 *
71 * @returns @a enmExitCode
72 * @param enmExitCode What to exit code to return. This is mainly for
73 * saving some vertical space in the source file.
74 * @param pszFormat The message format string.
75 * @param ... Format arguments.
76 */
77RTDECL(RTEXITCODE) RTMsgErrorExit(RTEXITCODE enmExitcode, const char *pszFormat, ...);
78
79/**
80 * Same as RTMsgErrorV() except for the return value.
81 *
82 * @returns @a enmExitCode
83 * @param enmExitCode What to exit code to return. This is mainly for
84 * saving some vertical space in the source file.
85 * @param pszFormat The message format string.
86 * @param va Format arguments.
87 */
88RTDECL(RTEXITCODE) RTMsgErrorExitV(RTEXITCODE enmExitCode, const char *pszFormat, va_list va);
89
90/**
91 * Same as RTMsgError() except for the return value.
92 *
93 * @returns @a rcRet
94 * @param rcRet What IPRT status to return. This is mainly for
95 * saving some vertical space in the source file.
96 * @param pszFormat The message format string.
97 * @param ... Format arguments.
98 */
99RTDECL(int) RTMsgErrorRc(int rc, const char *pszFormat, ...);
100
101/**
102 * Same as RTMsgErrorV() except for the return value.
103 *
104 * @returns @a rcRet
105 * @param rcRet What IPRT status to return. This is mainly for
106 * saving some vertical space in the source file.
107 * @param pszFormat The message format string.
108 * @param va Format arguments.
109 */
110RTDECL(int) RTMsgErrorRcV(int rc, const char *pszFormat, va_list va);
111
112/**
113 * Print an error message for a RTR3Init failure and suggest an exit code.
114 *
115 * @code
116 *
117 * int rc = RTR3Init();
118 * if (RT_FAILURE(rc))
119 * return RTMsgInitFailure(rc);
120 *
121 * @endcode
122 *
123 * @returns Appropriate exit code.
124 * @param rcRTR3Init The status code returned by RTR3Init.
125 */
126RTDECL(RTEXITCODE) RTMsgInitFailure(int rcRTR3Init);
127
128/**
129 * Print informational message to standard error.
130 *
131 * The message will be prefixed with the file name part of process image name
132 * (i.e. no path) and "warning: ". If the message doesn't end with a new line,
133 * one will be added. The caller should call this with an empty string if
134 * unsure whether the cursor is currently position at the start of a new line.
135 *
136 * @returns IPRT status code.
137 * @param pszFormat The message format string.
138 * @param ... Format arguments.
139 */
140RTDECL(int) RTMsgWarning(const char *pszFormat, ...);
141
142/**
143 * Print informational message to standard error.
144 *
145 * The message will be prefixed with the file name part of process image name
146 * (i.e. no path) and "warning: ". If the message doesn't end with a new line,
147 * one will be added. The caller should call this with an empty string if
148 * unsure whether the cursor is currently position at the start of a new line.
149 *
150 * @returns IPRT status code.
151 * @param pszFormat The message format string.
152 * @param va Format arguments.
153 */
154RTDECL(int) RTMsgWarningV(const char *pszFormat, va_list va);
155
156/**
157 * Print informational message to standard output.
158 *
159 * The message will be prefixed with the file name part of process image name
160 * (i.e. no path) and "info: ". If the message doesn't end with a new line,
161 * one will be added. The caller should call this with an empty string if
162 * unsure whether the cursor is currently position at the start of a new line.
163 *
164 * @returns IPRT status code.
165 * @param pszFormat The message format string.
166 * @param ... Format arguments.
167 */
168RTDECL(int) RTMsgInfo(const char *pszFormat, ...);
169
170/**
171 * Print informational message to standard output.
172 *
173 * The message will be prefixed with the file name part of process image name
174 * (i.e. no path) and "info: ". If the message doesn't end with a new line,
175 * one will be added. The caller should call this with an empty string if
176 * unsure whether the cursor is currently position at the start of a new line.
177 *
178 * @returns IPRT status code.
179 * @param pszFormat The message format string.
180 * @param va Format arguments.
181 */
182RTDECL(int) RTMsgInfoV(const char *pszFormat, va_list va);
183
184/** @} */
185
186RT_C_DECLS_END
187
188#endif
189
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