blob: fe746288047ba493c3ffb194bdbdf9a19e5cd2f3 [file] [log] [blame]
njn36a20fa2005-06-03 03:08:39 +00001
2/*--------------------------------------------------------------------*/
3/*--- Printing libc stuff. pub_tool_libcprint.h ---*/
4/*--------------------------------------------------------------------*/
5
6/*
7 This file is part of Valgrind, a dynamic binary instrumentation
8 framework.
9
Elliott Hughesed398002017-06-21 14:41:24 -070010 Copyright (C) 2000-2017 Julian Seward
njn36a20fa2005-06-03 03:08:39 +000011 jseward@acm.org
12
13 This program is free software; you can redistribute it and/or
14 modify it under the terms of the GNU General Public License as
15 published by the Free Software Foundation; either version 2 of the
16 License, or (at your option) any later version.
17
18 This program is distributed in the hope that it will be useful, but
19 WITHOUT ANY WARRANTY; without even the implied warranty of
20 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
21 General Public License for more details.
22
23 You should have received a copy of the GNU General Public License
24 along with this program; if not, write to the Free Software
25 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
26 02111-1307, USA.
27
28 The GNU General Public License is contained in the file COPYING.
29*/
30
31#ifndef __PUB_TOOL_LIBCPRINT_H
32#define __PUB_TOOL_LIBCPRINT_H
33
florian535fb1b2013-09-15 13:54:34 +000034#include "pub_tool_basics.h" // VG_ macro
35
njn36a20fa2005-06-03 03:08:39 +000036/* ---------------------------------------------------------------------
njnb1cc5d62010-07-06 04:05:23 +000037 Formatting functions
njn36a20fa2005-06-03 03:08:39 +000038 ------------------------------------------------------------------ */
39
philippe6d0e77b2014-05-07 22:03:59 +000040/* The formatting functions supports a subset (and 2 extensions) of
41 the 'printf' format.
42 The extensions are:
43 %pS : print a string (like %s) but escaping chars for XML safety.
44 %ps : with --xml=no, synonym for %s, with --xml=yes, synonym of %pS.
45
46 Note: these extensions do not cause the compiler to barf with PRINTF_CHECK
47 as for the classical printf, %p requires a pointer, which must also
48 be provided for the %ps and %pS extensions. The s/S following %p
49 are understood by PRINTF_CHECK as characters to output.
50*/
51
floriandbb35842012-10-27 18:39:11 +000052extern UInt VG_(sprintf) ( HChar* buf, const HChar* format, ... )
sewardj5d9dc752009-07-15 14:52:18 +000053 PRINTF_CHECK(2, 3);
54
floriandbb35842012-10-27 18:39:11 +000055extern UInt VG_(vsprintf) ( HChar* buf, const HChar* format, va_list vargs )
sewardj5d9dc752009-07-15 14:52:18 +000056 PRINTF_CHECK(2, 0);
57
floriandbb35842012-10-27 18:39:11 +000058extern UInt VG_(snprintf) ( HChar* buf, Int size,
sewardj5d9dc752009-07-15 14:52:18 +000059 const HChar *format, ... )
60 PRINTF_CHECK(3, 4);
61
floriandbb35842012-10-27 18:39:11 +000062extern UInt VG_(vsnprintf)( HChar* buf, Int size,
sewardj5d9dc752009-07-15 14:52:18 +000063 const HChar *format, va_list vargs )
64 PRINTF_CHECK(3, 0);
65
njnb1cc5d62010-07-06 04:05:23 +000066/* ---------------------------------------------------------------------
67 Output-printing functions
68 ------------------------------------------------------------------ */
69
70// Note that almost all output goes to the file descriptor given by the
71// --log-fd/--log-file/--log-socket argument, which defaults to 2 (stderr).
72// (Except that some text always goes to stdout/stderr at startup, and
73// debugging messages always go to stderr.) Hence no need for
74// VG_(fprintf)().
75
76/* No, really. I _am_ that strange. */
77#define OINK(nnn) VG_(message)(Vg_DebugMsg, "OINK %d\n",nnn)
78
79/* Print a message with a prefix that depends on the VgMsgKind.
80 Should be used for all user output. */
81
82typedef
83 enum { // Prefix
84 Vg_FailMsg, // "valgrind:"
85 Vg_UserMsg, // "==pid=="
86 Vg_DebugMsg, // "--pid--"
njnb1cc5d62010-07-06 04:05:23 +000087 Vg_ClientMsg // "**pid**"
88 }
89 VgMsgKind;
90
91// These print output that isn't prefixed with anything, and should be
92// used in very few cases, such as printing usage messages.
93extern UInt VG_(printf) ( const HChar *format, ... )
94 PRINTF_CHECK(1, 2);
95extern UInt VG_(vprintf) ( const HChar *format, va_list vargs )
96 PRINTF_CHECK(1, 0);
97
sewardj5d9dc752009-07-15 14:52:18 +000098extern UInt VG_(printf_xml) ( const HChar *format, ... )
99 PRINTF_CHECK(1, 2);
100
101extern UInt VG_(vprintf_xml) ( const HChar *format, va_list vargs )
102 PRINTF_CHECK(1, 0);
103
florian12d2eb52014-10-30 22:17:56 +0000104typedef struct _VgFile VgFile;
105
106extern VgFile *VG_(fopen) ( const HChar *name, Int flags, Int mode );
107extern void VG_(fclose) ( VgFile *fp );
108extern UInt VG_(fprintf) ( VgFile *fp, const HChar *format, ... )
109 PRINTF_CHECK(2, 3);
110extern UInt VG_(vfprintf) ( VgFile *fp, const HChar *format, va_list vargs )
111 PRINTF_CHECK(2, 0);
112
philippe07c08522014-05-14 20:39:27 +0000113/* Do a printf-style operation on either the XML
114 or normal output channel
115 or gdb output channel, depending on the setting of VG_(clo_xml)
116 and the state of VG_(log_output_sink). */
117extern UInt VG_(emit) ( const HChar* format, ... ) PRINTF_CHECK(1, 2);
118
njnb1cc5d62010-07-06 04:05:23 +0000119/* Yet another, totally general, version of vprintf, which hands all
120 output bytes to CHAR_SINK, passing it OPAQUE as the second arg. */
121extern void VG_(vcbprintf)( void(*char_sink)(HChar, void* opaque),
122 void* opaque,
123 const HChar* format, va_list vargs );
njn856c54e2005-06-26 18:43:40 +0000124
barta0b6b2c2008-07-07 06:49:24 +0000125extern UInt VG_(message)( VgMsgKind kind, const HChar* format, ... )
njnb1cc5d62010-07-06 04:05:23 +0000126 PRINTF_CHECK(2, 3);
njn36a20fa2005-06-03 03:08:39 +0000127
barta0b6b2c2008-07-07 06:49:24 +0000128extern UInt VG_(vmessage)( VgMsgKind kind, const HChar* format, va_list vargs )
njnb1cc5d62010-07-06 04:05:23 +0000129 PRINTF_CHECK(2, 0);
barta0b6b2c2008-07-07 06:49:24 +0000130
njn6f74a7e2009-03-12 00:06:45 +0000131// Short-cuts for VG_(message)().
njnb1cc5d62010-07-06 04:05:23 +0000132
133// This is used for messages printed due to start-up failures that occur
134// before the preamble is printed, eg. due a bad executable.
135extern UInt VG_(fmsg)( const HChar* format, ... ) PRINTF_CHECK(1, 2);
136
137// This is used if an option was bad for some reason. Note: don't use it just
138// because an option was unrecognised -- return 'False' from
139// VG_(tdict).tool_process_cmd_line_option) to indicate that -- use it if eg.
140// an option was given an inappropriate argument. This function prints an
141// error message, then shuts down the entire system.
142__attribute__((noreturn))
florianbbd9a212012-10-14 00:16:28 +0000143extern void VG_(fmsg_bad_option) ( const HChar* opt, const HChar* format, ... )
njnb1cc5d62010-07-06 04:05:23 +0000144 PRINTF_CHECK(2, 3);
145
146// This is used for messages that are interesting to the user: info about
147// their program (eg. preamble, tool error messages, postamble) or stuff they
148// requested.
sewardj5d9dc752009-07-15 14:52:18 +0000149extern UInt VG_(umsg)( const HChar* format, ... ) PRINTF_CHECK(1, 2);
njnb1cc5d62010-07-06 04:05:23 +0000150
151// This is used for debugging messages that are only of use to developers.
sewardj5d9dc752009-07-15 14:52:18 +0000152extern UInt VG_(dmsg)( const HChar* format, ... ) PRINTF_CHECK(1, 2);
njnb1cc5d62010-07-06 04:05:23 +0000153
sewardj5d9dc752009-07-15 14:52:18 +0000154/* Flush any output cached by previous calls to VG_(message) et al. */
155extern void VG_(message_flush) ( void );
barta0b6b2c2008-07-07 06:49:24 +0000156
philippe68c62932015-04-21 20:56:49 +0000157/* Return a textual representation of a SysRes value in a statically
158 allocated buffer. The buffer will be overwritten with the next
159 invocation. */
florian596b3fe2015-04-20 20:42:42 +0000160extern const HChar *VG_(sr_as_string) ( SysRes sr );
161
njn36a20fa2005-06-03 03:08:39 +0000162#endif // __PUB_TOOL_LIBCPRINT_H
163
164/*--------------------------------------------------------------------*/
165/*--- end ---*/
166/*--------------------------------------------------------------------*/