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 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277
|
/******************************************************************************
Copyright (c) 1992, 1995, 1996 Xerox Corporation. All rights reserved.
Portions of this code were written by Stephen White, aka ghond.
Use and copying of this software and preparation of derivative works based
upon this software are permitted. Any distribution of this software or
derivative works must comply with all applicable United States export
control laws. This software is made available AS IS, and Xerox Corporation
makes no warranty about the software, its performance or its conformity to
any specification. Any person obtaining a copy of this software is requested
to send their name and post office or electronic mail address to:
Pavel Curtis
Xerox PARC
3333 Coyote Hill Rd.
Palo Alto, CA 94304
Pavel@Xerox.Com
*****************************************************************************/
#include <float.h>
#include "my-stdarg.h"
#include "my-string.h"
#include "my-stdio.h"
#include "config.h"
#include "log.h"
#include "storage.h"
#include "streams.h"
Stream *
new_stream(int size)
{
Stream *s = mymalloc(sizeof(Stream), M_STREAM);
s->buffer = mymalloc(size, M_STREAM);
s->buflen = size;
s->current = 0;
return s;
}
static void
grow(Stream * s, int newlen)
{
char *newbuf;
newbuf = mymalloc(newlen, M_STREAM);
memcpy(newbuf, s->buffer, s->current);
myfree(s->buffer, M_STREAM);
s->buffer = newbuf;
s->buflen = newlen;
}
void
stream_add_char(Stream * s, char c)
{
if (s->current + 1 >= s->buflen)
grow(s, s->buflen * 2);
s->buffer[s->current++] = c;
}
void
stream_add_string(Stream * s, const char *string)
{
int len = strlen(string);
if (s->current + len >= s->buflen) {
int newlen = s->buflen * 2;
if (newlen <= s->current + len)
newlen = s->current + len + 1;
grow(s, newlen);
}
strcpy(s->buffer + s->current, string);
s->current += len;
}
static const char *
itoa(int n, int radix)
{
if (n == 0) /* zero produces "" below. */
return "0";
else if (n == -2147483647 - 1) /* min. integer won't work below. */
switch (radix) {
case 16:
return "-7FFFFFFF";
case 10:
return "-2147483648";
case 8:
return "-17777777777";
default:
errlog("STREAM_PRINTF: Illegal radix %d!\n", radix);
return "0";
} else {
static char buffer[20];
char *ptr = buffer + 19;
int neg = 0;
if (n < 0) {
neg = 1;
n = -n;
}
*(ptr) = '\0';
while (n != 0) {
int digit = n % radix;
*(--ptr) = (digit < 10 ? '0' + digit : 'A' + digit - 10);
n /= radix;
}
if (neg)
*(--ptr) = '-';
return ptr;
}
}
static const char *
dbl_fmt(void)
{
static const char *fmt = 0;
static char buffer[10];
if (!fmt) {
sprintf(buffer, "%%.%dg", DBL_DIG);
fmt = buffer;
}
return fmt;
}
void
stream_printf(Stream * s, const char *fmt,...)
{
char buffer[40];
va_list args;
va_start(args, fmt);
while (*fmt) {
char c = *fmt;
if (c == '%') {
char pad = ' ';
int width = 0, base;
const char *string = ""; /* initialized to silence warning */
while ((c = *(++fmt)) != '\0') {
switch (c) {
case 's':
string = va_arg(args, char *);
break;
case 'x':
base = 16;
goto finish_number;
case 'o':
base = 8;
goto finish_number;
case 'd':
base = 10;
finish_number:
string = itoa(va_arg(args, int), base);
break;
case 'g':
sprintf(buffer, dbl_fmt(), va_arg(args, double));
if (!strchr(buffer, '.') && !strchr(buffer, 'e'))
strcat(buffer, ".0"); /* make it look floating */
string = buffer;
break;
case '0':
if (width == 0) {
pad = '0';
continue;
}
case '1':
case '2':
case '3':
case '4':
case '5':
case '6':
case '7':
case '8':
case '9':
width = width * 10 + c - '0';
continue;
default:
errlog("STREAM_PRINTF: Unknown format directive: %%%c\n",
c);
goto abort;
}
break;
}
if (width && (width -= strlen(string)) > 0)
while (width--)
stream_add_char(s, pad);
stream_add_string(s, string);
} else
stream_add_char(s, *fmt);
fmt++;
}
abort:
va_end(args);
}
void
free_stream(Stream * s)
{
myfree(s->buffer, M_STREAM);
myfree(s, M_STREAM);
}
char *
reset_stream(Stream * s)
{
s->buffer[s->current] = '\0';
s->current = 0;
return s->buffer;
}
char *
stream_contents(Stream * s)
{
s->buffer[s->current] = '\0';
return s->buffer;
}
int
stream_length(Stream * s)
{
return s->current;
}
char rcsid_streams[] = "$Id: streams.c,v 1.3 1998/12/14 13:19:01 nop Exp $";
/*
* $Log: streams.c,v $
* Revision 1.3 1998/12/14 13:19:01 nop
* Merge UNSAFE_OPTS (ref fixups); fix Log tag placement to fit CVS whims
*
* Revision 1.2 1997/03/03 04:19:28 nop
* GNU Indent normalization
*
* Revision 1.1.1.1 1997/03/03 03:45:01 nop
* LambdaMOO 1.8.0p5
*
* Revision 2.5 1996/03/19 07:14:02 pavel
* Fixed default printing of floating-point numbers. Release 1.8.0p2.
*
* Revision 2.4 1996/03/11 23:33:04 pavel
* Added support for hexadecimal to stream_printf(). Release 1.8.0p1.
*
* Revision 2.3 1996/03/10 01:04:38 pavel
* Increased the precision of printed floating-point numbers by two digits.
* Release 1.8.0.
*
* Revision 2.2 1996/02/08 06:50:39 pavel
* Added support for %g conversion in stream_printf(). Renamed err/logf() to
* errlog/oklog(). Updated copyright notice for 1996. Release 1.8.0beta1.
*
* Revision 2.1 1996/01/11 07:43:01 pavel
* Added support for `%o' to stream_printf(). Release 1.8.0alpha5.
*
* Revision 2.0 1995/11/30 04:31:43 pavel
* New baseline version, corresponding to release 1.8.0alpha1.
*
* Revision 1.5 1992/10/23 23:03:47 pavel
* Added copyright notice.
*
* Revision 1.4 1992/10/21 03:02:35 pavel
* Converted to use new automatic configuration system.
*
* Revision 1.3 1992/08/10 16:52:24 pjames
* Updated #includes.
*
* Revision 1.2 1992/07/21 00:06:51 pavel
* Added rcsid_<filename-root> declaration to hold the RCS ident. string.
*
* Revision 1.1 1992/07/20 23:23:12 pavel
* Initial RCS-controlled version.
*/
|