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
|
{*****************************************************************************}
{ }
{ Tnt Delphi Unicode Controls }
{ http://tnt.ccci.org/delphi_unicode_controls/ }
{ Version: 2.1.11 }
{ }
{ Copyright (c) 2002-2004, Troy Wolbrink (troy.wolbrink@ccci.org) }
{ }
{*****************************************************************************}
unit TntSysUtils;
{$INCLUDE TntCompilers.inc}
interface
uses
{$IFDEF COMPILER_6_UP} Types, {$ENDIF} SysUtils, Windows;
//---------------------------------------------------------------------------------------------
// Tnt - Types
//---------------------------------------------------------------------------------------------
{$IFNDEF COMPILER_6_UP} // Delphi 5 compatibility
type
TWideStringDynArray = array of WideString;
{$ENDIF}
// ......... introduced .........
type
// The user of the application did something plainly wrong.
ETntUserError = class(Exception);
// A general error occured. (ie. file didn't exist, server didn't return data, etc.)
ETntGeneralError = class(Exception);
// Like Assert(). An error occured that should never have happened, send me a bug report now!
ETntInternalError = class(Exception);
//---------------------------------------------------------------------------------------------
// Tnt - SysUtils
//---------------------------------------------------------------------------------------------
// ......... compatibility .........
{$IFNDEF COMPILER_6_UP} // Delphi 5 compatibility
resourcestring
SInvalidCurrency = '''%s'' is not a valid currency value';
const sLineBreak = #13#10;
const PathDelim = '\';
const DriveDelim = ':';
const PathSep = ';';
procedure RaiseLastOSError;
function WideFormat(const FormatStr: WideString; const Args: array of const): WideString;
function WideCompareStr(const W1, W2: WideString): Integer;
function WideSameStr(const W1, W2: WideString): Boolean;
function WideCompareText(const W1, W2: WideString): Integer;
function WideSameText(const W1, W2: WideString): Boolean;
function Supports(const Instance: TObject; const IID: TGUID): Boolean;
{$ENDIF}
// ......... SBCS and MBCS functions with WideString replacements in SysUtils.pas .........
{TNT-WARN CompareStr} {TNT-WARN AnsiCompareStr}
{TNT-WARN SameStr} {TNT-WARN AnsiSameStr}
{TNT-WARN SameText} {TNT-WARN AnsiSameText}
{TNT-WARN CompareText} {TNT-WARN AnsiCompareText}
{TNT-WARN UpperCase} {TNT-WARN AnsiUpperCase}
{TNT-WARN LowerCase} {TNT-WARN AnsiLowerCase}
{TNT-WARN AnsiPos} { --> Pos() supports WideString. }
{TNT-WARN FmtStr}
{TNT-WARN Format}
{TNT-WARN FormatBuf}
// ......... MBCS Byte Type Procs .........
{TNT-WARN ByteType}
{TNT-WARN StrByteType}
{TNT-WARN ByteToCharIndex}
{TNT-WARN ByteToCharLen}
{TNT-WARN CharToByteIndex}
{TNT-WARN CharToByteLen}
// ........ null-terminated string functions .........
{TNT-WARN StrEnd}
function StrEndW(Str: PWideChar): PWideChar;
{TNT-WARN StrLen}
function StrLenW(Str: PWideChar): Cardinal;
{TNT-WARN StrLCopy}
function StrLCopyW(Dest, Source: PWideChar; MaxLen: Cardinal): PWideChar;
{TNT-WARN StrCopy}
function StrCopyW(Dest, Source: PWideChar): PWideChar;
{TNT-WARN StrECopy}
function StrECopyW(Dest, Source: PWideChar): PWideChar;
{TNT-WARN StrPLCopy}
{TNT-WARN StrPLCopyW} // <-- accepts ansi string parameter
function StrPLCopyW{TNT-ALLOW StrPLCopyW}(Dest: PWideChar; const Source: AnsiString; MaxLen: Cardinal): PWideChar;
{TNT-WARN StrPCopy}
{TNT-WARN StrPCopyW} // < -- accepts ansi string parameter
function StrPCopyW{TNT-ALLOW StrPCopyW}(Dest: PWideChar; const Source: AnsiString): PWideChar;
{TNT-WARN StrLComp}
{TNT-WARN AnsiStrLComp}
function StrLCompW(Str1, Str2: PWideChar; MaxLen: Cardinal): Integer;
{TNT-WARN StrComp}
{TNT-WARN AnsiStrComp}
function StrCompW(Str1, Str2: PWideChar): Integer;
{TNT-WARN StrLIComp}
{TNT-WARN AnsiStrLIComp}
function StrLICompW(Str1, Str2: PWideChar; MaxLen: Cardinal): Integer;
{TNT-WARN StrIComp}
{TNT-WARN AnsiStrIComp}
function StrICompW(Str1, Str2: PWideChar): Integer;
{TNT-WARN StrLower}
{TNT-WARN AnsiStrLower}
function StrLowerW(Str: PWideChar): PWideChar;
{TNT-WARN StrUpper}
{TNT-WARN AnsiStrUpper}
function StrUpperW(Str: PWideChar): PWideChar;
{TNT-WARN StrPos}
{TNT-WARN AnsiStrPos}
function StrPosW(Str, SubStr: PWideChar): PWideChar;
{TNT-WARN StrScan}
{TNT-WARN AnsiStrScan}
function StrScanW(const Str: PWideChar; Chr: WideChar): PWideChar;
{TNT-WARN StrRScan}
{TNT-WARN AnsiStrRScan}
function StrRScanW(const Str: PWideChar; Chr: WideChar): PWideChar;
{TNT-WARN StrLCat}
function StrLCatW(Dest: PWideChar; const Source: PWideChar; MaxLen: Cardinal): PWideChar;
{TNT-WARN StrCat}
function StrCatW(Dest: PWideChar; const Source: PWideChar): PWideChar;
{TNT-WARN StrMove}
function StrMoveW(Dest: PWideChar; const Source: PWideChar; Count: Cardinal): PWideChar;
{TNT-WARN StrPas}
function StrPasW(const Str: PWideChar): WideString;
{TNT-WARN StrAlloc}
function StrAllocW(Size: Cardinal): PWideChar;
{TNT-WARN StrBufSize}
function StrBufSizeW(const Str: PWideChar): Cardinal;
{TNT-WARN StrNew}
function StrNewW(const Str: PWideChar): PWideChar;
{TNT-WARN StrDispose}
procedure StrDisposeW(Str: PWideChar);
// ........ string functions .........
{$IFDEF COMPILER_7_UP}
type
PFormatSettings= ^TFormatSettings;
{$ENDIF}
{$IFDEF COMPILER_6_UP}
{TNT-WARN WideFormatBuf} // SysUtils.WideFormatBuf doesn't correctly handle numeric specifiers.
function Tnt_WideFormatBuf(var Buffer; BufLen: Cardinal; const FormatStr;
FmtLen: Cardinal; const Args: array of const): Cardinal; {$IFDEF COMPILER_7_UP} overload; {$ENDIF}
{$ENDIF}
{$IFDEF COMPILER_7_UP}
function Tnt_WideFormatBuf(var Buffer; BufLen: Cardinal; const FormatStr;
FmtLen: Cardinal; const Args: array of const;
const FormatSettings: TFormatSettings): Cardinal; overload;
{$ENDIF}
{$IFDEF COMPILER_6_UP}
{TNT-WARN WideFmtStr} // SysUtils.WideFmtStr doesn't handle string lengths > 4096.
procedure Tnt_WideFmtStr(var Result: WideString; const FormatStr: WideString;
const Args: array of const); {$IFDEF COMPILER_7_UP} overload; {$ENDIF}
{$ENDIF}
{$IFDEF COMPILER_7_UP}
procedure Tnt_WideFmtStr(var Result: WideString; const FormatStr: WideString;
const Args: array of const; const FormatSettings: TFormatSettings); overload;
{$ENDIF}
{$IFDEF COMPILER_6_UP}
{----------------------------------------------------------------------------------------
Without the FormatSettings parameter, Tnt_WideFormat is *NOT* necessary...
TntSystem.InstallTntSystemUpdates([tsFixWideFormat]);
will fix WideFormat as well as WideFmtStr.
----------------------------------------------------------------------------------------}
function Tnt_WideFormat(const FormatStr: WideString; const Args: array of const): WideString; {$IFDEF COMPILER_7_UP} overload; {$ENDIF}
{$ENDIF}
{$IFDEF COMPILER_7_UP}
function Tnt_WideFormat(const FormatStr: WideString; const Args: array of const;
const FormatSettings: TFormatSettings): WideString; overload;
{$ENDIF}
{TNT-WARN WideUpperCase} // SysUtils.WideUpperCase is broken on Win9x.
function Tnt_WideUpperCase(const S: WideString): WideString;
{TNT-WARN WideLowerCase} // SysUtils.WideLowerCase is broken on Win9x.
function Tnt_WideLowerCase(const S: WideString): WideString;
{TNT-WARN AnsiLastChar}
{TNT-WARN AnsiStrLastChar}
function WideLastChar(W: WideString): WideChar;
{TNT-WARN StringReplace}
function WideStringReplace(const S, OldPattern, NewPattern: WideString;
Flags: TReplaceFlags; WholeWord: Boolean = False): WideString;
{TNT-WARN AdjustLineBreaks}
type TTntTextLineBreakStyle = (tlbsLF, tlbsCRLF, tlbsCR);
function TntAdjustLineBreaksLength(const S: WideString; Style: TTntTextLineBreakStyle = tlbsCRLF): Integer;
function TntAdjustLineBreaks(const S: WideString; Style: TTntTextLineBreakStyle = tlbsCRLF): WideString;
{TNT-WARN QuotedStr}
{TNT-WARN AnsiQuotedStr}
function WideQuotedStr(const S: WideString; Quote: WideChar = '"'): WideString;
{TNT-WARN AnsiExtractQuotedStr}
function WideExtractQuotedStr(var Src: PWideChar; Quote: WideChar = '"'): WideString;
{TNT-WARN AnsiDequotedStr}
function WideDequotedStr(const S: WideString; AQuote: WideChar): WideString;
{TNT-WARN WrapText}
function WideWrapText(const Line, BreakStr: WideString; const BreakChars: TSysCharSet;
MaxCol: Integer): WideString; overload;
function WideWrapText(const Line: WideString; MaxCol: Integer): WideString; overload;
// ........ filename manipulation .........
{TNT-WARN SameFileName} // doesn't apply to Unicode filenames, use WideSameText
{TNT-WARN AnsiCompareFileName} // doesn't apply to Unicode filenames, use WideCompareText
{TNT-WARN AnsiLowerCaseFileName} // doesn't apply to Unicode filenames, use WideLowerCase
{TNT-WARN AnsiUpperCaseFileName} // doesn't apply to Unicode filenames, use WideUpperCase
{TNT-WARN IncludeTrailingBackslash}
function WideIncludeTrailingBackslash(const S: WideString): WideString;
{TNT-WARN ExcludeTrailingBackslash}
function WideExcludeTrailingBackslash(const S: WideString): WideString;
{TNT-WARN IsDelimiter}
function WideIsDelimiter(const Delimiters, S: WideString; Index: Integer): Boolean;
{TNT-WARN IsPathDelimiter}
function WideIsPathDelimiter(const S: WideString; Index: Integer): Boolean;
{TNT-WARN LastDelimiter}
function WideLastDelimiter(const Delimiters, S: WideString): Integer;
{TNT-WARN ChangeFileExt}
function WideChangeFileExt(const FileName, Extension: WideString): WideString;
{TNT-WARN ExtractFilePath}
function WideExtractFilePath(const FileName: WideString): WideString;
{TNT-WARN ExtractFileDir}
function WideExtractFileDir(const FileName: WideString): WideString;
{TNT-WARN ExtractFileDrive}
function WideExtractFileDrive(const FileName: WideString): WideString;
{TNT-WARN ExtractFileName}
function WideExtractFileName(const FileName: WideString): WideString;
{TNT-WARN ExtractFileExt}
function WideExtractFileExt(const FileName: WideString): WideString;
{TNT-WARN ExtractRelativePath}
function WideExtractRelativePath(const BaseName, DestName: WideString): WideString;
// ........ file management routines .........
{TNT-WARN ExpandFileName}
function WideExpandFileName(const FileName: WideString): WideString;
{TNT-WARN ExtractShortPathName}
function WideExtractShortPathName(const FileName: WideString): WideString;
{TNT-WARN FileCreate}
function WideFileCreate(const FileName: WideString): Integer;
{TNT-WARN FileOpen}
function WideFileOpen(const FileName: WideString; Mode: LongWord): Integer;
{TNT-WARN FileAge}
function WideFileAge(const FileName: WideString): Integer;
{TNT-WARN DirectoryExists}
function WideDirectoryExists(const Name: WideString): Boolean;
{TNT-WARN FileExists}
function WideFileExists(const Name: WideString): Boolean;
{TNT-WARN FileGetAttr}
function WideFileGetAttr(const FileName: WideString): Cardinal;
{TNT-WARN FileSetAttr}
function WideFileSetAttr(const FileName: WideString; Attr: Integer): Boolean;
{TNT-WARN ForceDirectories}
function WideForceDirectories(Dir: WideString): Boolean;
{TNT-WARN FileSearch}
function WideFileSearch(const Name, DirList: WideString): WideString;
{TNT-WARN RenameFile}
function WideRenameFile(const OldName, NewName: WideString): Boolean;
{TNT-WARN DeleteFile}
function WideDeleteFile(const FileName: WideString): Boolean;
{TNT-WARN CopyFile}
function WideCopyFile(FromFile, ToFile: WideString; FailIfExists: Boolean): Boolean;
{TNT-WARN TSearchRec} // <-- FindFile - warning on TSearchRec is all that is necessary
type
TSearchRecW = record
Time: Integer;
Size: Int64;
Attr: Integer;
Name: WideString;
ExcludeAttr: Integer;
FindHandle: THandle;
FindData: TWin32FindDataW;
end;
function WideFindFirst(const Path: WideString; Attr: Integer; var F: TSearchRecW): Integer;
function WideFindNext(var F: TSearchRecW): Integer;
procedure WideFindClose(var F: TSearchRecW);
{TNT-WARN RemoveDir}
function WideRemoveDir(const Dir: WideString): Boolean;
{TNT-WARN SetCurrentDir}
function WideSetCurrentDir(const Dir: WideString): Boolean;
// ........ date/time functions .........
function ValidDateTimeStr(Str: WideString): Boolean;
function ValidDateStr(Str: WideString): Boolean;
function ValidTimeStr(Str: WideString): Boolean;
{TNT-WARN StrToDateTime}
function TntStrToDateTime(Str: WideString): TDateTime;
{TNT-WARN StrToDate}
function TntStrToDate(Str: WideString): TDateTime;
{TNT-WARN StrToTime}
function TntStrToTime(Str: WideString): TDateTime;
{TNT-WARN StrToDateTimeDef}
function TntStrToDateTimeDef(Str: WideString; Default: TDateTime): TDateTime;
{TNT-WARN StrToDateDef}
function TntStrToDateDef(Str: WideString; Default: TDateTime): TDateTime;
{TNT-WARN StrToTimeDef}
function TntStrToTimeDef(Str: WideString; Default: TDateTime): TDateTime;
{TNT-WARN CurrToStr}
{TNT-WARN CurrToStrF}
function TntCurrToStr(Value: Currency; lpFormat: PCurrencyFmtW = nil): WideString;
{TNT-WARN StrToCurr}
function TntStrToCurr(const S: WideString): Currency;
{TNT-WARN StrToCurrDef}
function ValidCurrencyStr(const S: WideString): Boolean;
function TntStrToCurrDef(const S: WideString; const Default: Currency): Currency;
function GetDefaultCurrencyFmt: TCurrencyFmtW;
// ........ misc functions .........
{TNT-WARN GetLocaleStr}
function WideGetLocaleStr(LocaleID: LCID; LocaleType: Integer; const Default: WideString): WideString;
// ......... introduced .........
const
CR = WideChar(#13);
LF = WideChar(#10);
CRLF = WideString(#13#10);
WideLineSeparator = WideChar($2028);
var
Win32PlatformIsUnicode: Boolean;
Win32PlatformIsXP: Boolean;
{$IFNDEF COMPILER_7_UP}
function CheckWin32Version(AMajor: Integer; AMinor: Integer = 0): Boolean;
{$ENDIF}
function WinCheckH(RetVal: Cardinal): Cardinal;
function WinCheckFileH(RetVal: Cardinal): Cardinal;
function WinCheckP(RetVal: Pointer): Pointer;
function WideGetModuleFileName(Instance: HModule): WideString;
function WideSafeLoadLibrary(const Filename: Widestring;
ErrorMode: UINT = SEM_NOOPENFILEERRORBOX): HMODULE;
function WideLoadPackage(const Name: Widestring): HMODULE;
function IsWideCharUpper(WC: WideChar): Boolean;
function IsWideCharLower(WC: WideChar): Boolean;
function IsWideCharDigit(WC: WideChar): Boolean;
function IsWideCharSpace(WC: WideChar): Boolean;
function IsWideCharPunct(WC: WideChar): Boolean;
function IsWideCharCntrl(WC: WideChar): Boolean;
function IsWideCharBlank(WC: WideChar): Boolean;
function IsWideCharXDigit(WC: WideChar): Boolean;
function IsWideCharAlpha(WC: WideChar): Boolean;
function IsWideCharAlphaNumeric(WC: WideChar): Boolean;
function WideTextPos(const SubStr, S: WideString): Integer;
function ExtractStringArrayStr(P: PWideChar): WideString;
function ExtractStringFromStringArray(var P: PWideChar; Separator: WideChar = #0): WideString;
function ExtractStringsFromStringArray(P: PWideChar; Separator: WideChar = #0): TWideStringDynArray;
function IsWideCharMappableToAnsi(const WC: WideChar): Boolean;
function IsWideStringMappableToAnsi(const WS: WideString): Boolean;
function IsRTF(const Value: WideString): Boolean;
function ENG_US_FloatToStr(Value: Extended): WideString;
function ENG_US_StrToFloat(const S: WideString): Extended;
//---------------------------------------------------------------------------------------------
// Tnt - Variants
//---------------------------------------------------------------------------------------------
// ......... compatibility .........
{$IFNDEF COMPILER_6_UP} // Delphi 5 compatibility
function VarToWideStr(const V: Variant): WideString;
function VarToWideStrDef(const V: Variant; const ADefault: WideString): WideString;
{$ENDIF}
// ........ Variants.pas has WideString versions of these functions .........
{TNT-WARN VarToStr}
{TNT-WARN VarToStrDef}
var
_SettingChangeTime: Cardinal;
implementation
uses
ActiveX, ComObj, Math, SysConst, Consts,
TntSystem, TntWindows, TntFormatStrUtils;
//---------------------------------------------------------------------------------------------
// Tnt - SysUtils
//---------------------------------------------------------------------------------------------
{$IFNDEF COMPILER_6_UP} // Delphi 5 compatibility
procedure RaiseLastOSError;
begin
RaiseLastWin32Error;
end;
function WideFormat(const FormatStr: WideString; const Args: array of const): WideString;
begin
Result := Format{TNT-ALLOW Format}(FormatStr, Args);
end;
function WideCompareStr(const W1, W2: WideString): Integer;
begin
Result := Tnt_CompareStringW(GetThreadLocale, 0,
PWideChar(W1), Length(W1), PWideChar(W2), Length(W2)) - 2;
end;
function WideSameStr(const W1, W2: WideString): Boolean;
begin
Result := WideCompareStr(W1, W2) = 0;
end;
function WideCompareText(const W1, W2: WideString): Integer;
begin
Result := Tnt_CompareStringW(GetThreadLocale, NORM_IGNORECASE,
PWideChar(W1), Length(W1), PWideChar(W2), Length(W2)) - 2;
end;
function WideSameText(const W1, W2: WideString): Boolean;
begin
Result := WideCompareText(W1, W2) = 0;
end;
function Supports(const Instance: TObject; const IID: TGUID): Boolean;
var
Temp: IUnknown;
begin
Result := Instance.GetInterface(IID, Temp);
end;
{$ENDIF}
function StrEndW(Str: PWideChar): PWideChar;
begin
// returns a pointer to the end of a null terminated string
Result := Str;
While Result^ <> #0 do
Inc(Result);
end;
function StrLenW(Str: PWideChar): Cardinal;
begin
Result := StrEndW(Str) - Str;
end;
function StrLCopyW(Dest, Source: PWideChar; MaxLen: Cardinal): PWideChar;
var
Count: Cardinal;
begin
// copies a specified maximum number of characters from Source to Dest
Result := Dest;
Count := 0;
While (Count < MaxLen) and (Source^ <> #0) do begin
Dest^ := Source^;
Inc(Source);
Inc(Dest);
Inc(Count);
end;
Dest^ := #0;
end;
function StrCopyW(Dest, Source: PWideChar): PWideChar;
begin
Result := StrLCopyW(Dest, Source, MaxInt);
end;
function StrECopyW(Dest, Source: PWideChar): PWideChar;
begin
Result := StrEndW(StrCopyW(Dest, Source));
end;
function StrPLCopyW{TNT-ALLOW StrPLCopyW}(Dest: PWideChar; const Source: AnsiString; MaxLen: Cardinal): PWideChar;
begin
Result := StrLCopyW(Dest, PWideChar(WideString(Source)), MaxLen);
end;
function StrPCopyW{TNT-ALLOW StrPCopyW}(Dest: PWideChar; const Source: AnsiString): PWideChar;
begin
Result := StrPLCopyW{TNT-ALLOW StrPLCopyW}(Dest, Source, MaxInt);
end;
function StrCompW_EX(Str1, Str2: PWideChar; MaxLen: Cardinal; dwCmpFlags: Cardinal): Integer;
var
Len1, Len2: Integer;
begin
if MaxLen = Cardinal(MaxInt) then begin
Len1 := -1;
Len2 := -1;
end else begin
Len1 := Min(StrLenW(Str1), MaxLen);
Len2 := Min(StrLenW(Str2), MaxLen);
end;
Result := Tnt_CompareStringW(GetThreadLocale, dwCmpFlags, Str1, Len1, Str2, Len2) - 2;
end;
function StrLCompW(Str1, Str2: PWideChar; MaxLen: Cardinal): Integer;
begin
Result := StrCompW_EX(Str1, Str2, MaxLen, 0);
end;
function StrCompW(Str1, Str2: PWideChar): Integer;
begin
Result := StrLCompW(Str1, Str2, MaxInt);
end;
function StrLICompW(Str1, Str2: PWideChar; MaxLen: Cardinal): Integer;
begin
Result := StrCompW_EX(Str1, Str2, MaxLen, NORM_IGNORECASE);
end;
function StrICompW(Str1, Str2: PWideChar): Integer;
begin
Result := StrLICompW(Str1, Str2, MaxInt);
end;
function StrLowerW(Str: PWideChar): PWideChar;
begin
Result := Str;
Tnt_CharLowerBuffW(Str, StrLenW(Str))
end;
function StrUpperW(Str: PWideChar): PWideChar;
begin
Result := Str;
Tnt_CharUpperBuffW(Str, StrLenW(Str))
end;
function StrPosW(Str, SubStr: PWideChar): PWideChar;
var
PSave: PWideChar;
P: PWideChar;
PSub: PWideChar;
begin
// returns a pointer to the first occurance of SubStr in Str
Result := nil;
if (Str <> nil) and (Str^ <> #0) and (SubStr <> nil) and (SubStr^ <> #0) then begin
P := Str;
While P^ <> #0 do begin
if P^ = SubStr^ then begin
// investigate possibility here
PSave := P;
PSub := SubStr;
While (P^ = PSub^) do begin
Inc(P);
Inc(PSub);
if (PSub^ = #0) then begin
Result := PSave;
exit; // found a match
end;
if (P^ = #0) then
exit; // no match, hit end of string
end;
P := PSave;
end;
Inc(P);
end;
end;
end;
function StrScanW(const Str: PWideChar; Chr: WideChar): PWideChar;
begin
Result := Str;
while Result^ <> Chr do
begin
if Result^ = #0 then
begin
Result := nil;
Exit;
end;
Inc(Result);
end;
end;
function StrRScanW(const Str: PWideChar; Chr: WideChar): PWideChar;
var
MostRecentFound: PWideChar;
begin
if Chr = #0 then
Result := StrEndW(Str)
else
begin
Result := nil;
MostRecentFound := Str;
while True do
begin
while MostRecentFound^ <> Chr do
begin
if MostRecentFound^ = #0 then
Exit;
Inc(MostRecentFound);
end;
Result := MostRecentFound;
Inc(MostRecentFound);
end;
end;
end;
function StrLCatW(Dest: PWideChar; const Source: PWideChar; MaxLen: Cardinal): PWideChar;
begin
Result := Dest;
StrLCopyW(StrEndW(Dest), Source, MaxLen - StrLenW(Dest));
end;
function StrCatW(Dest: PWideChar; const Source: PWideChar): PWideChar;
begin
Result := Dest;
StrCopyW(StrEndW(Dest), Source);
end;
function StrMoveW(Dest: PWideChar; const Source: PWideChar; Count: Cardinal): PWideChar;
var
Length: Integer;
begin
Result := Dest;
Length := Count * SizeOf(WideChar);
Move(Source^, Dest^, Length);
end;
function StrPasW(const Str: PWideChar): WideString;
begin
Result := Str;
end;
function StrAllocW(Size: Cardinal): PWideChar;
begin
Size := SizeOf(Cardinal) + (Size * SizeOf(WideChar));
GetMem(Result, Size);
PCardinal(Result)^ := Size;
Inc(PAnsiChar(Result), SizeOf(Cardinal));
end;
function StrBufSizeW(const Str: PWideChar): Cardinal;
var
P: PWideChar;
begin
P := Str;
Dec(PAnsiChar(P), SizeOf(Cardinal));
Result := PCardinal(P)^ - SizeOf(Cardinal);
Result := Result div SizeOf(WideChar);
end;
function StrNewW(const Str: PWideChar): PWideChar;
var
Size: Cardinal;
begin
if Str = nil then Result := nil else
begin
Size := StrLenW(Str) + 1;
Result := StrMoveW(StrAllocW(Size), Str, Size);
end;
end;
procedure StrDisposeW(Str: PWideChar);
begin
if Str <> nil then
begin
Dec(PAnsiChar(Str), SizeOf(Cardinal));
FreeMem(Str, Cardinal(Pointer(Str)^));
end;
end;
{$IFDEF COMPILER_6_UP}
function _Tnt_WideFormatBuf(var Buffer; BufLen: Cardinal; const FormatStr;
FmtLen: Cardinal; const Args: array of const
{$IFDEF COMPILER_7_UP}; const FormatSettings: PFormatSettings {$ENDIF}): Cardinal;
var
OldFormat: WideString;
NewFormat: WideString;
begin
SetString(OldFormat, PWideChar(@FormatStr), FmtLen);
{ The reason for this is that WideFormat doesn't correctly format floating point specifiers.
See QC#4254. }
NewFormat := ReplaceFloatingArgumentsInFormatString(OldFormat, Args{$IFDEF COMPILER_7_UP}, FormatSettings{$ENDIF});
{$IFDEF COMPILER_7_UP}
if FormatSettings <> nil then
Result := WideFormatBuf{TNT-ALLOW WideFormatBuf}(Buffer, BufLen, Pointer(NewFormat)^,
Length(NewFormat), Args, FormatSettings^)
else
{$ENDIF}
Result := WideFormatBuf{TNT-ALLOW WideFormatBuf}(Buffer, BufLen, Pointer(NewFormat)^,
Length(NewFormat), Args);
end;
function Tnt_WideFormatBuf(var Buffer; BufLen: Cardinal; const FormatStr;
FmtLen: Cardinal; const Args: array of const): Cardinal;
begin
Result := _Tnt_WideFormatBuf(Buffer, BufLen, FormatStr, FmtLen, Args{$IFDEF COMPILER_7_UP}, nil{$ENDIF});
end;
{$ENDIF}
{$IFDEF COMPILER_7_UP}
function Tnt_WideFormatBuf(var Buffer; BufLen: Cardinal; const FormatStr;
FmtLen: Cardinal; const Args: array of const; const FormatSettings: TFormatSettings): Cardinal;
begin
Result := _Tnt_WideFormatBuf(Buffer, BufLen, FormatStr, FmtLen, Args, @FormatSettings);
end;
{$ENDIF}
{$IFDEF COMPILER_6_UP}
procedure _Tnt_WideFmtStr(var Result: WideString; const FormatStr: WideString;
const Args: array of const{$IFDEF COMPILER_7_UP}; const FormatSettings: PFormatSettings{$ENDIF});
var
Len, BufLen: Integer;
Buffer: array[0..4095] of WideChar;
begin
BufLen := Length(Buffer); // Fixes buffer overwrite issue. (See QC #4703, #4744)
if Length(FormatStr) < (Length(Buffer) - (Length(Buffer) div 4)) then
Len := _Tnt_WideFormatBuf(Buffer, Length(Buffer) - 1, Pointer(FormatStr)^,
Length(FormatStr), Args{$IFDEF COMPILER_7_UP}, FormatSettings{$ENDIF})
else
begin
BufLen := Length(FormatStr);
Len := BufLen;
end;
if Len >= BufLen - 1 then
begin
while Len >= BufLen - 1 do
begin
Inc(BufLen, BufLen);
Result := ''; // prevent copying of existing data, for speed
SetLength(Result, BufLen);
Len := _Tnt_WideFormatBuf(Pointer(Result)^, BufLen - 1, Pointer(FormatStr)^,
Length(FormatStr), Args{$IFDEF COMPILER_7_UP}, FormatSettings{$ENDIF});
end;
SetLength(Result, Len);
end
else
SetString(Result, Buffer, Len);
end;
procedure Tnt_WideFmtStr(var Result: WideString; const FormatStr: WideString;
const Args: array of const);
begin
_Tnt_WideFmtStr(Result, FormatStr, Args{$IFDEF COMPILER_7_UP}, nil{$ENDIF});
end;
{$ENDIF}
{$IFDEF COMPILER_7_UP}
procedure Tnt_WideFmtStr(var Result: WideString; const FormatStr: WideString;
const Args: array of const; const FormatSettings: TFormatSettings);
begin
_Tnt_WideFmtStr(Result, FormatStr, Args, @FormatSettings);
end;
{$ENDIF}
{$IFDEF COMPILER_6_UP}
{----------------------------------------------------------------------------------------
Without the FormatSettings parameter, Tnt_WideFormat is *NOT* necessary...
TntSystem.InstallTntSystemUpdates([tsFixWideFormat]);
will fix WideFormat as well as WideFmtStr.
----------------------------------------------------------------------------------------}
function Tnt_WideFormat(const FormatStr: WideString; const Args: array of const): WideString;
begin
Tnt_WideFmtStr(Result, FormatStr, Args);
end;
{$ENDIF}
{$IFDEF COMPILER_7_UP}
function Tnt_WideFormat(const FormatStr: WideString; const Args: array of const;
const FormatSettings: TFormatSettings): WideString;
begin
Tnt_WideFmtStr(Result, FormatStr, Args, FormatSettings);
end;
{$ENDIF}
function Tnt_WideUpperCase(const S: WideString): WideString;
begin
{ SysUtils.WideUpperCase is broken for Win9x. }
Result := S;
if Length(Result) > 0 then
Tnt_CharUpperBuffW(PWideChar(Result), Length(Result));
end;
function Tnt_WideLowerCase(const S: WideString): WideString;
begin
{ SysUtils.WideLowerCase is broken for Win9x. }
Result := S;
if Length(Result) > 0 then
Tnt_CharLowerBuffW(PWideChar(Result), Length(Result));
end;
function WideLastChar(W: WideString): WideChar;
begin
if Length(W) = 0 then
Result := #0
else
Result := W[Length(W)];
end;
function WideStringReplace(const S, OldPattern, NewPattern: WideString;
Flags: TReplaceFlags; WholeWord: Boolean = False): WideString;
function IsWordSeparator(WC: WideChar): Boolean;
begin
Result := (WC = WideChar(#0))
or IsWideCharSpace(WC)
or IsWideCharPunct(WC);
end;
var
SearchStr, Patt, NewStr: WideString;
Offset: Integer;
PrevChar, NextChar: WideChar;
begin
if rfIgnoreCase in Flags then
begin
SearchStr := Tnt_WideUpperCase(S);
Patt := Tnt_WideUpperCase(OldPattern);
end else
begin
SearchStr := S;
Patt := OldPattern;
end;
NewStr := S;
Result := '';
while SearchStr <> '' do
begin
Offset := Pos(Patt, SearchStr);
if Offset = 0 then
begin
Result := Result + NewStr;
Break;
end; // done
if (WholeWord) then
begin
if (Offset = 1) then
PrevChar := WideLastChar(Result)
else
PrevChar := NewStr[Offset - 1];
if Offset + Length(OldPattern) <= Length(NewStr) then
NextChar := NewStr[Offset + Length(OldPattern)]
else
NextChar := WideChar(#0);
if (not IsWordSeparator(PrevChar))
or (not IsWordSeparator(NextChar)) then
begin
Result := Result + Copy(NewStr, 1, Offset + Length(OldPattern) - 1);
NewStr := Copy(NewStr, Offset + Length(OldPattern), MaxInt);
SearchStr := Copy(SearchStr, Offset + Length(Patt), MaxInt);
continue;
end;
end;
Result := Result + Copy(NewStr, 1, Offset - 1) + NewPattern;
NewStr := Copy(NewStr, Offset + Length(OldPattern), MaxInt);
if not (rfReplaceAll in Flags) then
begin
Result := Result + NewStr;
Break;
end;
SearchStr := Copy(SearchStr, Offset + Length(Patt), MaxInt);
end;
end;
function TntAdjustLineBreaksLength(const S: WideString; Style: TTntTextLineBreakStyle = tlbsCRLF): Integer;
var
Source, SourceEnd: PWideChar;
begin
Source := Pointer(S);
SourceEnd := Source + Length(S);
Result := Length(S);
while Source < SourceEnd do
begin
case Source^ of
#10, WideLineSeparator:
if Style = tlbsCRLF then
Inc(Result);
#13:
if Style = tlbsCRLF then
if Source[1] = #10 then
Inc(Source)
else
Inc(Result)
else
if Source[1] = #10 then
Dec(Result);
end;
Inc(Source);
end;
end;
function TntAdjustLineBreaks(const S: WideString; Style: TTntTextLineBreakStyle = tlbsCRLF): WideString;
var
Source, SourceEnd, Dest: PWideChar;
DestLen: Integer;
begin
Source := Pointer(S);
SourceEnd := Source + Length(S);
DestLen := TntAdjustLineBreaksLength(S, Style);
SetString(Result, nil, DestLen);
Dest := Pointer(Result);
while Source < SourceEnd do begin
case Source^ of
#10, WideLineSeparator:
begin
if Style in [tlbsCRLF, tlbsCR] then
begin
Dest^ := #13;
Inc(Dest);
end;
if Style in [tlbsCRLF, tlbsLF] then
begin
Dest^ := #10;
Inc(Dest);
end;
Inc(Source);
end;
#13:
begin
if Style in [tlbsCRLF, tlbsCR] then
begin
Dest^ := #13;
Inc(Dest);
end;
if Style in [tlbsCRLF, tlbsLF] then
begin
Dest^ := #10;
Inc(Dest);
end;
Inc(Source);
if Source^ = #10 then Inc(Source);
end;
else
Dest^ := Source^;
Inc(Dest);
Inc(Source);
end;
end;
end;
function WideQuotedStr(const S: WideString; Quote: WideChar = '"'): WideString;
var
P, Src,
Dest: PWideChar;
AddCount: Integer;
begin
AddCount := 0;
P := StrScanW(PWideChar(S), Quote);
while (P <> nil) do
begin
Inc(P);
Inc(AddCount);
P := StrScanW(P, Quote);
end;
if AddCount = 0 then
Result := Quote + S + Quote
else
begin
SetLength(Result, Length(S) + AddCount + 2);
Dest := PWideChar(Result);
Dest^ := Quote;
Inc(Dest);
Src := PWideChar(S);
P := StrScanW(Src, Quote);
repeat
Inc(P);
Move(Src^, Dest^, 2 * (P - Src));
Inc(Dest, P - Src);
Dest^ := Quote;
Inc(Dest);
Src := P;
P := StrScanW(Src, Quote);
until P = nil;
P := StrEndW(Src);
Move(Src^, Dest^, 2 * (P - Src));
Inc(Dest, P - Src);
Dest^ := Quote;
end;
end;
function WideExtractQuotedStr(var Src: PWideChar; Quote: WideChar = '"'): WideString;
var
P, Dest: PWideChar;
DropCount: Integer;
begin
Result := '';
if (Src = nil) or (Src^ <> Quote) then
Exit;
Inc(Src);
DropCount := 1;
P := Src;
Src := StrScanW(Src, Quote);
while Src <> nil do // count adjacent pairs of quote chars
begin
Inc(Src);
if Src^ <> Quote then
Break;
Inc(Src);
Inc(DropCount);
Src := StrScanW(Src, Quote);
end;
if Src = nil then
Src := StrEndW(P);
if (Src - P) <= 1 then
Exit;
if DropCount = 1 then
SetString(Result, P, Src - P - 1)
else
begin
SetLength(Result, Src - P - DropCount);
Dest := PWideChar(Result);
Src := StrScanW(P, Quote);
while Src <> nil do
begin
Inc(Src);
if Src^ <> Quote then
Break;
Move(P^, Dest^, 2 * (Src - P));
Inc(Dest, Src - P);
Inc(Src);
P := Src;
Src := StrScanW(Src, Quote);
end;
if Src = nil then
Src := StrEndW(P);
Move(P^, Dest^, 2 * (Src - P - 1));
end;
end;
function WideDequotedStr(const S: WideString; AQuote: WideChar): WideString;
var
LText : PWideChar;
begin
LText := PWideChar(S);
Result := WideExtractQuotedStr(LText, AQuote);
if Result = '' then
Result := S;
end;
function WideWrapText(const Line, BreakStr: WideString; const BreakChars: TSysCharSet;
MaxCol: Integer): WideString;
function WideCharIn(C: WideChar; SysCharSet: TSysCharSet): Boolean;
begin
Result := (C <= High(AnsiChar)) and (AnsiChar(C) in SysCharSet);
end;
const
QuoteChars = ['''', '"'];
var
Col, Pos: Integer;
LinePos, LineLen: Integer;
BreakLen, BreakPos: Integer;
QuoteChar, CurChar: WideChar;
ExistingBreak: Boolean;
begin
Col := 1;
Pos := 1;
LinePos := 1;
BreakPos := 0;
QuoteChar := ' ';
ExistingBreak := False;
LineLen := Length(Line);
BreakLen := Length(BreakStr);
Result := '';
while Pos <= LineLen do
begin
CurChar := Line[Pos];
if CurChar = BreakStr[1] then
begin
if QuoteChar = ' ' then
begin
ExistingBreak := WideSameText(BreakStr, Copy(Line, Pos, BreakLen));
if ExistingBreak then
begin
Inc(Pos, BreakLen-1);
BreakPos := Pos;
end;
end
end
else if WideCharIn(CurChar, BreakChars) then
begin
if QuoteChar = ' ' then BreakPos := Pos
end
else if WideCharIn(CurChar, QuoteChars) then
begin
if CurChar = QuoteChar then
QuoteChar := ' '
else if QuoteChar = ' ' then
QuoteChar := CurChar;
end;
Inc(Pos);
Inc(Col);
if not (WideCharIn(QuoteChar, QuoteChars)) and (ExistingBreak or
((Col > MaxCol) and (BreakPos > LinePos))) then
begin
Col := Pos - BreakPos;
Result := Result + Copy(Line, LinePos, BreakPos - LinePos + 1);
if not (WideCharIn(CurChar, QuoteChars)) then
while Pos <= LineLen do
begin
if WideCharIn(Line[Pos], BreakChars) then
Inc(Pos)
else if Copy(Line, Pos, Length(sLineBreak)) = sLineBreak then
Inc(Pos, Length(sLineBreak))
else
break;
end;
if not ExistingBreak and (Pos < LineLen) then
Result := Result + BreakStr;
Inc(BreakPos);
LinePos := BreakPos;
ExistingBreak := False;
end;
end;
Result := Result + Copy(Line, LinePos, MaxInt);
end;
function WideWrapText(const Line: WideString; MaxCol: Integer): WideString;
begin
Result := WideWrapText(Line, sLineBreak, [' ', '-', #9], MaxCol); { do not localize }
end;
function WideIncludeTrailingBackslash(const S: WideString): WideString;
begin
Result := S;
if not WideIsPathDelimiter(Result, Length(Result)) then Result := Result + PathDelim;
end;
function WideExcludeTrailingBackslash(const S: WideString): WideString;
begin
Result := S;
if WideIsPathDelimiter(Result, Length(Result)) then
SetLength(Result, Length(Result)-1);
end;
function WideIsDelimiter(const Delimiters, S: WideString; Index: Integer): Boolean;
begin
Result := False;
if (Index <= 0) or (Index > Length(S)) then exit;
Result := StrScanW(PWideChar(Delimiters), S[Index]) <> nil;
end;
function WideIsPathDelimiter(const S: WideString; Index: Integer): Boolean;
begin
Result := (Index > 0) and (Index <= Length(S)) and (S[Index] = PathDelim);
end;
function WideLastDelimiter(const Delimiters, S: WideString): Integer;
var
P: PWideChar;
begin
Result := Length(S);
P := PWideChar(Delimiters);
while Result > 0 do
begin
if (S[Result] <> #0) and (StrScanW(P, S[Result]) <> nil) then
Exit;
Dec(Result);
end;
end;
function WideChangeFileExt(const FileName, Extension: WideString): WideString;
var
I: Integer;
begin
I := WideLastDelimiter('.\:',Filename);
if (I = 0) or (FileName[I] <> '.') then I := MaxInt;
Result := Copy(FileName, 1, I - 1) + Extension;
end;
function WideExtractFilePath(const FileName: WideString): WideString;
var
I: Integer;
begin
I := WideLastDelimiter('\:', FileName);
Result := Copy(FileName, 1, I);
end;
function WideExtractFileDir(const FileName: WideString): WideString;
var
I: Integer;
begin
I := WideLastDelimiter(DriveDelim + PathDelim,Filename);
if (I > 1) and (FileName[I] = PathDelim) and
(not (FileName[I - 1] in [WideChar(PathDelim), WideChar(DriveDelim)])) then Dec(I);
Result := Copy(FileName, 1, I);
end;
function WideExtractFileDrive(const FileName: WideString): WideString;
var
I, J: Integer;
begin
if (Length(FileName) >= 2) and (FileName[2] = DriveDelim) then
Result := Copy(FileName, 1, 2)
else if (Length(FileName) >= 2) and (FileName[1] = PathDelim) and
(FileName[2] = PathDelim) then
begin
J := 0;
I := 3;
While (I < Length(FileName)) and (J < 2) do
begin
if FileName[I] = PathDelim then Inc(J);
if J < 2 then Inc(I);
end;
if FileName[I] = PathDelim then Dec(I);
Result := Copy(FileName, 1, I);
end else Result := '';
end;
function WideExtractFileName(const FileName: WideString): WideString;
var
I: Integer;
begin
I := WideLastDelimiter('\:', FileName);
Result := Copy(FileName, I + 1, MaxInt);
end;
function WideExtractFileExt(const FileName: WideString): WideString;
var
I: Integer;
begin
I := WideLastDelimiter('.\:', FileName);
if (I > 0) and (FileName[I] = '.') then
Result := Copy(FileName, I, MaxInt) else
Result := '';
end;
function WideExtractRelativePath(const BaseName, DestName: WideString): WideString;
var
BasePath, DestPath: WideString;
BaseLead, DestLead: PWideChar;
BasePtr, DestPtr: PWideChar;
function WideExtractFilePathNoDrive(const FileName: WideString): WideString;
begin
Result := WideExtractFilePath(FileName);
Delete(Result, 1, Length(WideExtractFileDrive(FileName)));
end;
function Next(var Lead: PWideChar): PWideChar;
begin
Result := Lead;
if Result = nil then Exit;
Lead := StrScanW(Lead, PathDelim);
if Lead <> nil then
begin
Lead^ := #0;
Inc(Lead);
end;
end;
begin
if WideSameText(WideExtractFileDrive(BaseName), WideExtractFileDrive(DestName)) then
begin
BasePath := WideExtractFilePathNoDrive(BaseName);
DestPath := WideExtractFilePathNoDrive(DestName);
BaseLead := Pointer(BasePath);
BasePtr := Next(BaseLead);
DestLead := Pointer(DestPath);
DestPtr := Next(DestLead);
while (BasePtr <> nil) and (DestPtr <> nil) and WideSameText(BasePtr, DestPtr) do
begin
BasePtr := Next(BaseLead);
DestPtr := Next(DestLead);
end;
Result := '';
while BaseLead <> nil do
begin
Result := Result + '..' + PathDelim; { Do not localize }
Next(BaseLead);
end;
if (DestPtr <> nil) and (DestPtr^ <> #0) then
Result := Result + DestPtr + PathDelim;
if DestLead <> nil then
Result := Result + DestLead; // destlead already has a trailing backslash
Result := Result + WideExtractFileName(DestName);
end
else
Result := DestName;
end;
function WideExpandFileName(const FileName: WideString): WideString;
var
FName: PWideChar;
Buffer: array[0..MAX_PATH - 1] of WideChar;
begin
SetString(Result, Buffer, Tnt_GetFullPathNameW(PWideChar(FileName), MAX_PATH, Buffer, FName));
end;
function WideExtractShortPathName(const FileName: WideString): WideString;
var
Buffer: array[0..MAX_PATH - 1] of WideChar;
begin
SetString(Result, Buffer, Tnt_GetShortPathNameW(PWideChar(FileName), Buffer, MAX_PATH));
end;
function WideFileCreate(const FileName: WideString): Integer;
begin
Result := Integer(Tnt_CreateFileW(PWideChar(FileName), GENERIC_READ or GENERIC_WRITE,
0, nil, CREATE_ALWAYS, FILE_ATTRIBUTE_NORMAL, 0))
end;
function WideFileOpen(const FileName: WideString; Mode: LongWord): Integer;
const
AccessMode: array[0..2] of LongWord = (
GENERIC_READ,
GENERIC_WRITE,
GENERIC_READ or GENERIC_WRITE);
ShareMode: array[0..4] of LongWord = (
0,
0,
FILE_SHARE_READ,
FILE_SHARE_WRITE,
FILE_SHARE_READ or FILE_SHARE_WRITE);
begin
Result := Integer(Tnt_CreateFileW(PWideChar(FileName), AccessMode[Mode and 3],
ShareMode[(Mode and $F0) shr 4], nil, OPEN_EXISTING,
FILE_ATTRIBUTE_NORMAL, 0));
end;
function WideFileAge(const FileName: WideString): Integer;
var
Handle: THandle;
FindData: TWin32FindDataW;
LocalFileTime: TFileTime;
begin
Handle := Tnt_FindFirstFileW(PWideChar(FileName), FindData);
if Handle <> INVALID_HANDLE_VALUE then
begin
Windows.FindClose(Handle);
if (FindData.dwFileAttributes and FILE_ATTRIBUTE_DIRECTORY) = 0 then
begin
FileTimeToLocalFileTime(FindData.ftLastWriteTime, LocalFileTime);
if FileTimeToDosDateTime(LocalFileTime, LongRec(Result).Hi,
LongRec(Result).Lo) then Exit;
end;
end;
Result := -1;
end;
function WideDirectoryExists(const Name: WideString): Boolean;
var
Code: Cardinal;
begin
Code := WideFileGetAttr(Name);
Result := (Code <> INVALID_FILE_ATTRIBUTES) and (FILE_ATTRIBUTE_DIRECTORY and Code <> 0);
end;
function WideFileExists(const Name: WideString): Boolean;
var
Code: Cardinal;
begin
Code := WideFileGetAttr(Name);
Result := (Code <> INVALID_FILE_ATTRIBUTES) and ((FILE_ATTRIBUTE_DIRECTORY and Code) = 0);
end;
function WideFileGetAttr(const FileName: WideString): Cardinal;
begin
Result := Tnt_GetFileAttributesW(PWideChar(FileName));
end;
function WideFileSetAttr(const FileName: WideString; Attr: Integer): Boolean;
begin
Result := Tnt_SetFileAttributesW(PWideChar(FileName), Attr)
end;
function WideForceDirectories(Dir: WideString): Boolean;
begin
Result := True;
if Length(Dir) = 0 then
raise ETntGeneralError.Create(SCannotCreateDir);
Dir := WideExcludeTrailingBackslash(Dir);
if (Length(Dir) < 3) or WideDirectoryExists(Dir)
or (WideExtractFilePath(Dir) = Dir) then Exit; // avoid 'xyz:\' problem.
Result := WideForceDirectories(WideExtractFilePath(Dir));
if Result then
Result := Tnt_CreateDirectoryW(PWideChar(Dir), nil)
end;
function WideFileSearch(const Name, DirList: WideString): WideString;
var
I, P, L: Integer;
C: WideChar;
begin
Result := Name;
P := 1;
L := Length(DirList);
while True do
begin
if WideFileExists(Result) then Exit;
while (P <= L) and (DirList[P] = PathSep) do Inc(P);
if P > L then Break;
I := P;
while (P <= L) and (DirList[P] <> PathSep) do
Inc(P);
Result := Copy(DirList, I, P - I);
C := WideLastChar(Result);
if (C <> DriveDelim) and (C <> PathDelim) then
Result := Result + PathDelim;
Result := Result + Name;
end;
Result := '';
end;
function WideRenameFile(const OldName, NewName: WideString): Boolean;
begin
Result := Tnt_MoveFileW(PWideChar(OldName), PWideChar(NewName))
end;
function WideDeleteFile(const FileName: WideString): Boolean;
begin
Result := Tnt_DeleteFileW(PWideChar(FileName))
end;
function WideCopyFile(FromFile, ToFile: WideString; FailIfExists: Boolean): Boolean;
begin
Result := Tnt_CopyFileW(PWideChar(FromFile), PWideChar(ToFile), FailIfExists)
end;
function _WideFindMatchingFile(var F: TSearchRecW): Integer;
var
LocalFileTime: TFileTime;
begin
with F do
begin
while FindData.dwFileAttributes and ExcludeAttr <> 0 do
if not Tnt_FindNextFileW(FindHandle, FindData) then
begin
Result := GetLastError;
Exit;
end;
FileTimeToLocalFileTime(FindData.ftLastWriteTime, LocalFileTime);
FileTimeToDosDateTime(LocalFileTime, LongRec(Time).Hi, LongRec(Time).Lo);
Size := (Int64(FindData.nFileSizeHigh) shl 32) + FindData.nFileSizeLow;
Attr := FindData.dwFileAttributes;
Name := FindData.cFileName;
end;
Result := 0;
end;
function WideFindFirst(const Path: WideString; Attr: Integer; var F: TSearchRecW): Integer;
const
faSpecial = faHidden or faSysFile {$IFNDEF COMPILER_9_UP} or faVolumeID {$ENDIF} or faDirectory;
begin
F.ExcludeAttr := not Attr and faSpecial;
F.FindHandle := Tnt_FindFirstFileW(PWideChar(Path), F.FindData);
if F.FindHandle <> INVALID_HANDLE_VALUE then
begin
Result := _WideFindMatchingFile(F);
if Result <> 0 then WideFindClose(F);
end else
Result := GetLastError;
end;
function WideFindNext(var F: TSearchRecW): Integer;
begin
if Tnt_FindNextFileW(F.FindHandle, F.FindData) then
Result := _WideFindMatchingFile(F) else
Result := GetLastError;
end;
procedure WideFindClose(var F: TSearchRecW);
begin
if F.FindHandle <> INVALID_HANDLE_VALUE then
begin
Windows.FindClose(F.FindHandle);
F.FindHandle := INVALID_HANDLE_VALUE;
end;
end;
function WideRemoveDir(const Dir: WideString): Boolean;
begin
Result := Tnt_RemoveDirectoryW(PWideChar(Dir));
end;
function WideSetCurrentDir(const Dir: WideString): Boolean;
begin
Result := Tnt_SetCurrentDirectoryW(PWideChar(Dir));
end;
function _ValidDateTimeStrEx(Str: WideString; Flags: Integer): Boolean;
var
TheDateTime: Double;
begin
Result := Succeeded(VarDateFromStr(Str, GetThreadLocale, Flags, TheDateTime));
end;
function ValidDateTimeStr(Str: WideString): Boolean;
begin
Result := _ValidDateTimeStrEx(Str, 0);
end;
function ValidDateStr(Str: WideString): Boolean;
begin
Result := _ValidDateTimeStrEx(Str, VAR_DATEVALUEONLY);
end;
function ValidTimeStr(Str: WideString): Boolean;
begin
Result := _ValidDateTimeStrEx(Str, VAR_TIMEVALUEONLY);
end;
function IntStrToDateTime(Str: WideString; Flags: Integer; ErrorFormatStr: WideString): TDateTime;
var
TheDateTime: Double;
begin
try
OleCheck(VarDateFromStr(Str, GetThreadLocale, Flags, TheDateTime));
Result := TheDateTime;
except
on E: Exception do begin
E.Message := E.Message + CRLF + WideFormat(ErrorFormatStr, [Str]);
raise EConvertError.Create(E.Message);
end;
end;
end;
function TntStrToDateTime(Str: WideString): TDateTime;
begin
Result := IntStrToDateTime(Str, 0, SInvalidDateTime);
end;
function TntStrToDate(Str: WideString): TDateTime;
begin
Result := IntStrToDateTime(Str, VAR_DATEVALUEONLY, SInvalidDate);
end;
function TntStrToTime(Str: WideString): TDateTime;
begin
Result := IntStrToDateTime(Str, VAR_TIMEVALUEONLY, SInvalidTime);
end;
function TryStrToDateTime(Str: WideString; Flags: Integer; out DateTime: TDateTime): Boolean;
var
ADouble: Double;
begin
Result := Succeeded(VarDateFromStr(Str, GetThreadLocale, Flags, ADouble));
if Result then
DateTime := ADouble;
end;
function TntStrToDateTimeDef(Str: WideString; Default: TDateTime): TDateTime;
begin
if not TryStrToDateTime(Str, 0, Result) then
Result := Default;
end;
function TntStrToDateDef(Str: WideString; Default: TDateTime): TDateTime;
begin
if not TryStrToDateTime(Str, VAR_DATEVALUEONLY, Result) then
Result := Default;
end;
function TntStrToTimeDef(Str: WideString; Default: TDateTime): TDateTime;
begin
if not TryStrToDateTime(Str, VAR_TIMEVALUEONLY, Result) then
Result := Default;
end;
function TntCurrToStr(Value: Currency; lpFormat: PCurrencyFmtW = nil): WideString;
const
MAX_BUFF_SIZE = 64; // can a currency string actually be larger?
var
ValueStr: WideString;
begin
// format lpValue using ENG-US settings
ValueStr := ENG_US_FloatToStr(Value);
// get currency format
SetLength(Result, MAX_BUFF_SIZE);
if 0 = Tnt_GetCurrencyFormatW(GetThreadLocale, 0, PWideChar(ValueStr),
lpFormat, PWideChar(Result), Length(Result))
then begin
RaiseLastOSError;
end;
Result := PWideChar(Result);
end;
function TntStrToCurr(const S: WideString): Currency;
begin
try
OleCheck(VarCyFromStr(S, GetThreadLocale, 0, Result));
except
on E: Exception do begin
E.Message := E.Message + CRLF + WideFormat(SInvalidCurrency, [S]);
raise EConvertError.Create(E.Message);
end;
end;
end;
function ValidCurrencyStr(const S: WideString): Boolean;
var
Dummy: Currency;
begin
Result := Succeeded(VarCyFromStr(S, GetThreadLocale, 0, Dummy));
end;
function TntStrToCurrDef(const S: WideString; const Default: Currency): Currency;
begin
if not Succeeded(VarCyFromStr(S, GetThreadLocale, 0, Result)) then
Result := Default;
end;
threadvar
Currency_DecimalSep: WideString;
Currency_ThousandSep: WideString;
Currency_CurrencySymbol: WideString;
function GetDefaultCurrencyFmt: TCurrencyFmtW;
begin
ZeroMemory(@Result, SizeOf(Result));
Result.NumDigits := StrToIntDef(WideGetLocaleStr(GetThreadLocale, LOCALE_ICURRDIGITS, '2'), 2);
Result.LeadingZero := StrToIntDef(WideGetLocaleStr(GetThreadLocale, LOCALE_ILZERO, '1'), 1);
Result.Grouping := StrToIntDef(Copy(WideGetLocaleStr(GetThreadLocale, LOCALE_SMONGROUPING, '3;0'), 1, 1), 3);
Currency_DecimalSep := WideGetLocaleStr(GetThreadLocale, LOCALE_SMONDECIMALSEP, '.');
Result.lpDecimalSep := PWideChar(Currency_DecimalSep);
Currency_ThousandSep := WideGetLocaleStr(GetThreadLocale, LOCALE_SMONTHOUSANDSEP, ',');
Result.lpThousandSep := PWideChar(Currency_ThousandSep);
Result.NegativeOrder := StrToIntDef(WideGetLocaleStr(GetThreadLocale, LOCALE_INEGCURR, '0'), 0);
Result.PositiveOrder := StrToIntDef(WideGetLocaleStr(GetThreadLocale, LOCALE_ICURRENCY, '0'), 0);
Currency_CurrencySymbol := WideGetLocaleStr(GetThreadLocale, LOCALE_SCURRENCY, '');
Result.lpCurrencySymbol := PWideChar(Currency_CurrencySymbol);
end;
function WideGetLocaleStr(LocaleID: LCID; LocaleType: Integer; const Default: WideString): WideString;
var
L: Integer;
begin
if (not Win32PlatformIsUnicode) then
Result := GetLocaleStr{TNT-ALLOW GetLocaleStr}(LocaleID, LocaleType, Default)
else begin
SetLength(Result, 255);
L := GetLocaleInfoW(LocaleID, LocaleType, PWideChar(Result), Length(Result));
if L > 0 then
SetLength(Result, L - 1)
else
Result := Default;
end;
end;
{$IFNDEF COMPILER_7_UP}
function CheckWin32Version(AMajor: Integer; AMinor: Integer = 0): Boolean;
begin
Result := (Win32MajorVersion > AMajor) or
((Win32MajorVersion = AMajor) and
(Win32MinorVersion >= AMinor));
end;
{$ENDIF}
function WinCheckH(RetVal: Cardinal): Cardinal;
begin
if RetVal = 0 then RaiseLastOSError;
Result := RetVal;
end;
function WinCheckFileH(RetVal: Cardinal): Cardinal;
begin
if RetVal = INVALID_HANDLE_VALUE then RaiseLastOSError;
Result := RetVal;
end;
function WinCheckP(RetVal: Pointer): Pointer;
begin
if RetVal = nil then RaiseLastOSError;
Result := RetVal;
end;
function WideGetModuleFileName(Instance: HModule): WideString;
begin
SetLength(Result, MAX_PATH);
WinCheckH(Tnt_GetModuleFileNameW(Instance, PWideChar(Result), Length(Result)));
Result := PWideChar(Result)
end;
function WideSafeLoadLibrary(const Filename: Widestring; ErrorMode: UINT): HMODULE;
var
OldMode: UINT;
FPUControlWord: Word;
begin
OldMode := SetErrorMode(ErrorMode);
try
asm
FNSTCW FPUControlWord
end;
try
Result := Tnt_LoadLibraryW(PWideChar(Filename));
finally
asm
FNCLEX
FLDCW FPUControlWord
end;
end;
finally
SetErrorMode(OldMode);
end;
end;
function WideLoadPackage(const Name: Widestring): HMODULE;
begin
Result := WideSafeLoadLibrary(Name);
if Result = 0 then
begin
raise EPackageError.CreateFmt(sErrorLoadingPackage, [Name, SysErrorMessage(GetLastError)]);
end;
try
InitializePackage(Result);
except
FreeLibrary(Result);
raise;
end;
end;
function _WideCharType(WC: WideChar; dwInfoType: Cardinal): Word;
begin
Win32Check(Tnt_GetStringTypeExW(GetThreadLocale, dwInfoType, PWideChar(@WC), 1, Result))
end;
function IsWideCharUpper(WC: WideChar): Boolean;
begin
Result := (_WideCharType(WC, CT_CTYPE1) and C1_UPPER) <> 0;
end;
function IsWideCharLower(WC: WideChar): Boolean;
begin
Result := (_WideCharType(WC, CT_CTYPE1) and C1_LOWER) <> 0;
end;
function IsWideCharDigit(WC: WideChar): Boolean;
begin
Result := (_WideCharType(WC, CT_CTYPE1) and C1_DIGIT) <> 0;
end;
function IsWideCharSpace(WC: WideChar): Boolean;
begin
Result := (_WideCharType(WC, CT_CTYPE1) and C1_SPACE) <> 0;
end;
function IsWideCharPunct(WC: WideChar): Boolean;
begin
Result := (_WideCharType(WC, CT_CTYPE1) and C1_PUNCT) <> 0;
end;
function IsWideCharCntrl(WC: WideChar): Boolean;
begin
Result := (_WideCharType(WC, CT_CTYPE1) and C1_CNTRL) <> 0;
end;
function IsWideCharBlank(WC: WideChar): Boolean;
begin
Result := (_WideCharType(WC, CT_CTYPE1) and C1_BLANK) <> 0;
end;
function IsWideCharXDigit(WC: WideChar): Boolean;
begin
Result := (_WideCharType(WC, CT_CTYPE1) and C1_XDIGIT) <> 0;
end;
function IsWideCharAlpha(WC: WideChar): Boolean;
begin
Result := (_WideCharType(WC, CT_CTYPE1) and C1_ALPHA) <> 0;
end;
function IsWideCharAlphaNumeric(WC: WideChar): Boolean;
begin
Result := (_WideCharType(WC, CT_CTYPE1) and (C1_ALPHA + C1_DIGIT)) <> 0;
end;
function WideTextPos(const SubStr, S: WideString): Integer;
begin
Result := Pos(Tnt_WideUpperCase(SubStr), Tnt_WideUpperCase(S));
end;
function FindDoubleTerminator(P: PWideChar): PWideChar;
begin
Result := P;
while True do begin
Result := StrScanW(Result, #0);
Inc(Result);
if Result^ = #0 then begin
Dec(Result);
break;
end;
end;
end;
function ExtractStringArrayStr(P: PWideChar): WideString;
var
PEnd: PWideChar;
begin
PEnd := FindDoubleTerminator(P);
Inc(PEnd, 2); // move past #0#0
SetString(Result, P, PEnd - P);
end;
function ExtractStringFromStringArray(var P: PWideChar; Separator: WideChar = #0): WideString;
var
Start: PWideChar;
begin
Start := P;
P := StrScanW(Start, Separator);
if P = nil then begin
Result := Start;
P := StrEndW(Start);
end else begin
SetString(Result, Start, P - Start);
Inc(P);
end;
end;
function ExtractStringsFromStringArray(P: PWideChar; Separator: WideChar = #0): TWideStringDynArray;
const
GROW_COUNT = 256;
var
Count: Integer;
Item: WideString;
begin
Count := 0;
SetLength(Result, GROW_COUNT);
Item := ExtractStringFromStringArray(P, Separator);
While Item <> '' do begin
if Count > High(Result) then
SetLength(Result, Length(Result) + GROW_COUNT);
Result[Count] := Item;
Inc(Count);
Item := ExtractStringFromStringArray(P, Separator);
end;
SetLength(Result, Count);
end;
function IsWideCharMappableToAnsi(const WC: WideChar): Boolean;
var
UsedDefaultChar: BOOL;
begin
WideCharToMultiByte(DefaultSystemCodePage, 0, PWideChar(@WC), 1, nil, 0, nil, @UsedDefaultChar);
Result := not UsedDefaultChar;
end;
function IsWideStringMappableToAnsi(const WS: WideString): Boolean;
var
UsedDefaultChar: BOOL;
begin
WideCharToMultiByte(DefaultSystemCodePage, 0, PWideChar(WS), Length(WS), nil, 0, nil, @UsedDefaultChar);
Result := not UsedDefaultChar;
end;
function IsRTF(const Value: WideString): Boolean;
const
RTF_BEGIN_1 = WideString('{\RTF');
RTF_BEGIN_2 = WideString('{URTF');
begin
Result := (WideTextPos(RTF_BEGIN_1, Value) = 1)
or (WideTextPos(RTF_BEGIN_2, Value) = 1);
end;
{$IFDEF COMPILER_7_UP}
var
Cached_ENG_US_FormatSettings: TFormatSettings;
Cached_ENG_US_FormatSettings_Time: Cardinal;
function ENG_US_FormatSettings: TFormatSettings;
begin
if Cached_ENG_US_FormatSettings_Time = _SettingChangeTime then
Result := Cached_ENG_US_FormatSettings
else begin
GetLocaleFormatSettings(MAKELCID(MAKELANGID(LANG_ENGLISH, SUBLANG_ENGLISH_US)), Result);
Result.DecimalSeparator := '.'; // ignore overrides
Cached_ENG_US_FormatSettings := Result;
Cached_ENG_US_FormatSettings_Time := _SettingChangeTime;
end;
end;
function ENG_US_FloatToStr(Value: Extended): WideString;
begin
Result := FloatToStr(Value, ENG_US_FormatSettings);
end;
function ENG_US_StrToFloat(const S: WideString): Extended;
begin
if not TextToFloat(PAnsiChar(AnsiString(S)), Result, fvExtended, ENG_US_FormatSettings) then
Result := StrToFloat(S); // try using native format
end;
{$ELSE}
function ENG_US_FloatToStr(Value: Extended): WideString;
var
SaveDecimalSep: AnsiChar;
begin
SaveDecimalSep := SysUtils.DecimalSeparator;
try
SysUtils.DecimalSeparator := '.';
Result := FloatToStr(Value);
finally
SysUtils.DecimalSeparator := SaveDecimalSep;
end;
end;
function ENG_US_StrToFloat(const S: WideString): Extended;
var
SaveDecimalSep: AnsiChar;
begin
try
SaveDecimalSep := SysUtils.DecimalSeparator;
try
SysUtils.DecimalSeparator := '.';
Result := StrToFloat(S);
finally
SysUtils.DecimalSeparator := SaveDecimalSep;
end;
except
if SysUtils.DecimalSeparator <> '.' then
Result := StrToFloat(S) // try using native format
else
raise;
end;
end;
{$ENDIF}
//---------------------------------------------------------------------------------------------
// Tnt - Variants
//---------------------------------------------------------------------------------------------
{$IFNDEF COMPILER_6_UP} // Delphi 5 compatibility
function VarToWideStr(const V: Variant): WideString;
begin
Result := VarToWideStrDef(V, '');
end;
function VarToWideStrDef(const V: Variant; const ADefault: WideString): WideString;
begin
if not VarIsNull(V) then
Result := V
else
Result := ADefault;
end;
{$ENDIF}
initialization
Win32PlatformIsUnicode := (Win32Platform = VER_PLATFORM_WIN32_NT);
Win32PlatformIsXP := ((Win32MajorVersion = 5) and (Win32MinorVersion >= 1))
or (Win32MajorVersion > 5);
finalization
Currency_DecimalSep := ''; {make memory sleuth happy}
Currency_ThousandSep := ''; {make memory sleuth happy}
Currency_CurrencySymbol := ''; {make memory sleuth happy}
end.
|