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
|
/** @file
* IPRT - C++ string class.
*/
/*
* Copyright (C) 2007-2025 Oracle and/or its affiliates.
*
* This file is part of VirtualBox base platform packages, as
* available from https://www.virtualbox.org.
*
* This program 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, in version 3 of the
* License.
*
* This program 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 this program; if not, see <https://www.gnu.org/licenses>.
*
* The contents of this file may alternatively be used under the terms
* of the Common Development and Distribution License Version 1.0
* (CDDL), a copy of it is provided in the "COPYING.CDDL" file included
* in the VirtualBox distribution, in which case the provisions of the
* CDDL are applicable instead of those of the GPL.
*
* You may elect to license modified versions of this file under the
* terms and conditions of either the GPL or the CDDL or both.
*
* SPDX-License-Identifier: GPL-3.0-only OR CDDL-1.0
*/
#ifndef IPRT_INCLUDED_cpp_ministring_h
#define IPRT_INCLUDED_cpp_ministring_h
#ifndef RT_WITHOUT_PRAGMA_ONCE
# pragma once
#endif
#include <iprt/mem.h>
#include <iprt/string.h>
#include <iprt/stdarg.h>
#include <iprt/cpp/list.h>
#include <new>
/** @defgroup grp_rt_cpp_string C++ String support
* @ingroup grp_rt_cpp
* @{
*/
/** @brief C++ string class.
*
* This is a C++ string class that does not depend on anything else except IPRT
* memory management functions. Semantics are like in std::string, except it
* can do a lot less.
*
* Note that RTCString does not differentiate between NULL strings
* and empty strings. In other words, RTCString("") and RTCString(NULL)
* behave the same. In both cases, RTCString allocates no memory, reports
* a zero length and zero allocated bytes for both, and returns an empty
* C-style string from c_str().
*
* @note RTCString ASSUMES that all strings it deals with are valid UTF-8.
* The caller is responsible for not breaking this assumption.
*/
#ifdef VBOX
/** @remarks Much of the code in here used to be in com::Utf8Str so that
* com::Utf8Str can now derive from RTCString and only contain code
* that is COM-specific, such as com::Bstr conversions. Compared to
* the old Utf8Str though, RTCString always knows the length of its
* member string and the size of the buffer so it can use memcpy()
* instead of strdup().
*/
#endif
class RT_DECL_CLASS RTCString
{
public:
#if defined(RT_NEED_NEW_AND_DELETE) && ( !defined(RTMEM_WRAP_SOME_NEW_AND_DELETE_TO_EF) \
|| defined(RTMEM_NO_WRAP_SOME_NEW_AND_DELETE_TO_EF))
RTMEM_IMPLEMENT_NEW_AND_DELETE();
#else
RTMEMEF_NEW_AND_DELETE_OPERATORS();
#endif
/**
* Creates an empty string that has no memory allocated.
*/
RTCString()
: m_psz(NULL),
m_cch(0),
m_cbAllocated(0)
{
}
/**
* Creates a copy of another RTCString.
*
* This allocates s.length() + 1 bytes for the new instance, unless s is empty.
*
* @param a_rSrc The source string.
*
* @throws std::bad_alloc
*/
RTCString(const RTCString &a_rSrc)
{
copyFromN(a_rSrc.m_psz, a_rSrc.m_cch);
}
/**
* Creates a copy of a C-style string.
*
* This allocates strlen(pcsz) + 1 bytes for the new instance, unless s is empty.
*
* @param pcsz The source string.
*
* @throws std::bad_alloc
*/
RTCString(const char *pcsz)
{
copyFromN(pcsz, pcsz ? strlen(pcsz) : 0);
}
/**
* Create a partial copy of another RTCString.
*
* @param a_rSrc The source string.
* @param a_offSrc The byte offset into the source string.
* @param a_cchSrc The max number of chars (encoded UTF-8 bytes)
* to copy from the source string.
*/
RTCString(const RTCString &a_rSrc, size_t a_offSrc, size_t a_cchSrc = npos)
{
if (a_offSrc < a_rSrc.m_cch)
copyFromN(&a_rSrc.m_psz[a_offSrc], RT_MIN(a_cchSrc, a_rSrc.m_cch - a_offSrc));
else
{
m_psz = NULL;
m_cch = 0;
m_cbAllocated = 0;
}
}
/**
* Create a partial copy of a C-style string.
*
* @param a_pszSrc The source string (UTF-8).
* @param a_cchSrc The max number of chars (encoded UTF-8 bytes)
* to copy from the source string. This must not
* be '0' as the compiler could easily mistake
* that for the va_list constructor.
*/
RTCString(const char *a_pszSrc, size_t a_cchSrc)
{
size_t cchMax = a_pszSrc ? RTStrNLen(a_pszSrc, a_cchSrc) : 0;
copyFromN(a_pszSrc, RT_MIN(a_cchSrc, cchMax));
}
/**
* Create a string containing @a a_cTimes repetitions of the character @a
* a_ch.
*
* @param a_cTimes The number of times the character is repeated.
* @param a_ch The character to fill the string with.
*/
RTCString(size_t a_cTimes, char a_ch)
: m_psz(NULL),
m_cch(0),
m_cbAllocated(0)
{
Assert((unsigned)a_ch < 0x80);
if (a_cTimes)
{
reserve(a_cTimes + 1);
memset(m_psz, a_ch, a_cTimes);
m_psz[a_cTimes] = '\0';
m_cch = a_cTimes;
}
}
/**
* Create a new string given the format string and its arguments.
*
* @param a_pszFormat Pointer to the format string (UTF-8),
* @see pg_rt_str_format.
* @param a_va Argument vector containing the arguments
* specified by the format string.
* @sa printfV
* @remarks Not part of std::string.
*/
RTCString(const char *a_pszFormat, va_list a_va) RT_IPRT_FORMAT_ATTR(1, 0)
: m_psz(NULL),
m_cch(0),
m_cbAllocated(0)
{
printfV(a_pszFormat, a_va);
}
/**
* Destructor.
*/
virtual ~RTCString()
{
cleanup();
}
/**
* String length in bytes.
*
* Returns the length of the member string in bytes, which is equal to strlen(c_str()).
* In other words, this does not count unicode codepoints; use utf8length() for that.
* The byte length is always cached so calling this is cheap and requires no
* strlen() invocation.
*
* @returns m_cbLength.
*/
size_t length() const
{
return m_cch;
}
/**
* String length in unicode codepoints.
*
* As opposed to length(), which returns the length in bytes, this counts
* the number of unicode codepoints. This is *not* cached so calling this
* is expensive.
*
* @returns Number of codepoints in the member string.
*/
size_t uniLength() const
{
return m_psz ? RTStrUniLen(m_psz) : 0;
}
/**
* The allocated buffer size (in bytes).
*
* Returns the number of bytes allocated in the internal string buffer, which is
* at least length() + 1 if length() > 0; for an empty string, this returns 0.
*
* @returns m_cbAllocated.
*/
size_t capacity() const
{
return m_cbAllocated;
}
/**
* Make sure at that least cb of buffer space is reserved.
*
* Requests that the contained memory buffer have at least cb bytes allocated.
* This may expand or shrink the string's storage, but will never truncate the
* contained string. In other words, cb will be ignored if it's smaller than
* length() + 1.
*
* @param cb New minimum size (in bytes) of member memory buffer.
*
* @throws std::bad_alloc On allocation error. The object is left unchanged.
*/
void reserve(size_t cb)
{
if ( ( cb != m_cbAllocated
&& cb > m_cch + 1)
|| ( m_psz == NULL
&& cb > 0))
{
int rc = RTStrRealloc(&m_psz, cb);
if (RT_SUCCESS(rc))
m_cbAllocated = cb;
#ifdef RT_EXCEPTIONS_ENABLED
else
throw std::bad_alloc();
#endif
}
}
/**
* A C like version of the reserve method, i.e. return code instead of throw.
*
* @returns VINF_SUCCESS or VERR_NO_STRING_MEMORY.
* @param cb New minimum size (in bytes) of member memory buffer.
*/
int reserveNoThrow(size_t cb) RT_NOEXCEPT
{
if ( ( cb != m_cbAllocated
&& cb > m_cch + 1)
|| ( m_psz == NULL
&& cb > 0))
{
int rc = RTStrRealloc(&m_psz, cb);
if (RT_SUCCESS(rc))
m_cbAllocated = cb;
else
return rc;
}
return VINF_SUCCESS;
}
/**
* Deallocates all memory.
*/
inline void setNull()
{
cleanup();
}
/**
* Assigns a copy of pcsz to @a this.
*
* @param pcsz The source string.
*
* @throws std::bad_alloc On allocation failure. The object is left describing
* a NULL string.
*
* @returns Reference to the object.
*/
RTCString &operator=(const char *pcsz)
{
if (m_psz != pcsz)
{
cleanup();
copyFromN(pcsz, pcsz ? strlen(pcsz) : 0);
}
return *this;
}
/**
* Assigns a copy of s to @a this.
*
* @param s The source string.
*
* @throws std::bad_alloc On allocation failure. The object is left describing
* a NULL string.
*
* @returns Reference to the object.
*/
RTCString &operator=(const RTCString &s)
{
if (this != &s)
{
cleanup();
copyFromN(s.m_psz, s.m_cch);
}
return *this;
}
/**
* Assigns a copy of another RTCString.
*
* @param a_rSrc Reference to the source string.
* @throws std::bad_alloc On allocation error. The object is left unchanged.
*/
RTCString &assign(const RTCString &a_rSrc);
/**
* Assigns a copy of another RTCString.
*
* @param a_rSrc Reference to the source string.
* @returns VINF_SUCCESS or VERR_NO_STRING_MEMORY.
*/
int assignNoThrow(const RTCString &a_rSrc) RT_NOEXCEPT;
/**
* Assigns a copy of a C-style string.
*
* @param a_pszSrc Pointer to the C-style source string.
* @throws std::bad_alloc On allocation error. The object is left unchanged.
* @remarks ASSUMES valid
*/
RTCString &assign(const char *a_pszSrc);
/**
* Assigns a copy of a C-style string.
*
* @param a_pszSrc Pointer to the C-style source string.
* @returns VINF_SUCCESS or VERR_NO_STRING_MEMORY.
* @remarks ASSUMES valid
*/
int assignNoThrow(const char *a_pszSrc) RT_NOEXCEPT;
/**
* Assigns a partial copy of another RTCString.
*
* @param a_rSrc The source string.
* @param a_offSrc The byte offset into the source string.
* @param a_cchSrc The max number of chars (encoded UTF-8 bytes)
* to copy from the source string.
* @throws std::bad_alloc On allocation error. The object is left unchanged.
*/
RTCString &assign(const RTCString &a_rSrc, size_t a_offSrc, size_t a_cchSrc = npos);
/**
* Assigns a partial copy of another RTCString.
*
* @param a_rSrc The source string.
* @param a_offSrc The byte offset into the source string.
* @param a_cchSrc The max number of chars (encoded UTF-8 bytes)
* to copy from the source string.
* @returns VINF_SUCCESS or VERR_NO_STRING_MEMORY.
*/
int assignNoThrow(const RTCString &a_rSrc, size_t a_offSrc, size_t a_cchSrc = npos) RT_NOEXCEPT;
/**
* Assigns a partial copy of a C-style string.
*
* @param a_pszSrc The source string (UTF-8).
* @param a_cchSrc The max number of chars (encoded UTF-8 bytes)
* to copy from the source string.
* @throws std::bad_alloc On allocation error. The object is left unchanged.
*/
RTCString &assign(const char *a_pszSrc, size_t a_cchSrc);
/**
* Assigns a partial copy of a C-style string.
*
* @param a_pszSrc The source string (UTF-8).
* @param a_cchSrc The max number of chars (encoded UTF-8 bytes)
* to copy from the source string.
* @returns VINF_SUCCESS or VERR_NO_STRING_MEMORY.
*/
int assignNoThrow(const char *a_pszSrc, size_t a_cchSrc) RT_NOEXCEPT;
/**
* Assigs a string containing @a a_cTimes repetitions of the character @a a_ch.
*
* @param a_cTimes The number of times the character is repeated.
* @param a_ch The character to fill the string with.
* @throws std::bad_alloc On allocation error. The object is left unchanged.
*/
RTCString &assign(size_t a_cTimes, char a_ch);
/**
* Assigs a string containing @a a_cTimes repetitions of the character @a a_ch.
*
* @param a_cTimes The number of times the character is repeated.
* @param a_ch The character to fill the string with.
* @returns VINF_SUCCESS or VERR_NO_STRING_MEMORY.
*/
int assignNoThrow(size_t a_cTimes, char a_ch) RT_NOEXCEPT;
/**
* Assigns the output of the string format operation (RTStrPrintf).
*
* @param pszFormat Pointer to the format string,
* @see pg_rt_str_format.
* @param ... Ellipsis containing the arguments specified by
* the format string.
*
* @throws std::bad_alloc On allocation error. Object state is undefined.
*
* @returns Reference to the object.
*/
RTCString &printf(const char *pszFormat, ...) RT_IPRT_FORMAT_ATTR(1, 2);
/**
* Assigns the output of the string format operation (RTStrPrintf).
*
* @param pszFormat Pointer to the format string,
* @see pg_rt_str_format.
* @param ... Ellipsis containing the arguments specified by
* the format string.
*
* @returns VINF_SUCCESS or VERR_NO_STRING_MEMORY.
*/
int printfNoThrow(const char *pszFormat, ...) RT_NOEXCEPT RT_IPRT_FORMAT_ATTR(1, 2);
/**
* Assigns the output of the string format operation (RTStrPrintfV).
*
* @param pszFormat Pointer to the format string,
* @see pg_rt_str_format.
* @param va Argument vector containing the arguments
* specified by the format string.
*
* @throws std::bad_alloc On allocation error. Object state is undefined.
*
* @returns Reference to the object.
*/
RTCString &printfV(const char *pszFormat, va_list va) RT_IPRT_FORMAT_ATTR(1, 0);
/**
* Assigns the output of the string format operation (RTStrPrintfV).
*
* @param pszFormat Pointer to the format string,
* @see pg_rt_str_format.
* @param va Argument vector containing the arguments
* specified by the format string.
*
* @returns VINF_SUCCESS or VERR_NO_STRING_MEMORY.
*/
int printfVNoThrow(const char *pszFormat, va_list va) RT_NOEXCEPT RT_IPRT_FORMAT_ATTR(1, 0);
/**
* Appends the string @a that to @a rThat.
*
* @param rThat The string to append.
* @throws std::bad_alloc On allocation error. The object is left unchanged.
* @returns Reference to the object.
*/
RTCString &append(const RTCString &rThat);
/**
* Appends the string @a that to @a rThat.
*
* @param rThat The string to append.
* @returns VINF_SUCCESS or VERR_NO_STRING_MEMORY.
*/
int appendNoThrow(const RTCString &rThat) RT_NOEXCEPT;
/**
* Appends the string @a pszSrc to @a this.
*
* @param pszSrc The C-style string to append.
* @throws std::bad_alloc On allocation error. The object is left unchanged.
* @returns Reference to the object.
*/
RTCString &append(const char *pszSrc);
/**
* Appends the string @a pszSrc to @a this.
*
* @param pszSrc The C-style string to append.
* @returns VINF_SUCCESS or VERR_NO_STRING_MEMORY.
*/
int appendNoThrow(const char *pszSrc) RT_NOEXCEPT;
/**
* Appends the a substring from @a rThat to @a this.
*
* @param rThat The string to append a substring from.
* @param offStart The start of the substring to append (byte offset,
* not codepoint).
* @param cchMax The maximum number of bytes to append.
* @throws std::bad_alloc On allocation error. The object is left unchanged.
* @returns Reference to the object.
*/
RTCString &append(const RTCString &rThat, size_t offStart, size_t cchMax = RTSTR_MAX);
/**
* Appends the a substring from @a rThat to @a this.
*
* @param rThat The string to append a substring from.
* @param offStart The start of the substring to append (byte offset,
* not codepoint).
* @param cchMax The maximum number of bytes to append.
* @returns VINF_SUCCESS or VERR_NO_STRING_MEMORY.
*/
int appendNoThrow(const RTCString &rThat, size_t offStart, size_t cchMax = RTSTR_MAX) RT_NOEXCEPT;
/**
* Appends the first @a cchMax chars from string @a pszThat to @a this.
*
* @param pszThat The C-style string to append.
* @param cchMax The maximum number of bytes to append.
* @throws std::bad_alloc On allocation error. The object is left unchanged.
* @returns Reference to the object.
*/
RTCString &append(const char *pszThat, size_t cchMax);
/**
* Appends the first @a cchMax chars from string @a pszThat to @a this.
*
* @param pszThat The C-style string to append.
* @param cchMax The maximum number of bytes to append.
* @returns VINF_SUCCESS or VERR_NO_STRING_MEMORY.
*/
int appendNoThrow(const char *pszThat, size_t cchMax) RT_NOEXCEPT;
/**
* Appends the given character to @a this.
*
* @param ch The character to append.
* @throws std::bad_alloc On allocation error. The object is left unchanged.
* @returns Reference to the object.
*/
RTCString &append(char ch);
/**
* Appends the given character to @a this.
*
* @param ch The character to append.
* @returns VINF_SUCCESS or VERR_NO_STRING_MEMORY.
*/
int appendNoThrow(char ch) RT_NOEXCEPT;
/**
* Appends the given unicode code point to @a this.
*
* @param uc The unicode code point to append.
* @throws std::bad_alloc On allocation error. The object is left unchanged.
* @returns Reference to the object.
*/
RTCString &appendCodePoint(RTUNICP uc);
/**
* Appends the given unicode code point to @a this.
*
* @param uc The unicode code point to append.
* @returns VINF_SUCCESS, VERR_INVALID_UTF8_ENCODING or VERR_NO_STRING_MEMORY.
*/
int appendCodePointNoThrow(RTUNICP uc) RT_NOEXCEPT;
/**
* Appends the output of the string format operation (RTStrPrintf).
*
* @param pszFormat Pointer to the format string,
* @see pg_rt_str_format.
* @param ... Ellipsis containing the arguments specified by
* the format string.
*
* @throws std::bad_alloc On allocation error. Object state is undefined.
*
* @returns Reference to the object.
*/
RTCString &appendPrintf(const char *pszFormat, ...) RT_IPRT_FORMAT_ATTR(1, 2);
/**
* Appends the output of the string format operation (RTStrPrintf).
*
* @param pszFormat Pointer to the format string,
* @see pg_rt_str_format.
* @param ... Ellipsis containing the arguments specified by
* the format string.
*
* @returns VINF_SUCCESS or VERR_NO_STRING_MEMORY.
*/
int appendPrintfNoThrow(const char *pszFormat, ...) RT_NOEXCEPT RT_IPRT_FORMAT_ATTR(1, 2);
/**
* Appends the output of the string format operation (RTStrPrintfV).
*
* @param pszFormat Pointer to the format string,
* @see pg_rt_str_format.
* @param va Argument vector containing the arguments
* specified by the format string.
*
* @throws std::bad_alloc On allocation error. Object state is undefined.
*
* @returns Reference to the object.
*/
RTCString &appendPrintfV(const char *pszFormat, va_list va) RT_IPRT_FORMAT_ATTR(1, 0);
/**
* Appends the output of the string format operation (RTStrPrintfV).
*
* @param pszFormat Pointer to the format string,
* @see pg_rt_str_format.
* @param va Argument vector containing the arguments
* specified by the format string.
*
* @returns VINF_SUCCESS or VERR_NO_STRING_MEMORY.
*/
int appendPrintfVNoThrow(const char *pszFormat, va_list va) RT_NOEXCEPT RT_IPRT_FORMAT_ATTR(1, 0);
/**
* Shortcut to append(), RTCString variant.
*
* @param rThat The string to append.
* @returns Reference to the object.
*/
RTCString &operator+=(const RTCString &rThat)
{
return append(rThat);
}
/**
* Shortcut to append(), const char* variant.
*
* @param pszThat The C-style string to append.
* @returns Reference to the object.
*/
RTCString &operator+=(const char *pszThat)
{
return append(pszThat);
}
/**
* Shortcut to append(), char variant.
*
* @param ch The character to append.
*
* @returns Reference to the object.
*/
RTCString &operator+=(char ch)
{
return append(ch);
}
/**
* Converts the member string to upper case.
*
* @returns Reference to the object.
*/
RTCString &toUpper() RT_NOEXCEPT
{
if (length())
{
/* Folding an UTF-8 string may result in a shorter encoding (see
testcase), so recalculate the length afterwards. */
::RTStrToUpper(m_psz);
size_t cchNew = strlen(m_psz);
Assert(cchNew <= m_cch);
m_cch = cchNew;
}
return *this;
}
/**
* Converts the member string to lower case.
*
* @returns Reference to the object.
*/
RTCString &toLower() RT_NOEXCEPT
{
if (length())
{
/* Folding an UTF-8 string may result in a shorter encoding (see
testcase), so recalculate the length afterwards. */
::RTStrToLower(m_psz);
size_t cchNew = strlen(m_psz);
Assert(cchNew <= m_cch);
m_cch = cchNew;
}
return *this;
}
/**
* Erases a sequence from the string.
*
* @returns Reference to the object.
* @param offStart Where in @a this string to start erasing.
* @param cchLength How much following @a offStart to erase.
*/
RTCString &erase(size_t offStart = 0, size_t cchLength = npos) RT_NOEXCEPT;
/**
* Replaces a span of @a this string with a replacement string.
*
* @returns Reference to the object.
* @param offStart Where in @a this string to start replacing.
* @param cchLength How much following @a offStart to replace. npos is
* accepted.
* @param rStrReplacement The replacement string.
*
* @throws std::bad_alloc On allocation error. The object is left unchanged.
*
* @note Non-standard behaviour if offStart is beyond the end of the string.
* No change will occure and strict builds hits a debug assertion.
*/
RTCString &replace(size_t offStart, size_t cchLength, const RTCString &rStrReplacement);
/**
* Replaces a span of @a this string with a replacement string.
*
* @returns VINF_SUCCESS, VERR_OUT_OF_RANGE or VERR_NO_STRING_MEMORY.
* @param offStart Where in @a this string to start replacing.
* @param cchLength How much following @a offStart to replace. npos is
* accepted.
* @param rStrReplacement The replacement string.
*/
int replaceNoThrow(size_t offStart, size_t cchLength, const RTCString &rStrReplacement) RT_NOEXCEPT;
/**
* Replaces a span of @a this string with a replacement substring.
*
* @returns Reference to the object.
* @param offStart Where in @a this string to start replacing.
* @param cchLength How much following @a offStart to replace. npos is
* accepted.
* @param rStrReplacement The string from which a substring is taken.
* @param offReplacement The offset into @a rStrReplacement where the
* replacement substring starts.
* @param cchReplacement The maximum length of the replacement substring.
*
* @throws std::bad_alloc On allocation error. The object is left unchanged.
*
* @note Non-standard behaviour if offStart or offReplacement is beyond the
* end of the repective strings. No change is made in the former case,
* while we consider it an empty string in the latter. In both
* situation a debug assertion is raised in strict builds.
*/
RTCString &replace(size_t offStart, size_t cchLength, const RTCString &rStrReplacement,
size_t offReplacement, size_t cchReplacement);
/**
* Replaces a span of @a this string with a replacement substring.
*
* @returns VINF_SUCCESS, VERR_OUT_OF_RANGE or VERR_NO_STRING_MEMORY.
* @param offStart Where in @a this string to start replacing.
* @param cchLength How much following @a offStart to replace. npos is
* accepted.
* @param rStrReplacement The string from which a substring is taken.
* @param offReplacement The offset into @a rStrReplacement where the
* replacement substring starts.
* @param cchReplacement The maximum length of the replacement substring.
*/
int replaceNoThrow(size_t offStart, size_t cchLength, const RTCString &rStrReplacement,
size_t offReplacement, size_t cchReplacement) RT_NOEXCEPT;
/**
* Replaces a span of @a this string with the replacement string.
*
* @returns Reference to the object.
* @param offStart Where in @a this string to start replacing.
* @param cchLength How much following @a offStart to replace. npos is
* accepted.
* @param pszReplacement The replacement string.
*
* @throws std::bad_alloc On allocation error. The object is left unchanged.
*
* @note Non-standard behaviour if offStart is beyond the end of the string.
* No change will occure and strict builds hits a debug assertion.
*/
RTCString &replace(size_t offStart, size_t cchLength, const char *pszReplacement);
/**
* Replaces a span of @a this string with the replacement string.
*
* @returns VINF_SUCCESS, VERR_OUT_OF_RANGE or VERR_NO_STRING_MEMORY.
* @param offStart Where in @a this string to start replacing.
* @param cchLength How much following @a offStart to replace. npos is
* accepted.
* @param pszReplacement The replacement string.
*/
int replaceNoThrow(size_t offStart, size_t cchLength, const char *pszReplacement) RT_NOEXCEPT;
/**
* Replaces a span of @a this string with the replacement string.
*
* @returns Reference to the object.
* @param offStart Where in @a this string to start replacing.
* @param cchLength How much following @a offStart to replace. npos is
* accepted.
* @param pszReplacement The replacement string.
* @param cchReplacement How much of @a pszReplacement to use at most. If a
* zero terminator is found before reaching this value,
* we'll stop there.
*
* @throws std::bad_alloc On allocation error. The object is left unchanged.
*
* @note Non-standard behaviour if offStart is beyond the end of the string.
* No change will occure and strict builds hits a debug assertion.
*/
RTCString &replace(size_t offStart, size_t cchLength, const char *pszReplacement, size_t cchReplacement);
/**
* Replaces a span of @a this string with the replacement string.
*
* @returns VINF_SUCCESS, VERR_OUT_OF_RANGE or VERR_NO_STRING_MEMORY.
* @param offStart Where in @a this string to start replacing.
* @param cchLength How much following @a offStart to replace. npos is
* accepted.
* @param pszReplacement The replacement string.
* @param cchReplacement How much of @a pszReplacement to use at most. If a
* zero terminator is found before reaching this value,
* we'll stop there.
*/
int replaceNoThrow(size_t offStart, size_t cchLength, const char *pszReplacement, size_t cchReplacement) RT_NOEXCEPT;
/**
* Truncates the string to a max length of @a cchMax.
*
* If the string is shorter than @a cchMax characters, no change is made.
*
* If the @a cchMax is not at the start of a UTF-8 sequence, it will be adjusted
* down to the start of the UTF-8 sequence. Thus, after a truncation, the
* length() may be smaller than @a cchMax.
*
*/
RTCString &truncate(size_t cchMax) RT_NOEXCEPT;
/**
* Index operator.
*
* Returns the byte at the given index, or a null byte if the index is not
* smaller than length(). This does _not_ count codepoints but simply points
* into the member C-style string.
*
* @param i The index into the string buffer.
* @returns char at the index or null.
*/
inline char operator[](size_t i) const RT_NOEXCEPT
{
if (i < length())
return m_psz[i];
return '\0';
}
/**
* Returns the contained string as a const C-style string pointer.
*
* This never returns NULL; if the string is empty, this returns a pointer to
* static null byte.
*
* @returns const pointer to C-style string.
*/
inline const char *c_str() const RT_NOEXCEPT
{
return (m_psz) ? m_psz : "";
}
/**
* Returns a non-const raw pointer that allows to modify the string directly.
* As opposed to c_str() and raw(), this DOES return NULL for an empty string
* because we cannot return a non-const pointer to a static "" global.
*
* @warning
* -# Be sure not to modify data beyond the allocated memory! Call
* capacity() to find out how large that buffer is.
* -# After any operation that modifies the length of the string,
* you _must_ call RTCString::jolt(), or subsequent copy operations
* may go nowhere. Better not use mutableRaw() at all.
*/
char *mutableRaw() RT_NOEXCEPT
{
return m_psz;
}
/**
* Clean up after using mutableRaw.
*
* Intended to be called after something has messed with the internal string
* buffer (e.g. after using mutableRaw() or Utf8Str::asOutParam()). Resets the
* internal lengths correctly. Otherwise subsequent copy operations may go
* nowhere.
*/
void jolt() RT_NOEXCEPT
{
if (m_psz)
{
m_cch = strlen(m_psz);
m_cbAllocated = m_cch + 1; /* (Required for the Utf8Str::asOutParam case) */
}
else
{
m_cch = 0;
m_cbAllocated = 0;
}
}
/**
* Returns @c true if the member string has no length.
*
* This is @c true for instances created from both NULL and "" input
* strings.
*
* This states nothing about how much memory might be allocated.
*
* @returns @c true if empty, @c false if not.
*/
bool isEmpty() const RT_NOEXCEPT
{
return length() == 0;
}
/**
* Returns @c false if the member string has no length.
*
* This is @c false for instances created from both NULL and "" input
* strings.
*
* This states nothing about how much memory might be allocated.
*
* @returns @c false if empty, @c true if not.
*/
bool isNotEmpty() const RT_NOEXCEPT
{
return length() != 0;
}
/** Case sensitivity selector. */
enum CaseSensitivity
{
CaseSensitive,
CaseInsensitive
};
/**
* Compares the member string to a C-string.
*
* @param pcszThat The string to compare with.
* @param cs Whether comparison should be case-sensitive.
* @returns 0 if equal, negative if this is smaller than @a pcsz, positive
* if larger.
*/
int compare(const char *pcszThat, CaseSensitivity cs = CaseSensitive) const RT_NOEXCEPT
{
/* This klugde is for m_cch=0 and m_psz=NULL. pcsz=NULL and psz=""
are treated the same way so that str.compare(str2.c_str()) works. */
if (length() == 0)
return pcszThat == NULL || *pcszThat == '\0' ? 0 : -1;
if (cs == CaseSensitive)
return ::RTStrCmp(m_psz, pcszThat);
return ::RTStrICmp(m_psz, pcszThat);
}
/**
* Compares the member string to another RTCString.
*
* @param rThat The string to compare with.
* @param cs Whether comparison should be case-sensitive.
* @returns 0 if equal, negative if this is smaller than @a pcsz, positive
* if larger.
*/
int compare(const RTCString &rThat, CaseSensitivity cs = CaseSensitive) const RT_NOEXCEPT
{
if (cs == CaseSensitive)
return ::RTStrCmp(m_psz, rThat.m_psz);
return ::RTStrICmp(m_psz, rThat.m_psz);
}
/**
* Compares the two strings.
*
* @returns true if equal, false if not.
* @param rThat The string to compare with.
*/
bool equals(const RTCString &rThat) const RT_NOEXCEPT
{
return rThat.length() == length()
&& ( length() == 0
|| memcmp(rThat.m_psz, m_psz, length()) == 0);
}
/**
* Compares the two strings.
*
* @returns true if equal, false if not.
* @param pszThat The string to compare with.
*/
bool equals(const char *pszThat) const RT_NOEXCEPT
{
/* This klugde is for m_cch=0 and m_psz=NULL. pcsz=NULL and psz=""
are treated the same way so that str.equals(str2.c_str()) works. */
if (length() == 0)
return pszThat == NULL || *pszThat == '\0';
return RTStrCmp(pszThat, m_psz) == 0;
}
/**
* Compares the two strings ignoring differences in case.
*
* @returns true if equal, false if not.
* @param that The string to compare with.
*/
bool equalsIgnoreCase(const RTCString &that) const RT_NOEXCEPT
{
/* Unfolded upper and lower case characters may require different
amount of encoding space, so the length optimization doesn't work. */
return RTStrICmp(that.m_psz, m_psz) == 0;
}
/**
* Compares the two strings ignoring differences in case.
*
* @returns true if equal, false if not.
* @param pszThat The string to compare with.
*/
bool equalsIgnoreCase(const char *pszThat) const RT_NOEXCEPT
{
/* This klugde is for m_cch=0 and m_psz=NULL. pcsz=NULL and psz=""
are treated the same way so that str.equalsIgnoreCase(str2.c_str()) works. */
if (length() == 0)
return pszThat == NULL || *pszThat == '\0';
return RTStrICmp(pszThat, m_psz) == 0;
}
/** @name Comparison operators.
* @{ */
bool operator==(const RTCString &that) const { return equals(that); }
bool operator!=(const RTCString &that) const { return !equals(that); }
bool operator<( const RTCString &that) const { return compare(that) < 0; }
bool operator>( const RTCString &that) const { return compare(that) > 0; }
bool operator==(const char *pszThat) const { return equals(pszThat); }
bool operator!=(const char *pszThat) const { return !equals(pszThat); }
bool operator<( const char *pszThat) const { return compare(pszThat) < 0; }
bool operator>( const char *pszThat) const { return compare(pszThat) > 0; }
/** @} */
/** Max string offset value.
*
* When returned by a method, this indicates failure. When taken as input,
* typically a default, it means all the way to the string terminator.
*/
static const size_t npos;
/**
* Find the given substring.
*
* Looks for @a pszNeedle in @a this starting at @a offStart and returns its
* position as a byte (not codepoint) offset, counting from the beginning of
* @a this as 0.
*
* @param pszNeedle The substring to find.
* @param offStart The (byte) offset into the string buffer to start
* searching.
*
* @returns 0 based position of pszNeedle. npos if not found.
*/
size_t find(const char *pszNeedle, size_t offStart = 0) const RT_NOEXCEPT;
size_t find_first_of(const char *pszNeedle, size_t offStart = 0) const RT_NOEXCEPT
{ return find(pszNeedle, offStart); }
/**
* Find the given substring.
*
* Looks for @a pStrNeedle in @a this starting at @a offStart and returns its
* position as a byte (not codepoint) offset, counting from the beginning of
* @a this as 0.
*
* @param pStrNeedle The substring to find.
* @param offStart The (byte) offset into the string buffer to start
* searching.
*
* @returns 0 based position of pStrNeedle. npos if not found or pStrNeedle is
* NULL or an empty string.
*/
size_t find(const RTCString *pStrNeedle, size_t offStart = 0) const RT_NOEXCEPT;
/**
* Find the given substring.
*
* Looks for @a rStrNeedle in @a this starting at @a offStart and returns its
* position as a byte (not codepoint) offset, counting from the beginning of
* @a this as 0.
*
* @param rStrNeedle The substring to find.
* @param offStart The (byte) offset into the string buffer to start
* searching.
*
* @returns 0 based position of pStrNeedle. npos if not found or pStrNeedle is
* NULL or an empty string.
*/
size_t find(const RTCString &rStrNeedle, size_t offStart = 0) const RT_NOEXCEPT;
size_t find_first_of(const RTCString &rStrNeedle, size_t offStart = 0) const RT_NOEXCEPT
{ return find(rStrNeedle, offStart); }
/**
* Find the given character (byte).
*
* @returns 0 based position of chNeedle. npos if not found or pStrNeedle is
* NULL or an empty string.
* @param chNeedle The character (byte) to find.
* @param offStart The (byte) offset into the string buffer to start
* searching. Default is start of the string.
*
* @note This searches for a C character value, not a codepoint. Use the
* string version to locate codepoints above U+7F.
*/
size_t find(char chNeedle, size_t offStart = 0) const RT_NOEXCEPT;
size_t find_first_of(char chNeedle, size_t offStart = 0) const RT_NOEXCEPT
{ return find(chNeedle, offStart); }
/**
* Replaces all occurences of cFind with cReplace in the member string.
* In order not to produce invalid UTF-8, the characters must be ASCII
* values less than 128; this is not verified.
*
* @param chFind Character to replace. Must be ASCII < 128.
* @param chReplace Character to replace cFind with. Must be ASCII < 128.
*/
void findReplace(char chFind, char chReplace) RT_NOEXCEPT;
/**
* Count the occurences of the specified character in the string.
*
* @param ch What to search for. Must be ASCII < 128.
* @remarks QString::count
*/
size_t count(char ch) const RT_NOEXCEPT;
/**
* Count the occurences of the specified sub-string in the string.
*
* @param psz What to search for.
* @param cs Case sensitivity selector.
* @remarks QString::count
*/
size_t count(const char *psz, CaseSensitivity cs = CaseSensitive) const RT_NOEXCEPT;
/**
* Count the occurences of the specified sub-string in the string.
*
* @param pStr What to search for.
* @param cs Case sensitivity selector.
* @remarks QString::count
*/
size_t count(const RTCString *pStr, CaseSensitivity cs = CaseSensitive) const RT_NOEXCEPT;
/**
* Strips leading and trailing spaces.
*
* @returns this
*/
RTCString &strip() RT_NOEXCEPT;
/**
* Strips leading spaces.
*
* @returns this
*/
RTCString &stripLeft() RT_NOEXCEPT;
/**
* Strips trailing spaces.
*
* @returns this
*/
RTCString &stripRight() RT_NOEXCEPT;
/**
* Returns a substring of @a this as a new Utf8Str.
*
* Works exactly like its equivalent in std::string. With the default
* parameters "0" and "npos", this always copies the entire string. The
* "pos" and "n" arguments represent bytes; it is the caller's responsibility
* to ensure that the offsets do not copy invalid UTF-8 sequences. When
* used in conjunction with find() and length(), this will work.
*
* @param pos Index of first byte offset to copy from @a this,
* counting from 0.
* @param n Number of bytes to copy, starting with the one at "pos".
* The copying will stop if the null terminator is encountered before
* n bytes have been copied.
*/
RTCString substr(size_t pos = 0, size_t n = npos) const
{
return RTCString(*this, pos, n);
}
/**
* Returns a substring of @a this as a new Utf8Str. As opposed to substr(), this
* variant takes codepoint offsets instead of byte offsets.
*
* @param pos Index of first unicode codepoint to copy from
* @a this, counting from 0.
* @param n Number of unicode codepoints to copy, starting with
* the one at "pos". The copying will stop if the null
* terminator is encountered before n codepoints have
* been copied.
*/
RTCString substrCP(size_t pos = 0, size_t n = npos) const;
/**
* Returns true if @a this ends with @a a_rThat (case sensitive compare).
*
* @param a_rThat Suffix to test for.
* @returns true if match, false if mismatch.
*/
bool endsWith(const RTCString &a_rThat) const RT_NOEXCEPT;
/**
* Returns true if @a this ends with @a a_rThat, ignoring case when comparing.
*
* @param a_rThat Suffix to test for.
* @returns true if match, false if mismatch.
*/
bool endsWithI(const RTCString &a_rThat) const RT_NOEXCEPT;
/**
* Returns true if @a this ends with @a that, selective case compare.
*
* @param a_rThat Suffix to test for.
* @param a_enmCase Case sensitivity selector.
* @returns true if match, false if mismatch.
*/
inline bool endsWith(const RTCString &a_rThat, CaseSensitivity a_enmCase) const RT_NOEXCEPT
{
if (a_enmCase == CaseSensitive)
return endsWith(a_rThat);
return endsWithI(a_rThat);
}
/**
* Returns true if @a this ends with @a that.
*
* @param a_pszSuffix The suffix to test for.
* @returns true if match, false if mismatch.
*/
bool endsWith(const char *a_pszSuffix) const RT_NOEXCEPT;
/**
* Returns true if @a this ends with @a a_pszSuffix of @a a_cchSuffix length
* (case sensitive compare).
*
* @param a_pszSuffix The suffix to test for.
* @param a_cchSuffix The length of the suffix string.
* @returns true if match, false if mismatch.
*/
bool endsWith(const char *a_pszSuffix, size_t a_cchSuffix) const RT_NOEXCEPT;
/**
* Returns true if @a this ends with @a a_pszSuffix, ignoring case when
* comparing.
*
* @param a_pszSuffix The suffix to test for.
* @returns true if match, false if mismatch.
*/
bool endsWithI(const char *a_pszSuffix) const RT_NOEXCEPT;
/**
* Returns true if @a this ends with @a a_pszSuffix of @a a_cchSuffix length,
* ignoring case when comparing.
*
* @param a_pszSuffix The suffix to test for.
* @param a_cchSuffix The length of the suffix string.
* @returns true if match, false if mismatch.
*/
bool endsWithI(const char *a_pszSuffix, size_t a_cchSuffix) const RT_NOEXCEPT;
/**
* Returns true if @a this ends with @a a_pszSuffix, selective case version.
*
* @param a_pszSuffix The suffix to test for.
* @param a_enmCase Case sensitivity selector.
* @returns true if match, false if mismatch.
*/
inline bool endsWith(const char *a_pszSuffix, CaseSensitivity a_enmCase) const RT_NOEXCEPT
{
if (a_enmCase == CaseSensitive)
return endsWith(a_pszSuffix);
return endsWithI(a_pszSuffix);
}
/**
* Returns true if @a this ends with @a a_pszSuffix of @a a_cchSuffix length,
* selective case version.
*
* @param a_pszSuffix The suffix to test for.
* @param a_cchSuffix The length of the suffix string.
* @param a_enmCase Case sensitivity selector.
* @returns true if match, false if mismatch.
*/
inline bool endsWith(const char *a_pszSuffix, size_t a_cchSuffix, CaseSensitivity a_enmCase) const RT_NOEXCEPT
{
if (a_enmCase == CaseSensitive)
return endsWith(a_pszSuffix, a_cchSuffix);
return endsWithI(a_pszSuffix, a_cchSuffix);
}
/**
* Returns true if @a this begins with @a a_rThat (case sensitive compare).
*
* @param a_rThat Prefix to test for.
* @returns true if match, false if mismatch.
*/
bool startsWith(const RTCString &a_rThat) const RT_NOEXCEPT;
/**
* Returns true if @a this begins with @a a_rThat, ignoring case when comparing.
*
* @param a_rThat Prefix to test for.
* @returns true if match, false if mismatch.
*/
bool startsWithI(const RTCString &a_rThat) const RT_NOEXCEPT;
/**
* Returns true if @a this begins with @a that.
*
* @param a_rThat Prefix to test for.
* @param a_enmCase Case sensitivity selector.
* @returns true if match, false if mismatch.
*/
inline bool startsWith(const RTCString &a_rThat, CaseSensitivity a_enmCase) const RT_NOEXCEPT
{
if (a_enmCase == CaseSensitive)
return endsWith(a_rThat);
return endsWithI(a_rThat);
}
/**
* Returns true if @a this begins with @a that.
*
* @param a_pszPrefix The prefix to test for.
* @returns true if match, false if mismatch.
*/
bool startsWith(const char *a_pszPrefix) const RT_NOEXCEPT;
/**
* Returns true if @a this begins with @a a_pszPrefix of @a a_cchPrefix length
* (case sensitive compare).
*
* @param a_pszPrefix The prefix to test for.
* @param a_cchPrefix The length of the prefix string.
* @returns true if match, false if mismatch.
*/
bool startsWith(const char *a_pszPrefix, size_t a_cchPrefix) const RT_NOEXCEPT;
/**
* Returns true if @a this begins with @a a_pszPrefix, ignoring case when
* comparing.
*
* @param a_pszPrefix The prefix to test for.
* @returns true if match, false if mismatch.
*/
bool startsWithI(const char *a_pszPrefix) const RT_NOEXCEPT;
/**
* Returns true if @a this begins with @a a_pszPrefix of @a a_cchPrefix length,
* ignoring case when comparing.
*
* @param a_pszPrefix The prefix to test for.
* @param a_cchPrefix The length of the prefix string.
* @returns true if match, false if mismatch.
*/
bool startsWithI(const char *a_pszPrefix, size_t a_cchPrefix) const RT_NOEXCEPT;
/**
* Returns true if @a this begins with @a a_pszPrefix, selective case version.
*
* @param a_pszPrefix The prefix to test for.
* @param a_enmCase Case sensitivity selector.
* @returns true if match, false if mismatch.
*/
inline bool startsWith(const char *a_pszPrefix, CaseSensitivity a_enmCase) const RT_NOEXCEPT
{
if (a_enmCase == CaseSensitive)
return startsWith(a_pszPrefix);
return startsWithI(a_pszPrefix);
}
/**
* Returns true if @a this begins with @a a_pszPrefix of @a a_cchPrefix length,
* selective case version.
*
* @param a_pszPrefix The prefix to test for.
* @param a_cchPrefix The length of the prefix string.
* @param a_enmCase Case sensitivity selector.
* @returns true if match, false if mismatch.
*/
inline bool startsWith(const char *a_pszPrefix, size_t a_cchPrefix, CaseSensitivity a_enmCase) const RT_NOEXCEPT
{
if (a_enmCase == CaseSensitive)
return startsWith(a_pszPrefix, a_cchPrefix);
return startsWithI(a_pszPrefix, a_cchPrefix);
}
/**
* Checks if the string starts with the given word, ignoring leading blanks.
*
* @param pszWord The word to test for.
* @param enmCase Case sensitivity selector.
* @returns true if match, false if mismatch.
*/
bool startsWithWord(const char *pszWord, CaseSensitivity enmCase = CaseSensitive) const RT_NOEXCEPT;
/**
* Checks if the string starts with the given word, ignoring leading blanks.
*
* @param rThat Prefix to test for.
* @param enmCase Case sensitivity selector.
* @returns true if match, false if mismatch.
*/
bool startsWithWord(const RTCString &rThat, CaseSensitivity enmCase = CaseSensitive) const RT_NOEXCEPT;
/**
* Returns true if @a this contains @a that (strstr).
*
* @param that Substring to look for.
* @param cs Case sensitivity selector.
* @returns true if found, false if not found.
*/
bool contains(const RTCString &that, CaseSensitivity cs = CaseSensitive) const RT_NOEXCEPT;
/**
* Returns true if @a this contains @a pszNeedle (strstr).
*
* @param pszNeedle Substring to look for.
* @param cs Case sensitivity selector.
* @returns true if found, false if not found.
*/
bool contains(const char *pszNeedle, CaseSensitivity cs = CaseSensitive) const RT_NOEXCEPT;
/**
* Attempts to convert the member string into a 32-bit integer.
*
* @returns 32-bit unsigned number on success.
* @returns 0 on failure.
*/
int32_t toInt32() const RT_NOEXCEPT
{
return RTStrToInt32(c_str());
}
/**
* Attempts to convert the member string into an unsigned 32-bit integer.
*
* @returns 32-bit unsigned number on success.
* @returns 0 on failure.
*/
uint32_t toUInt32() const RT_NOEXCEPT
{
return RTStrToUInt32(c_str());
}
/**
* Attempts to convert the member string into an 64-bit integer.
*
* @returns 64-bit unsigned number on success.
* @returns 0 on failure.
*/
int64_t toInt64() const RT_NOEXCEPT
{
return RTStrToInt64(c_str());
}
/**
* Attempts to convert the member string into an unsigned 64-bit integer.
*
* @returns 64-bit unsigned number on success.
* @returns 0 on failure.
*/
uint64_t toUInt64() const RT_NOEXCEPT
{
return RTStrToUInt64(c_str());
}
/**
* Attempts to convert the member string into an unsigned 64-bit integer.
*
* @param i Where to return the value on success.
* @returns IPRT error code, see RTStrToInt64.
*/
int toInt(uint64_t &i) const RT_NOEXCEPT;
/**
* Attempts to convert the member string into an unsigned 32-bit integer.
*
* @param i Where to return the value on success.
* @returns IPRT error code, see RTStrToInt32.
*/
int toInt(uint32_t &i) const RT_NOEXCEPT;
/** Splitting behavior regarding empty sections in the string. */
enum SplitMode
{
KeepEmptyParts, /**< Empty parts are added as empty strings to the result list. */
RemoveEmptyParts /**< Empty parts are skipped. */
};
/**
* Splits a string separated by strSep into its parts.
*
* @param a_rstrSep The separator to search for.
* @param a_enmMode How should empty parts be handled.
* @returns separated strings as string list.
* @throws std::bad_alloc On allocation error.
*/
RTCList<RTCString, RTCString *> split(const RTCString &a_rstrSep,
SplitMode a_enmMode = RemoveEmptyParts) const;
/**
* Joins a list of strings together using the provided separator and
* an optional prefix for each item in the list.
*
* @param a_rList The list to join.
* @param a_rstrPrefix The prefix used for appending to each item.
* @param a_rstrSep The separator used for joining.
* @returns joined string.
* @throws std::bad_alloc On allocation error.
*/
static RTCString joinEx(const RTCList<RTCString, RTCString *> &a_rList,
const RTCString &a_rstrPrefix /* = "" */,
const RTCString &a_rstrSep /* = "" */);
/**
* Joins a list of strings together using the provided separator.
*
* @param a_rList The list to join.
* @param a_rstrSep The separator used for joining.
* @returns joined string.
* @throws std::bad_alloc On allocation error.
*/
static RTCString join(const RTCList<RTCString, RTCString *> &a_rList,
const RTCString &a_rstrSep = "");
/**
* Swaps two strings in a fast way.
*
* Exception safe.
*
* @param a_rThat The string to swap with.
*/
inline void swap(RTCString &a_rThat) RT_NOEXCEPT
{
char *pszTmp = m_psz;
size_t cchTmp = m_cch;
size_t cbAllocatedTmp = m_cbAllocated;
m_psz = a_rThat.m_psz;
m_cch = a_rThat.m_cch;
m_cbAllocated = a_rThat.m_cbAllocated;
a_rThat.m_psz = pszTmp;
a_rThat.m_cch = cchTmp;
a_rThat.m_cbAllocated = cbAllocatedTmp;
}
protected:
/**
* Hide operator bool() to force people to use isEmpty() explicitly.
*/
operator bool() const;
/**
* Destructor implementation, also used to clean up in operator=() before
* assigning a new string.
*/
void cleanup() RT_NOEXCEPT
{
if (m_psz)
{
RTStrFree(m_psz);
m_psz = NULL;
m_cch = 0;
m_cbAllocated = 0;
}
}
/**
* Protected internal helper to copy a string.
*
* This ignores the previous object state, so either call this from a
* constructor or call cleanup() first. copyFromN() unconditionally sets
* the members to a copy of the given other strings and makes no
* assumptions about previous contents. Can therefore be used both in copy
* constructors, when member variables have no defined value, and in
* assignments after having called cleanup().
*
* @param pcszSrc The source string.
* @param cchSrc The number of chars (bytes) to copy from the
* source strings. RTSTR_MAX is NOT accepted.
*
* @throws std::bad_alloc On allocation failure. The object is left
* describing a NULL string.
*/
void copyFromN(const char *pcszSrc, size_t cchSrc)
{
if (cchSrc)
{
m_psz = RTStrAlloc(cchSrc + 1);
if (RT_LIKELY(m_psz))
{
m_cch = cchSrc;
m_cbAllocated = cchSrc + 1;
memcpy(m_psz, pcszSrc, cchSrc);
m_psz[cchSrc] = '\0';
}
else
{
m_cch = 0;
m_cbAllocated = 0;
#ifdef RT_EXCEPTIONS_ENABLED
throw std::bad_alloc();
#endif
}
}
else
{
m_cch = 0;
m_cbAllocated = 0;
m_psz = NULL;
}
}
/**
* Appends exactly @a cchSrc chars from @a pszSrc to @a this.
*
* This is an internal worker for the append() methods.
*
* @returns Reference to the object.
* @param pszSrc The source string.
* @param cchSrc The source string length (exact).
* @throws std::bad_alloc On allocation error. The object is left unchanged.
*
*/
RTCString &appendWorker(const char *pszSrc, size_t cchSrc);
/**
* Appends exactly @a cchSrc chars from @a pszSrc to @a this.
*
* This is an internal worker for the appendNoThrow() methods.
*
* @returns VINF_SUCCESS or VERR_NO_STRING_MEMORY.
* @param pszSrc The source string.
* @param cchSrc The source string length (exact).
*/
int appendWorkerNoThrow(const char *pszSrc, size_t cchSrc) RT_NOEXCEPT;
/**
* Replaces exatly @a cchLength chars at @a offStart with @a cchSrc from @a
* pszSrc.
*
* @returns Reference to the object.
* @param offStart Where in @a this string to start replacing.
* @param cchLength How much following @a offStart to replace. npos is
* accepted.
* @param pszSrc The replacement string.
* @param cchSrc The exactly length of the replacement string.
*
* @throws std::bad_alloc On allocation error. The object is left unchanged.
*/
RTCString &replaceWorker(size_t offStart, size_t cchLength, const char *pszSrc, size_t cchSrc);
/**
* Replaces exatly @a cchLength chars at @a offStart with @a cchSrc from @a
* pszSrc.
*
* @returns VINF_SUCCESS, VERR_OUT_OF_RANGE or VERR_NO_STRING_MEMORY.
* @param offStart Where in @a this string to start replacing.
* @param cchLength How much following @a offStart to replace. npos is
* accepted.
* @param pszSrc The replacement string.
* @param cchSrc The exactly length of the replacement string.
*/
int replaceWorkerNoThrow(size_t offStart, size_t cchLength, const char *pszSrc, size_t cchSrc) RT_NOEXCEPT;
static DECLCALLBACK(size_t) printfOutputCallback(void *pvArg, const char *pachChars, size_t cbChars);
static DECLCALLBACK(size_t) printfOutputCallbackNoThrow(void *pvArg, const char *pachChars, size_t cbChars) RT_NOEXCEPT;
char *m_psz; /**< The string buffer. */
size_t m_cch; /**< strlen(m_psz) - i.e. no terminator included. */
size_t m_cbAllocated; /**< Size of buffer that m_psz points to; at least m_cbLength + 1. */
};
/** @} */
/** @addtogroup grp_rt_cpp_string
* @{
*/
/**
* Concatenate two strings.
*
* @param a_rstr1 String one.
* @param a_rstr2 String two.
* @returns the concatenate string.
*
* @relates RTCString
*/
RTDECL(const RTCString) operator+(const RTCString &a_rstr1, const RTCString &a_rstr2);
/**
* Concatenate two strings.
*
* @param a_rstr1 String one.
* @param a_psz2 String two.
* @returns the concatenate string.
*
* @relates RTCString
*/
RTDECL(const RTCString) operator+(const RTCString &a_rstr1, const char *a_psz2);
/**
* Concatenate two strings.
*
* @param a_psz1 String one.
* @param a_rstr2 String two.
* @returns the concatenate string.
*
* @relates RTCString
*/
RTDECL(const RTCString) operator+(const char *a_psz1, const RTCString &a_rstr2);
/**
* Class with RTCString::printf as constructor for your convenience.
*
* Constructing a RTCString string object from a format string and a variable
* number of arguments can easily be confused with the other RTCString
* constructors, thus this child class.
*
* The usage of this class is like the following:
* @code
RTCStringFmt strName("program name = %s", argv[0]);
@endcode
*/
class RTCStringFmt : public RTCString
{
public:
/**
* Constructs a new string given the format string and the list of the
* arguments for the format string.
*
* @param a_pszFormat Pointer to the format string (UTF-8),
* @see pg_rt_str_format.
* @param ... Ellipsis containing the arguments specified by
* the format string.
*/
explicit RTCStringFmt(const char *a_pszFormat, ...) RT_IPRT_FORMAT_ATTR(1, 2)
{
va_list va;
va_start(va, a_pszFormat);
printfV(a_pszFormat, va);
va_end(va);
}
RTMEMEF_NEW_AND_DELETE_OPERATORS();
protected:
RTCStringFmt() {}
};
/** @} */
#endif /* !IPRT_INCLUDED_cpp_ministring_h */
|