File: strutils.cc

package info (click to toggle)
wvstreams 4.6.1-19
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 7,420 kB
  • sloc: cpp: 64,196; ansic: 4,154; sh: 4,025; makefile: 546; perl: 402
file content (1328 lines) | stat: -rw-r--r-- 30,684 bytes parent folder | download | duplicates (8)
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
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
/*
 * Worldvisions Weaver Software:
 *   Copyright (C) 1997-2002 Net Integration Technologies, Inc.
 * 
 * Various useful string-based utilities.
 *
 */
#include "strutils.h"
#include "wvbuf.h"
#include <ctype.h>
#include <stdio.h>
#include <string.h>
#include <time.h>
#include <errno.h>

#ifndef _WIN32
//#include <uuid.h>
#include <errno.h>
#include <netdb.h>
#include <unistd.h>
#else
#undef errno
#define errno GetLastError()
#define strcasecmp _stricmp
#include <winsock2.h>
#include <direct.h>
#ifndef EACCES
#define EACCES 0xfff
#endif
#endif

char *terminate_string(char *string, char c)
/**********************************************/
// Add character c to the end of a string after removing crlf's.
// NOTE: You need a buffer that's at least one character bigger than the
// current length of the string, including the terminating NULL.
{
    char *p;

    if (string == NULL)
    	return NULL;

    p = string + strlen(string) - 1;
    while (p >= string)
    {
        if (*p == '\r' || *p == '\n')
            --p;
        else
            break;
    }

    *(++p) = c;
    *(++p) = 0;

    return string;
}


char *trim_string(char *string)
/*********************************/
// Trims spaces off the front and end of strings.  Modifies the string.
// Specifically DOES allow string==NULL; returns NULL in that case.
{
    char *p;
    char *q;

    if (string == NULL)
    	return NULL;

    p = string;
    q = string + strlen(string) - 1;

    while (q >= p && isspace(*q))
    	*(q--) = 0;
    while (isspace(*p))
    	p++;

    return p;
}


char *trim_string(char *string, char c)
// Searches the string for c and removes it plus everything afterwards.
// Modifies the string and returns NULL if string == NULL.
{
    char *p;

    if (string == NULL)
        return NULL;

    p = string;

    while (*p != 0 && *p != c)
        p++;

    while (*p)
        *(p++) = 0;

    return string;
}


// return the string formed by concatenating string 'a' and string 'b' with
// the 'sep' character between them.  For example,
//    spacecat("xx", "yy", ";")
// returns "xx;yy", and
//    spacecat("xx;;", "yy", ";")
// returns "xx;;;yy", and
//    spacecat("xx;;", "yy", ";", true)
// returns "xx;yy".
//
// This function is much faster than the more obvious WvString("%s;%s", a, b),
// so it's useful when you're producing a *lot* of string data.
WvString spacecat(WvStringParm a, WvStringParm b, char sep, bool onesep)
{
    size_t alen = strlen(a);
    size_t blen = strlen(b);

    // If we only want one separator, eat away at the back of string a
    if (onesep && alen)
    {
	while (a[alen-1] == sep)
	    --alen;
    }

    // Create the destination string, and give it an appropriate size.
    // Then, fill it with string a.
    WvString s;
    s.setsize(alen + blen + 2);
    char *cptr = s.edit();

    memcpy(cptr, a, alen);

    // Write the separator in the appropriate spot.
    cptr[alen] = sep;

    // If we only want one separator, eat away at the from of string b.
    size_t boffset = 0;
    if (onesep)
    {
	while (b[boffset] == sep)
	    ++boffset;
    }

    // Now copy the second half of the string in and terminate with a NUL.
    memcpy(cptr+alen+1, b.cstr()+boffset, blen-boffset);
    cptr[alen+1+blen-boffset] = 0;

    return s;
}


// Replaces whitespace characters with nonbreaking spaces.
char *non_breaking(const char * string)
{
    if (string == NULL)
        return (NULL);

    WvDynBuf buf;

    while (*string)
    {
        if (isspace(*string))
	    buf.putstr("&nbsp;");
        else 
	    buf.putch(*string);
        string++;
    }

    WvString s(buf.getstr());
    char *nbstr = new char[s.len() + 1];
    return strcpy(nbstr, s.edit());
}


// Searches _string (up to length bytes), replacing any occurrences of c1
// with c2.
void replace_char(void *_string, char c1, char c2, int length)
{
    char *string = (char *)_string;
    for (int i=0; i < length; i++)
    	if (*(string+i) == c1)
    	    *(string+i) = c2;
}

