blob: 74bf2afb25784446be4e2a67507ef81569c04663 [file] [log] [blame]
sewardj1cf558c2005-04-25 01:36:56 +00001
2/*--------------------------------------------------------------------*/
3/*--- Debug (not-for-user) logging. pub_core_debuglog.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
sewardj1cf558c2005-04-25 01:36:56 +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_CORE_DEBUGLOG_H
32#define __PUB_CORE_DEBUGLOG_H
33
34//--------------------------------------------------------------------
35// PURPOSE: This module provides a low-level debug logging facility
36// that works through all the twists and turns of program startup. Is
37// is completely independent of everything, including all memory
38// facilities, and emits the debug log on file descriptor 2 (stderr).
39// This module is the first to be initialised at system startup.
40//
41// Because VG_(debugLog) does printf-style formatting, and because
42// this module depends on NO OTHERS, this module contains Valgrind's
43// vfprintf implementation too.
44//--------------------------------------------------------------------
45
46/* Gaaah! We don't want glibc dependencies, but there is no easy,
47 portable way to avoid using stdarg.h. */
48#include <stdarg.h>
49
florianc91f5842013-09-15 10:42:26 +000050#include "pub_core_basics.h" /* For definition of VG_ macro */
sewardj1cf558c2005-04-25 01:36:56 +000051
52/* There are no tool-visible exports from m_debuglog, hence no header
53 file for it. */
54/* #include "pub_tool_debuglog.h" */
55
56
57/* Module startup. */
58extern
floriandbb35842012-10-27 18:39:11 +000059void VG_(debugLog_startup) ( Int level, const HChar* who );
sewardj1cf558c2005-04-25 01:36:56 +000060
sewardj10759312005-05-30 23:52:47 +000061
bartdb4384e2011-10-11 18:49:35 +000062/* Whether %ps should escape XML metacharacters. */
63extern void VG_(debugLog_setXml)(Bool xml);
64
65
sewardj10759312005-05-30 23:52:47 +000066/* Get the logging threshold level, as set by the most recent call to
67 VG_(debugLog_startup), or zero if there have been no such calls so
68 far. */
69extern
70Int VG_(debugLog_getLevel) ( void );
71
72
sewardj1cf558c2005-04-25 01:36:56 +000073/* Send debugging output. Nothing happens unless 'level'
74 does not exceed the logging threshold level. */
75extern
sewardj1cf558c2005-04-25 01:36:56 +000076void VG_(debugLog) ( Int level, const HChar* modulename,
bart355bc9f2009-08-23 11:11:36 +000077 const HChar* format, ... )
78 __attribute__((format(__printf__, 3, 4)));
sewardj1cf558c2005-04-25 01:36:56 +000079
sewardj10759312005-05-30 23:52:47 +000080
njn48d04bd2009-05-20 07:36:18 +000081/* A simple vprintf(). For each emitted byte, (*send_fn) is called with
sewardj1cf558c2005-04-25 01:36:56 +000082 that byte, and 'send_arg2' as its second param. */
83extern
84UInt VG_(debugLog_vprintf) (
njn48d04bd2009-05-20 07:36:18 +000085 void (*send_fn)(HChar,void*),/* byte sink */
sewardj1cf558c2005-04-25 01:36:56 +000086 void* send_arg2, /* 2nd arg for byte sink */
87 const HChar *format,
88 va_list vargs
89 );
90
91
92#endif // __PUB_CORE_DEBUGLOG_H
93
94/*--------------------------------------------------------------------*/
95/*--- end pub_core_debuglog.h ---*/
96/*--------------------------------------------------------------------*/