aboutsummaryrefslogtreecommitdiff
path: root/src/SString.c
blob: 63aa8c51774bc2fada8050682910d3f0f276b264 (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
 /*@@
  @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>

#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 );

typedef struct String_tag
{
	size_t	length;
	SSCHAR	*chars;
} 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;
}
/*
 * 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 );
	}
	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 )
{
	return StringSetToCString( String_New(), StringGetBuffer( other ) );
}

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 *
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 ) );
}

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 ) );
}

String *
StringSetSubString( String * s, const String * other,
			size_t first, size_t last )
{
	const size_t	other_length = other->length;
	const size_t	veryFirst = MIN( MIN( first, last ), other_length ),
			veryLast = MIN( MAX( first, last ), other_length ),
			length = ( veryLast + 1 ) - veryFirst;

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

/*
 * 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
StringFindChar( 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
StringFindSubString( 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 )
{
	const size_t	length = MIN( a->length, b->length );

	if( length > 0 )
		return strncmp( a->chars, b->chars, length ) <= 0;
	else if( b->chars == 0 )
		return SSTRUE;

	return SSFALSE;
}

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;
		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
String_SetLineEndCharacter( SSCHAR c )
{
	kLineEndChar = c;
}

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' };
	snprintf( buf, sizeof( buf ), "%ld", d );
	return StringConcatCString( s, buf );
}

String *
StringConcatDouble( String * s, double d )
{
	char buf[DECIMALBUFSIZE] = { '\0' };
	snprintf( buf, sizeof( buf ), "%f", d );
	return StringConcatCString( s, buf );
}

String *
StringConcatFormattedDouble( String * s, int ndigits, int ndec, double d )
{
	char buf[DECIMALBUFSIZE] = { '\0' };
	snprintf( buf, sizeof( buf ), "%*.*f", ndigits, ndec, d );
	return StringConcatCString( s, buf );
}

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