// Snip off the first part of 'haystack' if it consists of 'needle'.
char *snip_string(char *haystack, char *needle)
{
    if(!haystack)
        return NULL;
    if(!needle)
        return haystack;
    char *p = strstr(haystack, needle);
    if(!p || p != haystack)
        return haystack;
    else
        return haystack + strlen(needle);
}


char *strlwr(char *string)
{
    char *p = string;
    while (p && *p)
    {
    	*p = tolower(*p);
    	p++;
    }

    return string;
}


char *strupr(char *string)
{
    char *p = string;
    while (p && *p)
    {
	*p = toupper(*p);
	p++;
    }

    return string;
}


// true if all the characters in "string" are isalnum().
bool is_word(const char *p)
{
    assert(p);

    while (*p)
    {
    	if(!isalnum(*p++))
    	    return false;
    }
    
    return true;
}


// produce a hexadecimal dump of the data buffer in 'buf' of length 'len'.
// it is formatted with 16 bytes per line; each line has an address offset,
// hex representation, and printable representation.
WvString hexdump_buffer(const void *_buf, size_t len, bool charRep)
{
    const unsigned char *buf = (const unsigned char *)_buf;
    size_t count, count2, top;
    WvString out;

    out.setsize(len / 16 * 80 + 80);
    char *cptr = out.edit();
    
    for (count = 0; count < len; count+=16)
    {
	top = len-count < 16 ? len-count : 16;
	cptr += sprintf(cptr, "[%03X] ", (unsigned int)count);
	
	// dump hex values
	for (count2 = 0; count2 < top; count2++)
	{
	    if (count2 && !(count2 % 4))
		*cptr++ = ' ';
	    cptr += sprintf(cptr, "%02X", buf[count+count2]);
	}
	
	// print horizontal separation
	for (count2 = top; count2 < 16; count2++)
	{
	    if (count2 && !(count2 % 4))
	    {
		strcat(cptr, "   ");
		cptr += 3;
	    }
	    else
	    {
		strcat(cptr, "  ");
		cptr += 2;
	    }
	}
	
	*cptr++ = ' ';
	
	// dump character representation
	if (charRep)
	{
	    for (count2 = 0; count2 < top; count2++)
	    {
		if (!(count2 % 4))
		    *cptr++ = ' ';
	        *cptr++ = (isprint(buf[count+count2])
			   ? buf[count+count2] : '.');
	    }
	}

	*cptr++ = '\n';
    }
    *cptr = 0;
    return out;
}


// return true if the character is a newline.
bool isnewline(char c)
{
    return c=='\n' || c=='\r';
}


// ex: WvString foo = url_decode("I+am+text.%0D%0A");
WvString url_decode(WvStringParm str, bool no_space)
{
    if (!str)
        return str;
 
    const char *iptr;
    char *optr;
    const char *idx1, *idx2;
    static const char hex[] = "0123456789ABCDEF";
    WvString in, intmp(str), out;

    in = trim_string(intmp.edit());
    out.setsize(strlen(in) + 1);

    optr = out.edit();
    for (iptr = in, optr = out.edit(); *iptr; iptr++)
    {
        if (*iptr == '+' && !no_space)
            *optr++ = ' ';
        else if (*iptr == '%' && iptr[1] && iptr[2])
        {
            idx1 = strchr(hex, toupper((unsigned char) iptr[1]));
            idx2 = strchr(hex, toupper((unsigned char) iptr[2]));

            if (idx1 && idx2)
                *optr++ = ((idx1 - hex) << 4) | (idx2 - hex);

            iptr += 2;
        }
        else
            *optr++ = *iptr;
    }

    *optr = 0;

    return out;
}


// And its magic companion: url_encode
WvString url_encode(WvStringParm str, WvStringParm unsafe)
{
    unsigned int i;
    WvDynBuf retval;

    for (i=0; i < str.len(); i++)
    {
        if (((!!unsafe && !strchr(unsafe, str[i])) ||
             (!unsafe && (isalnum(str[i]) || strchr("_.!~*'()-", str[i])))) &&
            str[i] != '%')
        {
            retval.put(&str[i], 1);
        }
        else
        {               
            char buf[4];
            sprintf(buf, "%%%02X", str[i] & 0xff);
            retval.put(&buf, 3);
        }
    }

    return retval.getstr();
}


