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
|
// Copyright (C) 1999-2003 Paul O. Lewis and Mark T. Holder
//
// This file is part of NCL (Nexus Class Library) version 2.0.
//
// NCL is free software; you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation; either version 2 of the License, or
// (at your option) any later version.
//
// NCL is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with NCL; if not, write to the Free Software Foundation, Inc.,
// 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
//
#include <climits>
#include <cstdarg>
#include <cmath>
#include <cfloat>
#include <cstdlib>
#include "ncl/nxsdefs.h"
#include "ncl/nxsstring.h"
using namespace std;
// splits a string by whitespace and push the graphical strings to the back of r.
// Leading and trailing whitespace is lost ( there will be no empty strings added
// to the list.
void NxsString::split(const std::string &s, std::list<std::string> * r)
{
NCL_ASSERT(r);
if (r == NULL)
return;
std::string current;
for (std::string::const_iterator sIt = s.begin(); sIt != s.end(); ++sIt)
{
const char c = *sIt;
if (isgraph(c))
current.append(1, c);
else if (!current.empty())
{
r->push_back(current);
current.clear();
}
}
if (!current.empty())
r->push_back(current);
}
int NxsString::index_in_vector(const std::string &t, const std::vector<std::string> &v)
{
std::vector<std::string>::const_iterator vIt = v.begin();
int i = 0;
for (; vIt != v.end(); ++vIt, ++i)
{
if (t == *vIt)
return i;
}
return -1;
}
int NxsString::index_in_array(const std::string &t, const char * * v, const unsigned n)
{
if (n > 0 && v)
{
for (int i = 0; i < (int) n; ++i)
{
if (v[i] && t == v[i])
return i;
}
}
return -1;
}
/// Strips whitespace from the front and end of a string
std::string NxsString::strip_surrounding_whitespace(const std::string & s)
{
std::string l = strip_leading_whitespace(s);
return strip_trailing_whitespace(l);
}
std::string NxsString::strip_leading_whitespace(const std::string & s)
{
std::string t;
t.reserve(s.length());
bool graphFound = false;
for (std::string::const_iterator sIt = s.begin(); sIt != s.end(); ++sIt)
{
if (graphFound || isgraph(*sIt))
{
t.push_back(*sIt);
graphFound = true;
}
}
return t;
}
std::string NxsString::strip_trailing_whitespace(const std::string & s)
{
std::string t;
t.reserve(s.length());
bool graphFound = false;
for (std::string::const_reverse_iterator sIt = s.rbegin(); sIt != s.rend(); ++sIt)
{
if (graphFound || isgraph(*sIt))
{
t.push_back(*sIt);
graphFound = true;
}
}
return std::string(t.rbegin(), t.rend());
}
/// Strips all whitespace
std::string NxsString::strip_whitespace(const std::string & s)
{
std::string t;
t.reserve(s.length());
for (std::string::const_iterator sIt = s.begin(); sIt != s.end(); ++sIt)
{
if (isgraph(*sIt))
t.push_back(*sIt);
}
return t;
}
/*!
Returns true if `o` points to a string that represents a long (and `o` has no other characters than the long).
if n is not NULL, then when the function returns true, *n will be the long.
*/
bool NxsString::to_long(const char *o, long *n)
{
if (o == NULL)
return false;
if (strchr("0123456789-+",*o) != NULL) // strtol skips leading whitespace, but we don't do that in
{
char * pEnd;
const long i = strtol (o, &pEnd, 10);
if (*pEnd != '\0')
return false;
if (n != NULL)
*n = i;
return true;
}
return false;
}
/*!
Returns true if `o` points to a string that represents a double (and `o` has no other characters than the long).
if n is not NULL, then when the function returns true, *n will be the long.
*/
bool NxsString::to_double(const char *o, double *n)
{
if (o == NULL)
return false;
if (strchr("0123456789-.+",*o) != NULL ) // strtol skips leading whitespace, but we don't do that in
{
char * pEnd;
const double i = strtod (o, &pEnd);
if (*pEnd != '\0')
return false;
if (n != NULL)
*n = i;
return true;
}
return false;
}
bool NxsString::case_insensitive_equals(const char *o, const char * t)
{
if (o == 0L || t == 0L)
return false;
for (; toupper(*o) == toupper(*t); ++o, ++t)
{
if (*o == '\0')
return true;
}
return false;
}
/*!
Capitalizes every character in s.
*/
std::string & NxsString::to_upper(std::string &s)
{
for (std::string::iterator sIt = s.begin(); sIt != s.end(); sIt++)
*sIt = (char) toupper(*sIt);
return s;
}
/*!
Capitalizes every character in s.
*/
std::string & NxsString::to_lower(std::string &s)
{
for (std::string::iterator sIt = s.begin(); sIt != s.end(); sIt++)
*sIt = (char) tolower(*sIt);
return s;
}
/*!
Appends a string representation of the supplied double to the stored string and returns a reference to itself.
*/
NxsString &NxsString::operator+=(
const double d) /* the double value to append */
{
char tmp[81];
// Create a C-string representing the supplied double value.
// The # causes a decimal point to always be output.
//
std::sprintf(tmp, "%#3.6f", d);
unsigned tmplen = (unsigned)strlen(tmp);
// If the C-string has a lot of trailing zeros, lop them off
//
for (;;)
{
if (tmplen < 3 || tmp[tmplen-1] != '0' || tmp[tmplen-2] == '.')
break;
tmp[tmplen-1] = '\0';
tmplen--;
}
append(tmp);
return *this;
}
/*!
Adds `n' copies of the character `c' to the end of the stored string and returns a reference to itself.
*/
NxsString &NxsString::AddTail(
char c, /* the character to use in the appended tail */
unsigned n) /* the number of times `c' is to be appended */
{
char s[2];
s[0] = c;
s[1] = '\0';
for (unsigned i = 0; i < n; i++)
append(s);
return *this;
}
#if defined(_MSC_VER)
# pragma warning(disable:4786)
# pragma warning(disable:4291)
# if _MSC_VER >= 1500
# include <cstdio>
# if !defined(vsnprintf)
# define vsnprintf _vsnprintf_s
# endif
# define std::sprintf std::sprintf_s
# else
# define vsnprintf _vsnprintf
# endif
#endif
/*!
Appends a printf-style formatted string onto the end of this NxsString and returns the number of characters added to the
string. For example, the following code would result in the string s being set to "ts-tv rate ratio = 4.56789":
>
double kappa = 4.56789;
NxsString s;
s.PrintF("ts-tv rate ratio = %.5f", kappa);
>
*/
int NxsString::PrintF(
const char *formatStr, /* the printf-style format string */
...) /* other arguments referred to by the format string */
{
const int kInitialBufferSize = 256;
char buf[kInitialBufferSize];
// Create a pointer to the list of optional arguments
//
va_list argList;
// Set arg_ptr to the first optional argument in argList. The
// second argument (formatStr) is the last non-optional argument.
//
va_start(argList, formatStr);
// If vsnprintf returns -1, means kInitialBufferSize was not large enough.
// In this case, only kInitialBufferSize bytes are written.
//
int nAdded = vsnprintf(buf, kInitialBufferSize, formatStr, argList);
// Reset the argument list pointer
//
va_end(argList);
// Currently, if formatted string is too long to fit into the supplied buf,
// just adding a terminating '\0' and returning the truncated string
// Need to think of a better solution
//
if (nAdded < 0 || nAdded >= kInitialBufferSize)
buf[kInitialBufferSize - 1] = '\0';
*this << buf;
return nAdded;
}
/*!
Returns true if the string is a abbreviation (or complete copy) of the argument `s'.
*/
bool NxsString::IsStdAbbreviation(
const NxsString &s, /* the string for which the stored string is potentially an abbreviation */
bool respectCase) /* if true, comparison will be case-sensitive */
const
{
if (empty())
return false;
// s is the unabbreviated comparison string
//
const unsigned slen = static_cast<unsigned const>(s.size());
// t is the stored string
//
const unsigned tlen = static_cast<unsigned const>(size());
// t cannot be an abbreviation of s if it is longer than s
//
if (tlen > slen)
return false;
// Examine each character in t and return false (meaning "not an abbreviation")
// if at any point the corresponding character in s is different
//
for (unsigned k = 0; k < tlen; k++)
{
if (respectCase)
{
if ((*this)[k] != s[k])
return false;
}
else if (toupper((*this)[k]) != toupper(s[k]))
return false;
}
return true;
}
/*!
Returns true if the stored string is a case-insensitive abbreviation (or complete copy) of `s' and the stored string
has all of the characters that are in the initial capitalized portion of `s'. For example if `s' is "KAPpa" then
"kappa", "kapp", or "kap" (with any capitalization pattern) will return true and all other strings will return false.
Always returns false if the stored string has length of zero.
*/
bool NxsString::IsCapAbbreviation(
const NxsString &s) /* the string for which the stored string is potentially an abbreviation */
const
{
if (empty())
return false;
// s is the unabbreviated comparison string
//
const unsigned slen = static_cast<unsigned>(s.size());
// t is the stored string
//
const unsigned tlen = static_cast<unsigned>(size());
// If the stored string is longer than s then it cannot be an abbreviation of s
//
if (tlen > slen)
return false;
unsigned k = 0;
for (; k < slen; k++)
{
if (isupper(s[k]))
{
// If still in the uppercase portion of s and we've run out of characters
// in t, then t is not a valid abbrevation of s
//
if (k >= tlen)
return false;
// If kth character in t is not equal to kth character in s, then
// t is not an abbrevation of s
//
char tokenChar = (char)toupper((*this)[k]);
if (tokenChar != s[k])
return false;
}
else if (!isalpha(s[k]))
{
// Get here if we are no longer in the upper case portion of s and
// s[k] is not an alphabetic character. This section is necessary because
// we are dealing with a section of s that is not alphabetical and thus
// we cannot tell whether this should be part of the abbrevation or not
// (i.e. we cannot tell if it is capitalized or not). In this case, we
// pretend that we are still in the upper case portion of s and return
// false if we have run out of characters in t (meaning that the abbreviation
// was too short) or we find a mismatch.
//
if (k >= tlen)
return false;
if ((*this)[k] != s[k])
return false;
}
else
{
// Get here if we are no longer in the upper case portion of s and
// s[k] is an alphabetic character. Just break because we have determined
// that t is in fact a valid abbreviation of s.
//
break;
}
}
// Check the lower case portion of s and any corresponding characters in t for mismatches
// Even though the abbreviation is valid up to this point, it will become invalid if
// any mismatches are found beyond the upper case portion of s
//
for (; k < tlen; k++)
{
const char tokenChar = (char)toupper((*this)[k]);
const char otherChar = (char)toupper(s[k]);
if (tokenChar != otherChar)
return false;
}
return true;
}
/*!
Right-justifies `x' in a field `w' characters wide, using blank spaces to fill in unused portions on the left-hand
side of the field. Specify true for `clear_first' to first empty the string. Assumes `w' is large enough to
accommodate the string representation of `x'.
*/
NxsString &NxsString::RightJustifyLong(
long x, /* long value to right justify */
unsigned int w, /* width of field */
bool clear_first) /* if true, initialize string first to empty string */
{
bool x_negative = (x < 0L ? true : false);
unsigned long xabs = (x_negative ? (-x) : x);
unsigned num_spaces = w;
// If w = 10 and x = 123, we need 7 blank spaces before x
// log10(123) is 2.09, indicating that x is at least 10^2 = 100 but not
// 10^3 = 1000, thus x requires at least 3 characters to display
//
unsigned x_width = (x == 0 ? 1 :1 + (int)log10((double)xabs));
if (x_negative)
x_width++; // for the minus sign
NCL_ASSERT(x_width <= num_spaces);
num_spaces -= x_width;
if (clear_first)
erase();
for (unsigned k = 0; k < num_spaces; k++)
*this += ' ';
if (x_negative)
*this += '-';
*this += xabs;
return *this;
}
/*!
Right-justifies `x' in a field `w' characters wide with precision `p', using blank spaces to fill in unused
portions on the left-hand side of the field. Specify true for `clear_first' to first empty the string. Assumes that
the specified width is enough to accommodate the string representation of `x'.
*/
NxsString &NxsString::RightJustifyDbl(
double x, /* double value to right justify */
unsigned w, /* width of field */
unsigned p, /* precision to use when displaying `x' */
bool clear_first) /* if true, initialize stored string first to the empty string */
{
if (clear_first)
erase();
char fmtstr[81];
std::sprintf(fmtstr, "%%.%df", p);
NxsString tmp;
tmp.PrintF(fmtstr, x);
NCL_ASSERT(w >= tmp.length());
unsigned num_spaces = w - (unsigned)tmp.length();
for (unsigned k = 0; k < num_spaces; k++)
*this += ' ';
*this += tmp;
return *this;
}
/*!
Right-justifies `s' in a field `w' characters wide, using blank spaces to fill in unused portions on the left-hand
side of the field. Specify true for `clear_first' to first empty the string. Assumes that the specified width is
enough to accommodate `s'.
*/
NxsString &NxsString::RightJustifyString(
const NxsString &s, /* string to right justify */
unsigned w, /* width of field */
bool clear_first) /* if true, initialize string first to the empty string */
{
if (clear_first)
erase();
NCL_ASSERT(w >= s.length());
unsigned num_spaces = w - (unsigned)s.length();
for (unsigned k = 0; k < num_spaces; k++)
*this += ' ';
*this += s;
return *this;
}
void NxsString::blanks_to_underscores(std::string &s)
{
for (std::string::iterator sIt = s.begin(); sIt != s.end(); sIt++)
{
if (*sIt == ' ')
*sIt = '_';
}
}
void NxsString::add_nxs_quotes(std::string &s)
{
std::string withQuotes;
unsigned len = (unsigned)s.length();
withQuotes.reserve(len + 4);
withQuotes.append(1,'\'');
for (std::string::const_iterator sIt = s.begin(); sIt != s.end(); sIt++)
{
withQuotes.append(1, *sIt);
if (*sIt == '\'')
withQuotes.append(1,'\'');
}
withQuotes.append(1,'\'');
s.swap(withQuotes);
}
NxsString::NxsQuotingRequirements NxsString::determine_quoting_requirements(const std::string & s)
{
NxsQuotingRequirements nrq = kNoQuotesNeededForNexus;
for (std::string::const_iterator sIt = s.begin(); sIt != s.end(); ++sIt)
{
if (!isgraph(*sIt))
{
if (*sIt != ' ')
return kSingleQuotesNeededForNexus;
nrq = kUnderscoresSufficeForNexus;
}
else if (strchr("(){}\"-]/\\,;:=*`+<>", *sIt) != NULL)
{
// Get here if c is any NEXUS punctuation mark except left square bracket ([) or apostrophe (').
// [ and ' never get returned as punctuation by NxsToken,
// so we should never encounter them here.
//
return (s.length() > 1 ? kSingleQuotesNeededForNexus : kNoQuotesNeededForNexus);
}
else if (strchr("\'[_", *sIt) != NULL)
{
// Get here if c is either an apostrophe or left square bracket. Quotes are needed if one of these
// characters is all there is to this string
//
return kSingleQuotesNeededForNexus;
}
}
return nrq;
}
/*!
Returns true if the string needs to be surrounded by single-quotes to make it a single nexus token.
*/
bool NxsString::QuotesNeeded() const
{
for (NxsString::const_iterator sIt = begin(); sIt != end(); sIt++)
{
char c = (*sIt);
if (!isgraph(c))
return true;
else if (strchr("(){}\"-]/\\,;:=*`+<>", c) != NULL && length() > 1)
return true;
else if (c == '\'' || c == '_' || c == '[')
return true;
}
return false;
}
/*!
Converts any blank spaces found in the stored string to the underscore character.
*/
NxsString &NxsString::BlanksToUnderscores()
{
unsigned len = (unsigned)length();
for (unsigned k = 0; k < len; k++)
{
char &ch = at(k);
if (ch == ' ')
ch = '_';
}
return *this;
}
/*!
Converts any underscore characters found in the stored string to blank spaces.
*/
NxsString &NxsString::UnderscoresToBlanks()
{
unsigned len = (unsigned)length();
for (unsigned k = 0; k < len; k++)
{
char &ch = at(k);
if (ch == '_')
ch = ' ';
}
return *this;
}
/*!
Shortens stored string to `n' - 3 characters, making the last three characters "...". If string is already less than
`n' characters in length, this function has no effect. This is useful when it is desirable to show some of the
contents of a string, even when the string will not fit in its entirety into the space available for displaying it.
Assumes that `n' is at least 4.
*/
NxsString &NxsString::ShortenTo(
unsigned n) /* maximum number of characters available for displaying the string */
{
NCL_ASSERT(n > 3);
if (length() <= static_cast<unsigned>(n))
return *this;
NxsString s;
for (NxsString::iterator sIt = begin(); sIt != end(); sIt++)
{
s += (*sIt);
if (s.length() >= n - 3)
break;
}
s += "...";
*this = s;
return *this;
}
/*!
Returns true if the stored string can be interpreted as a double value, and returns false otherwise.
*/
bool NxsString::IsADouble() const
{
const char *str = c_str();
unsigned i = 0;
bool hadDecimalPt = false;
bool hadExp = false;
bool hadDigit = false;
bool hadDigitInExp = false;
// First char can be -
//
if (str[i]=='-' || str[i] == '+')
i++;
while (str[i])
{
if (isdigit(str[i]))
{
// Digits are always OK
//
if (hadExp)
hadDigitInExp = true;
else
hadDigit = true;
}
else if (str[i] == '.')
{
// One decimal point is allowed and it must be before the exponent
//
if (hadExp || hadDecimalPt)
return false;
hadDecimalPt = true;
}
else if (str[i] == 'e' || str[i] == 'E')
{
// One e is allowed, but it must be after at least one digit
//
if (hadExp || !hadDigit)
return false;
hadExp = true;
}
else if (str[i] == '-')
{
// Another - is allowed if it is preceded by e
//
if (!hadExp || (str[i-1] != 'e' && str[i-1] != 'E') )
return false;
}
else
return false;
i++;
}
if (hadExp)
{
if (hadDigitInExp)
return true;
return false;
}
if (hadDigit)
return true;
return false;
}
/*!
Returns true if stored string can be interpreted as a long integer.
*/
bool NxsString::IsALong() const
{
const char *str = c_str();
unsigned i = 0;
// First char can be -
//
if (str[i]=='-')
i++;
if (!isdigit(str[i]))
return false;
while (str[i])
{
if (!isdigit(str[i]))
return false;
i++;
}
return true;
}
/*!
Returns true if the stored string is a non-case-sensitive copy of the argument `s'. Note: will return true if both the
stored string and `s' are empty strings.
*/
bool NxsString::EqualsCaseInsensitive(
const NxsString &s) /* the comparison string */
const
{
unsigned k;
unsigned slen = (unsigned)s.size();
unsigned tlen = (unsigned)size();
if (slen != tlen)
return false;
for (k = 0; k < tlen; k++)
{
if ((char)toupper((*this)[k]) != (char)toupper(s[k]))
return false;
}
return true;
}
/*!
Creates a string representation of the hexadecimal version of the long integer `p'. For example, if `p' equals 123,
and if 2 was specified for `nFours', the resulting string would be "7B". If 4 was specified for `nFours', then the
resulting string would be "007B".
*/
NxsString NxsString::ToHex(
long p, /* the value to display in hexadecimal */
unsigned nFours) /* the number of hexadecimal digits to display */
{
NxsString s;
char decod[] = "0123456789ABCDEF";
for (int i = nFours - 1; i >= 0 ; i--)
{
unsigned long k = (p >> (4*i));
unsigned long masked = (k & 0x000f);
s += decod[masked];
}
return s;
}
/*!
Checks to see if the stored string begins with upper case letters and, if so, returns all of the contiguous capitalized
prefix. If the stored string begins with lower case letters, an empty string is returned.
*/
NxsString NxsString::UpperCasePrefix() const
{
NxsString x;
unsigned i = 0;
while (i < size() && isupper((*this)[i]))
x += (*this)[i++];
return x;
}
/*!
Converts the stored string to an unsigned int using the standard C function strtol, throwing NxsX_NotANumber if the
conversion fails. Returns UINT_MAX if the number is too large to fit in an unsigned (or was a negative number).
*/
unsigned NxsString::ConvertToUnsigned() const
{
long l = ConvertToLong();
if (l < 0 || l >= (long) INT_MAX)
return UINT_MAX;
return static_cast<unsigned> (l);
}
/*!
Converts the stored string to an int using the standard C function strtol, throwing NxsX_NotANumber if the conversion
fails. Returns INT_MAX if the number is too large to fit in an int or -INT_MAX if it is too small.
*/
int NxsString::ConvertToInt() const
{
long l = ConvertToLong();
if (l == LONG_MAX || l > INT_MAX)
return INT_MAX;
if (l == -LONG_MAX || l <-INT_MAX)
return -INT_MAX;
return static_cast<int> (l);
}
/*!
Converts the stored string to a long using the standard C function strtol, throwing NxsX_NotANumber if the conversion
fails.
*/
long NxsString::ConvertToLong() const
{
if (length() == 0 || !(isdigit(at(0)) || at(0) == '-'))
throw NxsX_NotANumber();
const char *b = c_str();
char *endP;
long l = strtol(b, &endP, 10);
#if defined(_MSC_VER)
if ((l == 0 && (endP - b) == 0))
throw NxsX_NotANumber();
#else
if (l == 0 && endP == b)
throw NxsX_NotANumber();
#endif
return l;
}
/*!
Converts the stored string to a double using the standard C function strtod, throwing NxsX_NotANumber if the conversion
fails. Returns DBL_MAX or -DBL_MAX if the number is out of bounds.
*/
double NxsString::ConvertToDouble() const
{
if (length() == 0)
throw NxsX_NotANumber();
char ch = at(0);
if (isdigit(ch) || ch == '-' || ch == '.'|| toupper(ch) == 'E')
{
const char *b = c_str();
char *endP;
double d = strtod(b, &endP);
#if defined(_MSC_VER)
if ((d == 0.0 && (endP - b) == 0))
throw NxsX_NotANumber();
#else
if (d == 0.0 && endP == b)
throw NxsX_NotANumber();
#endif
if (d == HUGE_VAL)
return DBL_MAX;
if (d == -HUGE_VAL)
return -DBL_MAX;
return d;
}
throw NxsX_NotANumber();
#if defined (DEMANDS_UNREACHABLE_RETURN)
return DBL_MAX;
#endif
}
/*!
Transforms the vector of NxsString objects by making them all lower case and then capitalizing the first portion of
them so that the capitalized portion is enough to uniquely specify each. Returns true if the strings are long enough
to uniquely specify each. Horrendously bad algorithm, but shouldn't be called often.
*/
bool SetToShortestAbbreviation(
NxsStringVector &strVec, /* vector of NxsString objects */
bool allowTooShort) /* */
{
NxsStringVector upperCasePortion;
unsigned i;
for (i = 0; i < strVec.size(); i++)
{
// Change the next string to lower case
//
strVec[i].ToLower();
unsigned prefLen = 0;
NxsString pref;
if (prefLen >= strVec[i].size())
return false;
pref += (char) toupper(strVec[i][prefLen++]);
bool moreChars = true;
// Keep adding letters from the current string until pref is unique.
// Then add this pref to upperCasePortion (vector of previous prefs)
//
for (;moreChars;)
{
unsigned prevInd = 0;
for (; prevInd < upperCasePortion.size(); prevInd++)
{
if (pref == upperCasePortion[prevInd])
{
// Conflict - both abbreviations need to grow
//
if (prefLen >= strVec[i].size())
{
if (allowTooShort)
{
if (prefLen < strVec[prevInd].size())
upperCasePortion[prevInd] += (char) toupper(strVec[prevInd][prefLen]);
moreChars = false;
break;
}
else
return false;
}
pref += (char) toupper(strVec[i][prefLen]);
if (prefLen >= strVec[prevInd].size())
{
if (allowTooShort)
{
prevInd = 0;
prefLen++;
break;
}
else
return false;
}
upperCasePortion[prevInd] += (char) toupper(strVec[prevInd][prefLen++]);
prevInd = 0;
break;
}
else
{
unsigned j;
for (j = 0; j < prefLen; j++)
{
if (pref[j] != upperCasePortion[prevInd][j])
break;
}
if (j == prefLen)
{
// pref agrees with the first part of another abbreviation, lengthen it.
//
if (prefLen >= strVec[i].size())
{
if (allowTooShort)
{
moreChars = false;
break;
}
else
return false;
}
pref += (char) toupper(strVec[i][prefLen++]);
break;
}
}
}
if (prevInd == upperCasePortion.size() || !moreChars)
{
// Made it all the way through with no problems, add this
// prefix as command i's upper case portion
//
upperCasePortion.push_back(pref);
break;
}
}
}
for (i = 0; i < strVec.size(); i++)
{
for (unsigned j = 0; j < upperCasePortion[i].size(); j++)
strVec[i][j] = upperCasePortion[i][j];
}
return true;
}
/*!
Returns a vector of NxsString objects that match the entire `testStr'.
*/
NxsStringVector GetVecOfPossibleAbbrevMatches(
const NxsString &testStr, /* string to match */
const NxsStringVector &possMatches) /* vector of possible matches */
{
NxsStringVector matches;
for (unsigned i = 0; i < possMatches.size(); i++)
{
if (testStr.Abbreviates(possMatches[i]))
matches.push_back(possMatches[i]);
}
return matches;
}
/*!
Written to make it easy to initialize a vector of strings. Similar to the perl split function. Converts a string like
this -- "A|bro|ken strin|g" -- to a vector of strings with four elements: "A", "bro", "ken string", and "g".
*/
NxsStringVector BreakPipeSeparatedList(
const NxsString &strList) /* the string submitted for splitting */
{
NxsString::const_iterator p = strList.begin();
NxsString ss;
NxsStringVector retVec;
for (;;)
{
bool done = (p == strList.end());
if (done || (*p == '|'))
{
retVec.push_back(ss);
ss.clear();
if (done)
break;
p++;
}
ss += *p;
p++;
}
return retVec;
}
|