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
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
|
// **********************************************************************
//
// Copyright (c) 2003-2009 ZeroC, Inc. All rights reserved.
//
// This copy of Ice is licensed to you under the terms described in the
// ICE_LICENSE file included in this distribution.
//
// **********************************************************************
#include <IceUtil/StringUtil.h>
#include <IceUtil/Unicode.h>
#include <cstring>
using namespace std;
using namespace IceUtil;
namespace
{
string
toOctalString(unsigned int n)
{
string s;
s.resize(32);
string::size_type charPos = 32;
const int radix = 1 << 3;
int mask = radix - 1;
do
{
s[--charPos] = '0' + (n & mask);
n >>= 3;
}
while(n != 0);
return string(s, charPos, (32 - charPos));
}
//
// Write the byte b as an escape sequence if it isn't a printable ASCII
// character and append the escape sequence to s. Additional characters
// that should be escaped can be passed in special. If b is any of these
// characters, b is preceded by a backslash in s.
//
void
encodeChar(string::value_type b, string& s, const string& special)
{
switch(b)
{
case '\\':
{
s.append("\\\\");
break;
}
case '\'':
{
s.append("\\'");
break;
}
case '"':
{
s.append("\\\"");
break;
}
case '\b':
{
s.append("\\b");
break;
}
case '\f':
{
s.append("\\f");
break;
}
case '\n':
{
s.append("\\n");
break;
}
case '\r':
{
s.append("\\r");
break;
}
case '\t':
{
s.append("\\t");
break;
}
default:
{
unsigned char i = static_cast<unsigned char>(b);
if(!(i >= 32 && i <= 126))
{
s.push_back('\\');
string octal = toOctalString(i);
//
// Add leading zeroes so that we avoid problems during
// decoding. For example, consider the escaped string
// \0013 (i.e., a character with value 1 followed by the
// character '3'). If the leading zeroes were omitted, the
// result would be incorrectly interpreted as a single
// character with value 11.
//
for(string::size_type j = octal.size(); j < 3; j++)
{
s.push_back('0');
}
s.append(octal);
}
else if(special.find(b) != string::npos)
{
s.push_back('\\');
s.push_back(b);
}
else
{
s.push_back(b);
}
break;
}
}
}
}
//
// Add escape sequences (such as "\n", or "\007") to make a string
// readable in ASCII. Any characters that appear in special are
// prefixed with a backslash in the returned string.
//
string
IceUtilInternal::escapeString(const string& s, const string& special)
{
string::size_type i;
for(i = 0; i < special.size(); ++i)
{
if(static_cast<unsigned char>(special[i]) < 32 || static_cast<unsigned char>(special[i]) > 126)
{
throw IllegalArgumentException(__FILE__, __LINE__, "special characters must be in ASCII range 32-126");
}
}
string result;
for(i = 0; i < s.size(); ++i)
{
encodeChar(s[i], result, special);
}
return result;
}
namespace
{
char
checkChar(char c)
{
if(!(static_cast<unsigned char>(c) >= 32 && static_cast<unsigned char>(c) <= 126))
{
throw IllegalArgumentException(__FILE__, __LINE__, "illegal input character");
}
return c;
}
//
// Decode the character or escape sequence starting at start and return it.
// end marks the one-past-the-end position of the substring to be scanned.
// nextStart is set to the index of the first character following the decoded
// character or escape sequence.
//
char
decodeChar(const string& s, string::size_type start, string::size_type end, string::size_type& nextStart)
{
assert(start < end);
assert(end <= s.size());
char c;
if(s[start] != '\\')
{
c = checkChar(s[start++]);
}
else
{
if(start + 1 == end)
{
throw IllegalArgumentException(__FILE__, __LINE__, "trailing backslash in argument");
}
switch(s[++start])
{
case '\\':
case '\'':
case '"':
{
c = s[start++];
break;
}
case 'b':
{
++start;
c = '\b';
break;
}
case 'f':
{
++start;
c = '\f';
break;
}
case 'n':
{
++start;
c = '\n';
break;
}
case 'r':
{
++start;
c = '\r';
break;
}
case 't':
{
++start;
c = '\t';
break;
}
case '0':
case '1':
case '2':
case '3':
case '4':
case '5':
case '6':
case '7':
{
int oct = 0;
for(int j = 0; j < 3 && start < end; ++j)
{
int charVal = s[start++] - '0';
if(charVal < 0 || charVal > 7)
{
--start;
break;
}
oct = oct * 8 + charVal;
}
if(oct > 255)
{
throw IllegalArgumentException(__FILE__, __LINE__, "octal value out of range");
}
c = (char)oct;
break;
}
default:
{
c = checkChar(s[start++]);
break;
}
}
}
nextStart = start;
return c;
}
//
// Remove escape sequences from s and append the result to sb.
// Return true if successful, false otherwise.
//
void
decodeString(const string& s, string::size_type start, string::size_type end, string& sb)
{
while(start < end)
{
sb.push_back(decodeChar(s, start, end, start));
}
}
}
//
// Remove escape sequences added by escapeString.
//
bool
IceUtilInternal::unescapeString(const string& s, string::size_type start, string::size_type end, string& result)
{
if(end > s.size())
{
throw IllegalArgumentException(__FILE__, __LINE__, "end offset must be <= s.size()");
}
if(start > end)
{
throw IllegalArgumentException(__FILE__, __LINE__, "start offset must <= end offset");
}
result.reserve(end - start);
try
{
result.clear();
decodeString(s, start, end, result);
return true;
}
catch(...)
{
return false;
}
}
bool
IceUtilInternal::splitString(const string& str, const string& delim, vector<string>& result)
{
string::size_type pos = 0;
string::size_type length = str.length();
string elt;
while(pos < length)
{
char quoteChar = '\0';
if(str[pos] == '"' || str[pos] == '\'')
{
quoteChar = str[pos];
++pos;
}
while(pos < length)
{
if(quoteChar != '\0' && str[pos] == '\\' && pos + 1 < length && str[pos + 1] == quoteChar)
{
++pos;
}
else if(quoteChar != '\0' && str[pos] == quoteChar)
{
++pos;
quoteChar = '\0';
break;
}
else if(delim.find(str[pos]) != string::npos)
{
if(quoteChar == '\0')
{
++pos;
break;
}
}
if(pos < length)
{
elt += str[pos++];
}
}
if(quoteChar != '\0')
{
return false; // Unmatched quote.
}
if(elt.length() > 0)
{
result.push_back(elt);
elt = "";
}
}
return true;
}
string
IceUtilInternal::joinString(const std::vector<std::string>& values, const std::string& delimiter)
{
ostringstream out;
for(unsigned int i = 0; i < values.size(); i++)
{
if(i != 0)
{
out << delimiter;
}
out << values[i];
}
return out.str();
}
//
// Trim white space (" \t\r\n")
//
string
IceUtilInternal::trim(const string& s)
{
static const string delim = " \t\r\n";
string::size_type beg = s.find_first_not_of(delim);
if(beg == string::npos)
{
return "";
}
else
{
return s.substr(beg, s.find_last_not_of(delim) - beg + 1);
}
}
//
// If a single or double quotation mark is found at the start position,
// then the position of the matching closing quote is returned. If no
// quotation mark is found at the start position, then 0 is returned.
// If no matching closing quote is found, then -1 is returned.
//
string::size_type
IceUtilInternal::checkQuote(const string& s, string::size_type start)
{
string::value_type quoteChar = s[start];
if(quoteChar == '"' || quoteChar == '\'')
{
start++;
string::size_type pos;
while(start < s.size() && (pos = s.find(quoteChar, start)) != string::npos)
{
if(s[pos - 1] != '\\')
{
return pos;
}
start = pos + 1;
}
return string::npos; // Unmatched quote.
}
return 0; // Not quoted.
}
//
// Match `s' against the pattern `pat'. A * in the pattern acts
// as a wildcard: it matches any non-empty sequence of characters.
// We match by hand here because it's portable across platforms
// (whereas regex() isn't). Only one * per pattern is supported.
//
bool
IceUtilInternal::match(const string& s, const string& pat, bool emptyMatch)
{
assert(!s.empty());
assert(!pat.empty());
//
// If pattern does not contain a wildcard just compare strings.
//
string::size_type beginIndex = pat.find('*');
if(beginIndex == string::npos)
{
return s == pat;
}
//
// Make sure start of the strings match
//
if(beginIndex > s.length() || s.substr(0, beginIndex) != pat.substr(0, beginIndex))
{
return false;
}
//
// Make sure there is something present in the middle to match the
// wildcard. If emptyMatch is true, allow a match of "".
//
string::size_type endLength = pat.length() - beginIndex - 1;
if(endLength > s.length())
{
return false;
}
string::size_type endIndex = s.length() - endLength;
if(endIndex < beginIndex || (!emptyMatch && endIndex == beginIndex))
{
return false;
}
//
// Make sure end of the strings match
//
if(s.substr(endIndex, s.length()) != pat.substr(beginIndex + 1, pat.length()))
{
return false;
}
return true;
}
#ifdef _WIN32
string
IceUtilInternal::errorToString(int error, LPCVOID source)
{
if(error < WSABASEERR)
{
LPVOID lpMsgBuf = 0;
DWORD ok = FormatMessage(FORMAT_MESSAGE_ALLOCATE_BUFFER |
FORMAT_MESSAGE_FROM_SYSTEM |
FORMAT_MESSAGE_IGNORE_INSERTS |
(source != NULL ? FORMAT_MESSAGE_FROM_HMODULE : 0),
source,
error,
MAKELANGID(LANG_NEUTRAL, SUBLANG_DEFAULT), // Default language
(LPTSTR)&lpMsgBuf,
0,
NULL);
if(ok)
{
LPCTSTR msg = (LPCTSTR)lpMsgBuf;
assert(msg && strlen((const char*)msg) > 0);
string result = (const char*)msg;
if(result[result.length() - 1] == '\n')
{
result = result.substr(0, result.length() - 2);
}
LocalFree(lpMsgBuf);
return result;
}
else
{
ostringstream os;
os << "unknown error: " << error;
return os.str();
}
}
switch(error)
{
case WSAEINTR:
return "WSAEINTR";
case WSAEBADF:
return "WSAEBADF";
case WSAEACCES:
return "WSAEACCES";
case WSAEFAULT:
return "WSAEFAULT";
case WSAEINVAL:
return "WSAEINVAL";
case WSAEMFILE:
return "WSAEMFILE";
case WSAEWOULDBLOCK:
return "WSAEWOULDBLOCK";
case WSAEINPROGRESS:
return "WSAEINPROGRESS";
case WSAEALREADY:
return "WSAEALREADY";
case WSAENOTSOCK:
return "WSAENOTSOCK";
case WSAEDESTADDRREQ:
return "WSAEDESTADDRREQ";
case WSAEMSGSIZE:
return "WSAEMSGSIZE";
case WSAEPROTOTYPE:
return "WSAEPROTOTYPE";
case WSAENOPROTOOPT:
return "WSAENOPROTOOPT";
case WSAEPROTONOSUPPORT:
return "WSAEPROTONOSUPPORT";
case WSAESOCKTNOSUPPORT:
return "WSAESOCKTNOSUPPORT";
case WSAEOPNOTSUPP:
return "WSAEOPNOTSUPP";
case WSAEPFNOSUPPORT:
return "WSAEPFNOSUPPORT";
case WSAEAFNOSUPPORT:
return "WSAEAFNOSUPPORT";
case WSAEADDRINUSE:
return "WSAEADDRINUSE";
case WSAEADDRNOTAVAIL:
return "WSAEADDRNOTAVAIL";
case WSAENETDOWN:
return "WSAENETDOWN";
case WSAENETUNREACH:
return "WSAENETUNREACH";
case WSAENETRESET:
return "WSAENETRESET";
case WSAECONNABORTED:
return "WSAECONNABORTED";
case WSAECONNRESET:
return "WSAECONNRESET";
case WSAENOBUFS:
return "WSAENOBUFS";
case WSAEISCONN:
return "WSAEISCONN";
case WSAENOTCONN:
return "WSAENOTCONN";
case WSAESHUTDOWN:
return "WSAESHUTDOWN";
case WSAETOOMANYREFS:
return "WSAETOOMANYREFS";
case WSAETIMEDOUT:
return "WSAETIMEDOUT";
case WSAECONNREFUSED:
return "WSAECONNREFUSED";
case WSAELOOP:
return "WSAELOOP";
case WSAENAMETOOLONG:
return "WSAENAMETOOLONG";
case WSAEHOSTDOWN:
return "WSAEHOSTDOWN";
case WSAEHOSTUNREACH:
return "WSAEHOSTUNREACH";
case WSAENOTEMPTY:
return "WSAENOTEMPTY";
case WSAEPROCLIM:
return "WSAEPROCLIM";
case WSAEUSERS:
return "WSAEUSERS";
case WSAEDQUOT:
return "WSAEDQUOT";
case WSAESTALE:
return "WSAESTALE";
case WSAEREMOTE:
return "WSAEREMOTE";
case WSAEDISCON:
return "WSAEDISCON";
case WSASYSNOTREADY:
return "WSASYSNOTREADY";
case WSAVERNOTSUPPORTED:
return "WSAVERNOTSUPPORTED";
case WSANOTINITIALISED:
return "WSANOTINITIALISED";
case WSAHOST_NOT_FOUND:
return "WSAHOST_NOT_FOUND";
case WSATRY_AGAIN:
return "WSATRY_AGAIN";
case WSANO_RECOVERY:
return "WSANO_RECOVERY";
case WSANO_DATA:
return "WSANO_DATA";
default:
{
ostringstream os;
os << "unknown socket error: " << error;
return os.str();
}
}
}
string
IceUtilInternal::lastErrorToString()
{
return errorToString(GetLastError());
}
#else
string
IceUtilInternal::errorToString(int error)
{
return strerror(error);
}
string
IceUtilInternal::lastErrorToString()
{
return errorToString(errno);
}
#endif
string
IceUtilInternal::toLower(const std::string& s)
{
string result;
result.reserve(s.size());
for(unsigned int i = 0; i < s.length(); ++i)
{
if(isascii(s[i]))
{
result += tolower(static_cast<unsigned char>(s[i]));
}
else
{
result += s[i];
}
}
return result;
}
string
IceUtilInternal::toUpper(const std::string& s)
{
string result;
result.reserve(s.size());
for(unsigned int i = 0; i < s.length(); ++i)
{
if(isascii(s[i]))
{
result += toupper(static_cast<unsigned char>(s[i]));
}
else
{
result += s[i];
}
}
return result;
}
string
IceUtilInternal::removeWhitespace(const std::string& s)
{
string result;
for(unsigned int i = 0; i < s.length(); ++ i)
{
if(!isspace(static_cast<unsigned char>(s[i])))
{
result += s[i];
}
}
return result;
}
|