WvString diff_dates(time_t t1, time_t t2)
{
    char out[25]; //Should be more then enough
    double diff = difftime(t1, t2);
    if(diff < 0)
        diff = -diff;
    if(diff > (60 * 60 * 24))
        //give a touch more granularity then the rest
        sprintf(out, "%.1f day(s)", diff / (60 * 60 * 24));
    else if(diff > (60 * 60)) 
        sprintf(out, "%.0f hour(s)", diff / (60 * 60));
    else if(diff > 60)
        sprintf(out, "%.0f minute(s)", diff / 60);
    else
        sprintf(out, "%.0f second(s)", diff);
    return out;
}


WvString rfc822_date(time_t when)
{
    WvString out;
    out.setsize(80);

    if (when < 0)
        when = time(NULL);

    struct tm *tmwhen = localtime(&when);
    strftime(out.edit(), 80, "%a, %d %b %Y %H:%M:%S %z", tmwhen);

    return out;
}


WvString backslash_escape(WvStringParm s1)
{
    // stick a backslash in front of every !isalnum() character in s1
    if (!s1)
        return "";

    WvString s2;
    s2.setsize(s1.len() * 2 + 1);

    const char *p1 = s1;
    char *p2 = s2.edit();
    while (*p1)
    {
        if (!isalnum(*p1))
            *p2++ = '\\';
        *p2++ = *p1++;
    }
    *p2 = 0;

    return s2;
}


int strcount(WvStringParm s, const char c)
{
    int n=0;
    const char *p = s;
    while ((p=strchr(p, c)) != NULL && p++)
        n++;

    return n;
}


WvString encode_hostname_as_DN(WvStringParm hostname)
{
    WvString dn("");
    
    WvStringList fqdnlist;
    WvStringList::Iter i(fqdnlist);
    
    fqdnlist.split(hostname, ".");
    for (i.rewind(); i.next(); )
	dn.append("dc=%s,", *i);
    dn.append("cn=%s", hostname);
    
    return dn;
}


WvString nice_hostname(WvStringParm name)
{
    WvString nice;
    char *optr, *optr_start;
    const char *iptr;
    bool last_was_dash;
    
    nice.setsize(name.len() + 2);

    iptr = name;
    optr = optr_start = nice.edit();
    if (!isascii(*iptr) || !isalnum(*(const unsigned char *)iptr))
	*optr++ = 'x'; // DNS names must start with a letter!
    
    last_was_dash = false;
    for (; *iptr; iptr++)
    {
	if (!isascii(*iptr))
	    continue; // skip it entirely
	
	if (*iptr == '-' || *iptr == '_')
	{
	    if (last_was_dash)
		continue;
	    last_was_dash = true;
	    *optr++ = '-';
	}
	else if (isalnum(*(const unsigned char *)iptr) || *iptr == '.')
	{
	    *optr++ = *iptr;
	    last_was_dash = false;
	}
    }
    
    if (optr > optr_start && !isalnum(*(const unsigned char *)(optr-1)))
	*optr++ = 'x'; // must _end_ in a letter/number too!
    
    *optr++ = 0;
    
    if (!nice.len())
	return "UNKNOWN";
    
    return nice;
}


WvString getfilename(WvStringParm fullname)
{
    WvString tmp(fullname);
    char *cptr = strrchr(tmp.edit(), '/');
    
    if (!cptr) // no slash at all
	return fullname;
    else if (!cptr[1]) // terminating slash
    {
	*cptr = 0;
	return getfilename(tmp);
    }
    else // no terminating slash
	return cptr+1;
}


WvString getdirname(WvStringParm fullname)
{
    WvString tmp(fullname);
    char *cptr = strrchr(tmp.edit(), '/');
    
    if (!cptr) // no slash at all
	return ".";
    else if (!cptr[1]) // terminating slash
    {
	*cptr = 0;
	return getdirname(tmp);
    }
    else // no terminating slash
    {
	*cptr = 0;
	return !tmp ? WvString("/") : tmp;
    }
}

// Programmatically determine the units.  In order, these are:
// bytes, kilobytes, megabytes, gigabytes, terabytes, petabytes,
// exabytes, zettabytes, yottabytes.  Note that these are SI
// prefixes, not binary ones.

// This structure allows us to choose between SI-prefixes which are
// powers of 10, and IEC-prefixes which are powers of 2.
struct prefix_t
{
    const char *name;
    unsigned long long base;
};

// SI-prefixes:
// kilo, mega, giga, tera, peta, and exa.
static const prefix_t si[] =
{
    { "k", 1000ull },
    { "M", 1000ull * 1000ull },
    { "G", 1000ull * 1000ull * 1000ull },
    { "T", 1000ull * 1000ull * 1000ull * 1000ull },
    { "P", 1000ull * 1000ull * 1000ull * 1000ull * 1000ull},
    { "E", 1000ull * 1000ull * 1000ull * 1000ull * 1000ull * 1000ull},
    { "Z", 0 },
    { "Y", 0 },
    { NULL, 0 }
};

