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
|
/* **********************************************************
* Copyright 1998 VMware, Inc. All rights reserved.
* **********************************************************/
/*
* codeset.c --
*
* Character set and encoding conversion functions, using ICU.
*
*
* Some definitions borrow from header files from the ICU 1.8.1
* library.
*
* ICU 1.8.1 license follows:
*
* ICU License - ICU 1.8.1 and later
*
* COPYRIGHT AND PERMISSION NOTICE
*
* Copyright (c) 1995-2006 International Business Machines Corporation
* and others
*
* All rights reserved.
*
* Permission is hereby granted, free of charge, to any
* person obtaining a copy of this software and associated
* documentation files (the "Software"), to deal in the Software
* without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, and/or sell
* copies of the Software, and to permit persons to whom the
* Software is furnished to do so, provided that the above
* copyright notice(s) and this permission notice appear in all
* copies of the Software and that both the above copyright
* notice(s) and this permission notice appear in supporting
* documentation.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY
* KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
* WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR
* PURPOSE AND NONINFRINGEMENT OF THIRD PARTY RIGHTS. IN NO EVENT
* SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS NOTICE
* BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR
* CONSEQUENTIAL DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING
* FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF
* CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*
* Except as contained in this notice, the name of a
* copyright holder shall not be used in advertising or otherwise
* to promote the sale, use or other dealings in this Software
* without prior written authorization of the copyright holder.
*/
#if defined(_WIN32)
# include <windows.h>
# include <malloc.h>
# include <str.h>
#else
# define _GNU_SOURCE
# include <string.h>
# include <stdlib.h>
# include <errno.h>
# include <su.h>
# include <sys/stat.h>
# include "hostinfo.h"
# include "hostType.h"
#endif
#if defined(__APPLE__)
#include <mach-o/dyld.h>
#endif
#include <stdio.h>
#include "vmware.h"
#include "vm_product.h"
#include "vm_atomic.h"
#include "unicode/ucnv.h"
#include "unicode/udata.h"
#include "unicode/putil.h"
#include "file.h"
#include "util.h"
#include "codeset.h"
#include "codesetOld.h"
#include "str.h"
#include "win32util.h"
/*
* Macros
*/
#define CODESET_CAN_FALLBACK_ON_NON_ICU TRUE
#if defined(__APPLE__)
#define POSIX_ICU_DIR DEFAULT_LIBDIRECTORY "/icu"
#elif !defined(WIN32)
#define POSIX_ICU_DIR "/etc/vmware/icu"
#endif
/*
* XXX These should be passed in from the build system,
* but I don't have time to deal with bora-vmsoft. -- edward
*/
#define ICU_DATA_FILE "icudt38l.dat"
#ifdef _WIN32
#define ICU_DATA_FILE_DIR "%TCROOT%/noarch/icu-data-3.8-2"
#else
#define ICU_DATA_FILE_DIR "/build/toolchain/noarch/icu-data-3.8-2"
#endif
#ifdef _WIN32
#define ICU_DATA_FILE_W XCONC(L, ICU_DATA_FILE)
#define ICU_DATA_FILE_DIR_W XCONC(L, ICU_DATA_FILE_DIR)
#define ICU_DATA_FILE_PATH ICU_DATA_FILE_DIR_W DIRSEPS_W ICU_DATA_FILE_W
#else
#define ICU_DATA_FILE_PATH ICU_DATA_FILE_DIR DIRSEPS ICU_DATA_FILE
#endif
/*
* Variables
*/
static Bool dontUseIcu = TRUE;
/*
* Functions
*/
#ifdef _WIN32
/*
*----------------------------------------------------------------------------
*
* CodeSetGetModulePath --
*
* Returns the wide-character current module path. We can't use
* Win32U_GetModuleFileName because it invokes codeset.c conversion
* routines.
*
* Returns:
* NULL, or a utf16 string (free with free).
*
* Side effects:
* None.
*
*----------------------------------------------------------------------------
*/
static utf16_t *
CodeSetGetModulePath(HANDLE hModule) // IN
{
utf16_t *pathW = NULL;
DWORD size = MAX_PATH;
while (TRUE) {
DWORD res;
pathW = realloc(pathW, size * sizeof(wchar_t));
if (!pathW) {
return NULL;
}
res = GetModuleFileNameW(hModule, pathW, size);
if (res == 0) {
/* fatal error */
goto exit;
} else if (res == size) {
/* buffer too small */
size *= 2;
} else {
/* success */
break;
}
}
exit:
return pathW;
}
#elif vmx86_devel && !defined(TEST_CUSTOM_ICU_DATA_FILE) // _WIN32
/*
*-----------------------------------------------------------------------------
*
* CodeSetGetModulePath --
*
* Retrieve the full path to the executable. Not supported under
* VMvisor. Based on HostInfo_GetModulePath, simplified for safe
* use before ICU is initialized.
*
* Results:
* On success: The allocated, NUL-terminated file path.
* Note: This path can be a symbolic or hard link; it's just one
* possible path to access the executable.
*
* On failure: NULL.
*
* Side effects:
* None
*
*-----------------------------------------------------------------------------
*/
static char *
CodeSetGetModulePath(uint32 priv)
{
char path[PATH_MAX];
Bool ret = FALSE;
#if defined(__APPLE__)
uint32_t size;
#else
ssize_t size;
uid_t uid = -1;
#endif
if ((priv != HGMP_PRIVILEGE) && (priv != HGMP_NO_PRIVILEGE)) {
return NULL;
}
#if defined(__APPLE__)
size = sizeof path;
if (_NSGetExecutablePath(path, &size)) {
goto exit;
}
#else
#if defined(VMX86_SERVER)
if (HostType_OSIsPureVMK()) {
goto exit;
}
#endif
if (priv == HGMP_PRIVILEGE) {
uid = Id_BeginSuperUser();
}
size = readlink("/proc/self/exe", path, sizeof path);
if (-1 == size) {
if (priv == HGMP_PRIVILEGE) {
Id_EndSuperUser(uid);
}
goto exit;
}
path[size] = '\0';
if (priv == HGMP_PRIVILEGE) {
Id_EndSuperUser(uid);
}
#endif
ret = TRUE;
exit:
if (ret) {
return strdup(path);
} else {
return NULL;
}
}
#endif // _WIN32
/*
*-----------------------------------------------------------------------------
*
* CodeSet_GetAltPathName --
*
* The Unicode path is probably not compatible in the current encoding.
* Try to convert the path into a short name so it may work with
* local encoding.
*
* XXX -- this function is a temporary fix. It should be removed once
* we fix the 3rd party library pathname issue.
*
* Results:
* NULL, or a char string (free with free).
*
* Side effects:
* None.
*
*-----------------------------------------------------------------------------
*/
char *
CodeSet_GetAltPathName(const utf16_t *pathW) // IN
{
char *path = NULL;
#if defined(_WIN32)
utf16_t shortPathW[_MAX_PATH];
ASSERT(pathW);
if (GetShortPathNameW(pathW, shortPathW, ARRAYSIZE(shortPathW)) == 0) {
goto exit;
}
if (!CodeSetOld_Utf16leToCurrent((const char *)shortPathW,
wcslen(shortPathW) * sizeof *shortPathW,
&path, NULL)) {
goto exit;
}
exit:
#endif // _WIN32
return path;
}
/*
*-----------------------------------------------------------------------------
*
* CodeSet_DontUseIcu --
*
* Tell codeset not to load or use ICU (or stop using it if it's
* already loaded). Codeset will fall back on codesetOld.c, which
* relies on system internationalization APIs (and may have more
* limited functionality). Not all APIs have a fallback, however
* (namely GenericToGeneric).
*
* Results:
* TRUE on success
* FALSE on failure
*
* Side effects:
* See above
*
*-----------------------------------------------------------------------------
*/
void
CodeSet_DontUseIcu(void)
{
dontUseIcu = TRUE;
}
/*
*-----------------------------------------------------------------------------
*
* CodeSet_Init --
*
* Looks for ICU's data file in some platform-specific
* directory. If present, inits ICU by feeding it the path to that
* directory. If already inited, returns the current state (init
* failed/succeeded).
*
* For Windows, CodeSet_Init is thread-safe (with critical section).
* For Linux/Apple, call while single-threaded.
*
* *********** WARNING ***********
* Do not call CodeSet_Init directly, it is called already by
* Unicode_Init. Lots of code depends on codeset. Please call
* Unicode_Init as early as possible.
* *******************************
*
* Results:
* TRUE on success
* FALSE on failure
*
* Side effects:
* See above
*
*-----------------------------------------------------------------------------
*/
Bool
CodeSet_Init(const char *icuDataDir) // IN: ICU data file location in Current code page.
// Default is used if NULL.
{
DynBuf dbpath;
#ifdef _WIN32
DWORD attribs;
utf16_t *modPath = NULL;
utf16_t *lastSlash;
utf16_t *wpath;
HANDLE hFile = INVALID_HANDLE_VALUE;
HANDLE hMapping = NULL;
void *memMappedData = NULL;
#else
struct stat finfo;
#endif
char *path = NULL;
Bool ret = FALSE;
DynBuf_Init(&dbpath);
#ifdef USE_ICU
/*
* We're using system ICU, which finds its own data. So nothing to
* do here.
*/
dontUseIcu = FALSE;
ret = TRUE;
goto exit;
#endif
/*
* ********************* WARNING
* Must avoid recursive calls into the codeset library here, hence
* the idiotic hoop-jumping. DO NOT change any of these calls to
* wrapper equivalents or call any other functions that may perform
* string conversion.
* ********************* WARNING
*/
#ifdef _WIN32 // {
#if vmx86_devel && !defined(TEST_CUSTOM_ICU_DATA_FILE)
/*
* Devel builds use toolchain directory first.
*/
{
WCHAR icuFilePath[MAX_PATH] = { 0 };
DWORD n = ExpandEnvironmentStringsW(ICU_DATA_FILE_PATH,
icuFilePath, ARRAYSIZE(icuFilePath));
if (n > 0 && n < ARRAYSIZE(icuFilePath)) {
attribs = GetFileAttributesW(icuFilePath);
if ((INVALID_FILE_ATTRIBUTES != attribs) ||
(attribs & FILE_ATTRIBUTE_DIRECTORY) == 0) {
if (!CodeSetOld_Utf16leToCurrent((const char *) icuFilePath,
n * sizeof *icuFilePath,
&path, NULL)) {
goto exit;
}
goto found;
}
}
}
#endif
if (icuDataDir) {
/*
* Data file must be in the specified directory.
*/
size_t length = strlen(icuDataDir);
if (!DynBuf_Append(&dbpath, icuDataDir, length)) {
goto exit;
}
if (length && icuDataDir[length - 1] != DIRSEPC) {
if (!DynBuf_Append(&dbpath, DIRSEPS, strlen(DIRSEPS))) {
goto exit;
}
}
if (!DynBuf_Append(&dbpath, ICU_DATA_FILE, strlen(ICU_DATA_FILE)) ||
!DynBuf_Append(&dbpath, "\0", 1)) {
goto exit;
}
/*
* Check for file existence.
*/
attribs = GetFileAttributesA(DynBuf_Get(&dbpath));
if ((INVALID_FILE_ATTRIBUTES == attribs) ||
(attribs & FILE_ATTRIBUTE_DIRECTORY)) {
goto exit;
}
path = (char *) DynBuf_Detach(&dbpath);
} else {
/*
* Data file must be in the directory of the current module
* (i.e. the module that contains CodeSet_Init()).
*/
HMODULE hModule = W32Util_GetModuleByAddress((void *) CodeSet_Init);
if (!hModule) {
goto exit;
}
modPath = CodeSetGetModulePath(hModule);
if (!modPath) {
goto exit;
}
lastSlash = wcsrchr(modPath, DIRSEPC_W);
if (!lastSlash) {
goto exit;
}
*lastSlash = L'\0';
if (!DynBuf_Append(&dbpath, modPath,
wcslen(modPath) * sizeof(utf16_t)) ||
!DynBuf_Append(&dbpath, DIRSEPS_W,
wcslen(DIRSEPS_W) * sizeof(utf16_t)) ||
!DynBuf_Append(&dbpath, ICU_DATA_FILE_W,
wcslen(ICU_DATA_FILE_W) * sizeof(utf16_t)) ||
!DynBuf_Append(&dbpath, L"\0", 2)) {
goto exit;
}
/*
* Since u_setDataDirectory can't handle UTF-16, we would have to
* now convert this path to local encoding. But that fails when
* the module is in a path containing characters not in the
* local encoding (see 282524). So we'll memory-map the file
* instead and call udata_setCommonData() below.
*/
wpath = (utf16_t *) DynBuf_Get(&dbpath);
hFile = CreateFileW(wpath, GENERIC_READ, 0, NULL, OPEN_EXISTING, 0,
NULL);
if (INVALID_HANDLE_VALUE == hFile) {
goto exit;
}
hMapping = CreateFileMapping(hFile, NULL, PAGE_READONLY, 0, 0, NULL);
if (NULL == hMapping) {
goto exit;
}
memMappedData = MapViewOfFile(hMapping, FILE_MAP_READ, 0, 0, 0);
if (NULL == memMappedData) {
goto exit;
}
}
#else // } _WIN32 {
#if vmx86_devel && !defined(TEST_CUSTOM_ICU_DATA_FILE)
{
char *modPath;
char *lastSlash;
/*
* Devel builds use toolchain directory first.
*/
if (stat(ICU_DATA_FILE_PATH, &finfo) >= 0 && !S_ISDIR(finfo.st_mode)) {
if ((path = strdup(ICU_DATA_FILE_PATH)) == NULL) {
goto exit;
}
goto found;
}
/*
* Then we try module directory, if we can get it.
*/
modPath = CodeSetGetModulePath(HGMP_PRIVILEGE);
if (modPath) {
lastSlash = strrchr(modPath, DIRSEPC);
if (lastSlash) {
*lastSlash = '\0';
if (DynBuf_Append(&dbpath, modPath, strlen(modPath)) &&
DynBuf_Append(&dbpath, DIRSEPS, strlen(DIRSEPS)) &&
DynBuf_Append(&dbpath, ICU_DATA_FILE,
strlen(ICU_DATA_FILE)) &&
DynBuf_Append(&dbpath, "\0", 1)) {
if ((stat((const char *) DynBuf_Get(&dbpath), &finfo) >= 0) &&
!S_ISDIR(finfo.st_mode)) {
free(modPath);
path = DynBuf_Detach(&dbpath);
goto found;
} else {
DynBuf_SetSize(&dbpath, 0);
}
}
}
free(modPath);
}
}
#endif // vmx86_devel
/*
* Data file is either in POSIX_ICU_DIR or user specified dir.
*/
if (!icuDataDir) {
icuDataDir = POSIX_ICU_DIR;
}
if (!DynBuf_Append(&dbpath, icuDataDir, strlen(icuDataDir)) ||
!DynBuf_Append(&dbpath, DIRSEPS, strlen(DIRSEPS)) ||
!DynBuf_Append(&dbpath, ICU_DATA_FILE, strlen(ICU_DATA_FILE)) ||
!DynBuf_Append(&dbpath, "\0", 1)) {
goto exit;
}
/*
* Check for file existence. (DO NOT CHANGE TO 'stat' WRAPPER).
*/
path = (char *) DynBuf_Detach(&dbpath);
if (stat(path, &finfo) < 0 || S_ISDIR(finfo.st_mode)) {
goto exit;
}
#endif // } _WIN32
#if vmx86_devel && !defined(TEST_CUSTOM_ICU_DATA_FILE)
found:
#endif
#ifdef _WIN32
if (memMappedData) {
/*
* Tell ICU to use this mapped data.
*/
UErrorCode uerr = U_ZERO_ERROR;
ASSERT(memMappedData);
udata_setCommonData(memMappedData, &uerr);
if (uerr != U_ZERO_ERROR) {
UnmapViewOfFile(memMappedData);
goto exit;
}
} else {
#endif
/*
* Tell ICU to use this directory.
*/
u_setDataDirectory(path);
#ifdef _WIN32
}
#endif
dontUseIcu = FALSE;
ret = TRUE;
exit:
if (!ret) {
/*
* There was an error initing ICU, but if we can fall back on
* non-ICU (old CodeSet) then things are OK.
*/
if (CODESET_CAN_FALLBACK_ON_NON_ICU) {
ret = TRUE;
dontUseIcu = TRUE;
#ifdef _WIN32
OutputDebugStringW(L"CodeSet_Init: no ICU\n");
#endif
}
}
#ifdef _WIN32
free(modPath);
if (hMapping) {
CloseHandle(hMapping);
}
if (hFile != INVALID_HANDLE_VALUE) {
CloseHandle(hFile);
}
#endif
free(path);
DynBuf_Destroy(&dbpath);
return ret;
}
#if defined(CURRENT_IS_UTF8)
/*
*-----------------------------------------------------------------------------
*
* CodeSetDuplicateUtf8Str --
*
* Duplicate UTF-8 string, appending zero terminator to its end.
*
* Results:
* TRUE on success
* FALSE on failure
*
* Side effects:
* None.
*
*-----------------------------------------------------------------------------
*/
static Bool
CodeSetDuplicateUtf8Str(const char *bufIn, // IN: Input string
size_t sizeIn, // IN: Input string length
char **bufOut, // OUT: "Converted" string
size_t *sizeOut) // OUT: Length of string
{
char *myBufOut;
myBufOut = malloc(sizeIn + 1);
if (myBufOut == NULL) {
return FALSE;
}
memcpy(myBufOut, bufIn, sizeIn);
memset(myBufOut + sizeIn, 0, 1);
*bufOut = myBufOut;
if (sizeOut) {
*sizeOut = sizeIn;
}
return TRUE;
}
#endif // defined(CURRENT_IS_UTF8)
/*
*-----------------------------------------------------------------------------
*
* CodeSetDynBufFinalize --
*
* Append NUL terminator to the buffer, and return pointer to
* buffer and its data size (before appending terminator). Destroys
* buffer on failure.
*
* Results:
* TRUE on success
* FALSE on failure
*
* Side effects:
* None.
*
*-----------------------------------------------------------------------------
*/
static Bool
CodeSetDynBufFinalize(Bool ok, // IN: Earlier steps succeeded
DynBuf *db, // IN: Buffer with converted string
char **bufOut, // OUT: Converted string
size_t *sizeOut) // OUT: Length of string in bytes
{
/*
* NUL can be as long as 4 bytes if UTF-32, make no assumptions.
*/
if (!ok || !DynBuf_Append(db, "\0\0\0\0", 4) || !DynBuf_Trim(db)) {
DynBuf_Destroy(db);
return FALSE;
}
*bufOut = DynBuf_Get(db);
if (sizeOut) {
*sizeOut = DynBuf_GetSize(db) - 4;
}
return TRUE;
}
/*
*-----------------------------------------------------------------------------
*
* CodeSetUtf8ToUtf16le --
*
* Append the content of a buffer (that uses the UTF-8 encoding) to a
* DynBuf (that uses the UTF-16LE encoding)
*
* Results:
* TRUE on success
* FALSE on failure
*
* Side effects:
* None
*
*-----------------------------------------------------------------------------
*/
static Bool
CodeSetUtf8ToUtf16le(const char *bufIn, // IN
size_t sizeIn, // IN
DynBuf *db) // IN
{
return CodeSet_GenericToGenericDb("UTF-8", bufIn, sizeIn, "UTF-16LE", 0,
db);
}
#if defined(__APPLE__)
/*
*-----------------------------------------------------------------------------
*
* CodeSet_Utf8Normalize --
*
* Calls down to CodeSetOld_Utf8Normalize.
*
* Results:
* See CodeSetOld_Utf8Normalize.
*
* Side effects:
* See CodeSetOld_Utf8Normalize.
*
*-----------------------------------------------------------------------------
*/
Bool
CodeSet_Utf8Normalize(const char *bufIn, // IN
size_t sizeIn, // IN
Bool precomposed, // IN
DynBuf *db) // OUT
{
return CodeSetOld_Utf8Normalize(bufIn, sizeIn, precomposed, db);
}
#endif /* defined(__APPLE__) */
/*
*-----------------------------------------------------------------------------
*
* CodeSet_GetCurrentCodeSet --
*
* Return native code set name. Always calls down to
* CodeSetOld_GetCurrentCodeSet. See there for more details.
*
* Results:
* See CodeSetOld_GetCurrentCodeSet.
*
* Side effects:
* See CodeSetOld_GetCurrentCodeSet.
*
*-----------------------------------------------------------------------------
*/
const char *
CodeSet_GetCurrentCodeSet(void)
{
return CodeSetOld_GetCurrentCodeSet();
}
/*
*-----------------------------------------------------------------------------
*
* CodeSet_GenericToGenericDb --
*
* Append the content of a buffer (that uses the specified encoding) to a
* DynBuf (that uses the specified encoding).
*
* Results:
* TRUE on success
* FALSE on failure
*
* Side effects:
* String (sans NUL-termination) is appended to db.
*
*-----------------------------------------------------------------------------
*/
Bool
CodeSet_GenericToGenericDb(const char *codeIn, // IN
const char *bufIn, // IN
size_t sizeIn, // IN
const char *codeOut, // IN
unsigned int flags, // IN
DynBuf *db) // IN/OUT
{
Bool result = FALSE;
UErrorCode uerr;
const char *bufInCur;
const char *bufInEnd;
UChar bufPiv[1024];
UChar *bufPivSource;
UChar *bufPivTarget;
UChar *bufPivEnd;
char *bufOut;
char *bufOutCur;
char *bufOutEnd;
size_t bufOutSize;
size_t bufOutOffset;
UConverter *cvin = NULL;
UConverter *cvout = NULL;
UConverterToUCallback toUCb;
UConverterFromUCallback fromUCb;
ASSERT(codeIn);
ASSERT(sizeIn == 0 || bufIn);
ASSERT(codeOut);
ASSERT(db);
ASSERT((CSGTG_NORMAL == flags) || (CSGTG_TRANSLIT == flags) ||
(CSGTG_IGNORE == flags));
if (dontUseIcu) {
// fall back
return CodeSetOld_GenericToGenericDb(codeIn, bufIn, sizeIn, codeOut,
flags, db);
}
/*
* Trivial case.
*/
if ((0 == sizeIn) || (NULL == bufIn)) {
result = TRUE;
goto exit;
}
/*
* Open converters.
*/
uerr = U_ZERO_ERROR;
cvin = ucnv_open(codeIn, &uerr);
if (!cvin) {
goto exit;
}
uerr = U_ZERO_ERROR;
cvout = ucnv_open(codeOut, &uerr);
if (!cvout) {
goto exit;
}
/*
* Set callbacks according to flags.
*/
switch (flags) {
case CSGTG_NORMAL:
toUCb = UCNV_TO_U_CALLBACK_STOP;
fromUCb = UCNV_FROM_U_CALLBACK_STOP;
break;
case CSGTG_TRANSLIT:
toUCb = UCNV_TO_U_CALLBACK_SUBSTITUTE;
fromUCb = UCNV_FROM_U_CALLBACK_SUBSTITUTE;
break;
case CSGTG_IGNORE:
toUCb = UCNV_TO_U_CALLBACK_SKIP;
fromUCb = UCNV_FROM_U_CALLBACK_SKIP;
break;
default:
NOT_IMPLEMENTED();
break;
}
uerr = U_ZERO_ERROR;
ucnv_setToUCallBack(cvin, toUCb, NULL, NULL, NULL, &uerr);
if (U_ZERO_ERROR != uerr) {
goto exit;
}
uerr = U_ZERO_ERROR;
ucnv_setFromUCallBack(cvout, fromUCb, NULL, NULL, NULL, &uerr);
if (U_ZERO_ERROR != uerr) {
goto exit;
}
/*
* Convert using ucnv_convertEx().
* As a starting guess, make the output buffer the same size as
* the input string (with a fudge constant added in to avoid degen
* cases).
*/
bufInCur = bufIn;
bufInEnd = bufIn + sizeIn;
bufOutSize = sizeIn + 4;
bufOutOffset = 0;
bufPivSource = bufPiv;
bufPivTarget = bufPiv;
bufPivEnd = bufPiv + ARRAYSIZE(bufPiv);
for (;;) {
if (!DynBuf_Enlarge(db, bufOutSize)) {
goto exit;
}
bufOut = DynBuf_Get(db);
bufOutCur = bufOut + bufOutOffset;
bufOutSize = DynBuf_GetAllocatedSize(db);
bufOutEnd = bufOut + bufOutSize;
uerr = U_ZERO_ERROR;
ucnv_convertEx(cvout, cvin, &bufOutCur, bufOutEnd,
&bufInCur, bufInEnd,
bufPiv, &bufPivSource, &bufPivTarget, bufPivEnd,
FALSE, TRUE, &uerr);
if (!U_FAILURE(uerr)) {
/*
* "This was a triumph.
* I'm making a note here:
* HUGE SUCCESS.
* It's hard to overstate
* my satisfaction."
*/
break;
}
if (U_BUFFER_OVERFLOW_ERROR != uerr) {
// failure
goto exit;
}
/*
* Our guess at 'bufOutSize' was obviously wrong, just double it.
* We'll be reallocating bufOut, so will need to recompute bufOutCur
* based on bufOutOffset.
*/
bufOutSize *= 2;
bufOutOffset = bufOutCur - bufOut;
}
/*
* Set final size and return.
*/
DynBuf_SetSize(db, bufOutCur - bufOut);
result = TRUE;
exit:
if (cvin) {
ucnv_close(cvin);
}
if (cvout) {
ucnv_close(cvout);
}
return result;
}
/*
*-----------------------------------------------------------------------------
*
* CodeSet_GenericToGeneric --
*
* Non-db version of CodeSet_GenericToGenericDb.
*
* Results:
* TRUE on success, plus allocated string
* FALSE on failure
*
* Side effects:
* None
*
*-----------------------------------------------------------------------------
*/
Bool
CodeSet_GenericToGeneric(const char *codeIn, // IN
const char *bufIn, // IN
size_t sizeIn, // IN
const char *codeOut, // IN
unsigned int flags, // IN
char **bufOut, // OUT
size_t *sizeOut) // OUT
{
DynBuf db;
Bool ok;
DynBuf_Init(&db);
ok = CodeSet_GenericToGenericDb(codeIn, bufIn, sizeIn, codeOut, flags, &db);
return CodeSetDynBufFinalize(ok, &db, bufOut, sizeOut);
}
/*
* Generic remarks: here is my understanding of those terms as of 2001/12/27:
*
* BOM
* Byte-Order Mark
*
* BMP
* Basic Multilingual Plane. This plane comprises the first 2^16 code
* positions of ISO/IEC 10646's canonical code space
*
* UCS
* Universal Character Set. Encoding form specified by ISO/IEC 10646
*
* UCS-2
* Directly store all Unicode scalar value (code point) from U+0000 to
* U+FFFF on 2 bytes. Consequently, this representation can only hold
* characters in the BMP
*
* UCS-4
* Directly store a Unicode scalar value (code point) from U-00000000 to
* U-FFFFFFFF on 4 bytes
*
* UTF
* Abbreviation for Unicode (or UCS) Transformation Format
*
* UTF-8
* Unicode (or UCS) Transformation Format, 8-bit encoding form. UTF-8 is the
* Unicode Transformation Format that serializes a Unicode scalar value
* (code point) as a sequence of 1 to 6 bytes
*
* UTF-16
* UCS-2 + surrogate mechanism: allow to encode some non-BMP Unicode
* characters in a UCS-2 string, by using 2 2-byte units. See the Unicode
* standard, v2.0
*
* UTF-32
* Directly store all Unicode scalar value (code point) from U-00000000 to
* U-0010FFFF on 4 bytes. This is a subset of UCS-4
*
* --hpreg
*/
/*
*-----------------------------------------------------------------------------
*
* CodeSet_Utf8ToCurrent --
*
* Convert the content of a buffer (that uses the UTF-8 encoding) into
* another buffer (that uses the current encoding).
*
* Results:
* TRUE on success: '*bufOut' contains the allocated, NUL terminated buffer.
* If not NULL, '*sizeOut' contains the size of the buffer
* (excluding the NUL terminator)
* FALSE on failure
*
* Side effects:
* None
*
*-----------------------------------------------------------------------------
*/
Bool
CodeSet_Utf8ToCurrent(const char *bufIn, // IN
size_t sizeIn, // IN
char **bufOut, // OUT
size_t *sizeOut) // OUT
{
#if !defined(CURRENT_IS_UTF8)
DynBuf db;
Bool ok;
#endif
/*
* Fallback if necessary.
*/
if (dontUseIcu) {
return CodeSetOld_Utf8ToCurrent(bufIn, sizeIn, bufOut, sizeOut);
}
#if defined(CURRENT_IS_UTF8)
return CodeSetDuplicateUtf8Str(bufIn, sizeIn, bufOut, sizeOut);
#else
DynBuf_Init(&db);
ok = CodeSet_GenericToGenericDb("UTF-8", bufIn, sizeIn,
CodeSet_GetCurrentCodeSet(), 0, &db);
return CodeSetDynBufFinalize(ok, &db, bufOut, sizeOut);
#endif
}
/*
*-----------------------------------------------------------------------------
*
* CodeSet_CurrentToUtf8 --
*
* Convert the content of a buffer (that uses the current encoding) into
* another buffer (that uses the UTF-8 encoding).
*
* Results:
* TRUE on success: '*bufOut' contains the allocated, NUL terminated buffer.
* If not NULL, '*sizeOut' contains the size of the buffer
* (excluding the NUL terminator)
* FALSE on failure
*
* Side effects:
* None
*
*-----------------------------------------------------------------------------
*/
Bool
CodeSet_CurrentToUtf8(const char *bufIn, // IN
size_t sizeIn, // IN
char **bufOut, // OUT
size_t *sizeOut) // OUT
{
#if !defined(CURRENT_IS_UTF8)
DynBuf db;
Bool ok;
#endif
/*
* Fallback if necessary.
*/
if (dontUseIcu) {
return CodeSetOld_CurrentToUtf8(bufIn, sizeIn, bufOut, sizeOut);
}
#if defined(CURRENT_IS_UTF8)
return CodeSetDuplicateUtf8Str(bufIn, sizeIn, bufOut, sizeOut);
#else
DynBuf_Init(&db);
ok = CodeSet_GenericToGenericDb(CodeSet_GetCurrentCodeSet(), bufIn, sizeIn,
"UTF-8", 0, &db);
return CodeSetDynBufFinalize(ok, &db, bufOut, sizeOut);
#endif
}
/*
*-----------------------------------------------------------------------------
*
* CodeSet_Utf16leToUtf8Db --
*
* Append the content of a buffer (that uses the UTF-16LE encoding) to a
* DynBuf (that uses the UTF-8 encoding).
*
* Results:
* TRUE on success
* FALSE on failure
*
* Side effects:
* None
*
*-----------------------------------------------------------------------------
*/
Bool
CodeSet_Utf16leToUtf8Db(const char *bufIn, // IN
size_t sizeIn, // IN
DynBuf *db) // IN
{
/*
* Fallback if necessary.
*/
if (dontUseIcu) {
return CodeSetOld_Utf16leToUtf8Db(bufIn, sizeIn, db);
}
return CodeSet_GenericToGenericDb("UTF-16LE", bufIn, sizeIn, "UTF-8", 0,
db);
}
/*
*-----------------------------------------------------------------------------
*
* CodeSet_Utf16leToUtf8 --
*
* Convert the content of a buffer (that uses the UTF-16LE encoding) into
* another buffer (that uses the UTF-8 encoding).
*
* The operation is inversible (its inverse is CodeSet_Utf8ToUtf16le).
*
* Results:
* TRUE on success: '*bufOut' contains the allocated, NUL terminated buffer.
* If not NULL, '*sizeOut' contains the size of the buffer
* (excluding the NUL terminator)
* FALSE on failure
*
* Side effects:
* None
*
*-----------------------------------------------------------------------------
*/
Bool
CodeSet_Utf16leToUtf8(const char *bufIn, // IN
size_t sizeIn, // IN
char **bufOut, // OUT
size_t *sizeOut) // OUT
{
DynBuf db;
Bool ok;
/*
* Fallback if necessary.
*/
if (dontUseIcu) {
return CodeSetOld_Utf16leToUtf8(bufIn, sizeIn, bufOut, sizeOut);
}
DynBuf_Init(&db);
ok = CodeSet_Utf16leToUtf8Db(bufIn, sizeIn, &db);
return CodeSetDynBufFinalize(ok, &db, bufOut, sizeOut);
}
/*
*-----------------------------------------------------------------------------
*
* CodeSet_Utf8ToUtf16le --
*
* Convert the content of a buffer (that uses the UTF-8 encoding) into
* another buffer (that uses the UTF-16LE encoding).
*
* The operation is inversible (its inverse is CodeSet_Utf16leToUtf8).
*
* Results:
* TRUE on success: '*bufOut' contains the allocated, NUL terminated buffer.
* If not NULL, '*sizeOut' contains the size of the buffer
* (excluding the NUL terminator)
* FALSE on failure
*
* Side effects:
* None
*
*-----------------------------------------------------------------------------
*/
Bool
CodeSet_Utf8ToUtf16le(const char *bufIn, // IN
size_t sizeIn, // IN
char **bufOut, // OUT
size_t *sizeOut) // OUT
{
DynBuf db;
Bool ok;
/*
* Fallback if necessary.
*/
if (dontUseIcu) {
return CodeSetOld_Utf8ToUtf16le(bufIn, sizeIn, bufOut, sizeOut);
}
DynBuf_Init(&db);
ok = CodeSetUtf8ToUtf16le(bufIn, sizeIn, &db);
return CodeSetDynBufFinalize(ok, &db, bufOut, sizeOut);
}
/*
*-----------------------------------------------------------------------------
*
* CodeSet_Utf8FormDToUtf8FormC --
*
* Convert the content of a buffer (that uses the UTF-8 encoding)
* which is in normal form D (decomposed) into another buffer
* (that uses the UTF-8 encoding) and is normalized as
* precomposed (Normalization Form C).
*
* Results:
* TRUE on success: '*bufOut' contains a NUL terminated buffer.
* If not NULL, '*sizeOut' contains the size of the buffer
* (excluding the NUL terminator)
* FALSE on failure
*
* Side effects:
* '*bufOut' contains the allocated, NUL terminated buffer.
*
*-----------------------------------------------------------------------------
*/
Bool
CodeSet_Utf8FormDToUtf8FormC(const char *bufIn, // IN
size_t sizeIn, // IN
char **bufOut, // OUT
size_t *sizeOut) // OUT
{
/*
* Fallback if necessary.
*/
if (dontUseIcu) {
return CodeSetOld_Utf8FormDToUtf8FormC(bufIn, sizeIn, bufOut, sizeOut);
}
#if defined(__APPLE__)
{
DynBuf db;
Bool ok;
DynBuf_Init(&db);
ok = CodeSet_Utf8Normalize(bufIn, sizeIn, TRUE, &db);
return CodeSetDynBufFinalize(ok, &db, bufOut, sizeOut);
}
#else
NOT_IMPLEMENTED();
#endif
}
/*
*-----------------------------------------------------------------------------
*
* CodeSet_Utf8FormCToUtf8FormD --
*
* Convert the content of a buffer (that uses the UTF-8 encoding)
* which is in normal form C (precomposed) into another buffer
* (that uses the UTF-8 encoding) and is normalized as
* decomposed (Normalization Form D).
*
* Results:
* TRUE on success: '*bufOut' contains a NUL terminated buffer.
* If not NULL, '*sizeOut' contains the size of the buffer
* (excluding the NUL terminator)
* FALSE on failure
*
* Side effects:
* '*bufOut' contains the allocated, NUL terminated buffer.
*
*-----------------------------------------------------------------------------
*/
Bool
CodeSet_Utf8FormCToUtf8FormD(const char *bufIn, // IN
size_t sizeIn, // IN
char **bufOut, // OUT
size_t *sizeOut) // OUT
{
/*
* Fallback if necessary.
*/
if (dontUseIcu) {
return CodeSetOld_Utf8FormCToUtf8FormD(bufIn, sizeIn, bufOut, sizeOut);
}
#if defined(__APPLE__)
{
DynBuf db;
Bool ok;
DynBuf_Init(&db);
ok = CodeSet_Utf8Normalize(bufIn, sizeIn, FALSE, &db);
return CodeSetDynBufFinalize(ok, &db, bufOut, sizeOut);
}
#else
NOT_IMPLEMENTED();
#endif
}
/*
*-----------------------------------------------------------------------------
*
* CodeSet_CurrentToUtf16le --
*
* Convert the content of a buffer (that uses the current encoding) into
* another buffer (that uses the UTF-16LE encoding).
*
* Results:
* TRUE on success: '*bufOut' contains the allocated, NUL terminated buffer.
* If not NULL, '*sizeOut' contains the size of the buffer
* (excluding the NUL terminator)
* FALSE on failure
*
* Side effects:
* None
*
*-----------------------------------------------------------------------------
*/
Bool
CodeSet_CurrentToUtf16le(const char *bufIn, // IN
size_t sizeIn, // IN
char **bufOut, // OUT
size_t *sizeOut) // OUT
{
DynBuf db;
Bool ok;
/*
* Fallback if necessary.
*/
if (dontUseIcu) {
return CodeSetOld_CurrentToUtf16le(bufIn, sizeIn, bufOut, sizeOut);
}
DynBuf_Init(&db);
ok = CodeSet_GenericToGenericDb(CodeSet_GetCurrentCodeSet(), bufIn, sizeIn,
"UTF-16LE", 0, &db);
return CodeSetDynBufFinalize(ok, &db, bufOut, sizeOut);
}
/*
*-----------------------------------------------------------------------------
*
* CodeSet_Utf16leToCurrent --
*
* Convert the content of a buffer (that uses the UTF-16 little endian
* encoding) into another buffer (that uses the current encoding)
*
* Results:
* TRUE on success: '*bufOut' contains the allocated, NUL terminated buffer.
* If not NULL, '*sizeOut' contains the size of the buffer
* (excluding the NUL terminator)
* FALSE on failure
*
* Side effects:
* None
*
*-----------------------------------------------------------------------------
*/
Bool
CodeSet_Utf16leToCurrent(const char *bufIn, // IN
size_t sizeIn, // IN
char **bufOut, // OUT
size_t *sizeOut) // OUT
{
DynBuf db;
Bool ok;
/*
* Fallback if necessary.
*/
if (dontUseIcu) {
return CodeSetOld_Utf16leToCurrent(bufIn, sizeIn, bufOut, sizeOut);
}
DynBuf_Init(&db);
ok = CodeSet_GenericToGenericDb("UTF-16LE", bufIn, sizeIn,
CodeSet_GetCurrentCodeSet(), 0, &db);
return CodeSetDynBufFinalize(ok, &db, bufOut, sizeOut);
}
/*
*-----------------------------------------------------------------------------
*
* CodeSet_Utf16beToCurrent --
*
* Convert the content of a buffer (that uses the UTF-16 big endian
* encoding) into another buffer (that uses the current encoding)
*
* Results:
* TRUE on success: '*bufOut' contains the allocated, NUL terminated buffer.
* If not NULL, '*sizeOut' contains the size of the buffer
* (excluding the NUL terminator)
* FALSE on failure
*
* Side effects:
* None
*
*-----------------------------------------------------------------------------
*/
Bool
CodeSet_Utf16beToCurrent(const char *bufIn, // IN
size_t sizeIn, // IN
char **bufOut, // OUT
size_t *sizeOut) // OUT
{
DynBuf db;
Bool ok;
/*
* Fallback if necessary.
*/
if (dontUseIcu) {
return CodeSetOld_Utf16beToCurrent(bufIn, sizeIn, bufOut, sizeOut);
}
DynBuf_Init(&db);
ok = CodeSet_GenericToGenericDb("UTF-16BE", bufIn, sizeIn,
CodeSet_GetCurrentCodeSet(), 0, &db);
return CodeSetDynBufFinalize(ok, &db, bufOut, sizeOut);
}
/*
*-----------------------------------------------------------------------------
*
* CodeSet_IsEncodingSupported --
*
* Ask ICU if it supports the specific encoding.
*
* Results:
* TRUE on success
* FALSE on failure
*
* Side effects:
* None
*
*-----------------------------------------------------------------------------
*/
Bool
CodeSet_IsEncodingSupported(const char *name) // IN
{
UConverter *cv;
UErrorCode uerr;
/*
* Fallback if necessary.
*/
if (dontUseIcu) {
return CodeSetOld_IsEncodingSupported(name);
}
/*
* Try to open the encoding.
*/
uerr = U_ZERO_ERROR;
cv = ucnv_open(name, &uerr);
if (cv) {
ucnv_close(cv);
return TRUE;
}
return FALSE;
}
/*
*-----------------------------------------------------------------------------
*
* CodeSet_Validate --
*
* Validate a string in the given encoding.
*
* Results:
* TRUE if string is valid,
* FALSE otherwise.
*
* Side effects:
* None
*
*-----------------------------------------------------------------------------
*/
Bool
CodeSet_Validate(const char *buf, // IN: the string
size_t size, // IN: length of string
const char *code) // IN: encoding
{
UConverter *cv;
UErrorCode uerr;
// ucnv_toUChars takes 32-bit int size
ASSERT_NOT_IMPLEMENTED(size <= (size_t) MAX_INT32);
if (size == 0) {
return TRUE;
}
/*
* Fallback if necessary.
*/
if (dontUseIcu) {
return CodeSetOld_Validate(buf, size, code);
}
/*
* Calling ucnv_toUChars() this way is the idiom to precompute
* the length of the output. (See preflighting in the ICU User Guide.)
* So if the error is not U_BUFFER_OVERFLOW_ERROR, then the input
* is bad.
*/
uerr = U_ZERO_ERROR;
cv = ucnv_open(code, &uerr);
ASSERT_NOT_IMPLEMENTED(uerr == U_ZERO_ERROR);
ucnv_setToUCallBack(cv, UCNV_TO_U_CALLBACK_STOP, NULL, NULL, NULL, &uerr);
ASSERT_NOT_IMPLEMENTED(uerr == U_ZERO_ERROR);
ucnv_toUChars(cv, NULL, 0, buf, size, &uerr);
ucnv_close(cv);
return uerr == U_BUFFER_OVERFLOW_ERROR;
}
|