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
|
/* debug.c
UUCP debugging functions.
Copyright (C) 1991, 1992, 2002 Ian Lance Taylor
This file is part of the Taylor UUCP package.
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; either version 2 of the
License, or (at your option) any later version.
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, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
The author of the program may be contacted at ian@airs.com.
*/
#include "uucp.h"
#include <ctype.h>
#include "uudefs.h"
#if DEBUG > 1
/* The debugging level. */
int iDebug;
/* Parse a debugging string. This may be a simple number, which sets
the given number of bits in iDebug, or it may be a series of single
letters. */
static const char * const azDebug_names[] = DEBUG_NAMES;
int
idebug_parse (z)
const char *z;
{
char *zend;
int i, iret;
char *zcopy, *ztok;
if (strncasecmp (z, DEBUG_NONE, sizeof DEBUG_NONE - 1) == 0)
return 0;
i = (int) strtol ((char *) z, &zend, 0);
if (*zend == '\0')
{
if (i > 15)
i = 15;
else if (i < 0)
i = 0;
return (1 << i) - 1;
}
zcopy = zbufcpy (z);
iret = 0;
for (ztok = strtok (zcopy, ", \t");
ztok != NULL;
ztok = strtok ((char *) NULL, ", \t"))
{
if (strcasecmp (ztok, "all") == 0)
{
iret = DEBUG_MAX;
break;
}
for (i = 0; azDebug_names[i] != NULL; i++)
{
if (strncasecmp (ztok, azDebug_names[i],
strlen (azDebug_names[i])) == 0)
{
iret |= 1 << i;
break;
}
}
if (azDebug_names[i] == NULL)
ulog (LOG_ERROR, "Unrecognized debugging option \"%s\"",
ztok);
}
ubuffree (zcopy);
return iret;
}
#endif /* DEBUG > 1 */
/* A debugging routine used when displaying buffers. */
size_t
cdebug_char (z, ichar)
char *z;
int ichar;
{
char b;
if (isprint (BUCHAR (ichar))
&& ichar != '\"'
&& ichar != '\\')
{
*z++ = (char) ichar;
*z = '\0';
return 1;
}
*z++ = '\\';
switch (ichar)
{
case '\n':
b = 'n';
break;
case '\r':
b = 'r';
break;
case '\"':
b = '\"';
break;
case '\\':
b = '\\';
break;
default:
sprintf (z, "%03o", (unsigned int) BUCHAR (ichar));
return strlen (z) + 1;
}
*z++ = b;
*z = '\0';
return 2;
}
#if DEBUG > 1
/* Display a buffer when debugging. */
void
udebug_buffer (zhdr, zbuf, clen)
const char *zhdr;
const char *zbuf;
size_t clen;
{
char *z, *zalc;
size_t i;
zalc = zbufalc (clen * 4 + 1);
z = zalc;
for (i = 0; i < clen && i < 80; i++)
z += cdebug_char (z, zbuf[i]);
if (i < clen)
{
*z++ = '.';
*z++ = '.';
*z++ = '.';
}
*z = '\0';
ulog (LOG_DEBUG, "%s %lu \"%s\"", zhdr, (unsigned long) clen, zalc);
ubuffree (zalc);
}
#endif
|