// IEC-prefixes:
// kibi, mebi, gibi, tebi, pebi, and exbi.
static const prefix_t iec[] =
{
    { "Ki", 1024ull },
    { "Mi", 1024ull * 1024ull},
    { "Gi", 1024ull * 1024ull * 1024ull },
    { "Ti", 1024ull * 1024ull * 1024ull * 1024ull },
    { "Pi", 1024ull * 1024ull * 1024ull * 1024ull * 1024ull},
    { "Ei", 1024ull * 1024ull * 1024ull * 1024ull * 1024ull * 1024ull},
    { "Zi", 0 },
    { "Yi", 0 },
    { NULL, 0 }
};


// This function expects size to be ten-times the actual number.
static inline unsigned long long _sizetoa_rounder(RoundingMethod method,
						  unsigned long long size,
						  unsigned long long remainder,
						  unsigned long long base)
{
    unsigned long long half = base / 2;
    unsigned long long significant_digits = size / base;
    switch (method)
    {
    case ROUND_DOWN:
	break;

    case ROUND_UP:
	if (remainder || (size % base))
	    ++significant_digits;
	break;

    case ROUND_UP_AT_POINT_FIVE:
	if ((size % base) >= half)
	    ++significant_digits;
	break;

    case ROUND_DOWN_AT_POINT_FIVE:
	unsigned long long r = size % base;
	if ((r > half) || (remainder && (r == half)))
	    ++significant_digits;
	break;
    }
    return significant_digits;
}


// This function helps sizetoa() and sizektoa() below.  It takes a
// bunch of digits, and the default unit (indexed by size); and turns
// them into a WvString that's formatted to human-readable rounded
// sizes, with one decimal place.
//
// You must be very careful here never to add anything to size.
// Otherwise, you might cause an overflow to occur.  Similarly, you
// must be careful when you subtract or you might cause an underflow.
static WvString _sizetoa(unsigned long long size, unsigned long blocksize,
			 RoundingMethod rounding_method,
			 const prefix_t *prefixes, WvStringParm unit)
{
    assert(blocksize);

    // To understand rounding, consider the display of the value 999949.
    // For each rounding method the string displayed should be:
    // ROUND_DOWN: 999.9 kB
    // ROUND_UP_AT_POINT_FIVE: 999.9 kB
    // ROUND_UP: 1.0 MB
    // On the other hand, for the value 999950, the strings should be:
    // ROUND_DOWN: 999.9 kB
    // ROUND_DOWN_AT_POINT_FIVE: 999.9 kB
    // ROUND_UP_AT_POINT_FIVE: 1.0 MB
    // ROUND_UP: 1.0 MB

    // Deal with blocksizes without overflowing.
    const unsigned long long group_base = prefixes[0].base;
    int shift = 0;
    unsigned long prev_blocksize = 0;
    while (blocksize >= group_base)
    {
	prev_blocksize = blocksize;
	blocksize /= group_base;
	++shift;
    }

    // If we have a very large blocksize, make sure to keep enough of
    // it to make rounding possible.
    if (prev_blocksize && prev_blocksize != group_base)
    {
	blocksize = prev_blocksize;
	--shift;
    }

    int p = -1;
    unsigned long long significant_digits = size * 10;
    unsigned int remainder = 0;
    if (significant_digits < size)
    {
	// A really big size.  We'll divide by a grouping before going up one.
	remainder = size % group_base;
	size /= group_base;
	++shift;
    }
    while (size >= group_base)
    {
	++p;
	significant_digits = _sizetoa_rounder(rounding_method,
					      size * 10,
					      remainder,
					      prefixes[p].base);
	if (significant_digits < (group_base * 10)
	    || !prefixes[p + shift + 1].name)
	    break;
    }

    // Correct for blocksizes that aren't powers of group_base.
    if (blocksize > 1)
    {
	significant_digits *= blocksize;
	while (significant_digits >= (group_base * 10)
	       && prefixes[p + shift + 1].name)
	{
	    significant_digits = _sizetoa_rounder(rounding_method,
						  significant_digits,
						  0,
						  group_base);
	    ++p;
	}
    }

    // Now we can return our result.
    return WvString("%s.%s %s%s",
		    significant_digits / 10,
		    significant_digits % 10,
		    prefixes[p + shift].name,
		    unit);
}

