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
|
/****************************************************************************
PROJECT: FlowerSoft C++ library
FILE : string.cc
Rehacked by HWN 3/nov/95
removed String &
introduced Class String_handle
--*/
#include <string.h>
#include <stdlib.h>
#include <stdio.h>
#include <ctype.h>
#include <assert.h>
//#include "globals.hh"
#include "string.hh"
static char* strlwr( char* s )
{
char* p = s;
while( *p )
{
*p = tolower( *p ); /* a macro on some compilers */
p++;
}
return s;
}
static char* strupr( char* s )
{
char* p = s;
while( *p )
{
*p = toupper( *p ); /* a macro on some compilers */
p++;
}
return s;
}
// return array, alloced with new.
char *
String::copy_array() const
{
const char *src = data;
char *dest = new char[data.len() + 1];
strcpy(dest, src);
return dest;
}
void
String::printOn(ostream& os) const
{
os << (const char*) data;
}
String::String (bool b)
{
*this = (const char *) (b ? "true" : "false");
}
String::String( const char* source )
{
assert(source);
data = source;
}
void
String::operator +=(String s)
{
*this += (const char *) s;
}
int
String::len() const
{
return data.len();
}
String::String(char c, int n)
{
int l = n;
assert(n >= 0 && n <= 80); // what the fuck is 80?
//min(max( n, 0 ), 80);
char s[81];
memset(s, c, l);
s[l] = 0;
data = s;
}
String::String(int i)
{
char digits[ 81 ]; // who the FUCK is 80???
digits[ 0 ] = '\0';
sprintf(digits, "%d", i ); // assume radix 10
data = digits;
}
String::String( const int i, const int n, const char c )
{
char fillChar = c;
if ( fillChar)
fillChar = '0';
String v( i );
data = String( fillChar, n - v.len() ) + String( v );
// String convd to const char *
}
const char*
String::ptr() const
{
return data;
}
#ifdef CENTRAL_OBJECT // everything derived from Sortable object
// comparisons.
int
String::operator ==( const Sortable& test ) const
{
const String *s = (const String *) &test;
return *this == *s;
}
int
String::operator &&(const Object& test) const
{
const String *s = (const String *) &test;
int i = min( len(), s->len() );
return ( i > 0 ) ?
( !strncmp( data, s->data, i ) ) : 0;
}
int
String::operator >( const Sortable& test ) const
{
const String *s = (const String *) &test;
return strcmp( data, s->data ) > 0;
}
#endif
// signed comparison, analogous to strcmp;
int
String::compare( const char* test ) const
{
if (test == (const char *) data)
return 0;
return strcmp(data, test);
}
int
String::lastPos( const char c ) const
{
const char *me = data;
int pos = 0;
if ( len() )
{
const char* p = strrchr(me, c );
if ( p )
pos = p - me + 1;
}
return pos;
}
int
String::lastPos( const char* string ) const
{
int pos = 0;
int length = strlen( string );
if ( len() && length )
{
int nextpos = this->pos( string );
while( nextpos )
{
pos += nextpos;
nextpos = right( len() - pos - length + 1 ).pos( string );
}
}
return pos;
}
// find c
// return 0 if not found.
// ? should return len()?, as in string.left(pos(delimiter))
int
String::pos(char c ) const
{
const char *me = data;
int pos = 0;
if ( len() )
{
const char* p = strchr( me, c );
if ( p )
pos = p - me + 1;
}
return pos;
}
// find searchfor. (what if this == "" && searchfor == "") ???
int
String::pos( const char* searchfor ) const
{
const char *me = data;
int pos = 0;
if ( len() && searchfor)
{
const char* p = strstr(me, searchfor);
if ( p )
pos = p - me + 1;
}
return pos;
}
// find chars of a set.
int
String::posAny( const char* string ) const
{
int pos = 0;
const char *s = (const char *)data;
if ( len() && string )
{
const char* p = strpbrk( s, string );
if ( p )
pos = p - s + 1;
}
return pos;
}
String
String::left( int n ) const
{
if (n >= len())
return *this;
String retval;
if (n < 1)
return retval;
retval = *this;
retval.data.trunc(n);
return retval;
}
// n rightmst chars
String
String::right( int n ) const
{
if (n > len())
return *this;
String retval;
if ( n < 1)
return retval;
const char *src = (const char *)data + len() - n;
retval += src;
return retval;
}
String
String::nomid( const int pos, const int n ) const
{
String retval;
if ( pos < 1 )
return String("");
if ( pos > len())
return *this;
return String( String( left( pos - 1 ) ) + right( len() - pos - n + 1 ));
}
String
String::mid( int pos, int n ) const
{
String retval;
// HWN. This SUX:
// pos 1 == data->string[ 0 ];
// pos 0 allowed for convenience
if ( !len() || ( pos < 0 ) || ( pos > len() ) && ( n < 1 ) )
return retval;
retval = ((const char *) data) + pos -1;
if (n > retval.len())
n =retval.len();
retval.data.trunc(n);
return retval;
}
// to uppercase
String
String::upper()
{
char *s = data.array_for_modify();
strupr(s );
return *this;
}
// to lowercase
String String::lower()
{
char *s = data.array_for_modify();
strlwr(s);
return *this;
}
String::String (double f, const char *fmt)
{
/* worst case would be printing HUGE (or 1/HUGE), which is approx
2e318, this number would have approx 318 zero's in its string.
1024 is a safe length for the buffer
*/
char buf[1024];
if (!fmt)
sprintf(buf, "%f", f);
else
sprintf(buf, fmt,f);
*this = buf;
}
long
String::value() const
{
long l =0;
if (len()) {
int conv = sscanf(data, "%ld", &l);
assert(conv);
}
return l;
}
double
String::fvalue() const
{
double d =0;
if (len()) {
int conv = sscanf(data, "%lf", &d);
assert(conv);
}
return d;
}
String quoteString( String msg, String quote)
{
return msg + " `" + quote + "' ";
}
char *strrev(char *s)
{
char c;
char *p = s;
char *q = s + strlen(s) - 1;
while (q > p) {
c = *p;
*p++ = *q;
*q-- = c;
}
return s;
}
String
String::reversed() const
{
String retval=*this;
char *s = retval.data.array_for_modify();
strrev(s);
return retval;
}
bool
String::to_bool() const
{
if (!len())
return false;
if (*this == "0")
return false;
String u (*this);
u.upper();
if (u== "FALSE")
return false;
return true;
}
|