1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169
|
{
*****************************************************************************
See the file COPYING.modifiedLGPL.txt, included in this distribution,
for details about the license.
*****************************************************************************
Authors: Alexander Klenin
}
unit TACustomSource;
{$mode objfpc}{$H+}
{$modeswitch advancedrecords}
{$WARN 6058 off : Call to subroutine "$1" marked as inline is not inlined}
interface
uses
Classes, Types, TAChartUtils;
type
TAxisIntervalParamOption = (
aipGraphCoords,
aipUseCount, aipUseMaxLength, aipUseMinLength, aipUseNiceSteps,
aipInteger);
const
DEF_INTERVAL_STEPS = '0.2|0.5|1.0';
DEF_INTERVAL_OPTIONS = [aipUseMaxLength, aipUseMinLength, aipUseNiceSteps];
type
TAxisIntervalParamOptions = set of TAxisIntervalParamOption;
TChartAxisIntervalParams = class(TPersistent)
strict private
FCount: Integer;
FMaxLength: Integer;
FMinLength: Integer;
FNiceSteps: String;
FOptions: TAxisIntervalParamOptions;
FOwner: TPersistent;
FStepValues: TDoubleDynArray;
FTolerance: Cardinal;
function NiceStepsIsStored: Boolean;
procedure ParseNiceSteps;
procedure SetCount(AValue: Integer);
procedure SetMaxLength(AValue: Integer);
procedure SetMinLength(AValue: Integer);
procedure SetNiceSteps(const AValue: String);
procedure SetOptions(AValue: TAxisIntervalParamOptions);
procedure SetTolerance(AValue: Cardinal);
strict protected
procedure Changed; virtual;
protected
function GetOwner: TPersistent; override;
public
procedure Assign(ASource: TPersistent); override;
constructor Create(AOwner: TPersistent);
property StepValues: TDoubleDynArray read FStepValues;
published
property Count: Integer read FCount write SetCount default 5;
property MaxLength: Integer read FMaxLength write SetMaxLength default 50;
property MinLength: Integer read FMinLength write SetMinLength default 10;
property NiceSteps: String
read FNiceSteps write SetNiceSteps stored NiceStepsIsStored;
property Options: TAxisIntervalParamOptions
read FOptions write SetOptions default DEF_INTERVAL_OPTIONS;
property Tolerance: Cardinal read FTolerance write SetTolerance default 0;
end;
type
EBufferError = class(EChartError);
EEditableSourceRequired = class(EChartError);
EListSourceStringError = class(EChartError);
ESortError = class(EChartError);
EXCountError = class(EChartError);
EYCountError = class(EChartError);
TChartValueText = record
FText: String;
FValue: Double;
end;
PChartValueText = ^TChartValueText;
TChartValueTextArray = array of TChartValueText;
PChartDataItem = ^TChartDataItem;
TChartDataItem = packed record
public
X, Y: Double;
Color: TChartColor;
Text: String;
XList: TDoubleDynArray;
YList: TDoubleDynArray;
procedure CopyFrom(AItem: PChartDataItem);
function GetText(AIndex: Integer; ALabelSeparator: Char): String;
function GetX(AIndex: Integer): Double;
function GetY(AIndex: Integer): Double;
procedure SetX(AIndex: Integer; const AValue: Double);
procedure SetX(const AValue: Double);
procedure SetY(AIndex: Integer; const AValue: Double);
procedure SetY(const AValue: Double);
procedure MultiplyY(const ACoeff: Double);
function Point: TDoublePoint; inline;
procedure MakeUnique;
end;
TGraphToImageFunc = function (AX: Double): Integer of object;
TIntegerTransformFunc = function (AX: Integer): Integer of object;
TValuesInRangeParams = object
FAxisToGraph: TTransformFunc;
FFormat: String;
FGraphToAxis: TTransformFunc;
FGraphToImage: TGraphToImageFunc;
FIntervals: TChartAxisIntervalParams;
FMin, FMax: Double;
FMinStep: Double;
FScale: TIntegerTransformFunc;
FUseY: Boolean;
function CountToStep(ACount: Integer): Double; inline;
function IsAcceptableStep(AStep: Int64): Boolean; inline;
procedure RoundToImage(var AValue: Double);
function ToImage(AX: Double): Integer; inline;
end;
TBasicChartSource = class(TComponent)
strict private
FBroadcaster: TBroadcaster;
strict protected
FUpdateCount: Integer;
procedure Notify;
public
constructor Create(AOwner: TComponent); override;
destructor Destroy; override;
procedure BeginUpdate; virtual;
procedure EndUpdate; virtual;
function IsUpdating: Boolean; inline;
property Broadcaster: TBroadcaster read FBroadcaster;
end;
TCustomChartSource = class;
TCustomChartSourceEnumerator = class
strict private
FSource: TCustomChartSource;
FIndex: Integer;
public
constructor Create(ASource: TCustomChartSource);
function GetCurrent: PChartDataItem;
function MoveNext: Boolean;
procedure Reset;
property Current: PChartDataItem read GetCurrent;
end;
TChartErrorBarKind = (ebkNone, ebkConst, ebkPercent, ebkChartSource);
TChartErrorBarData = class(TPersistent)
private
FKind: TChartErrorBarKind;
FValue: array[0..1] of Double; // 0 = positive, 1 = negative
FIndex: array[0..1] of Integer;
FOnChange: TNotifyEvent;
procedure Changed;
function GetIndex(AIndex: Integer): Integer;
function GetValue(AIndex: Integer): Double;
function IsErrorBarValueStored(AIndex: Integer): Boolean;
procedure SetKind(AValue: TChartErrorBarKind);
procedure SetIndex(AIndex, AValue: Integer);
procedure SetValue(AIndex: Integer; const AValue: Double);
public
constructor Create;
procedure Assign(ASource: TPersistent); override;
property OnChange: TNotifyEvent read FOnChange write FOnChange;
published
property Kind: TChartErrorBarKind read FKind write SetKind default ebkNone;
property IndexMinus: Integer index 1 read GetIndex write SetIndex default -1;
property IndexPlus: Integer index 0 read GetIndex write SetIndex default -1;
property ValueMinus: Double index 1 read GetValue write SetValue stored IsErrorBarValueStored;
property ValuePlus: Double index 0 read GetValue write SetValue stored IsErrorBarValueStored;
end;
TChartSortBy = (sbX, sbY, sbColor, sbText, sbCustom);
TChartSortDir = (sdAscending, sdDescending);
TCustomChartSource = class(TBasicChartSource)
strict private
FErrorBarData: array[0..1] of TChartErrorBarData;
FLabelSeparator: Char;
function GetErrorBarData(AIndex: Integer): TChartErrorBarData;
function IsErrorBarDataStored(AIndex: Integer): Boolean;
procedure SetErrorBarData(AIndex: Integer; AValue: TChartErrorBarData);
procedure SortValuesInRange(
var AValues: TChartValueTextArray; AStart, AEnd: Integer);
strict protected
FBasicExtent: TDoubleRect;
FBasicExtentIsValid: Boolean;
FCumulativeExtent: TDoubleRect;
FCumulativeExtentIsValid: Boolean;
FXListExtent: TDoubleRect;
FXListExtentIsValid: Boolean;
FYListExtent: TDoubleRect;
FYListExtentIsValid: Boolean;
FValuesTotal: Double;
FValuesTotalIsValid: Boolean;
FSortBy: TChartSortBy;
FSortDir: TChartSortDir;
FSortIndex: Cardinal;
FXCount: Cardinal;
FYCount: Cardinal;
FYRange: array of TDoubleInterval;
FYRangeValid: array of Boolean;
function CalcExtentXYList(UseXList: Boolean): TDoubleRect;
procedure ChangeErrorBars(Sender: TObject); virtual;
function GetCount: Integer; virtual; abstract;
function GetErrorBarValues(APointIndex: Integer; Which: Integer;
out AUpperDelta, ALowerDelta: Double): Boolean;
function GetHasErrorBars(Which: Integer): Boolean;
function GetItem(AIndex: Integer): PChartDataItem; virtual; abstract;
function HasSameSorting(ASource: TCustomChartSource): Boolean; virtual;
procedure InvalidateCaches;
procedure SetSortBy(AValue: TChartSortBy); virtual;
procedure SetSortDir(AValue: TChartSortDir); virtual;
procedure SetSortIndex(AValue: Cardinal); virtual;
procedure SetXCount(AValue: Cardinal); virtual; abstract;
procedure SetYCount(AValue: Cardinal); virtual;
property LabelSeparator: Char read FLabelSeparator write FLabelSeparator default '|';
property XErrorBarData: TChartErrorBarData index 0 read GetErrorBarData
write SetErrorBarData stored IsErrorBarDataStored;
property YErrorBarData: TChartErrorBarData index 1 read GetErrorBarData
write SetErrorBarData stored IsErrorBarDataStored;
protected
property SortBy: TChartSortBy read FSortBy write SetSortBy default sbX;
property SortDir: TChartSortDir read FSortDir write SetSortDir default sdAscending;
property SortIndex: Cardinal read FSortIndex write SetSortIndex default 0;
public
constructor Create(AOwner: TComponent); override;
destructor Destroy; override;
public
procedure AfterDraw; virtual;
procedure BeforeDraw; virtual;
procedure BeginUpdate; override;
procedure EndUpdate; override;
public
class procedure CheckFormat(const AFormat: String);
function BasicExtent: TDoubleRect; virtual;
function Extent: TDoubleRect; virtual;
function ExtentCumulative: TDoubleRect; virtual;
function ExtentList: TDoubleRect; virtual;
function ExtentXYList: TDoubleRect; virtual;
procedure FindBounds(AXMin, AXMax: Double; out ALB, AUB: Integer);
procedure FindYRange(AXMin, AXMax: Double; Stacked: Boolean;
var AYMin, AYMax: Double);
function FormatItem(
const AFormat: String; AIndex, AYIndex: Integer): String; inline;
function FormatItemXYText(
const AFormat: String; const AX, AY: Double; AText: String): String;
function GetEnumerator: TCustomChartSourceEnumerator;
function GetXErrorBarLimits(APointIndex: Integer;
out AUpperLimit, ALowerLimit: Double): Boolean;
function GetYErrorBarLimits(APointIndex: Integer;
out AUpperLimit, ALowerLimit: Double): Boolean;
function GetXErrorBarValues(APointIndex: Integer;
out AUpperDelta, ALowerDelta: Double): Boolean;
function GetYErrorBarValues(APointIndex: Integer;
out AUpperDelta, ALowerDelta: Double): Boolean;
function HasXErrorBars: Boolean;
function HasYErrorBars: Boolean;
function IsXErrorIndex(AXIndex: Integer): Boolean;
function IsYErrorIndex(AYIndex: Integer): Boolean;
function IsSorted: Boolean; virtual;
function IsSortedByXAsc: Boolean;
procedure ValuesInRange(
AParams: TValuesInRangeParams; var AValues: TChartValueTextArray); virtual;
function ValuesTotal: Double; virtual;
function XOfMax(AIndex: Integer = 0): Double;
function XOfMin(AIndex: Integer = 0): Double;
procedure YRange(AYIndex: Integer; var AMin, AMax: Double);
property Count: Integer read GetCount;
property Item[AIndex: Integer]: PChartDataItem read GetItem; default;
property XCount: Cardinal read FXCount write SetXCount default 1;
property YCount: Cardinal read FYCount write SetYCount default 1;
end;
TChartSortCompare = function(AItem1, AItem2: Pointer): Integer of object;
{ TCustomSortedChartSource }
TCustomSortedChartSource = class(TCustomChartSource)
private
FUseSortedAutoDetection: Boolean;
FOnCompare: TChartSortCompare;
procedure SetOnCompare(AValue: TChartSortCompare);
procedure SetSorted(AValue: Boolean);
procedure SetUseSortedAutoDetection(AValue: Boolean);
protected
FData: TFPList;
FSorted: Boolean;
FSortedAutoDetected: Boolean;
function DoCompare(AItem1, AItem2: Pointer): Integer; virtual;
procedure DoSort; virtual;
function GetCount: Integer; override;
function GetItem(AIndex: Integer): PChartDataItem; override;
function GetItemInternal(AIndex: Integer): PChartDataItem; inline;
function ItemAdd(AItem: PChartDataItem): Integer;
procedure ItemInsert(AIndex: Integer; AItem: PChartDataItem);
function ItemFind(AItem: PChartDataItem; L: Integer = 0; R: Integer = High(Integer)): Integer;
function ItemModified(AIndex: Integer): Integer;
procedure ItemDeleted({%H-}AIndex: Integer); // pass -1 if all items were deleted at once
procedure ResetSortedAutoDetection;
procedure SetSortedAutoDetected;
procedure SetSortBy(AValue: TChartSortBy); override;
procedure SetSortDir(AValue: TChartSortDir); override;
procedure SetSortIndex(AValue: Cardinal); override;
procedure SortNoNotify;
property ItemInternal[AIndex: Integer]: PChartDataItem read GetItemInternal;
property OnCompare: TChartSortCompare read FOnCompare write SetOnCompare;
property Sorted: Boolean read FSorted write SetSorted default false;
property UseSortedAutoDetection: Boolean
read FUseSortedAutoDetection write SetUseSortedAutoDetection default false;
public
constructor Create(AOwner: TComponent); override;
destructor Destroy; override;
public
function IsSorted: Boolean; override;
procedure Sort;
end;
{ TChartSourceBuffer }
TChartSourceBuffer = class
strict private
FBuf: array of TChartDataItem;
FCount: Cardinal;
FStart: Cardinal;
FSum: TChartDataItem;
procedure AddValue(const AItem: TChartDataItem);
function EndIndex: Cardinal; inline;
function GetCapacity: Cardinal; inline;
procedure SetCapacity(AValue: Cardinal); inline;
public
procedure AddFirst(const AItem: TChartDataItem);
procedure AddLast(const AItem: TChartDataItem);
procedure Clear; inline;
function GetPtr(AOffset: Cardinal): PChartDataItem; overload;
procedure GetSum(var AItem: TChartDataItem);
procedure RemoveFirst;
procedure RemoveLast;
procedure RemoveValue(const AItem: TChartDataItem);
property Capacity: Cardinal read GetCapacity write SetCapacity;
end;
procedure SetDataItemDefaults(var AItem: TChartDataItem);
implementation
uses
Math, StrUtils, SysUtils, TAMath, TAChartStrConsts;
function CompareChartValueTextPtr(AItem1, AItem2: Pointer): Integer;
begin
Result := CompareValue(
PChartValueText(AItem1)^.FValue,
PChartValueText(AItem2)^.FValue);
end;
function IsValueTextsSorted(
const AValues: TChartValueTextArray; AStart, AEnd: Integer): Boolean;
var
i: Integer;
begin
for i := AStart to AEnd - 1 do
if AValues[i].FValue > AValues[i + 1].FValue then exit(false);
Result := true;
end;
procedure SetDataItemDefaults(var AItem: TChartDataItem);
var
i: Integer;
begin
AItem.X := 0;
AItem.Y := 0;
AItem.Color := clTAColor;
AItem.Text := '';
for i := 0 to High(AItem.XList) do
AItem.XList[i] := 0;
for i := 0 to High(AItem.YList) do
AItem.YList[i] := 0;
end;
{ TValuesInRangeParams }
function TValuesInRangeParams.CountToStep(ACount: Integer): Double;
begin
Result := Power(10, Floor(Log10((FMax - FMin) / ACount)));
end;
function TValuesInRangeParams.IsAcceptableStep(AStep: Int64): Boolean;
begin
with FIntervals do
Result := not (
(aipUseMinLength in Options) and (AStep < FScale(MinLength)) or
(aipUseMaxLength in Options) and (AStep > FScale(MaxLength)));
end;
procedure TValuesInRangeParams.RoundToImage(var AValue: Double);
function A2I(const AX: Double): Integer; inline;
begin
Result := FGraphToImage(FAxisToGraph(AX));
end;
var
p, rv: Double;
x: Int64;
begin
if
(FIntervals.Tolerance = 0) or (AValue = 0) or IsInfinite(AValue) or IsNan(AValue)
then
exit;
x := A2I(AValue);
p := Power(10, Floor(Log10(Abs(AValue)) - Log10(High(Int64)) + 1));
while AValue <> 0 do begin
rv := Round(AValue / p) * p;
if Abs(A2I(rv) - x) >= FIntervals.Tolerance then break;
AValue := rv;
p *= 10;
end;
end;
function TValuesInRangeParams.ToImage(AX: Double): Integer;
begin
if not (aipGraphCoords in FIntervals.Options) then
AX := FAxisToGraph(AX);
Result := FGraphToImage(AX);
end;
{ TChartAxisIntervalParams }
procedure TChartAxisIntervalParams.Assign(ASource: TPersistent);
begin
if ASource is TChartAxisIntervalParams then
with TChartAxisIntervalParams(ASource) do begin
Self.FCount := Count;
Self.FMaxLength := MaxLength;
Self.FMinLength := MinLength;
Self.FNiceSteps := NiceSteps;
Self.FOptions := Options;
end
else
inherited Assign(ASource);
end;
procedure TChartAxisIntervalParams.Changed;
begin
if not (FOwner is TCustomChartSource) then exit;
with TCustomChartSource(FOwner) do begin
BeginUpdate;
EndUpdate;
end;
end;
constructor TChartAxisIntervalParams.Create(AOwner: TPersistent);
begin
FOwner := AOwner;
SetPropDefaults(Self, ['Count', 'MaxLength', 'MinLength', 'Options']);
FNiceSteps := DEF_INTERVAL_STEPS;
ParseNiceSteps;
end;
function TChartAxisIntervalParams.GetOwner: TPersistent;
begin
Result := FOwner;
end;
function TChartAxisIntervalParams.NiceStepsIsStored: Boolean;
begin
Result := NiceSteps <> DEF_INTERVAL_STEPS;
end;
procedure TChartAxisIntervalParams.ParseNiceSteps;
var
parts: TStrings;
i: Integer;
begin
parts := Split(StrUtils.IfThen(NiceSteps = '', DEF_INTERVAL_STEPS, NiceSteps));
try
SetLength(FStepValues, parts.Count);
for i := 0 to parts.Count - 1 do
FStepValues[i] := StrToFloatDefSep(parts[i]);
finally
parts.Free;
end;
end;
procedure TChartAxisIntervalParams.SetCount(AValue: Integer);
begin
if FCount = AValue then exit;
FCount := AValue;
Changed;
end;
procedure TChartAxisIntervalParams.SetMaxLength(AValue: Integer);
begin
if FMaxLength = AValue then exit;
FMaxLength := AValue;
Changed;
end;
procedure TChartAxisIntervalParams.SetMinLength(AValue: Integer);
begin
if FMinLength = AValue then exit;
FMinLength := AValue;
Changed;
end;
procedure TChartAxisIntervalParams.SetNiceSteps(const AValue: String);
begin
if FNiceSteps = AValue then exit;
FNiceSteps := AValue;
ParseNiceSteps;
Changed;
end;
procedure TChartAxisIntervalParams.SetOptions(
AValue: TAxisIntervalParamOptions);
begin
if FOptions = AValue then exit;
FOptions := AValue;
Changed;
end;
procedure TChartAxisIntervalParams.SetTolerance(AValue: Cardinal);
begin
if FTolerance = AValue then exit;
FTolerance := AValue;
Changed;
end;
{ TChartDataItem }
procedure TChartDataItem.CopyFrom(AItem: PChartDataItem);
var
i: Integer;
begin
X := AItem^.X;
Y := AItem^.Y;
SetLength(XList, Length(AItem^.XList));
for i := 0 to High(AItem^.XList) do XList[i] := AItem^.XList[i];
SetLength(YList, Length(AItem^.YList));
for i := 0 to High(AItem^.YList) do YList[i] := AItem^.YList[i];
Text := AItem^.Text;
Color := AItem^.Color;
end;
function TChartDataItem.GetText(AIndex: Integer; ALabelSeparator: Char): String;
var
sa: TStringArray;
begin
AIndex := EnsureRange(AIndex, 0, Length(YList));
sa := Text.Split(ALabelSeparator);
if InRange(AIndex, 0, High(sa)) then
Result := sa[AIndex]
else
Result := Text;
end;
function TChartDataItem.GetX(AIndex: Integer): Double;
begin
AIndex := EnsureRange(AIndex, 0, Length(XList));
if AIndex = 0 then
Result := X
else
Result := XList[AIndex - 1];
end;
function TChartDataItem.GetY(AIndex: Integer): Double;
begin
AIndex := EnsureRange(AIndex, 0, Length(YList));
if AIndex = 0 then
Result := Y
else
Result := YList[AIndex - 1];
end;
procedure TChartDataItem.MakeUnique;
begin
// using SetLength() is a documented way of making the dynamic array unique:
// "the reference count after a call to SetLength will be 1"
UniqueString(Text);
SetLength(XList, Length(XList));
SetLength(YList, Length(YList));
end;
procedure TChartDataItem.MultiplyY(const ACoeff: Double);
var
i: Integer;
begin
Y *= ACoeff;
for i := 0 to High(YList) do
YList[i] *= ACoeff;
end;
function TChartDataItem.Point: TDoublePoint;
begin
Result.X := X;
Result.Y := Y;
end;
procedure TChartDataItem.SetX(const AValue: Double);
var
i: Integer;
begin
X := AValue;
for i := 0 to High(XList) do
XList[i] := AValue;
end;
procedure TChartDataItem.SetX(AIndex: Integer; const AValue: Double);
begin
if AIndex = 0 then
X := AValue
else
XList[AIndex - 1] := AValue;
end;
procedure TChartDataItem.SetY(const AValue: Double);
var
i: Integer;
begin
Y := AValue;
for i := 0 to High(YList) do
YList[i] := AValue;
end;
procedure TChartDataItem.SetY(AIndex: Integer; const AValue: Double);
begin
if AIndex = 0 then
Y := AValue
else
YList[AIndex - 1] := AValue;
end;
{ TBasicChartSource }
constructor TBasicChartSource.Create(AOwner: TComponent);
begin
inherited Create(AOwner);
FBroadcaster := TBroadcaster.Create;
end;
destructor TBasicChartSource.Destroy;
begin
FreeAndNil(FBroadcaster);
inherited Destroy;
end;
procedure TBasicChartSource.BeginUpdate;
begin
Inc(FUpdateCount);
end;
procedure TBasicChartSource.EndUpdate;
begin
Dec(FUpdateCount);
if FUpdateCount > 0 then exit;
Notify;
end;
function TBasicChartSource.IsUpdating: Boolean; inline;
begin
Result := FUpdateCount > 0;
end;
procedure TBasicChartSource.Notify;
begin
if not IsUpdating then
FBroadcaster.Broadcast(Self);
end;
{ TChartSourceBuffer }
procedure TChartSourceBuffer.AddFirst(const AItem: TChartDataItem);
begin
if Capacity = 0 then
raise EBufferError.Create('');
FStart := (FStart + Cardinal(High(FBuf))) mod Capacity;
if FCount = Capacity then
RemoveValue(FBuf[FStart])
else
FCount += 1;
FBuf[FStart] := AItem;
AddValue(AItem);
end;
procedure TChartSourceBuffer.AddLast(const AItem: TChartDataItem);
begin
if Capacity > 0 then
if FCount = Capacity then begin
RemoveValue(FBuf[FStart]);
FBuf[FStart] := AItem;
FStart := (FStart + 1) mod Capacity;
end
else begin
FCount += 1;
FBuf[EndIndex] := AItem;
end;
AddValue(AItem);
end;
procedure TChartSourceBuffer.AddValue(const AItem: TChartDataItem);
var
i, oldLen: Integer;
begin
with FSum do begin
Y += AItem.Y;
oldLen := Length(YList);
SetLength(YList, Max(Length(AItem.YList), oldLen));
for i := oldLen to High(YList) do
YList[i] := 0;
for i := 0 to Min(High(YList), High(AItem.YList)) do
YList[i] += AItem.YList[i];
end;
end;
procedure TChartSourceBuffer.Clear;
begin
FCount := 0;
FStart := 0;
FSum.Y := 0;
FSum.YList := nil;
end;
function TChartSourceBuffer.EndIndex: Cardinal;
begin
Result := (FStart + Cardinal(FCount - 1)) mod Capacity;
end;
function TChartSourceBuffer.GetCapacity: Cardinal;
begin
Result := Length(FBuf);
end;
function TChartSourceBuffer.GetPtr(AOffset: Cardinal): PChartDataItem;
begin
if AOffset >= FCount then
raise EBufferError.Create('AOffset');
Result := @FBuf[(FStart + AOffset + Capacity) mod Capacity];
end;
procedure TChartSourceBuffer.GetSum(var AItem: TChartDataItem);
begin
AItem.Y := FSum.Y;
AItem.YList := Copy(FSum.YList);
end;
procedure TChartSourceBuffer.RemoveFirst;
begin
if FCount = 0 then
raise EBufferError.Create('Empty');
RemoveValue(FBuf[FStart]);
FCount -= 1;
FStart := (FStart + 1) mod Capacity;
end;
procedure TChartSourceBuffer.RemoveLast;
begin
if FCount = 0 then
raise EBufferError.Create('Empty');
RemoveValue(FBuf[EndIndex]);
FCount -= 1;
end;
procedure TChartSourceBuffer.RemoveValue(const AItem: TChartDataItem);
var
i: Integer;
begin
with AItem do begin
FSum.Y -= Y;
for i := 0 to Min(High(FSum.YList), High(YList)) do
FSum.YList[i] -= YList[i];
end;
end;
procedure TChartSourceBuffer.SetCapacity(AValue: Cardinal);
begin
if AValue = Capacity then exit;
SetLength(FBuf, AValue);
Clear;
end;
{ TCustomChartSourceEnumerator }
constructor TCustomChartSourceEnumerator.Create(ASource: TCustomChartSource);
begin
FSource := ASource;
FIndex := -1;
end;
function TCustomChartSourceEnumerator.GetCurrent: PChartDataItem;
begin
Result := FSource[FIndex];
end;
function TCustomChartSourceEnumerator.MoveNext: Boolean;
begin
FIndex += 1;
Result := FIndex < FSource.Count;
end;
procedure TCustomChartSourceEnumerator.Reset;
begin
FIndex := 0;
end;
{ TChartErrorBarData }
constructor TChartErrorBarData.Create;
begin
inherited;
FIndex[0] := -1;
FIndex[1] := -1;
FValue[0] := 0;
FValue[1] := -1;
FKind := ebkNone;
end;
procedure TChartErrorBarData.Assign(ASource: TPersistent);
begin
if ASource is TChartErrorBarData then begin
FValue := TChartErrorBarData(ASource).FValue;
FIndex := TChartErrorBarData(ASource).FIndex;
FKind := TChartErrorBarData(ASource).Kind;
end else
inherited;
end;
procedure TChartErrorBarData.Changed;
begin
if Assigned(FOnChange) then FOnChange(Self);
end;
function TChartErrorBarData.GetIndex(AIndex: Integer): Integer;
begin
Result := FIndex[AIndex];
end;
function TChartErrorBarData.GetValue(AIndex: Integer): Double;
begin
Result := FValue[AIndex];
end;
function TChartErrorBarData.IsErrorBarValueStored(AIndex: Integer): Boolean;
begin
if AIndex = 0 then
Result := FValue[0] <> 0
else
Result := FValue[1] <> -1;
end;
procedure TChartErrorBarData.SetIndex(AIndex, AValue: Integer);
begin
if FIndex[AIndex] = AValue then exit;
FIndex[AIndex] := AValue;
Changed;
end;
procedure TChartErrorBarData.SetKind(AValue: TChartErrorBarKind);
begin
if FKind = AValue then exit;
FKind := AValue;
Changed;
end;
procedure TChartErrorBarData.SetValue(AIndex: Integer; const AValue: Double);
begin
if FValue[AIndex] = AValue then exit;
FValue[AIndex] := AValue;
Changed;
end;
{ TCustomChartSource }
procedure TCustomChartSource.AfterDraw;
begin
// empty
end;
function TCustomChartSource.BasicExtent: TDoubleRect;
var
i: Integer;
vhi, vlo: Double;
begin
if FBasicExtentIsValid then
exit(FBasicExtent);
FBasicExtent := EmptyExtent;
if Count > 0 then begin
if XCount > 0 then begin
if HasXErrorBars then
for i := 0 to Count - 1 do begin
GetXErrorBarLimits(i, vhi, vlo);
UpdateMinMax(vhi, FBasicExtent.a.X, FBasicExtent.b.X);
UpdateMinMax(vlo, FBasicExtent.a.X, FBasicExtent.b.X);
end
else
if IsSorted and (FSortBy = sbX) and (FSortIndex = 0) then begin
UpdateMinMax(Item[0]^.X, FBasicExtent.a.X, FBasicExtent.b.X);
UpdateMinMax(Item[Count-1]^.X, FBasicExtent.a.X, FBasicExtent.b.X);
end else
for i:=0 to Count - 1 do
UpdateMinMax(Item[i]^.X, FBasicExtent.a.X, FBasicExtent.b.X);
end else begin
FBasicExtent.a.X := 0;
FBasicExtent.b.X := Count - 1;
end;
if YCount > 0 then begin
if HasYErrorBars then
for i := 0 to Count - 1 do begin
GetYErrorBarLimits(i, vhi, vlo);
UpdateMinMax(vhi, FBasicExtent.a.Y, FBasicExtent.b.Y);
UpdateMinMax(vlo, FBasicExtent.a.Y, FBasicExtent.b.Y);
end
else
if IsSorted and (FSortBy = sbY) and (FSortIndex = 0) then begin
UpdateMinMax(Item[0]^.Y, FBasicExtent.a.Y, FBasicExtent.b.Y);
UpdateMinMax(Item[Count-1]^.Y, FBasicExtent.a.Y, FBasicExtent.b.Y);
end else
for i:=0 to Count - 1 do
UpdateMinMax(Item[i]^.Y, FBasicExtent.a.Y, FBasicExtent.b.Y);
end;
end;
FBasicExtentIsValid := not IsUpdating; // When updating, we are not allowed
// to set "Valid" for caches - see comment in TListChartSource.ClearCaches()
Result := FBasicExtent;
end;
procedure TCustomChartSource.BeforeDraw;
begin
// empty
end;
{ Calculates the extent including multiple x and/or y values (non-stacked)
UseXList = true: consider both XList and YList, otherwise only YList. }
function TCustomChartSource.CalcExtentXYList(UseXList: Boolean): TDoubleRect;
var
i, j: Integer;
jxp, jxn: Integer;
jyp, jyn: Integer;
begin
Result := Extent;
if UseXList and (XCount > 1) then begin
if not FXListExtentIsValid then begin
FXListExtent := EmptyExtent;
// Skip the x values used for error bars when calculating the list extent.
if XErrorBarData.Kind = ebkChartSource then begin
jxp := XErrorBarData.IndexPlus - 1; // -1 because XList index is offset by 1
jxn := XErrorBarData.IndexMinus - 1;
end else begin
jxp := -1;
jxn := -1;
end;
for i := 0 to Count - 1 do
with Item[i]^ do begin
for j := 0 to High(XList) do
if (j <> jxp) and (j <> jxn) then
UpdateMinMax(XList[j], FXListExtent.a.X, FXListExtent.b.X);
end;
FXListExtentIsValid := not IsUpdating; // When updating, we are not allowed
// to set "Valid" for caches - see comment in TListChartSource.ClearCaches()
end;
Result.a.X := Min(Result.a.X, FXListExtent.a.X);
Result.b.X := Max(Result.b.X, FXListExtent.b.X);
end;
if (YCount > 1) then begin
if not FYListExtentIsValid then begin
FYListExtent := EmptyExtent;
// Skip the y values used for error bars when calculating the list extent.
if YErrorBarData.Kind = ebkChartSource then begin
jyp := YErrorBarData.IndexPlus - 1; // -1 because YList index is offset by 1
jyn := YErrorBarData.IndexMinus - 1;
end else begin
jyp := -1;
jyn := -1;
end;
for i := 0 to Count - 1 do
with Item[i]^ do begin
for j := 0 to High(YList) do
if (j <> jyp) and (j <> jyn) then
UpdateMinMax(YList[j], FYListExtent.a.Y, FYListExtent.b.Y);
end;
FYListExtentIsValid := not IsUpdating; // When updating, we are not allowed
// to set "Valid" for caches - see comment in TListChartSource.ClearCaches()
end;
Result.a.Y := Min(Result.a.Y, FYListExtent.a.Y);
Result.b.Y := Max(Result.b.Y, FYListExtent.b.Y);
end;
end;
class procedure TCustomChartSource.CheckFormat(const AFormat: String);
begin
Format(AFormat, [0.0, 0.0, '', 0.0, 0.0]);
end;
constructor TCustomChartSource.Create(AOwner: TComponent);
var
i: Integer;
begin
inherited Create(AOwner);
FLabelSeparator := '|';
FSortBy := sbX;
FSortDir := sdAscending;
FSortIndex := 0;
FXCount := 1;
FYCount := 1;
SetLength(FYRange, 1);
SetLength(FYRangeValid, 1);
for i:=Low(FErrorBarData) to High(FErrorBarData) do begin
FErrorBarData[i] := TChartErrorBarData.Create;
FErrorBarData[i].OnChange := @ChangeErrorBars;
end;
end;
destructor TCustomChartSource.Destroy;
var
i: Integer;
begin
Finalize(FYRange);
Finalize(FYRangeValid);
for i:= Low(FErrorBarData) to High(FErrorBarData) do
FErrorBarData[i].Free;
inherited;
end;
procedure TCustomChartSource.ChangeErrorBars(Sender: TObject);
begin
Unused(Sender);
InvalidateCaches;
Notify;
end;
procedure TCustomChartSource.BeginUpdate;
begin
// Caches will be eventually invalidated in a corresponding EndUpdate() call.
// Since, at this moment, we are already sure, that caches will be invalidated,
// it's better to invalidate them immediately - this will prevent useless efforts
// to keep caches coherent between BeginUpdate() and EndUpdate() calls.
if FUpdateCount = 0 then
InvalidateCaches;
Inc(FUpdateCount);
end;
procedure TCustomChartSource.EndUpdate;
begin
Dec(FUpdateCount);
if FUpdateCount > 0 then exit;
// Values can be set directly between BeginUpdate and EndUpdate.
InvalidateCaches;
Notify;
end;
function TCustomChartSource.Extent: TDoubleRect;
begin
Result := BasicExtent;
end;
{ Calculates the extent of multiple y values stacked onto each other. }
function TCustomChartSource.ExtentCumulative: TDoubleRect;
var
h: Double;
i, j: Integer;
jyp, jyn: Integer;
begin
Result := Extent;
if (YCount > 1) then begin
if not FCumulativeExtentIsValid then begin
FCumulativeExtent := EmptyExtent;
// Skip the y values used for error bars when calculating the cumulative sum.
if YErrorBarData.Kind = ebkChartSource then begin
jyp := YErrorBarData.IndexPlus - 1; // -1 because YList index is offset by 1
jyn := YErrorBarData.IndexMinus - 1;
end else begin
jyp := -1;
jyn := -1;
end;
for i := 0 to Count - 1 do
with Item[i]^ do begin
h := NumberOr(Y);
for j := 0 to High(YList) do
if (j <> jyp) and (j <> jyn) then begin
h += NumberOr(YList[j]);
// If some of the Y values are negative, h may be non-monotonic.
UpdateMinMax(h, FCumulativeExtent.a.Y, FCumulativeExtent.b.Y);
end;
end;
FCumulativeExtentIsValid := not IsUpdating; // When updating, we are not allowed
// to set "Valid" for caches - see comment in TListChartSource.ClearCaches()
end;
Result.a.Y := Min(Result.a.Y, FCumulativeExtent.a.Y);
Result.b.Y := Max(Result.b.Y, FCumulativeExtent.b.Y);
end;
end;
{ Calculates the extent including multiple y values (non-stacked) }
function TCustomChartSource.ExtentList: TDoubleRect;
begin
Result := CalcExtentXYList(false);
end;
{ Calculates the extent including multiple x and y values (non-stacked) }
function TCustomChartSource.ExtentXYList: TDoubleRect;
begin
Result := CalcExtentXYList(true);
end;
// ALB -> leftmost item where X >= AXMin, or Count if no such item
// AUB -> rightmost item where X <= AXMax, or -1 if no such item
// If the source is sorted by X in the ascending order, performs
// binary search. Otherwise, skips NaNs.
procedure TCustomChartSource.FindBounds(
AXMin, AXMax: Double; out ALB, AUB: Integer);
function FindLB(const X: Double; L, R: Integer): Integer;
var
xVal: Double;
begin
while L <= R do begin
Result := (R - L) div 2 + L;
xVal := Item[Result]^.X;
if IsNaN(xVal) then
begin
if (Result = 0) or (Result = Count-1) then
break
else
dec(L)
end else
if xVal < X then
L := Result + 1
else
R := Result - 1;
end;
Result := L;
end;
function FindUB(const X: Double; L, R: Integer): Integer;
var
xVal: Double;
begin
while L <= R do begin
Result := (R - L) div 2 + L;
xVal := Item[Result]^.X;
if IsNaN(xVal) then
begin
if (Result = 0) or (Result = Count-1) then
break
else
inc(R);
end else
if xVal <= X then
L := Result + 1
else
R := Result - 1;
end;
Result := R;
end;
begin
EnsureOrder(AXMin, AXMax);
if (XCount = 0) then begin
if AXMin > Count-1 then ALB := Count
else if AXMin < 0 then ALB := 0
else ALB := ceil(AXMin);
if AXMax > Count-1 then AUB := Count - 1
else if AXMax < 0 then AUB := -1
else AUB := trunc(AXMax);
end else
if IsSortedByXAsc then begin
ALB := FindLB(AXMin, 0, Count - 1);
AUB := FindUB(AXMax, 0, Count - 1);
end
else begin
ALB := 0;
while ALB < Count do begin
with Item[ALB]^ do
if not IsNan(X) and (X >= AXMin) then break;
ALB += 1;
end;
AUB := Count - 1;
while AUB >= 0 do begin
with Item[AUB]^ do
if not IsNan(X) and (X <= AXMax) then break;
AUB -= 1;
end;
end;
end;
procedure TCustomChartSource.FindYRange(AXMin, AXMax: Double; Stacked: Boolean;
var AYMin, AYMax: Double);
var
lb, ub: Integer;
i, j: Integer;
sum: Double;
begin
FindBounds(AXMin, AXMax, lb, ub);
for i := lb to ub do
begin
if YCount = 1 then
UpdateMinMax(Item[i]^.Y, AYMin, AYMax)
else
if Stacked then
begin
sum := Item[i]^.Y;
for j := 0 to YCount-2 do
sum := sum + Item[i]^.YList[j];
UpdateMinMax(sum, AYMin, AYMax);
end else
begin
UpdateMinMax(Item[i]^.Y, AYMin, AYMax);
for j := 0 to YCount-2 do
UpdateMinMax(Item[i]^.YList[j], AYMin, AYMax);
end;
end
end;
function TCustomChartSource.FormatItem(
const AFormat: String; AIndex, AYIndex: Integer): String;
begin
with Item[AIndex]^ do
Result := FormatItemXYText(AFormat, Math.IfThen(XCount > 0, X, Double(AIndex)), GetY(AYIndex), GetText(AYIndex, FLabelSeparator));
end;
function TCustomChartSource.FormatItemXYText(
const AFormat: String; const AX, AY: Double; AText: String): String;
const
TO_PERCENT = 100;
var
total, percent: Double;
begin
total := ValuesTotal;
if total = 0 then
percent := 0
else
percent := TO_PERCENT / total;
Result := Format(AFormat, [AY, AY * percent, AText, total, AX]);
end;
function TCustomChartSource.GetEnumerator: TCustomChartSourceEnumerator;
begin
Result := TCustomChartSourceEnumerator.Create(Self);
end;
function TCustomChartSource.GetErrorBarData(AIndex: Integer): TChartErrorBarData;
begin
Result := FErrorBarData[AIndex];
end;
{ Returns the error bar values in positive and negative direction for the
x (which = 0) or y (which = 1) coordinates of the data point at the specified
index. The result is false if there is no error bar. }
function TCustomChartSource.GetErrorBarValues(APointIndex: Integer;
Which: Integer; out AUpperDelta, ALowerDelta: Double): Boolean;
var
v: Double;
pidx, nidx: Integer;
begin
Result := false;
AUpperDelta := 0;
ALowerDelta := 0;
if Which = 0 then
v := Math.IfThen(XCount > 0, Item[APointIndex]^.X, APointIndex)
else
v := Item[APointIndex]^.Y;
if IsNaN(v) then
exit;
if Assigned(FErrorBarData[Which]) then begin
case FErrorBarData[Which].Kind of
ebkNone:
exit;
ebkConst:
begin
AUpperDelta := FErrorBarData[Which].ValuePlus;
if FErrorBarData[Which].ValueMinus = -1 then
ALowerDelta := AUpperDelta
else
ALowerDelta := FErrorBarData[Which].ValueMinus;
end;
ebkPercent:
begin
AUpperDelta := v * FErrorBarData[Which].ValuePlus * PERCENT;
if FErrorBarData[Which].ValueMinus = -1 then
ALowerDelta := AUpperDelta
else
ALowerDelta := v * FErrorBarData[Which].ValueMinus * PERCENT;
end;
ebkChartSource:
if Which = 0 then begin
pidx := FErrorBarData[0].IndexPlus;
nidx := FErrorBarData[0].IndexMinus;
if not InRange(pidx, 0, XCount-1) then exit;
if (nidx <> -1) and not InRange(nidx, 0, XCount-1) then exit;
AUpperDelta := Item[APointIndex]^.GetX(pidx);
if nidx = -1 then
ALowerDelta := AUpperDelta
else
ALowerDelta := Item[APointIndex]^.GetX(nidx);
end else begin
pidx := FErrorBarData[1].IndexPlus;
nidx := FErrorBarData[1].IndexMinus;
if not InRange(pidx, 0, YCount-1) then exit;
if (nidx <> -1) and not InRange(nidx, 0, YCount-1) then exit;
AUpperDelta := Item[APointIndex]^.GetY(pidx);
if nidx = -1 then
ALowerDelta := AUpperDelta
else
ALowerDelta := Item[APointIndex]^.GetY(nidx);
end;
end;
AUpperDelta := abs(AUpperDelta);
ALowerDelta := abs(ALowerDelta);
Result := (AUpperDelta <> 0) and (ALowerDelta <> 0);
end;
end;
function TCustomChartSource.GetXErrorBarLimits(APointIndex: Integer;
out AUpperLimit, ALowerLimit: Double): Boolean;
var
v, dxp, dxn: Double;
begin
Result := GetErrorBarValues(APointIndex, 0, dxp, dxn);
v := Math.IfThen(XCount > 0, Item[APointIndex]^.X, APointIndex);
if Result and not IsNaN(v) then begin
AUpperLimit := v + dxp;
ALowerLimit := v - dxn;
end else begin
AUpperLimit := v;
ALowerLimit := v;
end;
end;
function TCustomChartSource.GetYErrorBarLimits(APointIndex: Integer;
out AUpperLimit, ALowerLimit: Double): Boolean;
var
v, dyp, dyn: Double;
begin
Result := GetErrorBarValues(APointIndex, 1, dyp, dyn);
v := Item[APointIndex]^.Y;
if Result and not IsNaN(v) then begin
AUpperLimit := v + dyp;
ALowerLimit := v - dyn;
end else begin
AUpperLimit := v;
ALowerLimit := v;
end;
end;
function TCustomChartSource.GetXErrorBarValues(APointIndex: Integer;
out AUpperDelta, ALowerDelta: Double): Boolean;
begin
Result := GetErrorBarValues(APointIndex, 0, AUpperDelta, ALowerDelta);
end;
function TCustomChartSource.GetYErrorBarValues(APointIndex: Integer;
out AUpperDelta, ALowerDelta: Double): Boolean;
begin
Result := GetErrorBarValues(APointIndex, 1, AUpperDelta, ALowerDelta);
end;
function TCustomChartSource.GetHasErrorBars(Which: Integer): Boolean;
var
errbar: TChartErrorBarData;
begin
Result := false;
errbar := FErrorBarData[Which];
if Assigned(errbar) then
case errbar.Kind of
ebkNone:
;
ebkConst, ebkPercent:
Result := (errbar.ValuePlus > 0) and
((errbar.ValueMinus = -1) or (errbar.ValueMinus > 0));
ebkChartSource:
Result := (errbar.IndexPlus > -1) and (errbar.IndexMinus >= -1);
end;
end;
function TCustomChartSource.HasSameSorting(ASource: TCustomChartSource): Boolean;
begin
case SortBy of
sbX, sbY:
Result := ASource.IsSorted and (ASource.SortBy = SortBy) and
(ASource.SortDir = SortDir) and (ASource.SortIndex = SortIndex);
sbColor, sbText:
Result := ASource.IsSorted and (ASource.SortBy = SortBy) and
(ASource.SortDir = SortDir);
sbCustom:
Result := false;
end;
end;
function TCustomChartSource.HasXErrorBars: Boolean;
begin
Result := GetHasErrorBars(0);
end;
function TCustomChartSource.HasYErrorBars: Boolean;
begin
Result := GetHasErrorBars(1);
end;
procedure TCustomChartSource.InvalidateCaches;
var
i: Integer;
begin
FBasicExtentIsValid := false;
FValuesTotalIsValid := false;
FCumulativeExtentIsValid := false;
FXListExtentIsValid := false;
FYListExtentIsValid := false;
if YCount <> MaxInt then
begin
SetLength(FYRangeValid, YCount);
SetLength(FYRange, YCount);
for i := 0 to High(FYRange) do
FYRangeValid[i] := false;
end else
SetLength(FYRangeValid, 0);
end;
function TCustomChartSource.IsErrorBarDataStored(AIndex: Integer): Boolean;
begin
with FErrorBarData[AIndex] do
Result := (FIndex[AIndex] <> -1) or (FValue[AIndex] <> -1) or (FKind <> ebkNone);
end;
function TCustomChartSource.IsSorted: Boolean;
begin
Result := false;
end;
function TCustomChartSource.IsSortedByXAsc: Boolean;
begin
Result := IsSorted and (FSortBy = sbX) and (FSortDir = sdAscending) and (FSortIndex = 0);
end;
function TCustomChartSource.IsXErrorIndex(AXIndex: Integer): Boolean;
begin
Result :=
(XErrorBarData.Kind = ebkChartSource) and
((XErrorBarData.IndexPlus = AXIndex) or (XErrorBarData.IndexMinus = AXIndex) and
(AXIndex > -1)
);
end;
function TCustomChartSource.IsYErrorIndex(AYIndex: Integer): Boolean;
begin
Result :=
(YErrorBarData.Kind = ebkChartSource) and
((YErrorBarData.IndexPlus = AYIndex) or (YErrorBarData.IndexMinus = AYIndex)) and
(AYIndex > -1);
end;
procedure TCustomChartSource.SetErrorBarData(AIndex: Integer;
AValue: TChartErrorBarData);
begin
FErrorBarData[AIndex] := AValue;
Notify;
end;
procedure TCustomChartSource.SetSortBy(AValue: TChartSortBy);
begin
if FSortBy <> AValue then
raise ESortError.CreateFmt(rsSourceSortError, [ClassName]);
end;
procedure TCustomChartSource.SetSortDir(AValue: TChartSortDir);
begin
if FSortDir <> AValue then
raise ESortError.CreateFmt(rsSourceSortError, [ClassName]);
end;
procedure TCustomChartSource.SetSortIndex(AValue: Cardinal);
begin
if FSortIndex <> AValue then
raise ESortError.CreateFmt(rsSourceSortError, [ClassName]);
end;
procedure TCustomChartSource.SetYCount(AValue: Cardinal);
begin
FYCount := AValue;
SetLength(FYRange, FYCount);
SetLength(FYRangeValid, FYCount);
end;
procedure TCustomChartSource.SortValuesInRange(
var AValues: TChartValueTextArray; AStart, AEnd: Integer);
var
i, j, next: Integer;
lst: TFPList;
p: PChartValueText;
tmp: TChartValueText;
begin
lst := TFPList.Create;
try
lst.Count := AEnd - AStart + 1;
for i := AStart to AEnd do
lst[i - AStart] := @AValues[i];
lst.Sort(@CompareChartValueTextPtr);
for i := AStart to AEnd do begin
if lst[i - AStart] = nil then continue;
j := i;
tmp := AValues[j];
while true do begin
p := PChartValueText(lst[j - AStart]);
lst[j - AStart] := nil;
{$PUSH}
{$HINTS OFF} // Work around the fpc bug #19582.
next := (PtrUInt(p) - PtrUInt(@AValues[0])) div SizeOf(p^);
{$POP}
if next = i then break;
AValues[j] := p^;
j := next;
end;
AValues[j] := tmp;
end;
finally
lst.Free;
end;
end;
procedure TCustomChartSource.ValuesInRange(
AParams: TValuesInRangeParams; var AValues: TChartValueTextArray);
procedure Put(
out ADest: TChartValueText; AValue: Double; AIndex: Integer); inline;
var
nx, ny: Double;
begin
AParams.RoundToImage(AValue);
ADest.FValue := AValue;
with Item[AIndex]^ do begin
if AParams.FUseY then begin
nx := Math.IfThen(XCount > 0, X, AIndex);
ny := AValue;
end
else begin
nx := AValue;
ny := Y;
end;
ADest.FText := FormatItemXYText(AParams.FFormat, nx, ny, Text);
end;
end;
var
prevImagePos: Integer = MaxInt;
function IsTooClose(const AValue: Double): Boolean;
var
imagePos: Integer;
begin
with AParams do
if aipUseMinLength in FIntervals.Options then begin
imagePos := ToImage(AValue);
Result := Abs(imagePos - prevImagePos) < FScale(FIntervals.MinLength);
end;
if not Result then
prevImagePos := imagePos;
end;
function EnsureMinLength(AStart, AEnd: Integer): Integer;
var
i: Integer;
v: Double;
begin
prevImagePos := MaxInt;
Result := AStart;
for i := AStart to AEnd do begin
v := AValues[i].FValue;
if InRange(v, AParams.FMin, AParams.FMax) and IsTooClose(v) then continue;
AValues[Result] := AValues[i];
Result += 1;
end;
end;
var
i, cnt, start: Integer;
v: Double;
lo, hi: TChartValueText;
begin
// Select all values in a given range, plus lower and upper bound values.
// Proceed through the (possibly unsorted) data source in a single pass.
start := Length(AValues);
SetLength(AValues, start + Count + 2);
cnt := start;
lo.FValue := NegInfinity;
hi.FValue := SafeInfinity;
AValues[start].FValue := SafeNan;
for i := 0 to Count - 1 do begin
with Item[I]^ do
v := Math.IfThen(AParams.FUseY, Y, Math.IfThen(XCount > 0, X, I));
if IsNan(v) then continue;
if v < AParams.FMin then begin
if v > lo.FValue then
Put(lo, v, i);
end
else if v > AParams.FMax then begin
if v < hi.FValue then
Put(hi, v, i);
end
else begin
if (aipUseMinLength in AParams.FIntervals.Options) and IsTooClose(v) then
continue;
if not IsInfinite(lo.FValue) and (cnt = start) then
cnt += 1;
Put(AValues[cnt], v, i);
cnt += 1;
end;
end;
if not IsInfinite(lo.FValue) then begin
if not IsNan(AValues[start].FValue) then begin
// The lower bound value occurred after the first in-range value,
// so we did not reserve space for it. Hopefully rare case.
for i := cnt downto start + 1 do
AValues[i] := AValues[i - 1];
cnt += 1;
end;
AValues[start] := lo;
if cnt = start then
cnt += 1;
end;
if not IsInfinite(hi.FValue) then begin
AValues[cnt] := hi;
cnt += 1;
end;
if not IsSortedByXAsc and not IsValueTextsSorted(AValues, start, cnt - 1) then begin
SortValuesInRange(AValues, start, cnt - 1);
if aipUseMinLength in AParams.FIntervals.Options then
cnt := EnsureMinLength(start, cnt - 1);
end;
SetLength(AValues, cnt);
end;
function TCustomChartSource.ValuesTotal: Double;
var
i: Integer;
begin
if FValuesTotalIsValid then exit(FValuesTotal);
FValuesTotal := 0;
for i := 0 to Count - 1 do
with Item[i]^ do
FValuesTotal += NumberOr(Y);
FValuesTotalIsValid := not IsUpdating; // When updating, we are not allowed
// to set "Valid" for caches - see comment in TListChartSource.ClearCaches()
Result := FValuesTotal;
end;
function TCustomChartSource.XOfMax(AIndex: Integer = 0): Double;
var
i: Integer;
begin
for i := 0 to Count - 1 do
with Item[i]^ do
if not IsNaN(Y) and (Y = Extent.b.Y) then begin
if XCount > 0 then
exit(GetX(AIndex))
else
exit(i);
end;
Result := 0.0;
end;
function TCustomChartSource.XOfMin(AIndex: Integer = 0): Double;
var
i: Integer;
begin
for i := 0 to Count - 1 do
with Item[i]^ do
if not IsNaN(Y) and (Y = Extent.a.Y) then begin
if XCount > 0 then
exit(GetX(AIndex))
else
exit(i);
end;
Result := 0.0;
end;
{ Returns the smallest and largest y value with the given y index. }
procedure TCustomChartSource.YRange(AYIndex: Integer; var AMin, AMax: Double);
var
i, yIdx: Integer;
begin
if (AYIndex < Length(FYRangeValid)) and FYRangeValid[AYIndex] then
begin
AMin := FYRange[AYIndex].FStart;
AMax := FYRange[AYIndex].FEnd;
end else
begin
AMin := +Infinity;
AMax := -Infinity;
if (AYIndex >= YCount) or (AYIndex < 0) then
exit;
if AYIndex = 0 then
for i := 0 to Count - 1 do
UpdateMinMax(Item[i]^.Y, AMin, AMax)
else
begin
yIdx := AYIndex - 1;
for i := 0 to Count - 1 do
UpdateMinMax(Item[i]^.YList[yIdx], AMin, AMax);
end;
if Length(FYRange) < FYCount then SetLength(FYRange, FYCount);
if Length(FYRangeValid) < FYCount then SetLength(FYRangeValid, FYCount);
FYRange[AYIndex].FStart := AMin;
FYRange[AYIndex].FEnd := AMax;
FYRangeValid[AYIndex] := true;
end;
end;
{ TCustomSortedChartSource }
constructor TCustomSortedChartSource.Create(AOwner: TComponent);
begin
inherited;
FData := TFPList.Create;
end;
destructor TCustomSortedChartSource.Destroy;
begin
FreeAndNil(FData);
inherited;
end;
function CompareFloat(const x1, x2: Double): Integer;
begin
if IsNaN(x1) then begin
if IsNaN(x2) then
Result := 0
else
Result := +1;
end else
if IsNaN(x2) then
Result := -1
else
Result := CompareValue(x1, x2);
end;
function TCustomSortedChartSource.DoCompare(AItem1, AItem2: Pointer): Integer;
var
item1: PChartDataItem absolute AItem1;
item2: PChartDataItem absolute AItem2;
d1, d2: Double;
begin
case FSortBy of
sbX:
if FSortIndex = 0 then
Result := CompareFloat(item1^.X, item2^.X)
else
if FSortIndex < FXCount then begin
if FSortIndex <= Cardinal(Length(item1^.XList)) then
d1 := item1^.XList[FSortIndex - 1]
else
d1 := SafeNan;
if FSortIndex <= Cardinal(Length(item2^.XList)) then
d2 := item2^.XList[FSortIndex - 1]
else
d2 := SafeNan;
Result := CompareFloat(d1, d2);
end else
Result := 0;
sbY:
if FSortIndex = 0 then
Result := CompareFloat(item1^.Y, item2^.Y)
else
if FSortIndex < FYCount then begin
if FSortIndex <= Cardinal(Length(item1^.YList)) then
d1 := item1^.YList[FSortIndex - 1]
else
d1 := SafeNan;
if FSortIndex <= Cardinal(Length(item2^.YList)) then
d2 := item2^.YList[FSortIndex - 1]
else
d2 := SafeNan;
Result := CompareFloat(d1, d2);
end else
Result := 0;
sbColor:
Result := CompareValue(item1^.Color, item2^.Color);
sbText:
Result := CompareText(item1^.Text, item2^.Text);
sbCustom:
if Assigned(FOnCompare) then
Result := FOnCompare(AItem1, AItem2)
else
Result := 0;
end;
if FSortDir = sdDescending then Result := -Result;
end;
{ Built-in sorting algorithm of the ChartSource - a QuickSort algorithm, copied
from the Classes unit and modified. Modifications are:
- uses an object's method for comparisons,
- does NOT exchange equal items - this would have some side effect here: let's
consider sorting by X, in the ascending order, for the following data points:
X=3, Text='ccc'
X=2, Text='bbb 1'
X=2, Text='bbb 2'
X=2, Text='bbb 3'
X=1, Text='aaa'
after sorting, data would be (note the reversed 'bbb' order):
X=1, Text='aaa'
X=2, Text='bbb 3'
X=2, Text='bbb 2'
X=2, Text='bbb 1'
X=3, Text='ccc'
after sorting AGAIN, data would be (note the original 'bbb' order):
X=1, Text='aaa'
X=2, Text='bbb 1'
X=2, Text='bbb 2'
X=2, Text='bbb 3'
X=3, Text='ccc'
}
procedure QuickSort(const List: PPointerList; const Compare: TChartSortCompare;
L, R: Longint); stdcall; // optimization: thanks to "stdcall", procedure
// parameters don't need to be copied on the stack
// in the "begin" code - they are already pushed on
// the stack
var
I, J: Longint;
P, Q: Pointer;
begin
repeat
I := L;
J := R;
P := List^[(L + R) div 2];
repeat
while Compare(P, List^[I]) > 0 do
I := I + 1;
while Compare(P, List^[J]) < 0 do
J := J - 1;
if I <= J then
begin
// do NOT exchange equal items
if Compare(List^[I], List^[J]) <> 0 then begin
Q := List^[I];
List^[I] := List^[J];
List^[J] := Q;
end;
I := I + 1;
J := J - 1;
end;
until I > J;
if J - L < R - I then
begin
if L < J then
QuickSort(List, Compare, L, J);
L := I;
end
else
begin
if I < R then
QuickSort(List, Compare, I, R);
R := J;
end;
until L >= R;
end;
procedure TCustomSortedChartSource.DoSort;
begin
if FData.Count < 2 then exit;
QuickSort(FData.List, @DoCompare, 0, FData.Count - 1);
end;
function TCustomSortedChartSource.GetCount: Integer;
begin
Result := FData.Count;
end;
function TCustomSortedChartSource.GetItem(AIndex: Integer): PChartDataItem;
begin
Result := PChartDataItem(FData.Items[AIndex]);
// Values can be set directly between BeginUpdate and EndUpdate.
// Getting a pointer to the item allows modifying item's data
// directly, so we can no longer be sure, that dataset is sorted -
// so, if FSortedAutoDetected is set, reset it.
if IsUpdating and FSortedAutoDetected then
ResetSortedAutoDetection;
end;
function TCustomSortedChartSource.GetItemInternal(AIndex: Integer): PChartDataItem;
var
SaveSortedAutoDetected: Boolean;
begin
// try..finally..end is not required here - it makes the execution slower,
// and the worst thing, that can theoretically happen here (in case of
// exception) is disabling the FSortedAutoDetected optimization
SaveSortedAutoDetected := FSortedAutoDetected;
Result := GetItem(AIndex);
FSortedAutoDetected := SaveSortedAutoDetected;
end;
function TCustomSortedChartSource.ItemAdd(AItem: PChartDataItem): Integer;
begin
if IsSorted then begin
if FSorted then begin
Result := ItemFind(AItem);
FData.Insert(Result, AItem);
end else begin
Result := FData.Add(AItem);
if Result > 0 then
if DoCompare(FData.List^[Result - 1], AItem) > 0 then
ResetSortedAutoDetection; // must be called AFTER adding new data
end;
end else
Result := FData.Add(AItem);
end;
procedure TCustomSortedChartSource.ItemInsert(AIndex: Integer; AItem: PChartDataItem);
begin
if IsSorted then
if AIndex <> ItemFind(AItem) then
if FSorted then
raise ESortError.CreateFmt('%0:s.ItemInsert cannot insert data at the requested '+
'position, because source is sorted', [ClassName])
else begin
FData.Insert(AIndex, AItem);
ResetSortedAutoDetection; // must be called AFTER inserting new data
exit;
end;
FData.Insert(AIndex, AItem);
end;
function TCustomSortedChartSource.ItemFind(AItem: PChartDataItem; L: Integer = 0; R: Integer = High(Integer)): Integer;
var
I: Integer;
begin
if L < 0 then
L := 0;
if R >= FData.Count then
R := FData.Count - 1;
// special optimization for adding sorted data at the end
if L > R then
exit(L);
if DoCompare(FData.List^[R], AItem) <= 0 then
exit(R + 1);
if not IsSorted then
raise ESortError.CreateFmt('%0:s.ItemFind failed, because source is not sorted', [ClassName]);
// use binary search
while L <= R do
begin
I := L + (R - L) div 2;
if DoCompare(FData.List^[I], AItem) <= 0 then
L := I + 1
else
R := I - 1;
end;
Result := L;
end;
function TCustomSortedChartSource.ItemModified(AIndex: Integer): Integer;
begin
Result := AIndex;
if IsSorted then begin
if FData.Count < 2 then exit;
if (AIndex < 0) or (AIndex >= FData.Count) then exit;
if AIndex > 0 then
if DoCompare(FData.List^[AIndex - 1], FData.List^[AIndex]) > 0 then begin
if FSorted then begin
Result := ItemFind(FData.List^[AIndex], 0, AIndex - 1);
// no Dec(Result) here, as it is below
FData.Move(AIndex, Result);
end else
ResetSortedAutoDetection;
exit; // optimization: the item cannot be unsorted from both sides
// simultaneously, so we can exit now
end;
if AIndex < FData.Count - 1 then
if DoCompare(FData.List^[AIndex], FData.List^[AIndex + 1]) > 0 then begin
if FSorted then begin
Result := ItemFind(FData.List^[AIndex], AIndex + 1, FData.Count - 1);
Dec(Result);
FData.Move(AIndex, Result);
end else
ResetSortedAutoDetection;
end;
end;
end;
procedure TCustomSortedChartSource.ItemDeleted(AIndex: Integer);
begin
// deleting decreases item count - so, if FSortedAutoDetected
// is not set, try to set it again, if possible
if not FSortedAutoDetected then
ResetSortedAutoDetection;
end;
function TCustomSortedChartSource.IsSorted: Boolean;
begin
Result := false;
if FSorted or FSortedAutoDetected then
case FSortBy of
sbX:
Result := (FSortIndex = 0) or (FSortIndex < FXCount);
sbY:
Result := (FSortIndex = 0) or (FSortIndex < FYCount);
sbColor, sbText:
Result := true;
sbCustom:
Result := Assigned(FOnCompare);
end;
end;
procedure TCustomSortedChartSource.ResetSortedAutoDetection;
begin
FSortedAutoDetected := FUseSortedAutoDetection and (FData.Count < 2) and
(FSortBy <> sbCustom);
end;
procedure TCustomSortedChartSource.SetSortedAutoDetected;
begin
FSortedAutoDetected := FUseSortedAutoDetection and (FSortBy <> sbCustom);
end;
procedure TCustomSortedChartSource.SetOnCompare(AValue: TChartSortCompare);
begin
if FOnCompare = AValue then exit;
FOnCompare := AValue;
// reset FSortedAutoDetected state and perform resorting only
// if FOnCompare is currently used
if FSortBy = sbCustom then begin
ResetSortedAutoDetection;
if IsSorted then SortNoNotify;
end;
Notify;
end;
procedure TCustomSortedChartSource.SetSortBy(AValue: TChartSortBy);
begin
if FSortBy = AValue then exit;
FSortBy := AValue;
ResetSortedAutoDetection;
if IsSorted then SortNoNotify;
Notify;
end;
procedure TCustomSortedChartSource.SetSortDir(AValue: TChartSortDir);
begin
if FSortDir = AValue then exit;
FSortDir := AValue;
ResetSortedAutoDetection;
if IsSorted then SortNoNotify;
Notify;
end;
procedure TCustomSortedChartSource.SetSorted(AValue: Boolean);
begin
if FSorted = AValue then exit;
FSorted := AValue;
// FSortedAutoDetected set to True means, that data is (already) sorted
// by using current sorting settings - in this case omit the code below,
// to avoid losing FSortedAutoDetected state and useless resorting
if not FSortedAutoDetected then begin
ResetSortedAutoDetection;
if IsSorted then SortNoNotify;
end;
Notify;
end;
procedure TCustomSortedChartSource.SetSortIndex(AValue: Cardinal);
begin
if FSortIndex = AValue then exit;
FSortIndex := AValue;
// reset FSortedAutoDetected state and perform resorting only
// if FSortIndex is currently used (in sbCustom mode it may be
// potentially used by the user's code)
if FSortBy in [sbX, sbY, sbCustom] then begin
ResetSortedAutoDetection;
if IsSorted then SortNoNotify;
end;
Notify;
end;
procedure TCustomSortedChartSource.SetUseSortedAutoDetection(AValue: Boolean);
begin
if FUseSortedAutoDetection = AValue then exit;
FUseSortedAutoDetection := AValue;
ResetSortedAutoDetection;
end;
procedure TCustomSortedChartSource.Sort;
var
SaveSorted: Boolean;
begin
if csLoading in ComponentState then exit;
// Avoid useless sorting and notification, if data is already
// sorted or if current sorting settings are invalid
if FSortedAutoDetected then exit;
SaveSorted := FSorted;
try
FSorted := true;
if not IsSorted then exit;
finally
FSorted := SaveSorted;
end;
DoSort;
SetSortedAutoDetected;
Notify;
end;
procedure TCustomSortedChartSource.SortNoNotify;
begin
{ Don't call BeginUpdate() to avoid invalidating the caches. }
Inc(FUpdateCount);
try
Sort;
finally
Dec(FUpdateCount);
end;
end;
end.
|