WvString sizetoa(unsigned long long blocks, unsigned long blocksize,
		 RoundingMethod rounding_method)
{
    unsigned long long bytes = blocks * blocksize;

    // Test if we are dealing in just bytes.
    if (bytes < 1000 && bytes >= blocks)
	return WvString("%s bytes", bytes);

    return _sizetoa(blocks, blocksize, rounding_method, si, "B");
}


WvString sizektoa(unsigned long long kbytes, RoundingMethod rounding_method)
{
    if (kbytes < 1000)
	return WvString("%s kB", kbytes);

    return sizetoa(kbytes, 1000, rounding_method);
}

WvString sizeitoa(unsigned long long blocks, unsigned long blocksize,
		  RoundingMethod rounding_method)
{
    unsigned long long bytes = blocks * blocksize;

    // Test if we are dealing in just bytes.
    if (bytes < 1024 && bytes >= blocks)
	return WvString("%s bytes", bytes);

    return _sizetoa(blocks, blocksize, rounding_method, iec, "B");
}


WvString sizekitoa(unsigned long long kbytes, RoundingMethod rounding_method)
{
    if (kbytes < 1024)
	return WvString("%s KiB", kbytes);

    return sizeitoa(kbytes, 1024, rounding_method);
}

WvString secondstoa(unsigned int total_seconds)
{
    WvString result("");

    unsigned int days = total_seconds / (3600*24);
    total_seconds %= (3600*24);
    unsigned int hours = total_seconds / 3600;
    total_seconds %= 3600;
    unsigned int mins = total_seconds / 60;
    unsigned int secs = total_seconds % 60; 

    int num_elements = (days > 0) + (hours > 0) + (mins > 0);

    if (days > 0)
    {
        result.append(days);
        result.append(days > 1 ? " days" : " day");
        num_elements--;
        if (num_elements > 1)
            result.append(", ");
        else if (num_elements == 1)
            result.append(" and ");
    }
    if (hours > 0)
    {
        result.append(hours);
        result.append(hours > 1 ? " hours" : " hour");
        num_elements--;
        if (num_elements > 1)
            result.append(", ");
        else if (num_elements == 1)
            result.append(" and ");
    }
    if (mins > 0)
    {
        result.append(mins);
        result.append(mins > 1 ? " minutes" : " minute");
    }
    if (days == 0 && hours == 0 && mins == 0)
    {
        result.append(secs);
        result.append(secs != 1 ? " seconds" : " second");
    }

    return result;
}

WvString strreplace(WvStringParm s, WvStringParm a, WvStringParm b)
{
    WvDynBuf buf;
    const char *sptr = s, *eptr;
    
    while ((eptr = strstr(sptr, a)) != NULL)
    {
	buf.put(sptr, eptr-sptr);
	buf.putstr(b);
	sptr = eptr + strlen(a);
    }
    
    buf.put(sptr, strlen(sptr));
    
    return buf.getstr();
}

WvString undupe(WvStringParm s, char c)
{
    WvDynBuf out;

    bool last = false;

    for (int i = 0; s[i] != '\0'; i++)
    {
        if (s[i] != c)
        {
            out.putch(s[i]);
            last = false;
        }
        else if (!last)
        {
            out.putch(c);
            last = true;
        }
    }
    
    return out.getstr();
}


WvString rfc1123_date(time_t t)
{
    struct tm *tm = gmtime(&t);
    WvString s;

    s.setsize(128);
    strftime(s.edit(), 128, "%a, %d %b %Y %H:%M:%S GMT", tm);

    return s;
}


int lookup(const char *str, const char * const *table, bool case_sensitive)
{
    for (int i = 0; table[i]; ++i)
    {
        if (case_sensitive)
        {
            if (strcmp(str, table[i]) != 0)
                continue;
        }
        else
        {
            if (strcasecmp(str, table[i]) != 0)
                continue;
        }
        return i;
    }
    return -1;
}


WvString hostname()
{
    int maxlen = 0;
    for (;;)
    {
        maxlen += 80;
        char *name = new char[maxlen];
        int result = gethostname(name, maxlen);
        if (result == 0)
        {
            WvString hostname(name);
            deletev name;
            return hostname;
        }
#ifdef _WIN32
	assert(errno == WSAEFAULT);
#else
        assert(errno == EINVAL);
#endif
    }
}


WvString fqdomainname() 
{
    struct hostent *myhost;

    myhost = gethostbyname(hostname());
    if (myhost)
	return myhost->h_name;
    else
	return WvString::null;
}


