aboutsummaryrefslogtreecommitdiff
path: root/src/SString.c
blob: a9771461e634e52b96628300939442e4e88f7f70 (plain)
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
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
/*@@
  @file      SString.c
  @date      02.04.2004
  @author    Steve White
  @desc      Module for generic operations on strings
  @enddesc
  @version $Header$
  @@*/

#include "SString.h"
#include "SStringIO.h"

#include <string.h>
#include <stdlib.h>

#include "util_String.h"

#ifndef MIN
#define MIN( a, b ) ( (a) < (b) ? (a) : (b) )
#endif
#ifndef MAX
#define MAX( a, b ) ( (a) > (b) ? (a) : (b) )
#endif

typedef enum { MAKE_NULL_ALLOC, NEW_NULL_ALLOC, BUFFER_NULL_ALLOC }
SSTRING_ERROR;
static void String_HandleSeriousError( SSTRING_ERROR );

#define LINE_END_BUFSIZE 3

typedef struct String_tag
{
  size_t  length;
  SSCHAR  *chars;
  SSCHAR  line_end[LINE_END_BUFSIZE];
} String_placeholder;

static SSCHAR   kLineEndChar = '\n';

static SSBOOL   BufferForThisManyChars( String *s, size_t size );

size_t
StringLength( const String * s )
{
  return s->length;
}

const SSCHAR *
StringGetBuffer( const String * s )
{
  return s->chars;
}

void
StringCopyBuffer( const String * s, SSCHAR * buf, size_t bufSize )
{
  strncpy( buf, s->chars, bufSize );
  buf[bufSize-1] = '\0';
}

/*
 * Returns 0 if index is not in the string
 */
SSCHAR
StringNthChar( const String * s, size_t n )
{
  if( n < s->length )
  {
    return s->chars[n];
  }
  else
  {
    return '\0';
  }
}

String *
String_New()
{
  String *s = (String *)calloc( 1, sizeof( String ) );
  if( s != NULL )
  {
    BufferForThisManyChars( s, 0 );
  }
  else
  {
    String_HandleSeriousError( NEW_NULL_ALLOC );
  }             
  return s;
}

String *
String_Make( const SSCHAR * c_string )
{
  String *s = (String *)calloc( 1, sizeof( String ) );
  if( s != NULL )
  {
    if( c_string != NULL )
    {
      size_t len = strlen( c_string );
      s->chars = strdup( c_string );
      s->length = len;
    }
    else
    {
      BufferForThisManyChars( s, 0 );
    }
    s->line_end[0] = kLineEndChar;
  }
  else
  {
    String_HandleSeriousError( MAKE_NULL_ALLOC );
  }
  return s;
}

/* note this is a little ambiguous.
 * needs to be made clear this makes a new string
 */
String *
String_Copy( const String * other )
{
  String *s = StringSetToCString( String_New(),
                                  StringGetBuffer( other ) );
  memcpy( s->line_end, other->line_end, LINE_END_BUFSIZE
          * sizeof( SSCHAR ) );
  return s;
}

void
String_Delete( String * s )
{
  if( s != NULL )
  {
    free( s->chars );
  }
  free( s );
}

String *
StringTruncate( String * s, size_t n )
{
  if( n < s->length )
  {
    s->chars[n] = '\0';
    s->length = n;
  }
  return s;
}

String *
StringTrimLeading( String * s, size_t n )
{
  const size_t orig_len = StringLength( s );

  if( orig_len > 0 && n > 0 )
  {
    const size_t position = MIN( orig_len, n ) - 1;
    const size_t new_len = orig_len - position;
                
    memmove( s->chars, s->chars + position, new_len );
    s->chars[new_len] = '\0';
    s->length = new_len;
  }
  return s;
}

String *
StringSetNthChar( String * s, size_t n, SSCHAR c )
{
  if( n < s->length )
  {
    if( c == '\0' )
    {
      StringTruncate( s, n );
    }
    else
    {
      s->chars[n] = c;
    }
  }
  return s;
}
/* Allocates if there is no buffer
 * Re-allocates (without changing remaining string) if there is a buffer
 * Puts a null char at the location of the corresponding size
 * DOES NOT pad with zeros, or initialize the buffer beyond this
 */
