Menu

[r2009]: / trunk / Src / USearch.pas  Maximize  Restore  History

Download this file

1732 lines (1588 with data), 57.0 kB

   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
{
* USearch.pas
*
* Interfaces and classes that define and perform searches across snippets in
* the CodeSnip database. Also declares interfaces and classes to record search
* criteria.
*
* $Rev$
* $Date$
*
* ***** BEGIN LICENSE BLOCK *****
*
* Version: MPL 1.1
*
* The contents of this file are subject to the Mozilla Public License Version
* 1.1 (the "License"); you may not use this file except in compliance with the
* License. You may obtain a copy of the License at http://www.mozilla.org/MPL/
*
* Software distributed under the License is distributed on an "AS IS" basis,
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for
* the specific language governing rights and limitations under the License.
*
* The Original Code is USearch.pas
*
* The Initial Developer of the Original Code is Peter Johnson
* (http://www.delphidabbler.com/).
*
* Portions created by the Initial Developer are Copyright (C) 2005-2012 Peter
* Johnson. All Rights Reserved.
*
* Contributor(s)
* NONE
*
* ***** END LICENSE BLOCK *****
}
unit USearch;
// TODO: Rewrite this unit - it's all become rather messy!!
interface
uses
// Delphi
Classes, Windows {for inlining}, Graphics,
// Project
Compilers.UGlobals, DB.USnippet, UBaseObjects, USnippetIDs;
type
{
TSearchLogic:
Types of search. Controls how searches deal with multiple terms either by
requiring *all* terms to be found or *any* terms to be found. Can be used
with text search criteria (where the logic applies to the searched for
words) and compiler search criteria (where the logic applies to compiler
versions).
}
TSearchLogic = (
slAnd, // find snippets containing *all* supplied information
slOr // find snippets containing *any* supplied information
);
{
ISearchCriteria:
Base do-nothing interface for all search criteria. Enables all types of
search criteria to be passed to any search object.
}
ISearchCriteria = interface(IInterface)
['{C0F8DD70-ED30-4293-98B7-F1DD07AFAD54}']
end;
{
INulSearchCriteria:
Search criteria for nul searches. This is a do nothing criteria interface
whose purpose is simply to identify a nul search.
}
INulSearchCriteria = interface(ISearchCriteria)
['{B683726C-C4EC-43CD-AC76-4DB40390DC8F}']
end;
{
TTextSearchOption:
Search options used in text search criteria.
}
TTextSearchOption = (
soMatchCase, // only find words where case matches
soWholeWord // only match whole words
);
{
TTextSearchOptions:
Set of text search options.
}
TTextSearchOptions = set of TTextSearchOption;
{
ITextSearchCriteria:
Search criteria for text searches. Stores details of the words to be
searched for, the search logic and the search options.
}
ITextSearchCriteria = interface(ISearchCriteria)
['{9A4EB089-F863-48F9-B874-75CA2D75DF05}']
function GetWords: TStrings;
{Read accessor for Words property.
@return List of words to be searched for.
}
function GetLogic: TSearchLogic;
{Read accessor for Logic property.
@return Search logic to be used: AND or OR.
}
function GetOptions: TTextSearchOptions;
{Read accessor for Options property.
@return Set of options used to modify how search is performed.
}
property Words: TStrings read GetWords;
{List words to be searched for}
property Logic: TSearchLogic read GetLogic;
{Search logic to be used: AND or OR}
property Options: TTextSearchOptions read GetOptions;
{Set of options used to modify how search is performed}
end;
{
TCompilerSearchCompilers:
Set of compiler versions used in compiler search criteria.
}
TCompilerSearchCompilers = set of TCompilerID;
{
TCompilerSearchOption:
Search options applied to compiler search criteria.
}
TCompilerSearchOption = (
soCompileOK, // snippet compiles
soCompileNoWarn, // snippet compiles without warnings
soCompileWarn, // snippet compiles with warnings
soCompileFail, // snippet fails to compile
soUntested // snippet compilation not tested
);
{
ICompilerSearchCriteria:
Search criteria for compiler searches. Stores details of the compilers to be
searched for, the search logic and options concerning compilation success or
failure.
}
ICompilerSearchCriteria = interface(ISearchCriteria)
['{6DFAD486-C142-4B0F-873A-51075E285C0C}']
function GetCompilers: TCompilerSearchCompilers;
{Read accessor for Compilers property.
@return Set of compilers to be included in search.
}
function GetLogic: TSearchLogic;
{Read accessor for Logic property.
@return Search logic to be used: AND or OR.
}
function GetOption: TCompilerSearchOption;
{Read accessor for Option property.
@return Option determining the compilation outcome to be searched for.
}
property Compilers: TCompilerSearchCompilers read GetCompilers;
{Set of compilers to be included in search}
property Logic: TSearchLogic read GetLogic;
{Search logic to be used: AND or OR}
property Option: TCompilerSearchOption read GetOption;
{Option determining the compilation outcome to be searched for}
end;
{
ISelectionSearchCriteria:
Search criteria for manual snippet selection searches. Stores list of
snippets to be selected.
}
ISelectionSearchCriteria = interface(ISearchCriteria)
['{6FA6AC34-439B-4744-ACBC-1836EE140EB6}']
function GetSelectedItems: ISnippetIDList;
{Read accessor for SelectedItems property.
@return List of snippets to be selected in search.
}
property SelectedItems: ISnippetIDList read GetSelectedItems;
{List of snippets to be selected in search}
end;
{
IStoredSelectionSearchCriteria:
Search criteria for stored snippet selection searches. Stores list of
snippets to be selected.
}
IStoredSelectionSearchCriteria = interface(ISearchCriteria)
['{6FA6AC34-439B-4744-ACBC-1836EE140EB6}']
function GetSelectedItems: ISnippetIDList;
{Read accessor for SelectedItems property.
@return List of snippets to be selected in search.
}
property SelectedItems: ISnippetIDList read GetSelectedItems;
{List of snippets to be selected in search}
end;
{
TXRefSearchOption:
Search options used in XRef search criteria.
}
TXRefSearchOption = (
soRequired, // include required snippets in search results
soRequiredRecurse, // recursively find required snippets
soSeeAlso, // include X-refs ("see also") in search results
soSeeAlsoRecurse, // recursively find X-refs
soIncludeSnippet // include original snippet in search results
);
{
TXRefSearchOptions:
Set of XRef search options.
}
TXRefSearchOptions = set of TXRefSearchOption;
{
IXRefSearchCriteria:
Search criteria for snippet cross-reference searches. Stores details of
snippet whose x-refs are to be searched along with search options.
}
IXRefSearchCriteria = interface(ISearchCriteria)
['{92277B2B-AB48-4B3B-8C4F-6DCC71716D79}']
function GetBaseSnippet: TSnippet;
{Read accessor for BaseSnippet property.
@return Reference to initiating snippet.
}
function GetOptions: TXRefSearchOptions;
{Read accessor for Options property.
@return Set of options controlling XRef search.
}
property BaseSnippet: TSnippet read GetBaseSnippet;
{Initiating snippet for search}
property Options: TXRefSearchOptions read GetOptions;
{Options controlling XRef search}
end;
{
ISearchUIInfo:
Defines methods to be supported by search objects to provide information to
be used to display search information in the UI.
}
ISearchUIInfo = interface(IInterface)
['{920CAC6F-3944-42BF-A838-EEB7E76D4BBC}']
function Glyph: TBitmap;
{Provides a glyph to be used to indicate kind of search.
@return Reference to a bitmap storing glyph.
}
end;
{
ISearch:
Defines methods to be supported by search objects.
}
ISearch = interface(IInterface)
['{ADD777B6-28B7-4DF9-B537-F2ECE5CB545C}']
function GetCriteria: ISearchCriteria;
{Read accessor for Criteria property.
@return Criteria to be applied to search.
}
function Execute(const InList, FoundList: TSnippetList): Boolean;
{Executes the search, determining which of a list of snippets match the
search criteria.
@param InList [in] List of snippets that the search is applied to.
@param FoundList [in] List of snippets that match the search criteria.
@return True if some snippets were found or false if search failed.
}
function IsNul: Boolean;
{Checks if search is a nul search, i.e. it finds all snippets.
@return True if search is nul search and false otherwise.
}
property Criteria: ISearchCriteria read GetCriteria;
{Criteria to be applied to search}
end;
{
TSearchFactory:
Static class that creates and clones the different types of search objects.
}
TSearchFactory = class(TNoConstructObject)
public
class function CreateCompilerSearch(
const Criteria: ICompilerSearchCriteria): ISearch;
{Creates a compiler search object.
@param Criteria [in] Criteria to apply to search.
@return ISearch interface to compiler search object instance.
}
class function CreateTextSearch(
const Criteria: ITextSearchCriteria): ISearch;
{Creates a text search object.
@param Criteria [in] Criteria to apply to sarch.
@return ISearch interface to text search object instance.
}
class function CreateSelectionSearch(
const Criteria: ISelectionSearchCriteria): ISearch;
{Creates a selection search object.
@param Criteria [in] Criteria to apply to search.
@return ISearch interface to selection search object instance.
}
class function CreateStoredSelectionSearch(
const Criteria: IStoredSelectionSearchCriteria): ISearch;
class function CreateXRefSearch(
const Criteria: IXRefSearchCriteria): ISearch;
{Creates a cross-reference search object.
@param Criteria [in] Criteria to apply to search.
@return ISearch interface to cross-reference search object instance.
}
class function CreateNulSearch: ISearch;
{Creates a nul search object.
@return ISearch interface to nul search object instance.
}
class function CloneSearch(const ASearch: ISearch): ISearch;
{Creates a search object that is a clone of another search.
@param ASearch [in] Search object to clone. If nil a Nul search criteria
object is created.
@return ISearch interface of cloned object.
}
end;
{
TSearchCriteriaFactory:
Static class that creates different types of search criteria objects.
}
TSearchCriteriaFactory = class(TNoConstructObject)
public
class function CreateCompilerSearchCriteria(
const Compilers: TCompilerSearchCompilers; const Logic: TSearchLogic;
const Option: TCompilerSearchOption): ICompilerSearchCriteria;
{Creates a compiler search criteria object with specified property values.
@param Compilers [in] Set of compilers to be included in search.
@param Logic [in] Search logic to be used: AND or OR.
@param Option [in] Compilation outcome to be searched for.
@return ICompilerSearchCriteria interface to created object.
}
class function CreateTextSearchCriteria(
const Words: string; const Logic: TSearchLogic;
const Options: TTextSearchOptions): ITextSearchCriteria;
{Creates a text search criteria object with specified property values.
@param Words [in] List words to be searched for.
@param Logic [in] Search logic to be used: AND or OR.
@param Options [in] Set of options used to modify how search is
performed.
@return ITextSearchCriteria interface to created object.
}
class function CreateSelectionSearchCriteria(
const SelectedItems: ISnippetIDList): ISelectionSearchCriteria; overload;
{Creates a selection search criteria object with specified property
values.
@param SelectedItems [in] List snippets to be included in search.
@return ISelectionSearchCriteria interface to created object.
}
class function CreateSelectionSearchCriteria(
const SelectedSnippets: TSnippetList): ISelectionSearchCriteria; overload;
{Creates a selection search criteria object with specified property
values.
@param SelectedItems [in] List snippets to be included in search.
@return ISelectionSearchCriteria interface to created object.
}
class function CreateStoredSelectionSearchCriteria(
const SelectedSnippets: ISnippetIDList): IStoredSelectionSearchCriteria;
class function CreateXRefSearchCriteria(const BaseSnippet: TSnippet;
const Options: TXRefSearchOptions): IXRefSearchCriteria;
{Creates a cross-reference search criteria object with specified property
values.
@param BaseSnippet [in] Snippet whose cross references are to be
searched.
@param Options [in] Options controlling XRef search.
@return IXRefSearchCriteria interface to created object.
}
end;
implementation
uses
// Delphi
SysUtils, Character,
// Project
ActiveText.UMain, IntfCommon, UStrUtils;
type
{
TSearch:
Abstract base class for non-nul search objects. Each search object must
indicate whether a given snippet matches a search by overriding the Match
method.
}
TSearch = class(TInterfacedObject)
strict protected
function Match(const Snippet: TSnippet): Boolean; virtual; abstract;
{Checks whether a snippet matches the search criteria.
@param Snippet [in] Snippet to be tested.
@return True if snippet matches criteria, false if not.
}
protected
{ ISearch methods }
function Execute(const InList, FoundList: TSnippetList): Boolean;
{Executes the search, determining which of a list of snippets match the
search criteria.
@param InList [in] List of snippets that the search is applied to.
@param FoundList [in] List of snippets that match the search criteria.
@return True if some snippets were found or false if search failed.
}
function IsNul: Boolean;
{Checks if search is a nul search, i.e. it finds all snippets.
@return False. Assumes only non-nul search classes will be descended
from this class.
}
end;
{
TCompilerSearch:
Class that finds snippets depending on how they compile with specified
compilers.
}
TCompilerSearch = class(TSearch, ISearch)
strict private
fCriteria: ICompilerSearchCriteria;
{Search criteria}
strict protected
function Match(const Snippet: TSnippet): Boolean; override;
{Checks whether a snippet matches the search criteria.
@param Snippet [in] Snippet to be tested.
@return True if snippet matches criteria, false if not.
}
protected
{ ISearch methods not defined in base class }
function GetCriteria: ISearchCriteria;
{Read accessor for Criteria property.
@return Criteria to be applied to search.
}
public
constructor Create(const Criteria: ICompilerSearchCriteria);
{Class constructor. Sets up compiler search.
@param Critera [in] Criteria for this search.
}
end;
{
TTextSearch:
Class that finds snippets that match specified text.
}
TTextSearch = class(TSearch, ISearch)
strict private
fCriteria: ITextSearchCriteria;
{Search criteria}
strict protected
function Match(const Snippet: TSnippet): Boolean; override;
{Checks whether a snippet matches the search criteria.
@param Snippet [in] Snippet to be tested.
@return True if snippet matches criteria, false if not.
}
protected
{ ISearch methods not defined in base class }
function GetCriteria: ISearchCriteria;
{Read accessor for Criteria property.
@return Criteria to be applied to search.
}
public
constructor Create(const Criteria: ITextSearchCriteria);
{Class constructor. Sets up text search.
@param Critera [in] Criteria for this search.
}
end;
{
TSelectionSearch:
Class that selects snippets specified in a list.
}
TSelectionSearch = class(TSearch, ISearch)
strict private
fCriteria: ISelectionSearchCriteria;
{Search criteria}
strict protected
function Match(const Snippet: TSnippet): Boolean; override;
{Checks whether a snippet matches the search criteria.
@param Snippet [in] Snippet to be tested.
@return True if snippet matches criteria, false if not.
}
protected
{ ISearch methods not defined in base class }
function GetCriteria: ISearchCriteria;
{Read accessor for Criteria property.
@return Criteria to be applied to search.
}
public
constructor Create(const Criteria: ISelectionSearchCriteria);
{Class constructor. Sets up selection search.
@param Critera [in] Criteria for this search.
}
end;
TStoredSelectionSearch = class(TSearch, ISearch)
strict private
fCriteria: IStoredSelectionSearchCriteria;
{Search criteria}
strict protected
function Match(const Snippet: TSnippet): Boolean; override;
{Checks whether a snippet matches the search criteria.
@param Snippet [in] Snippet to be tested.
@return True if snippet matches criteria, false if not.
}
protected
{ ISearch methods not defined in base class }
function GetCriteria: ISearchCriteria;
{Read accessor for Criteria property.
@return Criteria to be applied to search.
}
public
constructor Create(const Criteria: IStoredSelectionSearchCriteria);
{Class constructor. Sets up selection search.
@param Critera [in] Criteria for this search.
}
end;
{
TXRefSearch:
Class that searches for snippets cross-referenced by a specified snippet.
}
TXRefSearch = class(TSearch, ISearch)
strict private
fCriteria: IXRefSearchCriteria;
{Search criteria}
fXRefs: TSnippetList;
{List of all cross-referenced snippets per current criteria}
function AddToXRefs(const Snippet: TSnippet): Boolean;
{Adds snippet to list of cross-references if not already in list.
@param Snippet [in] Snippet to add to list.
@return True if snippet added or false if snippet was already in list.
}
procedure ReferenceRequired(const Snippet: TSnippet);
{Adds all a snippet's required snippets to cross-reference list. These
references are only added if appropriate search option is set.
@param Snippet [in] Snippet whose required snippets are to be added to
x-ref list.
}
procedure ReferenceSeeAlso(const Snippet: TSnippet);
{Adds all a snippet's "see also" snippets to cross-reference list. These
references are only added if appropriate search option is set.
@param Snippet [in] Snippet whose "see also" snippets are to be added to
x-ref list.
}
procedure ReferenceSnippet(const Snippet: TSnippet);
{Adds a snippet to cross-reference list if it is not already present. Also
recursively adds the snippet's all its cross-referenced snippets if
appropriate search options are set.
@param Snippet [in] Snippet to add to x-ref list.
}
strict protected
function Match(const Snippet: TSnippet): Boolean; override;
{Checks whether a snippet matches the search criteria.
@param Snippet [in] Snippet to be tested.
@return True if snippet matches criteria, false if not.
}
protected
{ ISearch methods not defined in base class }
function GetCriteria: ISearchCriteria;
{Read accessor for Criteria property.
@return Criteria to be applied to search.
}
public
constructor Create(const Criteria: IXRefSearchCriteria);
{Class constructor. Sets up cross-reference search.
@param Critera [in] Criteria for this search.
}
destructor Destroy; override;
{Class destructor. Tears down object.
}
end;
{
TNulSearch:
Class that finds all snippets - a nul search.
}
TNulSearch = class(TInterfacedObject, ISearch)
strict private
fCriteria: INulSearchCriteria;
{Search criteria}
protected
{ ISearch methods }
function GetCriteria: ISearchCriteria;
{Read accessor for Criteria property.
@return Criteria to be applied to search.
}
function Execute(const InList, FoundList: TSnippetList): Boolean;
{Executes the search, determining which of a list of snippets match the
search criteria.
@param InList [in] List of snippets that the search is applied to.
@param FoundList [in] List of snippets that match the search criteria.
@return True if some snippets were found or false if search failed.
}
function IsNul: Boolean;
{Checks if search is a nul search, i.e. it finds all snippets.
@return True.
}
public
constructor Create;
{Class constructor. Sets up nul search.
}
end;
{
TBaseSearchCriteria:
Abstract base class for all search criteria objects that implements
ISearchUIInfo.
}
TBaseSearchCriteria = class(TInterfacedObject)
strict private
fBitmap: TBitmap;
{Stores bitmap of glyph associated with search type}
strict protected
function GlyphResourceName: string; virtual; abstract;
{Provides name of required glyph bitmap in resources.
@return Name of bitmap resource.
}
public
destructor Destroy; override;
{Class destructor. Tears down object.
}
function Glyph: TBitmap;
{Provides a glyph to be used to indicate kind of search.
@return Reference to a bitmap storing glyph.
}
end;
{
TCompilerSearchCriteria:
Search criteria for compiler searches. Stores details of the compilers to be
searched for, the search logic and the options concerning compilation
success or failure.
}
TCompilerSearchCriteria = class(TBaseSearchCriteria,
ISearchCriteria,
ICompilerSearchCriteria,
ISearchUIInfo
)
strict private
fCompilers: TCompilerSearchCompilers;
{Compilers to include in search}
fLogic: TSearchLogic;
{Search logic}
fOption: TCompilerSearchOption;
{Compile result option}
strict protected
function GlyphResourceName: string; override;
{Provides name of required glyph bitmap in resources.
@return Name of bitmap resource.
}
protected
{ ICompilerSearchCriteria methods }
function GetCompilers: TCompilerSearchCompilers;
{Read accessor for Compilers property.
@return Set of compilers to be included in search.
}
function GetLogic: TSearchLogic;
{Read accessor for Logic property.
@return Search logic to be used: AND or OR.
}
function GetOption: TCompilerSearchOption;
{Read accessor for Option property.
@return Option determining the compilation outcome to be searched for.
}
public
constructor Create(const Compilers: TCompilerSearchCompilers;
const Logic: TSearchLogic; const Option: TCompilerSearchOption);
{Class consructor. Sets up object with specified property values.
@param Compilers [in] Set of compilers to be included in search.
@param Logic [in] Search logic to be used: AND or OR.
@param Option [in] Determines compilation outcome to be searched for.
}
end;
{
TTextSearchCriteria:
Search criteria for text searches. Stores details of the words to be
searched for, the search logic and the options concerning how the text
search is implemented.
}
TTextSearchCriteria = class(TBaseSearchCriteria,
ISearchCriteria,
ITextSearchCriteria,
ISearchUIInfo
)
strict private
fWords: TStrings;
{List of search words}
fLogic: TSearchLogic;
{Search logic}
fOptions: TTextSearchOptions;
{Text search options}
strict protected
function GlyphResourceName: string; override;
{Provides name of required glyph bitmap in resources.
@return Name of bitmap resource.
}
protected
{ ITextSearchCriteria methods }
function GetWords: TStrings;
{Read accessor for Words property.
@return List of words to be searched for.
}
function GetLogic: TSearchLogic;
{Read accessor for Logic property.
@return Search logic to be used: AND or OR.
}
function GetOptions: TTextSearchOptions;
{Read accessor for Options property.
@return Set of options used to modify how search is performed.
}
public
constructor Create(const Words: string; const Logic: TSearchLogic;
const Options: TTextSearchOptions);
{Class constructor. Sets up object with specified property values.
@param Words [in] Words to be searched for, separated by spaces.
@param Logic [in] Search logic to be used: AND or OR.
@param Options [in] Set of options used to modify how search is
performed.
}
destructor Destroy; override;
{Class destructor. Tears down object.
}
end;
{
TSelectionSearchCriteria:
Search criteria for selection searches. Stores names of items to be
selected.
}
TSelectionSearchCriteria = class(TBaseSearchCriteria,
ISearchCriteria,
ISelectionSearchCriteria,
ISearchUIInfo
)
strict private
var
fSelectedItems: ISnippetIDList;
{List snippets ids to be selected in search}
strict protected
function GlyphResourceName: string; override;
{Provides name of required glyph bitmap in resources.
@return Name of bitmap resource.
}
protected
{ ISelectionSearchCriteria methods }
function GetSelectedItems: ISnippetIDList;
{Read accessor for SelectedItems property.
@return List of snippets to be selected in search.
}
public
constructor Create(const SelectedItems: ISnippetIDList);
{Class constructor. Sets up object with specified property values.
@param SelectedItems [in] List of snippets to be selected in search.
}
end;
TStoredSelectionSearchCriteria = class(TBaseSearchCriteria,
ISearchCriteria,
IStoredSelectionSearchCriteria,
ISearchUIInfo
)
strict private
var
fSelectedItems: ISnippetIDList;
{List snippets ids to be selected in search}
strict protected
function GlyphResourceName: string; override;
{Provides name of required glyph bitmap in resources.
@return Name of bitmap resource.
}
protected
{ ISelectionSearchCriteria methods }
function GetSelectedItems: ISnippetIDList;
{Read accessor for SelectedItems property.
@return List of snippets to be selected in search.
}
public
constructor Create(const SelectedItems: ISnippetIDList);
{Class constructor. Sets up object with specified property values.
@param SelectedItems [in] List of snippets to be selected in search.
}
end;
{
TXRefSearchCriteria:
Search criteria for cross-reference searches. Stores snippet whose x-refs
are to be searched along with search options.
}
TXRefSearchCriteria = class(TBaseSearchCriteria,
ISearchCriteria,
IXRefSearchCriteria,
ISearchUIInfo
)
strict private
fBaseSnippet: TSnippet;
{Snippet to which search of cross-references applies}
fOptions: TXRefSearchOptions;
{Set of poptions controlling XRef search}
strict protected
function GlyphResourceName: string; override;
{Provides name of required glyph bitmap in resources.
@return Name of bitmap resource.
}
protected
{ IXRefSearchCriteria methods }
function GetBaseSnippet: TSnippet;
{Read accessor for BaseSnippet property.
@return Reference to initiating snippet.
}
function GetOptions: TXRefSearchOptions;
{Read accessor for Options property.
@return Set of options controlling XRef search.
}
public
constructor Create(const BaseSnippet: TSnippet;
const Options: TXRefSearchOptions);
{Class constructor. Sets up object with specified property values.
@param BaseSnippet [in] Snippet whose cross references are to be
searched.
@param Options [in] Set of options conrtolling search.
}
end;
{
TNulSearchCriteria:
Do nothing object that implements the nul search criteria interface UI info
interfaces.
}
TNulSearchCriteria = class(TBaseSearchCriteria,
ISearchCriteria,
INulSearchCriteria,
ISearchUIInfo
)
strict protected
function GlyphResourceName: string; override;
{Provides name of required glyph bitmap in resources.
@return Name of bitmap resource.
}
end;
{ TSearch }
function TSearch.Execute(const InList, FoundList: TSnippetList): Boolean;
{Executes the search, determining which of a list of snippets match the search
criteria.
@param InList [in] List of snippets that the search is applied to.
@param FoundList [in] List of snippets that match the search criteria.
@return True if some snippets were found or false if search failed.
}
var
Snippet: TSnippet; // each snippet in InList
begin
Assert(Assigned(InList), ClassName + '.Execute: InList is nil');
Assert(Assigned(FoundList), ClassName + '.Execute: FoundList is nil');
Assert(InList <> FoundList, ClassName + '.Execute: InList = FoundList');
FoundList.Clear;
for Snippet in InList do
if Match(Snippet) then
FoundList.Add(Snippet);
Result := FoundList.Count > 0;
end;
function TSearch.IsNul: Boolean;
{Checks if search is a nul search, i.e. it finds all snippets.
@return False. Assumes only non-nul search classes will be descended from
this class.
}
begin
Result := False;
end;
{ TCompilerSearch }
constructor TCompilerSearch.Create(const Criteria: ICompilerSearchCriteria);
{Class constructor. Sets up compiler search.
@param Critera [in] Criteria for this search.
}
begin
Assert(Assigned(Criteria), ClassName + '.Create: Criteria is nil');
inherited Create;
// Record search criteria
fCriteria := Criteria;
end;
function TCompilerSearch.GetCriteria: ISearchCriteria;
{Read accessor for Criteria property.
@return Criteria to be applied to search.
}
begin
Result := fCriteria;
end;
function TCompilerSearch.Match(const Snippet: TSnippet): Boolean;
{Checks whether a snippet matches the search criteria.
@param Snippet [in] Snippet to be tested.
@return True if snippet matches criteria, false if not.
}
const
// Maps compiler search option onto set of compiler results it describes
cCompatMap: array[TCompilerSearchOption] of set of TCompileResult = (
[crSuccess, crWarning], // soCompileOK,
[crSuccess], // soCompileNoWarn,
[crWarning], // soCompileWarn,
[crError], // soCompileFail,
[crQuery] // soUnkown
);
// Checks if a snippet's compiler result for given compiler ID matches
// expected results.
function CompatibilityMatches(const CompID: TCompilerID): Boolean;
begin
Result := Snippet.Compatibility[CompID] in cCompatMap[fCriteria.Option];
end;
var
CompID: TCompilerID; // loops thru supported compilers
begin
if fCriteria.Logic = slOr then
begin
// Find any compiler: we return true as soon as any compiler compatibility
// matches
Result := False;
for CompID in fCriteria.Compilers do
begin
if CompatibilityMatches(CompID) then
Exit(True);
end;
end
else {fLogic = slAnd}
begin
// Find all compilers: we return false as soon as any compiler compatibility
// doesn't match
Result := True;
for CompID in fCriteria.Compilers do
begin
if not CompatibilityMatches(CompID) then
Exit(False);
end;
end;
end;
{ TTextSearch }
constructor TTextSearch.Create(const Criteria: ITextSearchCriteria);
{Class constructor. Sets up text search.
@param Critera [in] Criteria for this search.
}
begin
Assert(Assigned(Criteria), ClassName + '.Create: Criteria is nil');
inherited Create;
// Record search criteria
fCriteria := Criteria;
end;
function TTextSearch.GetCriteria: ISearchCriteria;
{Read accessor for Criteria property.
@return Criteria to be applied to search.
}
begin
Result := fCriteria;
end;
function TTextSearch.Match(const Snippet: TSnippet): Boolean;
{Checks whether a snippet matches the search criteria.
@param Snippet [in] Snippet to be tested.
@return True if snippet matches criteria, false if not.
}
// ---------------------------------------------------------------------------
function NormaliseSearchText(const RawText: string): string;
{Converts the text to be searched into a standard format.
@param RawText [in] Text to be normalised.
@return Normalised text: quote characters are deleted, all words ending in
punctuation are included in list in punctuated and non-punctuated state
and all words are separated by a single space.
}
// Replace each white space char in string S with single space character.
function WhiteSpaceToSpaces(const S: string): string;
var
Idx: Integer; // loops through chars of S
begin
// Pre-size spaced text string: same size as raw text input
SetLength(Result, Length(S));
// Convert all white space characters to spaces
for Idx := 1 to Length(S) do
begin
if TCharacter.IsWhiteSpace(S[Idx]) then
Result[Idx] := ' '
else
Result[Idx] := S[Idx]
end;
end;
// Strip single and double quotes from a string S.
procedure StripQuotes(var S: string);
begin
if S = '' then
Exit;
if (S[1] = '''') or (S[1] = '"') then
Delete(S, 1, 1);
if (S <> '') and
((S[Length(S)] = '''') or (S[Length(S)] = '"')) then
Delete(S, Length(S), 1);
end;
var
Words: TStringList; // list of words from raw text
Word: string; // a word from Words list
WordIdx: Integer; // index into Words list
ExtraWords: TStringList; // extra search words derived from Words list
const
// Characters that can end words
cWordEnders = [
'!', '"', '%', '^', '&', '*', '(', ')', '-', '+', '=',
'{', '}', '[', ']', ':', ';', '~', '<', '>', ',', '.',
'?', '/', '|', '\', ''''
];
begin
ExtraWords := nil;
Words := TStringList.Create;
try
ExtraWords := TStringList.Create;
// Convert text to word list and process each word
StrExplode(WhiteSpaceToSpaces(RawText), ' ', Words, False);
for WordIdx := 0 to Pred(Words.Count) do
begin
Word := Words[WordIdx];
StripQuotes(Word);
Words[WordIdx] := Word;
// Add any word ending in punctuation in non-punctuated state
// (note that any word ending in x punctuation character will be added
// several times, once with each of x, x-1, x-2 ... 0 punctuation
// characters.
// We need to do this in case user searches for a word followed by one
// or more punctuation characters.
while (Word <> '') and CharInSet(Word[Length(Word)], cWordEnders) do
begin
// we add any variations to Extra words list
Delete(Word, Length(Word), 1);
ExtraWords.Add(Word);
end;
end;
Result := ' ' + StrJoin(Words, ' ', False) + ' '
+ StrJoin(ExtraWords, ' ', False) + ' ';
if not (soMatchCase in fCriteria.Options) then
Result := StrToLower(Result);
finally
ExtraWords.Free;
Words.Free;
end;
end;
function NormaliseSearchWord(const Word: string): string;
{Converts a word being searched for into correct format for searching
depending on search options.
@param Word [in] Word to be normalised.
@return Normalised word: if case being ignored word is lower case and if
whole words being matched word is topped and tailed by a space.
}
begin
Result := Word;
if not (soMatchCase in fCriteria.Options) then
Result := StrToLower(Result);
if soWholeWord in fCriteria.Options then
Result := ' ' + Result + ' ';
end;
// ---------------------------------------------------------------------------
var
SearchText: string; // text we're searching in
SearchWord: string; // a word we're searching for
begin
// Build search text
SearchText := NormaliseSearchText(
' ' + StrMakeSentence(Snippet.Description.ToString) +
' ' + Snippet.SourceCode +
' ' + StrMakeSentence(Snippet.Extra.ToString) +
' '
);
if fCriteria.Logic = slOr then
begin
// Find any of words in search text: return True as soon as any word matches
Result := False;
for SearchWord in fCriteria.Words do
if StrContainsStr(NormaliseSearchWord(SearchWord), SearchText) then
Exit(True);
end
else {fLogic = slAnd}
begin
// Find all words in search text: return False as soon as any word doesn't
// match
Result := True;
for SearchWord in fCriteria.Words do
if not StrContainsStr(NormaliseSearchWord(SearchWord), SearchText) then
Exit(False);
end;
end;
{ TSelectionSearch }
constructor TSelectionSearch.Create(const Criteria: ISelectionSearchCriteria);
{Class constructor. Sets up selection search.
@param Critera [in] Criteria for this search.
}
begin
Assert(Assigned(Criteria), ClassName + '.Create: Criteria is nil');
inherited Create;
// Record search criteria
fCriteria := Criteria;
end;
function TSelectionSearch.GetCriteria: ISearchCriteria;
{Read accessor for Criteria property.
@return Criteria to be applied to search.
}
begin
Result := fCriteria;
end;
function TSelectionSearch.Match(const Snippet: TSnippet): Boolean;
{Checks whether a snippet matches the search criteria.
@param Snippet [in] Snippet to be tested.
@return True if snippet matches criteria, false if not.
}
begin
Result := fCriteria.SelectedItems.Contains(Snippet.ID);
end;
{ TStoredSelectionSearch }
constructor TStoredSelectionSearch.Create(
const Criteria: IStoredSelectionSearchCriteria);
begin
Assert(Assigned(Criteria), ClassName + '.Create: Criteria is nil');
inherited Create;
fCriteria := Criteria;
end;
function TStoredSelectionSearch.GetCriteria: ISearchCriteria;
begin
Result := fCriteria;
end;
function TStoredSelectionSearch.Match(const Snippet: TSnippet): Boolean;
begin
Result := fCriteria.SelectedItems.Contains(Snippet.ID);
end;
{ TXRefSearch }
function TXRefSearch.AddToXRefs(const Snippet: TSnippet): Boolean;
{Adds snippet to list of cross-references if not already in list.
@param Snippet [in] Snippet to add to list.
@return True if snippet added or false if snippet was already in list.
}
begin
Result := not fXRefs.Contains(Snippet);
if Result then
fXRefs.Add(Snippet);
end;
constructor TXRefSearch.Create(const Criteria: IXRefSearchCriteria);
{Class constructor. Sets up cross-reference search.
@param Critera [in] Criteria for this search.
}
begin
Assert(Assigned(Criteria), ClassName + '.Create: Criteria is nil');
inherited Create;
// Record search criteria
fCriteria := Criteria;
// Create and populate list of cross-referenced snippets
fXRefs := TSnippetList.Create;
// reference required and "see also" snippets
// these methods do nothing if appropriate search options not set
ReferenceRequired(fCriteria.BaseSnippet);
ReferenceSeeAlso(fCriteria.BaseSnippet);
// add base snippet if appropriate search option set
if soIncludeSnippet in fCriteria.Options then
AddToXRefs(fCriteria.BaseSnippet);
end;
destructor TXRefSearch.Destroy;
{Class destructor. Tears down object.
}
begin
FreeAndNil(fXRefs);
inherited;
end;
function TXRefSearch.GetCriteria: ISearchCriteria;
{Read accessor for Criteria property.
@return Criteria to be applied to search.
}
begin
Result := fCriteria;
end;
function TXRefSearch.Match(const Snippet: TSnippet): Boolean;
{Checks whether a snippet matches the search criteria.
@param Snippet [in] Snippet to be tested.
@return True if snippet matches criteria, false if not.
}
begin
// We have already set up list of x-ref snippets: simply look up snippet in it
Result := fXRefs.Contains(Snippet);
end;
procedure TXRefSearch.ReferenceRequired(const Snippet: TSnippet);
{Adds all a snippet's required snippets to cross-reference list. These
references are only added if appropriate search option is set.
@param Snippet [in] Snippet whose required snippets are to be added to x-ref
list.
}
var
Idx: Integer; // loops thru all required snippets
begin
if soRequired in fCriteria.Options then
for Idx := 0 to Pred(Snippet.Depends.Count) do
ReferenceSnippet(Snippet.Depends[Idx]);
end;
procedure TXRefSearch.ReferenceSnippet(const Snippet: TSnippet);
{Adds a snippet to cross-reference list if it is not already present. Also
recursively adds the snippet's all its cross-referenced snippets if
appropriate search options are set.
@param Snippet [in] Snippet to add to x-ref list.
}
begin
// Add snippet to list if not present. Quit if snippet already referenced.
if not AddToXRefs(Snippet) then
Exit;
// Recurse required snippets if specified in options
if soRequiredRecurse in fCriteria.Options then
ReferenceRequired(Snippet);
// Recurse "see also" snippets if specified in options
if soSeeAlsoRecurse in fCriteria.Options then
ReferenceSeeAlso(Snippet);
end;
procedure TXRefSearch.ReferenceSeeAlso(const Snippet: TSnippet);
{Adds all a snippet's "see also" snippets to cross-reference list. These
references are only added if appropriate search option is set.
@param Snippet [in] Snippet whose "see also" snippets are to be added to
x-ref list.
}
var
Idx: Integer; // loops thru all "see also" snippets
begin
if soSeeAlso in fCriteria.Options then
for Idx := 0 to Pred(Snippet.XRef.Count) do
ReferenceSnippet(Snippet.XRef[Idx]);
end;
{ TBaseSearchCriteria }
destructor TBaseSearchCriteria.Destroy;
{Class destructor. Tears down object.
}
begin
FreeAndNil(fBitmap);
inherited;
end;
function TBaseSearchCriteria.Glyph: TBitmap;
{Provides a glyph to be used to indicate kind of search.
@return Reference to a bitmap storing glyph.
}
begin
if not Assigned(fBitmap) then
begin
// Bitmap not yet created: create it and load from resources
fBitmap := TBitmap.Create;
fBitmap.LoadFromResourceName(HInstance, GlyphResourceName);
end;
Result := fBitmap;
end;
{ TNulSearch }
constructor TNulSearch.Create;
{Class constructor. Sets up nul search.
}
begin
inherited Create;
// Create nul search criteria object
fCriteria := TNulSearchCriteria.Create;
end;
function TNulSearch.Execute(const InList, FoundList: TSnippetList): Boolean;
{Executes the search, determining which of a list of snippets match the
search criteria.
@param InList [in] List of snippets that the search is applied to.
@param FoundList [in] List of snippets that match the search criteria.
@return True if some snippets were found or false if search failed.
}
begin
Assert(Assigned(InList), ClassName + '.Execute: InList is nil');
Assert(Assigned(FoundList), ClassName + '.Execute: FoundList is nil');
Assert(InList <> FoundList, ClassName + '.Execute: InList = FoundList');
// Nul search finds all items: simply copy source list to found list
FoundList.Assign(InList);
// Return true unless there are no snippets in original
Result := InList.Count > 0;
end;
function TNulSearch.GetCriteria: ISearchCriteria;
{Read accessor for Criteria property.
@return Criteria to be applied to search.
}
begin
Result := fCriteria;
end;
function TNulSearch.IsNul: Boolean;
{Checks if search is a nul search, i.e. it finds all snippets.
@return True.
}
begin
Result := True;
end;
{ TCompilerSearchCriteria }
constructor TCompilerSearchCriteria.Create(
const Compilers: TCompilerSearchCompilers; const Logic: TSearchLogic;
const Option: TCompilerSearchOption);
{Class consructor. Sets up object with specified property values.
@param Compilers [in] Set of compilers to be included in search.
@param Logic [in] Search logic to be used: AND or OR.
@param Option [in] Determines compilation outcome to be searched for.
}
begin
inherited Create;
// Store properties
fCompilers := Compilers;
fLogic := Logic;
fOption := Option;
end;
function TCompilerSearchCriteria.GetCompilers: TCompilerSearchCompilers;
{Read accessor for Compilers property.
@return Set of compilers to be included in search.
}
begin
Result := fCompilers;
end;
function TCompilerSearchCriteria.GetLogic: TSearchLogic;
{Read accessor for Logic property.
@return Search logic to be used: AND or OR.
}
begin
Result := fLogic;
end;
function TCompilerSearchCriteria.GetOption: TCompilerSearchOption;
{Read accessor for Option property.
@return Option determining the compilation outcome to be searched for.
}
begin
Result := fOption;
end;
function TCompilerSearchCriteria.GlyphResourceName: string;
{Provides name of required glyph bitmap in resources.
@return Name of bitmap resource.
}
begin
Result := 'COMPILERSEARCH';
end;
{ TTextSearchCriteria }
constructor TTextSearchCriteria.Create(const Words: string;
const Logic: TSearchLogic; const Options: TTextSearchOptions);
{Class constructor. Sets up object with specified property values.
@param Words [in] Words to be searched for, separated by spaces.
@param Logic [in] Search logic to be used: AND or OR.
@param Options [in] Set of options used to modify how search is performed.
}
begin
Assert(Words <> '', ClassName + '.Create: Words is empty string');
inherited Create;
// Store properties
fLogic := Logic;
fOptions := Options;
// store each search word as entry in string list
fWords := TStringList.Create;
StrExplode(StrCompressWhiteSpace(Words), ' ', fWords);
end;
destructor TTextSearchCriteria.Destroy;
{Class destructor. Tears down object.
}
begin
fWords.Free;
inherited;
end;
function TTextSearchCriteria.GetLogic: TSearchLogic;
{Read accessor for Logic property.
@return Search logic to be used: AND or OR.
}
begin
Result := fLogic;
end;
function TTextSearchCriteria.GetOptions: TTextSearchOptions;
{Read accessor for Options property.
@return Set of options used to modify how search is performed.
}
begin
Result := fOptions;
end;
function TTextSearchCriteria.GetWords: TStrings;
{Read accessor for Words property.
@return List of words to be searched for.
}
begin
Result := fWords;
end;
function TTextSearchCriteria.GlyphResourceName: string;
{Provides name of required glyph bitmap in resources.
@return Name of bitmap resource.
}
begin
Result := 'TEXTSEARCH';
end;
{ TSelectionSearchCriteria }
constructor TSelectionSearchCriteria.Create(
const SelectedItems: ISnippetIDList);
{Class constructor. Sets up object with specified property values.
@param SelectedItems [in] List of snippets to be selected in search.
}
begin
inherited Create;
fSelectedItems := TSnippetIDList.Create;
(fSelectedItems as IAssignable).Assign(SelectedItems);
end;
function TSelectionSearchCriteria.GetSelectedItems: ISnippetIDList;
{Read accessor for SelectedItems property.
@return List of snippets to be selected in search.
}
begin
Result := fSelectedItems;
end;
function TSelectionSearchCriteria.GlyphResourceName: string;
{Provides name of required glyph bitmap in resources.
@return Name of bitmap resource.
}
begin
Result := 'SELECTIONSEARCH';
end;
{ TStoredSelectionSearchCriteria }
constructor TStoredSelectionSearchCriteria.Create(
const SelectedItems: ISnippetIDList);
begin
inherited Create;
fSelectedItems := TSnippetIDList.Create;
(fSelectedItems as IAssignable).Assign(SelectedItems);
end;
function TStoredSelectionSearchCriteria.GetSelectedItems: ISnippetIDList;
begin
Result := fSelectedItems;
end;
function TStoredSelectionSearchCriteria.GlyphResourceName: string;
begin
Result := 'STOREDSELECTIONSEARCH';
end;
{ TXRefSearchCriteria }
constructor TXRefSearchCriteria.Create(const BaseSnippet: TSnippet;
const Options: TXRefSearchOptions);
{Class constructor. Sets up object with specified property values.
@param BaseSnippet [in] Snippet whose cross references are to be searched.
@param Options [in] Set of options conrtolling search.
}
begin
Assert(Assigned(BaseSnippet), ClassName + '.Create: BaseSnippet is nil');
inherited Create;
fBaseSnippet := BaseSnippet;
fOptions := Options;
end;
function TXRefSearchCriteria.GetBaseSnippet: TSnippet;
{Read accessor for BaseSnippet property.
@return Reference to initiating snippet.
}
begin
Result := fBaseSnippet;
end;
function TXRefSearchCriteria.GetOptions: TXRefSearchOptions;
{Read accessor for Options property.
@return Set of options controlling XRef search.
}
begin
Result := fOptions;
end;
function TXRefSearchCriteria.GlyphResourceName: string;
{Provides name of required glyph bitmap in resources.
@return Name of bitmap resource.
}
begin
Result := 'XREFSEARCH';
end;
{ TNulSearchCriteria }
function TNulSearchCriteria.GlyphResourceName: string;
{Provides name of required glyph bitmap in resources.
@return Name of bitmap resource.
}
begin
Result := 'NULSEARCH';
end;
{ TSearchFactory }
class function TSearchFactory.CloneSearch(const ASearch: ISearch): ISearch;
{Creates a search object that is a clone of another search.
@param ASearch [in] Search object to clone. If nil a Nul search criteria
object is created.
@return ISearch interface of cloned object.
}
var
TextCriteria: ITextSearchCriteria; // text search criteria
CompilerCriteria: ICompilerSearchCriteria; // compiler search criteria
SelectionCriteria: ISelectionSearchCriteria; // selection search criteria
XRefCriteria: IXRefSearchCriteria; // cross-ref search criteria
begin
// Assume error result
Result := nil;
if not Assigned(ASearch)
or Supports(ASearch.Criteria, INulSearchCriteria) then
// source is nil or Nul search object: create a nul search object
Result := TSearchFactory.CreateNulSearch
else if Supports(ASearch.Criteria, ITextSearchCriteria, TextCriteria) then
// source is text search object
Result := TSearchFactory.CreateTextSearch(
TSearchCriteriaFactory.CreateTextSearchCriteria(
StrJoin(TextCriteria.Words, ' '),
TextCriteria.Logic,
TextCriteria.Options
)
)
else if Supports(
ASearch.Criteria, ICompilerSearchCriteria, CompilerCriteria
) then
// source is compiler search object
Result := TSearchFactory.CreateCompilerSearch(
TSearchCriteriaFactory.CreateCompilerSearchCriteria(
CompilerCriteria.Compilers,
CompilerCriteria.Logic,
CompilerCriteria.Option
)
)
else if Supports(
ASearch.Criteria, ISelectionSearchCriteria, SelectionCriteria
) then
// source is selection search object
Result := TSearchFactory.CreateSelectionSearch(
TSearchCriteriaFactory.CreateSelectionSearchCriteria(
SelectionCriteria.SelectedItems
)
)
else if Supports(
ASearch.Criteria, IXRefSearchCriteria, XRefCriteria
) then
// source is cross-reference search object
Result := TSearchFactory.CreateXRefSearch(
TSearchCriteriaFactory.CreateXRefSearchCriteria(
XRefCriteria.BaseSnippet,
XRefCriteria.Options
)
);
Assert(Assigned(Result), ClassName + '.CloneSearch: Unknown ASearch type');
end;
class function TSearchFactory.CreateCompilerSearch(
const Criteria: ICompilerSearchCriteria): ISearch;
{Creates a compiler search object.
@param Criteria [in] Criteria to apply to search.
@return ISearch interface to compiler search object instance.
}
begin
Result := TCompilerSearch.Create(Criteria);
end;
class function TSearchFactory.CreateNulSearch: ISearch;
{Creates a nul search object.
@return ISearch interface to nul search object instance.
}
begin
Result := TNulSearch.Create;
end;
class function TSearchFactory.CreateSelectionSearch(
const Criteria: ISelectionSearchCriteria): ISearch;
{Creates a selection search object.
@param Criteria [in] Criteria to apply to search.
@return ISearch interface to selection search object instance.
}
begin
Result := TSelectionSearch.Create(Criteria);
end;
class function TSearchFactory.CreateStoredSelectionSearch(
const Criteria: IStoredSelectionSearchCriteria): ISearch;
begin
Result := TStoredSelectionSearch.Create(Criteria);
end;
class function TSearchFactory.CreateTextSearch(
const Criteria: ITextSearchCriteria): ISearch;
{Creates a text search object.
@param Criteria [in] Criteria to apply to sarch.
@return ISearch interface to text search object instance.
}
begin
Result := TTextSearch.Create(Criteria);
end;
class function TSearchFactory.CreateXRefSearch(
const Criteria: IXRefSearchCriteria): ISearch;
{Creates a cross-reference search object.
@param Criteria [in] Criteria to apply to search.
@return ISearch interface to cross-reference search object instance.
}
begin
Result := TXRefSearch.Create(Criteria);
end;
{ TSearchCriteriaFactory }
class function TSearchCriteriaFactory.CreateCompilerSearchCriteria(
const Compilers: TCompilerSearchCompilers; const Logic: TSearchLogic;
const Option: TCompilerSearchOption): ICompilerSearchCriteria;
{Creates a compiler search criteria object with specified property values.
@param Compilers [in] Set of compilers to be included in search.
@param Logic [in] Search logic to be used: AND or OR.
@param Option [in] Compilation outcome to be searched for.
@return ICompilerSearchCriteria interface to created object.
}
begin
Result := TCompilerSearchCriteria.Create(Compilers, Logic, Option);
end;
class function TSearchCriteriaFactory.CreateSelectionSearchCriteria(
const SelectedSnippets: TSnippetList): ISelectionSearchCriteria;
{Creates a selection search criteria object with specified property values.
@param SelectedItems [in] List of snippets to be included in search.
@return ISelectionSearchCriteria interface to created object.
}
var
SnippetIDs: ISnippetIDList; // snippet id list
Snippet: TSnippet; // each snippet in SelectedSnippets
begin
SnippetIDs := TSnippetIDList.Create;
for Snippet in SelectedSnippets do
SnippetIDs.Add(Snippet.ID);
Result := TSelectionSearchCriteria.Create(SnippetIDs);
end;
class function TSearchCriteriaFactory.CreateSelectionSearchCriteria(
const SelectedItems: ISnippetIDList): ISelectionSearchCriteria;
begin
Result := TSelectionSearchCriteria.Create(SelectedItems);
end;
class function TSearchCriteriaFactory.CreateStoredSelectionSearchCriteria(
const SelectedSnippets: ISnippetIDList): IStoredSelectionSearchCriteria;
begin
Result := TStoredSelectionSearchCriteria.Create(SelectedSnippets);
end;
class function TSearchCriteriaFactory.CreateTextSearchCriteria(
const Words: string; const Logic: TSearchLogic;
const Options: TTextSearchOptions): ITextSearchCriteria;
{Creates a text search criteria object with specified property values.
@param Words [in] List words to be searched for.
@param Logic [in] Search logic to be used: AND or OR.
@param Options [in] Set of options used to modify how search is performed.
@return ITextSearchCriteria interface to created object.
}
begin
Result := TTextSearchCriteria.Create(Words, Logic, Options);
end;
class function TSearchCriteriaFactory.CreateXRefSearchCriteria(
const BaseSnippet: TSnippet;
const Options: TXRefSearchOptions): IXRefSearchCriteria;
{Creates a cross-reference search criteria object with specified property
values.
@param BaseSnippet [in] Snippet whose cross references are to be searched.
@param Options [in] Options controlling XRef search.
@return IXRefSearchCriteria interface to created object.
}
begin
Result := TXRefSearchCriteria.Create(BaseSnippet, Options);
end;
end.
Want the latest updates on software, tech news, and AI?
Get latest updates about software, tech news, and AI from SourceForge directly in your inbox once a month.