WvString wvgetcwd()
{
    int maxlen = 0;
    for (;;)
    {
        maxlen += 80;
        char *name = new char[maxlen];
        char *res = getcwd(name, maxlen);
        if (res)
        {
            WvString s(name);
            deletev name;
            return s;
        }
	if (errno == EACCES || errno == ENOENT)
	    return "."; // can't deal with those errors
        assert(errno == ERANGE); // buffer too small
    }
}


WvString metriculate(const off_t i)
{
    WvString res;
    int digits=0;
    int digit=0;
    long long int j=i;
    char *p;

    while (j)
    {
        digits++;
        j/=10;
    }

    j=i;
    // setsize says it takes care of the terminating NULL char
    res.setsize(digits + ((digits - 1) / 3) + ((j < 0) ? 1 : 0));
    p = res.edit();
    if (j < 0)
    {
        *p++ = '-';
        j = -j;
    }

    p += digits + ((digits - 1) / 3);
    *p-- = '\0';

    for (digit=0; digit<digits; digit++)
    {
        *p-- = '0' + ( j%10 );
        if (((digit+1) % 3) == 0 && digit < digits - 1)
            *p-- = ' ';
        j /= 10;
    }

    return res;
}


WvString afterstr(WvStringParm line, WvStringParm a)
{
    if (!line || !a)
	return WvString::null;

    const char *loc = strstr(line, a);
    if (loc == 0)
	return "";

    loc += a.len();
    WvString ret = loc;
    ret.unique();
    return ret;
}


WvString beforestr(WvStringParm line, WvStringParm a)
{
    if (!line || !a)
	return WvString::null;

    WvString ret = line;
    ret.unique();
    char *loc = strstr(ret.edit(), a);

    if (loc == 0)
	return line;

    loc[0] = '\0';
    return ret;
}


WvString substr(WvString line, unsigned int pos, unsigned int len)
{
    const char *tmp = line.cstr();
    if (pos > line.len()-1)
	return "";
    tmp += pos;

    WvString ret = tmp;
    char *tmp2 = ret.edit();
    if (pos + len < line.len())
	tmp2[len] = '\0';

    return ret;
}

const CStrExtraEscape CSTR_TCLSTR_ESCAPES[3] =
{
    { '{', "\\<" },
    { '}', "\\>" },
    { 0, NULL }
};

static inline const char *cstr_escape_char(char ch)
{
    static const char *xlat[256] =
    {
        "\\0", "\\x01", "\\x02", "\\x03", "\\x04", "\\x05", "\\x06", "\\a", 
        "\\b", "\\t", "\\n", "\\v", "\\x0C", "\\r", "\\x0E", "\\x0F", 
        "\\x10", "\\x11", "\\x12", "\\x13", "\\x14", "\\x15", "\\x16", "\\x17", 
        "\\x18", "\\x19", "\\x1A", "\\x1B", "\\x1C", "\\x1D", "\\x1E", "\\x1F", 
        " ", "!", "\\\"", "#", "$", "%", "&", "'", 
        "(", ")", "*", "+", ",", "-", ".", "/", 
        "0", "1", "2", "3", "4", "5", "6", "7", 
        "8", "9", ":", ";", "<", "=", ">", "?", 
        "@", "A", "B", "C", "D", "E", "F", "G", 
        "H", "I", "J", "K", "L", "M", "N", "O", 
        "P", "Q", "R", "S", "T", "U", "V", "W", 
        "X", "Y", "Z", "[", "\\\\", "]", "^", "_", 
        "`", "a", "b", "c", "d", "e", "f", "g", 
        "h", "i", "j", "k", "l", "m", "n", "o", 
        "p", "q", "r", "s", "t", "u", "v", "w", 
        "x", "y", "z", "{", "|", "}", "~", "\\x7F", 
        "\\x80", "\\x81", "\\x82", "\\x83", "\\x84", "\\x85", "\\x86", "\\x87", 
        "\\x88", "\\x89", "\\x8A", "\\x8B", "\\x8C", "\\x8D", "\\x8E", "\\x8F", 
        "\\x90", "\\x91", "\\x92", "\\x93", "\\x94", "\\x95", "\\x96", "\\x97", 
        "\\x98", "\\x99", "\\x9A", "\\x9B", "\\x9C", "\\x9D", "\\x9E", "\\x9F", 
        "\\xA0", "\\xA1", "\\xA2", "\\xA3", "\\xA4", "\\xA5", "\\xA6", "\\xA7", 
        "\\xA8", "\\xA9", "\\xAA", "\\xAB", "\\xAC", "\\xAD", "\\xAE", "\\xAF", 
        "\\xB0", "\\xB1", "\\xB2", "\\xB3", "\\xB4", "\\xB5", "\\xB6", "\\xB7", 
        "\\xB8", "\\xB9", "\\xBA", "\\xBB", "\\xBC", "\\xBD", "\\xBE", "\\xBF", 
        "\\xC0", "\\xC1", "\\xC2", "\\xC3", "\\xC4", "\\xC5", "\\xC6", "\\xC7", 
        "\\xC8", "\\xC9", "\\xCA", "\\xCB", "\\xCC", "\\xCD", "\\xCE", "\\xCF", 
        "\\xD0", "\\xD1", "\\xD2", "\\xD3", "\\xD4", "\\xD5", "\\xD6", "\\xD7", 
        "\\xD8", "\\xD9", "\\xDA", "\\xDB", "\\xDC", "\\xDD", "\\xDE", "\\xDF", 
        "\\xE0", "\\xE1", "\\xE2", "\\xE3", "\\xE4", "\\xE5", "\\xE6", "\\xE7", 
        "\\xE8", "\\xE9", "\\xEA", "\\xEB", "\\xEC", "\\xED", "\\xEE", "\\xEF", 
        "\\xF0", "\\xF1", "\\xF2", "\\xF3", "\\xF4", "\\xF5", "\\xF6", "\\xF7", 
        "\\xF8", "\\xF9", "\\xFA", "\\xFB", "\\xFC", "\\xFD", "\\xFE", "\\xFF"
    };
    return xlat[(unsigned char)ch];
}

