1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394
|
/** @file
* IPRT - Message Formatting.
*/
/*
* Copyright (C) 2009-2025 Oracle and/or its affiliates.
*
* This file is part of VirtualBox base platform packages, as
* available from https://www.virtualbox.org.
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation, in version 3 of the
* License.
*
* This program is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, see <https://www.gnu.org/licenses>.
*
* The contents of this file may alternatively be used under the terms
* of the Common Development and Distribution License Version 1.0
* (CDDL), a copy of it is provided in the "COPYING.CDDL" file included
* in the VirtualBox distribution, in which case the provisions of the
* CDDL are applicable instead of those of the GPL.
*
* You may elect to license modified versions of this file under the
* terms and conditions of either the GPL or the CDDL or both.
*
* SPDX-License-Identifier: GPL-3.0-only OR CDDL-1.0
*/
#ifndef IPRT_INCLUDED_message_h
#define IPRT_INCLUDED_message_h
#ifndef RT_WITHOUT_PRAGMA_ONCE
# pragma once
#endif
#include <iprt/cdefs.h>
#include <iprt/types.h>
#include <iprt/stdarg.h>
RT_C_DECLS_BEGIN
/** @defgroup grp_rt_msg RTMsg - Message Formatting
* @ingroup grp_rt
* @{
*/
/**
* Sets the program name to use.
*
* @returns IPRT status code.
* @param pszFormat The program name format string.
* @param ... Format arguments.
*/
RTDECL(int) RTMsgSetProgName(const char *pszFormat, ...) RT_IPRT_FORMAT_ATTR(1, 2);
/**
* Print error message to standard error.
*
* The message will be prefixed with the file name part of process image name
* (i.e. no path) and "error: ". If the message doesn't end with a new line,
* one will be added. The caller should call this with an empty string if
* unsure whether the cursor is currently position at the start of a new line.
*
* @returns IPRT status code.
* @param pszFormat The message format string.
* @param ... Format arguments.
*/
RTDECL(int) RTMsgError(const char *pszFormat, ...) RT_IPRT_FORMAT_ATTR(1, 2);
/**
* Print error message to standard error.
*
* The message will be prefixed with the file name part of process image name
* (i.e. no path) and "error: ". If the message doesn't end with a new line,
* one will be added. The caller should call this with an empty string if
* unsure whether the cursor is currently position at the start of a new line.
*
* @returns IPRT status code.
* @param pszFormat The message format string.
* @param va Format arguments.
*/
RTDECL(int) RTMsgErrorV(const char *pszFormat, va_list va) RT_IPRT_FORMAT_ATTR(1, 0);
/**
* Same as RTMsgError() except for the return value.
*
* @returns @a enmExitCode
* @param enmExitCode What to exit code to return. This is mainly for
* saving some vertical space in the source file.
* @param pszFormat The message format string.
* @param ... Format arguments.
*/
RTDECL(RTEXITCODE) RTMsgErrorExit(RTEXITCODE enmExitCode, const char *pszFormat, ...) RT_IPRT_FORMAT_ATTR(2, 3);
/**
* Same as RTMsgErrorV() except for the return value.
*
* @returns @a enmExitCode
* @param enmExitCode What to exit code to return. This is mainly for
* saving some vertical space in the source file.
* @param pszFormat The message format string.
* @param va Format arguments.
*/
RTDECL(RTEXITCODE) RTMsgErrorExitV(RTEXITCODE enmExitCode, const char *pszFormat, va_list va) RT_IPRT_FORMAT_ATTR(2, 0);
/**
* Same as RTMsgError() except for always returning RTEXITCODE_FAILURE.
*
* @returns RTEXITCODE_FAILURE
* @param pszFormat The message format string.
* @param ... Format arguments.
*/
RTDECL(RTEXITCODE) RTMsgErrorExitFailure(const char *pszFormat, ...) RT_IPRT_FORMAT_ATTR(1, 2);
/**
* Same as RTMsgErrorV() except for always returning RTEXITCODE_FAILURE.
*
* @returns RTEXITCODE_FAILURE
* @param pszFormat The message format string.
* @param va Format arguments.
*/
RTDECL(RTEXITCODE) RTMsgErrorExitFailureV(const char *pszFormat, va_list va) RT_IPRT_FORMAT_ATTR(1, 0);
/**
* Same as RTMsgError() except for the return value.
*
* @returns @a rcRet
* @param rcRet What IPRT status to return. This is mainly for
* saving some vertical space in the source file.
* @param pszFormat The message format string.
* @param ... Format arguments.
*/
RTDECL(int) RTMsgErrorRc(int rcRet, const char *pszFormat, ...) RT_IPRT_FORMAT_ATTR(2, 3);
/**
* Same as RTMsgErrorV() except for the return value.
*
* @returns @a rcRet
* @param rcRet What IPRT status to return. This is mainly for
* saving some vertical space in the source file.
* @param pszFormat The message format string.
* @param va Format arguments.
*/
RTDECL(int) RTMsgErrorRcV(int rcRet, const char *pszFormat, va_list va) RT_IPRT_FORMAT_ATTR(2, 0);
/**
* For reporting syntax errors.
*
* @returns RTEXITCODE_SYNTAX
* @param pszFormat The message format string. Newline not needed.
* @param ... Format arguments.
*/
RTDECL(RTEXITCODE) RTMsgSyntax(const char *pszFormat, ...) RT_IPRT_FORMAT_ATTR(1, 2);
/**
* For reporting syntax errors.
*
* @returns RTEXITCODE_SYNTAX
* @param pszFormat The message format string. Newline not needed.
* @param va Format arguments.
*/
RTDECL(RTEXITCODE) RTMsgSyntaxV(const char *pszFormat, va_list va) RT_IPRT_FORMAT_ATTR(1, 0);
/**
* Print an error message for a RTR3Init failure and suggest an exit code.
*
* @code
*
* int rc = RTR3Init();
* if (RT_FAILURE(rc))
* return RTMsgInitFailure(rc);
*
* @endcode
*
* @returns Appropriate exit code.
* @param rcRTR3Init The status code returned by RTR3Init.
*/
RTDECL(RTEXITCODE) RTMsgInitFailure(int rcRTR3Init);
/**
* Print informational message to standard error.
*
* The message will be prefixed with the file name part of process image name
* (i.e. no path) and "warning: ". If the message doesn't end with a new line,
* one will be added. The caller should call this with an empty string if
* unsure whether the cursor is currently position at the start of a new line.
*
* @returns IPRT status code.
* @param pszFormat The message format string.
* @param ... Format arguments.
*/
RTDECL(int) RTMsgWarning(const char *pszFormat, ...) RT_IPRT_FORMAT_ATTR(1, 2);
/**
* Print informational message to standard error.
*
* The message will be prefixed with the file name part of process image name
* (i.e. no path) and "warning: ". If the message doesn't end with a new line,
* one will be added. The caller should call this with an empty string if
* unsure whether the cursor is currently position at the start of a new line.
*
* @returns IPRT status code.
* @param pszFormat The message format string.
* @param va Format arguments.
*/
RTDECL(int) RTMsgWarningV(const char *pszFormat, va_list va) RT_IPRT_FORMAT_ATTR(1, 0);
/**
* Print informational message to standard output.
*
* The message will be prefixed with the file name part of process image name
* (i.e. no path) and "info: ". If the message doesn't end with a new line,
* one will be added. The caller should call this with an empty string if
* unsure whether the cursor is currently position at the start of a new line.
*
* @returns IPRT status code.
* @param pszFormat The message format string.
* @param ... Format arguments.
*/
RTDECL(int) RTMsgInfo(const char *pszFormat, ...) RT_IPRT_FORMAT_ATTR(1, 2);
/**
* Print informational message to standard output.
*
* The message will be prefixed with the file name part of process image name
* (i.e. no path) and "info: ". If the message doesn't end with a new line,
* one will be added. The caller should call this with an empty string if
* unsure whether the cursor is currently position at the start of a new line.
*
* @returns IPRT status code.
* @param pszFormat The message format string.
* @param va Format arguments.
*/
RTDECL(int) RTMsgInfoV(const char *pszFormat, va_list va) RT_IPRT_FORMAT_ATTR(1, 0);
/** @defgroup grp_rt_msg_refentry Help generated from refentry/manpage.
*
* The refentry/manpage docbook source in doc/manual/en_US/man_* is processed by
* doc/manual/docbook-refentry-to-C-help.xsl and turned a set of the structures
* defined here.
*
* @{
*/
/** The non-breaking space character.
* @remarks We could've used U+00A0, but it is easier both to encode and to
* search and replace a single ASCII character. */
#define RTMSGREFENTRY_NBSP '\b'
/** @name REFENTRYSTR_SCOPE_XXX - Common string scoping and flags.
* @{ */
/** Same scope as previous string table entry, flags are reset and can be
* ORed in. */
#define RTMSGREFENTRYSTR_SCOPE_SAME UINT64_C(0)
/** Global scope. */
#define RTMSGREFENTRYSTR_SCOPE_GLOBAL UINT64_C(0x0fffffffffffffff)
/** Scope mask. */
#define RTMSGREFENTRYSTR_SCOPE_MASK UINT64_C(0x0fffffffffffffff)
/** Flags mask. */
#define RTMSGREFENTRYSTR_FLAGS_MASK UINT64_C(0xf000000000000000)
/** Command synopsis, special hanging indent rules applies. */
#define RTMSGREFENTRYSTR_FLAGS_SYNOPSIS RT_BIT_64(63)
/** @} */
/** String table entry for a refentry. */
typedef struct RTMSGREFENTRYSTR
{
/** The scope of the string. There are two predefined scopes,
* REFENTRYSTR_SCOPE_SAME and REFENTRYSTR_SCOPE_GLOBAL. The rest are
* reference entry specific. */
uint64_t fScope;
/** The string. Non-breaking space is represented by the char
* REFENTRY_NBSP defines, just in case the string needs wrapping. There is
* no trailing newline, that's implicit. */
const char *psz;
} RTMSGREFENTRYSTR;
/** Pointer to a read-only string table entry. */
typedef const RTMSGREFENTRYSTR *PCRTMSGREFENTRYSTR;
/** Refentry string table. */
typedef struct RTMSGREFENTRYSTRTAB
{
/** Number of strings. */
uint16_t cStrings;
/** Reserved for future use. */
uint16_t fReserved;
/** Pointer to the string table. */
PCRTMSGREFENTRYSTR paStrings;
} RTMSGREFENTRYSTRTAB;
/** Pointer to a read-only string table. */
typedef RTMSGREFENTRYSTRTAB const *PCRTMSGREFENTRYSTRTAB;
/**
* Help extracted from a docbook refentry document.
*/
typedef struct RTMSGREFENTRY
{
/** Internal reference entry identifier. */
int64_t idInternal;
/** Usage synopsis. */
RTMSGREFENTRYSTRTAB Synopsis;
/** Full help. */
RTMSGREFENTRYSTRTAB Help;
/** Brief command description. */
const char *pszBrief;
} RTMSGREFENTRY;
/** Pointer to a read-only refentry help extract structure. */
typedef RTMSGREFENTRY const *PCRTMSGREFENTRY;
#ifndef IPRT_INCLUDED_stream_h
typedef struct RTSTREAM *PRTSTREAM;
#endif
/**
* Print the synopsis to the given stream.
*
* @returns Current number of pending blank lines.
* @param pStrm The output stream.
* @param pEntry The refentry to print the help for.
*/
RTDECL(int) RTMsgRefEntrySynopsis(PRTSTREAM pStrm, PCRTMSGREFENTRY pEntry);
/**
* Print the synopsis to the given stream.
*
* @returns Current number of pending blank lines.
* @param pStrm The output stream.
* @param pEntry The refentry to print the help for.
* @param fScope The scope inclusion mask.
* @param fFlags RTMSGREFENTRY_SYNOPSIS_F_XXX.
*/
RTDECL(int) RTMsgRefEntrySynopsisEx(PRTSTREAM pStrm, PCRTMSGREFENTRY pEntry, uint64_t fScope, uint32_t fFlags);
/** @name RTMSGREFENTRY_SYNOPSIS_F_XXX - Flags for RTMsgRefEntrySynopsisEx.
* @{ */
/** Prefix the output with 'Usage:'. */
#define RTMSGREFENTRY_SYNOPSIS_F_USAGE RT_BIT_32(0)
/** @} */
/**
* Print the help text to the given stream.
*
* @returns Current number of pending blank lines.
* @param pStrm The output stream.
* @param pEntry The refentry to print the help for.
*/
RTDECL(int) RTMsgRefEntryHelp(PRTSTREAM pStrm, PCRTMSGREFENTRY pEntry);
/**
* Print the help text to the given stream, extended version.
*
* @returns Current number of pending blank lines.
* @param pStrm The output stream.
* @param pEntry The refentry to print the help for.
* @param fScope The scope inclusion mask.
* @param fFlags Reserved, MBZ.
*/
RTDECL(int) RTMsgRefEntryHelpEx(PRTSTREAM pStrm, PCRTMSGREFENTRY pEntry, uint64_t fScope, uint32_t fFlags);
/**
* Prints a string table.
*
* @returns Current number of pending blank lines.
* @param pStrm The output stream.
* @param pStrTab The string table.
* @param fScope The selection scope.
* @param pcPendingBlankLines In: Pending blank lines from previous string
* table. Out: Pending blank lines.
* @param pcLinesWritten Pointer to variable that should be incremented
* by the number of lines written. Optional.
*/
RTDECL(int) RTMsgRefEntryPrintStringTable(PRTSTREAM pStrm, PCRTMSGREFENTRYSTRTAB pStrTab, uint64_t fScope,
uint32_t *pcPendingBlankLines, uint32_t *pcLinesWritten);
/** @} */
/** @} */
RT_C_DECLS_END
#endif /* !IPRT_INCLUDED_message_h */
|