1 | /* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
---|
2 | /* ***** BEGIN LICENSE BLOCK *****
|
---|
3 | * Version: MPL 1.1/GPL 2.0/LGPL 2.1
|
---|
4 | *
|
---|
5 | * The contents of this file are subject to the Mozilla Public License Version
|
---|
6 | * 1.1 (the "License"); you may not use this file except in compliance with
|
---|
7 | * the License. You may obtain a copy of the License at
|
---|
8 | * http://www.mozilla.org/MPL/
|
---|
9 | *
|
---|
10 | * Software distributed under the License is distributed on an "AS IS" basis,
|
---|
11 | * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
|
---|
12 | * for the specific language governing rights and limitations under the
|
---|
13 | * License.
|
---|
14 | *
|
---|
15 | * The Original Code is mozilla.org code.
|
---|
16 | *
|
---|
17 | * The Initial Developer of the Original Code is
|
---|
18 | * Netscape Communications Corporation.
|
---|
19 | * Portions created by the Initial Developer are Copyright (C) 1998
|
---|
20 | * the Initial Developer. All Rights Reserved.
|
---|
21 | *
|
---|
22 | * Contributor(s):
|
---|
23 | *
|
---|
24 | * Alternatively, the contents of this file may be used under the terms of
|
---|
25 | * either of the GNU General Public License Version 2 or later (the "GPL"),
|
---|
26 | * or the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
|
---|
27 | * in which case the provisions of the GPL or the LGPL are applicable instead
|
---|
28 | * of those above. If you wish to allow use of your version of this file only
|
---|
29 | * under the terms of either the GPL or the LGPL, and not to allow others to
|
---|
30 | * use your version of this file under the terms of the MPL, indicate your
|
---|
31 | * decision by deleting the provisions above and replace them with the notice
|
---|
32 | * and other provisions required by the GPL or the LGPL. If you do not delete
|
---|
33 | * the provisions above, a recipient may use your version of this file under
|
---|
34 | * the terms of any one of the MPL, the GPL or the LGPL.
|
---|
35 | *
|
---|
36 | * ***** END LICENSE BLOCK ***** */
|
---|
37 |
|
---|
38 |
|
---|
39 | /**
|
---|
40 | * MODULE NOTES:
|
---|
41 | * @update gess7/30/98
|
---|
42 | *
|
---|
43 | * Much as I hate to do it, we were using string compares wrong.
|
---|
44 | * Often, programmers call functions like strcmp(s1,s2), and pass
|
---|
45 | * one or more null strings. Rather than blow up on these, I've
|
---|
46 | * added quick checks to ensure that cases like this don't cause
|
---|
47 | * us to fail.
|
---|
48 | *
|
---|
49 | * In general, if you pass a null into any of these string compare
|
---|
50 | * routines, we simply return 0.
|
---|
51 | */
|
---|
52 |
|
---|
53 | #include <iprt/cdefs.h>
|
---|
54 |
|
---|
55 | #include "nsCRT.h"
|
---|
56 | #include "nsIServiceManager.h"
|
---|
57 |
|
---|
58 | // XXX Bug: These tables don't lowercase the upper 128 characters properly
|
---|
59 |
|
---|
60 | // This table maps uppercase characters to lower case characters;
|
---|
61 | // characters that are neither upper nor lower case are unaffected.
|
---|
62 | static const unsigned char kUpper2Lower[256] = {
|
---|
63 | 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15,
|
---|
64 | 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31,
|
---|
65 | 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47,
|
---|
66 | 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63,
|
---|
67 | 64,
|
---|
68 |
|
---|
69 | // upper band mapped to lower [A-Z] => [a-z]
|
---|
70 | 97, 98, 99,100,101,102,103,104,105,106,107,108,109,110,111,
|
---|
71 | 112,113,114,115,116,117,118,119,120,121,122,
|
---|
72 |
|
---|
73 | 91, 92, 93, 94, 95,
|
---|
74 | 96, 97, 98, 99,100,101,102,103,104,105,106,107,108,109,110,111,
|
---|
75 | 112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,
|
---|
76 | 128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,
|
---|
77 | 144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,
|
---|
78 | 160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,
|
---|
79 | 176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,
|
---|
80 | 192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,
|
---|
81 | 208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,
|
---|
82 | 224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,
|
---|
83 | 240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255
|
---|
84 | };
|
---|
85 |
|
---|
86 | static const unsigned char kLower2Upper[256] = {
|
---|
87 | 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15,
|
---|
88 | 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31,
|
---|
89 | 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47,
|
---|
90 | 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63,
|
---|
91 | 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79,
|
---|
92 | 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95,
|
---|
93 | 96,
|
---|
94 |
|
---|
95 | // lower band mapped to upper [a-z] => [A-Z]
|
---|
96 | 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79,
|
---|
97 | 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90,
|
---|
98 |
|
---|
99 | 123,124,125,126,127,
|
---|
100 | 128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,
|
---|
101 | 144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,
|
---|
102 | 160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,
|
---|
103 | 176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,
|
---|
104 | 192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,
|
---|
105 | 208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,
|
---|
106 | 224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,
|
---|
107 | 240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255
|
---|
108 | };
|
---|
109 |
|
---|
110 | //----------------------------------------------------------------------
|
---|
111 |
|
---|
112 | char nsCRT::ToUpper(char aChar)
|
---|
113 | {
|
---|
114 | return (char)kLower2Upper[(unsigned char)aChar];
|
---|
115 | }
|
---|
116 |
|
---|
117 | char nsCRT::ToLower(char aChar)
|
---|
118 | {
|
---|
119 | return (char)kUpper2Lower[(unsigned char)aChar];
|
---|
120 | }
|
---|
121 |
|
---|
122 | PRBool nsCRT::IsUpper(char aChar)
|
---|
123 | {
|
---|
124 | return aChar != nsCRT::ToLower(aChar);
|
---|
125 | }
|
---|
126 |
|
---|
127 | PRBool nsCRT::IsLower(char aChar)
|
---|
128 | {
|
---|
129 | return aChar != nsCRT::ToUpper(aChar);
|
---|
130 | }
|
---|
131 |
|
---|
132 | ////////////////////////////////////////////////////////////////////////////////
|
---|
133 | // My lovely strtok routine
|
---|
134 |
|
---|
135 | #define IS_DELIM(m, c) ((m)[(c) >> 3] & (1 << ((c) & 7)))
|
---|
136 | #define SET_DELIM(m, c) ((m)[(c) >> 3] |= (1 << ((c) & 7)))
|
---|
137 | #define DELIM_TABLE_SIZE 32
|
---|
138 |
|
---|
139 | char* nsCRT::strtok(char* string, const char* delims, char* *newStr)
|
---|
140 | {
|
---|
141 | NS_ASSERTION(string, "Unlike regular strtok, the first argument cannot be null.");
|
---|
142 |
|
---|
143 | char delimTable[DELIM_TABLE_SIZE];
|
---|
144 | PRUint32 i;
|
---|
145 | char* result;
|
---|
146 | char* str = string;
|
---|
147 |
|
---|
148 | for (i = 0; i < DELIM_TABLE_SIZE; i++)
|
---|
149 | delimTable[i] = '\0';
|
---|
150 |
|
---|
151 | for (i = 0; delims[i]; i++) {
|
---|
152 | SET_DELIM(delimTable, NS_STATIC_CAST(PRUint8, delims[i]));
|
---|
153 | }
|
---|
154 | NS_ASSERTION(delims[i] == '\0', "too many delimiters");
|
---|
155 |
|
---|
156 | // skip to beginning
|
---|
157 | while (*str && IS_DELIM(delimTable, NS_STATIC_CAST(PRUint8, *str))) {
|
---|
158 | str++;
|
---|
159 | }
|
---|
160 | result = str;
|
---|
161 |
|
---|
162 | // fix up the end of the token
|
---|
163 | while (*str) {
|
---|
164 | if (IS_DELIM(delimTable, NS_STATIC_CAST(PRUint8, *str))) {
|
---|
165 | *str++ = '\0';
|
---|
166 | break;
|
---|
167 | }
|
---|
168 | str++;
|
---|
169 | }
|
---|
170 | *newStr = str;
|
---|
171 |
|
---|
172 | return str == result ? NULL : result;
|
---|
173 | }
|
---|
174 |
|
---|
175 | ////////////////////////////////////////////////////////////////////////////////
|
---|
176 |
|
---|
177 | PRUint32 nsCRT::strlen(const PRUnichar* s)
|
---|
178 | {
|
---|
179 | PRUint32 len = 0;
|
---|
180 | if(s) {
|
---|
181 | while (*s++ != 0) {
|
---|
182 | len++;
|
---|
183 | }
|
---|
184 | }
|
---|
185 | return len;
|
---|
186 | }
|
---|
187 |
|
---|
188 |
|
---|
189 | /**
|
---|
190 | * Compare unichar string ptrs, stopping at the 1st null
|
---|
191 | * NOTE: If both are null, we return 0.
|
---|
192 | * NOTE: We terminate the search upon encountering a NULL
|
---|
193 | *
|
---|
194 | * @update gess 11/10/99
|
---|
195 | * @param s1 and s2 both point to unichar strings
|
---|
196 | * @return 0 if they match, -1 if s1<s2; 1 if s1>s2
|
---|
197 | */
|
---|
198 | PRInt32 nsCRT::strcmp(const PRUnichar* s1, const PRUnichar* s2) {
|
---|
199 | if(s1 && s2) {
|
---|
200 | for (;;) {
|
---|
201 | PRUnichar c1 = *s1++;
|
---|
202 | PRUnichar c2 = *s2++;
|
---|
203 | if (c1 != c2) {
|
---|
204 | if (c1 < c2) return -1;
|
---|
205 | return 1;
|
---|
206 | }
|
---|
207 | if ((0==c1) || (0==c2)) break;
|
---|
208 | }
|
---|
209 | }
|
---|
210 | else {
|
---|
211 | if (s1) // s2 must have been null
|
---|
212 | return -1;
|
---|
213 | if (s2) // s1 must have been null
|
---|
214 | return 1;
|
---|
215 | }
|
---|
216 | return 0;
|
---|
217 | }
|
---|
218 |
|
---|
219 | /**
|
---|
220 | * Compare unichar string ptrs, stopping at the 1st null or nth char.
|
---|
221 | * NOTE: If either is null, we return 0.
|
---|
222 | * NOTE: We DO NOT terminate the search upon encountering NULL's before N
|
---|
223 | *
|
---|
224 | * @update gess 11/10/99
|
---|
225 | * @param s1 and s2 both point to unichar strings
|
---|
226 | * @return 0 if they match, -1 if s1<s2; 1 if s1>s2
|
---|
227 | */
|
---|
228 | PRInt32 nsCRT::strncmp(const PRUnichar* s1, const PRUnichar* s2, PRUint32 n) {
|
---|
229 | if(s1 && s2) {
|
---|
230 | if(n != 0) {
|
---|
231 | do {
|
---|
232 | PRUnichar c1 = *s1++;
|
---|
233 | PRUnichar c2 = *s2++;
|
---|
234 | if (c1 != c2) {
|
---|
235 | if (c1 < c2) return -1;
|
---|
236 | return 1;
|
---|
237 | }
|
---|
238 | } while (--n != 0);
|
---|
239 | }
|
---|
240 | }
|
---|
241 | return 0;
|
---|
242 | }
|
---|
243 |
|
---|
244 | PRUnichar* nsCRT::strdup(const PRUnichar* str)
|
---|
245 | {
|
---|
246 | PRUint32 len = nsCRT::strlen(str);
|
---|
247 | return strndup(str, len);
|
---|
248 | }
|
---|
249 |
|
---|
250 | PRUnichar* nsCRT::strndup(const PRUnichar* str, PRUint32 len)
|
---|
251 | {
|
---|
252 | PRUnichar* rslt = (PRUnichar *)RTMemAlloc(sizeof(PRUnichar) * (len + 1)); // add one for the null
|
---|
253 |
|
---|
254 | if (rslt == NULL) return NULL;
|
---|
255 | memcpy(rslt, str, len * sizeof(PRUnichar));
|
---|
256 | rslt[len] = 0;
|
---|
257 | return rslt;
|
---|
258 | }
|
---|
259 |
|
---|
260 | /**
|
---|
261 | * |nsCRT::HashCode| is identical to |PL_HashString|, which tests
|
---|
262 | * (http://bugzilla.mozilla.org/showattachment.cgi?attach_id=26596)
|
---|
263 | * show to be the best hash among several other choices.
|
---|
264 | *
|
---|
265 | * We re-implement it here rather than calling it for two reasons:
|
---|
266 | * (1) in this interface, we also calculate the length of the
|
---|
267 | * string being hashed; and (2) the narrow and wide and `buffer' versions here
|
---|
268 | * will hash equivalent strings to the same value, e.g., "Hello" and L"Hello".
|
---|
269 | */
|
---|
270 | PRUint32 nsCRT::HashCode(const char* str, PRUint32* resultingStrLen)
|
---|
271 | {
|
---|
272 | PRUint32 h = 0;
|
---|
273 | const char* s = str;
|
---|
274 |
|
---|
275 | if (!str) return h;
|
---|
276 |
|
---|
277 | unsigned char c;
|
---|
278 | while ( (c = *s++) )
|
---|
279 | h = (h>>28) ^ (h<<4) ^ c;
|
---|
280 |
|
---|
281 | if ( resultingStrLen )
|
---|
282 | *resultingStrLen = (s-str)-1;
|
---|
283 | return h;
|
---|
284 | }
|
---|
285 |
|
---|
286 | PRUint32 nsCRT::HashCode(const PRUnichar* str, PRUint32* resultingStrLen)
|
---|
287 | {
|
---|
288 | PRUint32 h = 0;
|
---|
289 | const PRUnichar* s = str;
|
---|
290 |
|
---|
291 | if (!str) return h;
|
---|
292 |
|
---|
293 | PRUnichar c;
|
---|
294 | while ( (c = *s++) )
|
---|
295 | h = (h>>28) ^ (h<<4) ^ c;
|
---|
296 |
|
---|
297 | if ( resultingStrLen )
|
---|
298 | *resultingStrLen = (s-str)-1;
|
---|
299 | return h;
|
---|
300 | }
|
---|
301 |
|
---|
302 | PRUint32 nsCRT::HashCodeAsUTF8(const PRUnichar* str, PRUint32* resultingStrLen)
|
---|
303 | {
|
---|
304 | PRUint32 h = 0;
|
---|
305 | const PRUnichar* s = str;
|
---|
306 |
|
---|
307 | {
|
---|
308 | PRUint16 W1 = 0; // the first UTF-16 word in a two word tuple
|
---|
309 | PRUint32 U = 0; // the current char as UCS-4
|
---|
310 | int code_length = 0; // the number of bytes in the UTF-8 sequence for the current char
|
---|
311 |
|
---|
312 | PRUint16 W;
|
---|
313 | while ( (W = *s++) )
|
---|
314 | {
|
---|
315 | /*
|
---|
316 | * On the fly, decoding from UTF-16 (and/or UCS-2) into UTF-8 as per
|
---|
317 | * http://www.ietf.org/rfc/rfc2781.txt
|
---|
318 | * http://www.ietf.org/rfc/rfc2279.txt
|
---|
319 | */
|
---|
320 |
|
---|
321 | if ( !W1 )
|
---|
322 | {
|
---|
323 | if ( W < 0xD800 || 0xDFFF < W )
|
---|
324 | {
|
---|
325 | U = W;
|
---|
326 | if ( W <= 0x007F )
|
---|
327 | code_length = 1;
|
---|
328 | else if ( W <= 0x07FF )
|
---|
329 | code_length = 2;
|
---|
330 | else
|
---|
331 | code_length = 3;
|
---|
332 | }
|
---|
333 | else if ( /* 0xD800 <= W1 && */ W <= 0xDBFF )
|
---|
334 | W1 = W;
|
---|
335 | }
|
---|
336 | else
|
---|
337 | {
|
---|
338 | // as required by the standard, this code is careful to
|
---|
339 | // throw out illegal sequences
|
---|
340 |
|
---|
341 | if ( 0xDC00 <= W && W <= 0xDFFF )
|
---|
342 | {
|
---|
343 | U = PRUint32( (W1&0x03FF)<<10 | (W&0x3FFF) );
|
---|
344 | if ( U <= 0x001FFFFF )
|
---|
345 | code_length = 4;
|
---|
346 | else if ( U <= 0x3FFFFFF )
|
---|
347 | code_length = 5;
|
---|
348 | else
|
---|
349 | code_length = 6;
|
---|
350 | }
|
---|
351 | W1 = 0;
|
---|
352 | }
|
---|
353 |
|
---|
354 |
|
---|
355 | if ( code_length > 0 )
|
---|
356 | {
|
---|
357 | static const PRUint16 sBytePrefix[7] = { 0x0000, 0x0000, 0x00C0, 0x00E0, 0x00F0, 0x00F8, 0x00FC };
|
---|
358 | static const PRUint16 sShift[7] = { 0, 0, 6, 12, 18, 24, 30 };
|
---|
359 |
|
---|
360 | /*
|
---|
361 | * Unlike the algorithm in http://www.ietf.org/rfc/rfc2279.txt
|
---|
362 | * we must calculate the bytes in left to right order so that
|
---|
363 | * our hash result matches what the narrow version would calculate
|
---|
364 | * on an already UTF-8 string.
|
---|
365 | */
|
---|
366 |
|
---|
367 | // hash the first (and often, only, byte)
|
---|
368 | h = (h>>28) ^ (h<<4) ^ (sBytePrefix[code_length] | (U>>sShift[code_length]));
|
---|
369 |
|
---|
370 | // an unrolled loop for hashing any remaining bytes in this sequence
|
---|
371 | switch ( code_length )
|
---|
372 | { // falling through in each case
|
---|
373 | case 6: h = (h>>28) ^ (h<<4) ^ (0x80 | ((U>>24) & 0x003F)); RT_FALL_THROUGH();
|
---|
374 | case 5: h = (h>>28) ^ (h<<4) ^ (0x80 | ((U>>18) & 0x003F)); RT_FALL_THROUGH();
|
---|
375 | case 4: h = (h>>28) ^ (h<<4) ^ (0x80 | ((U>>12) & 0x003F)); RT_FALL_THROUGH();
|
---|
376 | case 3: h = (h>>28) ^ (h<<4) ^ (0x80 | ((U>>6 ) & 0x003F)); RT_FALL_THROUGH();
|
---|
377 | case 2: h = (h>>28) ^ (h<<4) ^ (0x80 | ( U & 0x003F)); RT_FALL_THROUGH();
|
---|
378 | default: code_length = 0;
|
---|
379 | break;
|
---|
380 | }
|
---|
381 | }
|
---|
382 | }
|
---|
383 | }
|
---|
384 |
|
---|
385 | if ( resultingStrLen )
|
---|
386 | *resultingStrLen = (s-str)-1;
|
---|
387 | return h;
|
---|
388 | }
|
---|
389 |
|
---|
390 | PRUint32 nsCRT::BufferHashCode(const char* s, PRUint32 len)
|
---|
391 | {
|
---|
392 | PRUint32 h = 0;
|
---|
393 | const char* done = s + len;
|
---|
394 |
|
---|
395 | while ( s < done )
|
---|
396 | h = (h>>28) ^ (h<<4) ^ PRUint8(*s++); // cast to unsigned to prevent possible sign extension
|
---|
397 |
|
---|
398 | return h;
|
---|
399 | }
|
---|
400 |
|
---|
401 | PRUint32 nsCRT::BufferHashCode(const PRUnichar* s, PRUint32 len)
|
---|
402 | {
|
---|
403 | PRUint32 h = 0;
|
---|
404 | const PRUnichar* done = s + len;
|
---|
405 |
|
---|
406 | while ( s < done )
|
---|
407 | h = (h>>28) ^ (h<<4) ^ PRUint16(*s++); // cast to unsigned to prevent possible sign extension
|
---|
408 |
|
---|
409 | return h;
|
---|
410 | }
|
---|
411 |
|
---|
412 | // This should use NSPR but NSPR isn't exporting its PR_strtoll function
|
---|
413 | // Until then...
|
---|
414 | PRInt64 nsCRT::atoll(const char *str)
|
---|
415 | {
|
---|
416 | if (!str)
|
---|
417 | return LL_Zero();
|
---|
418 |
|
---|
419 | PRInt64 ll = LL_Zero();
|
---|
420 | PRInt64 digitll;
|
---|
421 |
|
---|
422 | while (*str && *str >= '0' && *str <= '9') {
|
---|
423 | LL_MUL(ll, ll, 10);
|
---|
424 | LL_UI2L(digitll, (*str - '0'));
|
---|
425 | LL_ADD(ll, ll, digitll);
|
---|
426 | str++;
|
---|
427 | }
|
---|
428 |
|
---|
429 | return ll;
|
---|
430 | }
|
---|
431 |
|
---|
432 | /**
|
---|
433 | * Determine if given char in valid ascii range
|
---|
434 | *
|
---|
435 | * @update ftang 04.27.2000
|
---|
436 | * @param aChar is character to be tested
|
---|
437 | * @return TRUE if in ASCII range
|
---|
438 | */
|
---|
439 | PRBool nsCRT::IsAscii(PRUnichar aChar) {
|
---|
440 | return (0x0080 > aChar);
|
---|
441 | }
|
---|
442 | /**
|
---|
443 | * Determine if given char in valid ascii range
|
---|
444 | *
|
---|
445 | * @update ftang 10.02.2001
|
---|
446 | * @param aString is null terminated to be tested
|
---|
447 | * @return TRUE if all characters aare in ASCII range
|
---|
448 | */
|
---|
449 | PRBool nsCRT::IsAscii(const PRUnichar *aString) {
|
---|
450 | while(*aString) {
|
---|
451 | if( 0x0080 <= *aString)
|
---|
452 | return PR_FALSE;
|
---|
453 | aString++;
|
---|
454 | }
|
---|
455 | return PR_TRUE;
|
---|
456 | }
|
---|
457 | /**
|
---|
458 | * Determine if given char in valid ascii range
|
---|
459 | *
|
---|
460 | * @update ftang 10.02.2001
|
---|
461 | * @param aString is null terminated to be tested
|
---|
462 | * @return TRUE if all characters aare in ASCII range
|
---|
463 | */
|
---|
464 | PRBool nsCRT::IsAscii(const char *aString) {
|
---|
465 | while(*aString) {
|
---|
466 | if( 0x80 & *aString)
|
---|
467 | return PR_FALSE;
|
---|
468 | aString++;
|
---|
469 | }
|
---|
470 | return PR_TRUE;
|
---|
471 | }
|
---|
472 | /**
|
---|
473 | * Determine whether the given string consists of valid ascii chars
|
---|
474 | *
|
---|
475 | * @param aString is null terminated
|
---|
476 | * @param aLength is the number of chars to test. This must be at most
|
---|
477 | * the number of chars in aString before the null terminator
|
---|
478 | * @return PR_TRUE if all chars are valid ASCII chars, PR_FALSE otherwise
|
---|
479 | */
|
---|
480 | PRBool nsCRT::IsAscii(const char* aString, PRUint32 aLength)
|
---|
481 | {
|
---|
482 | const char* end = aString + aLength;
|
---|
483 | while (aString < end) {
|
---|
484 | NS_ASSERTION(*aString, "Null byte before end of data!");
|
---|
485 | if (0x80 & *aString)
|
---|
486 | return PR_FALSE;
|
---|
487 | ++aString;
|
---|
488 | }
|
---|
489 | return PR_TRUE;
|
---|
490 | }
|
---|
491 |
|
---|
492 | /**
|
---|
493 | * Determine if given char in valid alpha range
|
---|
494 | *
|
---|
495 | * @update rickg 03.10.2000
|
---|
496 | * @param aChar is character to be tested
|
---|
497 | * @return TRUE if in alpha range
|
---|
498 | */
|
---|
499 | PRBool nsCRT::IsAsciiAlpha(PRUnichar aChar) {
|
---|
500 | // XXX i18n
|
---|
501 | if (((aChar >= 'A') && (aChar <= 'Z')) || ((aChar >= 'a') && (aChar <= 'z'))) {
|
---|
502 | return PR_TRUE;
|
---|
503 | }
|
---|
504 | return PR_FALSE;
|
---|
505 | }
|
---|
506 |
|
---|
507 | /**
|
---|
508 | * Determine if given char is a valid space character
|
---|
509 | *
|
---|
510 | * @update rickg 03.10.2000
|
---|
511 | * @param aChar is character to be tested
|
---|
512 | * @return TRUE if is valid space char
|
---|
513 | */
|
---|
514 | PRBool nsCRT::IsAsciiSpace(PRUnichar aChar) {
|
---|
515 | // XXX i18n
|
---|
516 | if ((aChar == ' ') || (aChar == '\r') || (aChar == '\n') || (aChar == '\t')) {
|
---|
517 | return PR_TRUE;
|
---|
518 | }
|
---|
519 | return PR_FALSE;
|
---|
520 | }
|
---|
521 |
|
---|
522 |
|
---|
523 |
|
---|
524 | /**
|
---|
525 | * Determine if given char is valid digit
|
---|
526 | *
|
---|
527 | * @update rickg 03.10.2000
|
---|
528 | * @param aChar is character to be tested
|
---|
529 | * @return TRUE if char is a valid digit
|
---|
530 | */
|
---|
531 | PRBool nsCRT::IsAsciiDigit(PRUnichar aChar) {
|
---|
532 | // XXX i18n
|
---|
533 | return PRBool((aChar >= '0') && (aChar <= '9'));
|
---|
534 | }
|
---|