static inline int hex_digit_val(char ch)
{
    static int val[256] =
    {
        -1, -1, -1, -1, -1, -1, -1, -1,
        -1, -1, -1, -1, -1, -1, -1, -1,
        -1, -1, -1, -1, -1, -1, -1, -1,
        -1, -1, -1, -1, -1, -1, -1, -1,
        -1, -1, -1, -1, -1, -1, -1, -1,
        -1, -1, -1, -1, -1, -1, -1, -1,
        0, 1, 2, 3, 4, 5, 6, 7, 
        8, 9, -1, -1, -1, -1, -1, -1,
        -1, 10, 11, 12, 13, 14, 15, -1,
        -1, -1, -1, -1, -1, -1, -1, -1,
        -1, -1, -1, -1, -1, -1, -1, -1,
        -1, -1, -1, -1, -1, -1, -1, -1,
        -1, 10, 11, 12, 13, 14, 15, -1,
        -1, -1, -1, -1, -1, -1, -1, -1,
        -1, -1, -1, -1, -1, -1, -1, -1,
        -1, -1, -1, -1, -1, -1, -1, -1,
        -1, -1, -1, -1, -1, -1, -1, -1,
        -1, -1, -1, -1, -1, -1, -1, -1,
        -1, -1, -1, -1, -1, -1, -1, -1,
        -1, -1, -1, -1, -1, -1, -1, -1,
        -1, -1, -1, -1, -1, -1, -1, -1,
        -1, -1, -1, -1, -1, -1, -1, -1,
        -1, -1, -1, -1, -1, -1, -1, -1,
        -1, -1, -1, -1, -1, -1, -1, -1,
        -1, -1, -1, -1, -1, -1, -1, -1,
        -1, -1, -1, -1, -1, -1, -1, -1,
        -1, -1, -1, -1, -1, -1, -1, -1,
        -1, -1, -1, -1, -1, -1, -1, -1,
        -1, -1, -1, -1, -1, -1, -1, -1,
        -1, -1, -1, -1, -1, -1, -1, -1,
        -1, -1, -1, -1, -1, -1, -1, -1,
        -1, -1, -1, -1, -1, -1, -1, -1
    };
    return val[(unsigned char)ch];
}

static inline bool cstr_unescape_char(const char *&cstr, char &ch)
{
    if (*cstr == '\\')
    {
    	++cstr;
    
        switch (*cstr)
        {
            case '"': ch = '"'; break;
            case 't': ch = '\t'; break;
            case 'n': ch = '\n'; break;
    	    case '\\': ch = '\\'; break;
    	    case 'r': ch = '\r'; break;
    	    case 'a': ch = '\a'; break;
    	    case 'v': ch = '\v'; break;
    	    case 'b': ch = '\b'; break;
    	    case '0': ch = '\0'; break;
            case 'x':
            {
                int vals[2];
                int i;
                for (i=0; i<2; ++i)
                {
                    if ((vals[i] = hex_digit_val(*++cstr)) == -1)
                        return false;
                }
                ch = (vals[0] << 4) | vals[1];
            }
            break;
            default: return false;
        }
    	
    	++cstr;
    	
    	return true;
    }
    else
    {
        ch = *cstr++;
        return true;
    }
}

