1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308
|
// © 2016 and later: Unicode, Inc. and others.
// License & terms of use: http://www.unicode.org/copyright.html
/*
*******************************************************************************
* Copyright (C) 2011-2016, International Business Machines Corporation and
* others. All Rights Reserved.
*******************************************************************************
*
* File TZNAMES_IMPL.CPP
*
*******************************************************************************
*/
#include <_foundation_unicode/utypes.h>
#if !UCONFIG_NO_FORMATTING
#include <_foundation_unicode/strenum.h>
#include <_foundation_unicode/ustring.h>
#include <_foundation_unicode/timezone.h>
#include <_foundation_unicode/utf16.h>
#include "tznames_impl.h"
#include "bytesinkutil.h"
#include "charstr.h"
#include "cmemory.h"
#include "cstring.h"
#include "uassert.h"
#include "mutex.h"
#include "resource.h"
#include "ulocimp.h"
#include "uresimp.h"
#include "ureslocs.h"
#include "zonemeta.h"
#include "ucln_in.h"
#include "uvector.h"
#include "olsontz.h"
U_NAMESPACE_BEGIN
#define ZID_KEY_MAX 128
#define MZ_PREFIX_LEN 5
static const char gZoneStrings[] = "zoneStrings";
static const char gMZPrefix[] = "meta:";
static const char EMPTY[] = "<empty>"; // place holder for empty ZNames
static const char DUMMY_LOADER[] = "<dummy>"; // place holder for dummy ZNamesLoader
static const char16_t NO_NAME[] = { 0 }; // for empty no-fallback time zone names
// stuff for TZDBTimeZoneNames
static const char* TZDBNAMES_KEYS[] = {"ss", "sd"};
static const int32_t TZDBNAMES_KEYS_SIZE = UPRV_LENGTHOF(TZDBNAMES_KEYS);
static UMutex gDataMutex;
static UHashtable* gTZDBNamesMap = nullptr;
static icu::UInitOnce gTZDBNamesMapInitOnce {};
static TextTrieMap* gTZDBNamesTrie = nullptr;
static icu::UInitOnce gTZDBNamesTrieInitOnce {};
// The order in which strings are stored may be different than the order in the public enum.
enum UTimeZoneNameTypeIndex {
UTZNM_INDEX_UNKNOWN = -1,
UTZNM_INDEX_EXEMPLAR_LOCATION,
UTZNM_INDEX_LONG_GENERIC,
UTZNM_INDEX_LONG_STANDARD,
UTZNM_INDEX_LONG_DAYLIGHT,
UTZNM_INDEX_SHORT_GENERIC,
UTZNM_INDEX_SHORT_STANDARD,
UTZNM_INDEX_SHORT_DAYLIGHT,
UTZNM_INDEX_COUNT
};
static const char16_t* const EMPTY_NAMES[UTZNM_INDEX_COUNT] = {0,0,0,0,0,0,0};
U_CDECL_BEGIN
static UBool U_CALLCONV tzdbTimeZoneNames_cleanup() {
if (gTZDBNamesMap != nullptr) {
uhash_close(gTZDBNamesMap);
gTZDBNamesMap = nullptr;
}
gTZDBNamesMapInitOnce.reset();
if (gTZDBNamesTrie != nullptr) {
delete gTZDBNamesTrie;
gTZDBNamesTrie = nullptr;
}
gTZDBNamesTrieInitOnce.reset();
return true;
}
U_CDECL_END
/**
* ZNameInfo stores zone name information in the trie
*/
struct ZNameInfo {
UTimeZoneNameType type;
const char16_t* tzID;
const char16_t* mzID;
};
/**
* ZMatchInfo stores zone name match information used by find method
*/
struct ZMatchInfo {
const ZNameInfo* znameInfo;
int32_t matchLength;
};
// Helper functions
static void mergeTimeZoneKey(const UnicodeString& mzID, char* result);
#define DEFAULT_CHARACTERNODE_CAPACITY 1
// ---------------------------------------------------
// CharacterNode class implementation
// ---------------------------------------------------
void CharacterNode::clear() {
uprv_memset(this, 0, sizeof(*this));
}
void CharacterNode::deleteValues(UObjectDeleter *valueDeleter) {
if (fValues == nullptr) {
// Do nothing.
} else if (!fHasValuesVector) {
if (valueDeleter) {
valueDeleter(fValues);
}
} else {
delete (UVector *)fValues;
}
}
void
CharacterNode::addValue(void *value, UObjectDeleter *valueDeleter, UErrorCode &status) {
if (U_FAILURE(status)) {
if (valueDeleter) {
valueDeleter(value);
}
return;
}
if (fValues == nullptr) {
fValues = value;
} else {
// At least one value already.
if (!fHasValuesVector) {
// There is only one value so far, and not in a vector yet.
// Create a vector and add the old value.
LocalPointer<UVector> values(
new UVector(valueDeleter, nullptr, DEFAULT_CHARACTERNODE_CAPACITY, status), status);
if (U_FAILURE(status)) {
if (valueDeleter) {
valueDeleter(value);
}
return;
}
if (values->hasDeleter()) {
values->adoptElement(fValues, status);
} else {
values->addElement(fValues, status);
}
fValues = values.orphan();
fHasValuesVector = true;
}
// Add the new value.
UVector *values = (UVector *)fValues;
if (values->hasDeleter()) {
values->adoptElement(value, status);
} else {
values->addElement(value, status);
}
}
}
// ---------------------------------------------------
// TextTrieMapSearchResultHandler class implementation
// ---------------------------------------------------
TextTrieMapSearchResultHandler::~TextTrieMapSearchResultHandler(){
}
// ---------------------------------------------------
// TextTrieMap class implementation
// ---------------------------------------------------
TextTrieMap::TextTrieMap(UBool ignoreCase, UObjectDeleter *valueDeleter)
: fIgnoreCase(ignoreCase), fNodes(nullptr), fNodesCapacity(0), fNodesCount(0),
fLazyContents(nullptr), fIsEmpty(true), fValueDeleter(valueDeleter) {
}
TextTrieMap::~TextTrieMap() {
int32_t index;
for (index = 0; index < fNodesCount; ++index) {
fNodes[index].deleteValues(fValueDeleter);
}
uprv_free(fNodes);
if (fLazyContents != nullptr) {
for (int32_t i=0; i<fLazyContents->size(); i+=2) {
if (fValueDeleter) {
fValueDeleter(fLazyContents->elementAt(i+1));
}
}
delete fLazyContents;
}
}
int32_t TextTrieMap::isEmpty() const {
// Use a separate field for fIsEmpty because it will remain unchanged once the
// Trie is built, while fNodes and fLazyContents change with the lazy init
// of the nodes structure. Trying to test the changing fields has
// thread safety complications.
return fIsEmpty;
}
// We defer actually building the TextTrieMap node structure until the first time a
// search is performed. put() simply saves the parameters in case we do
// eventually need to build it.
//
void
TextTrieMap::put(const UnicodeString &key, void *value, ZNStringPool &sp, UErrorCode &status) {
const char16_t *s = sp.get(key, status);
put(s, value, status);
}
// This method is designed for a persistent key, such as string key stored in
// resource bundle.
void
TextTrieMap::put(const char16_t *key, void *value, UErrorCode &status) {
fIsEmpty = false;
if (fLazyContents == nullptr) {
LocalPointer<UVector> lpLazyContents(new UVector(status), status);
fLazyContents = lpLazyContents.orphan();
}
if (U_FAILURE(status)) {
if (fValueDeleter) {
fValueDeleter((void*) key);
}
return;
}
U_ASSERT(fLazyContents != nullptr);
char16_t *s = const_cast<char16_t *>(key);
fLazyContents->addElement(s, status);
if (U_FAILURE(status)) {
if (fValueDeleter) {
fValueDeleter((void*) key);
}
return;
}
fLazyContents->addElement(value, status);
}
void
TextTrieMap::putImpl(const UnicodeString &key, void *value, UErrorCode &status) {
if (fNodes == nullptr) {
fNodesCapacity = 512;
fNodes = (CharacterNode *)uprv_malloc(fNodesCapacity * sizeof(CharacterNode));
if (fNodes == nullptr) {
status = U_MEMORY_ALLOCATION_ERROR;
return;
}
fNodes[0].clear(); // Init root node.
fNodesCount = 1;
}
UnicodeString foldedKey;
const char16_t *keyBuffer;
int32_t keyLength;
if (fIgnoreCase) {
// Ok to use fastCopyFrom() because we discard the copy when we return.
foldedKey.fastCopyFrom(key).foldCase();
keyBuffer = foldedKey.getBuffer();
keyLength = foldedKey.length();
} else {
keyBuffer = key.getBuffer();
keyLength = key.length();
}
CharacterNode *node = fNodes;
int32_t index;
for (index = 0; index < keyLength; ++index) {
node = addChildNode(node, keyBuffer[index], status);
}
node->addValue(value, fValueDeleter, status);
}
UBool
TextTrieMap::growNodes() {
if (fNodesCapacity == 0xffff) {
return false; // We use 16-bit node indexes.
}
int32_t newCapacity = fNodesCapacity + 1000;
if (newCapacity > 0xffff) {
newCapacity = 0xffff;
}
CharacterNode *newNodes = (CharacterNode *)uprv_malloc(newCapacity * sizeof(CharacterNode));
if (newNodes == nullptr) {
return false;
}
uprv_memcpy(newNodes, fNodes, fNodesCount * sizeof(CharacterNode));
uprv_free(fNodes);
fNodes = newNodes;
fNodesCapacity = newCapacity;
return true;
}
CharacterNode*
TextTrieMap::addChildNode(CharacterNode *parent, char16_t c, UErrorCode &status) {
if (U_FAILURE(status)) {
return nullptr;
}
// Linear search of the sorted list of children.
uint16_t prevIndex = 0;
uint16_t nodeIndex = parent->fFirstChild;
while (nodeIndex > 0) {
CharacterNode *current = fNodes + nodeIndex;
char16_t childCharacter = current->fCharacter;
if (childCharacter == c) {
return current;
} else if (childCharacter > c) {
break;
}
prevIndex = nodeIndex;
nodeIndex = current->fNextSibling;
}
// Ensure capacity. Grow fNodes[] if needed.
if (fNodesCount == fNodesCapacity) {
int32_t parentIndex = (int32_t)(parent - fNodes);
if (!growNodes()) {
status = U_MEMORY_ALLOCATION_ERROR;
return nullptr;
}
parent = fNodes + parentIndex;
}
// Insert a new child node with c in sorted order.
CharacterNode *node = fNodes + fNodesCount;
node->clear();
node->fCharacter = c;
node->fNextSibling = nodeIndex;
if (prevIndex == 0) {
parent->fFirstChild = (uint16_t)fNodesCount;
} else {
fNodes[prevIndex].fNextSibling = (uint16_t)fNodesCount;
}
++fNodesCount;
return node;
}
CharacterNode*
TextTrieMap::getChildNode(CharacterNode *parent, char16_t c) const {
// Linear search of the sorted list of children.
uint16_t nodeIndex = parent->fFirstChild;
while (nodeIndex > 0) {
CharacterNode *current = fNodes + nodeIndex;
char16_t childCharacter = current->fCharacter;
if (childCharacter == c) {
return current;
} else if (childCharacter > c) {
break;
}
nodeIndex = current->fNextSibling;
}
return nullptr;
}
// buildTrie() - The Trie node structure is needed. Create it from the data that was
// saved at the time the ZoneStringFormatter was created. The Trie is only
// needed for parsing operations, which are less common than formatting,
// and the Trie is big, which is why its creation is deferred until first use.
void TextTrieMap::buildTrie(UErrorCode &status) {
if (fLazyContents != nullptr) {
for (int32_t i=0; i<fLazyContents->size(); i+=2) {
const char16_t *key = (char16_t *)fLazyContents->elementAt(i);
void *val = fLazyContents->elementAt(i+1);
UnicodeString keyString(true, key, -1); // Aliasing UnicodeString constructor.
putImpl(keyString, val, status);
}
delete fLazyContents;
fLazyContents = nullptr;
}
}
void
TextTrieMap::search(const UnicodeString &text, int32_t start,
TextTrieMapSearchResultHandler *handler, UErrorCode &status) const {
{
// TODO: if locking the mutex for each check proves to be a performance problem,
// add a flag of type atomic_int32_t to class TextTrieMap, and use only
// the ICU atomic safe functions for assigning and testing.
// Don't test the pointer fLazyContents.
// Don't do unless it's really required.
// Mutex for protecting the lazy creation of the Trie node structure on the first call to search().
static UMutex TextTrieMutex;
Mutex lock(&TextTrieMutex);
if (fLazyContents != nullptr) {
TextTrieMap *nonConstThis = const_cast<TextTrieMap *>(this);
nonConstThis->buildTrie(status);
}
}
if (fNodes == nullptr) {
return;
}
search(fNodes, text, start, start, handler, status);
}
void
TextTrieMap::search(CharacterNode *node, const UnicodeString &text, int32_t start,
int32_t index, TextTrieMapSearchResultHandler *handler, UErrorCode &status) const {
if (U_FAILURE(status)) {
return;
}
if (node->hasValues()) {
if (!handler->handleMatch(index - start, node, status)) {
return;
}
if (U_FAILURE(status)) {
return;
}
}
if (fIgnoreCase) {
// for folding we need to get a complete code point.
// size of character may grow after fold operation;
// then we need to get result as UTF16 code units.
UChar32 c32 = text.char32At(index);
index += U16_LENGTH(c32);
UnicodeString tmp(c32);
tmp.foldCase();
int32_t tmpidx = 0;
while (tmpidx < tmp.length()) {
char16_t c = tmp.charAt(tmpidx++);
node = getChildNode(node, c);
if (node == nullptr) {
break;
}
}
} else {
// here we just get the next UTF16 code unit
char16_t c = text.charAt(index++);
node = getChildNode(node, c);
}
if (node != nullptr) {
search(node, text, start, index, handler, status);
}
}
// ---------------------------------------------------
// ZNStringPool class implementation
// ---------------------------------------------------
static const int32_t POOL_CHUNK_SIZE = 2000;
struct ZNStringPoolChunk: public UMemory {
ZNStringPoolChunk *fNext; // Ptr to next pool chunk
int32_t fLimit; // Index to start of unused area at end of fStrings
char16_t fStrings[POOL_CHUNK_SIZE]; // Strings array
ZNStringPoolChunk();
};
ZNStringPoolChunk::ZNStringPoolChunk() {
fNext = nullptr;
fLimit = 0;
}
ZNStringPool::ZNStringPool(UErrorCode &status) {
fChunks = nullptr;
fHash = nullptr;
if (U_FAILURE(status)) {
return;
}
fChunks = new ZNStringPoolChunk;
if (fChunks == nullptr) {
status = U_MEMORY_ALLOCATION_ERROR;
return;
}
fHash = uhash_open(uhash_hashUChars /* keyHash */,
uhash_compareUChars /* keyComp */,
uhash_compareUChars /* valueComp */,
&status);
if (U_FAILURE(status)) {
return;
}
}
ZNStringPool::~ZNStringPool() {
if (fHash != nullptr) {
uhash_close(fHash);
fHash = nullptr;
}
while (fChunks != nullptr) {
ZNStringPoolChunk *nextChunk = fChunks->fNext;
delete fChunks;
fChunks = nextChunk;
}
}
static const char16_t EmptyString = 0;
const char16_t *ZNStringPool::get(const char16_t *s, UErrorCode &status) {
const char16_t *pooledString;
if (U_FAILURE(status)) {
return &EmptyString;
}
pooledString = static_cast<char16_t *>(uhash_get(fHash, s));
if (pooledString != nullptr) {
return pooledString;
}
int32_t length = u_strlen(s);
int32_t remainingLength = POOL_CHUNK_SIZE - fChunks->fLimit;
if (remainingLength <= length) {
U_ASSERT(length < POOL_CHUNK_SIZE);
if (length >= POOL_CHUNK_SIZE) {
status = U_INTERNAL_PROGRAM_ERROR;
return &EmptyString;
}
ZNStringPoolChunk *oldChunk = fChunks;
fChunks = new ZNStringPoolChunk;
if (fChunks == nullptr) {
status = U_MEMORY_ALLOCATION_ERROR;
return &EmptyString;
}
fChunks->fNext = oldChunk;
}
char16_t *destString = &fChunks->fStrings[fChunks->fLimit];
u_strcpy(destString, s);
fChunks->fLimit += (length + 1);
uhash_put(fHash, destString, destString, &status);
return destString;
}
//
// ZNStringPool::adopt() Put a string into the hash, but do not copy the string data
// into the pool's storage. Used for strings from resource bundles,
// which will persist for the life of the zone string formatter, and
// therefore can be used directly without copying.
const char16_t *ZNStringPool::adopt(const char16_t * s, UErrorCode &status) {
const char16_t *pooledString;
if (U_FAILURE(status)) {
return &EmptyString;
}
if (s != nullptr) {
pooledString = static_cast<char16_t *>(uhash_get(fHash, s));
if (pooledString == nullptr) {
char16_t *ncs = const_cast<char16_t *>(s);
uhash_put(fHash, ncs, ncs, &status);
}
}
return s;
}
const char16_t *ZNStringPool::get(const UnicodeString &s, UErrorCode &status) {
UnicodeString &nonConstStr = const_cast<UnicodeString &>(s);
return this->get(nonConstStr.getTerminatedBuffer(), status);
}
/*
* freeze(). Close the hash table that maps to the pooled strings.
* After freezing, the pool can not be searched or added to,
* but all existing references to pooled strings remain valid.
*
* The main purpose is to recover the storage used for the hash.
*/
void ZNStringPool::freeze() {
uhash_close(fHash);
fHash = nullptr;
}
/**
* This class stores name data for a meta zone or time zone.
*/
class ZNames : public UMemory {
private:
friend class TimeZoneNamesImpl;
static UTimeZoneNameTypeIndex getTZNameTypeIndex(UTimeZoneNameType type) {
switch(type) {
case UTZNM_EXEMPLAR_LOCATION: return UTZNM_INDEX_EXEMPLAR_LOCATION;
case UTZNM_LONG_GENERIC: return UTZNM_INDEX_LONG_GENERIC;
case UTZNM_LONG_STANDARD: return UTZNM_INDEX_LONG_STANDARD;
case UTZNM_LONG_DAYLIGHT: return UTZNM_INDEX_LONG_DAYLIGHT;
case UTZNM_SHORT_GENERIC: return UTZNM_INDEX_SHORT_GENERIC;
case UTZNM_SHORT_STANDARD: return UTZNM_INDEX_SHORT_STANDARD;
case UTZNM_SHORT_DAYLIGHT: return UTZNM_INDEX_SHORT_DAYLIGHT;
default: return UTZNM_INDEX_UNKNOWN;
}
}
static UTimeZoneNameType getTZNameType(UTimeZoneNameTypeIndex index) {
switch(index) {
case UTZNM_INDEX_EXEMPLAR_LOCATION: return UTZNM_EXEMPLAR_LOCATION;
case UTZNM_INDEX_LONG_GENERIC: return UTZNM_LONG_GENERIC;
case UTZNM_INDEX_LONG_STANDARD: return UTZNM_LONG_STANDARD;
case UTZNM_INDEX_LONG_DAYLIGHT: return UTZNM_LONG_DAYLIGHT;
case UTZNM_INDEX_SHORT_GENERIC: return UTZNM_SHORT_GENERIC;
case UTZNM_INDEX_SHORT_STANDARD: return UTZNM_SHORT_STANDARD;
case UTZNM_INDEX_SHORT_DAYLIGHT: return UTZNM_SHORT_DAYLIGHT;
default: return UTZNM_UNKNOWN;
}
}
const char16_t* fNames[UTZNM_INDEX_COUNT];
UBool fDidAddIntoTrie;
// Whether we own the location string, if computed rather than loaded from a bundle.
// A meta zone names instance never has an exemplar location string.
UBool fOwnsLocationName;
ZNames(const char16_t* names[], const char16_t* locationName)
: fDidAddIntoTrie(false) {
uprv_memcpy(fNames, names, sizeof(fNames));
if (locationName != nullptr) {
fOwnsLocationName = true;
fNames[UTZNM_INDEX_EXEMPLAR_LOCATION] = locationName;
} else {
fOwnsLocationName = false;
}
}
public:
~ZNames() {
if (fOwnsLocationName) {
const char16_t* locationName = fNames[UTZNM_INDEX_EXEMPLAR_LOCATION];
U_ASSERT(locationName != nullptr);
uprv_free((void*) locationName);
}
}
private:
static void* createMetaZoneAndPutInCache(UHashtable* cache, const char16_t* names[],
const UnicodeString& mzID, UErrorCode& status) {
if (U_FAILURE(status)) { return nullptr; }
U_ASSERT(names != nullptr);
// Use the persistent ID as the resource key, so we can
// avoid duplications.
// TODO: Is there a more efficient way, like intern() in Java?
void* key = (void*) ZoneMeta::findMetaZoneID(mzID);
void* value;
if (uprv_memcmp(names, EMPTY_NAMES, sizeof(EMPTY_NAMES)) == 0) {
value = (void*) EMPTY;
} else {
value = (void*) (new ZNames(names, nullptr));
if (value == nullptr) {
status = U_MEMORY_ALLOCATION_ERROR;
return nullptr;
}
}
uhash_put(cache, key, value, &status);
return value;
}
static void* createTimeZoneAndPutInCache(UHashtable* cache, const char16_t* names[],
const UnicodeString& tzID, UErrorCode& status) {
if (U_FAILURE(status)) { return nullptr; }
U_ASSERT(names != nullptr);
// If necessary, compute the location name from the time zone name.
char16_t* locationName = nullptr;
if (names[UTZNM_INDEX_EXEMPLAR_LOCATION] == nullptr) {
UnicodeString locationNameUniStr;
TimeZoneNamesImpl::getDefaultExemplarLocationName(tzID, locationNameUniStr);
// Copy the computed location name to the heap
if (locationNameUniStr.length() > 0) {
const char16_t* buff = locationNameUniStr.getTerminatedBuffer();
int32_t len = sizeof(char16_t) * (locationNameUniStr.length() + 1);
locationName = (char16_t*) uprv_malloc(len);
if (locationName == nullptr) {
status = U_MEMORY_ALLOCATION_ERROR;
return nullptr;
}
uprv_memcpy(locationName, buff, len);
}
}
// Use the persistent ID as the resource key, so we can
// avoid duplications.
// TODO: Is there a more efficient way, like intern() in Java?
void* key = (void*) ZoneMeta::findTimeZoneID(tzID);
void* value = (void*) (new ZNames(names, locationName));
if (value == nullptr) {
status = U_MEMORY_ALLOCATION_ERROR;
return nullptr;
}
uhash_put(cache, key, value, &status);
return value;
}
const char16_t* getName(UTimeZoneNameType type) const {
UTimeZoneNameTypeIndex index = getTZNameTypeIndex(type);
return index >= 0 ? fNames[index] : nullptr;
}
void addAsMetaZoneIntoTrie(const char16_t* mzID, TextTrieMap& trie, UErrorCode& status) {
addNamesIntoTrie(mzID, nullptr, trie, status);
}
void addAsTimeZoneIntoTrie(const char16_t* tzID, TextTrieMap& trie, UErrorCode& status) {
addNamesIntoTrie(nullptr, tzID, trie, status);
}
void addNamesIntoTrie(const char16_t* mzID, const char16_t* tzID, TextTrieMap& trie,
UErrorCode& status) {
if (U_FAILURE(status)) { return; }
if (fDidAddIntoTrie) { return; }
fDidAddIntoTrie = true;
for (int32_t i = 0; i < UTZNM_INDEX_COUNT; i++) {
const char16_t* name = fNames[i];
if (name != nullptr) {
ZNameInfo *nameinfo = (ZNameInfo *)uprv_malloc(sizeof(ZNameInfo));
if (nameinfo == nullptr) {
status = U_MEMORY_ALLOCATION_ERROR;
return;
}
nameinfo->mzID = mzID;
nameinfo->tzID = tzID;
nameinfo->type = getTZNameType((UTimeZoneNameTypeIndex)i);
trie.put(name, nameinfo, status); // trie.put() takes ownership of the key
if (U_FAILURE(status)) {
return;
}
}
}
}
public:
struct ZNamesLoader;
};
struct ZNames::ZNamesLoader : public ResourceSink {
const char16_t *names[UTZNM_INDEX_COUNT];
ZNamesLoader() {
clear();
}
virtual ~ZNamesLoader();
/** Reset for loading another set of names. */
void clear() {
uprv_memcpy(names, EMPTY_NAMES, sizeof(names));
}
void loadMetaZone(const UResourceBundle* zoneStrings, const UnicodeString& mzID, UErrorCode& errorCode) {
if (U_FAILURE(errorCode)) { return; }
char key[ZID_KEY_MAX + 1];
mergeTimeZoneKey(mzID, key);
loadNames(zoneStrings, key, errorCode);
}
void loadTimeZone(const UResourceBundle* zoneStrings, const UnicodeString& tzID, UErrorCode& errorCode) {
// Replace "/" with ":".
UnicodeString uKey(tzID);
for (int32_t i = 0; i < uKey.length(); i++) {
if (uKey.charAt(i) == (char16_t)0x2F) {
uKey.setCharAt(i, (char16_t)0x3A);
}
}
char key[ZID_KEY_MAX + 1];
uKey.extract(0, uKey.length(), key, sizeof(key), US_INV);
loadNames(zoneStrings, key, errorCode);
}
void loadNames(const UResourceBundle* zoneStrings, const char* key, UErrorCode& errorCode) {
U_ASSERT(zoneStrings != nullptr);
U_ASSERT(key != nullptr);
U_ASSERT(key[0] != '\0');
UErrorCode localStatus = U_ZERO_ERROR;
clear();
ures_getAllItemsWithFallback(zoneStrings, key, *this, localStatus);
// Ignore errors, but propagate possible warnings.
if (U_SUCCESS(localStatus)) {
errorCode = localStatus;
}
}
void setNameIfEmpty(const char* key, const ResourceValue* value, UErrorCode& errorCode) {
UTimeZoneNameTypeIndex type = nameTypeFromKey(key);
if (type == UTZNM_INDEX_UNKNOWN) { return; }
if (names[type] == nullptr) {
int32_t length;
// 'NO_NAME' indicates internally that this field should remain empty. It will be
// replaced by 'nullptr' in getNames()
names[type] = (value == nullptr) ? NO_NAME : value->getString(length, errorCode);
}
}
virtual void put(const char* key, ResourceValue& value, UBool /*noFallback*/,
UErrorCode &errorCode) override {
ResourceTable namesTable = value.getTable(errorCode);
if (U_FAILURE(errorCode)) { return; }
for (int32_t i = 0; namesTable.getKeyAndValue(i, key, value); ++i) {
if (value.isNoInheritanceMarker()) {
setNameIfEmpty(key, nullptr, errorCode);
} else {
setNameIfEmpty(key, &value, errorCode);
}
}
}
static UTimeZoneNameTypeIndex nameTypeFromKey(const char *key) {
char c0, c1;
if ((c0 = key[0]) == 0 || (c1 = key[1]) == 0 || key[2] != 0) {
return UTZNM_INDEX_UNKNOWN;
}
if (c0 == 'l') {
return c1 == 'g' ? UTZNM_INDEX_LONG_GENERIC :
c1 == 's' ? UTZNM_INDEX_LONG_STANDARD :
c1 == 'd' ? UTZNM_INDEX_LONG_DAYLIGHT : UTZNM_INDEX_UNKNOWN;
} else if (c0 == 's') {
return c1 == 'g' ? UTZNM_INDEX_SHORT_GENERIC :
c1 == 's' ? UTZNM_INDEX_SHORT_STANDARD :
c1 == 'd' ? UTZNM_INDEX_SHORT_DAYLIGHT : UTZNM_INDEX_UNKNOWN;
} else if (c0 == 'e' && c1 == 'c') {
return UTZNM_INDEX_EXEMPLAR_LOCATION;
}
return UTZNM_INDEX_UNKNOWN;
}
/**
* Returns an array of names. It is the caller's responsibility to copy the data into a
* permanent location, as the returned array is owned by the loader instance and may be
* cleared or leave scope.
*
* This is different than Java, where the array will no longer be modified and null
* may be returned.
*/
const char16_t** getNames() {
// Remove 'NO_NAME' references in the array and replace with 'nullptr'
for (int32_t i = 0; i < UTZNM_INDEX_COUNT; ++i) {
if (names[i] == NO_NAME) {
names[i] = nullptr;
}
}
return names;
}
};
ZNames::ZNamesLoader::~ZNamesLoader() {}
// ---------------------------------------------------
// The meta zone ID enumeration class
// ---------------------------------------------------
class MetaZoneIDsEnumeration : public StringEnumeration {
public:
MetaZoneIDsEnumeration();
MetaZoneIDsEnumeration(const UVector& mzIDs);
MetaZoneIDsEnumeration(LocalPointer<UVector> mzIDs);
virtual ~MetaZoneIDsEnumeration();
static UClassID U_EXPORT2 getStaticClassID();
virtual UClassID getDynamicClassID() const override;
virtual const UnicodeString* snext(UErrorCode& status) override;
virtual void reset(UErrorCode& status) override;
virtual int32_t count(UErrorCode& status) const override;
private:
int32_t fLen;
int32_t fPos;
const UVector* fMetaZoneIDs;
LocalPointer<UVector> fLocalVector;
};
UOBJECT_DEFINE_RTTI_IMPLEMENTATION(MetaZoneIDsEnumeration)
MetaZoneIDsEnumeration::MetaZoneIDsEnumeration()
: fLen(0), fPos(0), fMetaZoneIDs(nullptr), fLocalVector(nullptr) {
}
MetaZoneIDsEnumeration::MetaZoneIDsEnumeration(const UVector& mzIDs)
: fPos(0), fMetaZoneIDs(&mzIDs), fLocalVector(nullptr) {
fLen = fMetaZoneIDs->size();
}
MetaZoneIDsEnumeration::MetaZoneIDsEnumeration(LocalPointer<UVector> mzIDs)
: fLen(0), fPos(0), fMetaZoneIDs(nullptr), fLocalVector(std::move(mzIDs)) {
fMetaZoneIDs = fLocalVector.getAlias();
if (fMetaZoneIDs) {
fLen = fMetaZoneIDs->size();
}
}
const UnicodeString*
MetaZoneIDsEnumeration::snext(UErrorCode& status) {
if (U_SUCCESS(status) && fMetaZoneIDs != nullptr && fPos < fLen) {
unistr.setTo((const char16_t*)fMetaZoneIDs->elementAt(fPos++), -1);
return &unistr;
}
return nullptr;
}
void
MetaZoneIDsEnumeration::reset(UErrorCode& /*status*/) {
fPos = 0;
}
int32_t
MetaZoneIDsEnumeration::count(UErrorCode& /*status*/) const {
return fLen;
}
MetaZoneIDsEnumeration::~MetaZoneIDsEnumeration() {
}
// ---------------------------------------------------
// ZNameSearchHandler
// ---------------------------------------------------
class ZNameSearchHandler : public TextTrieMapSearchResultHandler {
public:
ZNameSearchHandler(uint32_t types);
virtual ~ZNameSearchHandler();
UBool handleMatch(int32_t matchLength, const CharacterNode *node, UErrorCode &status) override;
TimeZoneNames::MatchInfoCollection* getMatches(int32_t& maxMatchLen);
private:
uint32_t fTypes;
int32_t fMaxMatchLen;
TimeZoneNames::MatchInfoCollection* fResults;
};
ZNameSearchHandler::ZNameSearchHandler(uint32_t types)
: fTypes(types), fMaxMatchLen(0), fResults(nullptr) {
}
ZNameSearchHandler::~ZNameSearchHandler() {
if (fResults != nullptr) {
delete fResults;
}
}
UBool
ZNameSearchHandler::handleMatch(int32_t matchLength, const CharacterNode *node, UErrorCode &status) {
if (U_FAILURE(status)) {
return false;
}
if (node->hasValues()) {
int32_t valuesCount = node->countValues();
for (int32_t i = 0; i < valuesCount; i++) {
ZNameInfo *nameinfo = (ZNameInfo *)node->getValue(i);
if (nameinfo == nullptr) {
continue;
}
if ((nameinfo->type & fTypes) != 0) {
// matches a requested type
if (fResults == nullptr) {
fResults = new TimeZoneNames::MatchInfoCollection();
if (fResults == nullptr) {
status = U_MEMORY_ALLOCATION_ERROR;
}
}
if (U_SUCCESS(status)) {
U_ASSERT(fResults != nullptr);
if (nameinfo->tzID) {
fResults->addZone(nameinfo->type, matchLength, UnicodeString(nameinfo->tzID, -1), status);
} else {
U_ASSERT(nameinfo->mzID);
fResults->addMetaZone(nameinfo->type, matchLength, UnicodeString(nameinfo->mzID, -1), status);
}
if (U_SUCCESS(status) && matchLength > fMaxMatchLen) {
fMaxMatchLen = matchLength;
}
}
}
}
}
return true;
}
TimeZoneNames::MatchInfoCollection*
ZNameSearchHandler::getMatches(int32_t& maxMatchLen) {
// give the ownership to the caller
TimeZoneNames::MatchInfoCollection* results = fResults;
maxMatchLen = fMaxMatchLen;
// reset
fResults = nullptr;
fMaxMatchLen = 0;
return results;
}
// ---------------------------------------------------
// TimeZoneNamesImpl
//
// TimeZoneNames implementation class. This is the main
// part of this module.
// ---------------------------------------------------
U_CDECL_BEGIN
/**
* Deleter for ZNames
*/
static void U_CALLCONV
deleteZNames(void *obj) {
if (obj != EMPTY) {
delete (ZNames*) obj;
}
}
/**
* Deleter for ZNameInfo
*/
static void U_CALLCONV
deleteZNameInfo(void *obj) {
uprv_free(obj);
}
U_CDECL_END
TimeZoneNamesImpl::TimeZoneNamesImpl(const Locale& locale, UErrorCode& status)
: fLocale(locale),
fZoneStrings(nullptr),
fTZNamesMap(nullptr),
fMZNamesMap(nullptr),
fNamesTrieFullyLoaded(false),
fNamesFullyLoaded(false),
fNamesTrie(true, deleteZNameInfo) {
initialize(locale, status);
}
void
TimeZoneNamesImpl::initialize(const Locale& locale, UErrorCode& status) {
if (U_FAILURE(status)) {
return;
}
// Load zoneStrings bundle
UErrorCode tmpsts = U_ZERO_ERROR; // OK with fallback warning..
fZoneStrings = ures_open(U_ICUDATA_ZONE, locale.getName(), &tmpsts);
fZoneStrings = ures_getByKeyWithFallback(fZoneStrings, gZoneStrings, fZoneStrings, &tmpsts);
if (U_FAILURE(tmpsts)) {
status = tmpsts;
cleanup();
return;
}
// Initialize hashtables holding time zone/meta zone names
fMZNamesMap = uhash_open(uhash_hashUChars, uhash_compareUChars, nullptr, &status);
fTZNamesMap = uhash_open(uhash_hashUChars, uhash_compareUChars, nullptr, &status);
if (U_FAILURE(status)) {
cleanup();
return;
}
uhash_setValueDeleter(fMZNamesMap, deleteZNames);
uhash_setValueDeleter(fTZNamesMap, deleteZNames);
// no key deleters for name maps
// preload zone strings for the default zone
TimeZone *tz = TimeZone::createDefault();
const char16_t *tzID = ZoneMeta::getCanonicalCLDRID(*tz);
if (tzID != nullptr) {
loadStrings(UnicodeString(tzID), status);
}
delete tz;
return;
}
/*
* This method updates the cache and must be called with a lock,
* except initializer.
*/
void
TimeZoneNamesImpl::loadStrings(const UnicodeString& tzCanonicalID, UErrorCode& status) {
loadTimeZoneNames(tzCanonicalID, status);
LocalPointer<StringEnumeration> mzIDs(getAvailableMetaZoneIDs(tzCanonicalID, status));
if (U_FAILURE(status)) { return; }
U_ASSERT(!mzIDs.isNull());
const UnicodeString *mzID;
while (((mzID = mzIDs->snext(status)) != nullptr) && U_SUCCESS(status)) {
loadMetaZoneNames(*mzID, status);
}
}
TimeZoneNamesImpl::~TimeZoneNamesImpl() {
cleanup();
}
void
TimeZoneNamesImpl::cleanup() {
if (fZoneStrings != nullptr) {
ures_close(fZoneStrings);
fZoneStrings = nullptr;
}
if (fMZNamesMap != nullptr) {
uhash_close(fMZNamesMap);
fMZNamesMap = nullptr;
}
if (fTZNamesMap != nullptr) {
uhash_close(fTZNamesMap);
fTZNamesMap = nullptr;
}
}
bool
TimeZoneNamesImpl::operator==(const TimeZoneNames& other) const {
if (this == &other) {
return true;
}
// No implementation for now
return false;
}
TimeZoneNamesImpl*
TimeZoneNamesImpl::clone() const {
UErrorCode status = U_ZERO_ERROR;
return new TimeZoneNamesImpl(fLocale, status);
}
StringEnumeration*
TimeZoneNamesImpl::getAvailableMetaZoneIDs(UErrorCode& status) const {
return TimeZoneNamesImpl::_getAvailableMetaZoneIDs(status);
}
// static implementation of getAvailableMetaZoneIDs(UErrorCode&)
StringEnumeration*
TimeZoneNamesImpl::_getAvailableMetaZoneIDs(UErrorCode& status) {
if (U_FAILURE(status)) {
return nullptr;
}
const UVector* mzIDs = ZoneMeta::getAvailableMetazoneIDs();
if (mzIDs == nullptr) {
return new MetaZoneIDsEnumeration();
}
return new MetaZoneIDsEnumeration(*mzIDs);
}
StringEnumeration*
TimeZoneNamesImpl::getAvailableMetaZoneIDs(const UnicodeString& tzID, UErrorCode& status) const {
return TimeZoneNamesImpl::_getAvailableMetaZoneIDs(tzID, status);
}
// static implementation of getAvailableMetaZoneIDs(const UnicodeString&, UErrorCode&)
StringEnumeration*
TimeZoneNamesImpl::_getAvailableMetaZoneIDs(const UnicodeString& tzID, UErrorCode& status) {
if (U_FAILURE(status)) {
return nullptr;
}
const UVector* mappings = ZoneMeta::getMetazoneMappings(tzID);
if (mappings == nullptr) {
return new MetaZoneIDsEnumeration();
}
LocalPointer<MetaZoneIDsEnumeration> senum;
LocalPointer<UVector> mzIDs(new UVector(nullptr, uhash_compareUChars, status), status);
if (U_SUCCESS(status)) {
U_ASSERT(mzIDs.isValid());
for (int32_t i = 0; U_SUCCESS(status) && i < mappings->size(); i++) {
OlsonToMetaMappingEntry *map = (OlsonToMetaMappingEntry *)mappings->elementAt(i);
const char16_t *mzID = map->mzid;
if (!mzIDs->contains((void *)mzID)) {
mzIDs->addElement((void *)mzID, status);
}
}
if (U_SUCCESS(status)) {
senum.adoptInsteadAndCheckErrorCode(new MetaZoneIDsEnumeration(std::move(mzIDs)), status);
}
}
return U_SUCCESS(status) ? senum.orphan() : nullptr;
}
UnicodeString&
TimeZoneNamesImpl::getMetaZoneID(const UnicodeString& tzID, UDate date, UnicodeString& mzID) const {
return TimeZoneNamesImpl::_getMetaZoneID(tzID, date, mzID);
}
// static implementation of getMetaZoneID
UnicodeString&
TimeZoneNamesImpl::_getMetaZoneID(const UnicodeString& tzID, UDate date, UnicodeString& mzID) {
ZoneMeta::getMetazoneID(tzID, date, mzID);
return mzID;
}
UnicodeString&
TimeZoneNamesImpl::getReferenceZoneID(const UnicodeString& mzID, const char* region, UnicodeString& tzID) const {
return TimeZoneNamesImpl::_getReferenceZoneID(mzID, region, tzID);
}
// static implementation of getReferenceZoneID
UnicodeString&
TimeZoneNamesImpl::_getReferenceZoneID(const UnicodeString& mzID, const char* region, UnicodeString& tzID) {
ZoneMeta::getZoneIdByMetazone(mzID, UnicodeString(region, -1, US_INV), tzID);
return tzID;
}
UnicodeString&
TimeZoneNamesImpl::getMetaZoneDisplayName(const UnicodeString& mzID,
UTimeZoneNameType type,
UnicodeString& name) const {
name.setToBogus(); // cleanup result.
if (mzID.isEmpty()) {
return name;
}
ZNames *znames = nullptr;
TimeZoneNamesImpl *nonConstThis = const_cast<TimeZoneNamesImpl *>(this);
{
Mutex lock(&gDataMutex);
UErrorCode status = U_ZERO_ERROR;
znames = nonConstThis->loadMetaZoneNames(mzID, status);
if (U_FAILURE(status)) { return name; }
}
if (znames != nullptr) {
const char16_t* s = znames->getName(type);
if (s != nullptr) {
name.setTo(true, s, -1);
}
}
return name;
}
UnicodeString&
TimeZoneNamesImpl::getTimeZoneDisplayName(const UnicodeString& tzID, UTimeZoneNameType type, UnicodeString& name) const {
name.setToBogus(); // cleanup result.
if (tzID.isEmpty()) {
return name;
}
ZNames *tznames = nullptr;
TimeZoneNamesImpl *nonConstThis = const_cast<TimeZoneNamesImpl *>(this);
{
Mutex lock(&gDataMutex);
UErrorCode status = U_ZERO_ERROR;
tznames = nonConstThis->loadTimeZoneNames(tzID, status);
if (U_FAILURE(status)) { return name; }
}
if (tznames != nullptr) {
const char16_t *s = tznames->getName(type);
if (s != nullptr) {
name.setTo(true, s, -1);
}
}
return name;
}
UnicodeString&
TimeZoneNamesImpl::getExemplarLocationName(const UnicodeString& tzID, UnicodeString& name) const {
name.setToBogus(); // cleanup result.
const char16_t* locName = nullptr;
ZNames *tznames = nullptr;
TimeZoneNamesImpl *nonConstThis = const_cast<TimeZoneNamesImpl *>(this);
{
Mutex lock(&gDataMutex);
UErrorCode status = U_ZERO_ERROR;
tznames = nonConstThis->loadTimeZoneNames(tzID, status);
if (U_FAILURE(status)) { return name; }
}
if (tznames != nullptr) {
locName = tznames->getName(UTZNM_EXEMPLAR_LOCATION);
}
if (locName != nullptr) {
name.setTo(true, locName, -1);
}
return name;
}
// Merge the MZ_PREFIX and mzId
static void mergeTimeZoneKey(const UnicodeString& mzID, char* result) {
if (mzID.isEmpty()) {
result[0] = '\0';
return;
}
char mzIdChar[ZID_KEY_MAX + 1];
int32_t keyLen;
int32_t prefixLen = static_cast<int32_t>(uprv_strlen(gMZPrefix));
keyLen = mzID.extract(0, mzID.length(), mzIdChar, ZID_KEY_MAX + 1, US_INV);
uprv_memcpy((void *)result, (void *)gMZPrefix, prefixLen);
uprv_memcpy((void *)(result + prefixLen), (void *)mzIdChar, keyLen);
result[keyLen + prefixLen] = '\0';
}
/*
* This method updates the cache and must be called with a lock
*/
ZNames*
TimeZoneNamesImpl::loadMetaZoneNames(const UnicodeString& mzID, UErrorCode& status) {
if (U_FAILURE(status)) { return nullptr; }
U_ASSERT(mzID.length() <= ZID_KEY_MAX - MZ_PREFIX_LEN);
char16_t mzIDKey[ZID_KEY_MAX + 1];
mzID.extract(mzIDKey, ZID_KEY_MAX + 1, status);
U_ASSERT(U_SUCCESS(status)); // already checked length above
mzIDKey[mzID.length()] = 0;
void* mznames = uhash_get(fMZNamesMap, mzIDKey);
if (mznames == nullptr) {
ZNames::ZNamesLoader loader;
loader.loadMetaZone(fZoneStrings, mzID, status);
mznames = ZNames::createMetaZoneAndPutInCache(fMZNamesMap, loader.getNames(), mzID, status);
if (U_FAILURE(status)) { return nullptr; }
}
if (mznames != EMPTY) {
return (ZNames*)mznames;
} else {
return nullptr;
}
}
/*
* This method updates the cache and must be called with a lock
*/
ZNames*
TimeZoneNamesImpl::loadTimeZoneNames(const UnicodeString& tzID, UErrorCode& status) {
if (U_FAILURE(status)) { return nullptr; }
U_ASSERT(tzID.length() <= ZID_KEY_MAX);
char16_t tzIDKey[ZID_KEY_MAX + 1];
int32_t tzIDKeyLen = tzID.extract(tzIDKey, ZID_KEY_MAX + 1, status);
U_ASSERT(U_SUCCESS(status)); // already checked length above
tzIDKey[tzIDKeyLen] = 0;
void *tznames = uhash_get(fTZNamesMap, tzIDKey);
if (tznames == nullptr) {
ZNames::ZNamesLoader loader;
loader.loadTimeZone(fZoneStrings, tzID, status);
tznames = ZNames::createTimeZoneAndPutInCache(fTZNamesMap, loader.getNames(), tzID, status);
if (U_FAILURE(status)) { return nullptr; }
}
// tznames is never EMPTY
return (ZNames*)tznames;
}
TimeZoneNames::MatchInfoCollection*
TimeZoneNamesImpl::find(const UnicodeString& text, int32_t start, uint32_t types, UErrorCode& status) const {
ZNameSearchHandler handler(types);
TimeZoneNames::MatchInfoCollection* matches;
TimeZoneNamesImpl* nonConstThis = const_cast<TimeZoneNamesImpl*>(this);
// Synchronize so that data is not loaded multiple times.
// TODO: Consider more fine-grained synchronization.
{
Mutex lock(&gDataMutex);
// First try of lookup.
matches = doFind(handler, text, start, status);
if (U_FAILURE(status)) { return nullptr; }
if (matches != nullptr) {
return matches;
}
// All names are not yet loaded into the trie.
// We may have loaded names for formatting several time zones,
// and might be parsing one of those.
// Populate the parsing trie from all of the already-loaded names.
nonConstThis->addAllNamesIntoTrie(status);
// Second try of lookup.
matches = doFind(handler, text, start, status);
if (U_FAILURE(status)) { return nullptr; }
if (matches != nullptr) {
return matches;
}
// There are still some names we haven't loaded into the trie yet.
// Load everything now.
nonConstThis->internalLoadAllDisplayNames(status);
nonConstThis->addAllNamesIntoTrie(status);
nonConstThis->fNamesTrieFullyLoaded = true;
if (U_FAILURE(status)) { return nullptr; }
// Third try: we must return this one.
return doFind(handler, text, start, status);
}
}
TimeZoneNames::MatchInfoCollection*
TimeZoneNamesImpl::doFind(ZNameSearchHandler& handler,
const UnicodeString& text, int32_t start, UErrorCode& status) const {
fNamesTrie.search(text, start, (TextTrieMapSearchResultHandler *)&handler, status);
if (U_FAILURE(status)) { return nullptr; }
int32_t maxLen = 0;
TimeZoneNames::MatchInfoCollection* matches = handler.getMatches(maxLen);
if (matches != nullptr && ((maxLen == (text.length() - start)) || fNamesTrieFullyLoaded)) {
// perfect match, or no more names available
return matches;
}
delete matches;
return nullptr;
}
// Caller must synchronize.
void TimeZoneNamesImpl::addAllNamesIntoTrie(UErrorCode& status) {
if (U_FAILURE(status)) return;
int32_t pos;
const UHashElement* element;
pos = UHASH_FIRST;
while ((element = uhash_nextElement(fMZNamesMap, &pos)) != nullptr) {
if (element->value.pointer == EMPTY) { continue; }
char16_t* mzID = (char16_t*) element->key.pointer;
ZNames* znames = (ZNames*) element->value.pointer;
znames->addAsMetaZoneIntoTrie(mzID, fNamesTrie, status);
if (U_FAILURE(status)) { return; }
}
pos = UHASH_FIRST;
while ((element = uhash_nextElement(fTZNamesMap, &pos)) != nullptr) {
if (element->value.pointer == EMPTY) { continue; }
char16_t* tzID = (char16_t*) element->key.pointer;
ZNames* znames = (ZNames*) element->value.pointer;
znames->addAsTimeZoneIntoTrie(tzID, fNamesTrie, status);
if (U_FAILURE(status)) { return; }
}
}
U_CDECL_BEGIN
static void U_CALLCONV
deleteZNamesLoader(void* obj) {
if (obj == DUMMY_LOADER) { return; }
const ZNames::ZNamesLoader* loader = (const ZNames::ZNamesLoader*) obj;
delete loader;
}
U_CDECL_END
struct TimeZoneNamesImpl::ZoneStringsLoader : public ResourceSink {
TimeZoneNamesImpl& tzn;
UHashtable* keyToLoader;
ZoneStringsLoader(TimeZoneNamesImpl& _tzn, UErrorCode& status)
: tzn(_tzn) {
keyToLoader = uhash_open(uhash_hashChars, uhash_compareChars, nullptr, &status);
if (U_FAILURE(status)) { return; }
uhash_setKeyDeleter(keyToLoader, uprv_free);
uhash_setValueDeleter(keyToLoader, deleteZNamesLoader);
}
virtual ~ZoneStringsLoader();
void* createKey(const char* key, UErrorCode& status) {
int32_t len = sizeof(char) * (static_cast<int32_t>(uprv_strlen(key)) + 1);
char* newKey = (char*) uprv_malloc(len);
if (newKey == nullptr) {
status = U_MEMORY_ALLOCATION_ERROR;
return nullptr;
}
uprv_memcpy(newKey, key, len);
newKey[len-1] = '\0';
return (void*) newKey;
}
UBool isMetaZone(const char* key) {
return (uprv_strlen(key) >= MZ_PREFIX_LEN && uprv_memcmp(key, gMZPrefix, MZ_PREFIX_LEN) == 0);
}
UnicodeString mzIDFromKey(const char* key) {
return UnicodeString(key + MZ_PREFIX_LEN, static_cast<int32_t>(uprv_strlen(key)) - MZ_PREFIX_LEN, US_INV);
}
UnicodeString tzIDFromKey(const char* key) {
UnicodeString tzID(key, -1, US_INV);
// Replace all colons ':' with slashes '/'
for (int i=0; i<tzID.length(); i++) {
if (tzID.charAt(i) == 0x003A) {
tzID.setCharAt(i, 0x002F);
}
}
return tzID;
}
void load(UErrorCode& status) {
ures_getAllItemsWithFallback(tzn.fZoneStrings, "", *this, status);
if (U_FAILURE(status)) { return; }
int32_t pos = UHASH_FIRST;
const UHashElement* element;
while ((element = uhash_nextElement(keyToLoader, &pos)) != nullptr) {
if (element->value.pointer == DUMMY_LOADER) { continue; }
ZNames::ZNamesLoader* loader = (ZNames::ZNamesLoader*) element->value.pointer;
char* key = (char*) element->key.pointer;
if (isMetaZone(key)) {
UnicodeString mzID = mzIDFromKey(key);
ZNames::createMetaZoneAndPutInCache(tzn.fMZNamesMap, loader->getNames(), mzID, status);
} else {
UnicodeString tzID = tzIDFromKey(key);
ZNames::createTimeZoneAndPutInCache(tzn.fTZNamesMap, loader->getNames(), tzID, status);
}
if (U_FAILURE(status)) { return; }
}
}
void consumeNamesTable(const char *key, ResourceValue &value, UBool noFallback,
UErrorCode &status) {
if (U_FAILURE(status)) { return; }
void* loader = uhash_get(keyToLoader, key);
if (loader == nullptr) {
if (isMetaZone(key)) {
UnicodeString mzID = mzIDFromKey(key);
void* cacheVal = uhash_get(tzn.fMZNamesMap, mzID.getTerminatedBuffer());
if (cacheVal != nullptr) {
// We have already loaded the names for this meta zone.
loader = (void*) DUMMY_LOADER;
} else {
loader = (void*) new ZNames::ZNamesLoader();
if (loader == nullptr) {
status = U_MEMORY_ALLOCATION_ERROR;
return;
}
}
} else {
UnicodeString tzID = tzIDFromKey(key);
void* cacheVal = uhash_get(tzn.fTZNamesMap, tzID.getTerminatedBuffer());
if (cacheVal != nullptr) {
// We have already loaded the names for this time zone.
loader = (void*) DUMMY_LOADER;
} else {
loader = (void*) new ZNames::ZNamesLoader();
if (loader == nullptr) {
status = U_MEMORY_ALLOCATION_ERROR;
return;
}
}
}
void* newKey = createKey(key, status);
if (U_FAILURE(status)) {
deleteZNamesLoader(loader);
return;
}
uhash_put(keyToLoader, newKey, loader, &status);
if (U_FAILURE(status)) { return; }
}
if (loader != DUMMY_LOADER) {
// Let the ZNamesLoader consume the names table.
((ZNames::ZNamesLoader*)loader)->put(key, value, noFallback, status);
}
}
virtual void put(const char *key, ResourceValue &value, UBool noFallback,
UErrorCode &status) override {
ResourceTable timeZonesTable = value.getTable(status);
if (U_FAILURE(status)) { return; }
for (int32_t i = 0; timeZonesTable.getKeyAndValue(i, key, value); ++i) {
U_ASSERT(!value.isNoInheritanceMarker());
if (value.getType() == URES_TABLE) {
consumeNamesTable(key, value, noFallback, status);
} else {
// Ignore fields that aren't tables (e.g., fallbackFormat and regionFormatStandard).
// All time zone fields are tables.
}
if (U_FAILURE(status)) { return; }
}
}
};
// Virtual destructors must be defined out of line.
TimeZoneNamesImpl::ZoneStringsLoader::~ZoneStringsLoader() {
uhash_close(keyToLoader);
}
void TimeZoneNamesImpl::loadAllDisplayNames(UErrorCode& status) {
if (U_FAILURE(status)) return;
{
Mutex lock(&gDataMutex);
internalLoadAllDisplayNames(status);
}
}
void TimeZoneNamesImpl::getDisplayNames(const UnicodeString& tzID,
const UTimeZoneNameType types[], int32_t numTypes,
UDate date, UnicodeString dest[], UErrorCode& status) const {
if (U_FAILURE(status)) return;
if (tzID.isEmpty()) { return; }
void* tznames = nullptr;
void* mznames = nullptr;
TimeZoneNamesImpl *nonConstThis = const_cast<TimeZoneNamesImpl*>(this);
// Load the time zone strings
{
Mutex lock(&gDataMutex);
tznames = (void*) nonConstThis->loadTimeZoneNames(tzID, status);
if (U_FAILURE(status)) { return; }
}
U_ASSERT(tznames != nullptr);
// Load the values into the dest array
for (int i = 0; i < numTypes; i++) {
UTimeZoneNameType type = types[i];
const char16_t* name = ((ZNames*)tznames)->getName(type);
if (name == nullptr) {
if (mznames == nullptr) {
// Load the meta zone name
UnicodeString mzID;
getMetaZoneID(tzID, date, mzID);
if (mzID.isEmpty()) {
mznames = (void*) EMPTY;
} else {
// Load the meta zone strings
// Mutex is scoped to the "else" statement
Mutex lock(&gDataMutex);
mznames = (void*) nonConstThis->loadMetaZoneNames(mzID, status);
if (U_FAILURE(status)) { return; }
// Note: when the metazone doesn't exist, in Java, loadMetaZoneNames returns
// a dummy object instead of nullptr.
if (mznames == nullptr) {
mznames = (void*) EMPTY;
}
}
}
U_ASSERT(mznames != nullptr);
if (mznames != EMPTY) {
name = ((ZNames*)mznames)->getName(type);
}
}
if (name != nullptr) {
dest[i].setTo(true, name, -1);
} else {
dest[i].setToBogus();
}
}
}
// Caller must synchronize.
void TimeZoneNamesImpl::internalLoadAllDisplayNames(UErrorCode& status) {
if (!fNamesFullyLoaded) {
fNamesFullyLoaded = true;
ZoneStringsLoader loader(*this, status);
loader.load(status);
if (U_FAILURE(status)) { return; }
const UnicodeString *id;
// load strings for all zones
StringEnumeration *tzIDs = TimeZone::createTimeZoneIDEnumeration(
UCAL_ZONE_TYPE_CANONICAL, nullptr, nullptr, status);
if (U_SUCCESS(status)) {
while ((id = tzIDs->snext(status)) != nullptr) {
if (U_FAILURE(status)) {
break;
}
UnicodeString copy(*id);
void* value = uhash_get(fTZNamesMap, copy.getTerminatedBuffer());
if (value == nullptr) {
// loadStrings also loads related metazone strings
loadStrings(*id, status);
}
}
}
if (tzIDs != nullptr) {
delete tzIDs;
}
}
}
static const char16_t gEtcPrefix[] = { 0x45, 0x74, 0x63, 0x2F }; // "Etc/"
static const int32_t gEtcPrefixLen = 4;
static const char16_t gSystemVPrefix[] = { 0x53, 0x79, 0x73, 0x74, 0x65, 0x6D, 0x56, 0x2F }; // "SystemV/
static const int32_t gSystemVPrefixLen = 8;
static const char16_t gRiyadh8[] = { 0x52, 0x69, 0x79, 0x61, 0x64, 0x68, 0x38 }; // "Riyadh8"
static const int32_t gRiyadh8Len = 7;
UnicodeString& U_EXPORT2
TimeZoneNamesImpl::getDefaultExemplarLocationName(const UnicodeString& tzID, UnicodeString& name) {
if (tzID.isEmpty() || tzID.startsWith(gEtcPrefix, gEtcPrefixLen)
|| tzID.startsWith(gSystemVPrefix, gSystemVPrefixLen) || tzID.indexOf(gRiyadh8, gRiyadh8Len, 0) > 0) {
name.setToBogus();
return name;
}
int32_t sep = tzID.lastIndexOf((char16_t)0x2F /* '/' */);
if (sep > 0 && sep + 1 < tzID.length()) {
name.setTo(tzID, sep + 1);
name.findAndReplace(UnicodeString((char16_t)0x5f /* _ */),
UnicodeString((char16_t)0x20 /* space */));
} else {
name.setToBogus();
}
return name;
}
// ---------------------------------------------------
// TZDBTimeZoneNames and its supporting classes
//
// TZDBTimeZoneNames is an implementation class of
// TimeZoneNames holding the IANA tz database abbreviations.
// ---------------------------------------------------
class TZDBNames : public UMemory {
public:
virtual ~TZDBNames();
static TZDBNames* createInstance(UResourceBundle* rb, const char* key);
const char16_t* getName(UTimeZoneNameType type) const;
const char** getParseRegions(int32_t& numRegions) const;
protected:
TZDBNames(const char16_t** names, char** regions, int32_t numRegions);
private:
const char16_t** fNames;
char** fRegions;
int32_t fNumRegions;
};
TZDBNames::TZDBNames(const char16_t** names, char** regions, int32_t numRegions)
: fNames(names),
fRegions(regions),
fNumRegions(numRegions) {
}
TZDBNames::~TZDBNames() {
if (fNames != nullptr) {
uprv_free(fNames);
}
if (fRegions != nullptr) {
char **p = fRegions;
for (int32_t i = 0; i < fNumRegions; p++, i++) {
uprv_free(*p);
}
uprv_free(fRegions);
}
}
TZDBNames*
TZDBNames::createInstance(UResourceBundle* rb, const char* key) {
if (rb == nullptr || key == nullptr || *key == 0) {
return nullptr;
}
UErrorCode status = U_ZERO_ERROR;
const char16_t **names = nullptr;
char** regions = nullptr;
int32_t numRegions = 0;
int32_t len = 0;
UResourceBundle* rbTable = nullptr;
rbTable = ures_getByKey(rb, key, rbTable, &status);
if (U_FAILURE(status)) {
return nullptr;
}
names = (const char16_t **)uprv_malloc(sizeof(const char16_t*) * TZDBNAMES_KEYS_SIZE);
UBool isEmpty = true;
if (names != nullptr) {
for (int32_t i = 0; i < TZDBNAMES_KEYS_SIZE; i++) {
status = U_ZERO_ERROR;
const char16_t *value = ures_getStringByKey(rbTable, TZDBNAMES_KEYS[i], &len, &status);
if (U_FAILURE(status) || len == 0) {
names[i] = nullptr;
} else {
names[i] = value;
isEmpty = false;
}
}
}
if (isEmpty) {
if (names != nullptr) {
uprv_free(names);
}
return nullptr;
}
UResourceBundle *regionsRes = ures_getByKey(rbTable, "parseRegions", nullptr, &status);
UBool regionError = false;
if (U_SUCCESS(status)) {
numRegions = ures_getSize(regionsRes);
if (numRegions > 0) {
regions = (char**)uprv_malloc(sizeof(char*) * numRegions);
if (regions != nullptr) {
char **pRegion = regions;
for (int32_t i = 0; i < numRegions; i++, pRegion++) {
*pRegion = nullptr;
}
// filling regions
pRegion = regions;
for (int32_t i = 0; i < numRegions; i++, pRegion++) {
status = U_ZERO_ERROR;
const char16_t *uregion = ures_getStringByIndex(regionsRes, i, &len, &status);
if (U_FAILURE(status)) {
regionError = true;
break;
}
*pRegion = (char*)uprv_malloc(sizeof(char) * (len + 1));
if (*pRegion == nullptr) {
regionError = true;
break;
}
u_UCharsToChars(uregion, *pRegion, len);
(*pRegion)[len] = 0;
}
}
}
}
ures_close(regionsRes);
ures_close(rbTable);
if (regionError) {
if (names != nullptr) {
uprv_free(names);
}
if (regions != nullptr) {
char **p = regions;
for (int32_t i = 0; i < numRegions; p++, i++) {
uprv_free(*p);
}
uprv_free(regions);
}
return nullptr;
}
return new TZDBNames(names, regions, numRegions);
}
const char16_t*
TZDBNames::getName(UTimeZoneNameType type) const {
if (fNames == nullptr) {
return nullptr;
}
const char16_t *name = nullptr;
switch(type) {
case UTZNM_SHORT_STANDARD:
name = fNames[0];
break;
case UTZNM_SHORT_DAYLIGHT:
name = fNames[1];
break;
default:
name = nullptr;
}
return name;
}
const char**
TZDBNames::getParseRegions(int32_t& numRegions) const {
if (fRegions == nullptr) {
numRegions = 0;
} else {
numRegions = fNumRegions;
}
return (const char**)fRegions;
}
U_CDECL_BEGIN
/**
* TZDBNameInfo stores metazone name information for the IANA abbreviations
* in the trie
*/
typedef struct TZDBNameInfo {
const char16_t* mzID;
UTimeZoneNameType type;
UBool ambiguousType;
const char** parseRegions;
int32_t nRegions;
} TZDBNameInfo;
U_CDECL_END
class TZDBNameSearchHandler : public TextTrieMapSearchResultHandler {
public:
TZDBNameSearchHandler(uint32_t types, const char* region);
virtual ~TZDBNameSearchHandler();
UBool handleMatch(int32_t matchLength, const CharacterNode *node, UErrorCode &status) override;
TimeZoneNames::MatchInfoCollection* getMatches(int32_t& maxMatchLen);
private:
uint32_t fTypes;
int32_t fMaxMatchLen;
TimeZoneNames::MatchInfoCollection* fResults;
const char* fRegion;
};
TZDBNameSearchHandler::TZDBNameSearchHandler(uint32_t types, const char* region)
: fTypes(types), fMaxMatchLen(0), fResults(nullptr), fRegion(region) {
}
TZDBNameSearchHandler::~TZDBNameSearchHandler() {
if (fResults != nullptr) {
delete fResults;
}
}
UBool
TZDBNameSearchHandler::handleMatch(int32_t matchLength, const CharacterNode *node, UErrorCode &status) {
if (U_FAILURE(status)) {
return false;
}
TZDBNameInfo *match = nullptr;
TZDBNameInfo *defaultRegionMatch = nullptr;
if (node->hasValues()) {
int32_t valuesCount = node->countValues();
for (int32_t i = 0; i < valuesCount; i++) {
TZDBNameInfo *ninfo = (TZDBNameInfo *)node->getValue(i);
if (ninfo == nullptr) {
continue;
}
if ((ninfo->type & fTypes) != 0) {
// Some tz database abbreviations are ambiguous. For example,
// CST means either Central Standard Time or China Standard Time.
// Unlike CLDR time zone display names, this implementation
// does not use unique names. And TimeZoneFormat does not expect
// multiple results returned for the same time zone type.
// For this reason, this implementation resolve one among same
// zone type with a same name at this level.
if (ninfo->parseRegions == nullptr) {
// parseRegions == null means this is the default metazone
// mapping for the abbreviation.
if (defaultRegionMatch == nullptr) {
match = defaultRegionMatch = ninfo;
}
} else {
UBool matchRegion = false;
// non-default metazone mapping for an abbreviation
// comes with applicable regions. For example, the default
// metazone mapping for "CST" is America_Central,
// but if region is one of CN/MO/TW, "CST" is parsed
// as metazone China (China Standard Time).
for (int32_t j = 0; j < ninfo->nRegions; j++) {
const char *region = ninfo->parseRegions[j];
if (uprv_strcmp(fRegion, region) == 0) {
match = ninfo;
matchRegion = true;
break;
}
}
if (matchRegion) {
break;
}
if (match == nullptr) {
match = ninfo;
}
}
}
}
if (match != nullptr) {
UTimeZoneNameType ntype = match->type;
// Note: Workaround for duplicated standard/daylight names
// The tz database contains a few zones sharing a
// same name for both standard time and daylight saving
// time. For example, Australia/Sydney observes DST,
// but "EST" is used for both standard and daylight.
// When both SHORT_STANDARD and SHORT_DAYLIGHT are included
// in the find operation, we cannot tell which one was
// actually matched.
// TimeZoneFormat#parse returns a matched name type (standard
// or daylight) and DateFormat implementation uses the info to
// to adjust actual time. To avoid false type information,
// this implementation replaces the name type with SHORT_GENERIC.
if (match->ambiguousType
&& (ntype == UTZNM_SHORT_STANDARD || ntype == UTZNM_SHORT_DAYLIGHT)
&& (fTypes & UTZNM_SHORT_STANDARD) != 0
&& (fTypes & UTZNM_SHORT_DAYLIGHT) != 0) {
ntype = UTZNM_SHORT_GENERIC;
}
if (fResults == nullptr) {
fResults = new TimeZoneNames::MatchInfoCollection();
if (fResults == nullptr) {
status = U_MEMORY_ALLOCATION_ERROR;
}
}
if (U_SUCCESS(status)) {
U_ASSERT(fResults != nullptr);
U_ASSERT(match->mzID != nullptr);
fResults->addMetaZone(ntype, matchLength, UnicodeString(match->mzID, -1), status);
if (U_SUCCESS(status) && matchLength > fMaxMatchLen) {
fMaxMatchLen = matchLength;
}
}
}
}
return true;
}
TimeZoneNames::MatchInfoCollection*
TZDBNameSearchHandler::getMatches(int32_t& maxMatchLen) {
// give the ownership to the caller
TimeZoneNames::MatchInfoCollection* results = fResults;
maxMatchLen = fMaxMatchLen;
// reset
fResults = nullptr;
fMaxMatchLen = 0;
return results;
}
U_CDECL_BEGIN
/**
* Deleter for TZDBNames
*/
static void U_CALLCONV
deleteTZDBNames(void *obj) {
if (obj != EMPTY) {
delete (TZDBNames *)obj;
}
}
static void U_CALLCONV initTZDBNamesMap(UErrorCode &status) {
gTZDBNamesMap = uhash_open(uhash_hashUChars, uhash_compareUChars, nullptr, &status);
if (U_FAILURE(status)) {
gTZDBNamesMap = nullptr;
return;
}
// no key deleters for tzdb name maps
uhash_setValueDeleter(gTZDBNamesMap, deleteTZDBNames);
ucln_i18n_registerCleanup(UCLN_I18N_TZDBTIMEZONENAMES, tzdbTimeZoneNames_cleanup);
}
/**
* Deleter for TZDBNameInfo
*/
static void U_CALLCONV
deleteTZDBNameInfo(void *obj) {
if (obj != nullptr) {
uprv_free(obj);
}
}
static void U_CALLCONV prepareFind(UErrorCode &status) {
if (U_FAILURE(status)) {
return;
}
gTZDBNamesTrie = new TextTrieMap(true, deleteTZDBNameInfo);
if (gTZDBNamesTrie == nullptr) {
status = U_MEMORY_ALLOCATION_ERROR;
return;
}
const UnicodeString *mzID;
StringEnumeration *mzIDs = TimeZoneNamesImpl::_getAvailableMetaZoneIDs(status);
if (U_SUCCESS(status)) {
while ((mzID = mzIDs->snext(status)) != 0 && U_SUCCESS(status)) {
const TZDBNames *names = TZDBTimeZoneNames::getMetaZoneNames(*mzID, status);
if (U_FAILURE(status)) {
break;
}
if (names == nullptr) {
continue;
}
const char16_t *std = names->getName(UTZNM_SHORT_STANDARD);
const char16_t *dst = names->getName(UTZNM_SHORT_DAYLIGHT);
if (std == nullptr && dst == nullptr) {
continue;
}
int32_t numRegions = 0;
const char **parseRegions = names->getParseRegions(numRegions);
// The tz database contains a few zones sharing a
// same name for both standard time and daylight saving
// time. For example, Australia/Sydney observes DST,
// but "EST" is used for both standard and daylight.
// we need to store the information for later processing.
UBool ambiguousType = (std != nullptr && dst != nullptr && u_strcmp(std, dst) == 0);
const char16_t *uMzID = ZoneMeta::findMetaZoneID(*mzID);
if (std != nullptr) {
TZDBNameInfo *stdInf = (TZDBNameInfo *)uprv_malloc(sizeof(TZDBNameInfo));
if (stdInf == nullptr) {
status = U_MEMORY_ALLOCATION_ERROR;
break;
}
stdInf->mzID = uMzID;
stdInf->type = UTZNM_SHORT_STANDARD;
stdInf->ambiguousType = ambiguousType;
stdInf->parseRegions = parseRegions;
stdInf->nRegions = numRegions;
gTZDBNamesTrie->put(std, stdInf, status);
}
if (U_SUCCESS(status) && dst != nullptr) {
TZDBNameInfo *dstInf = (TZDBNameInfo *)uprv_malloc(sizeof(TZDBNameInfo));
if (dstInf == nullptr) {
status = U_MEMORY_ALLOCATION_ERROR;
break;
}
dstInf->mzID = uMzID;
dstInf->type = UTZNM_SHORT_DAYLIGHT;
dstInf->ambiguousType = ambiguousType;
dstInf->parseRegions = parseRegions;
dstInf->nRegions = numRegions;
gTZDBNamesTrie->put(dst, dstInf, status);
}
}
}
delete mzIDs;
if (U_FAILURE(status)) {
delete gTZDBNamesTrie;
gTZDBNamesTrie = nullptr;
return;
}
ucln_i18n_registerCleanup(UCLN_I18N_TZDBTIMEZONENAMES, tzdbTimeZoneNames_cleanup);
}
U_CDECL_END
TZDBTimeZoneNames::TZDBTimeZoneNames(const Locale& locale)
: fLocale(locale) {
UBool useWorld = true;
const char* region = fLocale.getCountry();
int32_t regionLen = static_cast<int32_t>(uprv_strlen(region));
if (regionLen == 0) {
UErrorCode status = U_ZERO_ERROR;
CharString loc;
{
CharStringByteSink sink(&loc);
ulocimp_addLikelySubtags(fLocale.getName(), sink, &status);
}
regionLen = uloc_getCountry(loc.data(), fRegion, sizeof(fRegion), &status);
if (U_SUCCESS(status) && regionLen < (int32_t)sizeof(fRegion)) {
useWorld = false;
}
} else if (regionLen < (int32_t)sizeof(fRegion)) {
uprv_strcpy(fRegion, region);
useWorld = false;
}
if (useWorld) {
uprv_strcpy(fRegion, "001");
}
}
TZDBTimeZoneNames::~TZDBTimeZoneNames() {
}
bool
TZDBTimeZoneNames::operator==(const TimeZoneNames& other) const {
if (this == &other) {
return true;
}
// No implementation for now
return false;
}
TZDBTimeZoneNames*
TZDBTimeZoneNames::clone() const {
return new TZDBTimeZoneNames(fLocale);
}
StringEnumeration*
TZDBTimeZoneNames::getAvailableMetaZoneIDs(UErrorCode& status) const {
return TimeZoneNamesImpl::_getAvailableMetaZoneIDs(status);
}
StringEnumeration*
TZDBTimeZoneNames::getAvailableMetaZoneIDs(const UnicodeString& tzID, UErrorCode& status) const {
return TimeZoneNamesImpl::_getAvailableMetaZoneIDs(tzID, status);
}
UnicodeString&
TZDBTimeZoneNames::getMetaZoneID(const UnicodeString& tzID, UDate date, UnicodeString& mzID) const {
return TimeZoneNamesImpl::_getMetaZoneID(tzID, date, mzID);
}
UnicodeString&
TZDBTimeZoneNames::getReferenceZoneID(const UnicodeString& mzID, const char* region, UnicodeString& tzID) const {
return TimeZoneNamesImpl::_getReferenceZoneID(mzID, region, tzID);
}
UnicodeString&
TZDBTimeZoneNames::getMetaZoneDisplayName(const UnicodeString& mzID,
UTimeZoneNameType type,
UnicodeString& name) const {
name.setToBogus();
if (mzID.isEmpty()) {
return name;
}
UErrorCode status = U_ZERO_ERROR;
const TZDBNames *tzdbNames = TZDBTimeZoneNames::getMetaZoneNames(mzID, status);
if (U_SUCCESS(status)) {
if (tzdbNames != nullptr) {
const char16_t *s = tzdbNames->getName(type);
if (s != nullptr) {
name.setTo(true, s, -1);
}
}
}
return name;
}
UnicodeString&
TZDBTimeZoneNames::getTimeZoneDisplayName(const UnicodeString& /* tzID */, UTimeZoneNameType /* type */, UnicodeString& name) const {
// No abbreviations associated a zone directly for now.
name.setToBogus();
return name;
}
TZDBTimeZoneNames::MatchInfoCollection*
TZDBTimeZoneNames::find(const UnicodeString& text, int32_t start, uint32_t types, UErrorCode& status) const {
umtx_initOnce(gTZDBNamesTrieInitOnce, &prepareFind, status);
if (U_FAILURE(status)) {
return nullptr;
}
TZDBNameSearchHandler handler(types, fRegion);
gTZDBNamesTrie->search(text, start, (TextTrieMapSearchResultHandler *)&handler, status);
if (U_FAILURE(status)) {
return nullptr;
}
int32_t maxLen = 0;
return handler.getMatches(maxLen);
}
const TZDBNames*
TZDBTimeZoneNames::getMetaZoneNames(const UnicodeString& mzID, UErrorCode& status) {
umtx_initOnce(gTZDBNamesMapInitOnce, &initTZDBNamesMap, status);
if (U_FAILURE(status)) {
return nullptr;
}
TZDBNames* tzdbNames = nullptr;
char16_t mzIDKey[ZID_KEY_MAX + 1];
mzID.extract(mzIDKey, ZID_KEY_MAX + 1, status);
U_ASSERT(status == U_ZERO_ERROR); // already checked length above
mzIDKey[mzID.length()] = 0;
static UMutex gTZDBNamesMapLock;
umtx_lock(&gTZDBNamesMapLock);
{
void *cacheVal = uhash_get(gTZDBNamesMap, mzIDKey);
if (cacheVal == nullptr) {
UResourceBundle *zoneStringsRes = ures_openDirect(U_ICUDATA_ZONE, "tzdbNames", &status);
zoneStringsRes = ures_getByKey(zoneStringsRes, gZoneStrings, zoneStringsRes, &status);
if (U_SUCCESS(status)) {
char key[ZID_KEY_MAX + 1];
mergeTimeZoneKey(mzID, key);
tzdbNames = TZDBNames::createInstance(zoneStringsRes, key);
if (tzdbNames == nullptr) {
cacheVal = (void *)EMPTY;
} else {
cacheVal = tzdbNames;
}
// Use the persistent ID as the resource key, so we can
// avoid duplications.
// TODO: Is there a more efficient way, like intern() in Java?
void* newKey = (void*) ZoneMeta::findMetaZoneID(mzID);
if (newKey != nullptr) {
uhash_put(gTZDBNamesMap, newKey, cacheVal, &status);
if (U_FAILURE(status)) {
if (tzdbNames != nullptr) {
delete tzdbNames;
tzdbNames = nullptr;
}
}
} else {
// Should never happen with a valid input
if (tzdbNames != nullptr) {
// It's not possible that we get a valid tzdbNames with unknown ID.
// But just in case..
delete tzdbNames;
tzdbNames = nullptr;
}
}
}
ures_close(zoneStringsRes);
} else if (cacheVal != EMPTY) {
tzdbNames = (TZDBNames *)cacheVal;
}
}
umtx_unlock(&gTZDBNamesMapLock);
return tzdbNames;
}
U_NAMESPACE_END
#endif /* #if !UCONFIG_NO_FORMATTING */
//eof
|