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
|
/*
***********************************************************************
* © 2016 and later: Unicode, Inc. and others.
* License & terms of use: http://www.unicode.org/copyright.html
***********************************************************************
***********************************************************************
* Copyright (c) 2013-2014, International Business Machines
* Corporation and others. All Rights Reserved.
***********************************************************************
*/
#include <string.h>
#include "unicode/localpointer.h"
#include "unicode/uperf.h"
#include "unicode/ucol.h"
#include "unicode/coll.h"
#include "unicode/uiter.h"
#include "unicode/ustring.h"
#include "unicode/sortkey.h"
#include "uarrsort.h"
#include "uoptions.h"
#include "ustr_imp.h"
#define COMPACT_ARRAY(CompactArrays, UNIT) \
struct CompactArrays{\
CompactArrays(const CompactArrays & );\
CompactArrays & operator=(const CompactArrays & );\
int32_t count;/*total number of the strings*/ \
int32_t * index;/*relative offset in data*/ \
UNIT * data; /*the real space to hold strings*/ \
\
~CompactArrays(){free(index);free(data);} \
CompactArrays() : count(0), index(nullptr), data(nullptr) { \
index = (int32_t *) realloc(index, sizeof(int32_t)); \
index[0] = 0; \
} \
void append_one(int32_t theLen){ /*include terminal NUL*/ \
count++; \
index = (int32_t *) realloc(index, sizeof(int32_t) * (count + 1)); \
index[count] = index[count - 1] + theLen; \
data = (UNIT *) realloc(data, sizeof(UNIT) * index[count]); \
} \
UNIT * last(){return data + index[count - 1];} \
const UNIT * dataOf(int32_t i) const {return data + index[i];} \
int32_t lengthOf(int i) const {return index[i+1] - index[i] - 1; } /*exclude terminating NUL*/ \
};
COMPACT_ARRAY(CA_uchar, char16_t)
COMPACT_ARRAY(CA_char, char)
#define MAX_TEST_STRINGS_FOR_PERMUTING 1000
// C API test cases
//
// Test case taking a single test data array, calling ucol_strcoll by permuting the test data
//
class Strcoll : public UPerfFunction
{
public:
Strcoll(const UCollator* coll, const CA_uchar* source, UBool useLen);
~Strcoll();
void call(UErrorCode* status) override;
long getOperationsPerIteration() override;
private:
const UCollator *coll;
const CA_uchar *source;
UBool useLen;
int32_t maxTestStrings;
};
Strcoll::Strcoll(const UCollator* coll, const CA_uchar* source, UBool useLen)
: coll(coll),
source(source),
useLen(useLen)
{
maxTestStrings = source->count > MAX_TEST_STRINGS_FOR_PERMUTING ? MAX_TEST_STRINGS_FOR_PERMUTING : source->count;
}
Strcoll::~Strcoll()
{
}
void Strcoll::call(UErrorCode* status)
{
if (U_FAILURE(*status)) return;
// call strcoll for permutation
int32_t divisor = source->count / maxTestStrings;
int32_t srcLen, tgtLen;
int32_t cmp = 0;
for (int32_t i = 0, numTestStringsI = 0; i < source->count && numTestStringsI < maxTestStrings; i++) {
if (i % divisor) continue;
numTestStringsI++;
srcLen = useLen ? source->lengthOf(i) : -1;
for (int32_t j = 0, numTestStringsJ = 0; j < source->count && numTestStringsJ < maxTestStrings; j++) {
if (j % divisor) continue;
numTestStringsJ++;
tgtLen = useLen ? source->lengthOf(j) : -1;
cmp += ucol_strcoll(coll, source->dataOf(i), srcLen, source->dataOf(j), tgtLen);
}
}
// At the end, cmp must be 0
if (cmp != 0) {
*status = U_INTERNAL_PROGRAM_ERROR;
}
}
long Strcoll::getOperationsPerIteration()
{
return maxTestStrings * maxTestStrings;
}
//
// Test case taking two test data arrays, calling ucol_strcoll for strings at a same index
//
class Strcoll_2 : public UPerfFunction
{
public:
Strcoll_2(const UCollator* coll, const CA_uchar* source, const CA_uchar* target, UBool useLen);
~Strcoll_2();
void call(UErrorCode* status) override;
long getOperationsPerIteration() override;
private:
const UCollator *coll;
const CA_uchar *source;
const CA_uchar *target;
UBool useLen;
};
Strcoll_2::Strcoll_2(const UCollator* coll, const CA_uchar* source, const CA_uchar* target, UBool useLen)
: coll(coll),
source(source),
target(target),
useLen(useLen)
{
}
Strcoll_2::~Strcoll_2()
{
}
void Strcoll_2::call(UErrorCode* status)
{
if (U_FAILURE(*status)) return;
// call strcoll for two strings at the same index
if (source->count < target->count) {
*status = U_ILLEGAL_ARGUMENT_ERROR;
} else {
for (int32_t i = 0; i < source->count; i++) {
int32_t srcLen = useLen ? source->lengthOf(i) : -1;
int32_t tgtLen = useLen ? target->lengthOf(i) : -1;
ucol_strcoll(coll, source->dataOf(i), srcLen, target->dataOf(i), tgtLen);
}
}
}
long Strcoll_2::getOperationsPerIteration()
{
return source->count;
}
//
// Test case taking a single test data array, calling ucol_strcollUTF8 by permuting the test data
//
class StrcollUTF8 : public UPerfFunction
{
public:
StrcollUTF8(const UCollator* coll, const CA_char* source, UBool useLen);
~StrcollUTF8();
void call(UErrorCode* status) override;
long getOperationsPerIteration() override;
private:
const UCollator *coll;
const CA_char *source;
UBool useLen;
int32_t maxTestStrings;
};
StrcollUTF8::StrcollUTF8(const UCollator* coll, const CA_char* source, UBool useLen)
: coll(coll),
source(source),
useLen(useLen)
{
maxTestStrings = source->count > MAX_TEST_STRINGS_FOR_PERMUTING ? MAX_TEST_STRINGS_FOR_PERMUTING : source->count;
}
StrcollUTF8::~StrcollUTF8()
{
}
void StrcollUTF8::call(UErrorCode* status)
{
if (U_FAILURE(*status)) return;
// call strcollUTF8 for permutation
int32_t divisor = source->count / maxTestStrings;
int32_t srcLen, tgtLen;
int32_t cmp = 0;
for (int32_t i = 0, numTestStringsI = 0; U_SUCCESS(*status) && i < source->count && numTestStringsI < maxTestStrings; i++) {
if (i % divisor) continue;
numTestStringsI++;
srcLen = useLen ? source->lengthOf(i) : -1;
for (int32_t j = 0, numTestStringsJ = 0; U_SUCCESS(*status) && j < source->count && numTestStringsJ < maxTestStrings; j++) {
if (j % divisor) continue;
numTestStringsJ++;
tgtLen = useLen ? source->lengthOf(j) : -1;
cmp += ucol_strcollUTF8(coll, source->dataOf(i), srcLen, source->dataOf(j), tgtLen, status);
}
}
// At the end, cmp must be 0
if (cmp != 0) {
*status = U_INTERNAL_PROGRAM_ERROR;
}
}
long StrcollUTF8::getOperationsPerIteration()
{
return maxTestStrings * maxTestStrings;
}
//
// Test case taking two test data arrays, calling ucol_strcoll for strings at a same index
//
class StrcollUTF8_2 : public UPerfFunction
{
public:
StrcollUTF8_2(const UCollator* coll, const CA_char* source, const CA_char* target, UBool useLen);
~StrcollUTF8_2();
void call(UErrorCode* status) override;
long getOperationsPerIteration() override;
private:
const UCollator *coll;
const CA_char *source;
const CA_char *target;
UBool useLen;
};
StrcollUTF8_2::StrcollUTF8_2(const UCollator* coll, const CA_char* source, const CA_char* target, UBool useLen)
: coll(coll),
source(source),
target(target),
useLen(useLen)
{
}
StrcollUTF8_2::~StrcollUTF8_2()
{
}
void StrcollUTF8_2::call(UErrorCode* status)
{
if (U_FAILURE(*status)) return;
// call strcoll for two strings at the same index
if (source->count < target->count) {
*status = U_ILLEGAL_ARGUMENT_ERROR;
} else {
for (int32_t i = 0; U_SUCCESS(*status) && i < source->count; i++) {
int32_t srcLen = useLen ? source->lengthOf(i) : -1;
int32_t tgtLen = useLen ? target->lengthOf(i) : -1;
ucol_strcollUTF8(coll, source->dataOf(i), srcLen, target->dataOf(i), tgtLen, status);
}
}
}
long StrcollUTF8_2::getOperationsPerIteration()
{
return source->count;
}
//
// Test case taking a single test data array, calling ucol_getSortKey for each
//
class GetSortKey : public UPerfFunction
{
public:
GetSortKey(const UCollator* coll, const CA_uchar* source, UBool useLen);
~GetSortKey();
void call(UErrorCode* status) override;
long getOperationsPerIteration() override;
private:
const UCollator *coll;
const CA_uchar *source;
UBool useLen;
};
GetSortKey::GetSortKey(const UCollator* coll, const CA_uchar* source, UBool useLen)
: coll(coll),
source(source),
useLen(useLen)
{
}
GetSortKey::~GetSortKey()
{
}
#define KEY_BUF_SIZE 512
void GetSortKey::call(UErrorCode* status)
{
if (U_FAILURE(*status)) return;
uint8_t key[KEY_BUF_SIZE];
if (useLen) {
for (int32_t i = 0; i < source->count; i++) {
ucol_getSortKey(coll, source->dataOf(i), source->lengthOf(i), key, KEY_BUF_SIZE);
}
} else {
for (int32_t i = 0; i < source->count; i++) {
ucol_getSortKey(coll, source->dataOf(i), -1, key, KEY_BUF_SIZE);
}
}
}
long GetSortKey::getOperationsPerIteration()
{
return source->count;
}
//
// Test case taking a single test data array in UTF-16, calling ucol_nextSortKeyPart for each for the
// given buffer size
//
class NextSortKeyPart : public UPerfFunction
{
public:
NextSortKeyPart(const UCollator* coll, const CA_uchar* source, int32_t bufSize, int32_t maxIteration = -1);
~NextSortKeyPart();
void call(UErrorCode* status) override;
long getOperationsPerIteration() override;
long getEventsPerIteration() override;
private:
const UCollator *coll;
const CA_uchar *source;
int32_t bufSize;
int32_t maxIteration;
long events;
};
// Note: maxIteration = -1 -> repeat until the end of collation key
NextSortKeyPart::NextSortKeyPart(const UCollator* coll, const CA_uchar* source, int32_t bufSize, int32_t maxIteration /* = -1 */)
: coll(coll),
source(source),
bufSize(bufSize),
maxIteration(maxIteration),
events(0)
{
}
NextSortKeyPart::~NextSortKeyPart()
{
}
void NextSortKeyPart::call(UErrorCode* status)
{
if (U_FAILURE(*status)) return;
uint8_t* part = static_cast<uint8_t*>(malloc(bufSize));
uint32_t state[2];
UCharIterator iter;
events = 0;
for (int i = 0; i < source->count && U_SUCCESS(*status); i++) {
uiter_setString(&iter, source->dataOf(i), source->lengthOf(i));
state[0] = 0;
state[1] = 0;
int32_t partLen = bufSize;
for (int32_t n = 0; U_SUCCESS(*status) && partLen == bufSize && (maxIteration < 0 || n < maxIteration); n++) {
partLen = ucol_nextSortKeyPart(coll, &iter, state, part, bufSize, status);
events++;
}
}
free(part);
}
long NextSortKeyPart::getOperationsPerIteration()
{
return source->count;
}
long NextSortKeyPart::getEventsPerIteration()
{
return events;
}
//
// Test case taking a single test data array in UTF-8, calling ucol_nextSortKeyPart for each for the
// given buffer size
//
class NextSortKeyPartUTF8 : public UPerfFunction
{
public:
NextSortKeyPartUTF8(const UCollator* coll, const CA_char* source, int32_t bufSize, int32_t maxIteration = -1);
~NextSortKeyPartUTF8();
void call(UErrorCode* status) override;
long getOperationsPerIteration() override;
long getEventsPerIteration() override;
private:
const UCollator *coll;
const CA_char *source;
int32_t bufSize;
int32_t maxIteration;
long events;
};
// Note: maxIteration = -1 -> repeat until the end of collation key
NextSortKeyPartUTF8::NextSortKeyPartUTF8(const UCollator* coll, const CA_char* source, int32_t bufSize, int32_t maxIteration /* = -1 */)
: coll(coll),
source(source),
bufSize(bufSize),
maxIteration(maxIteration),
events(0)
{
}
NextSortKeyPartUTF8::~NextSortKeyPartUTF8()
{
}
void NextSortKeyPartUTF8::call(UErrorCode* status)
{
if (U_FAILURE(*status)) return;
uint8_t* part = static_cast<uint8_t*>(malloc(bufSize));
uint32_t state[2];
UCharIterator iter;
events = 0;
for (int i = 0; i < source->count && U_SUCCESS(*status); i++) {
uiter_setUTF8(&iter, source->dataOf(i), source->lengthOf(i));
state[0] = 0;
state[1] = 0;
int32_t partLen = bufSize;
for (int32_t n = 0; U_SUCCESS(*status) && partLen == bufSize && (maxIteration < 0 || n < maxIteration); n++) {
partLen = ucol_nextSortKeyPart(coll, &iter, state, part, bufSize, status);
events++;
}
}
free(part);
}
long NextSortKeyPartUTF8::getOperationsPerIteration()
{
return source->count;
}
long NextSortKeyPartUTF8::getEventsPerIteration()
{
return events;
}
// CPP API test cases
//
// Test case taking a single test data array, calling Collator::compare by permuting the test data
//
class CppCompare : public UPerfFunction
{
public:
CppCompare(const Collator* coll, const CA_uchar* source, UBool useLen);
~CppCompare();
void call(UErrorCode* status) override;
long getOperationsPerIteration() override;
private:
const Collator *coll;
const CA_uchar *source;
UBool useLen;
int32_t maxTestStrings;
};
CppCompare::CppCompare(const Collator* coll, const CA_uchar* source, UBool useLen)
: coll(coll),
source(source),
useLen(useLen)
{
maxTestStrings = source->count > MAX_TEST_STRINGS_FOR_PERMUTING ? MAX_TEST_STRINGS_FOR_PERMUTING : source->count;
}
CppCompare::~CppCompare()
{
}
void CppCompare::call(UErrorCode* status) {
if (U_FAILURE(*status)) return;
// call compare for permutation of test data
int32_t divisor = source->count / maxTestStrings;
int32_t srcLen, tgtLen;
int32_t cmp = 0;
for (int32_t i = 0, numTestStringsI = 0; i < source->count && numTestStringsI < maxTestStrings; i++) {
if (i % divisor) continue;
numTestStringsI++;
srcLen = useLen ? source->lengthOf(i) : -1;
for (int32_t j = 0, numTestStringsJ = 0; j < source->count && numTestStringsJ < maxTestStrings; j++) {
if (j % divisor) continue;
numTestStringsJ++;
tgtLen = useLen ? source->lengthOf(j) : -1;
cmp += coll->compare(source->dataOf(i), srcLen, source->dataOf(j), tgtLen);
}
}
// At the end, cmp must be 0
if (cmp != 0) {
*status = U_INTERNAL_PROGRAM_ERROR;
}
}
long CppCompare::getOperationsPerIteration()
{
return maxTestStrings * maxTestStrings;
}
//
// Test case taking two test data arrays, calling Collator::compare for strings at a same index
//
class CppCompare_2 : public UPerfFunction
{
public:
CppCompare_2(const Collator* coll, const CA_uchar* source, const CA_uchar* target, UBool useLen);
~CppCompare_2();
void call(UErrorCode* status) override;
long getOperationsPerIteration() override;
private:
const Collator *coll;
const CA_uchar *source;
const CA_uchar *target;
UBool useLen;
};
CppCompare_2::CppCompare_2(const Collator* coll, const CA_uchar* source, const CA_uchar* target, UBool useLen)
: coll(coll),
source(source),
target(target),
useLen(useLen)
{
}
CppCompare_2::~CppCompare_2()
{
}
void CppCompare_2::call(UErrorCode* status) {
if (U_FAILURE(*status)) return;
// call strcoll for two strings at the same index
if (source->count < target->count) {
*status = U_ILLEGAL_ARGUMENT_ERROR;
} else {
for (int32_t i = 0; i < source->count; i++) {
int32_t srcLen = useLen ? source->lengthOf(i) : -1;
int32_t tgtLen = useLen ? target->lengthOf(i) : -1;
coll->compare(source->dataOf(i), srcLen, target->dataOf(i), tgtLen);
}
}
}
long CppCompare_2::getOperationsPerIteration()
{
return source->count;
}
//
// Test case taking a single test data array, calling Collator::compareUTF8 by permuting the test data
//
class CppCompareUTF8 : public UPerfFunction
{
public:
CppCompareUTF8(const Collator* coll, const CA_char* source, UBool useLen);
~CppCompareUTF8();
void call(UErrorCode* status) override;
long getOperationsPerIteration() override;
private:
const Collator *coll;
const CA_char *source;
UBool useLen;
int32_t maxTestStrings;
};
CppCompareUTF8::CppCompareUTF8(const Collator* coll, const CA_char* source, UBool useLen)
: coll(coll),
source(source),
useLen(useLen)
{
maxTestStrings = source->count > MAX_TEST_STRINGS_FOR_PERMUTING ? MAX_TEST_STRINGS_FOR_PERMUTING : source->count;
}
CppCompareUTF8::~CppCompareUTF8()
{
}
void CppCompareUTF8::call(UErrorCode* status) {
if (U_FAILURE(*status)) return;
// call compareUTF8 for all permutations
int32_t divisor = source->count / maxTestStrings;
StringPiece src, tgt;
int32_t cmp = 0;
for (int32_t i = 0, numTestStringsI = 0; U_SUCCESS(*status) && i < source->count && numTestStringsI < maxTestStrings; i++) {
if (i % divisor) continue;
numTestStringsI++;
if (useLen) {
src.set(source->dataOf(i), source->lengthOf(i));
} else {
src.set(source->dataOf(i));
}
for (int32_t j = 0, numTestStringsJ = 0; U_SUCCESS(*status) && j < source->count && numTestStringsJ < maxTestStrings; j++) {
if (j % divisor) continue;
numTestStringsJ++;
if (useLen) {
tgt.set(source->dataOf(i), source->lengthOf(i));
} else {
tgt.set(source->dataOf(i));
}
cmp += coll->compareUTF8(src, tgt, *status);
}
}
// At the end, cmp must be 0
if (cmp != 0) {
*status = U_INTERNAL_PROGRAM_ERROR;
}
}
long CppCompareUTF8::getOperationsPerIteration()
{
return maxTestStrings * maxTestStrings;
}
//
// Test case taking two test data arrays, calling Collator::compareUTF8 for strings at a same index
//
class CppCompareUTF8_2 : public UPerfFunction
{
public:
CppCompareUTF8_2(const Collator* coll, const CA_char* source, const CA_char* target, UBool useLen);
~CppCompareUTF8_2();
void call(UErrorCode* status) override;
long getOperationsPerIteration() override;
private:
const Collator *coll;
const CA_char *source;
const CA_char *target;
UBool useLen;
};
CppCompareUTF8_2::CppCompareUTF8_2(const Collator* coll, const CA_char* source, const CA_char* target, UBool useLen)
: coll(coll),
source(source),
target(target),
useLen(useLen)
{
}
CppCompareUTF8_2::~CppCompareUTF8_2()
{
}
void CppCompareUTF8_2::call(UErrorCode* status) {
if (U_FAILURE(*status)) return;
// call strcoll for two strings at the same index
StringPiece src, tgt;
if (source->count < target->count) {
*status = U_ILLEGAL_ARGUMENT_ERROR;
} else {
for (int32_t i = 0; U_SUCCESS(*status) && i < source->count; i++) {
if (useLen) {
src.set(source->dataOf(i), source->lengthOf(i));
tgt.set(target->dataOf(i), target->lengthOf(i));
} else {
src.set(source->dataOf(i));
tgt.set(target->dataOf(i));
}
coll->compareUTF8(src, tgt, *status);
}
}
}
long CppCompareUTF8_2::getOperationsPerIteration()
{
return source->count;
}
//
// Test case taking a single test data array, calling Collator::getCollationKey for each
//
class CppGetCollationKey : public UPerfFunction
{
public:
CppGetCollationKey(const Collator* coll, const CA_uchar* source, UBool useLen);
~CppGetCollationKey();
void call(UErrorCode* status) override;
long getOperationsPerIteration() override;
private:
const Collator *coll;
const CA_uchar *source;
UBool useLen;
};
CppGetCollationKey::CppGetCollationKey(const Collator* coll, const CA_uchar* source, UBool useLen)
: coll(coll),
source(source),
useLen(useLen)
{
}
CppGetCollationKey::~CppGetCollationKey()
{
}
void CppGetCollationKey::call(UErrorCode* status)
{
if (U_FAILURE(*status)) return;
CollationKey key;
for (int32_t i = 0; U_SUCCESS(*status) && i < source->count; i++) {
coll->getCollationKey(source->dataOf(i), source->lengthOf(i), key, *status);
}
}
long CppGetCollationKey::getOperationsPerIteration() {
return source->count;
}
namespace {
struct CollatorAndCounter {
CollatorAndCounter(const Collator& coll) : coll(coll), ucoll(nullptr), counter(0) {}
CollatorAndCounter(const Collator& coll, const UCollator *ucoll)
: coll(coll), ucoll(ucoll), counter(0) {}
const Collator& coll;
const UCollator *ucoll;
int32_t counter;
};
int32_t U_CALLCONV
UniStrCollatorComparator(const void* context, const void* left, const void* right) {
CollatorAndCounter& cc = *(CollatorAndCounter*)context;
const UnicodeString& leftString = **static_cast<const UnicodeString* const*>(left);
const UnicodeString& rightString = **static_cast<const UnicodeString* const*>(right);
UErrorCode errorCode = U_ZERO_ERROR;
++cc.counter;
return cc.coll.compare(leftString, rightString, errorCode);
}
} // namespace
class CollPerfFunction : public UPerfFunction {
public:
CollPerfFunction(const Collator& coll, const UCollator *ucoll)
: coll(coll), ucoll(ucoll), ops(0) {}
virtual ~CollPerfFunction();
/** Calls call() to set the ops field, and returns that. */
long getOperationsPerIteration() override;
protected:
const Collator& coll;
const UCollator *ucoll;
int32_t ops;
};
CollPerfFunction::~CollPerfFunction() {}
long CollPerfFunction::getOperationsPerIteration() {
UErrorCode errorCode = U_ZERO_ERROR;
call(&errorCode);
return U_SUCCESS(errorCode) ? ops : 0;
}
class UniStrCollPerfFunction : public CollPerfFunction {
public:
UniStrCollPerfFunction(const Collator& coll, const UCollator *ucoll, const CA_uchar* data16)
: CollPerfFunction(coll, ucoll), d16(data16),
source(new UnicodeString*[d16->count]) {
for (int32_t i = 0; i < d16->count; ++i) {
source[i] = new UnicodeString(true, d16->dataOf(i), d16->lengthOf(i));
}
}
virtual ~UniStrCollPerfFunction();
protected:
const CA_uchar* d16;
UnicodeString** source;
};
UniStrCollPerfFunction::~UniStrCollPerfFunction() {
for (int32_t i = 0; i < d16->count; ++i) {
delete source[i];
}
delete[] source;
}
//
// Test case sorting an array of UnicodeString pointers.
//
class UniStrSort : public UniStrCollPerfFunction {
public:
UniStrSort(const Collator& coll, const UCollator *ucoll, const CA_uchar* data16)
: UniStrCollPerfFunction(coll, ucoll, data16),
dest(new UnicodeString*[d16->count]) {}
virtual ~UniStrSort();
void call(UErrorCode* status) override;
private:
UnicodeString** dest; // aliases only
};
UniStrSort::~UniStrSort() {
delete[] dest;
}
void UniStrSort::call(UErrorCode* status) {
if (U_FAILURE(*status)) return;
CollatorAndCounter cc(coll);
int32_t count = d16->count;
memcpy(dest, source, count * sizeof(UnicodeString *));
uprv_sortArray(dest, count, static_cast<int32_t>(sizeof(UnicodeString*)),
UniStrCollatorComparator, &cc, true, status);
ops = cc.counter;
}
namespace {
int32_t U_CALLCONV
StringPieceCollatorComparator(const void* context, const void* left, const void* right) {
CollatorAndCounter& cc = *(CollatorAndCounter*)context;
const StringPiece& leftString = *static_cast<const StringPiece*>(left);
const StringPiece& rightString = *static_cast<const StringPiece*>(right);
UErrorCode errorCode = U_ZERO_ERROR;
++cc.counter;
return cc.coll.compareUTF8(leftString, rightString, errorCode);
}
int32_t U_CALLCONV
StringPieceUCollatorComparator(const void* context, const void* left, const void* right) {
CollatorAndCounter& cc = *(CollatorAndCounter*)context;
const StringPiece& leftString = *static_cast<const StringPiece*>(left);
const StringPiece& rightString = *static_cast<const StringPiece*>(right);
UErrorCode errorCode = U_ZERO_ERROR;
++cc.counter;
return ucol_strcollUTF8(cc.ucoll,
leftString.data(), leftString.length(),
rightString.data(), rightString.length(), &errorCode);
}
} // namespace
class StringPieceCollPerfFunction : public CollPerfFunction {
public:
StringPieceCollPerfFunction(const Collator& coll, const UCollator *ucoll, const CA_char* data8)
: CollPerfFunction(coll, ucoll), d8(data8),
source(new StringPiece[d8->count]) {
for (int32_t i = 0; i < d8->count; ++i) {
source[i].set(d8->dataOf(i), d8->lengthOf(i));
}
}
virtual ~StringPieceCollPerfFunction();
protected:
const CA_char* d8;
StringPiece* source;
};
StringPieceCollPerfFunction::~StringPieceCollPerfFunction() {
delete[] source;
}
class StringPieceSort : public StringPieceCollPerfFunction {
public:
StringPieceSort(const Collator& coll, const UCollator *ucoll, const CA_char* data8)
: StringPieceCollPerfFunction(coll, ucoll, data8),
dest(new StringPiece[d8->count]) {}
virtual ~StringPieceSort();
protected:
StringPiece* dest;
};
StringPieceSort::~StringPieceSort() {
delete[] dest;
}
//
// Test case sorting an array of UTF-8 StringPiece's with Collator::compareUTF8().
//
class StringPieceSortCpp : public StringPieceSort {
public:
StringPieceSortCpp(const Collator& coll, const UCollator *ucoll, const CA_char* data8)
: StringPieceSort(coll, ucoll, data8) {}
virtual ~StringPieceSortCpp();
void call(UErrorCode* status) override;
};
StringPieceSortCpp::~StringPieceSortCpp() {}
void StringPieceSortCpp::call(UErrorCode* status) {
if (U_FAILURE(*status)) return;
CollatorAndCounter cc(coll);
int32_t count = d8->count;
memcpy(dest, source, count * sizeof(StringPiece));
uprv_sortArray(dest, count, static_cast<int32_t>(sizeof(StringPiece)),
StringPieceCollatorComparator, &cc, true, status);
ops = cc.counter;
}
//
// Test case sorting an array of UTF-8 StringPiece's with ucol_strcollUTF8().
//
class StringPieceSortC : public StringPieceSort {
public:
StringPieceSortC(const Collator& coll, const UCollator *ucoll, const CA_char* data8)
: StringPieceSort(coll, ucoll, data8) {}
virtual ~StringPieceSortC();
void call(UErrorCode* status) override;
};
StringPieceSortC::~StringPieceSortC() {}
void StringPieceSortC::call(UErrorCode* status) {
if (U_FAILURE(*status)) return;
CollatorAndCounter cc(coll, ucoll);
int32_t count = d8->count;
memcpy(dest, source, count * sizeof(StringPiece));
uprv_sortArray(dest, count, static_cast<int32_t>(sizeof(StringPiece)),
StringPieceUCollatorComparator, &cc, true, status);
ops = cc.counter;
}
//
// Test case performing binary searches in a sorted array of UnicodeString pointers.
//
class UniStrBinSearch : public UniStrCollPerfFunction {
public:
UniStrBinSearch(const Collator& coll, const UCollator *ucoll, const CA_uchar* data16)
: UniStrCollPerfFunction(coll, ucoll, data16) {}
virtual ~UniStrBinSearch();
void call(UErrorCode* status) override;
};
UniStrBinSearch::~UniStrBinSearch() {}
void UniStrBinSearch::call(UErrorCode* status) {
if (U_FAILURE(*status)) return;
CollatorAndCounter cc(coll);
int32_t count = d16->count;
for (int32_t i = 0; i < count; ++i) {
(void)uprv_stableBinarySearch(reinterpret_cast<char*>(source), count,
source + i, static_cast<int32_t>(sizeof(UnicodeString*)),
UniStrCollatorComparator, &cc);
}
ops = cc.counter;
}
class StringPieceBinSearch : public StringPieceCollPerfFunction {
public:
StringPieceBinSearch(const Collator& coll, const UCollator *ucoll, const CA_char* data8)
: StringPieceCollPerfFunction(coll, ucoll, data8) {}
virtual ~StringPieceBinSearch();
};
StringPieceBinSearch::~StringPieceBinSearch() {}
//
// Test case performing binary searches in a sorted array of UTF-8 StringPiece's
// with Collator::compareUTF8().
//
class StringPieceBinSearchCpp : public StringPieceBinSearch {
public:
StringPieceBinSearchCpp(const Collator& coll, const UCollator *ucoll, const CA_char* data8)
: StringPieceBinSearch(coll, ucoll, data8) {}
virtual ~StringPieceBinSearchCpp();
void call(UErrorCode* status) override;
};
StringPieceBinSearchCpp::~StringPieceBinSearchCpp() {}
void StringPieceBinSearchCpp::call(UErrorCode* status) {
if (U_FAILURE(*status)) return;
CollatorAndCounter cc(coll);
int32_t count = d8->count;
for (int32_t i = 0; i < count; ++i) {
(void)uprv_stableBinarySearch(reinterpret_cast<char*>(source), count,
source + i, static_cast<int32_t>(sizeof(StringPiece)),
StringPieceCollatorComparator, &cc);
}
ops = cc.counter;
}
//
// Test case performing binary searches in a sorted array of UTF-8 StringPiece's
// with ucol_strcollUTF8().
//
class StringPieceBinSearchC : public StringPieceBinSearch {
public:
StringPieceBinSearchC(const Collator& coll, const UCollator *ucoll, const CA_char* data8)
: StringPieceBinSearch(coll, ucoll, data8) {}
virtual ~StringPieceBinSearchC();
void call(UErrorCode* status) override;
};
StringPieceBinSearchC::~StringPieceBinSearchC() {}
void StringPieceBinSearchC::call(UErrorCode* status) {
if (U_FAILURE(*status)) return;
CollatorAndCounter cc(coll, ucoll);
int32_t count = d8->count;
for (int32_t i = 0; i < count; ++i) {
(void)uprv_stableBinarySearch(reinterpret_cast<char*>(source), count,
source + i, static_cast<int32_t>(sizeof(StringPiece)),
StringPieceUCollatorComparator, &cc);
}
ops = cc.counter;
}
class CollPerf2Test : public UPerfTest
{
public:
CollPerf2Test(int32_t argc, const char *argv[], UErrorCode &status);
~CollPerf2Test();
UPerfFunction* runIndexedTest(
int32_t index, UBool exec, const char*& name, char* par = nullptr) override;
private:
UCollator* coll;
Collator* collObj;
int32_t count;
CA_uchar* data16;
CA_char* data8;
CA_uchar* modData16;
CA_char* modData8;
CA_uchar* sortedData16;
CA_char* sortedData8;
CA_uchar* randomData16;
CA_char* randomData8;
const CA_uchar* getData16(UErrorCode &status);
const CA_char* getData8(UErrorCode &status);
const CA_uchar* getModData16(UErrorCode &status);
const CA_char* getModData8(UErrorCode &status);
const CA_uchar* getSortedData16(UErrorCode &status);
const CA_char* getSortedData8(UErrorCode &status);
const CA_uchar* getRandomData16(UErrorCode &status);
const CA_char* getRandomData8(UErrorCode &status);
static CA_uchar* sortData16(
const CA_uchar* d16,
UComparator *cmp, const void *context,
UErrorCode &status);
static CA_char* getData8FromData16(const CA_uchar* d16, UErrorCode &status);
UPerfFunction* TestStrcoll();
UPerfFunction* TestStrcollNull();
UPerfFunction* TestStrcollSimilar();
UPerfFunction* TestStrcollUTF8();
UPerfFunction* TestStrcollUTF8Null();
UPerfFunction* TestStrcollUTF8Similar();
UPerfFunction* TestGetSortKey();
UPerfFunction* TestGetSortKeyNull();
UPerfFunction* TestNextSortKeyPart_4All();
UPerfFunction* TestNextSortKeyPart_4x2();
UPerfFunction* TestNextSortKeyPart_4x4();
UPerfFunction* TestNextSortKeyPart_4x8();
UPerfFunction* TestNextSortKeyPart_32All();
UPerfFunction* TestNextSortKeyPart_32x2();
UPerfFunction* TestNextSortKeyPartUTF8_4All();
UPerfFunction* TestNextSortKeyPartUTF8_4x2();
UPerfFunction* TestNextSortKeyPartUTF8_4x4();
UPerfFunction* TestNextSortKeyPartUTF8_4x8();
UPerfFunction* TestNextSortKeyPartUTF8_32All();
UPerfFunction* TestNextSortKeyPartUTF8_32x2();
UPerfFunction* TestCppCompare();
UPerfFunction* TestCppCompareNull();
UPerfFunction* TestCppCompareSimilar();
UPerfFunction* TestCppCompareUTF8();
UPerfFunction* TestCppCompareUTF8Null();
UPerfFunction* TestCppCompareUTF8Similar();
UPerfFunction* TestCppGetCollationKey();
UPerfFunction* TestCppGetCollationKeyNull();
UPerfFunction* TestUniStrSort();
UPerfFunction* TestStringPieceSortCpp();
UPerfFunction* TestStringPieceSortC();
UPerfFunction* TestUniStrBinSearch();
UPerfFunction* TestStringPieceBinSearchCpp();
UPerfFunction* TestStringPieceBinSearchC();
};
CollPerf2Test::CollPerf2Test(int32_t argc, const char *argv[], UErrorCode &status) :
UPerfTest(argc, argv, status),
coll(nullptr),
collObj(nullptr),
count(0),
data16(nullptr),
data8(nullptr),
modData16(nullptr),
modData8(nullptr),
sortedData16(nullptr),
sortedData8(nullptr),
randomData16(nullptr),
randomData8(nullptr)
{
if (U_FAILURE(status)) {
return;
}
if (locale == nullptr){
locale = "root";
}
// Set up an ICU collator.
// Starting with ICU 54 (ticket #8260), this supports standard collation locale keywords.
coll = ucol_open(locale, &status);
collObj = Collator::createInstance(locale, status);
}
CollPerf2Test::~CollPerf2Test()
{
ucol_close(coll);
delete collObj;
delete data16;
delete data8;
delete modData16;
delete modData8;
delete sortedData16;
delete sortedData8;
delete randomData16;
delete randomData8;
}
#define MAX_NUM_DATA 10000
const CA_uchar* CollPerf2Test::getData16(UErrorCode &status)
{
if (U_FAILURE(status)) return nullptr;
if (data16) return data16;
CA_uchar* d16 = new CA_uchar();
const char16_t *line = nullptr;
int32_t len = 0;
int32_t numData = 0;
for (;;) {
line = ucbuf_readline(ucharBuf, &len, &status);
if (line == nullptr || U_FAILURE(status)) break;
// Refer to the source code of ucbuf_readline()
// 1. 'len' includes the line terminal symbols
// 2. The length of the line terminal symbols is only one character
// 3. The Windows CR LF line terminal symbols will be converted to CR
if (len == 1 || line[0] == 0x23 /* '#' */) {
continue; // skip empty/comment line
} else {
d16->append_one(len);
char16_t *p = d16->last();
u_memcpy(p, line, len - 1); // exclude the CR
p[len - 1] = 0; // NUL-terminate
numData++;
if (numData >= MAX_NUM_DATA) break;
}
}
if (U_SUCCESS(status)) {
data16 = d16;
} else {
delete d16;
}
return data16;
}
const CA_char* CollPerf2Test::getData8(UErrorCode &status)
{
if (U_FAILURE(status)) return nullptr;
if (data8) return data8;
return data8 = getData8FromData16(getData16(status), status);
}
const CA_uchar* CollPerf2Test::getModData16(UErrorCode &status)
{
if (U_FAILURE(status)) return nullptr;
if (modData16) return modData16;
const CA_uchar* d16 = getData16(status);
if (U_FAILURE(status)) return nullptr;
CA_uchar* modData16 = new CA_uchar();
for (int32_t i = 0; i < d16->count; i++) {
const char16_t *s = d16->dataOf(i);
int32_t len = d16->lengthOf(i) + 1; // including NUL terminator
modData16->append_one(len);
u_memcpy(modData16->last(), s, len);
// replacing the last character with a different character
char16_t *lastChar = &modData16->last()[len -2];
for (int32_t j = i + 1; j != i; j++) {
if (j >= d16->count) {
j = 0;
}
const char16_t *s1 = d16->dataOf(j);
char16_t lastChar1 = s1[d16->lengthOf(j) - 1];
if (*lastChar != lastChar1) {
*lastChar = lastChar1;
break;
}
}
}
return modData16;
}
const CA_char* CollPerf2Test::getModData8(UErrorCode &status)
{
if (U_FAILURE(status)) return nullptr;
if (modData8) return modData8;
return modData8 = getData8FromData16(getModData16(status), status);
}
namespace {
struct ArrayAndColl {
ArrayAndColl(const CA_uchar* a, const Collator& c) : d16(a), coll(c) {}
const CA_uchar* d16;
const Collator& coll;
};
int32_t U_CALLCONV
U16CollatorComparator(const void* context, const void* left, const void* right) {
const ArrayAndColl& ac = *static_cast<const ArrayAndColl*>(context);
const CA_uchar* d16 = ac.d16;
int32_t leftIndex = *static_cast<const int32_t*>(left);
int32_t rightIndex = *static_cast<const int32_t*>(right);
UErrorCode errorCode = U_ZERO_ERROR;
return ac.coll.compare(d16->dataOf(leftIndex), d16->lengthOf(leftIndex),
d16->dataOf(rightIndex), d16->lengthOf(rightIndex),
errorCode);
}
int32_t U_CALLCONV
U16HashComparator(const void* context, const void* left, const void* right) {
const CA_uchar* d16 = static_cast<const CA_uchar*>(context);
int32_t leftIndex = *static_cast<const int32_t*>(left);
int32_t rightIndex = *static_cast<const int32_t*>(right);
int32_t leftHash = ustr_hashUCharsN(d16->dataOf(leftIndex), d16->lengthOf(leftIndex));
int32_t rightHash = ustr_hashUCharsN(d16->dataOf(rightIndex), d16->lengthOf(rightIndex));
return leftHash < rightHash ? -1 : leftHash == rightHash ? 0 : 1;
}
} // namespace
const CA_uchar* CollPerf2Test::getSortedData16(UErrorCode &status) {
if (U_FAILURE(status)) return nullptr;
if (sortedData16) return sortedData16;
ArrayAndColl ac(getData16(status), *collObj);
return sortedData16 = sortData16(ac.d16, U16CollatorComparator, &ac, status);
}
const CA_char* CollPerf2Test::getSortedData8(UErrorCode &status) {
if (U_FAILURE(status)) return nullptr;
if (sortedData8) return sortedData8;
return sortedData8 = getData8FromData16(getSortedData16(status), status);
}
const CA_uchar* CollPerf2Test::getRandomData16(UErrorCode &status) {
if (U_FAILURE(status)) return nullptr;
if (randomData16) return randomData16;
// Sort the strings by their hash codes, which should be a reasonably pseudo-random order.
const CA_uchar* d16 = getData16(status);
return randomData16 = sortData16(d16, U16HashComparator, d16, status);
}
const CA_char* CollPerf2Test::getRandomData8(UErrorCode &status) {
if (U_FAILURE(status)) return nullptr;
if (randomData8) return randomData8;
return randomData8 = getData8FromData16(getRandomData16(status), status);
}
CA_uchar* CollPerf2Test::sortData16(const CA_uchar* d16,
UComparator *cmp, const void *context,
UErrorCode &status) {
if (U_FAILURE(status)) return nullptr;
LocalArray<int32_t> indexes(new int32_t[d16->count]);
for (int32_t i = 0; i < d16->count; ++i) {
indexes[i] = i;
}
uprv_sortArray(indexes.getAlias(), d16->count, 4, cmp, context, true, &status);
if (U_FAILURE(status)) return nullptr;
// Copy the strings in sorted order into a new array.
LocalPointer<CA_uchar> newD16(new CA_uchar());
for (int32_t i = 0; i < d16->count; i++) {
int32_t j = indexes[i];
const char16_t* s = d16->dataOf(j);
int32_t len = d16->lengthOf(j);
int32_t capacity = len + 1; // including NUL terminator
newD16->append_one(capacity);
u_memcpy(newD16->last(), s, capacity);
}
if (U_SUCCESS(status)) {
return newD16.orphan();
} else {
return nullptr;
}
}
CA_char* CollPerf2Test::getData8FromData16(const CA_uchar* d16, UErrorCode &status) {
if (U_FAILURE(status)) return nullptr;
// UTF-16 -> UTF-8 conversion
LocalPointer<CA_char> d8(new CA_char());
for (int32_t i = 0; i < d16->count; i++) {
const char16_t *s16 = d16->dataOf(i);
int32_t length16 = d16->lengthOf(i);
// get length in UTF-8
int32_t length8;
u_strToUTF8(nullptr, 0, &length8, s16, length16, &status);
if (status == U_BUFFER_OVERFLOW_ERROR || status == U_ZERO_ERROR){
status = U_ZERO_ERROR;
} else {
break;
}
int32_t capacity8 = length8 + 1; // plus terminal NUL
d8->append_one(capacity8);
// convert to UTF-8
u_strToUTF8(d8->last(), capacity8, nullptr, s16, length16, &status);
if (U_FAILURE(status)) break;
}
if (U_SUCCESS(status)) {
return d8.orphan();
} else {
return nullptr;
}
}
UPerfFunction*
CollPerf2Test::runIndexedTest(int32_t index, UBool exec, const char *&name, char *par /*= nullptr*/)
{
(void)par;
TESTCASE_AUTO_BEGIN;
TESTCASE_AUTO(TestStrcoll);
TESTCASE_AUTO(TestStrcollNull);
TESTCASE_AUTO(TestStrcollSimilar);
TESTCASE_AUTO(TestStrcollUTF8);
TESTCASE_AUTO(TestStrcollUTF8Null);
TESTCASE_AUTO(TestStrcollUTF8Similar);
TESTCASE_AUTO(TestGetSortKey);
TESTCASE_AUTO(TestGetSortKeyNull);
TESTCASE_AUTO(TestNextSortKeyPart_4All);
TESTCASE_AUTO(TestNextSortKeyPart_4x4);
TESTCASE_AUTO(TestNextSortKeyPart_4x8);
TESTCASE_AUTO(TestNextSortKeyPart_32All);
TESTCASE_AUTO(TestNextSortKeyPart_32x2);
TESTCASE_AUTO(TestNextSortKeyPartUTF8_4All);
TESTCASE_AUTO(TestNextSortKeyPartUTF8_4x4);
TESTCASE_AUTO(TestNextSortKeyPartUTF8_4x8);
TESTCASE_AUTO(TestNextSortKeyPartUTF8_32All);
TESTCASE_AUTO(TestNextSortKeyPartUTF8_32x2);
TESTCASE_AUTO(TestCppCompare);
TESTCASE_AUTO(TestCppCompareNull);
TESTCASE_AUTO(TestCppCompareSimilar);
TESTCASE_AUTO(TestCppCompareUTF8);
TESTCASE_AUTO(TestCppCompareUTF8Null);
TESTCASE_AUTO(TestCppCompareUTF8Similar);
TESTCASE_AUTO(TestCppGetCollationKey);
TESTCASE_AUTO(TestCppGetCollationKeyNull);
TESTCASE_AUTO(TestUniStrSort);
TESTCASE_AUTO(TestStringPieceSortCpp);
TESTCASE_AUTO(TestStringPieceSortC);
TESTCASE_AUTO(TestUniStrBinSearch);
TESTCASE_AUTO(TestStringPieceBinSearchCpp);
TESTCASE_AUTO(TestStringPieceBinSearchC);
TESTCASE_AUTO_END;
return nullptr;
}
UPerfFunction* CollPerf2Test::TestStrcoll()
{
UErrorCode status = U_ZERO_ERROR;
Strcoll *testCase = new Strcoll(coll, getData16(status), true /* useLen */);
if (U_FAILURE(status)) {
delete testCase;
return nullptr;
}
return testCase;
}
UPerfFunction* CollPerf2Test::TestStrcollNull()
{
UErrorCode status = U_ZERO_ERROR;
Strcoll *testCase = new Strcoll(coll, getData16(status), false /* useLen */);
if (U_FAILURE(status)) {
delete testCase;
return nullptr;
}
return testCase;
}
UPerfFunction* CollPerf2Test::TestStrcollSimilar()
{
UErrorCode status = U_ZERO_ERROR;
Strcoll_2 *testCase = new Strcoll_2(coll, getData16(status), getModData16(status), true /* useLen */);
if (U_FAILURE(status)) {
delete testCase;
return nullptr;
}
return testCase;
}
UPerfFunction* CollPerf2Test::TestStrcollUTF8()
{
UErrorCode status = U_ZERO_ERROR;
StrcollUTF8 *testCase = new StrcollUTF8(coll, getData8(status), true /* useLen */);
if (U_FAILURE(status)) {
delete testCase;
return nullptr;
}
return testCase;
}
UPerfFunction* CollPerf2Test::TestStrcollUTF8Null()
{
UErrorCode status = U_ZERO_ERROR;
StrcollUTF8 *testCase = new StrcollUTF8(coll, getData8(status),false /* useLen */);
if (U_FAILURE(status)) {
delete testCase;
return nullptr;
}
return testCase;
}
UPerfFunction* CollPerf2Test::TestStrcollUTF8Similar()
{
UErrorCode status = U_ZERO_ERROR;
StrcollUTF8_2 *testCase = new StrcollUTF8_2(coll, getData8(status), getModData8(status), true /* useLen */);
if (U_FAILURE(status)) {
delete testCase;
return nullptr;
}
return testCase;
}
UPerfFunction* CollPerf2Test::TestGetSortKey()
{
UErrorCode status = U_ZERO_ERROR;
GetSortKey *testCase = new GetSortKey(coll, getData16(status), true /* useLen */);
if (U_FAILURE(status)) {
delete testCase;
return nullptr;
}
return testCase;
}
UPerfFunction* CollPerf2Test::TestGetSortKeyNull()
{
UErrorCode status = U_ZERO_ERROR;
GetSortKey *testCase = new GetSortKey(coll, getData16(status), false /* useLen */);
if (U_FAILURE(status)) {
delete testCase;
return nullptr;
}
return testCase;
}
UPerfFunction* CollPerf2Test::TestNextSortKeyPart_4All()
{
UErrorCode status = U_ZERO_ERROR;
NextSortKeyPart *testCase = new NextSortKeyPart(coll, getData16(status), 4 /* bufSize */);
if (U_FAILURE(status)) {
delete testCase;
return nullptr;
}
return testCase;
}
UPerfFunction* CollPerf2Test::TestNextSortKeyPart_4x4()
{
UErrorCode status = U_ZERO_ERROR;
NextSortKeyPart *testCase = new NextSortKeyPart(coll, getData16(status), 4 /* bufSize */, 4 /* maxIteration */);
if (U_FAILURE(status)) {
delete testCase;
return nullptr;
}
return testCase;
}
UPerfFunction* CollPerf2Test::TestNextSortKeyPart_4x8()
{
UErrorCode status = U_ZERO_ERROR;
NextSortKeyPart *testCase = new NextSortKeyPart(coll, getData16(status), 4 /* bufSize */, 8 /* maxIteration */);
if (U_FAILURE(status)) {
delete testCase;
return nullptr;
}
return testCase;
}
UPerfFunction* CollPerf2Test::TestNextSortKeyPart_32All()
{
UErrorCode status = U_ZERO_ERROR;
NextSortKeyPart *testCase = new NextSortKeyPart(coll, getData16(status), 32 /* bufSize */);
if (U_FAILURE(status)) {
delete testCase;
return nullptr;
}
return testCase;
}
UPerfFunction* CollPerf2Test::TestNextSortKeyPart_32x2()
{
UErrorCode status = U_ZERO_ERROR;
NextSortKeyPart *testCase = new NextSortKeyPart(coll, getData16(status), 32 /* bufSize */, 2 /* maxIteration */);
if (U_FAILURE(status)) {
delete testCase;
return nullptr;
}
return testCase;
}
UPerfFunction* CollPerf2Test::TestNextSortKeyPartUTF8_4All()
{
UErrorCode status = U_ZERO_ERROR;
NextSortKeyPartUTF8 *testCase = new NextSortKeyPartUTF8(coll, getData8(status), 4 /* bufSize */);
if (U_FAILURE(status)) {
delete testCase;
return nullptr;
}
return testCase;
}
UPerfFunction* CollPerf2Test::TestNextSortKeyPartUTF8_4x4()
{
UErrorCode status = U_ZERO_ERROR;
NextSortKeyPartUTF8 *testCase = new NextSortKeyPartUTF8(coll, getData8(status), 4 /* bufSize */, 4 /* maxIteration */);
if (U_FAILURE(status)) {
delete testCase;
return nullptr;
}
return testCase;
}
UPerfFunction* CollPerf2Test::TestNextSortKeyPartUTF8_4x8()
{
UErrorCode status = U_ZERO_ERROR;
NextSortKeyPartUTF8 *testCase = new NextSortKeyPartUTF8(coll, getData8(status), 4 /* bufSize */, 8 /* maxIteration */);
if (U_FAILURE(status)) {
delete testCase;
return nullptr;
}
return testCase;
}
UPerfFunction* CollPerf2Test::TestNextSortKeyPartUTF8_32All()
{
UErrorCode status = U_ZERO_ERROR;
NextSortKeyPartUTF8 *testCase = new NextSortKeyPartUTF8(coll, getData8(status), 32 /* bufSize */);
if (U_FAILURE(status)) {
delete testCase;
return nullptr;
}
return testCase;
}
UPerfFunction* CollPerf2Test::TestNextSortKeyPartUTF8_32x2()
{
UErrorCode status = U_ZERO_ERROR;
NextSortKeyPartUTF8 *testCase = new NextSortKeyPartUTF8(coll, getData8(status), 32 /* bufSize */, 2 /* maxIteration */);
if (U_FAILURE(status)) {
delete testCase;
return nullptr;
}
return testCase;
}
UPerfFunction* CollPerf2Test::TestCppCompare()
{
UErrorCode status = U_ZERO_ERROR;
CppCompare *testCase = new CppCompare(collObj, getData16(status), true /* useLen */);
if (U_FAILURE(status)) {
delete testCase;
return nullptr;
}
return testCase;
}
UPerfFunction* CollPerf2Test::TestCppCompareNull()
{
UErrorCode status = U_ZERO_ERROR;
CppCompare *testCase = new CppCompare(collObj, getData16(status), false /* useLen */);
if (U_FAILURE(status)) {
delete testCase;
return nullptr;
}
return testCase;
}
UPerfFunction* CollPerf2Test::TestCppCompareSimilar()
{
UErrorCode status = U_ZERO_ERROR;
CppCompare_2 *testCase = new CppCompare_2(collObj, getData16(status), getModData16(status), true /* useLen */);
if (U_FAILURE(status)) {
delete testCase;
return nullptr;
}
return testCase;
}
UPerfFunction* CollPerf2Test::TestCppCompareUTF8()
{
UErrorCode status = U_ZERO_ERROR;
CppCompareUTF8 *testCase = new CppCompareUTF8(collObj, getData8(status), true /* useLen */);
if (U_FAILURE(status)) {
delete testCase;
return nullptr;
}
return testCase;
}
UPerfFunction* CollPerf2Test::TestCppCompareUTF8Null()
{
UErrorCode status = U_ZERO_ERROR;
CppCompareUTF8 *testCase = new CppCompareUTF8(collObj, getData8(status), false /* useLen */);
if (U_FAILURE(status)) {
delete testCase;
return nullptr;
}
return testCase;
}
UPerfFunction* CollPerf2Test::TestCppCompareUTF8Similar()
{
UErrorCode status = U_ZERO_ERROR;
CppCompareUTF8_2 *testCase = new CppCompareUTF8_2(collObj, getData8(status), getModData8(status), true /* useLen */);
if (U_FAILURE(status)) {
delete testCase;
return nullptr;
}
return testCase;
}
UPerfFunction* CollPerf2Test::TestCppGetCollationKey()
{
UErrorCode status = U_ZERO_ERROR;
CppGetCollationKey *testCase = new CppGetCollationKey(collObj, getData16(status), true /* useLen */);
if (U_FAILURE(status)) {
delete testCase;
return nullptr;
}
return testCase;
}
UPerfFunction* CollPerf2Test::TestCppGetCollationKeyNull()
{
UErrorCode status = U_ZERO_ERROR;
CppGetCollationKey *testCase = new CppGetCollationKey(collObj, getData16(status), false /* useLen */);
if (U_FAILURE(status)) {
delete testCase;
return nullptr;
}
return testCase;
}
UPerfFunction* CollPerf2Test::TestUniStrSort() {
UErrorCode status = U_ZERO_ERROR;
UPerfFunction *testCase = new UniStrSort(*collObj, coll, getRandomData16(status));
if (U_FAILURE(status)) {
delete testCase;
return nullptr;
}
return testCase;
}
UPerfFunction* CollPerf2Test::TestStringPieceSortCpp() {
UErrorCode status = U_ZERO_ERROR;
UPerfFunction *testCase = new StringPieceSortCpp(*collObj, coll, getRandomData8(status));
if (U_FAILURE(status)) {
delete testCase;
return nullptr;
}
return testCase;
}
UPerfFunction* CollPerf2Test::TestStringPieceSortC() {
UErrorCode status = U_ZERO_ERROR;
UPerfFunction *testCase = new StringPieceSortC(*collObj, coll, getRandomData8(status));
if (U_FAILURE(status)) {
delete testCase;
return nullptr;
}
return testCase;
}
UPerfFunction* CollPerf2Test::TestUniStrBinSearch() {
UErrorCode status = U_ZERO_ERROR;
UPerfFunction *testCase = new UniStrBinSearch(*collObj, coll, getSortedData16(status));
if (U_FAILURE(status)) {
delete testCase;
return nullptr;
}
return testCase;
}
UPerfFunction* CollPerf2Test::TestStringPieceBinSearchCpp() {
UErrorCode status = U_ZERO_ERROR;
UPerfFunction *testCase = new StringPieceBinSearchCpp(*collObj, coll, getSortedData8(status));
if (U_FAILURE(status)) {
delete testCase;
return nullptr;
}
return testCase;
}
UPerfFunction* CollPerf2Test::TestStringPieceBinSearchC() {
UErrorCode status = U_ZERO_ERROR;
UPerfFunction *testCase = new StringPieceBinSearchC(*collObj, coll, getSortedData8(status));
if (U_FAILURE(status)) {
delete testCase;
return nullptr;
}
return testCase;
}
int main(int argc, const char *argv[])
{
UErrorCode status = U_ZERO_ERROR;
CollPerf2Test test(argc, argv, status);
if (U_FAILURE(status)){
printf("The error is %s\n", u_errorName(status));
//TODO: print usage here
return status;
}
if (test.run() == false){
fprintf(stderr, "FAILED: Tests could not be run please check the arguments.\n");
return -1;
}
return 0;
}
|