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
|
/* Copyright (C) 2002 The gtkmm Development Team
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library 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
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library. If not, see <http://www.gnu.org/licenses/>.
*/
#include <glibmmconfig.h>
#include <glibmm/ustring.h>
#include <glibmm/convert.h>
#include <glibmm/error.h>
#include <glibmm/utility.h>
#include <algorithm>
#include <iostream>
#include <cstring>
#include <stdexcept>
#include <utility> // For std::move()
namespace
{
using Glib::ustring;
using Glib::UStringView;
// Little helper to make the conversion from gunichar to UTF-8 a one-liner.
//
struct UnicharToUtf8
{
char buf[6];
ustring::size_type len;
explicit UnicharToUtf8(gunichar uc) : len(g_unichar_to_utf8(uc, buf)) {}
};
// All utf8_*_offset() functions return npos if offset is out of range.
// The caller should decide if npos is a valid argument and just marks
// the whole string, or if it is not allowed (e.g. for start positions).
// In the latter case std::out_of_range should be thrown, but usually
// std::string will do that for us.
// First overload: stop on '\0' character.
static ustring::size_type
utf8_byte_offset(const char* str, ustring::size_type offset)
{
if (offset == ustring::npos)
return ustring::npos;
const char* const utf8_skip = g_utf8_skip;
const char* p = str;
for (; offset != 0; --offset)
{
const unsigned int c = static_cast<unsigned char>(*p);
if (c == 0)
return ustring::npos;
p += utf8_skip[c];
}
return (p - str);
}
// Second overload: stop when reaching maxlen.
static ustring::size_type
utf8_byte_offset(const char* str, ustring::size_type offset, ustring::size_type maxlen)
{
if (offset == ustring::npos)
return ustring::npos;
const char* const utf8_skip = g_utf8_skip;
const char* const pend = str + maxlen;
const char* p = str;
for (; offset != 0; --offset)
{
if (p >= pend)
return ustring::npos;
p += utf8_skip[static_cast<unsigned char>(*p)];
}
return (p - str);
}
// Third overload: stop when reaching str.size().
//
inline ustring::size_type
utf8_byte_offset(const std::string& str, ustring::size_type offset)
{
return utf8_byte_offset(str.data(), offset, str.size());
}
// Takes UTF-8 character offset and count in ci and cn.
// Returns the byte offset and count in i and n.
//
struct Utf8SubstrBounds
{
ustring::size_type i;
ustring::size_type n;
Utf8SubstrBounds(const std::string& str, ustring::size_type ci, ustring::size_type cn)
: i(utf8_byte_offset(str, ci)), n(ustring::npos)
{
if (i != ustring::npos)
n = utf8_byte_offset(str.data() + i, cn, str.size() - i);
}
};
// Converts byte offset to UTF-8 character offset.
inline ustring::size_type
utf8_char_offset(const std::string& str, ustring::size_type offset)
{
if (offset == ustring::npos)
return ustring::npos;
const char* const pdata = str.data();
return g_utf8_pointer_to_offset(pdata, pdata + offset);
}
// Helper to implement ustring::find_first_of() and find_first_not_of().
// Returns the UTF-8 character offset, or ustring::npos if not found.
static ustring::size_type
utf8_find_first_of(const std::string& str, ustring::size_type offset, const char* utf8_match,
long utf8_match_size, bool find_not_of)
{
const ustring::size_type byte_offset = utf8_byte_offset(str, offset);
if (byte_offset == ustring::npos)
return ustring::npos;
long ucs4_match_size = 0;
const auto ucs4_match =
Glib::make_unique_ptr_gfree(g_utf8_to_ucs4_fast(utf8_match, utf8_match_size, &ucs4_match_size));
const gunichar* const match_begin = ucs4_match.get();
const gunichar* const match_end = match_begin + ucs4_match_size;
const char* const str_begin = str.data();
const char* const str_end = str_begin + str.size();
for (const char* pstr = str_begin + byte_offset; pstr < str_end; pstr = g_utf8_next_char(pstr))
{
const gunichar* const pfound = std::find(match_begin, match_end, g_utf8_get_char(pstr));
if ((pfound != match_end) != find_not_of)
return offset;
++offset;
}
return ustring::npos;
}
// Helper to implement ustring::find_last_of() and find_last_not_of().
// Returns the UTF-8 character offset, or ustring::npos if not found.
static ustring::size_type
utf8_find_last_of(const std::string& str, ustring::size_type offset, const char* utf8_match,
long utf8_match_size, bool find_not_of)
{
long ucs4_match_size = 0;
const auto ucs4_match =
Glib::make_unique_ptr_gfree(g_utf8_to_ucs4_fast(utf8_match, utf8_match_size, &ucs4_match_size));
const gunichar* const match_begin = ucs4_match.get();
const gunichar* const match_end = match_begin + ucs4_match_size;
const char* const str_begin = str.data();
const char* pstr = str_begin;
// Set pstr one byte beyond the actual start position.
const ustring::size_type byte_offset = utf8_byte_offset(str, offset);
pstr += (byte_offset < str.size()) ? byte_offset + 1 : str.size();
while (pstr > str_begin)
{
// Move to previous character.
do
--pstr;
while ((static_cast<unsigned char>(*pstr) & 0xC0u) == 0x80);
const gunichar* const pfound = std::find(match_begin, match_end, g_utf8_get_char(pstr));
if ((pfound != match_end) != find_not_of)
return g_utf8_pointer_to_offset(str_begin, pstr);
}
return ustring::npos;
}
} // anonymous namespace
namespace Glib
{
#ifndef GLIBMM_HAVE_ALLOWS_STATIC_INLINE_NPOS
// Initialize static member here,
// because the compiler did not allow us do it inline.
const ustring::size_type ustring::npos = std::string::npos;
#endif
/*
* We need our own version of g_utf8_get_char(), because the std::string
* iterator is not necessarily a plain pointer (it's in fact not in GCC's
* libstdc++-v3). Copying the UTF-8 data into a temporary buffer isn't an
* option since this operation is quite time critical. The implementation
* is quite different from g_utf8_get_char() -- both more generic and likely
* faster.
*
* By looking at the first byte of a UTF-8 character one can determine the
* number of bytes used. GLib offers the g_utf8_skip[] array for this purpose,
* but accessing this global variable would, on IA32 at least, introduce
* a function call to fetch the Global Offset Table, plus two levels of
* indirection in order to read the value. Even worse, fetching the GOT is
* always done right at the start of the function instead of the branch that
* actually uses the variable.
*
* Fortunately, there's a better way to get the byte count. As this table
* shows, there's a nice regular pattern in the UTF-8 encoding scheme:
*
* 0x00000000 - 0x0000007F: 0xxxxxxx
* 0x00000080 - 0x000007FF: 110xxxxx 10xxxxxx
* 0x00000800 - 0x0000FFFF: 1110xxxx 10xxxxxx 10xxxxxx
* 0x00010000 - 0x001FFFFF: 11110xxx 10xxxxxx 10xxxxxx 10xxxxxx
* 0x00200000 - 0x03FFFFFF: 111110xx 10xxxxxx 10xxxxxx 10xxxxxx 10xxxxxx
* 0x04000000 - 0x7FFFFFFF: 1111110x 10xxxxxx 10xxxxxx 10xxxxxx 10xxxxxx 10xxxxxx
*
* Except for the single byte case, the number of leading 1-bits equals the
* byte count. All that is needed is to shift the first byte to the left
* until bit 7 becomes 0. Naturally, doing so requires a loop -- but since
* we already have one, no additional cost is introduced. This shifting can
* further be combined with the computation of the bitmask needed to eliminate
* the leading length bits, thus saving yet another register.
*
* Note: If you change this code, it is advisable to also review what the
* compiler makes of it in the assembler output. Except for some pointless
* register moves, the generated code is sufficiently close to the optimum
* with GCC 4.1.2 on x86_64.
*/
gunichar
get_unichar_from_std_iterator(std::string::const_iterator pos)
{
unsigned int result = static_cast<unsigned char>(*pos);
if ((result & 0x80) != 0)
{
unsigned int mask = 0x40;
do
{
result <<= 6;
const unsigned int c = static_cast<unsigned char>(*++pos);
mask <<= 5;
result += c - 0x80;
} while ((result & mask) != 0);
result &= mask - 1;
}
return result;
}
/**** Glib::ustring ********************************************************/
ustring::ustring() : string_()
{
}
ustring::ustring(const ustring& other) : string_(other.string_)
{
}
ustring::ustring(ustring&& other) : string_(std::move(other.string_))
{
}
ustring::ustring(const ustring& src, ustring::size_type i, ustring::size_type n) : string_()
{
const Utf8SubstrBounds bounds(src.string_, i, n);
string_.assign(src.string_, bounds.i, bounds.n);
}
ustring::ustring(const char* src, ustring::size_type n) : string_(src, utf8_byte_offset(src, n))
{
}
ustring::ustring(const char* src) : string_(src)
{
}
ustring::ustring(ustring::size_type n, gunichar uc) : string_()
{
if (uc < 0x80)
{
// Optimize the probably most common case.
string_.assign(n, static_cast<char>(uc));
}
else
{
const UnicharToUtf8 conv(uc);
string_.reserve(n * conv.len);
for (; n > 0; --n)
string_.append(conv.buf, conv.len);
}
}
ustring::ustring(ustring::size_type n, char c) : string_(n, c)
{
}
ustring::ustring(const std::string& src) : string_(src)
{
}
ustring::ustring(std::string&& src) : string_(std::move(src))
{
}
ustring::~ustring() noexcept
{
}
void
ustring::swap(ustring& other)
{
string_.swap(other.string_);
}
/**** Glib::ustring::operator=() *******************************************/
ustring&
ustring::operator=(const ustring& other)
{
string_ = other.string_;
return *this;
}
ustring&
ustring::operator=(ustring&& other)
{
string_ = std::move(other.string_);
return *this;
}
ustring&
ustring::operator=(const std::string& src)
{
string_ = src;
return *this;
}
ustring&
ustring::operator=(std::string&& src)
{
string_ = std::move(src);
return *this;
}
ustring&
ustring::operator=(const char* src)
{
string_ = src;
return *this;
}
ustring&
ustring::operator=(gunichar uc)
{
const UnicharToUtf8 conv(uc);
string_.assign(conv.buf, conv.len);
return *this;
}
ustring&
ustring::operator=(char c)
{
string_ = c;
return *this;
}
/**** Glib::ustring::assign() **********************************************/
ustring&
ustring::assign(const ustring& src)
{
string_ = src.string_;
return *this;
}
ustring&
ustring::assign(ustring&& src)
{
string_ = std::move(src.string_);
return *this;
}
ustring&
ustring::assign(const ustring& src, ustring::size_type i, ustring::size_type n)
{
const Utf8SubstrBounds bounds(src.string_, i, n);
string_.assign(src.string_, bounds.i, bounds.n);
return *this;
}
ustring&
ustring::assign(const char* src, ustring::size_type n)
{
string_.assign(src, utf8_byte_offset(src, n));
return *this;
}
ustring&
ustring::assign(const char* src)
{
string_ = src;
return *this;
}
ustring&
ustring::assign(ustring::size_type n, gunichar uc)
{
ustring temp(n, uc);
string_.swap(temp.string_);
return *this;
}
ustring&
ustring::assign(ustring::size_type n, char c)
{
string_.assign(n, c);
return *this;
}
/**** Glib::ustring::operator+=() ******************************************/
ustring&
ustring::operator+=(const ustring& src)
{
string_ += src.string_;
return *this;
}
ustring&
ustring::operator+=(const char* src)
{
string_ += src;
return *this;
}
ustring&
ustring::operator+=(gunichar uc)
{
const UnicharToUtf8 conv(uc);
string_.append(conv.buf, conv.len);
return *this;
}
ustring&
ustring::operator+=(char c)
{
string_ += c;
return *this;
}
/**** Glib::ustring::push_back() *******************************************/
void
ustring::push_back(gunichar uc)
{
const UnicharToUtf8 conv(uc);
string_.append(conv.buf, conv.len);
}
void
ustring::push_back(char c)
{
string_ += c;
}
/**** Glib::ustring::append() **********************************************/
ustring&
ustring::append(const ustring& src)
{
string_ += src.string_;
return *this;
}
ustring&
ustring::append(const ustring& src, ustring::size_type i, ustring::size_type n)
{
const Utf8SubstrBounds bounds(src.string_, i, n);
string_.append(src.string_, bounds.i, bounds.n);
return *this;
}
ustring&
ustring::append(const char* src, ustring::size_type n)
{
string_.append(src, utf8_byte_offset(src, n));
return *this;
}
ustring&
ustring::append(const char* src)
{
string_ += src;
return *this;
}
ustring&
ustring::append(ustring::size_type n, gunichar uc)
{
string_.append(ustring(n, uc).string_);
return *this;
}
ustring&
ustring::append(ustring::size_type n, char c)
{
string_.append(n, c);
return *this;
}
/**** Glib::ustring::insert() **********************************************/
ustring&
ustring::insert(ustring::size_type i, const ustring& src)
{
string_.insert(utf8_byte_offset(string_, i), src.string_);
return *this;
}
ustring&
ustring::insert(
ustring::size_type i, const ustring& src, ustring::size_type i2, ustring::size_type n)
{
const Utf8SubstrBounds bounds2(src.string_, i2, n);
string_.insert(utf8_byte_offset(string_, i), src.string_, bounds2.i, bounds2.n);
return *this;
}
ustring&
ustring::insert(ustring::size_type i, const char* src, ustring::size_type n)
{
string_.insert(utf8_byte_offset(string_, i), src, utf8_byte_offset(src, n));
return *this;
}
ustring&
ustring::insert(ustring::size_type i, const char* src)
{
string_.insert(utf8_byte_offset(string_, i), src);
return *this;
}
ustring&
ustring::insert(ustring::size_type i, ustring::size_type n, gunichar uc)
{
string_.insert(utf8_byte_offset(string_, i), ustring(n, uc).string_);
return *this;
}
ustring&
ustring::insert(ustring::size_type i, ustring::size_type n, char c)
{
string_.insert(utf8_byte_offset(string_, i), n, c);
return *this;
}
ustring::iterator
ustring::insert(ustring::iterator p, gunichar uc)
{
const size_type offset = p.base() - string_.begin();
const UnicharToUtf8 conv(uc);
string_.insert(offset, conv.buf, conv.len);
return iterator(string_.begin() + offset);
}
ustring::iterator
ustring::insert(ustring::iterator p, char c)
{
return iterator(string_.insert(p.base(), c));
}
void
ustring::insert(ustring::iterator p, ustring::size_type n, gunichar uc)
{
string_.insert(p.base() - string_.begin(), ustring(n, uc).string_);
}
void
ustring::insert(ustring::iterator p, ustring::size_type n, char c)
{
string_.insert(p.base(), n, c);
}
/**** Glib::ustring::replace() *********************************************/
ustring&
ustring::replace(ustring::size_type i, ustring::size_type n, const ustring& src)
{
const Utf8SubstrBounds bounds(string_, i, n);
string_.replace(bounds.i, bounds.n, src.string_);
return *this;
}
ustring&
ustring::replace(ustring::size_type i, ustring::size_type n, const ustring& src,
ustring::size_type i2, ustring::size_type n2)
{
const Utf8SubstrBounds bounds(string_, i, n);
const Utf8SubstrBounds bounds2(src.string_, i2, n2);
string_.replace(bounds.i, bounds.n, src.string_, bounds2.i, bounds2.n);
return *this;
}
ustring&
ustring::replace(ustring::size_type i, ustring::size_type n, const char* src, ustring::size_type n2)
{
const Utf8SubstrBounds bounds(string_, i, n);
string_.replace(bounds.i, bounds.n, src, utf8_byte_offset(src, n2));
return *this;
}
ustring&
ustring::replace(ustring::size_type i, ustring::size_type n, const char* src)
{
const Utf8SubstrBounds bounds(string_, i, n);
string_.replace(bounds.i, bounds.n, src);
return *this;
}
ustring&
ustring::replace(ustring::size_type i, ustring::size_type n, ustring::size_type n2, gunichar uc)
{
const Utf8SubstrBounds bounds(string_, i, n);
string_.replace(bounds.i, bounds.n, ustring(n2, uc).string_);
return *this;
}
ustring&
ustring::replace(ustring::size_type i, ustring::size_type n, ustring::size_type n2, char c)
{
const Utf8SubstrBounds bounds(string_, i, n);
string_.replace(bounds.i, bounds.n, n2, c);
return *this;
}
ustring&
ustring::replace(ustring::iterator pbegin, ustring::iterator pend, const ustring& src)
{
string_.replace(pbegin.base(), pend.base(), src.string_);
return *this;
}
ustring&
ustring::replace(
ustring::iterator pbegin, ustring::iterator pend, const char* src, ustring::size_type n)
{
string_.replace(pbegin.base(), pend.base(), src, utf8_byte_offset(src, n));
return *this;
}
ustring&
ustring::replace(ustring::iterator pbegin, ustring::iterator pend, const char* src)
{
string_.replace(pbegin.base(), pend.base(), src);
return *this;
}
ustring&
ustring::replace(
ustring::iterator pbegin, ustring::iterator pend, ustring::size_type n, gunichar uc)
{
string_.replace(pbegin.base(), pend.base(), ustring(n, uc).string_);
return *this;
}
ustring&
ustring::replace(ustring::iterator pbegin, ustring::iterator pend, ustring::size_type n, char c)
{
string_.replace(pbegin.base(), pend.base(), n, c);
return *this;
}
/**** Glib::ustring::erase() ***********************************************/
void
ustring::clear()
{
string_.erase();
}
ustring&
ustring::erase(ustring::size_type i, ustring::size_type n)
{
const Utf8SubstrBounds bounds(string_, i, n);
string_.erase(bounds.i, bounds.n);
return *this;
}
ustring&
ustring::erase()
{
string_.erase();
return *this;
}
ustring::iterator
ustring::erase(ustring::iterator p)
{
ustring::iterator iter_end = p;
++iter_end;
return iterator(string_.erase(p.base(), iter_end.base()));
}
ustring::iterator
ustring::erase(ustring::iterator pbegin, ustring::iterator pend)
{
return iterator(string_.erase(pbegin.base(), pend.base()));
}
/**** Glib::ustring::compare() *********************************************/
int
ustring::compare(UStringView rhs) const
{
return g_utf8_collate(string_.c_str(), rhs.c_str());
}
int
ustring::compare(ustring::size_type i, ustring::size_type n, UStringView rhs) const
{
return ustring(*this, i, n).compare(rhs.c_str());
}
int
ustring::compare(ustring::size_type i, ustring::size_type n, const ustring& rhs,
ustring::size_type i2, ustring::size_type n2) const
{
return ustring(*this, i, n).compare(ustring(rhs, i2, n2));
}
int
ustring::compare(
ustring::size_type i, ustring::size_type n, const char* rhs, ustring::size_type n2) const
{
return ustring(*this, i, n).compare(ustring(rhs, n2));
}
/**** Glib::ustring -- index access ****************************************/
ustring::value_type ustring::operator[](ustring::size_type i) const
{
return g_utf8_get_char(g_utf8_offset_to_pointer(string_.data(), i));
}
ustring::value_type
ustring::at(ustring::size_type i) const
{
const size_type byte_offset = utf8_byte_offset(string_, i);
// Throws std::out_of_range if the index is invalid.
return g_utf8_get_char(&string_.at(byte_offset));
}
/**** Glib::ustring -- iterator access *************************************/
ustring::iterator
ustring::begin()
{
return iterator(string_.begin());
}
ustring::iterator
ustring::end()
{
return iterator(string_.end());
}
ustring::const_iterator
ustring::begin() const
{
return const_iterator(string_.begin());
}
ustring::const_iterator
ustring::end() const
{
return const_iterator(string_.end());
}
ustring::reverse_iterator
ustring::rbegin()
{
return reverse_iterator(iterator(string_.end()));
}
ustring::reverse_iterator
ustring::rend()
{
return reverse_iterator(iterator(string_.begin()));
}
ustring::const_reverse_iterator
ustring::rbegin() const
{
return const_reverse_iterator(const_iterator(string_.end()));
}
ustring::const_reverse_iterator
ustring::rend() const
{
return const_reverse_iterator(const_iterator(string_.begin()));
}
ustring::const_iterator
ustring::cbegin() const
{
return const_iterator(string_.begin());
}
ustring::const_iterator
ustring::cend() const
{
return const_iterator(string_.end());
}
/**** Glib::ustring::find() ************************************************/
ustring::size_type
ustring::find(const ustring& str, ustring::size_type i) const
{
return utf8_char_offset(string_, string_.find(str.string_, utf8_byte_offset(string_, i)));
}
ustring::size_type
ustring::find(const char* str, ustring::size_type i, ustring::size_type n) const
{
return utf8_char_offset(
string_, string_.find(str, utf8_byte_offset(string_, i), utf8_byte_offset(str, n)));
}
ustring::size_type
ustring::find(const char* str, ustring::size_type i) const
{
return utf8_char_offset(string_, string_.find(str, utf8_byte_offset(string_, i)));
}
ustring::size_type
ustring::find(gunichar uc, ustring::size_type i) const
{
const UnicharToUtf8 conv(uc);
return utf8_char_offset(string_, string_.find(conv.buf, utf8_byte_offset(string_, i), conv.len));
}
ustring::size_type
ustring::find(char c, ustring::size_type i) const
{
return utf8_char_offset(string_, string_.find(c, utf8_byte_offset(string_, i)));
}
/**** Glib::ustring::rfind() ***********************************************/
ustring::size_type
ustring::rfind(const ustring& str, ustring::size_type i) const
{
return utf8_char_offset(string_, string_.rfind(str.string_, utf8_byte_offset(string_, i)));
}
ustring::size_type
ustring::rfind(const char* str, ustring::size_type i, ustring::size_type n) const
{
return utf8_char_offset(
string_, string_.rfind(str, utf8_byte_offset(string_, i), utf8_byte_offset(str, n)));
}
ustring::size_type
ustring::rfind(const char* str, ustring::size_type i) const
{
return utf8_char_offset(string_, string_.rfind(str, utf8_byte_offset(string_, i)));
}
ustring::size_type
ustring::rfind(gunichar uc, ustring::size_type i) const
{
const UnicharToUtf8 conv(uc);
return utf8_char_offset(string_, string_.rfind(conv.buf, utf8_byte_offset(string_, i), conv.len));
}
ustring::size_type
ustring::rfind(char c, ustring::size_type i) const
{
return utf8_char_offset(string_, string_.rfind(c, utf8_byte_offset(string_, i)));
}
/**** Glib::ustring::find_first_of() ***************************************/
ustring::size_type
ustring::find_first_of(const ustring& match, ustring::size_type i) const
{
return utf8_find_first_of(string_, i, match.string_.data(), match.string_.size(), false);
}
ustring::size_type
ustring::find_first_of(const char* match, ustring::size_type i, ustring::size_type n) const
{
return utf8_find_first_of(string_, i, match, n, false);
}
ustring::size_type
ustring::find_first_of(const char* match, ustring::size_type i) const
{
return utf8_find_first_of(string_, i, match, -1, false);
}
ustring::size_type
ustring::find_first_of(gunichar uc, ustring::size_type i) const
{
return find(uc, i);
}
ustring::size_type
ustring::find_first_of(char c, ustring::size_type i) const
{
return find(c, i);
}
/**** Glib::ustring::find_last_of() ****************************************/
ustring::size_type
ustring::find_last_of(const ustring& match, ustring::size_type i) const
{
return utf8_find_last_of(string_, i, match.string_.data(), match.string_.size(), false);
}
ustring::size_type
ustring::find_last_of(const char* match, ustring::size_type i, ustring::size_type n) const
{
return utf8_find_last_of(string_, i, match, n, false);
}
ustring::size_type
ustring::find_last_of(const char* match, ustring::size_type i) const
{
return utf8_find_last_of(string_, i, match, -1, false);
}
ustring::size_type
ustring::find_last_of(gunichar uc, ustring::size_type i) const
{
return rfind(uc, i);
}
ustring::size_type
ustring::find_last_of(char c, ustring::size_type i) const
{
return rfind(c, i);
}
/**** Glib::ustring::find_first_not_of() ***********************************/
ustring::size_type
ustring::find_first_not_of(const ustring& match, ustring::size_type i) const
{
return utf8_find_first_of(string_, i, match.string_.data(), match.string_.size(), true);
}
ustring::size_type
ustring::find_first_not_of(const char* match, ustring::size_type i, ustring::size_type n) const
{
return utf8_find_first_of(string_, i, match, n, true);
}
ustring::size_type
ustring::find_first_not_of(const char* match, ustring::size_type i) const
{
return utf8_find_first_of(string_, i, match, -1, true);
}
// Unfortunately, all of the find_*_not_of() methods for single
// characters need their own special implementation.
//
ustring::size_type
ustring::find_first_not_of(gunichar uc, ustring::size_type i) const
{
const size_type bi = utf8_byte_offset(string_, i);
if (bi != npos)
{
const char* const pbegin = string_.data();
const char* const pend = pbegin + string_.size();
for (const char *p = pbegin + bi; p < pend; p = g_utf8_next_char(p), ++i)
{
if (g_utf8_get_char(p) != uc)
return i;
}
}
return npos;
}
ustring::size_type
ustring::find_first_not_of(char c, ustring::size_type i) const
{
const size_type bi = utf8_byte_offset(string_, i);
if (bi != npos)
{
const char* const pbegin = string_.data();
const char* const pend = pbegin + string_.size();
for (const char *p = pbegin + bi; p < pend; p = g_utf8_next_char(p), ++i)
{
if (*p != c)
return i;
}
}
return npos;
}
/**** Glib::ustring::find_last_not_of() ************************************/
ustring::size_type
ustring::find_last_not_of(const ustring& match, ustring::size_type i) const
{
return utf8_find_last_of(string_, i, match.string_.data(), match.string_.size(), true);
}
ustring::size_type
ustring::find_last_not_of(const char* match, ustring::size_type i, ustring::size_type n) const
{
return utf8_find_last_of(string_, i, match, n, true);
}
ustring::size_type
ustring::find_last_not_of(const char* match, ustring::size_type i) const
{
return utf8_find_last_of(string_, i, match, -1, true);
}
// Unfortunately, all of the find_*_not_of() methods for single
// characters need their own special implementation.
//
ustring::size_type
ustring::find_last_not_of(gunichar uc, ustring::size_type i) const
{
const char* const pbegin = string_.data();
const char* const pend = pbegin + string_.size();
size_type i_cur = 0;
size_type i_found = npos;
for (const char *p = pbegin; p < pend && i_cur <= i; p = g_utf8_next_char(p), ++i_cur)
{
if (g_utf8_get_char(p) != uc)
i_found = i_cur;
}
return i_found;
}
ustring::size_type
ustring::find_last_not_of(char c, ustring::size_type i) const
{
const char* const pbegin = string_.data();
const char* const pend = pbegin + string_.size();
size_type i_cur = 0;
size_type i_found = npos;
for (const char *p = pbegin; p < pend && i_cur <= i; p = g_utf8_next_char(p), ++i_cur)
{
if (*p != c)
i_found = i_cur;
}
return i_found;
}
/**** Glib::ustring -- get size and resize *********************************/
bool
ustring::empty() const
{
return string_.empty();
}
ustring::size_type
ustring::size() const
{
const char* const pdata = string_.data();
return g_utf8_pointer_to_offset(pdata, pdata + string_.size());
}
ustring::size_type
ustring::length() const
{
const char* const pdata = string_.data();
return g_utf8_pointer_to_offset(pdata, pdata + string_.size());
}
ustring::size_type
ustring::bytes() const
{
return string_.size();
}
ustring::size_type
ustring::capacity() const
{
return string_.capacity();
}
ustring::size_type
ustring::max_size() const
{
return string_.max_size();
}
void
ustring::resize(ustring::size_type n, gunichar uc)
{
const size_type size_now = size();
if (n < size_now)
erase(n, npos);
else if (n > size_now)
append(n - size_now, uc);
}
void
ustring::resize(ustring::size_type n, char c)
{
const size_type size_now = size();
if (n < size_now)
erase(n, npos);
else if (n > size_now)
string_.append(n - size_now, c);
}
void
ustring::reserve(ustring::size_type n)
{
string_.reserve(n);
}
/**** Glib::ustring -- C string access *************************************/
const char*
ustring::data() const
{
return string_.data();
}
const char*
ustring::c_str() const
{
return string_.c_str();
}
// Note that copy() requests UTF-8 character offsets as
// parameters, but returns the number of copied bytes.
//
ustring::size_type
ustring::copy(char* dest, ustring::size_type n, ustring::size_type i) const
{
const Utf8SubstrBounds bounds(string_, i, n);
return string_.copy(dest, bounds.n, bounds.i);
}
/**** Glib::ustring -- UTF-8 utilities *************************************/
bool
ustring::validate() const
{
return (g_utf8_validate(string_.data(), string_.size(), nullptr) != 0);
}
bool
ustring::validate(ustring::iterator& first_invalid)
{
const char* const pdata = string_.data();
const char* valid_end = pdata;
const int is_valid = g_utf8_validate(pdata, string_.size(), &valid_end);
first_invalid = iterator(string_.begin() + (valid_end - pdata));
return (is_valid != 0);
}
bool
ustring::validate(ustring::const_iterator& first_invalid) const
{
const char* const pdata = string_.data();
const char* valid_end = pdata;
const int is_valid = g_utf8_validate(pdata, string_.size(), &valid_end);
first_invalid = const_iterator(string_.begin() + (valid_end - pdata));
return (is_valid != 0);
}
ustring
ustring::make_valid() const
{
return convert_return_gchar_ptr_to_ustring(g_utf8_make_valid(string_.data(), string_.size()));
}
bool
ustring::is_ascii() const
{
const char* p = string_.data();
const char* const pend = p + string_.size();
for (; p != pend; ++p)
{
if ((static_cast<unsigned char>(*p) & 0x80u) != 0)
return false;
}
return true;
}
ustring
ustring::normalize(NormalizeMode mode) const
{
return convert_return_gchar_ptr_to_ustring(
g_utf8_normalize(string_.data(), string_.size(), static_cast<GNormalizeMode>(int(mode))));
}
ustring
ustring::truncate_middle(gsize truncate_length) const
{
return convert_return_gchar_ptr_to_ustring(
g_utf8_truncate_middle(string_.data(), truncate_length));
}
ustring
ustring::uppercase() const
{
return convert_return_gchar_ptr_to_ustring(g_utf8_strup(string_.data(), string_.size()));
}
ustring
ustring::lowercase() const
{
return convert_return_gchar_ptr_to_ustring(g_utf8_strdown(string_.data(), string_.size()));
}
ustring
ustring::casefold() const
{
return convert_return_gchar_ptr_to_ustring(g_utf8_casefold(string_.data(), string_.size()));
}
std::string
ustring::collate_key() const
{
return convert_return_gchar_ptr_to_stdstring(g_utf8_collate_key(string_.data(), string_.size()));
}
std::string
ustring::casefold_collate_key() const
{
char* const casefold_buf = g_utf8_casefold(string_.data(), string_.size());
char* const key_buf = g_utf8_collate_key(casefold_buf, -1);
g_free(casefold_buf);
return std::string(make_unique_ptr_gfree(key_buf).get());
}
/**** Glib::ustring -- Message formatting **********************************/
// static
ustring
ustring::compose_private(const Glib::ustring& fmt, std::initializer_list<const ustring*> const ilist)
{
std::string::size_type result_size = fmt.raw().size();
// Guesstimate the final string size.
for (auto const it: ilist)
result_size += it->raw().size();
std::string result;
result.reserve(result_size);
const char* const pfmt = fmt.raw().c_str();
const char* start = pfmt;
while (const char* const stop = std::strchr(start, '%'))
{
if (stop[1] == '%')
{
result.append(start, stop - start + 1);
start = stop + 2;
}
else
{
const int index = Ascii::digit_value(stop[1]) - 1;
const int size = ilist.size();
if (index >= 0 && index < size)
{
result.append(start, stop - start);
result += (*(ilist.begin() + index))->raw();
start = stop + 2;
}
else
{
const char* const next = (stop[1] != '\0') ? g_utf8_next_char(stop + 1) : (stop + 1);
// Copy invalid substitutions literally to the output.
result.append(start, next - start);
g_warning("invalid substitution \"%s\" in fmt string \"%s\"",
result.c_str() + result.size() - (next - stop), pfmt);
start = next;
}
}
}
result.append(start, pfmt + fmt.raw().size() - start);
return result;
}
/**** Glib::ustring::SequenceToString **************************************/
ustring::SequenceToString<Glib::ustring::iterator, gunichar>::SequenceToString(
Glib::ustring::iterator pbegin, Glib::ustring::iterator pend)
: std::string(pbegin.base(), pend.base())
{
}
ustring::SequenceToString<Glib::ustring::const_iterator, gunichar>::SequenceToString(
Glib::ustring::const_iterator pbegin, Glib::ustring::const_iterator pend)
: std::string(pbegin.base(), pend.base())
{
}
/**** Glib::ustring::FormatStream ******************************************/
ustring::FormatStream::FormatStream() : stream_()
{
}
ustring::FormatStream::~FormatStream() noexcept
{
}
// TODO: C++20: Replace const with &&
ustring
ustring::FormatStream::to_string() const
{
GError* error = nullptr;
#ifdef GLIBMM_HAVE_WIDE_STREAM
// TODO: C++20: std::move(stream_).str()
const std::wstring str = stream_.str();
#if (defined(__STDC_ISO_10646__) || defined(_LIBCPP_VERSION)) && GLIBMM_SIZEOF_WCHAR_T == 4
// Avoid going through iconv if wchar_t always contains UCS-4.
glong n_bytes = 0;
const auto buf = make_unique_ptr_gfree(g_ucs4_to_utf8(
reinterpret_cast<const gunichar*>(str.data()), str.size(), nullptr, &n_bytes, &error));
#elif defined(G_OS_WIN32) && GLIBMM_SIZEOF_WCHAR_T == 2
// Avoid going through iconv if wchar_t always contains UTF-16.
glong n_bytes = 0;
const auto buf = make_unique_ptr_gfree(g_utf16_to_utf8(
reinterpret_cast<const gunichar2*>(str.data()), str.size(), nullptr, &n_bytes, &error));
#else
gsize n_bytes = 0;
const auto buf = make_unique_ptr_gfree(g_convert(reinterpret_cast<const char*>(str.data()),
str.size() * sizeof(std::wstring::value_type), "UTF-8", "WCHAR_T", nullptr, &n_bytes, &error));
#endif /* !(__STDC_ISO_10646__ || G_OS_WIN32) */
#else /* !GLIBMM_HAVE_WIDE_STREAM */
// TODO: C++20: std::move(stream_).str()
const std::string str = stream_.str();
gsize n_bytes = 0;
const auto buf =
make_unique_ptr_gfree(g_locale_to_utf8(str.data(), str.size(), 0, &n_bytes, &error));
#endif /* !GLIBMM_HAVE_WIDE_STREAM */
if (error)
{
Glib::Error::throw_exception(error);
}
return ustring(buf.get(), buf.get() + n_bytes);
}
/**** Glib::ustring -- stream I/O operators ********************************/
std::istream&
operator>>(std::istream& is, Glib::ustring& utf8_string)
{
std::string str;
is >> str;
GError* error = nullptr;
gsize n_bytes = 0;
const auto buf =
make_unique_ptr_gfree(g_locale_to_utf8(str.data(), str.size(), nullptr, &n_bytes, &error));
if (error)
{
Glib::Error::throw_exception(error);
}
utf8_string.assign(buf.get(), buf.get() + n_bytes);
return is;
}
std::ostream&
operator<<(std::ostream& os, const Glib::ustring& utf8_string)
{
GError* error = nullptr;
const auto buf = make_unique_ptr_gfree(g_locale_from_utf8(
utf8_string.raw().data(), utf8_string.raw().size(), nullptr, nullptr, &error));
if (error)
{
Glib::Error::throw_exception(error);
}
// This won't work if the string contains NUL characters. Unfortunately,
// std::ostream::write() ignores format flags, so we cannot use that.
// The only option would be to create a temporary std::string. However,
// even then GCC's libstdc++-v3 prints only the characters up to the first
// NUL. Given this, there doesn't seem much of a point in allowing NUL in
// formatted output. The semantics would be unclear anyway: what's the
// screen width of a NUL?
os << buf.get();
return os;
}
#ifdef GLIBMM_HAVE_WIDE_STREAM
std::wistream&
operator>>(std::wistream& is, ustring& utf8_string)
{
GError* error = nullptr;
std::wstring wstr;
is >> wstr;
#if (defined(__STDC_ISO_10646__) || defined(_LIBCPP_VERSION)) && GLIBMM_SIZEOF_WCHAR_T == 4
// Avoid going through iconv if wchar_t always contains UCS-4.
glong n_bytes = 0;
const auto buf = make_unique_ptr_gfree(g_ucs4_to_utf8(
reinterpret_cast<const gunichar*>(wstr.data()), wstr.size(), nullptr, &n_bytes, &error));
#elif defined(G_OS_WIN32) && GLIBMM_SIZEOF_WCHAR_T == 2
// Avoid going through iconv if wchar_t always contains UTF-16.
glong n_bytes = 0;
const auto buf = make_unique_ptr_gfree(g_utf16_to_utf8(
reinterpret_cast<const gunichar2*>(wstr.data()), wstr.size(), nullptr, &n_bytes, &error));
#else
gsize n_bytes = 0;
const auto buf = make_unique_ptr_gfree(g_convert(reinterpret_cast<const char*>(wstr.data()),
wstr.size() * sizeof(std::wstring::value_type), "UTF-8", "WCHAR_T", nullptr, &n_bytes, &error));
#endif // !(__STDC_ISO_10646__ || G_OS_WIN32)
if (error)
{
Glib::Error::throw_exception(error);
}
utf8_string.assign(buf.get(), buf.get() + n_bytes);
return is;
}
std::wostream&
operator<<(std::wostream& os, const ustring& utf8_string)
{
GError* error = nullptr;
#if (defined(__STDC_ISO_10646__) || defined(_LIBCPP_VERSION)) && GLIBMM_SIZEOF_WCHAR_T == 4
// Avoid going through iconv if wchar_t always contains UCS-4.
const auto buf = make_unique_ptr_gfree(
g_utf8_to_ucs4(utf8_string.raw().data(), utf8_string.raw().size(), nullptr, nullptr, &error));
#elif defined(G_OS_WIN32) && GLIBMM_SIZEOF_WCHAR_T == 2
// Avoid going through iconv if wchar_t always contains UTF-16.
const auto buf = make_unique_ptr_gfree(
g_utf8_to_utf16(utf8_string.raw().data(), utf8_string.raw().size(), nullptr, nullptr, &error));
#else
const auto buf = make_unique_ptr_gfree(g_convert(utf8_string.raw().data(),
utf8_string.raw().size(), "WCHAR_T", "UTF-8", nullptr, nullptr, &error));
#endif // !(__STDC_ISO_10646__ || G_OS_WIN32)
if (error)
{
Glib::Error::throw_exception(error);
}
// This won't work if the string contains NUL characters. Unfortunately,
// std::wostream::write() ignores format flags, so we cannot use that.
// The only option would be to create a temporary std::wstring. However,
// even then GCC's libstdc++-v3 prints only the characters up to the first
// NUL. Given this, there doesn't seem much of a point in allowing NUL in
// formatted output. The semantics would be unclear anyway: what's the
// screen width of a NUL?
os << reinterpret_cast<wchar_t*>(buf.get());
return os;
}
#endif /* GLIBMM_HAVE_WIDE_STREAM */
} // namespace Glib
|