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
|
/* debug.c -- Debugging support for Khepera
* Created: Fri Dec 23 10:53:10 1994 by faith@cs.unc.edu
* Revised: Fri Jun 20 17:23:48 1997 by faith@acm.org
* Copyright 1994, 1995, 1996, 1997 Rickard E. Faith (faith@acm.org)
*
* This library is free software; you can redistribute it and/or modify it
* under the terms of the GNU Library General Public License as published
* by the Free Software Foundation; either version 2 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
* Library General Public License for more details.
*
* You should have received a copy of the GNU Library General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*
* $Id: debug.c,v 1.11 1997/06/21 01:05:07 faith Exp $
*
* \section{Debugging Support}
*
* \intro These routines provide low-level support for run-time debugging
* messages. A set of global flags are maintained using "#define"
* statements. These flags are assumed to be 32-bit integers, the top two
* bits of which are used to select one of four sets of debugging lags.
* Each set, therefore, has 30 bits of flag information. The last set
* (i.e., when the top two bits are both set) is reserved for internal use
* by the \khepera library. For convenience, each flag can be given a
* unique name, so that flags can be set easily with command-line options.
*
*/
#include "maaP.h"
#define TEST(flags,var) (((flags)>>31) \
? (((flags)>>30) \
? ((var[3] & (flags)) << 2) \
: ((var[2] & (flags)) << 2)) \
: (((flags)>>30) \
? ((var[1] & (flags)) << 2) \
: ((var[0] & (flags)) << 2)))
static hsh_HashTable hash;
static dbg_Type setFlags[4];
static dbg_Type usedFlags[4];
/* |_dbg_exists| returns non-zero if |flag| has been associated with a name
(using the |_dbg_register| function). */
static int _dbg_exists( dbg_Type flag )
{
return TEST( flag, usedFlags );
}
/* |_dbg_name| returns a pointer to the name that was associated with the
|flag|. */
static const char *_dbg_name( dbg_Type flag )
{
hsh_Position position;
void *key;
void *datum;
if (!hash) err_fatal( __FUNCTION__, "No debugging names registered\n" );
HSH_ITERATE( hash, position, key, datum ) {
if (flag == (dbg_Type)datum) {
HSH_ITERATE_END( hash );
return key;
}
}
return "unknown flag";
}
/* |_dbg_register| is documented in the |dbg_register| section. */
void _dbg_register( dbg_Type flag, const char *name )
{
dbg_Type tmp;
for (tmp = flag & 0x3fffffff; tmp && !(tmp & 1); tmp >>= 1);
if (!tmp || tmp >> 1)
err_fatal( __FUNCTION__,
"Malformed flag (%lx):"
" a single low-order bit must be set\n",
flag );
if (!hash) hash = hsh_create( NULL, NULL );
if (_dbg_exists( flag ))
err_fatal( __FUNCTION__,
"The debug flag %lx has been used for \"%s\""
" and cannot be reused for \"%s\"\n",
flag,
_dbg_name( flag ),
name );
hsh_insert( hash, name, (void *)flag );
}
/* \doc |dbg_register| is used to set up an asociated between a |flag| and
a |name|. After this association is made, calls to |dbg_set| can use
|name| to set the global debugging flag. Both of the high bits cannot
be set simultaneously---these flags are reserved for internal use by the
\khepera library.\footnote{For internal \khepera library use,
|_dbg_register| can be used to register flags which have both high bits
set.} */
void dbg_register( dbg_Type flag, const char *name )
{
/* These values are reserved for Khepera */
if ((flag & 0xc0000000) == 0xc0000000)
err_fatal( __FUNCTION__,
"Flag (%lx) may not have both high-order bits set\n",
flag );
_dbg_register( flag, name );
}
/* \doc |dbg_set| sets the |name| flag. If |name| is ``none,'' then all
flags are cleared. */
void dbg_set( const char *name )
{
dbg_Type flag;
if (!name) err_internal( __FUNCTION__, "name is NULL\n" );
if (!hash) err_fatal( __FUNCTION__, "No debugging names registered\n" );
if (!strcmp( name, "none" )) {
setFlags[0] = setFlags[1] = setFlags[2] = setFlags[3] = 0;
return;
}
if (!strcmp( name, "all" )) {
setFlags[0] = setFlags[1] = setFlags[2] = setFlags[3] = ~0;
return;
}
if (!(flag = (dbg_Type)hsh_retrieve( hash, name ))) {
if (!(flag = (dbg_Type)hsh_retrieve( hash, name+1 ))
&& *name != '-'
&& *name != '+') {
fprintf( stderr, "Valid debugging flags are:\n" );
dbg_list( stderr );
err_fatal( __FUNCTION__,
"\"%s\" is not a valid debugging flag\n",
name );
} else {
if (*name == '+') setFlags[ flag >> 30 ] |= flag;
else setFlags[ flag >> 30 ] &= ~flag; /* - */
}
} else {
setFlags[ flag >> 30 ] |= flag;
}
}
/* \doc Used to set the flag using the predefined macro instead of the
string name. */
void dbg_set_flag( dbg_Type flag )
{
setFlags[ flag >> 30 ] |= flag;
}
/* \doc Used to unset the flag using the predefined macro instead of the
string name. */
void dbg_unset_flag( dbg_Type flag )
{
setFlags[ flag >> 30 ] &= ~flag;
}
/* \doc This inlined function tests the |flag|, returning non-zero if the
|flag| is set, and zero otherwise. */
__inline__ int dbg_test( dbg_Type flag )
{
return TEST( flag, setFlags );
}
/* \doc |dbg_destroy| destroys the memory associated with the debugging
support routines. This routine should \emph{never} be called by the
programmer: it is automatically called at program termination on systems
that support the |atexit| or |on_exit| calls. */
void dbg_destroy( void )
{
if (hash) hsh_destroy( hash );
hash = NULL;
setFlags[0] = setFlags[1] = setFlags[2] = setFlags[3] = 0;
usedFlags[0] = usedFlags[1] = usedFlags[2] = usedFlags[3] = 0;
}
static int _dbg_user( const void *key, const void *datum, void *arg )
{
FILE *stream = (FILE *)arg;
dbg_Type flag = (dbg_Type)datum;
if ((flag & 0xc0000000) != 0xc0000000)
fprintf( stream, " %s\n", (char *)key );
return 0;
}
static int _dbg_builtin( const void *key, const void *datum, void *arg )
{
FILE *stream = (FILE *)arg;
dbg_Type flag = (dbg_Type)datum;
if ((flag & 0xc0000000) == 0xc0000000)
fprintf( stream, " %s (builtin)\n", (char *)key );
return 0;
}
/* |dbg_list| lists all of the valid user-level debugging flags to the
specified |stream|. */
void dbg_list( FILE *stream )
{
hsh_iterate_arg( hash, _dbg_user, stream );
hsh_iterate_arg( hash, _dbg_builtin, stream );
}
|