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 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418
|
/********************************************
cast.c
copyright 1991, Michael D. Brennan
This is a source file for mawk, an implementation of
the AWK programming language.
Mawk is distributed without warranty under the terms of
the GNU General Public License, version 2, 1991.
********************************************/
/* $Log: cast.c,v $
* Revision 1.6 1996/08/11 22:07:50 mike
* Fix small bozo in rt_error("overflow converting ...")
*
* Revision 1.5 1995/06/18 19:17:45 mike
* Create a type Int which on most machines is an int, but on machines
* with 16bit ints, i.e., the PC is a long. This fixes implicit assumption
* that int==long.
*
* Revision 1.4 1995/06/06 00:02:02 mike
* fix cast in d_to_l()
*
* Revision 1.3 1993/07/17 13:22:45 mike
* indent and general code cleanup
*
* Revision 1.2 1993/07/04 12:51:41 mike
* start on autoconfig changes
*
* Revision 5.5 1993/03/06 18:49:45 mike
* rm rt_overflow from check_strnum
*
* Revision 5.4 1993/02/13 21:57:20 mike
* merge patch3
*
* Revision 5.3.1.4 1993/01/22 15:05:19 mike
* pow2->mpow2 for linux
*
* Revision 5.3.1.3 1993/01/22 14:18:33 mike
* const for strtod and ansi picky compilers
*
* Revision 5.3.1.2 1993/01/20 12:53:06 mike
* d_to_l()
*
* Revision 5.3.1.1 1993/01/15 03:33:37 mike
* patch3: safer double to int conversion
*
* Revision 5.3 1992/11/28 23:48:42 mike
* For internal conversion numeric->string, when testing
* if integer, use longs instead of ints so 16 and 32 bit
* systems behave the same
*
* Revision 5.2 1992/08/17 14:19:45 brennan
* patch2: After parsing, only bi_sprintf() uses string_buff.
*
* Revision 5.1 1991/12/05 07:55:41 brennan
* 1.1 pre-release
*
*/
/* cast.c */
#include "mawk.h"
#include "field.h"
#include "memory.h"
#include "scan.h"
#include "repl.h"
int mpow2[NUM_CELL_TYPES] =
{1, 2, 4, 8, 16, 32, 64, 128, 256, 512} ;
void
cast1_to_d(cp)
register CELL *cp ;
{
switch (cp->type)
{
case C_NOINIT:
cp->dval = 0.0 ;
break ;
case C_DOUBLE:
return ;
case C_MBSTRN:
case C_STRING:
{
register STRING *s = (STRING *) cp->ptr ;
#if FPE_TRAPS_ON /* look for overflow error */
errno = 0 ;
cp->dval = strtod(s->str, (char **) 0) ;
if (errno && cp->dval != 0.0) /* ignore underflow */
rt_error("overflow converting %s to double", s->str) ;
#else
cp->dval = strtod(s->str, (char **) 0) ;
#endif
free_STRING(s) ;
}
break ;
case C_STRNUM:
/* don't need to convert, but do need to free the STRING part */
free_STRING(string(cp)) ;
break ;
default:
bozo("cast on bad type") ;
}
cp->type = C_DOUBLE ;
}
void
cast2_to_d(cp)
register CELL *cp ;
{
register STRING *s ;
switch (cp->type)
{
case C_NOINIT:
cp->dval = 0.0 ;
break ;
case C_DOUBLE:
goto two ;
case C_STRNUM:
free_STRING(string(cp)) ;
break ;
case C_MBSTRN:
case C_STRING:
s = (STRING *) cp->ptr ;
#if FPE_TRAPS_ON /* look for overflow error */
errno = 0 ;
cp->dval = strtod(s->str, (char **) 0) ;
if (errno && cp->dval != 0.0) /* ignore underflow */
rt_error("overflow converting %s to double", s->str) ;
#else
cp->dval = strtod(s->str, (char **) 0) ;
#endif
free_STRING(s) ;
break ;
default:
bozo("cast on bad type") ;
}
cp->type = C_DOUBLE ;
two:cp++ ;
switch (cp->type)
{
case C_NOINIT:
cp->dval = 0.0 ;
break ;
case C_DOUBLE:
return ;
case C_STRNUM:
free_STRING(string(cp)) ;
break ;
case C_MBSTRN:
case C_STRING:
s = (STRING *) cp->ptr ;
#if FPE_TRAPS_ON /* look for overflow error */
errno = 0 ;
cp->dval = strtod(s->str, (char **) 0) ;
if (errno && cp->dval != 0.0) /* ignore underflow */
rt_error("overflow converting %s to double", s->str) ;
#else
cp->dval = strtod(s->str, (char **) 0) ;
#endif
free_STRING(s) ;
break ;
default:
bozo("cast on bad type") ;
}
cp->type = C_DOUBLE ;
}
void
cast1_to_s(cp)
register CELL *cp ;
{
register Int lval ;
char xbuff[260] ;
switch (cp->type)
{
case C_NOINIT:
null_str.ref_cnt++ ;
cp->ptr = (PTR) & null_str ;
break ;
case C_DOUBLE:
lval = d_to_I(cp->dval) ;
if (lval == cp->dval) sprintf(xbuff, INT_FMT, lval) ;
else sprintf(xbuff, string(CONVFMT)->str, cp->dval) ;
cp->ptr = (PTR) new_STRING(xbuff) ;
break ;
case C_STRING:
return ;
case C_MBSTRN:
case C_STRNUM:
break ;
default:
bozo("bad type on cast") ;
}
cp->type = C_STRING ;
}
void
cast2_to_s(cp)
register CELL *cp ;
{
register Int lval ;
char xbuff[260] ;
switch (cp->type)
{
case C_NOINIT:
null_str.ref_cnt++ ;
cp->ptr = (PTR) & null_str ;
break ;
case C_DOUBLE:
lval = d_to_I(cp->dval) ;
if (lval == cp->dval) sprintf(xbuff, INT_FMT, lval) ;
else sprintf(xbuff, string(CONVFMT)->str, cp->dval) ;
cp->ptr = (PTR) new_STRING(xbuff) ;
break ;
case C_STRING:
goto two ;
case C_MBSTRN:
case C_STRNUM:
break ;
default:
bozo("bad type on cast") ;
}
cp->type = C_STRING ;
two:
cp++ ;
switch (cp->type)
{
case C_NOINIT:
null_str.ref_cnt++ ;
cp->ptr = (PTR) & null_str ;
break ;
case C_DOUBLE:
lval = d_to_I(cp->dval) ;
if (lval == cp->dval) sprintf(xbuff, INT_FMT, lval) ;
else sprintf(xbuff, string(CONVFMT)->str, cp->dval) ;
cp->ptr = (PTR) new_STRING(xbuff) ;
break ;
case C_STRING:
return ;
case C_MBSTRN:
case C_STRNUM:
break ;
default:
bozo("bad type on cast") ;
}
cp->type = C_STRING ;
}
void
cast_to_RE(cp)
register CELL *cp ;
{
register PTR p ;
if (cp->type < C_STRING) cast1_to_s(cp) ;
p = re_compile(string(cp)) ;
free_STRING(string(cp)) ;
cp->type = C_RE ;
cp->ptr = p ;
}
void
cast_for_split(cp)
register CELL *cp ;
{
static char meta[] = "^$.*+?|[]()" ;
static char xbuff[] = "\\X" ;
int c ;
unsigned len ;
if (cp->type < C_STRING) cast1_to_s(cp) ;
if ((len = string(cp)->len) == 1)
{
if ((c = string(cp)->str[0]) == ' ')
{
free_STRING(string(cp)) ;
cp->type = C_SPACE ;
return ;
}
else if (strchr(meta, c))
{
xbuff[1] = c ;
free_STRING(string(cp)) ;
cp->ptr = (PTR) new_STRING(xbuff) ;
}
}
else if (len == 0)
{
free_STRING(string(cp)) ;
cp->type = C_SNULL ;
return ;
}
cast_to_RE(cp) ;
}
/* input: cp-> a CELL of type C_MBSTRN (maybe strnum)
test it -- casting it to the appropriate type
which is C_STRING or C_STRNUM
*/
void
check_strnum(cp)
CELL *cp ;
{
char *test ;
register unsigned char *s, *q ;
cp->type = C_STRING ; /* assume not C_STRNUM */
s = (unsigned char *) string(cp)->str ;
q = s + string(cp)->len ;
while (scan_code[*s] == SC_SPACE) s++ ;
if (s == q) return ;
while (scan_code[q[-1]] == SC_SPACE) q-- ;
if (scan_code[q[-1]] != SC_DIGIT &&
q[-1] != '.')
return ;
switch (scan_code[*s])
{
case SC_DIGIT:
case SC_PLUS:
case SC_MINUS:
case SC_DOT:
#if FPE_TRAPS_ON
errno = 0 ;
cp->dval = strtod((char *) s, &test) ;
/* make overflow pure string */
if (errno && cp->dval != 0.0) return ;
#else
cp->dval = strtod((char *) s, &test) ;
#endif
if ((char *) q <= test) cp->type = C_STRNUM ;
/* <= instead of == , for some buggy strtod
e.g. Apple Unix */
}
}
/* cast a CELL to a replacement cell */
void
cast_to_REPL(cp)
register CELL *cp ;
{
register STRING *sval ;
if (cp->type < C_STRING) cast1_to_s(cp) ;
sval = (STRING *) cp->ptr ;
cellcpy(cp, repl_compile(sval)) ;
free_STRING(sval) ;
}
/* convert a double to Int (this is not as simple as a
cast because the results are undefined if it won't fit).
Truncate large values to +Max_Int or -Max_Int
Send nans to -Max_Int
*/
Int
d_to_I(d)
double d;
{
if (d >= Max_Int) return Max_Int ;
if (d > -Max_Int) return (Int) d ;
return -Max_Int ;
}
|