WvString cstr_escape(const void *data, size_t size,
        const CStrExtraEscape extra_escapes[])
{
    if (!data) return WvString::null;

    const char *cdata = (const char *)data;

    WvString result;
    result.setsize(4*size + 3); // We could do better but it would slow us down
    char *cstr = result.edit();
    
    *cstr++ = '\"';
    while (size-- > 0)
    {
    	const char *esc = NULL;
        if (extra_escapes)
        {
            const CStrExtraEscape *extra = &extra_escapes[0];
            while (extra->ch && extra->esc)
            {
                if (*cdata == extra->ch)
                {
                    esc = extra->esc;
                    break;
                }
                
                ++extra;
            }
        }
        if (!esc) esc = cstr_escape_char(*cdata);
        ++cdata;
        while (*esc) *cstr++ = *esc++;
    }
    *cstr++ = '\"';
    *cstr = '\0';
    
    return result;
}

bool cstr_unescape(WvStringParm cstr, void *data, size_t max_size, size_t &size,
        const CStrExtraEscape extra_escapes[])
{
    const char *q = cstr;
    char *cdata = (char *)data;
    
    if (!q) goto misformatted;
    size = 0;
    
    for (;;)
    {
        while (isspace(*q)) q++;
        if (*q == '\0') break;

        if (*q++ != '\"') goto misformatted;
        while (*q && *q != '\"')
        {
            bool found = false;
            char unesc;
            if (extra_escapes)
            {
                const CStrExtraEscape *extra = &extra_escapes[0];
                while (extra->ch && extra->esc)
                {
                    size_t len = strlen(extra->esc);
                    if (strncmp(extra->esc, q, len) == 0)
                    {
                        unesc = extra->ch;
                        q += len;
                        found = true;
                        break;
                    }
                    
                    ++extra;
                }
            }
            if (!found && !cstr_unescape_char(q, unesc)) goto misformatted;
            if (size++ < max_size && cdata) *cdata++ = unesc;
        }
        if (*q++ != '\"') goto misformatted;
    }
    
    return size <= max_size;

misformatted:

    size = 0;
    return false;
}

WvString local_date(time_t when)
{
    WvString out;
    out.setsize(80);

    if (when < 0)
        when = time(NULL);

    struct tm *tmwhen = localtime(&when);
    strftime(out.edit(), 80, "%b %d %I:%M:%S %p", tmwhen);

    return out;
}

WvString intl_time(time_t when)
{
    WvString out;
    out.setsize(12);

    if (when < 0)
        when = time(NULL);

    struct tm *tmwhen = localtime(&when); 
    strftime(out.edit(), 12, "%H:%M:%S", tmwhen);

    return out;
}

WvString intl_date(time_t when)
{
    WvString out;
    out.setsize(16);

    if (when < 0)
        when = time(NULL);

    struct tm *tmwhen = localtime(&when); 
    strftime(out.edit(), 16, "%Y-%m-%d", tmwhen);

    return out;
}

WvString intl_datetime(time_t when)
{
    WvString out;
    out.setsize(24);

    if (when < 0)
        when = time(NULL);

    struct tm *tmwhen = localtime(&when); 
    strftime(out.edit(), 24, "%Y-%m-%d %H:%M:%S", tmwhen);

    return out;
}


/**
 * Return the number of seconds by which localtime (at the given timestamp)
 * is offset from GMT.  For example, in Eastern Standard Time, the offset
 * is (-5*60*60) = -18000.
 */
time_t intl_gmtoff(time_t t)
{
    struct tm *l = localtime(&t);
    l->tm_isdst = 0;
    time_t local = mktime(l);
    time_t gmt   = mktime(gmtime(&t));
    
    return local-gmt;
}


// Removes any trailing punctuation ('.', '?', or '!') from the line
WvString depunctuate(WvStringParm line)
{
    WvString ret = line;
    char * edit = ret.edit();
    int last = ret.len() - 1;
    if (edit[last] == '.' || edit[last] == '?' || edit[last] == '!')
        edit[last] = '\0';

    return ret;
}


WvString ptr2str(void* ptr)
{
    char buf[(sizeof(ptr) * 2) + 3];
    int rv;

    rv = snprintf(buf, sizeof(buf), "%p", ptr);

    assert(rv != -1);

    return buf;
}