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
|
/*
* 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>
#ifndef _WIN32
#include <errno.h>
#include <netdb.h>
#include <unistd.h>
#else
#undef errno
#define errno GetLastError()
#define strcasecmp _stricmp
#include <winsock2.h>
#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+boffset, blen-boffset);
cptr[alen+1+blen-boffset] = 0;
return s;
}
// Replaces whitespace characters with nonbreaking spaces.
char *non_breaking(char * string)
{
if (string == NULL)
return (NULL);
WvDynBuf buf;
while (*string)
{
if (isspace(*string))
buf.putstr(" ");
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);
}
#ifndef _WIN32
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;
}
#endif
// 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++)
*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 = web_unescape("I+am+text.%0D%0A");
WvString web_unescape(const char *str, bool no_space)
{
const char *iptr;
char *optr;
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 it's magic companion: url_encode
WvString url_encode(WvStringParm stuff)
{
unsigned int i;
WvDynBuf retval;
for (i=0; i < stuff.len(); i++)
{
if (isalnum(stuff[i]) || strchr("/_.-~", stuff[i]))
{
retval.put(&stuff[i], 1);
}
else
{
char buf[3];
sprintf(buf, "%%%02x", stuff[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;
}
}
// 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.
WvString _sizetoa(unsigned long long digits, int size = 0)
{
// 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.
static char* size_name[] = { "B", "KB", "MB", "GB", "TB",
"PB", "EB", "ZB", "YB", NULL };
// Let's loop, until we can get our "units" to less-than 1000.
// But we also have to keep enough significant figures for two
// decimal places, in order to round properly. Therefore, we
// should stop looping at 1000000.
while (digits >= 1000000) {
// We'll make an exception for 1000 TB and higher, since we
// have no larger unit. Well, I guess we can use exabytes,
// but that's a little futher in the future.
if (size_name[size + 1] == NULL)
break;
// OK. Let's go up another unit.
digits /= 1000;
size += 1;
}
// Now we can perform our rounding calculation. We use the
// algorithm derived from grade school. If it is a 5 or higher,
// round up.
unsigned long long units = digits / 1000;
unsigned tenths = digits % 1000 / 100;
unsigned hundredths = digits % 100 / 10;
if (hundredths >= 5)
tenths += 1;
if (tenths >= 10) {
tenths = 0;
units += 1;
}
if (units >= 1000 && (size_name[size + 1] != NULL)) {
units /= 1000;
tenths = 0;
size += 1;
}
// Now we can return our result.
return WvString("%s.%s %s", units, tenths, size_name[size]);
}
WvString sizetoa(unsigned long long blocks, unsigned int blocksize)
{
unsigned long long bytes = blocks * blocksize;
// Test if we are dealing in just bytes. Plus, we should ensure
// that we didn't overflow. (Although that is highly unlikely,
// with a 64-bit integer.)
if ((bytes < 1000) && !(blocks * blocksize / 1000))
return WvString("%s bytes", blocks * blocksize);
return _sizetoa(bytes, 1);
}
WvString sizektoa(unsigned int kbytes)
{
// Test if we are dealing in just kilobytes.
if (kbytes < 1000)
return WvString("%s KB", kbytes);
return _sizetoa(kbytes, 2);
}
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 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)
{
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)
{
WvString ret = line;
ret.unique();
char *loc = strstr(ret, 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;
}
|