-
-
Notifications
You must be signed in to change notification settings - Fork 12
/
stringbuffer_glue.c
559 lines (458 loc) · 14 KB
/
stringbuffer_glue.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
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
/*
Copyright (c) 2016-2024 Bruce A Henderson
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
*/
#include "brl.mod/blitz.mod/blitz.h"
#ifndef BMX_NG
extern unsigned short maxToLowerData[];
extern unsigned short maxToUpperData[];
#define bbToLowerData maxToLowerData
#define bbToUpperData maxToUpperData
#else
#include "brl.mod/blitz.mod/blitz_unicode.h"
#endif
struct MaxStringBuffer {
BBChar * buffer;
int count;
int capacity;
};
struct MaxSplitBuffer {
struct MaxStringBuffer * buffer;
int count;
int * startIndex;
int * endIndex;
};
void bmx_stringbuffer_free(struct MaxStringBuffer * buf) {
free(buf->buffer);
free(buf);
}
struct MaxStringBuffer * bmx_stringbuffer_new(int initial) {
struct MaxStringBuffer * buf = malloc(sizeof(struct MaxStringBuffer));
buf->count = 0;
buf->capacity = initial;
buf->buffer = malloc(initial * sizeof(BBChar));
return buf;
}
/* make more capacity if requested size greater */
void bmx_stringbuffer_resize(struct MaxStringBuffer * buf, int size) {
if (buf->capacity < size) {
if (buf->capacity * 2 > size) {
size = buf->capacity * 2;
}
BBChar * newBuffer = (BBChar*)malloc(size * sizeof(BBChar));
/* copy text to new buffer */
memcpy(newBuffer, buf->buffer, buf->count * sizeof(BBChar));
/* free old buffer */
free(buf->buffer);
buf->buffer = newBuffer;
buf->capacity = size;
}
}
int bmx_stringbuffer_count(struct MaxStringBuffer * buf) {
return buf->count;
}
int bmx_stringbuffer_capacity(struct MaxStringBuffer * buf) {
return buf->capacity;
}
void bmx_stringbuffer_setlength(struct MaxStringBuffer * buf, int length) {
bmx_stringbuffer_resize(buf, length);
if (length < buf->count) {
buf->count = length;
}
}
BBString * bmx_stringbuffer_tostring(struct MaxStringBuffer * buf) {
if (!buf->count) {
return &bbEmptyString;
} else {
return bbStringFromShorts(buf->buffer, buf->count);
}
}
void bmx_stringbuffer_append_string(struct MaxStringBuffer * buf, BBString * value) {
if (value != &bbEmptyString) {
bmx_stringbuffer_resize(buf, buf->count + value->length);
BBChar * p = buf->buffer + buf->count;
memcpy(p, value->buf, value->length * sizeof(BBChar));
buf->count += value->length;
}
}
void bmx_stringbuffer_remove(struct MaxStringBuffer * buf, int start, int end) {
if (start < 0 || start > buf->count || start > end) {
return;
}
/* trim end if it is too big */
if (end > buf->count) {
end = buf->count;
}
/* still something to remove ? */
if (buf->count - end != 0) {
memcpy(buf->buffer + start, buf->buffer + end, (buf->count - end) * sizeof(BBChar));
}
buf->count -= end - start;
}
void bmx_stringbuffer_insert(struct MaxStringBuffer * buf, int offset, BBString * value) {
if (value != &bbEmptyString) {
if (offset < 0 || offset > buf->count) {
return;
}
int length = value->length;
bmx_stringbuffer_resize(buf, buf->count + length);
/* make some space for the insertion */
/* using memmove because data overlaps */
memmove(buf->buffer + offset + length, buf->buffer + offset, (buf->count - offset) * sizeof(BBChar));
/* insert the string */
memcpy(buf->buffer + offset, value->buf, length * sizeof(BBChar));
buf->count += length;
}
}
void bmx_stringbuffer_reverse(struct MaxStringBuffer * buf) {
int i = buf->count >> 1;
int n = buf->count - i;
while (--i >= 0) {
BBChar c = buf->buffer[i];
buf->buffer[i] = buf->buffer[n];
buf->buffer[n] = c;
n++;
}
}
BBString * bmx_stringbuffer_substring(struct MaxStringBuffer * buf, int beginIndex, int endIndex) {
if (!endIndex) {
endIndex = buf->count;
}
if (beginIndex < 0 || endIndex > buf->count || endIndex < beginIndex) {
return &bbEmptyString;
}
return bbStringFromShorts(buf->buffer + beginIndex, endIndex - beginIndex);
}
void bmx_stringbuffer_append_stringbuffer(struct MaxStringBuffer * buf, struct MaxStringBuffer * other) {
if (other->count > 0) {
bmx_stringbuffer_resize(buf, buf->count + other->count);
memcpy(buf->buffer + buf->count, other->buffer, other->count * sizeof(BBChar));
buf->count += other->count;
}
}
int bmx_stringbuffer_matches(struct MaxStringBuffer * buf, int offset, BBString * subString) {
int length = subString->length;
int index = 0;
while (--length >= 0) {
if (buf->buffer[offset++] != subString->buf[index++]) {
return 0;
}
}
return 1;
}
int bmx_stringbuffer_startswith(struct MaxStringBuffer * buf, BBString * subString) {
if (subString->length <= buf->count) {
return bmx_stringbuffer_matches(buf, 0, subString);
}
return 0;
}
int bmx_stringbuffer_endswith(struct MaxStringBuffer * buf, BBString * subString) {
if (subString->length <= buf->count) {
return bmx_stringbuffer_matches(buf, buf->count - subString->length, subString);
}
return 0;
}
int bmx_stringbuffer_find(struct MaxStringBuffer * buf, BBString * subString, int startIndex) {
if (startIndex < 0) {
startIndex = 0;
}
int limit = buf->count - subString->length;
while (startIndex <= limit) {
if (bmx_stringbuffer_matches(buf, startIndex, subString)) {
return startIndex;
}
startIndex++;
}
return -1;
}
int bmx_stringbuffer_findlast(struct MaxStringBuffer * buf, BBString * subString, int startIndex) {
if (startIndex < 0) {
startIndex = 0;
}
startIndex = buf->count - startIndex;
if (startIndex + subString->length > buf->count) {
startIndex = buf->count - subString->length;
}
while (startIndex >= 0) {
if (bmx_stringbuffer_matches(buf, startIndex, subString)) {
return startIndex;
}
startIndex--;
}
return -1;
}
void bmx_stringbuffer_tolower(struct MaxStringBuffer * buf) {
int i;
for (i = 0; i < buf->count; i++ ) {
int c = buf->buffer[i];
if (c < 192) {
c = ( c >= 'A' && c <= 'Z') ? (c|32) : c;
} else {
int lo = 0, hi = 3828 / 4 - 1;
while (lo <= hi) {
int mid = (lo+hi)/2;
if (c < bbToLowerData[mid*2]) {
hi = mid-1;
} else if (c > bbToLowerData[mid*2]) {
lo = mid + 1;
} else {
c = bbToLowerData[mid*2+1];
break;
}
}
}
buf->buffer[i]=c;
}
}
void bmx_stringbuffer_toupper(struct MaxStringBuffer * buf) {
int i;
for (i = 0; i < buf->count; i++) {
int c = buf->buffer[i];
if (c < 181) {
c = (c >= 'a' && c <= 'z') ? (c&~32) : c;
} else {
int lo = 0, hi = 3860/4-1;
while (lo<=hi) {
int mid=(lo+hi)/2;
if (c < bbToUpperData[mid*2]) {
hi = mid - 1;
} else if (c > bbToUpperData[mid*2]) {
lo = mid + 1;
} else {
c = bbToUpperData[mid*2+1];
break;
}
}
}
buf->buffer[i]=c;
}
}
void bmx_stringbuffer_trim(struct MaxStringBuffer * buf) {
int start = 0;
int end = buf->count;
while (start < end && buf->buffer[start] <= ' ') {
++start;
}
if (start == end ) {
buf->count = 0;
return;
}
while (buf->buffer[end - 1] <= ' ') {
--end;
}
if (end - start == buf->count) {
return;
}
memmove(buf->buffer, buf->buffer + start, (end - start) * sizeof(BBChar));
buf->count = end - start;
}
void bmx_stringbuffer_replace(struct MaxStringBuffer * buf, BBString * subString, BBString * withString) {
if (!subString->length) {
return;
}
struct MaxStringBuffer * newbuf = bmx_stringbuffer_new(16);
int j, n;
int i = 0;
int p = 0;
while( (j = bmx_stringbuffer_find(buf, subString, i)) != -1) {
n = j - i;
if (n) {
bmx_stringbuffer_resize(newbuf, newbuf->count + n);
memcpy(newbuf->buffer + p, buf->buffer + i, n * sizeof(BBChar));
newbuf->count += n;
p += n;
}
n = withString->length;
bmx_stringbuffer_resize(newbuf, newbuf->count + n);
memcpy(newbuf->buffer + p, withString->buf, n * sizeof(BBChar));
newbuf->count += n;
p += n;
i = j + subString->length;
}
n = buf->count - i;
if (n) {
bmx_stringbuffer_resize(newbuf, newbuf->count + n);
memcpy(newbuf->buffer + p, buf->buffer + i, n*sizeof(BBChar));
newbuf->count += n;
}
bmx_stringbuffer_setlength(buf, 0);
bmx_stringbuffer_append_stringbuffer(buf, newbuf);
bmx_stringbuffer_free(newbuf);
}
void bmx_stringbuffer_join(struct MaxStringBuffer * buf, BBArray * bits, struct MaxStringBuffer * newbuf) {
if(bits == &bbEmptyArray) {
return;
}
int i;
int n_bits = bits->scales[0];
BBString **p = (BBString**)BBARRAYDATA( bits,1 );
for(i = 0; i < n_bits; ++i) {
if (i) {
bmx_stringbuffer_append_stringbuffer(newbuf, buf);
}
BBString *bit = *p++;
bmx_stringbuffer_append_string(newbuf, bit);
}
}
struct MaxSplitBuffer * bmx_stringbuffer_split(struct MaxStringBuffer * buf, BBString * separator) {
struct MaxSplitBuffer * splitBuffer = malloc(sizeof(struct MaxSplitBuffer));
splitBuffer->buffer = buf;
int count = 1;
int i = 0;
int offset = 0;
if (separator->length > 0) {
/* get a count of fields */
while ((offset = bmx_stringbuffer_find(buf, separator, i)) != -1 ) {
++count;
i = offset + separator->length;
}
splitBuffer->count = count;
splitBuffer->startIndex = malloc(count * sizeof(int));
splitBuffer->endIndex = malloc(count * sizeof(int));
i = 0;
int * bufferStartIndex = splitBuffer->startIndex;
int * bufferEndIndex = splitBuffer->endIndex;
while( count-- ){
offset = bmx_stringbuffer_find(buf, separator, i);
if (offset == -1) {
offset = buf->count;
}
*bufferStartIndex++ = i;
*bufferEndIndex++ = offset;
i = offset + separator->length;
}
} else {
// TODO - properly handle Null separator
splitBuffer->count = count;
splitBuffer->startIndex = malloc(count * sizeof(int));
splitBuffer->endIndex = malloc(count * sizeof(int));
*splitBuffer->startIndex = 0;
*splitBuffer->endIndex = buf->count;
}
return splitBuffer;
}
void bmx_stringbuffer_setcharat(struct MaxStringBuffer * buf, int index, int ch) {
if (index < 0 || index > buf->count) {
return;
}
buf->buffer[index] = ch;
}
int bmx_stringbuffer_charat(struct MaxStringBuffer * buf, int index) {
if (index < 0 || index > buf->count) {
return 0;
}
return buf->buffer[index];
}
void bmx_stringbuffer_removecharat(struct MaxStringBuffer * buf, int index) {
if (index < 0 || index >= buf->count) {
return;
}
if (index < buf->count - 1) {
memcpy(buf->buffer + index, buf->buffer + index + 1, (buf->count - index - 1) * sizeof(BBChar));
}
buf->count--;
}
void bmx_stringbuffer_append_cstring(struct MaxStringBuffer * buf, const char * chars) {
int length = strlen(chars);
if (length > 0) {
int count = length;
bmx_stringbuffer_resize(buf, buf->count + length);
const char * p = chars;
BBChar * b = buf->buffer + buf->count;
while (length--) {
*b++ = *p++;
}
buf->count += count;
}
}
void bmx_stringbuffer_append_utf8string(struct MaxStringBuffer * buf, const char * chars) {
int length = strlen(chars);
if (length > 0) {
int count = 0;
bmx_stringbuffer_resize(buf, buf->count + length);
int c;
const char * p = chars;
BBChar * b = buf->buffer + buf->count;
while( (c=*p++ & 0xff) ){
if( c<0x80 ){
*b++=c;
}else{
int d=*p++ & 0x3f;
if( c<0xe0 ){
*b++=((c&31)<<6) | d;
}else{
int e=*p++ & 0x3f;
if( c<0xf0 ){
*b++=((c&15)<<12) | (d<<6) | e;
}else{
int f=*p++ & 0x3f;
int v=((c&7)<<18) | (d<<12) | (e<<6) | f;
if( v & 0xffff0000 ) bbExThrowCString( "Unicode character out of UCS-2 range" );
*b++=v;
}
}
}
count++;
}
buf->count += count;
}
}
void bmx_stringbuffer_append_shorts(struct MaxStringBuffer * buf, short * shorts, int length) {
if (length > 0) {
bmx_stringbuffer_resize(buf, buf->count + length);
BBChar * p = buf->buffer + buf->count;
memcpy(p, shorts, length * sizeof(BBChar));
buf->count += length;
}
}
void bmx_stringbuffer_append_char(struct MaxStringBuffer * buf, int value) {
bmx_stringbuffer_resize(buf, buf->count + 1);
BBChar * p = buf->buffer + buf->count;
*p = (BBChar)value;
buf->count++;
}
/* ----------------------------------------------------- */
int bmx_stringbuffer_splitbuffer_length(struct MaxSplitBuffer * buf) {
return buf->count;
}
BBString * bmx_stringbuffer_splitbuffer_text(struct MaxSplitBuffer * buf, int index) {
if (index < 0 || index >= buf->count) {
return &bbEmptyString;
}
return bmx_stringbuffer_substring(buf->buffer, buf->startIndex[index], buf->endIndex[index]);
}
void bmx_stringbuffer_splitbuffer_free(struct MaxSplitBuffer * buf) {
free(buf->startIndex);
free(buf->endIndex);
free(buf);
}
BBArray * bmx_stringbuffer_splitbuffer_toarray(struct MaxSplitBuffer * buf) {
int i, n;
BBString **p,*bit;
BBArray *bits;
n = buf->count;
bits = bbArrayNew1D("$", n);
p = (BBString**)BBARRAYDATA(bits, 1);
i = 0;
while (n--) {
bit = bmx_stringbuffer_substring(buf->buffer, buf->startIndex[i], buf->endIndex[i]);
BBINCREFS( bit );
*p++ = bit;
i++;
}
return bits;
}