SSBOOL
BufferForThisManyChars( String *s, size_t size )
{
  const size_t    blocksize = sizeof( SSCHAR ) * ( size + 1 );

  if( s->chars == NULL )
  {
    s->chars = (SSCHAR *)malloc( blocksize );
  }
  else if( s->length < size )
  {
    s->chars = (SSCHAR *)realloc( s->chars, blocksize );
  }
  else if( s->length > ( size << 1 ) ) /* Don't resize if larger
                                          but in ballpark */
  {
    s->length = 0;
    s->chars = (SSCHAR *)malloc( blocksize );
  }

  if( s->chars != NULL )
  {
    s->length = size;
    if( s->chars != NULL )
      s->chars[size] = '\0';
  }
  else
  {
    String_HandleSeriousError( BUFFER_NULL_ALLOC );
  }

  return s->chars != NULL;
}

String *
StringSetToCString( String * s, const SSCHAR *c_string )
{
  return StringSetToBuffer( s, c_string, strlen( c_string ) );
}

size_t
StringSetNextToken( const String *s, String *token,
                    const SSCHAR *delim, size_t start )
{
  if( start < s->length )
  {
    const size_t    ndelims = strlen( delim );
    size_t          next = s->length;
    size_t          d;

    for( d = 0; d < ndelims; d++ )
    {
      size_t nextDelim = start;
      if( StringFindCharFrom( s, delim[d], &nextDelim ) )
        next = MIN( nextDelim, next ); 
    }

    StringSetRange( token, s, start, next - start );

    return next < s->length ? next + 1 : next;
  }
  else
  {
    return 0;
  }
}

String *
StringConcatCString( String * s, const SSCHAR *c_string )
{
  const size_t orig_len = s->length;
  if( BufferForThisManyChars( s, orig_len + strlen( c_string ) ) )
  {
    strcpy( s->chars + orig_len, c_string );
  }
  return s;
}

String *
StringSetToBuffer( String * s, const SSCHAR *buf, size_t len )
{
  if( s != NULL && buf != NULL )
    if( BufferForThisManyChars( s, len ) )
    {
      strncpy( s->chars, buf, len );
      s->chars[ len ] = '\0';
    }
  return s;
}

String *
StringSet( String * s, const String * other )
{
  return StringSetToCString( s, StringGetBuffer( other ) );
}
/*
 * Take care! What if this String's buffer is the same as the other's?
 * For now, this can happen only if the other String is the same as this
 * String.
 *
 * This needs thought for every String that takes a String argument,
 * and for the ones that take C strings as well.
 */
String *
StringSetRange( String * s, const String * other,
                size_t first, size_t length )
{
  const size_t    other_length = other->length;
  const size_t    veryFirst = MIN( first + 1, other_length ) - 1,
      minLength = MIN( first + length, other_length ),
      newLength = minLength - veryFirst;

  return StringSetToBuffer( s, other->chars + veryFirst, newLength );
}

String *
StringSetToPartAfter( String * s, const String * other, size_t position )
{
  return StringSetRange( s, other,
                         position + 1, StringLength( other ) - position );
}

/*
 * Last argument 'position' is both input and output.
 * Specifies where to begin search: pass 0 to search whole string
 * On output, is position where char was found.
 */
SSBOOL
StringFindCharFrom( const String *s, SSCHAR theChar, size_t * position )
{
  SSCHAR  * charPtr;

  if( s->length > 0
      && position
      && *position < s->length
      && ( charPtr = (SSCHAR *)strchr( s->chars + *position, theChar ) )
      != NULL )
  {
    *position = ( charPtr - s->chars ) / sizeof( SSCHAR );
    return SSTRUE;
  }
  return SSFALSE;
}

