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
|
/***************************************************************
bwb_str.c String-Management Routines
for Bywater BASIC Interpreter
Copyright (c) 1993, Ted A. Campbell
Bywater Software
email: tcamp@delphi.com
Copyright and Permissions Information:
All U.S. and international rights are claimed by the author,
Ted A. Campbell.
This software is released under the terms of the GNU General
Public License (GPL), which is distributed with this software
in the file "COPYING". The GPL specifies the terms under
which users may copy and use the software in this distribution.
A separate license is available for commercial distribution,
for information on which you should contact the author.
***************************************************************/
/*---------------------------------------------------------------*/
/* NOTE: Modifications marked "JBV" were made by Jon B. Volkoff, */
/* 11/1995 (eidetics@cerf.net). */
/*---------------------------------------------------------------*/
#include <stdio.h>
#include "bwbasic.h"
#include "bwb_mes.h"
#if INTENSIVE_DEBUG || TEST_BSTRING
static char tbuf[ MAXSTRINGSIZE + 1 ];
#endif
/***************************************************************
FUNCTION: str_btob()
DESCRIPTION: This C function assigns a bwBASIC string
structure to another bwBASIC string
structure.
***************************************************************/
#if ANSI_C
int
str_btob( bstring *d, bstring *s )
#else
int
str_btob( d, s )
bstring *d;
bstring *s;
#endif
{
char *t;
register int i;
#if TEST_BSTRING
sprintf( tbuf, "in str_btob(): entry, source b string name is <%s>", s->name );
bwb_debug( tbuf );
sprintf( tbuf, "in str_btob(): entry, destination b string name is <%s>", d->name );
bwb_debug( tbuf );
#endif
/* get memory for new buffer */
/* Following section removed by JBV (no more mass string reallocation) */
/* if ( ( t = (char *) CALLOC( s->length + 1, 1, "str_btob" )) == NULL )
{
#if PROG_ERRORS
bwb_error( "in str_btob(): failed to get memory for new buffer" );
#else
bwb_error( err_getmem );
#endif
return FALSE;
} */
/* Only one of these two conditions necessitates reallocation (JBV) */
if ( ( d->sbuffer == NULL ) || ( d->rab == TRUE ) )
{
if ( ( t = (char *) CALLOC( MAXSTRINGSIZE + 1, 1, "str_btob" )) == NULL )
{
#if PROG_ERRORS
bwb_error( "in str_btob(): failed to get memory for new buffer" );
#else
bwb_error( err_getmem );
#endif
return FALSE;
}
}
else t = d->sbuffer; /* Leave well enough alone (JBV) */
/* write the b string to the temp c string */
t[ 0 ] = '\0';
for ( i = 0; i < (int) s->length; ++i )
{
t[ i ] = s->sbuffer[ i ];
t[ i + 1 ] = '\0'; /* JBV */
#if INTENSIVE_DEBUG
tbuf[ i ] = s->sbuffer[ i ];
tbuf[ i + 1 ] = '\0';
#endif
}
/* deallocate old memory */
#if INTENSIVE_DEBUG
if ( d->rab == TRUE )
{
sprintf( bwb_ebuf, "in str_btob(): reallocating RAB" );
bwb_debug( bwb_ebuf );
}
#endif
/* Following section removed by JBV (no more mass string reallocation) */
/* if (( d->rab != TRUE ) && ( d->sbuffer != NULL ))
{
#if INTENSIVE_DEBUG
sprintf( tbuf, "in str_btob(): deallocating string memory" );
bwb_debug ( tbuf );
#endif
FREE( d->sbuffer, "str_btob" );
d->sbuffer = NULL;
}
else
{
d->rab = (char) FALSE;
} */
d->rab = (char) FALSE; /* JBV */
/* reassign buffer */
d->sbuffer = t;
/* reassign length */
d->length = s->length;
#if INTENSIVE_DEBUG
sprintf( bwb_ebuf, "in str_btob(): exit length <%d> string <%s>",
d->length, tbuf );
bwb_debug( bwb_ebuf );
#endif
/* return */
return TRUE;
}
/***************************************************************
FUNCTION: str_ctob()
DESCRIPTION: This C function assigns a null-terminated
C string to a bwBASIC string structure.
***************************************************************/
#if ANSI_C
int
str_ctob( bstring *s, char *buffer )
#else
int
str_ctob( s, buffer )
bstring *s;
char *buffer;
#endif
{
char *t;
register int i;
#if INTENSIVE_DEBUG
sprintf( tbuf, "in str_ctob(): entry, c string is <%s>", buffer );
bwb_debug( tbuf );
#endif
#if TEST_BSTRING
sprintf( tbuf, "in str_ctob(): entry, b string name is <%s>", s->name );
bwb_debug( tbuf );
#endif
/* get memory for new buffer */
/* Following section removed by JBV (no more mass string reallocation) */
/* if ( ( t = (char *) CALLOC( strlen( buffer ) + 1, 1, "str_ctob" )) == NULL )
{
#if PROG_ERRORS
bwb_error( "in str_ctob(): failed to get memory for new buffer" );
#else
bwb_error( err_getmem );
#endif
return FALSE;
} */
/* Only one of these two conditions necessitates reallocation (JBV) */
if ( ( s->sbuffer == NULL ) || ( s->rab == TRUE ) )
{
if ( ( t = (char *) CALLOC( MAXSTRINGSIZE + 1, 1, "str_ctob" )) == NULL )
{
#if PROG_ERRORS
bwb_error( "in str_ctob(): failed to get memory for new buffer" );
#else
bwb_error( err_getmem );
#endif
return FALSE;
}
}
else t = s->sbuffer; /* Leave well enough alone (JBV) */
/* write the c string to the temp c string */
t[ 0 ] = '\0';
for ( i = 0; i < (int) strlen( buffer ); ++i )
{
t[ i ] = buffer[ i ];
t[ i + 1 ] = '\0'; /* JBV */
#if INTENSIVE_DEBUG
tbuf[ i ] = buffer[ i ];
tbuf[ i + 1 ] = '\0';
#endif
}
/* deallocate old memory */
#if INTENSIVE_DEBUG
if ( s->rab == TRUE )
{
sprintf( bwb_ebuf, "in str_ctob(): reallocating RAB" );
bwb_debug( bwb_ebuf );
}
#endif
/* Following section removed by JBV (no more mass string reallocation) */
/* if (( s->rab != TRUE ) && ( s->sbuffer != NULL ))
{
FREE( s->sbuffer, "str_ctob" );
s->sbuffer = NULL;
}
else
{
s->rab = (char) FALSE;
} */
s->rab = (char) FALSE; /* JBV */
/* reassign buffer */
s->sbuffer = t;
/* reassign length */
/* Was unsigned char (JBV 9/4/97) */
s->length = (unsigned int) strlen( buffer );
#if INTENSIVE_DEBUG
sprintf( bwb_ebuf, "in str_ctob(): exit length <%d> string <%s>",
s->length, tbuf );
bwb_debug( bwb_ebuf );
#endif
/* return */
return TRUE;
}
/***************************************************************
FUNCTION: str_btoc()
DESCRIPTION: This C function assigns a null-terminated
C string to a bwBASIC string structure.
***************************************************************/
#if ANSI_C
int
str_btoc( char *buffer, bstring *s )
#else
int
str_btoc( buffer, s )
char *buffer;
bstring *s;
#endif
{
register int i;
#if INTENSIVE_DEBUG
sprintf( tbuf, "in str_btoc(): entry, b string length is <%d>",
s->length );
bwb_debug( tbuf );
#endif
#if TEST_BSTRING
sprintf( tbuf, "in str_btoc(): entry, b string name is <%s>", s->name );
bwb_debug( tbuf );
#endif
/* write the b string to the c string */
buffer[ 0 ] = '\0';
for ( i = 0; i < (int) s->length; ++i )
{
buffer[ i ] = s->sbuffer[ i ];
buffer[ i + 1 ] = '\0';
if ( i >= MAXSTRINGSIZE )
{
i = s->length + 1;
}
}
#if INTENSIVE_DEBUG
sprintf( tbuf, "in str_btoc(): exit, c string is <%s>", buffer );
bwb_debug( tbuf );
#endif
/* return */
return TRUE;
}
/***************************************************************
FUNCTION: str_cat()
DESCRIPTION: This C function performs the equivalent
of the C strcat() function, using BASIC
strings.
***************************************************************/
#if ANSI_C
char *
str_cat( bstring *a, bstring *b )
#else
char *
str_cat( a, b )
bstring *a;
bstring *b;
#endif
{
char abuf[ MAXSTRINGSIZE + 1 ];
char bbuf[ MAXSTRINGSIZE + 1 ];
char *r;
str_btoc( abuf, a );
str_btoc( bbuf, b );
#if INTENSIVE_DEBUG
sprintf( bwb_ebuf, "in str_cat(): a <%s> b <%s>", abuf, bbuf );
bwb_debug( bwb_ebuf );
#endif
strcat( abuf, bbuf );
str_ctob( a, abuf );
#if INTENSIVE_DEBUG
sprintf( bwb_ebuf, "in str_cat(): returns <%s>", abuf );
bwb_debug( bwb_ebuf );
#endif
return r;
}
/***************************************************************
FUNCTION: str_cmp()
DESCRIPTION: This C function performs the equivalent
of the C strcmp() function, using BASIC
strings.
***************************************************************/
#if ANSI_C
int
str_cmp( bstring *a, bstring *b )
#else
int
str_cmp( a, b )
bstring *a;
bstring *b;
#endif
{
char abuf[ MAXSTRINGSIZE + 1 ];
char bbuf[ MAXSTRINGSIZE + 1 ];
str_btoc( abuf, a );
str_btoc( bbuf, b );
return strcmp( abuf, bbuf );
}
|