-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathjsiChar.c
More file actions
246 lines (217 loc) · 5.52 KB
/
Copy pathjsiChar.c
File metadata and controls
246 lines (217 loc) · 5.52 KB
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
#ifndef JSI_AMALGAMATION
#include "jsiInt.h"
#endif
#ifdef __WIN32
char *strcasestr(const char *haystack, const char *needle)
{
int nlen = strlen(needle);
int hlen = strlen(haystack) - nlen + 1;
int i;
for (i = 0; i < hlen; i++) {
int j;
for (j = 0; j < nlen; j++) {
unsigned char c1 = haystack[i+j];
unsigned char c2 = needle[j];
if (toupper(c1) != toupper(c2))
goto next;
}
return (char *) haystack + i;
next:
;
}
return NULL;
}
#endif
int Jsi_Strlen(const char *str) {
return strlen(str);
}
int Jsi_Strncasecmp(const char *str1, const char *str2, int n)
{
if (n<0)
return strcasecmp(str1,str2);
return strncasecmp(str1,str2,n);
}
int Jsi_Strncmp(const char *str1, const char *str2, int n)
{
return strncmp(str1,str2,n);
}
int Jsi_StrlenSet(const char *str, int len) {
char *s = (char*)str;
int olen = strlen(str);
assert(len>=0);
if (olen<len)
return olen;
s[len] = 0;
return len;
}
char *Jsi_Strdup(const char *str) {
return strdup(str);
}
char *Jsi_SubstrDup(const char *a, int start, int len)
{
if (len == 0) return Jsi_Strdup("");
int lenofa = Jsi_Strlen(a);
while (start < 0) start += lenofa;
if (start >= lenofa) return Jsi_Strdup("");
int maxcpy = lenofa - start;
if (len > 0) {
maxcpy = maxcpy < len ? maxcpy : len;
}
char *r = Jsi_Malloc(maxcpy + 1);
Jsi_Strncpy(r, a + start, maxcpy + 1);
return r;
}
char* Jsi_Strchr(const char *str, int c)
{
return strchr(str, c);
}
char* Jsi_Strcpy(char *dst, const char *src)
{
return strcpy(dst, src);
}
char* Jsi_Strncpy(char *str1, const char *str2, int len)
{
char* cp = strncpy(str1, str2, len-1);
str1[len-1] = 0;
return cp;
}
int Jsi_Strcmp(const char *str1, const char *str2)
{
return strcmp(str1, str2);
}
int Jsi_StrcmpDict(const char *str1, const char *str2, int nocase, int dict)
{
if (dict==0)
return (nocase ? Jsi_Strncasecmp(str1,str2, -1) : strcmp(str1, str2));
return Jsi_DictionaryCompare(str1, str2);
}
char *Jsi_Strcatdup(const char *str1, const char *str2)
{
int l1 = strlen(str1), l2 = strlen(str2);
char *cp = Jsi_Malloc(l1+l2+1);
strcpy(cp, str1);
return strcat(cp, str2);
}
int Jsi_Strpos(char *str, int start, char *s2, int nocase)
{
char *sstr = str;
int len = strlen(str);
if (len<start)
return -1;
str += start;
char *s = (nocase?strcasestr(str,s2):strstr(str, s2));
if (!s)
return -1;
return (s-sstr);
}
int Jsi_Strrpos(char *str, int start, char *s2, int nocase)
{
char *sstr = str, *s, *os = NULL;
int len = strlen(str);
if (len<start)
return -1;
str += start;
while (*str && (s = (nocase?strcasestr(str,s2):strstr(str, s2)))) {
os = s;
str += 1;
}
if (!os)
return -1;
return (os-sstr);
}
int
Jsi_DictionaryCompare( const char *left, const char *right)
{
int diff, zeros;
int secondaryDiff = 0;
while (1) {
if (isdigit(UCHAR(*right)) && isdigit(UCHAR(*left))) {
/*
* There are decimal numbers embedded in the two
* strings. Compare them as numbers, rather than
* strings. If one number has more leading zeros than
* the other, the number with more leading zeros sorts
* later, but only as a secondary choice.
*/
zeros = 0;
while ((*right == '0') && (isdigit(UCHAR(right[1])))) {
right++;
zeros--;
}
while ((*left == '0') && (isdigit(UCHAR(left[1])))) {
left++;
zeros++;
}
if (secondaryDiff == 0) {
secondaryDiff = zeros;
}
/*
* The code below compares the numbers in the two
* strings without ever converting them to integers. It
* does this by first comparing the lengths of the
* numbers and then comparing the digit values.
*/
diff = 0;
while (1) {
if (diff == 0) {
diff = UCHAR(*left) - UCHAR(*right);
}
right++;
left++;
/* Ignore commas in numbers. */
if (*left == ',') {
left++;
}
if (*right == ',') {
right++;
}
if (!isdigit(UCHAR(*right))) {
if (isdigit(UCHAR(*left))) {
return 1;
} else {
/*
* The two numbers have the same length. See
* if their values are different.
*/
if (diff != 0) {
return diff;
}
break;
}
} else if (!isdigit(UCHAR(*left))) {
return -1;
}
}
continue;
}
diff = UCHAR(*left) - UCHAR(*right);
if (diff) {
if (isupper(UCHAR(*left)) && islower(UCHAR(*right))) {
diff = UCHAR(tolower(*left)) - UCHAR(*right);
if (diff) {
return diff;
} else if (secondaryDiff == 0) {
secondaryDiff = -1;
}
} else if (isupper(UCHAR(*right)) && islower(UCHAR(*left))) {
diff = UCHAR(*left) - UCHAR(tolower(UCHAR(*right)));
if (diff) {
return diff;
} else if (secondaryDiff == 0) {
secondaryDiff = 1;
}
} else {
return diff;
}
}
if (*left == 0) {
break;
}
left++;
right++;
}
if (diff == 0) {
diff = secondaryDiff;
}
return diff;
}