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 | /* *****************************************************************
MESQUITE -- The Mesh Quality Improvement Toolkit
Copyright 2004 Sandia Corporation and Argonne National
Laboratory. Under the terms of Contract DE-AC04-94AL85000
with Sandia Corporation, the U.S. Government retains certain
rights in this software.
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 of the License, or (at your option) any later version.
This library 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
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public License
(lgpl.txt) along with this library; if not, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
***************************************************************** */
#include "MsqDebug.hpp"
#include <cstdio>
#include <cstdlib>
#include <cstdarg>
#include <cstring>
namespace MBMesquite
{
/* IMPORTANT: Be careful to initialize the InitializeFlags object
*LAST* as it will access the other static data. */
std::vector< std::ostream* > MsqDebug::streams;
std::vector< bool > MsqDebug::flags;
#ifdef MSQ_ENABLE_DEBUG
static void parse_flag_string( const char* str, bool flag_val )
{
char* s = strdup( str );
const char delim[] = ";,";
for( const char* p = strtok( s, delim ); p; p = strtok( 0, delim ) )
{
int beg, end;
switch( sscanf( p, "%u - %u", &beg, &end ) )
{
case 1:
end = beg;
// fall through
case 2:
for( ; beg <= end; ++beg )
MsqDebug::set( beg, flag_val );
break;
}
}
free( s );
}
MsqDebug::InitializeFlags::InitializeFlags()
{
const unsigned flag_array[] = { MSQ_ENABLE_DEBUG, 0 };<--- Skipping configuration 'MSQ_ENABLE_DEBUG' since the value of 'MSQ_ENABLE_DEBUG' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.
size_t length = sizeof( flag_array ) / sizeof( unsigned ) - 1;
while( length > 0 )
MsqDebug::set( flag_array[--length], true );
const char* envstr = getenv( "MESQUITE_DEBUG" );
if( envstr ) parse_flag_string( envstr, true );
envstr = getenv( "MESQUITE_NO_DEBUG" );
if( envstr ) parse_flag_string( envstr, false );
}
#else
MsqDebug::InitializeFlags::InitializeFlags() {}
#endif
MsqDebug::InitializeFlags MsqDebug::init;
bool MsqDebug::get( unsigned flag )
{
return flag < flags.size() && flags[flag];
}
void MsqDebug::set( unsigned flag, bool state )
{
if( state )
{
if( flag >= flags.size() )
{
flags.resize( flag + 1 );
}
flags[flag] = true;
}
else
{
if( flag < flags.size() ) flags[flag] = false;
}
}
void MsqDebug::disable_all()
{
flags.clear();
}
std::ostream& MsqDebug::get_stream( unsigned flag )
{
if( flag < streams.size() )
return *streams[flag];
else
return std::cout;
}
void MsqDebug::set_stream( unsigned flag, std::ostream& stream )<--- The function 'set_stream' is never used.
{
if( flag >= streams.size() )
{
size_t old_size = streams.size();
streams.resize( flag );
for( unsigned i = old_size; i < flag; ++i )
streams[i] = &std::cout;
}
streams[flag] = &stream;
}
void MsqDebug::FormatPrinter::print( const char* format, ... ) const
{
if( !MsqDebug::get( myFlag ) ) return;
char buffer[512];
#if defined( HAVE_VSNPRINTF )
va_list args;
va_start( args, format );
vsnprintf( buffer, sizeof( buffer ), format, args );
va_end( args );
#elif defined( HAVE__VSNPRINTF )
va_list args;
va_start( args, format );
_vsnprintf( buffer, sizeof( buffer ), format, args );
va_end( args );
#elif defined( HAVE_VSPRINTF )
va_list args;
va_start( args, format );
vsprintf( buffer, format, args );
va_end( args );
#else
strncpy( buffer, format, sizeof( buffer ) );
buffer[sizeof( buffer ) - 1] = '\0';
#endif
MsqDebug::get_stream( myFlag ) << buffer;
}
} // namespace MBMesquite
|