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
|
{*****************************************************************************}
{ }
{ Tnt Delphi Unicode Controls }
{ http://www.tntware.com/delphicontrols/unicode/ }
{ Version: 2.2.1 }
{ }
{ Copyright (c) 2002-2005, Troy Wolbrink (troy.wolbrink@tntware.com) }
{ }
{*****************************************************************************}
unit TntSysUtils;
{$INCLUDE TntCompilers.inc}
interface
{ TODO: Consider: more filename functions from SysUtils }
{ TODO: Consider: string functions from StrUtils. }
uses
Types, SysUtils, Windows;
//---------------------------------------------------------------------------------------------
// Tnt - Types
//---------------------------------------------------------------------------------------------
// ......... 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
//---------------------------------------------------------------------------------------------
// ......... 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}
{TNT-WARN StrLen}
{TNT-WARN StrLCopy}
{TNT-WARN StrCopy}
{TNT-WARN StrECopy}
{TNT-WARN StrPLCopy}
{TNT-WARN StrPCopy}
{TNT-WARN StrLComp}
{TNT-WARN AnsiStrLComp}
{TNT-WARN StrComp}
{TNT-WARN AnsiStrComp}
{TNT-WARN StrLIComp}
{TNT-WARN AnsiStrLIComp}
{TNT-WARN StrIComp}
{TNT-WARN AnsiStrIComp}
{TNT-WARN StrLower}
{TNT-WARN AnsiStrLower}
{TNT-WARN StrUpper}
{TNT-WARN AnsiStrUpper}
{TNT-WARN StrPos}
{TNT-WARN AnsiStrPos}
{TNT-WARN StrScan}
{TNT-WARN AnsiStrScan}
{TNT-WARN StrRScan}
{TNT-WARN AnsiStrRScan}
{TNT-WARN StrLCat}
{TNT-WARN StrCat}
{TNT-WARN StrMove}
{TNT-WARN StrPas}
{TNT-WARN StrAlloc}
{TNT-WARN StrBufSize}
{TNT-WARN StrNew}
{TNT-WARN StrDispose}
{TNT-WARN WStrPCopy} // < -- accepts ansi string parameter
{TNT-WARN WStrPLCopy} // <-- accepts ansi string parameter
{TNT-WARN AnsiExtractQuotedStr}
{TNT-WARN AnsiLastChar}
{TNT-WARN AnsiStrLastChar}
{TNT-WARN QuotedStr}
{TNT-WARN AnsiQuotedStr}
{TNT-WARN AnsiDequotedStr}
// ........ string functions .........
{$IFNDEF COMPILER_9_UP}
//
// pre-Delphi 9 issues w/ WideFormatBuf, WideFmtStr and WideFormat
//
{$IFDEF COMPILER_7_UP}
type
PFormatSettings = ^TFormatSettings;
{$ENDIF}
// 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}
{$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}
// 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}
{$IFDEF COMPILER_7_UP}
procedure Tnt_WideFmtStr(var Result: WideString; const FormatStr: WideString;
const Args: array of const; const FormatSettings: TFormatSettings); overload;
{$ENDIF}
{----------------------------------------------------------------------------------------
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}
{$IFDEF COMPILER_7_UP}
function Tnt_WideFormat(const FormatStr: WideString; const Args: array of const;
const FormatSettings: TFormatSettings): WideString; overload;
{$ENDIF}
{$ENDIF}
{TNT-WARN WideUpperCase} // SysUtils.WideUpperCase is broken on Win9x for D6, D7, D9.
function Tnt_WideUpperCase(const S: WideString): WideString;
{TNT-WARN WideLowerCase} // SysUtils.WideLowerCase is broken on Win9x for D6, D7, D9.
function Tnt_WideLowerCase(const S: WideString): WideString;
function TntWideLastChar(const S: WideString): WideChar;
{TNT-WARN StringReplace}
{TNT-WARN WideStringReplace} // <-- WideStrUtils.WideStringReplace uses SysUtils.WideUpperCase which is broken on Win9x.
function Tnt_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 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 IncludeTrailingPathDelimiter}
function WideIncludeTrailingPathDelimiter(const S: WideString): WideString;
{TNT-WARN ExcludeTrailingBackslash}
function WideExcludeTrailingBackslash(const S: WideString): WideString;
{TNT-WARN ExcludeTrailingPathDelimiter}
function WideExcludeTrailingPathDelimiter(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 FileIsReadOnly}
function WideFileIsReadOnly(const FileName: WideString): Boolean;
{TNT-WARN FileSetReadOnly}
function WideFileSetReadOnly(const FileName: WideString; ReadOnly: Boolean): 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 TFileName}
type
TWideFileName = type WideString;
{TNT-WARN TSearchRec} // <-- FindFile - warning on TSearchRec is all that is necessary
type
TSearchRecW = record
Time: Integer;
Size: Int64;
Attr: Integer;
Name: TWideFileName;
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 CreateDir}
function WideCreateDir(const Dir: WideString): Boolean;
{TNT-WARN RemoveDir}
function WideRemoveDir(const Dir: WideString): Boolean;
{TNT-WARN SetCurrentDir}
function WideSetCurrentDir(const Dir: WideString): Boolean;
// ........ date/time functions .........
{TNT-WARN TryStrToDateTime}
function TntTryStrToDateTime(Str: WideString; out DateTime: TDateTime): Boolean;
{TNT-WARN TryStrToDate}
function TntTryStrToDate(Str: WideString; out DateTime: TDateTime): Boolean;
{TNT-WARN TryStrToTime}
function TntTryStrToTime(Str: WideString; out DateTime: TDateTime): Boolean;
{ introduced }
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;
{TNT-WARN SysErrorMessage}
function WideSysErrorMessage(ErrorCode: Integer): WideString;
// ......... introduced .........
function WideLibraryErrorMessage(const LibName: WideString; Dll: THandle; ErrorCode: Integer): WideString;
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
//---------------------------------------------------------------------------------------------
// ........ Variants.pas has WideString versions of these functions .........
{TNT-WARN VarToStr}
{TNT-WARN VarToStrDef}
var
_SettingChangeTime: Cardinal;
implementation
uses
ActiveX, ComObj, Math, SysConst, Consts,
{$IFDEF COMPILER_9_UP} WideStrUtils, {$ENDIF} TntWideStrUtils,
TntSystem, TntWindows, TntFormatStrUtils;
//---------------------------------------------------------------------------------------------
// Tnt - SysUtils
//---------------------------------------------------------------------------------------------
{$IFNDEF COMPILER_9_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(Buffer, BufLen, Pointer(NewFormat)^,
Length(NewFormat), Args, FormatSettings^)
else
{$ENDIF}
Result := 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;
{$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}
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;
{$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}
{----------------------------------------------------------------------------------------
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;
{$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}
{$ENDIF}
function Tnt_WideUpperCase(const S: WideString): WideString;
begin
{$IFNDEF COMPILER_10_UP}
{ SysUtils.WideUpperCase is broken for Win9x. }
Result := S;
if Length(Result) > 0 then
Tnt_CharUpperBuffW(PWideChar(Result), Length(Result));
{$ELSE}
Result := SysUtils.WideUpperCase{TNT-ALLOW WideUpperCase}(S);
{$ENDIF}
end;
function Tnt_WideLowerCase(const S: WideString): WideString;
begin
{$IFNDEF COMPILER_10_UP}
{ SysUtils.WideLowerCase is broken for Win9x. }
Result := S;
if Length(Result) > 0 then
Tnt_CharLowerBuffW(PWideChar(Result), Length(Result));
{$ELSE}
Result := SysUtils.WideLowerCase{TNT-ALLOW WideLowerCase}(S);
{$ENDIF}
end;
function TntWideLastChar(const S: WideString): WideChar;
var
P: PWideChar;
begin
P := WideLastChar(S);
if P = nil then
Result := #0
else
Result := P^;
end;
function Tnt_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 := TntWideLastChar(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 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 := WideIncludeTrailingPathDelimiter(S);
end;
function WideIncludeTrailingPathDelimiter(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 := WideExcludeTrailingPathDelimiter(S);
end;
function WideExcludeTrailingPathDelimiter(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 := WStrScan(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 (WStrScan(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 := WStrScan(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
Handle: THandle;
FindData: TWin32FindDataW;
begin
Result := False;
Handle := Tnt_FindFirstFileW(PWideChar(Name), FindData);
if Handle <> INVALID_HANDLE_VALUE then
begin
Windows.FindClose(Handle);
if (FindData.dwFileAttributes and FILE_ATTRIBUTE_DIRECTORY) = 0 then
Result := True;
end;
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 WideFileIsReadOnly(const FileName: WideString): Boolean;
begin
Result := (Tnt_GetFileAttributesW(PWideChar(FileName)) and faReadOnly) <> 0;
end;
function WideFileSetReadOnly(const FileName: WideString; ReadOnly: Boolean): Boolean;
var
Flags: Integer;
begin
Result := False;
Flags := Tnt_GetFileAttributesW(PWideChar(FileName));
if Flags = -1 then Exit;
if ReadOnly then
Flags := Flags or faReadOnly
else
Flags := Flags and not faReadOnly;
Result := Tnt_SetFileAttributesW(PWideChar(FileName), Flags);
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 := TntWideLastChar(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 WideCreateDir(const Dir: WideString): Boolean;
begin
Result := Tnt_CreateDirectoryW(PWideChar(Dir), nil);
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;
//=============================================================================================
//== DATE/TIME STRING PARSING ================================================================
//=============================================================================================
function _IntTryStrToDateTime(Str: WideString; Flags: Integer; out DateTime: TDateTime): HResult;
begin
Result := VarDateFromStr(Str, GetThreadLocale, Flags, Double(DateTime));
if (not Succeeded(Result)) then begin
if (Flags = VAR_TIMEVALUEONLY)
and SysUtils.TryStrToTime{TNT-ALLOW TryStrToTime}(Str, DateTime) then
Result := S_OK // SysUtils seems confident (works for date = "dd.MM.yy" and time = "H.mm.ss")
else if (Flags = VAR_DATEVALUEONLY)
and SysUtils.TryStrToDate{TNT-ALLOW TryStrToDate}(Str, DateTime) then
Result := S_OK // SysUtils seems confident
else if (Flags = 0)
and SysUtils.TryStrToDateTime{TNT-ALLOW TryStrToDateTime}(Str, DateTime) then
Result := S_OK // SysUtils seems confident
end;
end;
function TntTryStrToDateTime(Str: WideString; out DateTime: TDateTime): Boolean;
begin
Result := Succeeded(_IntTryStrToDateTime(Str, 0, DateTime));
end;
function TntTryStrToDate(Str: WideString; out DateTime: TDateTime): Boolean;
begin
Result := Succeeded(_IntTryStrToDateTime(Str, VAR_DATEVALUEONLY, DateTime));
end;
function TntTryStrToTime(Str: WideString; out DateTime: TDateTime): Boolean;
begin
Result := Succeeded(_IntTryStrToDateTime(Str, VAR_TIMEVALUEONLY, DateTime));
end;
function ValidDateTimeStr(Str: WideString): Boolean;
var
Temp: TDateTime;
begin
Result := Succeeded(_IntTryStrToDateTime(Str, 0, Temp));
end;
function ValidDateStr(Str: WideString): Boolean;
var
Temp: TDateTime;
begin
Result := Succeeded(_IntTryStrToDateTime(Str, VAR_DATEVALUEONLY, Temp));
end;
function ValidTimeStr(Str: WideString): Boolean;
var
Temp: TDateTime;
begin
Result := Succeeded(_IntTryStrToDateTime(Str, VAR_TIMEVALUEONLY, Temp));
end;
function TntStrToDateTimeDef(Str: WideString; Default: TDateTime): TDateTime;
begin
if not TntTryStrToDateTime(Str, Result) then
Result := Default;
end;
function TntStrToDateDef(Str: WideString; Default: TDateTime): TDateTime;
begin
if not TntTryStrToDate(Str, Result) then
Result := Default;
end;
function TntStrToTimeDef(Str: WideString; Default: TDateTime): TDateTime;
begin
if not TntTryStrToTime(Str, Result) then
Result := Default;
end;
function _IntStrToDateTime(Str: WideString; Flags: Integer; ErrorFormatStr: WideString): TDateTime;
begin
try
OleCheck(_IntTryStrToDateTime(Str, Flags, Result));
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;
//=============================================================================================
//== CURRENCY STRING PARSING =================================================================
//=============================================================================================
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;
function WideSysErrorMessage(ErrorCode: Integer): WideString;
begin
Result := WideLibraryErrorMessage('system', 0, ErrorCode);
end;
function WideLibraryErrorMessage(const LibName: WideString; Dll: THandle; ErrorCode: Integer): WideString;
var
Len: Integer;
AnsiResult: AnsiString;
Flags: Cardinal;
begin
Flags := FORMAT_MESSAGE_FROM_SYSTEM or FORMAT_MESSAGE_IGNORE_INSERTS or FORMAT_MESSAGE_ARGUMENT_ARRAY;
if Dll <> 0 then
Flags := Flags or FORMAT_MESSAGE_FROM_HMODULE;
if Win32PlatformIsUnicode then begin
SetLength(Result, 256);
Len := FormatMessageW(Flags, Pointer(Dll), ErrorCode, 0, PWideChar(Result), Length(Result), nil);
SetLength(Result, Len);
end else begin
SetLength(AnsiResult, 256);
Len := FormatMessageA(Flags, Pointer(Dll), ErrorCode, 0, PAnsiChar(AnsiResult), Length(AnsiResult), nil);
SetLength(AnsiResult, Len);
Result := AnsiResult;
end;
if Trim(Result) = '' then
Result := WideFormat('Unspecified error (%d) from %s.', [ErrorCode, LibName]);
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, WideSysErrorMessage(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 := WStrScan(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 := WStrScan(Start, Separator);
if P = nil then begin
Result := Start;
P := WStrEnd(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
//---------------------------------------------------------------------------------------------
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.
|