SSBOOL
StringFindStringFrom( const String * s, const String * other,
                      size_t * position )
{
  SSCHAR  * charPtr;

  if( s->length >= other->length
      && position
      && *position < s->length
      && s->length > 0
      && other->length > 0
      && ( charPtr = (SSCHAR *)strstr( s->chars + *position, other->chars ) )
      != NULL )
  {
    *position = ( charPtr - s->chars ) / sizeof( SSCHAR );
    return SSTRUE;
  }
  return SSFALSE;
}

SSBOOL
StringEquals( const String * a, const String * b )
{
  if( a->length > 0 )
  {
    return strncmp( a->chars, b->chars, a->length ) == 0;
  }
  else if( b->length == 0 )
  {
    return SSTRUE;
  }
  return SSFALSE;
}

int
StringCompare( const String * a, const String * b )
{
  return StringCompareCString( a, b->chars );
}

int
StringCompareCString( const String * a, const char * b )
{
  const size_t    length = MIN( a->length, strlen( b ) );

  if( length > 0 )
  {
    return strncmp( a->chars, b, length );
  }
  else if( strlen( b ) == 0 )
  {
    return 0;
  }
  else            /* b is empty but a isn't */
  {
    return 1;
  }
}

String *
StringInsert( String * s, const String * other, size_t position )
{
  const size_t    oldLength = s->length, otherLength = other->length;
  String          *old = String_Copy( s );

  if( otherLength > 0
      && position <= oldLength
      && BufferForThisManyChars( s, oldLength + otherLength ) )
  {
    if( position != 0 )
    {
      strncpy( s->chars, old->chars, position );
    }

    strncpy( s->chars + position, other->chars, otherLength );

    if( position < oldLength )
    {
      strncpy( s->chars + position + otherLength,
               old->chars + position, oldLength - position );
    }
    s->chars[s->length] = '\0';
  }
  String_Delete( old );

  return s;
}

String *
StringInsertCString( String * s, const char * c_string, size_t position )
{
  String *other = String_Make( c_string );
  StringInsert( s, other, position );
  String_Delete( other );
  return s;
}
/*
 * What to do if position is off end of string?  We do nothing
 */
String *
StringInsertChar( String * s, SSCHAR c, size_t position )
{
  if( position <= s->length )
  {
    BufferForThisManyChars( s, s->length + 1 );
    if( position + 2 < s->length )
    {
      s->chars[s->length] = '\0';
      memmove( s->chars + position + 1, s->chars + position,
               s->length - 1 - position );
      s->chars[position] = c;
    }
  }
  return s;
}

String *
StringDeleteChar( String * s, size_t position )
{
  return StringDeleteRange( s, position, position );
}

String *
StringDeleteRange( String * s, size_t begin, size_t end )
{
  if( begin <= end && end < s->length )
  {
    if( end + 1 < s->length )
    {
      memmove( s->chars + begin, s->chars + end + 1,
               ( s->length - end ) - 1 );
    }
    s->length -= end - begin + 1;
    s->chars[s->length] = '\0';
  }
  return s;
}

String *
StringConcat( String * s, const String * other )
{
  return StringInsert( s, other, s->length );
}

/*
 * On unix the default \n works; on the Mac, you might want \r
 */
void
StringSetLineEndCharacter( String * s, const SSCHAR *end )
{
  strncpy( s->line_end, end, LINE_END_BUFSIZE );
  s->line_end[LINE_END_BUFSIZE - 1] = '\0';
}

String *
StringReadToEndOfLine( String * s, FILE * file )
{
  return StringReadToDelimiter( s, file, kLineEndChar );
}

String *
StringReadToDelimiter( String * s, FILE * file, SSCHAR delim )
{
  int     next;

  while( ( next = fgetc( file ) ) != EOF 
         && (SSCHAR)next != delim )
  {
    StringInsertChar( s, (SSCHAR)next, s->length );
  }

  return s;
}

void
StringPrint( const String * s )
{
  fprintf( stdout, "%s", s->chars );
}

void
StringPrintToFile( const String * s, FILE * file )
{
  fprintf( file, "%s", s->chars );
}

void
StringFormatPrint( const String * s, const SSCHAR *format )
{
  fprintf( stdout, format, s->chars );
}

void
StringFormatPrintToFile( const String * s, const SSCHAR *format, FILE * file )
{
  fprintf( file, format, s->chars );
}

