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 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906
|
/*--------------------------------------------------------------------*//*:Ignore this sentence.
Copyright (C) 1999, 2001 SIL International. All rights reserved.
Distributable under the terms of either the Common Public License or the
GNU Lesser General Public License, as specified in the LICENSING.txt file.
File: UtilString.h
Responsibility: LarryW
Last reviewed: 27Sep99
Description:
This file with its matching .cpp file provides string related utilities. There are two
types of strings.
The first type is based on the class StrBase<> and allocates space for its characters on the
heap, so the actual StrAnsi and StrUni objects are small. An assignment of one of these
strings to another simply results in the two pointing to the same block of memory. If an
allocation fails, an exception is thrown.
The three instantiations of StrBase<> are:
StrUni, which contains unicode (16 bit) characters.
StrAnsi, which contains ansi (8 bit) characters.
StrApp, which contains achar characters. achar is typedefed in Common.h to be either
utf16 (#ifdef UNICODE) or schar (for all other cases). schar is typedefed as char.
The second type of string is based on the class StrBaseBuf<> and contains a maximum number
of characters stored as part of the object. An assignment of one of these strings to
another copies the characters from one to the other. If an edit command results in an
overflow of characters, this type of string holds those characters that fit, and is
put into an overflow state. The overflow state propagates in future edit commands on the
string. Reassignment of characters that fit into the string clears the overflow state.
The template instantiations of StrBaseBuf<>, where "Uni" refers to unicode characters,
"Ansi" refers to ansi characters, and "App" refers to achar characters, include the
following:
Name Size (chars) Purpose
-------------------------------- ------------ -----------------------------------
StrUniBufSmall, StrAnsiBufSmall,
StrAppBufSmall 32 small strings, e.g., for an integer
StrUniBuf, StrAnsiBuf, StrAppBuf 260 ~1/4 K string, e.g., for a message
StrUniBufPath, StrAnsiBufPath,
StrAppBufPath MAX_PATH for path names
StrUniBufBig, StrAnsiBufBig,
StrAppBufBig 1024 1 K for larger strings
StrUniBufHuge, StrAnsiBufHuge,
StrAppBufHuge 16384 10 K for really large strings
Template instantiations for StrApp also exists in the five given sizes above.
MAX_PATH is defined in Windef.h to be 260 characters, and is the maximum length for a path.
StrBaseBufCore<> is the baseclass of StrBaseBuf<> that implements the core functionality of
StrBaseBuf<> that is not dependent on size.
Note: Possible string utilities functions for the future, if needed, include:
TrimLeft(cch), TrimRight(cch),
ReplaceBy(chFrom, chTo),
CompareCI in its variety of forms.
----------------------------------------------------------------------------------------------*/
#ifdef _MSC_VER
#pragma once
#endif
#ifndef UTILSTRING_H
#define UTILSTRING_H 1
/*:End Ignore*/
#include <cstdlib>
#include <cctype>
#include <cstring>
#include <algorithm>
#include "GrCommon.h"
#include "Throwable.h"
//#include "common.h"
//#include "debug.h"
namespace gr
{
//:Associate with TextFormatter<>.
const int kradMax = 36; // For converting from numeric to text with any allowable radix.
extern const char g_rgchDigits[kradMax];
//:>********************************************************************************************
//:> General text manipulation functions.
//:>********************************************************************************************
/*-----------------------------------------------------------------------------------*//*:Ignore
Char Type Based Type Defns. The following template class is so we can define schar and
utf16 to be opposite each other. XChar in templates below is defined to mean one type;
YChar is defined to mean the other type. This also applies to other declarations that are
specific to a character type.
-------------------------------------------------------------------------------*//*:End Ignore*/
template<typename XChar> class CharDefns;
/*----------------------------------------------------------------------------------------------
The template class CharDefns<utf16> is for wide (16 bit) characters. It is used by
StrBase<utf16>, StrBaseBufCore<>, and text manipulation functions to define schar and utf16
to be opposite each other.
When CharDefns<utf16> is used in template functions, XChar is defined to mean utf16;
YChar is defined to mean schar. This also applies to other declarations that are specific
to a character type. CharDefns<utf16> also defines OtherChar to mean schar.
----------------------------------------------------------------------------------------------*/
template<> class CharDefns<utf16>
{
public:
typedef schar OtherChar;
typedef void (*PfnWriteChars)(void * pv, const utf16 * prgch, int cch);
};
typedef CharDefns<utf16>::PfnWriteChars PfnWriteCharsW;
/*----------------------------------------------------------------------------------------------
The template class CharDefns<schar> is for ansi (8 bit) characters. It is used by
StrBase<schar>, StrBaseBufCore<>, and text manipulation functions to define schar and utf16
to be opposite each other.
When CharDefns<schar> is used in template functions, XChar is defined to mean schar;
YChar is defined to mean utf16. This also applies to other declarations that are specific
to a character type. CharDefns<schar> also defines OtherChar to mean utf16.
----------------------------------------------------------------------------------------------*/
template<> class CharDefns<schar>
{
public:
typedef utf16 OtherChar;
typedef void (*PfnWriteChars)(void * pv, const schar * prgch, int cch);
};
typedef CharDefns<schar>::PfnWriteChars PfnWriteCharsA;
#ifdef GR_FW
//:>********************************************************************************************
//:> Text manipulation functions for changing case.
//:>********************************************************************************************
//:Associate with "Generic Text Manipulation Functions".
/*-----------------------------------------------------------------------------------*//*:Ignore
Ansi case mapping functions. These functions convert single-byte characters to lower or
upper case as indicated.
Note: Do not do pointer arithmetic in the argument to tolower and toupper. The tolower and
toupper macros evaluate the input argument twice. Therefore the compiler performs any
pointer arithmetic specified in a macro argument twice. The following code is correct. If
the code was implemented as "toupper(*prgch++)" instead, you would produce incorrect
results, such as corrupted strings or a GP fault.
tolower converts a character to lowercase, if it isn't already lowercase, and returns the
converted character. toupper converts a character to uppercase, if it isn't already
uppercase, and returns the converted character.
The exact behavior of ToUpper and ToLower depends on the LC_TYPE setting of the current
Locale (see setlocale). By default, since the program starts up with setlocale(LC_ALL, "C"),
only the standard 7-bit ASCII cased characters are converted (a-z or A-Z).
If you use a different locale, you must make sure that the character passed as a parameter
is indeed valid for the code page of that locale.
-------------------------------------------------------------------------------*//*:End Ignore*/
/*----------------------------------------------------------------------------------------------
This ansi case mapping function converts cch single-byte characters in prgch to upper case.
The exact behavior of ToUpper depends on the LC_TYPE setting of the current Locale
(see setlocale in the MSDN Library). By default, since the program starts up with
setlocale(LC_ALL, "C"), only the standard 7-bit ASCII cased characters are converted
(a-z or A-Z). If you use a different locale, you must make sure that the character passed
as a parameter is indeed valid for the code page of that locale.
----------------------------------------------------------------------------------------------*/
inline void ToUpper(schar * prgch, int cch)
{
AssertArray(prgch, cch);
for ( ; --cch >= 0; prgch++)
*prgch = (schar)toupper(*prgch);
}
/*----------------------------------------------------------------------------------------------
This ansi case mapping function converts the single-byte character ch to upper case.
The exact behavior of ToUpper depends on the LC_TYPE setting of the current Locale
(see setlocale in the MSDN Library). By default, since the program starts up with
setlocale(LC_ALL, "C"), only the standard 7-bit ASCII cased characters are converted
(a-z or A-Z). If you use a different locale, you must make sure that the character passed
as a parameter is indeed valid for the code page of that locale.
----------------------------------------------------------------------------------------------*/
inline schar ToUpper(schar ch)
{
return (schar)toupper(ch);
}
/*----------------------------------------------------------------------------------------------
This ansi case mapping function converts cch single-byte characters in prgch to lower case.
The exact behavior of ToLower depends on the LC_TYPE setting of the current Locale
(see setlocale in the MSDN Library). By default, since the program starts up with
setlocale(LC_ALL, "C"), only the standard 7-bit ASCII cased characters are converted
(a-z or A-Z). If you use a different locale, you must make sure that the character passed
as a parameter is indeed valid for the code page of that locale.
----------------------------------------------------------------------------------------------*/
inline void ToLower(schar * prgch, int cch)
{
AssertArray(prgch, cch);
for ( ; --cch >= 0; prgch++)
*prgch = (schar)tolower(*prgch);
}
/*----------------------------------------------------------------------------------------------
This ansi case mapping function converts the single-byte character ch to lower case.
The exact behavior of ToLower depends on the LC_TYPE setting of the current Locale
(see setlocale in the MSDN Library). By default, since the program starts up with
setlocale(LC_ALL, "C"), only the standard 7-bit ASCII cased characters are converted
(a-z or A-Z). If you use a different locale, you must make sure that the character passed
as a parameter is indeed valid for the code page of that locale.
----------------------------------------------------------------------------------------------*/
inline schar ToLower(schar ch)
{
return (schar)tolower(ch);
}
/*-----------------------------------------------------------------------------------*//*:Ignore
Unicode case mapping functions.
-------------------------------------------------------------------------------*//*:End Ignore*/
/*----------------------------------------------------------------------------------------------
This unicode case mapping function converts cch wide (16-bit) characters in prgch to
upper case.
----------------------------------------------------------------------------------------------*/
void ToUpper(utf16 * prgch, int cch);
/*----------------------------------------------------------------------------------------------
This unicode case mapping function converts the wide (16-bit) character ch to upper case.
----------------------------------------------------------------------------------------------*/
utf16 ToUpper(utf16 ch);
/*----------------------------------------------------------------------------------------------
This unicode case mapping function converts cch wide (16-bit) characters in prgch to
lower case.
----------------------------------------------------------------------------------------------*/
void ToLower(utf16 * prgch, int cch);
/*----------------------------------------------------------------------------------------------
This unicode case mapping function converts the wide (16-bit) character ch to lower case.
----------------------------------------------------------------------------------------------*/
utf16 ToLower(utf16 ch);
#endif
/*----------------------------------------------------------------------------------------------
Get a pointer and cch (count of characters) for a string with id stid defined in a resource
header file.
@h3{Parameters}
stid -- string id, e.g., kstidComment (defined in a resource header file).
----------------------------------------------------------------------------------------------*/
#ifdef GR_FW
void GetResourceString(const utf16 ** pprgch, int * pcch, int stid);
#endif
/*----------------------------------------------------------------------------------------------
Return the length (number of characters) of a string. Surrogate pairs and other 'characters'
that occupy more than the usual space (e.g., in ASCII double-byte encodings) are not
recognized. StrLen just counts bytes or utf16s.
This is defined to give us something with the same name to use in other template functions.
This handles NULL as a zero-length string.
----------------------------------------------------------------------------------------------*/
template<typename XChar>
inline int StrLen(const XChar * psz)
{
AssertPszN(psz);
if (!psz)
return 0;
const XChar * pch;
for (pch = psz; *pch; pch++)
;
return pch - psz;
}
//:Associate with "Generic Text Comparison Functions".
/*----------------------------------------------------------------------------------------------
Case sensitive naive binary comparison of strings containing ansi (8 bit) characters.
@h3{Return value}
Returns negative, zero, or positive according to whether (prgch1, cch1) is less than,
equal to, or greater than (prgch2, cch2).
----------------------------------------------------------------------------------------------*/
inline int CompareRgch(const char * prgch1, int cch1, const char * prgch2, int cch2)
{
int cch = (cch1 < cch2) ? cch1 : cch2;
for ( ; --cch >= 0; prgch1++, prgch2++)
{
if (*prgch1 != *prgch2)
return (int)(unsigned char)*prgch1 - (int)(unsigned char)*prgch2;
}
return cch1 - cch2;
}
/*----------------------------------------------------------------------------------------------
Case sensitive naive binary comparison of strings containing unicode (16 bit) characters.
@h3{Return value}
Returns negative, zero, or positive according to whether (prgch1, cch1) is less than,
equal to, or greater than (prgch2, cch2).
----------------------------------------------------------------------------------------------*/
inline int CompareRgch(const utf16 * prgch1, int cch1, const utf16 * prgch2, int cch2)
{
int cch = (cch1 < cch2) ? cch1 : cch2;
for ( ; --cch >= 0; prgch1++, prgch2++)
{
if (*prgch1 != *prgch2)
return (int)*prgch1 - (int)*prgch2;
}
return cch1 - cch2;
}
#ifdef GR_FW
/*----------------------------------------------------------------------------------------------
Case insensitive equality. This function can be used for either ansi (8 bit) or unicode
(16-bit) characters.
----------------------------------------------------------------------------------------------*/
template<typename XChar>
inline bool EqualsRgchCI(const XChar * prgch1, const XChar * prgch2, int cch)
{
for ( ; --cch >= 0; prgch1++, prgch2++)
{
if (*prgch1 != *prgch2 && /*gr::*/ToLower(*prgch1) != /*gr::*/ToLower(*prgch2))
return false;
}
return true;
}
#endif
//:>********************************************************************************************
//:> Text conversion functions for converting between unicode and ansi.
//:>********************************************************************************************
//:Associate with "Generic Text Conversion Functions".
/*----------------------------------------------------------------------------------------------
Convert from Unicode to 8-bit, either using the given codepage or the ANSI codepage.
If cchwSrc is -1, WideCharToMultiByte assumes that prgchwSrc is null-terminated and the
length is calculated automatically.
@h3{Return value}
If WideCharToMultiByte succeeds, and cchsDst is nonzero, the return value is the number of
bytes written to the buffer pointed to by prgchsDst. If it succeeds, and cchsDst is zero,
the return value is the required size, in bytes, for a buffer that can receive the
translated string. If it fails, the return value is zero.
@h3{Parameters}
@code{
prgchwSrc -- source unicode string.
cchwSrc -- count of characters in source string.
prgchsDst -- destination ansi string.
cchsDst -- count of characters in destination string.
}
----------------------------------------------------------------------------------------------*/
inline size_t ConvertText(const utf16 * prgchwSrc, size_t cchwSrc, schar * prgchsDst, size_t cchsDst)
{
AssertArray(prgchwSrc, cchwSrc);
AssertArray(prgchsDst, cchsDst);
return Platform_UnicodeToANSI(prgchwSrc, cchwSrc, prgchsDst, cchsDst);
}
/*----------------------------------------------------------------------------------------------
Convert from 8-bit to Unicode, either using the given codepage or the ANSI codepage.
If cchsSrc is -1, MultiByteToWideChar assumes that prgchsSrc is null-terminated and the
length is calculated automatically.
@h3{Return value}
If MultiByteToWideChar succeeds, and cchwDst is nonzero, the return value is the number of
wide characters written to the buffer pointed to by prgchwDst. If it succeeds, and cchwDst
is zero, the return value is the required size, in wide characters, for a buffer that can
receive the translated string. If it fails, the return value is zero.
@h3{Parameters}
@code{
prgchsSrc -- source ansi string.
cchsSrc -- count of characters in source string.
prgchwDst -- destination unicode string.
cchwDst -- count of characters in destination string.
}
@null{
REVIEW LarryW: MultiByteToWideChar fails if MB_ERR_INVALID_CHARS is set and it encounters
an invalid character in the source string. An invalid character is one that would translate
to the default character if MB_ERR_INVALID_CHARS was not set, but is not the default
character in the source string, or when a lead byte is found in a string and there is no
valid trail byte for DBCS strings. When an invalid character is found, and
MB_ERR_INVALID_CHARS _is_ set, the function returns 0 and sets GetLastError with the error
ERROR_NO_UNICODE_TRANSLATION. Since we are not setting MB_ERR_INVALID_CHARS, it appears
that we can still find out the count of characters. To verify this, we will need to test
this with a multi-byte character set installed, such as the Japanese version of Windows.
At the moment, this is not available.
}
----------------------------------------------------------------------------------------------*/
inline size_t ConvertText(const schar * prgchsSrc, size_t cchsSrc, utf16 * prgchwDst, size_t cchwDst)
{
AssertArray(prgchsSrc, cchsSrc);
AssertArray(prgchwDst, cchwDst);
return Platform_AnsiToUnicode(prgchsSrc, cchsSrc, prgchwDst, cchwDst);
}
/*----------------------------------------------------------------------------------------------
Do a trivial copy. It is useful for implementing template functions. E.g., see
${StrBase<>#GetBstr}, or ${StrBaseBuf<>#Assign}.
----------------------------------------------------------------------------------------------*/
template<typename XChar>
inline int ConvertText(const XChar * prgchSrc, int cchSrc, XChar * prgchDst, int cchDst)
{
AssertArray(prgchSrc, cchSrc);
AssertArray(prgchDst, cchDst);
Assert(cchDst >= cchSrc || 0 == cchDst);
if (!cchDst)
return cchSrc;
std::copy(prgchSrc, prgchSrc + cchSrc, prgchDst);
// CopyItems(prgchSrc, prgchDst, cchSrc);
return cchSrc;
}
/*----------------------------------------------------------------------------------------------
Determine the largest number of YChars that can be converted to cxchMax or fewer XChars.
This does a binary search.
----------------------------------------------------------------------------------------------*/
template<typename YChar>
inline size_t CychFitConvertedText(const YChar * prgych, size_t cych, size_t cxchMax)
{
AssertArray(prgych, cych);
Assert(0 <= cxchMax);
if (0 >= cxchMax)
return 0;
// The most common case is that each ych becomes a single xch, so test for this first.
if (cych > cxchMax &&
ConvertText(prgych, cxchMax, nullptr, 0) <= cxchMax &&
ConvertText(prgych, cxchMax + 1, nullptr, 0) > cxchMax)
{
return cxchMax;
}
int cychMin, cychLim;
for (cychMin = 0, cychLim = cych; cychMin < cychLim; )
{
int cychT = (unsigned int)(cychMin + cychLim + 1) / 2;
Assert(cychMin < cychT && cychT <= cychLim);
int cxchT = ConvertText(prgych, cychT, nullptr, 0);
if (cxchT > cxchMax)
cychLim = cychT - 1;
else
cychMin = cychT;
}
return cychMin;
}
//:>********************************************************************************************
//:> Smart string class StrBase<>.
//:>********************************************************************************************
/*----------------------------------------------------------------------------------------------
Smart string class StrBase<> is used to implement strings of unicode or ansi characters. It
creates an instance of the embedded struct StrBuffer, storing the characters on the heap.
The StrBuffer is stored in the member variable m_pbuf.
Note: Don't use new or alloc on StrBase<>. StrBuffer has its own static create function that
it uses to appropriately allocate space for the characters.
StrBuffer keeps a reference count. Thus, assignment of one StrBase<> to another simply
results in the two pointing to the same block of memory. However, if one of them is now
changed in some way, the other one is not affected; the modified one will be given a new
StrBuffer.
If the allocation of space for characters fails, an exception is thrown.
StrBuffer stores the byte count in its member variable m_cb immediately followed by the
characters in its member variable m_rgch[]. This layout matches a BSTR, so if a client asks
for a BSTR it gets a pointer to m_rgch.
The three instantiations of StrBase<> are:
@code{
StrUni, which contains unicode (16 bit) characters.
StrAnsi, which contains ansi (8 bit) characters.
StrApp, which contains achar characters. achar is typedefed in Common.h as utf16
for UNICODE and as schar, i.e., char, for all other cases.
}
For a comparison of the other smart string class, see ${StrBaseBuf<>}.
@h3{Hungarian: stb}
----------------------------------------------------------------------------------------------*/
template<typename XChar> class StrBase
{
public:
#ifdef DEBUG__XX
// Check to make certain we have a valid internal state for debugging purposes.
bool AssertValid(void) const
{
AssertPtr(this);
AssertObj(m_pbuf);
return true;
}
#define DBWINIT() m_dbw1.m_pstrbase = this; // so DebugWatch can find string
#else
#define DBWINIT()
#endif //DEBUG
// The other character type.
typedef typename CharDefns<XChar>::OtherChar YChar;
/*------------------------------------------------------------------------------------------
Destructor.
------------------------------------------------------------------------------------------*/
~StrBase<XChar>(void)
{
AssertObj(this);
if (m_pbuf)
{
m_pbuf->Release();
m_pbuf = NULL;
}
}
/*------------------------------------------------------------------------------------------
Generic constructor.
------------------------------------------------------------------------------------------*/
StrBase<XChar>(void)
{
m_pbuf = &s_bufEmpty;
m_pbuf->AddRef();
AssertObj(this);
DBWINIT();
}
/*------------------------------------------------------------------------------------------
Construct a new StrBase<> from a StrBase<Ychar> of the other character type.
------------------------------------------------------------------------------------------*/
StrBase<XChar>(const StrBase<YChar> & stb)
{
AssertObj(&stb);
m_pbuf = &s_bufEmpty;
m_pbuf->AddRef();
int cch = stb.Length();
if (cch)
_Replace(0, 0, stb.m_pbuf->m_rgch, 0, cch);
DBWINIT();
}
/*------------------------------------------------------------------------------------------
Construct a new StrBase<> from a StrBase<Xchar> of the same character type.
------------------------------------------------------------------------------------------*/
StrBase<XChar>(const StrBase<XChar> & stb)
{
AssertObj(&stb);
m_pbuf = stb.m_pbuf;
m_pbuf->AddRef();
AssertObj(this);
DBWINIT();
}
/*------------------------------------------------------------------------------------------
Construct a new StrBase<> from a zero-terminated string of either character type.
------------------------------------------------------------------------------------------*/
template<typename ZChar> StrBase<XChar>(const ZChar * psz)
{
AssertPszN(psz);
m_pbuf = &s_bufEmpty;
m_pbuf->AddRef();
int cch = StrLen(psz);
if (cch)
_Replace(0, 0, psz, 0, cch);
DBWINIT();
}
/*------------------------------------------------------------------------------------------
Construct a new StrBase<> from a string, of either character type, with cch characters.
------------------------------------------------------------------------------------------*/
template<typename ZChar> StrBase<XChar>(const ZChar * prgch, int cch)
{
AssertArray(prgch, cch);
m_pbuf = &s_bufEmpty;
m_pbuf->AddRef();
if (cch)
_Replace(0, 0, prgch, 0, cch);
DBWINIT();
}
/*------------------------------------------------------------------------------------------
Construct a new StrBase<> from a string with id stid defined in a resource header file.
------------------------------------------------------------------------------------------*/
#ifdef GR_FW
StrBase<XChar>(const int stid)
{
m_pbuf = &s_bufEmpty;
m_pbuf->AddRef();
const utf16 *prgchw;
int cch;
::GetResourceString(&prgchw, &cch, stid);
if (cch)
_Replace(0, 0, prgchw, 0, cch);
DBWINIT();
}
#endif
/*------------------------------------------------------------------------------------------
Create a new internal buffer of size cch and return a pointer to the characters.
This preserves the characters currently in the string, up the the min of the old and
new sizes. It is expected that the caller will fill in any newly allocated characters.
------------------------------------------------------------------------------------------*/
void SetSize(int cch, XChar ** pprgch);
//:>****************************************************************************************
//:> Array-like functionality.
//:>****************************************************************************************
/*------------------------------------------------------------------------------------------
Get the length, i.e., the number of char or utf16 characters (as opposed to a count of
logical characters.
------------------------------------------------------------------------------------------*/
size_t Length(void) const
{
AssertObj(this);
return m_pbuf->Cch();
}
/*------------------------------------------------------------------------------------------
Make the string empty, by making the buffer empty.
------------------------------------------------------------------------------------------*/
void Clear(void)
{
AssertObj(this);
_SetBuf(&s_bufEmpty);
}
/*------------------------------------------------------------------------------------------
Return the character at index ich. Asserts that ich is in range.
------------------------------------------------------------------------------------------*/
XChar GetAt(int ich) const
{
AssertObj(this);
Assert((unsigned int)ich <= (unsigned int)m_pbuf->Cch());
return m_pbuf->m_rgch[ich];
}
/*------------------------------------------------------------------------------------------
Return the character at index ich. Use for read only. Asserts that ich is in range.
------------------------------------------------------------------------------------------*/
XChar operator [] (int ich) const
{
AssertObj(this);
Assert((unsigned int)ich <= (unsigned int)m_pbuf->Cch());
return m_pbuf->m_rgch[ich];
}
/*------------------------------------------------------------------------------------------
Set the character at index ich to ch.
------------------------------------------------------------------------------------------*/
void SetAt(int ich, XChar ch);
//:>****************************************************************************************
//:> Access.
//:>****************************************************************************************
/*------------------------------------------------------------------------------------------
Return a read-only pointer to the characters.
------------------------------------------------------------------------------------------*/
const XChar * Chars(void) const
{
AssertObj(this);
return m_pbuf->m_rgch;
}
/*------------------------------------------------------------------------------------------
Return a read-only pointer to the characters. This is the cast operator.
------------------------------------------------------------------------------------------*/
operator const XChar *(void) const
{
AssertObj(this);
return m_pbuf->m_rgch;
}
/*------------------------------------------------------------------------------------------
Return true if the count of bytes in the buffer is not zero.
------------------------------------------------------------------------------------------*/
operator bool(void) const
{
AssertObj(this);
return m_pbuf->m_cb;
}
/*------------------------------------------------------------------------------------------
Return true if the count of bytes in the buffer is zero.
------------------------------------------------------------------------------------------*/
bool operator !(void) const
{
AssertObj(this);
return !m_pbuf->m_cb;
}
//:>****************************************************************************************
//:> Assignment.
//:>****************************************************************************************
/*------------------------------------------------------------------------------------------
Assign the value of this StrBase<> to be the same as the value of a StrBase<> of the
other character type.
------------------------------------------------------------------------------------------*/
void Assign(const StrBase<YChar> & stb)
{
AssertObj(this);
AssertObj(&stb);
_Replace(0, m_pbuf->Cch(), stb.m_pbuf->m_rgch, 0, stb.m_pbuf->Cch());
}
/*------------------------------------------------------------------------------------------
Assign the value of this StrBase<> to be the same as the value of another StrBase<>
of the same character type.
------------------------------------------------------------------------------------------*/
void Assign(const StrBase<XChar> & stb)
{
AssertObj(this);
AssertObj(&stb);
_SetBuf(stb.m_pbuf);
}
/*------------------------------------------------------------------------------------------
Assign the characters from the given zero-terminated string psz, of either character
type, to be the value of this StrBase<>.
------------------------------------------------------------------------------------------*/
template<typename ZChar>
void Assign(const ZChar * psz)
{
AssertObj(this);
AssertPszN(psz);
_Replace(0, m_pbuf->Cch(), psz, 0, StrLen(psz));
}
/*------------------------------------------------------------------------------------------
Assign the characters from the given string (prgch, cch), of either character type,
to be the value of this StrBase<>.
------------------------------------------------------------------------------------------*/
template<typename ZChar>
void Assign(const ZChar * prgch, int cch)
{
AssertObj(this);
AssertArray(prgch, cch);
_Replace(0, m_pbuf->Cch(), prgch, 0, cch);
}
/*------------------------------------------------------------------------------------------
Assign the value of this StrBase<> to be the same as the string with id stid defined in
a resource header file.
------------------------------------------------------------------------------------------*/
/*void Load(const int stid)
{
AssertObj(this);
const utf16 *prgchw;
int cch;
::GetResourceString(&prgchw, &cch, stid);
if (cch)
_Replace(0, m_pbuf->Cch(), prgchw, 0, cch);
}*/
//:> Assignment operators.
/*------------------------------------------------------------------------------------------
Assign the value of this StrBase<> to be the same as the value of a StrBase<> of the
other character type.
------------------------------------------------------------------------------------------*/
StrBase<XChar> & operator = (const StrBase<YChar> & stb)
{
AssertObj(this);
AssertObj(&stb);
_Replace(0, m_pbuf->Cch(), stb.m_pbuf->m_rgch, 0, stb.m_pbuf->Cch());
return *this;
}
/*------------------------------------------------------------------------------------------
Assign the value of this StrBase<> to be the same as the value of another StrBase<> of
the same character type.
------------------------------------------------------------------------------------------*/
StrBase<XChar> & operator = (const StrBase<XChar> & stb)
{
AssertObj(this);
AssertObj(&stb);
_SetBuf(stb.m_pbuf);
return *this;
}
/*------------------------------------------------------------------------------------------
Assign the characters from the given zero-terminated string psz, of either character
type, to be the value of this StrBase<>.
------------------------------------------------------------------------------------------*/
template<typename ZChar>
StrBase<XChar> & operator = (const ZChar * psz)
{
AssertObj(this);
AssertPszN(psz);
_Replace(0, m_pbuf->Cch(), psz, 0, StrLen(psz));
return *this;
}
//:>****************************************************************************************
//:> Concatenation.
//:>****************************************************************************************
/*------------------------------------------------------------------------------------------
Append a copy of the value of a StrBase<>, of the other character type, to the value
of this StrBase<>.
------------------------------------------------------------------------------------------*/
void Append(const StrBase<YChar> & stb)
{
AssertObj(this);
AssertObj(&stb);
int cchCur = m_pbuf->Cch();
_Replace(cchCur, cchCur, stb.m_pbuf->m_rgch, 0, stb.m_pbuf->Cch());
}
/*------------------------------------------------------------------------------------------
Append a copy of the value of another StrBase<>, of the same character type, to the
value of this StrBase<>.
------------------------------------------------------------------------------------------*/
void Append(const StrBase<XChar> & stb)
{
AssertObj(this);
AssertObj(&stb);
int cchCur = m_pbuf->Cch();
if (!cchCur)
_SetBuf(stb.m_pbuf);
else
_Replace(cchCur, cchCur, stb.m_pbuf->m_rgch, 0, stb.m_pbuf->Cch());
}
/*------------------------------------------------------------------------------------------
Append a copy of the zero-terminated string psz, of either character type, to the value
of this StrBase<>.
------------------------------------------------------------------------------------------*/
template<typename ZChar>
void Append(const ZChar * psz)
{
AssertPszN(psz);
int cchCur = m_pbuf->Cch();
_Replace(cchCur, cchCur, psz, 0, StrLen(psz));
}
/*------------------------------------------------------------------------------------------
Append a copy of the string (prgch, cch), of either character type, to the value of
this StrBase<>.
------------------------------------------------------------------------------------------*/
template<typename ZChar>
void Append(const ZChar * prgch, int cch)
{
AssertObj(this);
AssertArray(prgch, cch);
int cchCur = m_pbuf->Cch();
_Replace(cchCur, cchCur, prgch, 0, cch);
}
/*------------------------------------------------------------------------------------------
Append a copy of the string with id stid defined in a resource header file to the value
of this StrBase<>.
------------------------------------------------------------------------------------------*/
#ifdef GR_FW
void AppendLoad(const int stid)
{
AssertObj(this);
const utf16 *prgchw;
int cch;
int cchCur = m_pbuf->Cch();
::GetResourceString(&prgchw, &cch, stid);
if (cch)
_Replace(cchCur, cchCur, prgchw, 0, cch);
}
#endif
//:> += operators.
/*------------------------------------------------------------------------------------------
Append a copy of the value of a StrBase<>, which may be of either character type, to
the value of this StrBase<>.
------------------------------------------------------------------------------------------*/
template<typename ZChar>
StrBase<XChar> & operator += (const StrBase<ZChar> & stb)
{
Append(stb);
return *this;
}
/*------------------------------------------------------------------------------------------
Append a copy of the zero-terminated string psz, of either character type, to the value
of this StrBase<>.
------------------------------------------------------------------------------------------*/
template<typename ZChar>
StrBase<XChar> & operator += (const ZChar * psz)
{
Append(psz);
return *this;
}
//:> + operators.
/*------------------------------------------------------------------------------------------
Return a new StrBase<> with the value of this StrBase<> followed by the value of another
StrBase<>, which may be of either character type.
------------------------------------------------------------------------------------------*/
template<typename ZChar>
StrBase<XChar> operator + (const StrBase<ZChar> & stb) const
{
StrBase<XChar> stbRet(this);
stbRet.Append(stb);
return stbRet;
}
/*------------------------------------------------------------------------------------------
Return a new StrBase<> with the value of this StrBase<> followed by a copy of the
zero-terminated string psz, of either character type.
------------------------------------------------------------------------------------------*/
template<typename ZChar>
StrBase<XChar> operator + (const ZChar * psz) const
{
StrBase<XChar> stbRet(this);
stbRet.Append(psz);
return stbRet;
}
//:>****************************************************************************************
//:> Comparison.
//:>****************************************************************************************
//:> Equality operators.
/*------------------------------------------------------------------------------------------
Return true if this StrBase<> is equal to the value of stb, another StrBase<> of the
same character type. Two StrBase<>'s are equal if they both contain the exact sequence
of characters and if both have the same character count.
------------------------------------------------------------------------------------------*/
bool Equals(const StrBase<XChar> & stb) const
{
AssertObj(this);
AssertObj(&stb);
if (m_pbuf == stb.m_pbuf)
return true;
if (m_pbuf->m_cb != stb.m_pbuf->m_cb)
return false;
return 0 == memcmp(m_pbuf->m_rgch, stb.m_pbuf->m_rgch, m_pbuf->m_cb);
}
/*------------------------------------------------------------------------------------------
Return true if this StrBase<> is equal to the value of the zero-terminated string psz,
of the same character type. A StrBase<> is equal to a zero-terminated string if they
both contain the exact sequence of characters and if both have the same character count.
------------------------------------------------------------------------------------------*/
bool Equals(const XChar * psz) const
{
AssertObj(this);
AssertPszN(psz);
return Equals(psz, StrLen(psz));
}
/*------------------------------------------------------------------------------------------
Return true if this StrBase<> is equal to the value of the string (prgch, cch), of the
same character type. A StrBase<> is equal to a string if they both contain the exact
sequence of characters and if both have the same character count.
------------------------------------------------------------------------------------------*/
bool Equals(const XChar * prgch, size_t cch) const
{
AssertObj(this);
AssertArray(prgch, cch);
if (m_pbuf->m_cb != size_t(cch) * sizeof(XChar))
return false;
return 0 == memcmp(m_pbuf->m_rgch, prgch, cch * sizeof(XChar));
}
/*------------------------------------------------------------------------------------------
Return true if this StrBase<> is equal to the value of stb, another StrBase<> of the
same character type. Two StrBase<>'s are equal if they both contain the exact sequence
of characters and if both have the same character count. (See ${StrBase<>#Equals}).
------------------------------------------------------------------------------------------*/
bool operator == (const StrBase<XChar> & stb) const
{
AssertObj(&stb);
return Equals(stb);
}
/*------------------------------------------------------------------------------------------
Return true if this StrBase<> is equal to the value of the zero-terminated string psz,
of the same character type. A StrBase<> is equal to a zero-terminated string if they
both contain the exact sequence of characters and if both have the same character count.
(See ${StrBase<>#Equals}).
------------------------------------------------------------------------------------------*/
bool operator == (const XChar * psz) const
{
AssertPszN(psz);
return Equals(psz, StrLen(psz));
}
/*------------------------------------------------------------------------------------------
Return true if this StrBase<> is not equal to the value of stb, another StrBase<> of the
same character type. Two StrBase<>'s are equal if they both contain the exact sequence
of characters and if both have the same character count. (See ${StrBase<>#Equals}).
------------------------------------------------------------------------------------------*/
bool operator != (const StrBase<XChar> & stb) const
{
AssertObj(&stb);
return !Equals(stb);
}
/*------------------------------------------------------------------------------------------
Return true if this StrBase<> is not equal to the value of the zero-terminated string
psz, of the same character type. A StrBase<> is equal to a zero-terminated string if
they both contain the exact sequence of characters and if both have the same character
count. (See ${StrBase<>#Equals}).
------------------------------------------------------------------------------------------*/
bool operator != (const XChar * psz) const
{
AssertPszN(psz);
return !Equals(psz, StrLen(psz));
}
//:> Greater than and less than comparisons.
/*------------------------------------------------------------------------------------------
Case sensitive naive binary comparison of this StrBase<> with another StrBase<> that
contains the same type of characters.
@h3{Return value}
Returns negative, zero, or positive according to whether this StrBase<> is less than,
equal to, or greater than stb.
------------------------------------------------------------------------------------------*/
int Compare(const StrBase<XChar> & stb) const
{
AssertObj(this);
AssertObj(&stb);
return Compare(stb.m_pbuf->m_rgch, stb.m_pbuf->Cch());
}
/*------------------------------------------------------------------------------------------
Case sensitive naive binary comparison of this StrBase<> with a zero-terminated string
psz of the same character type.
@h3{Return value}
Returns negative, zero, or positive according to whether this StrBase<> is less than,
equal to, or greater than the zero-terminated string psz.
------------------------------------------------------------------------------------------*/
int Compare(const XChar * psz) const
{
AssertObj(this);
AssertPszN(psz);
return Compare(psz, StrLen(psz));
}
/*------------------------------------------------------------------------------------------
Case sensitive naive binary comparison of this StrBase<> with a string (prgch, cch) of
the same character type. (See CompareRgch).
@h3{Return value}
Returns negative, zero, or positive according to whether this StrBase<> is less than,
equal to, or greater than the string (prgch, cch).
------------------------------------------------------------------------------------------*/
int Compare(const XChar * prgch, int cch) const
{
AssertObj(this);
AssertArray(prgch, cch);
return CompareRgch(m_pbuf->m_rgch, m_pbuf->Cch(), prgch, cch);
}
/*------------------------------------------------------------------------------------------
Return true if this StrBase<> is less than another StrBase<> of the same character type,
based on a case sensitive naive binary comparison (see ${StrBase<>#Compare}).
------------------------------------------------------------------------------------------*/
bool operator < (const StrBase<XChar> & stb) const
{
AssertObj(&stb);
return Compare(stb) < 0;
}
/*------------------------------------------------------------------------------------------
Return true if this StrBase<> is less than a zero-terminated string psz of the same
character type, based on a case sensitive naive binary comparison
(see ${StrBase<>#Compare}).
------------------------------------------------------------------------------------------*/
bool operator < (const XChar * psz) const
{
AssertPszN(psz);
return Compare(psz, StrLen(psz)) < 0;
}
/*------------------------------------------------------------------------------------------
Return true if this StrBase<> is greater than another StrBase<> of the same character
type, based on a case sensitive naive binary comparison (see ${StrBase<>#Compare}).
------------------------------------------------------------------------------------------*/
bool operator > (const StrBase<XChar> & stb) const
{
AssertObj(&stb);
return Compare(stb) > 0;
}
/*------------------------------------------------------------------------------------------
Return true if this StrBase<> is greater than a zero-terminated string psz of the same
character type, based on a case sensitive naive binary comparison
(see ${StrBase<>#Compare}).
------------------------------------------------------------------------------------------*/
bool operator > (const XChar * psz) const
{
AssertPszN(psz);
return Compare(psz, StrLen(psz)) > 0;
}
//:> REVIEW Testing(LarryW): Is the following comment still true?
//:> The operators <= and => will return true if two NULL buffers are compared.
//:> However, the equality operator == will return false if a buffer m_pbuf is NULL.
/*------------------------------------------------------------------------------------------
Return true if this StrBase<> is less than or equal to another StrBase<> of the same
character type, based on a case sensitive naive binary comparison
(see ${StrBase<>#Compare}).
------------------------------------------------------------------------------------------*/
bool operator <= (const StrBase<XChar> & stb) const
{
AssertObj(&stb);
return Compare(stb) <= 0;
}
/*------------------------------------------------------------------------------------------
Return true if this StrBase<> is less than or equal to a zero-terminated string psz of
the same character type, based on a case sensitive naive binary comparison
(see ${StrBase<>#Compare}).
------------------------------------------------------------------------------------------*/
bool operator <= (const XChar * psz) const
{
AssertPszN(psz);
return Compare(psz, StrLen(psz)) <= 0;
}
/*------------------------------------------------------------------------------------------
Return true if this StrBase<> is greater than or equal to another StrBase<> of the same
character type, based on a case sensitive naive binary comparison
(see ${StrBase<>#Compare}).
------------------------------------------------------------------------------------------*/
bool operator >= (const StrBase<XChar> & stb) const
{
AssertObj(&stb);
return Compare(stb) >= 0;
}
/*------------------------------------------------------------------------------------------
Return true if this StrBase<> is greater than or equal to a zero-terminated string psz
of the same character type, based on a case sensitive naive binary comparison
(see ${StrBase<>#Compare}).
------------------------------------------------------------------------------------------*/
bool operator >= (const XChar * psz) const
{
AssertPszN(psz);
return Compare(psz, StrLen(psz)) >= 0;
}
#ifdef GR_FW
//:> Case insensitive compare.
/*------------------------------------------------------------------------------------------
Return true if this StrBase<> is equal to another StrBase<> of the same character type,
based on a case insensitive comparison.
------------------------------------------------------------------------------------------*/
bool EqualsCI(const StrBase<XChar> & stb) const
{
AssertObj(this);
AssertObj(&stb);
if (m_pbuf == stb.m_pbuf)
return true;
if (m_pbuf->m_cb != stb.m_pbuf->m_cb)
return false;
return EqualsRgchCI(m_pbuf->m_rgch, stb.m_pbuf->m_rgch, m_pbuf->Cch());
}
/*------------------------------------------------------------------------------------------
Return true if this StrBase<> is equal to the value of the zero-terminated string psz,
of the same character type, based on a case insensitive comparison.
------------------------------------------------------------------------------------------*/
bool EqualsCI(const XChar * psz) const
{
AssertObj(this);
AssertPszN(psz);
return EqualsCI(psz, StrLen(psz));
}
/*------------------------------------------------------------------------------------------
Return true if this StrBase<> is equal to the value of the string (prgch, cch), of the
same character type, based on a case insensitive comparison.
------------------------------------------------------------------------------------------*/
bool EqualsCI(const XChar * prgch, int cch) const
{
AssertObj(this);
AssertArray(prgch, cch);
if (m_pbuf->m_cb != size_t(cch) * sizeof(XChar))
return false;
return EqualsRgchCI(m_pbuf->m_rgch, prgch, m_pbuf->Cch());
}
#endif
//:>****************************************************************************************
//:> Extraction.
//:>****************************************************************************************
/*------------------------------------------------------------------------------------------
Extract the first (that is, leftmost) cch characters from this StrBase<> and return a
copy of the extracted substring. If cch exceeds the string length, then the entire
string is extracted.
------------------------------------------------------------------------------------------*/
StrBase<XChar> Left(int cch) const
{
AssertObj(this);
Assert(0 <= cch);
int cchCur = Length();
if (cch >= cchCur)
return *this;
return StrBase<XChar>(m_pbuf->m_rgch, cch);
}
/*------------------------------------------------------------------------------------------
Extract a substring of length cch characters from this StrBase<>, starting at position
ichMin. Return a copy of the extracted substring. If cch exceeds the string length
minus ichMin, then the right-most substring is extracted. If ichMin exceeds the string
length, an empty string is returned.
------------------------------------------------------------------------------------------*/
StrBase<XChar> Mid(int ichMin, int cch) const
{
AssertObj(this);
Assert(0 <= ichMin);
Assert(0 <= cch);
// If ichMin exceeds the string length, return an empty string.
int cchCur = Length();
if (ichMin >= cchCur || cch <= 0)
return StrBase<XChar>();
if (cch >= cchCur - ichMin)
{
if (!ichMin)
return *this;
cch = cchCur - ichMin;
}
return StrBase<XChar>(m_pbuf->m_rgch + ichMin, cch);
}
/*------------------------------------------------------------------------------------------
Extract the last (that is, rightmost) cch characters from this StrBase<> and return a
copy of the extracted substring. If cch exceeds the string length, then the entire
string is extracted.
------------------------------------------------------------------------------------------*/
StrBase<XChar> Right(int cch) const
{
AssertObj(this);
Assert(0 <= cch);
int cchCur = Length();
if (cch >= cchCur)
return *this;
return StrBase<XChar>(m_pbuf->m_rgch + cchCur - cch, cch);
}
//:>****************************************************************************************
//:> Conversion.
//:>****************************************************************************************
#ifdef GR_FW
/*------------------------------------------------------------------------------------------
Convert characters to lower case. If this string object is sharing a buffer, then the
existing characters are copied into a new buffer solely owned by this StrBase<>.
------------------------------------------------------------------------------------------*/
void ToLower(void);
/*------------------------------------------------------------------------------------------
Convert characters to upper case. If this string object is sharing a buffer, then the
existing characters are copied into a new buffer solely owned by this StrBase<>.
------------------------------------------------------------------------------------------*/
void ToUpper(void);
#endif
/*------------------------------------------------------------------------------------------
Replace the range of characters [ichMin, ichLim) with the characters from stb, a
StrBase<> consisting of the other type of character.
------------------------------------------------------------------------------------------*/
void Replace(int ichMin, int ichLim, StrBase<YChar> & stb)
{
AssertObj(this);
Assert((unsigned int)ichMin <= (unsigned int)ichLim && (unsigned int)ichLim <= (unsigned int)m_pbuf->Cch());
AssertObj(&stb);
_Replace(ichMin, ichLim, stb.m_pbuf->m_rgch, 0, stb.m_pbuf->Cch());
}
/*------------------------------------------------------------------------------------------
Replace the range of characters [ichMin, ichLim) with the characters from stb, a
StrBase<> consisting of the same type of character.
------------------------------------------------------------------------------------------*/
void Replace(int ichMin, int ichLim, StrBase<XChar> & stb)
{
AssertObj(this);
Assert((unsigned int)ichMin <= (unsigned int)ichLim && (unsigned int)ichLim <= (unsigned int)m_pbuf->Cch());
AssertObj(&stb);
if (0 == ichMin && ichLim == m_pbuf->Cch())
_SetBuf(stb.m_pbuf);
else
_Replace(ichMin, ichLim, stb.m_pbuf->m_rgch, 0, stb.m_pbuf->Cch());
}
/*------------------------------------------------------------------------------------------
Replace the range of characters [ichMin, ichLim) with the characters from the
zero-terminated string psz of either character type.
------------------------------------------------------------------------------------------*/
template<typename ZChar>
void Replace(int ichMin, int ichLim, const ZChar * psz)
{
AssertObj(this);
Assert((unsigned int)ichMin <= (unsigned int)ichLim && (unsigned int)ichLim <= (unsigned int)m_pbuf->Cch());
AssertPszN(psz);
_Replace(ichMin, ichLim, psz, 0, StrLen(psz));
}
/*------------------------------------------------------------------------------------------
Replace the range of characters [ichMin, ichLim) with the characters from the
string (prgch, cch) of either character type.
------------------------------------------------------------------------------------------*/
template<typename ZChar>
void Replace(int ichMin, int ichLim, const ZChar * prgch, int cch)
{
AssertObj(this);
Assert((unsigned int)ichMin <= (unsigned int)ichLim && (unsigned int)ichLim <= (unsigned int)m_pbuf->Cch());
AssertArray(prgch, cch);
_Replace(ichMin, ichLim, prgch, 0, cch);
}
/*------------------------------------------------------------------------------------------
Replace the range of characters [ichMin, ichLim) with cchIns instances of the character
chIns.
------------------------------------------------------------------------------------------*/
template<typename ZChar>
void ReplaceFill(int ichMin, int ichLim, const ZChar chIns, int cchIns)
{
AssertObj(this);
Assert((unsigned int)ichMin <= (unsigned int)ichLim && (unsigned int)ichLim <= (unsigned int)m_pbuf->Cch());
Assert(cchIns >= 0);
_Replace(ichMin, ichLim, NULL, chIns, cchIns);
}
//:>****************************************************************************************
//:> Searching.
//:>****************************************************************************************
/*------------------------------------------------------------------------------------------
Return the zero-based index, no less than ichMin, of the first character in this
StrBase<> that matches the requested character, ch. Return -1 if the character, ch, is
not found. This is case sensitive.
------------------------------------------------------------------------------------------*/
int FindCh(XChar ch, int ichMin = 0) const
{
AssertObj(this);
Assert(ichMin >= 0);
int ich;
int cch = Length();
for (ich = ichMin; ich < cch; ich++)
{
if (m_pbuf->m_rgch[ich] == ch)
return ich;
}
return -1;
}
#ifdef GR_FW
/*------------------------------------------------------------------------------------------
Return the zero-based index, no less than ichMin, of the first character in this
StrBase<> that matches the requested character, ch, not considering the case. Return -1
if the character, ch, is not found.
------------------------------------------------------------------------------------------*/
int FindChCI(XChar ch, int ichMin = 0) const
{
AssertObj(this);
Assert(ichMin >= 0);
int ich;
int cch = Length();
ch = /*gr::*/ToLower(ch);
for (ich = ichMin; ich < cch; ich++)
{
if (/*gr::*/ToLower(m_pbuf->m_rgch[ich]) == ch)
return ich;
}
return -1;
}
#endif
/*------------------------------------------------------------------------------------------
Return the zero-based index, no greater than ichLast, of the last character in this
StrBase<> that matches the requested character, ch. Return -1 if the character, ch, is
not found. This is case sensitive.
------------------------------------------------------------------------------------------*/
int ReverseFindCh(XChar ch, int ichLast = 0x7FFFFFFF) const
{
AssertObj(this);
Assert(ichLast >= 0);
if (ichLast >= Length())
ichLast = Length() - 1;
int ich;
for (ich = ichLast; ich >= 0; --ich)
{
if (m_pbuf->m_rgch[ich] == ch)
return ich;
}
return -1;
}
#ifdef GR_FW
/*------------------------------------------------------------------------------------------
Return the zero-based index, no greater than ichLast, of the last character in this
StrBase<> that matches the requested character, ch, not considering the case. Return
-1 if the character, ch, is not found.
------------------------------------------------------------------------------------------*/
int ReverseFindChCI(XChar ch, int ichLast = 0x7FFFFFFF) const
{
AssertObj(this);
Assert(ichLast >= 0);
if (ichLast >= Length())
ichLast = Length() - 1;
ch = /*gr::*/ToLower(ch);
int ich;
for (ich = ichLast; ich >= 0; --ich)
{
if (/*gr::*/ToLower(m_pbuf->m_rgch[ich]) == ch)
return ich;
}
return -1;
}
#endif
/*------------------------------------------------------------------------------------------
Return the zero-based index, no less than ichMin, of the first character of the first
substring in this StrBase<> that matches the substring, stb, passed as a parameter.
Return -1 if the substring is not found. This is case sensitive.
------------------------------------------------------------------------------------------*/
int FindStr(const StrBase<XChar> & stb, int ichMin = 0) const
{
AssertObj(this);
AssertObj(&stb);
Assert(ichMin >= 0);
if (m_pbuf == stb.m_pbuf)
return ichMin == 0 ? 0 : -1;
return FindStr(stb.m_pbuf->m_rgch, stb.Length(), ichMin);
}
/*------------------------------------------------------------------------------------------
Return the zero-based index, no less than ichMin, of the first character of the first
substring in this StrBase<> that matches the substring, psz, passed as a parameter.
Return -1 if the substring is not found. This is case sensitive.
------------------------------------------------------------------------------------------*/
int FindStr(const XChar * psz, int ichMin = 0) const
{
AssertObj(this);
AssertPszN(psz);
Assert(ichMin >= 0);
return FindStr(psz, StrLen(psz), ichMin);
}
/*------------------------------------------------------------------------------------------
Return the zero-based index, no less than ichMin, of the first character of the first
substring in this StrBase<> that matches the substring, (prgch, cch), passed as
parameters. Return -1 if the substring is not found. This is case sensitive.
------------------------------------------------------------------------------------------*/
int FindStr(const XChar * prgch, size_t cch, int ichMin = 0) const
{
AssertObj(this);
AssertArray(prgch, cch);
Assert(ichMin >= 0);
if (!cch)
return ichMin <= Length() ? ichMin : -1;
// Last position in m_rgch where prgch can be.
int ichLast = Length() - cch;
int ich;
for (ich = ichMin; ich <= ichLast; ich++)
{
if (m_pbuf->m_rgch[ich] == prgch[0] &&
0 == memcmp(m_pbuf->m_rgch + ich, prgch, cch * sizeof(XChar)))
{
return ich;
}
}
return -1;
}
#ifdef GR_FW
/*------------------------------------------------------------------------------------------
Return the zero-based index, no less than ichMin, of the first character of the first
substring in this StrBase<> that matches the substring, stb, passed as a parameter,
not considering the case. Return -1 if the substring is not found.
------------------------------------------------------------------------------------------*/
int FindStrCI(const StrBase<XChar> & stb, int ichMin = 0) const
{
AssertObj(this);
AssertObj(&stb);
Assert(ichMin >= 0);
if (m_pbuf == stb.m_pbuf)
return ichMin == 0 ? 0 : -1;
return FindStrCI(stb.m_pbuf->m_rgch, stb.Length(), ichMin);
}
/*------------------------------------------------------------------------------------------
Return the zero-based index, no less than ichMin, of the first character of the first
substring in this StrBase<> that matches the substring, psz, passed as a parameter,
not considering the case. Return -1 if the substring is not found.
------------------------------------------------------------------------------------------*/
int FindStrCI(const XChar * psz, int ichMin = 0) const
{
AssertObj(this);
AssertPszN(psz);
Assert(ichMin >= 0);
return FindStrCI(psz, StrLen(psz), ichMin);
}
/*------------------------------------------------------------------------------------------
Return the zero-based index, no less than ichMin, of the first character of the first
substring in this StrBase<> that matches the substring, (prgch, cch), passed as
parameters, not considering the case. Return -1 if the substring is not found.
------------------------------------------------------------------------------------------*/
int FindStrCI(const XChar * prgch, int cch, int ichMin = 0) const
{
AssertObj(this);
AssertArray(prgch, cch);
Assert(ichMin >= 0);
if (!cch)
return ichMin <= Length() ? ichMin : -1;
// Last position in m_rgch where prgch can be.
int ichLast = Length() - cch;
int ich;
XChar ch = /*gr::*/ToLower(prgch[0]);
for (ich = ichMin; ich <= ichLast; ich++)
{
if (/*gr::*/ToLower(m_pbuf->m_rgch[ich]) == ch &&
EqualsRgchCI(m_pbuf->m_rgch + ich, prgch, cch))
{
return ich;
}
}
return -1;
}
#endif
/*------------------------------------------------------------------------------------------
Return the zero-based index, no greater than ichLast, of the first character of the
last substring in this StrBase<> that matches the substring, stb, passed as a parameter.
Return -1 if the substring is not found. This is case sensitive.
------------------------------------------------------------------------------------------*/
int ReverseFindStr(const StrBase<XChar> & stb, int ichLast = 0x7FFFFFFF) const
{
AssertObj(this);
AssertObj(&stb);
Assert(ichLast >= 0);
if (m_pbuf == stb.m_pbuf)
return 0;
return ReverseFindStr(stb.m_pbuf->m_rgch, stb.Length(), ichLast);
}
/*------------------------------------------------------------------------------------------
Return the zero-based index, no greater than ichLast, of the first character of the
last substring in this StrBase<> that matches the substring, psz, passed as a parameter.
Return -1 if the substring is not found. This is case sensitive.
------------------------------------------------------------------------------------------*/
int ReverseFindStr(const XChar * psz, int ichLast = 0x7FFFFFFF) const
{
AssertObj(this);
AssertPszN(psz);
Assert(ichLast >= 0);
return ReverseFindStr(psz, StrLen(psz), ichLast);
}
/*------------------------------------------------------------------------------------------
Return the zero-based index, no greater than ichLast, of the first character of the
last substring in this StrBase<> that matches the substring, (prgch, cch), passed as
parameters. Return -1 if the substring is not found. This is case sensitive.
------------------------------------------------------------------------------------------*/
int ReverseFindStr(const XChar * prgch, size_t cch, int ichLast = 0x7FFFFFFF) const
{
AssertObj(this);
AssertArray(prgch, cch);
Assert(ichLast >= 0);
if (ichLast > Length() - cch)
ichLast = Length() - cch;
int ich;
for (ich = ichLast; ich >= 0; --ich)
{
if (m_pbuf->m_rgch[ich] == prgch[0] &&
0 == memcmp(m_pbuf->m_rgch + ich, prgch, cch * sizeof(XChar)))
{
return ich;
}
}
return -1;
}
#ifdef GR_FW
/*------------------------------------------------------------------------------------------
Return the zero-based index, no greater than ichLast, of the first character of the
last substring in this StrBase<> that matches the substring, stb, passed as a parameter,
not considering the case. Return -1 if the substring is not found.
------------------------------------------------------------------------------------------*/
int ReverseFindStrCI(const StrBase<XChar> & stb, int ichLast = 0x7FFFFFFF) const
{
AssertObj(this);
AssertObj(&stb);
Assert(ichLast >= 0);
if (m_pbuf == stb.m_pbuf)
return 0;
return ReverseFindStrCI(stb.m_pbuf->m_rgch, stb.Length(), ichLast);
}
/*------------------------------------------------------------------------------------------
Return the zero-based index, no greater than ichLast, of the first character of the
last substring in this StrBase<> that matches the substring, psz, passed as a parameter,
not considering the case. Return -1 if the substring is not found.
------------------------------------------------------------------------------------------*/
int ReverseFindStrCI(const XChar * psz, int ichLast = 0x7FFFFFFF) const
{
AssertObj(this);
AssertPszN(psz);
Assert(ichLast >= 0);
return ReverseFindStrCI(psz, StrLen(psz), ichLast);
}
/*------------------------------------------------------------------------------------------
Return the zero-based index, no greater than ichLast, of the first character of the
last substring in this StrBase<> that matches the substring, (prgch, cch), passed as
parameters, not considering the case. Return -1 if the substring is not found.
------------------------------------------------------------------------------------------*/
int ReverseFindStrCI(const XChar * prgch, int cch, int ichLast = 0x7FFFFFFF) const
{
AssertObj(this);
AssertArray(prgch, cch);
Assert(ichLast >= 0);
if (ichLast > Length() - cch)
ichLast = Length() - cch;
XChar ch = /*gr::*/ToLower(prgch[0]);
int ich;
for (ich = ichLast; ich >= 0; --ich)
{
if (/*gr::*/ToLower(m_pbuf->m_rgch[ich]) == ch &&
EqualsRgchCI(m_pbuf->m_rgch + ich, prgch, cch))
{
return ich;
}
}
return -1;
}
#endif
protected:
friend class StrBase<YChar>;
//:>****************************************************************************************
//:> Struct StrBuffer.
//:>****************************************************************************************
/*------------------------------------------------------------------------------------------
The struct StrBuffer is used by StrBase<> to store the characters on the heap. StrBuffer
keeps a reference count. Thus, assignment of one StrBase<> to another simply results in
the two pointing to the same block of memory.
StrBuffer stores the byte count in its member variable m_cb immediately followed by the
characters in its member variable m_rgch[]. This layout matches a BSTR, so if a client
asks for a BSTR it gets a pointer to m_rgch.
The static instance of StrBuffer, s_bufEmpty, is used to represent an empty string.
@h3{Hungarian: buf}
------------------------------------------------------------------------------------------*/
struct StrBuffer
{
public:
//:> We track the ref count minus one so the static StrBase::s_bufEmpty is useable
//:> without initialization by a constructor. This is so other constructors can use
//:> instances of StrBase without having to deal with the possibility of s_bufEmpty
//:> being uninitialized.
long m_crefMinusOne; // The reference count minus one.
size_t m_cb; // The byte count.
XChar m_rgch[1]; // The characters.
#ifdef DEBUG
// Check to make certain we have a valid internal state for debugging purposes.
bool AssertValid(void)
{
AssertPtr(this);
Assert(0 <= m_crefMinusOne);
Assert(m_cb >= 0);
Assert(0 == m_cb % sizeof(XChar));
AssertArray(m_rgch, m_cb / sizeof(XChar) + 1);
Assert(0 == m_rgch[m_cb / sizeof(XChar)]);
return true;
}
#endif
// Static method to create a new StrBuffer. This calls malloc to allocate the buffer.
static StrBuffer * Create(int cch)
{
Assert(0 <= cch);
int cb = sizeof(StrBuffer) + cch * sizeof(XChar);
Assert(cb >= sizeof(StrBuffer));
StrBuffer * pbuf = (StrBuffer *)malloc(cb);
if (!pbuf)
ThrowHr(WarnHr(E_OUTOFMEMORY));
pbuf->m_crefMinusOne = 0;
pbuf->m_cb = cch * sizeof(XChar);
pbuf->m_rgch[cch] = 0;
AssertObj(pbuf);
return pbuf;
}
// Add a reference to this StrBuffer, by incrementing m_crefMinusOne.
void AddRef(void)
{
AssertObj(this);
m_crefMinusOne++;
//DoAssert(0 < InterlockedIncrement(&m_crefMinusOne));
}
// Release a reference to this StrBuffer, by decrementing m_crefMinusOne.
void Release(void)
{
AssertObj(this);
Assert(0 <= m_crefMinusOne);
if(0 > --m_crefMinusOne)
free(this);
}
// Return the count of characters.
size_t Cch(void)
{
Assert(0 == m_cb % sizeof(XChar));
return m_cb / sizeof(XChar);
}
}; // End of StrBuffer.
// Protected StrBase<> memory management functions.
static StrBuffer s_bufEmpty; // The empty buffer.
StrBuffer * m_pbuf; // Pointer to a StrBuffer which holds the characters for this StrBase<>.
/*------------------------------------------------------------------------------------------
Set the buffer (m_pbuf) for this StrBase<> to pbuf, passed as a parameter, without
incrementing the reference count. This assumes a reference count is being transferred
in.
------------------------------------------------------------------------------------------*/
void _AttachBuf(StrBuffer * pbuf)
{
AssertPtr(pbuf);
AssertPtr(m_pbuf);
Assert(pbuf != m_pbuf);
m_pbuf->Release();
m_pbuf = pbuf;
AssertObj(this);
}
/*------------------------------------------------------------------------------------------
Set the buffer (m_pbuf) for this StrBase<> to pbuf, passed as a parameter, by calling
AddRef() on the buffer, pbuf.
------------------------------------------------------------------------------------------*/
void _SetBuf(StrBuffer * pbuf)
{
AssertPtr(pbuf);
AssertPtr(m_pbuf);
if (pbuf != m_pbuf)
{
pbuf->AddRef();
m_pbuf->Release();
m_pbuf = pbuf;
}
AssertObj(this);
}
void _Replace(int ichMin, int ichLim, const XChar * prgchIns, XChar chIns, size_t cchIns);
//int nCodePage);
void _Replace(int ichMin, int ichLim, const YChar * prgchIns, YChar chIns, size_t cchIns);
//int nCodePage);
void _Copy(void);
/*------------------------------------------------------------------------------------------
Callback for formatting text to a StrBase<>. See FormatText.
@h3{Parameters}
@code{
pv -- pointer to a stream or some type of string object. It is supplied by the
caller of FormatText and passed on as the first argument whenever pfnWrite is
called.
prgch -- string used as the template.
cch -- number of characters in the template string.
}
------------------------------------------------------------------------------------------*/
}; //:> End of StrBase<>.
//:Associate with "Generic Text Comparison Functions".
/*----------------------------------------------------------------------------------------------
Return true if this zero-terminated string is equal to the StrBase<> stb of the same
character type. (See ${StrBase<>#Equals}).
----------------------------------------------------------------------------------------------*/
template<typename XChar>
inline bool operator == (const XChar * psz, const StrBase<XChar> & stb)
{
AssertPszN(psz);
return stb.Equals(psz, StrLen(psz));
}
/*----------------------------------------------------------------------------------------------
Return true if this zero-terminated string is not equal to the StrBase<> stb of the same
character type. (See ${StrBase<>#Equals}).
----------------------------------------------------------------------------------------------*/
template<typename XChar>
inline bool operator != (const XChar * psz, const StrBase<XChar> & stb)
{
AssertPszN(psz);
AssertObj(&stb);
return !stb.Equals(psz, StrLen(psz));
}
//:Associate with StrBase<>.
// Typedef and instantiate StrBase<utf16> for unicode characters. @h3{Hungarian: stu}
typedef StrBase<utf16> StrUni;
// Typedef and instantiate StrBase<schar> for ansi characters. @h3{Hungarian: sta}
typedef StrBase<schar> StrAnsi;
// Typedef and instantiate StrBase<achar> for achar characters. @h3{Hungarian: str}
typedef StrBase<achar> StrApp;
} // namespace gr
#if !defined(GR_NAMESPACE)
using namespace gr;
#endif
#include "UtilString_i.cpp"
#endif //!UTILSTRING_H
|