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
|
// © 2016 and later: Unicode, Inc. and others.
// License & terms of use: http://www.unicode.org/copyright.html
/**
*******************************************************************************
* Copyright (C) 2001-2016, International Business Machines Corporation and
* others. All Rights Reserved.
*******************************************************************************
*/
#include "utypeinfo.h" // for 'typeid' to work
#include "unicode/utypes.h"
#if !UCONFIG_NO_SERVICE
#include "cmemory.h"
#include "icusvtst.h"
#include "servloc.h"
#include <stdio.h>
class MyListener : public EventListener {
};
class WrongListener : public EventListener {
};
class ICUNSubclass : public ICUNotifier {
public:
UBool acceptsListener(const EventListener& /*l*/) const override {
return true;
// return l instanceof MyListener;
}
virtual void notifyListener(EventListener& /*l*/) const override {
}
};
// This factory does nothing
class LKFSubclass0 : public LocaleKeyFactory {
public:
LKFSubclass0()
: LocaleKeyFactory(VISIBLE, "LKFSubclass0")
{
}
};
class LKFSubclass : public LocaleKeyFactory {
Hashtable table;
public:
LKFSubclass(UBool visible)
: LocaleKeyFactory(visible ? VISIBLE : INVISIBLE, "LKFSubclass")
{
UErrorCode status = U_ZERO_ERROR;
table.put("en_US", this, status);
}
protected:
virtual const Hashtable* getSupportedIDs(UErrorCode &/*status*/) const override {
return &table;
}
};
class Integer : public UObject {
public:
const int32_t _val;
Integer(int32_t val) : _val(val) {
}
Integer(const Integer& rhs) : UObject(rhs), _val(rhs._val) {
}
virtual ~Integer() {
}
public:
/**
* UObject boilerplate.
*/
static UClassID getStaticClassID() {
return (UClassID)&fgClassID;
}
virtual UClassID getDynamicClassID() const override {
return getStaticClassID();
}
virtual bool operator==(const UObject& other) const
{
return typeid(*this) == typeid(other) &&
_val == (dynamic_cast<Integer&>(const_cast<UObject&>(other)))._val;
}
public:
virtual UnicodeString& debug(UnicodeString& result) const {
debugClass(result);
result.append(" val: ");
result.append(_val);
return result;
}
virtual UnicodeString& debugClass(UnicodeString& result) const {
return result.append("Integer");
}
private:
static const char fgClassID;
};
const char Integer::fgClassID = '\0';
// use locale keys
class TestIntegerService : public ICUService {
public:
ICUServiceKey* createKey(const UnicodeString* id, UErrorCode& status) const override {
return LocaleKey::createWithCanonicalFallback(id, nullptr, status); // no fallback locale
}
virtual ICUServiceFactory* createSimpleFactory(UObject* obj, const UnicodeString& id, UBool visible, UErrorCode& status) override
{
Integer* i;
if (U_SUCCESS(status) && obj && (i = dynamic_cast<Integer*>(obj)) != nullptr) {
return new SimpleFactory(i, id, visible);
}
return nullptr;
}
virtual UObject* cloneInstance(UObject* instance) const override {
return instance ? new Integer(*dynamic_cast<Integer*>(instance)) : nullptr;
}
};
ICUServiceTest::ICUServiceTest() {
}
ICUServiceTest::~ICUServiceTest() {
}
void
ICUServiceTest::runIndexedTest(int32_t index, UBool exec, const char* &name,
char* /*par*/)
{
switch (index) {
TESTCASE(0,testAPI_One);
TESTCASE(1,testAPI_Two);
TESTCASE(2,testRBF);
TESTCASE(3,testNotification);
TESTCASE(4,testLocale);
TESTCASE(5,testWrapFactory);
TESTCASE(6,testCoverage);
default: name = ""; break;
}
}
UnicodeString append(UnicodeString& result, const UObject* obj)
{
char buffer[128];
if (obj == nullptr) {
result.append("nullptr");
} else {
const UnicodeString* s;
const Locale* loc;
const Integer* i;
if ((s = dynamic_cast<const UnicodeString*>(obj)) != nullptr) {
result.append(*s);
} else if ((loc = dynamic_cast<const Locale*>(obj)) != nullptr) {
result.append(loc->getName());
} else if ((i = dynamic_cast<const Integer*>(obj)) != nullptr) {
snprintf(buffer, sizeof(buffer), "%d", static_cast<int>(i->_val));
result.append(buffer);
} else {
snprintf(buffer, sizeof(buffer), "%p", (const void*)obj);
result.append(buffer);
}
}
return result;
}
UnicodeString&
ICUServiceTest::lrmsg(UnicodeString& result, const UnicodeString& message, const UObject* lhs, const UObject* rhs) const
{
result.append(message);
result.append(" lhs: ");
append(result, lhs);
result.append(", rhs: ");
append(result, rhs);
return result;
}
void
ICUServiceTest::confirmBoolean(const UnicodeString& message, UBool val)
{
if (val) {
logln(message);
} else {
errln(message);
}
}
#if 0
void
ICUServiceTest::confirmEqual(const UnicodeString& message, const UObject* lhs, const UObject* rhs)
{
UBool equ = (lhs == nullptr)
? (rhs == nullptr)
: (rhs != nullptr && lhs->operator==(*rhs));
UnicodeString temp;
lrmsg(temp, message, lhs, rhs);
if (equ) {
logln(temp);
} else {
errln(temp);
}
}
#else
void
ICUServiceTest::confirmEqual(const UnicodeString& message, const Integer* lhs, const Integer* rhs)
{
UBool equ = (lhs == nullptr)
? (rhs == nullptr)
: (rhs != nullptr && lhs->operator==(*rhs));
UnicodeString temp;
lrmsg(temp, message, lhs, rhs);
if (equ) {
logln(temp);
} else {
errln(temp);
}
}
void
ICUServiceTest::confirmEqual(const UnicodeString& message, const UnicodeString* lhs, const UnicodeString* rhs)
{
UBool equ = (lhs == nullptr)
? (rhs == nullptr)
: (rhs != nullptr && lhs->operator==(*rhs));
UnicodeString temp;
lrmsg(temp, message, lhs, rhs);
if (equ) {
logln(temp);
} else {
errln(temp);
}
}
void
ICUServiceTest::confirmEqual(const UnicodeString& message, const Locale* lhs, const Locale* rhs)
{
UBool equ = (lhs == nullptr)
? (rhs == nullptr)
: (rhs != nullptr && lhs->operator==(*rhs));
UnicodeString temp;
lrmsg(temp, message, lhs, rhs);
if (equ) {
logln(temp);
} else {
errln(temp);
}
}
#endif
// use these for now
void
ICUServiceTest::confirmStringsEqual(const UnicodeString& message, const UnicodeString& lhs, const UnicodeString& rhs)
{
UBool equ = lhs == rhs;
UnicodeString temp = message;
temp.append(" lhs: ");
temp.append(lhs);
temp.append(" rhs: ");
temp.append(rhs);
if (equ) {
logln(temp);
} else {
dataerrln(temp);
}
}
void
ICUServiceTest::confirmIdentical(const UnicodeString& message, const UObject* lhs, const UObject *rhs)
{
UnicodeString temp;
lrmsg(temp, message, lhs, rhs);
if (lhs == rhs) {
logln(temp);
} else {
errln(temp);
}
}
void
ICUServiceTest::confirmIdentical(const UnicodeString& message, int32_t lhs, int32_t rhs)
{
if (lhs == rhs) {
logln(message + " lhs: " + lhs + " rhs: " + rhs);
} else {
errln(message + " lhs: " + lhs + " rhs: " + rhs);
}
}
void
ICUServiceTest::msgstr(const UnicodeString& message, UObject* obj, UBool err)
{
if (obj) {
UnicodeString* str = dynamic_cast<UnicodeString*>(obj);
logln(message + *str);
delete str;
} else if (err) {
errln("Error " + message + "string is nullptr");
}
}
void
ICUServiceTest::testAPI_One()
{
// create a service using locale keys,
TestIntegerService service;
// register an object with one locale,
// search for an object with a more specific locale
// should return the original object
UErrorCode status = U_ZERO_ERROR;
Integer* singleton0 = new Integer(0);
service.registerInstance(singleton0, "en_US", status);
{
UErrorCode status = U_ZERO_ERROR;
Integer* result = dynamic_cast<Integer*>(service.get("en_US_FOO", status));
confirmEqual("1) en_US_FOO -> en_US", result, singleton0);
delete result;
}
// register a new object with the more specific locale
// search for an object with that locale
// should return the new object
Integer* singleton1 = new Integer(1);
service.registerInstance(singleton1, "en_US_FOO", status);
{
UErrorCode status = U_ZERO_ERROR;
Integer* result = dynamic_cast<Integer*>(service.get("en_US_FOO", status));
confirmEqual("2) en_US_FOO -> en_US_FOO", result, singleton1);
delete result;
}
// search for an object that falls back to the first registered locale
{
UErrorCode status = U_ZERO_ERROR;
Integer* result = dynamic_cast<Integer*>(service.get("en_US_BAR", status));
confirmEqual("3) en_US_BAR -> en_US", result, singleton0);
delete result;
}
// get a list of the factories, should be two
{
confirmIdentical("4) factory size", service.countFactories(), 2);
}
// register a new object with yet another locale
Integer* singleton2 = new Integer(2);
service.registerInstance(singleton2, "en", status);
{
confirmIdentical("5) factory size", service.countFactories(), 3);
}
// search for an object with the new locale
// stack of factories is now en, en_US_FOO, en_US
// search for en_US should still find en_US object
{
UErrorCode status = U_ZERO_ERROR;
Integer* result = dynamic_cast<Integer*>(service.get("en_US_BAR", status));
confirmEqual("6) en_US_BAR -> en_US", result, singleton0);
delete result;
}
// register a new object with an old id, should hide earlier factory using this id, but leave it there
Integer* singleton3 = new Integer(3);
URegistryKey s3key = service.registerInstance(singleton3, "en_US", status);
{
confirmIdentical("9) factory size", service.countFactories(), 4);
}
// should get data from that new factory
{
UErrorCode status = U_ZERO_ERROR;
Integer* result = dynamic_cast<Integer*>(service.get("en_US_BAR", status));
confirmEqual("10) en_US_BAR -> (3)", result, singleton3);
delete result;
}
// remove new factory
// should have fewer factories again
// singleton3 dead!
{
UErrorCode status = U_ZERO_ERROR;
service.unregister(s3key, status);
confirmIdentical("11) factory size", service.countFactories(), 3);
}
// should get original data again after remove factory
{
UErrorCode status = U_ZERO_ERROR;
Integer* result = dynamic_cast<Integer*>(service.get("en_US_BAR", status));
confirmEqual("12) en_US_BAR -> (3)", result, singleton0);
delete result;
}
// shouldn't find unregistered ids
{
UErrorCode status = U_ZERO_ERROR;
Integer* result = dynamic_cast<Integer*>(service.get("foo", status));
confirmIdentical("13) foo -> null", result, nullptr);
delete result;
}
// should find non-canonical strings
{
UnicodeString resultID;
UErrorCode status = U_ZERO_ERROR;
Integer* result = dynamic_cast<Integer*>(service.get("EN_us_fOo", &resultID, status));
confirmEqual("14a) find-non-canonical", result, singleton1);
confirmStringsEqual("14b) find non-canonical", resultID, "en_US_FOO");
delete result;
}
// should be able to register non-canonical strings and get them canonicalized
Integer* singleton4 = new Integer(4);
service.registerInstance(singleton4, "eN_ca_dUde", status);
{
UnicodeString resultID;
UErrorCode status = U_ZERO_ERROR;
Integer* result = dynamic_cast<Integer*>(service.get("En_Ca_DuDe", &resultID, status));
confirmEqual("15a) find-non-canonical", result, singleton4);
confirmStringsEqual("15b) register non-canonical", resultID, "en_CA_DUDE");
delete result;
}
// should be able to register invisible factories, these will not
// be visible by default, but if you know the secret password you
// can still access these services...
Integer* singleton5 = new Integer(5);
service.registerInstance(singleton5, "en_US_BAR", false, status);
{
UErrorCode status = U_ZERO_ERROR;
Integer* result = dynamic_cast<Integer*>(service.get("en_US_BAR", status));
confirmEqual("17) get invisible", result, singleton5);
delete result;
}
// should not be able to locate invisible services
{
UErrorCode status = U_ZERO_ERROR;
UVector ids(uprv_deleteUObject, uhash_compareUnicodeString, status);
service.getVisibleIDs(ids, status);
UnicodeString target = "en_US_BAR";
confirmBoolean("18) find invisible", !ids.contains(&target));
}
// clear factory and caches
service.reset();
confirmBoolean("19) is default", service.isDefault());
}
/*
******************************************************************
*/
class TestStringSimpleKeyService : public ICUService {
public:
virtual ICUServiceFactory* createSimpleFactory(UObject* obj, const UnicodeString& id, UBool visible, UErrorCode& status) override
{
// We could put this type check into ICUService itself, but we'd still
// have to implement cloneInstance. Otherwise we could just tell the service
// what the object type is when we create it, and the default implementation
// could handle everything for us. Phooey.
if (obj && dynamic_cast<UnicodeString*>(obj) != nullptr) {
return ICUService::createSimpleFactory(obj, id, visible, status);
}
return nullptr;
}
virtual UObject* cloneInstance(UObject* instance) const override {
return instance ? new UnicodeString(*dynamic_cast<UnicodeString*>(instance)) : nullptr;
}
};
class TestStringService : public ICUService {
public:
ICUServiceKey* createKey(const UnicodeString* id, UErrorCode& status) const override {
return LocaleKey::createWithCanonicalFallback(id, nullptr, status); // no fallback locale
}
virtual ICUServiceFactory* createSimpleFactory(UObject* obj, const UnicodeString& id, UBool visible, UErrorCode& /* status */) override
{
UnicodeString* s;
if (obj && (s = dynamic_cast<UnicodeString*>(obj)) != nullptr) {
return new SimpleFactory(s, id, visible);
}
return nullptr;
}
virtual UObject* cloneInstance(UObject* instance) const override {
return instance ? new UnicodeString(*dynamic_cast<UnicodeString*>(instance)) : nullptr;
}
};
// this creates a string for any id, but doesn't report anything
class AnonymousStringFactory : public ICUServiceFactory
{
public:
virtual UObject* create(const ICUServiceKey& key, const ICUService* /* service */, UErrorCode& /* status */) const override {
return new UnicodeString(key.getID());
}
virtual void updateVisibleIDs(Hashtable& /*result*/, UErrorCode& /*status*/) const override {
// do nothing
}
virtual UnicodeString& getDisplayName(const UnicodeString& /*id*/, const Locale& /*locale*/, UnicodeString& result) const override {
// do nothing
return result;
}
static UClassID getStaticClassID() {
return (UClassID)&fgClassID;
}
virtual UClassID getDynamicClassID() const override {
return getStaticClassID();
}
private:
static const char fgClassID;
};
const char AnonymousStringFactory::fgClassID = '\0';
class TestMultipleKeyStringFactory : public ICUServiceFactory {
UErrorCode _status;
UVector _ids;
UnicodeString _factoryID;
public:
TestMultipleKeyStringFactory(const UnicodeString ids[], int32_t count, const UnicodeString& factoryID)
: _status(U_ZERO_ERROR)
, _ids(uprv_deleteUObject, uhash_compareUnicodeString, count, _status)
, _factoryID(factoryID + ": ")
{
for (int i = 0; i < count; ++i) {
_ids.adoptElement(new UnicodeString(ids[i]), _status);
}
}
~TestMultipleKeyStringFactory() {
}
UObject* create(const ICUServiceKey& key, const ICUService* /* service */, UErrorCode& status) const override {
if (U_FAILURE(status)) {
return nullptr;
}
UnicodeString temp;
key.currentID(temp);
if (U_SUCCESS(_status)) {
if (_ids.contains(&temp)) {
return new UnicodeString(_factoryID + temp);
}
} else {
status = _status;
}
return nullptr;
}
void updateVisibleIDs(Hashtable& result, UErrorCode& status) const override {
if (U_SUCCESS(_status)) {
for (int32_t i = 0; i < _ids.size(); ++i) {
result.put(*static_cast<UnicodeString*>(_ids[i]), (void*)this, status);
}
}
}
UnicodeString& getDisplayName(const UnicodeString& id, const Locale& locale, UnicodeString& result) const override {
if (U_SUCCESS(_status) && _ids.contains((void*)&id)) {
char buffer[128];
UErrorCode status = U_ZERO_ERROR;
int32_t len = id.extract(buffer, sizeof(buffer), nullptr, status);
if (U_SUCCESS(status)) {
if (len == sizeof(buffer)) {
--len;
}
buffer[len] = 0;
Locale loc = Locale::createFromName(buffer);
loc.getDisplayName(locale, result);
return result;
}
}
result.setToBogus(); // shouldn't happen
return result;
}
static UClassID getStaticClassID() {
return (UClassID)&fgClassID;
}
virtual UClassID getDynamicClassID() const override {
return getStaticClassID();
}
private:
static const char fgClassID;
};
const char TestMultipleKeyStringFactory::fgClassID = '\0';
void
ICUServiceTest::testAPI_Two()
{
UErrorCode status = U_ZERO_ERROR;
TestStringService service;
service.registerFactory(new AnonymousStringFactory(), status);
// anonymous factory will still handle the id
{
UErrorCode status = U_ZERO_ERROR;
const UnicodeString en_US = "en_US";
UnicodeString* result = dynamic_cast<UnicodeString*>(service.get(en_US, status));
confirmEqual("21) locale", result, &en_US);
delete result;
}
// still normalizes id
{
UErrorCode status = U_ZERO_ERROR;
const UnicodeString en_US_BAR = "en_US_BAR";
UnicodeString resultID;
UnicodeString* result = dynamic_cast<UnicodeString*>(service.get("EN_us_bar", &resultID, status));
confirmEqual("22) locale", &resultID, &en_US_BAR);
delete result;
}
// we can override for particular ids
UnicodeString* singleton0 = new UnicodeString("Zero");
service.registerInstance(singleton0, "en_US_BAR", status);
{
UErrorCode status = U_ZERO_ERROR;
UnicodeString* result = dynamic_cast<UnicodeString*>(service.get("en_US_BAR", status));
confirmEqual("23) override super", result, singleton0);
delete result;
}
// empty service should not recognize anything
service.reset();
{
UErrorCode status = U_ZERO_ERROR;
UnicodeString* result = dynamic_cast<UnicodeString*>(service.get("en_US", status));
confirmIdentical("24) empty", result, nullptr);
}
// create a custom multiple key factory
{
UnicodeString xids[] = {
"en_US_VALLEY_GIRL",
"en_US_VALLEY_BOY",
"en_US_SURFER_GAL",
"en_US_SURFER_DUDE"
};
int32_t count = UPRV_LENGTHOF(xids);
ICUServiceFactory* f = new TestMultipleKeyStringFactory(xids, count, "Later");
service.registerFactory(f, status);
}
// iterate over the visual ids returned by the multiple factory
{
UErrorCode status = U_ZERO_ERROR;
UVector ids(uprv_deleteUObject, uhash_compareUnicodeString, 0, status);
service.getVisibleIDs(ids, status);
for (int i = 0; i < ids.size(); ++i) {
const UnicodeString* id = static_cast<const UnicodeString*>(const_cast<const void*>(ids[i]));
UnicodeString* result = dynamic_cast<UnicodeString*>(service.get(*id, status));
if (result) {
logln(" " + *id + " --> " + *result);
delete result;
} else {
errln("could not find " + *id);
}
}
// four visible ids
confirmIdentical("25) visible ids", ids.size(), 4);
}
// iterate over the display names
{
UErrorCode status = U_ZERO_ERROR;
UVector names(status);
service.getDisplayNames(names, status);
for (int i = 0; i < names.size(); ++i) {
const StringPair* pair = static_cast<const StringPair*>(names[i]);
logln(" " + pair->displayName + " --> " + pair->id);
}
confirmIdentical("26) display names", names.size(), 4);
}
// no valid display name
{
UnicodeString name;
service.getDisplayName("en_US_VALLEY_GEEK", name);
confirmBoolean("27) get display name", name.isBogus());
}
{
UnicodeString name;
service.getDisplayName("en_US_SURFER_DUDE", name, Locale::getEnglish());
confirmStringsEqual("28) get display name", name, "English (United States, SURFER_DUDE)");
}
// register another multiple factory
{
UnicodeString xids[] = {
"en_US_SURFER",
"en_US_SURFER_GAL",
"en_US_SILICON",
"en_US_SILICON_GEEK",
};
int32_t count = UPRV_LENGTHOF(xids);
ICUServiceFactory* f = new TestMultipleKeyStringFactory(xids, count, "Rad dude");
service.registerFactory(f, status);
}
// this time, we have seven display names
// Rad dude's surfer gal 'replaces' Later's surfer gal
{
UErrorCode status = U_ZERO_ERROR;
UVector names(status);
service.getDisplayNames(names, Locale("es"), status);
for (int i = 0; i < names.size(); ++i) {
const StringPair* pair = static_cast<const StringPair*>(names[i]);
logln(" " + pair->displayName + " --> " + pair->id);
}
confirmIdentical("29) display names", names.size(), 7);
}
// we should get the display name corresponding to the actual id
// returned by the id we used.
{
UErrorCode status = U_ZERO_ERROR;
UnicodeString actualID;
UnicodeString id = "en_us_surfer_gal";
UnicodeString* gal = dynamic_cast<UnicodeString*>(service.get(id, &actualID, status));
if (gal != nullptr) {
UnicodeString displayName;
logln("actual id: " + actualID);
service.getDisplayName(actualID, displayName, Locale::getEnglish());
logln("found actual: " + *gal + " with display name: " + displayName);
confirmBoolean("30) found display name for actual", !displayName.isBogus());
service.getDisplayName(id, displayName, Locale::getEnglish());
logln("found actual: " + *gal + " with display name: " + displayName);
confirmBoolean("31) found display name for query", displayName.isBogus());
delete gal;
} else {
errln("30) service could not find entry for " + id);
}
}
// this should be handled by the 'dude' factory, since it overrides en_US_SURFER.
{
UErrorCode status = U_ZERO_ERROR;
UnicodeString actualID;
UnicodeString id = "en_US_SURFER_BOZO";
UnicodeString* bozo = dynamic_cast<UnicodeString*>(service.get(id, &actualID, status));
if (bozo != nullptr) {
UnicodeString displayName;
service.getDisplayName(actualID, displayName, Locale::getEnglish());
logln("found actual: " + *bozo + " with display name: " + displayName);
confirmBoolean("32) found display name for actual", !displayName.isBogus());
service.getDisplayName(id, displayName, Locale::getEnglish());
logln("found actual: " + *bozo + " with display name: " + displayName);
confirmBoolean("33) found display name for query", displayName.isBogus());
delete bozo;
} else {
errln("32) service could not find entry for " + id);
}
}
// certainly not default...
{
confirmBoolean("34) is default ", !service.isDefault());
}
{
UErrorCode status = U_ZERO_ERROR;
UVector ids(uprv_deleteUObject, uhash_compareUnicodeString, 0, status);
service.getVisibleIDs(ids, status);
for (int i = 0; i < ids.size(); ++i) {
const UnicodeString* id = static_cast<const UnicodeString*>(const_cast<const void*>(ids[i]));
msgstr(*id + "? ", service.get(*id, status));
}
logstr("valleygirl? ", service.get("en_US_VALLEY_GIRL", status));
logstr("valleyboy? ", service.get("en_US_VALLEY_BOY", status));
logstr("valleydude? ", service.get("en_US_VALLEY_DUDE", status));
logstr("surfergirl? ", service.get("en_US_SURFER_GIRL", status));
}
}
class CalifornioLanguageFactory : public ICUResourceBundleFactory
{
public:
static const char* californio; // = "en_US_CA";
static const char* valley; // = californio ## "_VALLEY";
static const char* surfer; // = californio ## "_SURFER";
static const char* geek; // = californio ## "_GEEK";
static Hashtable* supportedIDs; // = nullptr;
static void cleanup() {
delete supportedIDs;
supportedIDs = nullptr;
}
const Hashtable* getSupportedIDs(UErrorCode& status) const override
{
if (supportedIDs == nullptr) {
Hashtable* table = new Hashtable();
table->put(UnicodeString(californio), (void*)table, status);
table->put(UnicodeString(valley), (void*)table, status);
table->put(UnicodeString(surfer), (void*)table, status);
table->put(UnicodeString(geek), (void*)table, status);
// not necessarily atomic, but this is a test...
supportedIDs = table;
}
return supportedIDs;
}
UnicodeString& getDisplayName(const UnicodeString& id, const Locale& locale, UnicodeString& result) const override
{
UnicodeString prefix = "";
UnicodeString suffix = "";
UnicodeString ls = locale.getName();
if (LocaleUtility::isFallbackOf(californio, ls)) {
if (!ls.caseCompare(valley, 0)) {
prefix = "Like, you know, it's so totally ";
} else if (!ls.caseCompare(surfer, 0)) {
prefix = "Dude, it's ";
} else if (!ls.caseCompare(geek, 0)) {
prefix = "I'd estimate it is approximately ";
} else {
prefix = "Huh? Maybe ";
}
}
if (LocaleUtility::isFallbackOf(californio, id)) {
if (!id.caseCompare(valley, 0)) {
suffix = "like the Valley, you know? Let's go to the mall!";
} else if (!id.caseCompare(surfer, 0)) {
suffix = "time to hit those gnarly waves, Dude!!!";
} else if (!id.caseCompare(geek, 0)) {
suffix = "all systems go. T-Minus 9, 8, 7...";
} else {
suffix = "No Habla Englais";
}
} else {
suffix = ICUResourceBundleFactory::getDisplayName(id, locale, result);
}
result = prefix + suffix;
return result;
}
};
const char* CalifornioLanguageFactory::californio = "en_US_CA";
const char* CalifornioLanguageFactory::valley = "en_US_CA_VALLEY";
const char* CalifornioLanguageFactory::surfer = "en_US_CA_SURFER";
const char* CalifornioLanguageFactory::geek = "en_US_CA_GEEK";
Hashtable* CalifornioLanguageFactory::supportedIDs = nullptr;
void
ICUServiceTest::testRBF()
{
// resource bundle factory.
UErrorCode status = U_ZERO_ERROR;
TestStringService service;
service.registerFactory(new ICUResourceBundleFactory(), status);
// list all of the resources
{
UErrorCode status = U_ZERO_ERROR;
UVector ids(uprv_deleteUObject, uhash_compareUnicodeString, 0, status);
service.getVisibleIDs(ids, status);
logln("all visible ids:");
for (int i = 0; i < ids.size(); ++i) {
const UnicodeString* id = static_cast<const UnicodeString*>(const_cast<const void*>(ids[i]));
logln(*id);
}
}
// get all the display names of these resources
// this should be fast since the display names were cached.
{
UErrorCode status = U_ZERO_ERROR;
UVector names(status);
service.getDisplayNames(names, Locale::getGermany(), status);
logln("service display names for de_DE");
for (int i = 0; i < names.size(); ++i) {
const StringPair* pair = static_cast<const StringPair*>(names[i]);
logln(" " + pair->displayName + " --> " + pair->id);
}
}
service.registerFactory(new CalifornioLanguageFactory(), status);
// get all the display names of these resources
{
logln("californio language factory:");
const char* idNames[] = {
CalifornioLanguageFactory::californio,
CalifornioLanguageFactory::valley,
CalifornioLanguageFactory::surfer,
CalifornioLanguageFactory::geek,
};
int32_t count = UPRV_LENGTHOF(idNames);
for (int i = 0; i < count; ++i) {
logln(UnicodeString("\n --- ") + idNames[i] + " ---");
{
UErrorCode status = U_ZERO_ERROR;
UVector names(status);
service.getDisplayNames(names, idNames[i], status);
for (int i = 0; i < names.size(); ++i) {
const StringPair* pair = static_cast<const StringPair*>(names[i]);
logln(" " + pair->displayName + " --> " + pair->id);
}
}
}
}
CalifornioLanguageFactory::cleanup();
}
class SimpleListener : public ServiceListener {
ICUServiceTest* _test;
UnicodeString _name;
public:
SimpleListener(ICUServiceTest* test, const UnicodeString& name) : _test(test), _name(name) {}
virtual void serviceChanged(const ICUService& service) const override {
UnicodeString serviceName = "listener ";
serviceName.append(_name);
serviceName.append(" n++");
serviceName.append(" service changed: " );
service.getName(serviceName);
_test->logln(serviceName);
}
};
void
ICUServiceTest::testNotification()
{
SimpleListener one(this, "one");
SimpleListener two(this, "two");
{
UErrorCode status = U_ZERO_ERROR;
logln("simple registration notification");
TestStringService ls;
ls.addListener(&one, status);
ls.addListener(&two, status);
logln("registering foo... ");
ls.registerInstance(new UnicodeString("Foo"), "en_FOO", status);
logln("registering bar... ");
ls.registerInstance(new UnicodeString("Bar"), "en_BAR", status);
logln("getting foo...");
UnicodeString* result = dynamic_cast<UnicodeString*>(ls.get("en_FOO", status));
logln(*result);
delete result;
logln("removing listener 2...");
ls.removeListener(&two, status);
logln("registering baz...");
ls.registerInstance(new UnicodeString("Baz"), "en_BAZ", status);
logln("removing listener 1");
ls.removeListener(&one, status);
logln("registering burp...");
ls.registerInstance(new UnicodeString("Burp"), "en_BURP", status);
// should only get one notification even if register multiple times
logln("... trying multiple registration");
ls.addListener(&one, status);
ls.addListener(&one, status);
ls.addListener(&one, status);
ls.addListener(&two, status);
ls.registerInstance(new UnicodeString("Foo"), "en_FOO", status);
logln("... registered foo");
}
#if 0
// same thread, so we can't callback within notification, unlike Java
ServiceListener l3 = new ServiceListener() {
private int n;
public void serviceChanged(ICUService s) {
logln("listener 3 report " + n++ + " service changed...");
if (s.get("en_BOINK") == null) { // don't recurse on ourselves!!!
logln("registering boink...");
s.registerInstance("boink", "en_BOINK");
}
}
};
ls.addListener(l3);
logln("registering boo...");
ls.registerInstance("Boo", "en_BOO");
#endif
logln("...done");
}
class TestStringLocaleService : public ICULocaleService {
public:
virtual UObject* cloneInstance(UObject* instance) const override {
return instance ? new UnicodeString(*dynamic_cast<UnicodeString*>(instance)) : nullptr;
}
};
void ICUServiceTest::testLocale() {
UErrorCode status = U_ZERO_ERROR;
TestStringLocaleService service;
UnicodeString* root = new UnicodeString("root");
UnicodeString* german = new UnicodeString("german");
UnicodeString* germany = new UnicodeString("german_Germany");
UnicodeString* japanese = new UnicodeString("japanese");
UnicodeString* japan = new UnicodeString("japanese_Japan");
service.registerInstance(root, "", status);
service.registerInstance(german, "de", status);
service.registerInstance(germany, Locale::getGermany(), status);
service.registerInstance(japanese, UnicodeString("ja"), true, status);
service.registerInstance(japan, Locale::getJapan(), status);
{
UErrorCode status = U_ZERO_ERROR;
UnicodeString* target = dynamic_cast<UnicodeString*>(service.get("de_US", status));
confirmEqual("test de_US", german, target);
delete target;
}
{
UErrorCode status = U_ZERO_ERROR;
UnicodeString* target = dynamic_cast<UnicodeString*>(service.get("de_US", LocaleKey::KIND_ANY, status));
confirmEqual("test de_US 2", german, target);
delete target;
}
{
UErrorCode status = U_ZERO_ERROR;
UnicodeString* target = dynamic_cast<UnicodeString*>(service.get("de_US", 1234, status));
confirmEqual("test de_US 3", german, target);
delete target;
}
{
UErrorCode status = U_ZERO_ERROR;
Locale actualReturn;
UnicodeString* target = dynamic_cast<UnicodeString*>(service.get("de_US", &actualReturn, status));
confirmEqual("test de_US 5", german, target);
confirmEqual("test de_US 6", &actualReturn, &Locale::getGerman());
delete target;
}
{
UErrorCode status = U_ZERO_ERROR;
Locale actualReturn;
UnicodeString* target = dynamic_cast<UnicodeString*>(service.get("de_US", LocaleKey::KIND_ANY, &actualReturn, status));
confirmEqual("test de_US 7", &actualReturn, &Locale::getGerman());
delete target;
}
{
UErrorCode status = U_ZERO_ERROR;
Locale actualReturn;
UnicodeString* target = dynamic_cast<UnicodeString*>(service.get("de_US", 1234, &actualReturn, status));
confirmEqual("test de_US 8", german, target);
confirmEqual("test de_US 9", &actualReturn, &Locale::getGerman());
delete target;
}
UnicodeString* one = new UnicodeString("one/de_US");
UnicodeString* two = new UnicodeString("two/de_US");
service.registerInstance(one, Locale("de_US"), 1, status);
service.registerInstance(two, Locale("de_US"), 2, status);
{
UErrorCode status = U_ZERO_ERROR;
UnicodeString* target = dynamic_cast<UnicodeString*>(service.get("de_US", 1, status));
confirmEqual("test de_US kind 1", one, target);
delete target;
}
{
UErrorCode status = U_ZERO_ERROR;
UnicodeString* target = dynamic_cast<UnicodeString*>(service.get("de_US", 2, status));
confirmEqual("test de_US kind 2", two, target);
delete target;
}
{
UErrorCode status = U_ZERO_ERROR;
UnicodeString* target = dynamic_cast<UnicodeString*>(service.get("de_US", status));
confirmEqual("test de_US kind 3", german, target);
delete target;
}
{
UErrorCode status = U_ZERO_ERROR;
UnicodeString english = "en";
Locale localeResult;
UnicodeString result;
LocaleKey* lkey = LocaleKey::createWithCanonicalFallback(&english, nullptr, 1234, status);
logln("lkey prefix: " + lkey->prefix(result));
result.remove();
logln("lkey descriptor: " + lkey->currentDescriptor(result));
result.remove();
logln(UnicodeString("lkey current locale: ") + lkey->currentLocale(localeResult).getName());
result.remove();
lkey->fallback();
logln("lkey descriptor 2: " + lkey->currentDescriptor(result));
result.remove();
lkey->fallback();
logln("lkey descriptor 3: " + lkey->currentDescriptor(result));
result.remove();
delete lkey; // tentatively weiv
}
{
UErrorCode status = U_ZERO_ERROR;
UnicodeString* target = dynamic_cast<UnicodeString*>(service.get("za_PPP", status));
confirmEqual("test zappp", root, target);
delete target;
}
Locale loc = Locale::getDefault();
Locale::setDefault(Locale::getJapanese(), status);
{
UErrorCode status = U_ZERO_ERROR;
UnicodeString* target = dynamic_cast<UnicodeString*>(service.get("za_PPP", status));
confirmEqual("test with ja locale", japanese, target);
delete target;
}
{
UErrorCode status = U_ZERO_ERROR;
UVector ids(uprv_deleteUObject, uhash_compareUnicodeString, 0, status);
service.getVisibleIDs(ids, status);
logln("all visible ids:");
for (int i = 0; i < ids.size(); ++i) {
const UnicodeString* id = static_cast<const UnicodeString*>(const_cast<const void*>(ids[i]));
logln(*id);
}
}
Locale::setDefault(loc, status);
{
UErrorCode status = U_ZERO_ERROR;
UVector ids(uprv_deleteUObject, uhash_compareUnicodeString, 0, status);
service.getVisibleIDs(ids, status);
logln("all visible ids:");
for (int i = 0; i < ids.size(); ++i) {
const UnicodeString* id = static_cast<const UnicodeString*>(const_cast<const void*>(ids[i]));
logln(*id);
}
}
{
UErrorCode status = U_ZERO_ERROR;
UnicodeString* target = dynamic_cast<UnicodeString*>(service.get("za_PPP", status));
confirmEqual("test with en locale", root, target);
delete target;
}
{
UErrorCode status = U_ZERO_ERROR;
StringEnumeration* locales = service.getAvailableLocales();
if (locales) {
confirmIdentical("test available locales", locales->count(status), 6);
logln("locales: ");
{
const char* p;
while ((p = locales->next(nullptr, status))) {
logln(p);
}
}
logln(" ");
delete locales;
} else {
errln("could not create available locales");
}
}
}
class WrapFactory : public ICUServiceFactory {
public:
static const UnicodeString& getGreetingID() {
if (greetingID == nullptr) {
greetingID = new UnicodeString("greeting");
}
return *greetingID;
}
static void cleanup() {
delete greetingID;
greetingID = nullptr;
}
UObject* create(const ICUServiceKey& key, const ICUService* service, UErrorCode& status) const override {
if (U_SUCCESS(status)) {
UnicodeString temp;
if (key.currentID(temp).compare(getGreetingID()) == 0) {
UnicodeString* previous = dynamic_cast<UnicodeString*>(service->getKey(const_cast<ICUServiceKey&>(key), nullptr, this, status));
if (previous) {
previous->insert(0, "A different greeting: \"");
previous->append("\"");
return previous;
}
}
}
return nullptr;
}
void updateVisibleIDs(Hashtable& result, UErrorCode& status) const override {
if (U_SUCCESS(status)) {
result.put("greeting", (void*)this, status);
}
}
UnicodeString& getDisplayName(const UnicodeString& id, const Locale& /* locale */, UnicodeString& result) const override {
result.append("wrap '");
result.append(id);
result.append("'");
return result;
}
/**
* UObject boilerplate.
*/
static UClassID getStaticClassID() {
return (UClassID)&fgClassID;
}
virtual UClassID getDynamicClassID() const override {
return getStaticClassID();
}
private:
static const char fgClassID;
static UnicodeString* greetingID;
};
UnicodeString* WrapFactory::greetingID = nullptr;
const char WrapFactory::fgClassID = '\0';
void
ICUServiceTest::testWrapFactory()
{
UnicodeString* greeting = new UnicodeString("Hello There");
UnicodeString greetingID = "greeting";
UErrorCode status = U_ZERO_ERROR;
TestStringService service;
service.registerInstance(greeting, greetingID, status);
{
UErrorCode status = U_ZERO_ERROR;
UnicodeString* result = dynamic_cast<UnicodeString*>(service.get(greetingID, status));
if (result) {
logln("test one: " + *result);
delete result;
}
}
service.registerFactory(new WrapFactory(), status);
{
UErrorCode status = U_ZERO_ERROR;
UnicodeString* result = dynamic_cast<UnicodeString*>(service.get(greetingID, status));
UnicodeString target = "A different greeting: \"Hello There\"";
confirmEqual("wrap test: ", result, &target);
delete result;
}
WrapFactory::cleanup();
}
// misc coverage tests
void ICUServiceTest::testCoverage()
{
// ICUServiceKey
{
UnicodeString temp;
ICUServiceKey key("foobar");
logln("ID: " + key.getID());
logln("canonicalID: " + key.canonicalID(temp));
logln("currentID: " + key.currentID(temp.remove()));
logln("has fallback: " + UnicodeString(key.fallback() ? "true" : "false"));
if (key.getDynamicClassID() != ICUServiceKey::getStaticClassID()) {
errln("service key rtt failed.");
}
}
// SimpleFactory
{
UErrorCode status = U_ZERO_ERROR;
UnicodeString* obj = new UnicodeString("An Object");
SimpleFactory* sf = new SimpleFactory(obj, "object");
UnicodeString temp;
logln(sf->getDisplayName("object", Locale::getDefault(), temp));
if (sf->getDynamicClassID() != SimpleFactory::getStaticClassID()) {
errln("simple factory rtti failed.");
}
// ICUService
{
TestStringService service;
service.registerFactory(sf, status);
{
UnicodeString* result = dynamic_cast<UnicodeString*>(service.get("object", status));
if (result) {
logln("object is: " + *result);
delete result;
} else {
errln("could not get object");
}
}
}
}
// ICUServiceKey
{
UErrorCode status = U_ZERO_ERROR;
UnicodeString* howdy = new UnicodeString("Howdy");
TestStringSimpleKeyService service;
service.registerInstance(howdy, "Greetings", status);
{
UnicodeString* result = dynamic_cast<UnicodeString*>(service.get("Greetings", status));
if (result) {
logln("object is: " + *result);
delete result;
} else {
errln("could not get object");
}
}
UVector ids(uprv_deleteUObject, uhash_compareUnicodeString, status);
// yuck, this is awkward to use. All because we pass null in an overload.
// TODO: change this.
UnicodeString str("Greet");
service.getVisibleIDs(ids, &str, status);
confirmIdentical("no fallback of greet", ids.size(), 0);
}
// ICULocaleService
// LocaleKey
{
UnicodeString primary("en_US");
UnicodeString fallback("ja_JP");
UErrorCode status = U_ZERO_ERROR;
LocaleKey* key = LocaleKey::createWithCanonicalFallback(&primary, &fallback, status);
if (key->getDynamicClassID() != LocaleKey::getStaticClassID()) {
errln("localekey rtti error");
}
if (!key->isFallbackOf("en_US_FOOBAR")) {
errln("localekey should be fallback for en_US_FOOBAR");
}
if (!key->isFallbackOf("en_US")) {
errln("localekey should be fallback for en_US");
}
if (key->isFallbackOf("en")) {
errln("localekey should not be fallback for en");
}
do {
Locale loc;
logln(UnicodeString("current locale: ") + key->currentLocale(loc).getName());
logln(UnicodeString("canonical locale: ") + key->canonicalLocale(loc).getName());
logln(UnicodeString("is fallback of en: ") + (key->isFallbackOf("en") ? "true" : " false"));
} while (key->fallback());
delete key;
// LocaleKeyFactory
key = LocaleKey::createWithCanonicalFallback(&primary, &fallback, status);
UnicodeString result;
LKFSubclass lkf(true); // empty
Hashtable table;
UObject *obj = lkf.create(*key, nullptr, status);
logln("obj: " + UnicodeString(obj ? "obj" : "null"));
logln(lkf.getDisplayName("en_US", Locale::getDefault(), result));
lkf.updateVisibleIDs(table, status);
delete obj;
if (table.count() != 1) {
errln("visible IDs does not contain en_US");
}
LKFSubclass invisibleLKF(false);
obj = lkf.create(*key, nullptr, status);
logln("obj: " + UnicodeString(obj ? "obj" : "null"));
logln(invisibleLKF.getDisplayName("en_US", Locale::getDefault(), result.remove()));
invisibleLKF.updateVisibleIDs(table, status);
if (table.count() != 0) {
errln("visible IDs contains en_US");
}
delete obj;
delete key;
key = LocaleKey::createWithCanonicalFallback(&primary, &fallback, 123, status);
if (U_SUCCESS(status)) {
UnicodeString str;
key->currentDescriptor(str);
key->parsePrefix(str);
if (str != "123") {
errln("did not get expected prefix");
}
delete key;
}
// coverage, getSupportedIDs is either overridden or the calling method is
LKFSubclass0 lkFactory;
Hashtable table0;
lkFactory.updateVisibleIDs(table0, status);
if (table0.count() != 0) {
errln("LKF returned non-empty hashtable");
}
// ResourceBundleFactory
key = LocaleKey::createWithCanonicalFallback(&primary, &fallback, status);
ICUResourceBundleFactory rbf;
UObject* icurb = rbf.create(*key, nullptr, status);
if (icurb != nullptr) {
logln("got resource bundle for key");
delete icurb;
}
delete key;
}
#if 0
// ICUNotifier
ICUNotifier nf = new ICUNSubclass();
try {
nf.addListener(null);
errln("added null listener");
}
catch (NullPointerException e) {
logln(e.getMessage());
}
catch (Exception e) {
errln("got wrong exception");
}
try {
nf.addListener(new WrongListener());
errln("added wrong listener");
}
catch (InternalError e) {
logln(e.getMessage());
}
catch (Exception e) {
errln("got wrong exception");
}
try {
nf.removeListener(null);
errln("removed null listener");
}
catch (NullPointerException e) {
logln(e.getMessage());
}
catch (Exception e) {
errln("got wrong exception");
}
nf.removeListener(new MyListener());
nf.notifyChanged();
nf.addListener(new MyListener());
nf.removeListener(new MyListener());
#endif
}
/* !UCONFIG_NO_SERVICE */
#endif
|