#define DECIMALBUFSIZE 64
String *
StringConcatDecimal( String * s, long d )
{
  char buf[DECIMALBUFSIZE] = { '\0' };
  Util_snprintf( buf, sizeof( buf ), "%ld", d );
  return StringConcatCString( s, buf );
}

String *
StringConcatDouble( String * s, double d )
{
  char buf[DECIMALBUFSIZE] = { '\0' };
  Util_snprintf( buf, sizeof( buf ), "%f", d );
  return StringConcatCString( s, buf );
}
/*
 *
 * 0) It's inappropritate to handle string and character convesions.
 *    And there are some very specific-use conversions, such as 't'
 *
 * 1) I'm not sure I completely understand all the conversions.  
 *    specifically, I don't get G and g.
 *
 * 2) There are several standards, including C99 and SUSv2
 *
 * 3) I haven't done long long or long double
 *
 * 4) Mixed up notions of unsigned with hex and octal...wrong?
 *
 * 
 * 
 */
static void
addNumericMods( char * format, SSFORMAT f )
{
  strcat( format, "%" );
  if( f & SFMT_LEFT_ALIGN )
  {
    strcat( format, "-" );
  }
  if( f & SFMT_PRINT_SIGN )
  {
    strcat( format, "+" );
  }
  if( f & SFMT_ADD_SIGN_SPACE )
  {
    strcat( format, " " );
  }
  if( f & SFMT_PAD_ZERO )
  {
    strcat( format, "0" );
  }
  if( f & SFMT_ALT )
  {
    strcat( format, "#" );
  }
}
#define EMPTYSTRING { '\0' }
String *
StringConcatFormattedDecimal( String *s, long int d,
                              int width, int precision, SSINT_FORMAT f )
{
  char buf[DECIMALBUFSIZE] = EMPTYSTRING;
  char format[16] = EMPTYSTRING;
  addNumericMods( format, f );
  strcat( format, "*.*ld" );
  Util_snprintf( buf, sizeof( buf ), format, width, precision, d );
  return StringConcatCString( s, buf );
}

String *
StringConcatFormattedUnsigned( String *s, unsigned long int n,
                               int width, int precision, SSINT_FORMAT f )
{
  char buf[DECIMALBUFSIZE] = EMPTYSTRING;
  char format[16] = EMPTYSTRING;
  addNumericMods( format, f );
  strcat( format, "*.*l" );
  if( f & SFMT_HEX )
  {
    if( f & SFMT_LOWERCASE )
    {
      strcat( format, "x" );
    }
    else
    {
      strcat( format, "X" );
    }
  }
  else if( f & SFMT_OCTAL )
  {
    strcat( format, "o" );
  }
  else
  {
    strcat( format, "u" );
  }
  Util_snprintf( buf, sizeof( buf ), format, width, precision, n );
  return StringConcatCString( s, buf );
}

String *
StringConcatFormattedDouble( String *s, double d,
                             int width, int precision, SSDOUBLE_FORMAT f  )
{
  char buf[DECIMALBUFSIZE] = EMPTYSTRING;
  char format[16] = EMPTYSTRING;
  addNumericMods( format, f );
  if( f & SFMT_ALWAYS_POINT )
  {
    strcat( format, "#" );
  }
  strcat( format, "*.*" );
  if( f & SFMT_EXPONENTIAL )
  {
    if( f & SFMT_LOWERCASE )
    {
      strcat( format, "e" );
    }
    else
    {
      strcat( format, "E" );
    }
  }
  if( f & SFMT_DISCRETIONARY_EXP )
  {
    if( f & SFMT_LOWERCASE )
    {
      strcat( format, "g" );
    }
    else
    {
      strcat( format, "G" );
    }
  }
  else
  {
    strcat( format, "f" );
  }
  Util_snprintf( buf, sizeof( buf ), format, width, precision, d );
  return StringConcatCString( s, buf );
}

void
String_HandleSeriousError( SSTRING_ERROR e )
{
  /* to be filled in on a per-implementation basis */
}