-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathstring.c
514 lines (436 loc) · 8.82 KB
/
string.c
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
#include <kernel.h>
struct gc_str* gc_list = NULL;
unsigned int strlen(const char* str)
{
if (!str || !*str) {
return 0;
}
unsigned int len = 0;
for(; *str; ++str)
++len;
return len;
}
unsigned char isdigit(const char x)
{
return (x >= '0' && x <= '9');
}
unsigned char isxdigit(const char x)
{
return (x >= '0' && x <= '9') || (x >= 'A' && x <= 'F');
}
int strcmp(const char* s1, const char* s2)
{
while (*s1 == *s2++)
if (*s1++ == 0)
return 0;
return (*(const unsigned char *)s1 - *(const unsigned char *)(s2 - 1));
}
int stricmp(const char* s1, const char* s2)
{
while (toupper(*s1) == toupper(*s2++))
if (*s1++ == 0)
return 0;
return (*(const unsigned char *)s1 - *(const unsigned char *)(s2 - 1));
}
char* strchr(const char *s, int c)
{
for (; *s; ++s) {
if (*s == c) {
return (char*) s;
}
}
return NULL;
}
int abs(int a)
{
uint32_t mask = ~((a >> 31) & 1) + 1;
return (a ^ mask) - mask;
}
int64_t labs(int64_t a)
{
uint64_t mask = ~((a >> 63) & 1) + 1;
return (a ^ mask) - mask;
}
char toupper(char low) {
return low >= 'a' && low <= 'z' ? low - 32 : low;
}
char tolower(char low) {
return low >= 'A' && low <= 'Z' ? low + 32 : low;
}
int strnicmp(const char* s1, const char* s2, uint32_t n)
{
if (n == 0)
return 0;
do {
if (toupper(*s1) != toupper(*s2++))
return (*(const unsigned char *)s1 - *(const unsigned char *)(s2 - 1));
if (*s1++ == 0)
break;
} while (--n != 0);
return (0);
}
int strncmp(const char* s1, const char* s2, uint32_t n)
{
if (n == 0)
return (0);
do {
if (*s1 != *s2++)
return (*(const unsigned char *)s1 - *(const unsigned char *)(s2 - 1));
if (*s1++ == 0)
break;
} while (--n != 0);
return (0);
}
uint64_t hextoint(const char* n1)
{
uint32_t length = strlen(n1);
uint64_t result = 0;
int i = 0, fact = 1;
if (length) {
if (length > 16) {
length = 16;
}
for(i = length - 1; i >= 0; i--) {
char digit = tolower(*(n1 + i));
if ((digit >= '0' && digit <= '9') || (digit >= 'a' && digit <= 'f')) {
if (digit >= 97) {
result += (digit - 87) * fact;
} else {
result += (digit - 48) * fact;
}
fact <<= 4;
} else {
return 0;
}
}
return result;
}
return 0;
}
uint32_t strlcat(char *dst, const char *src, uint32_t siz)
{
char *d = dst;
const char *s = src;
uint32_t n = siz, dlen;
while (n-- != 0 && *d != '\0') {
d++;
}
dlen = d - dst;
n = siz - dlen;
if (n == 0) {
return(dlen + strlen(s));
}
while (*s != '\0') {
if (n != 1) {
*d++ = *s;
n--;
}
s++;
}
*d = '\0';
return(dlen + (s - src)); /* count does not include NUL */
}
uint32_t strlcpy(char *dst, const char *src, uint32_t siz)
{
char *d = dst;
const char *s = src;
uint32_t n = siz;
/* Copy as many bytes as will fit */
if (n != 0 && --n != 0) {
do {
if ((*d++ = *s++) == 0) {
break;
}
} while (--n != 0);
}
/* Not enough room in dst, add NUL and traverse rest of src */
if (n == 0) {
if (siz != 0) {
*d = '\0'; /* NUL-terminate dst */
}
while (*s++);
}
return s - src - 1; /* count does not include NUL */
}
int isalnum(const char x)
{
return ((x >= 'A' && x <= 'Z') || (x >= 'a' && x <= 'z') || (x >= '0' && x <= '9'));
}
int isupper(const char x)
{
return (x >= 'A' && x <= 'Z');
}
bool isalpha(const char x)
{
return (x >= 'A' && x <= 'Z');
}
bool isspace(const char x)
{
return x == ' ' || x == '\t';
}
char* strdup(const char* string)
{
uint32_t len = strlen(string) + 1;
char* result = kmalloc(len);
strlcpy(result, string, len);
*(result + len) = 0;
return result;
}
char* gc_strdup(const char* string)
{
uint32_t len = strlen(string) + 1;
char* result = kmalloc(len);
strlcpy(result, string, len);
*(result + len) = 0;
if (gc_list == NULL) {
gc_list = kmalloc(sizeof(struct gc_str));
gc_list->next = NULL;
gc_list->ptr = result;
} else {
struct gc_str* new = kmalloc(sizeof(struct gc_str));
new->next = gc_list;
new->ptr = result;
gc_list = new;
}
return result;
}
int gc()
{
struct gc_str* cur = gc_list;
int n = 0;
for (; cur; cur = cur->next) {
++n;
kfree(cur->ptr);
kfree(cur);
}
gc_list = NULL;
return n;
}
bool atof(const char* s, double* a)
{
*a = 0.0f;
int e = 0;
int c;
while ((c = *s++) != '\0' && isdigit(c)) {
(*a) = (*a) * 10.0 + (c - '0');
}
if (c == '.') {
while ((c = *s++) != '\0' && isdigit(c)) {
(*a) = (*a) * 10.0 + (c - '0');
--e;
}
}
if (c == 'e' || c == 'E') {
int sign = 1;
int i = 0;
c = *s++;
if (c == '+') {
c = *s++;
} else if (c == '-') {
c = *s++;
sign = -1;
}
while (isdigit(c)) {
i = i * 10 + (c - '0');
c = *s++;
}
e += i * sign;
}
while (e > 0) {
(*a) *= 10.0;
--e;
}
while (e < 0) {
(*a) *= 0.1;
++e;
}
return true;
}
int atoi(const char *s)
{
static const char digits[] = "0123456789"; /* legal digits in order */
int val = 0; /* value we're accumulating */
char neg = 0; /* set to true if we see a minus sign */
/* skip whitespace */
while (*s == ' ' || *s == '\t') {
s++;
}
/* check for sign */
if (*s=='-') {
neg=1;
s++;
}
else if (*s=='+') {
s++;
}
/* process each digit */
while (*s) {
const char *where;
int digit;
/* look for the digit in the list of digits */
where = strchr(digits, *s);
if (where == NULL) {
/* not found; not a digit, so stop */
break;
}
/* get the index into the digit list, which is the value */
digit = (where - digits);
/* could (should?) check for overflow here */
/* shift the number over and add in the new digit */
val = val*10 + digit;
/* look at the next character */
s++;
}
/* handle negative numbers */
if (neg) {
return -val;
}
/* done */
return val;
}
int64_t atoll(const char *s, int radix)
{
static const char ddigits[] = "0123456789"; /* legal digits in order */
static const char xdigits[] = "0123456789ABCDEF"; /* legal digits in order */
const char* digits = radix == 16 ? xdigits : ddigits;
int64_t val = 0; /* value we're accumulating */
char neg = 0; /* set to true if we see a minus sign */
/* skip whitespace */
while (*s == ' ' || *s == '\t') {
s++;
}
/* check for sign */
if (*s=='-' && radix == 10) {
neg=1;
s++;
} else if (*s=='+' && radix == 10) {
s++;
} else if (*s == '&' && radix == 16) {
s++;
}
/* process each digit */
while (*s) {
const char *where;
int64_t digit;
/* look for the digit in the list of digits */
where = strchr(digits, *s);
if (where == NULL) {
/* not found; not a digit, so stop */
break;
}
/* get the index into the digit list, which is the value */
digit = (where - digits);
/* could (should?) check for overflow here */
/* shift the number over and add in the new digit */
val = val * radix + digit;
/* look at the next character */
++s;
}
/* handle negative numbers (decimal only) */
if (neg && radix == 10) {
return -val;
}
//kprintf("atoll(...,%d) = %d\n", radix, val);
/* done */
return val;
}
uint64_t atoull(const char *s)
{
static const char digits[] = "0123456789"; /* legal digits in order */
uint64_t val=0; /* value we're accumulating */
/* skip whitespace */
while (*s == ' ' || *s == '\t') {
++s;
}
if (*s == '+') {
++s;
}
/* process each digit */
while (*s) {
const char *where;
uint64_t digit;
/* look for the digit in the list of digits */
where = strchr(digits, *s);
if (where == NULL) {
/* not found; not a digit, so stop */
break;
}
/* get the index into the digit list, which is the value */
digit = where - digits;
/* could (should?) check for overflow here */
/* shift the number over and add in the new digit */
val = val * 10 + digit;
/* look at the next character */
++s;
}
/* done */
return val;
}
size_t strrev(char* s)
{
return memrev(s, strlen(s));
}
int do_atoi(int64_t* dst, char* target, unsigned radix)
{
int64_t res = 0;
bool looped = false;
bool sign = false;
bool succ = false;
if (radix < 2 || radix > 36) {
return -4;
}
char* ptr = target;
char c;
static const char* alphabet = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ";
while ((c = *ptr++) != 0) {
if (c == '-') {
sign = true;
continue;
}
if (strchr("\t\n\v\f\r +_", c) != NULL) {
continue;
}
looped = true;
char* x = strchr(alphabet, toupper(c));
if (x == NULL) {
break;
}
size_t pos = x - alphabet;
if (pos >= radix) {
break;
}
succ = true;
res = res * radix + pos;
}
if (sign) {
res = -res;
}
*dst = res;
/* Errno 3 is reserved for overflow */
return !succ
? looped
? -2
: -1
: 0;
}
int do_itoa(int64_t target, char* buf, unsigned radix)
{
if (radix < 2 || radix > 36) {
return -1;
}
int sign = 0;
if (target < 0) {
sign = 1;
target = -target;
}
char* low = buf;
do {
*buf++ = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ"[target % radix];
} while (target /= radix);
if (sign) {
*buf++ = '-';
}
*buf++ = '\0';
strrev(low);
return 0;
}