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
|
#include "PHPLookupTable.h"
#include "PHPEntityClass.h"
#include "PHPEntityFunction.h"
#include "PHPEntityFunctionAlias.h"
#include "PHPEntityNamespace.h"
#include "PHPEntityVariable.h"
#include "clFilesCollector.h"
#include "event_notifier.h"
#include "file_logger.h"
#include "fileextmanager.h"
#include "fileutils.h"
#include <algorithm>
#include <wx/filename.h>
#include <wx/log.h>
#include <wx/stopwatch.h>
#include <wx/tokenzr.h>
wxDEFINE_EVENT(wxPHP_PARSE_STARTED, clParseEvent);
wxDEFINE_EVENT(wxPHP_PARSE_ENDED, clParseEvent);
wxDEFINE_EVENT(wxPHP_PARSE_PROGRESS, clParseEvent);
static wxString PHP_SCHEMA_VERSION = "9.3.0.1";
//------------------------------------------------
// Metadata table
//------------------------------------------------
const static wxString CREATE_METADATA_TABLE_SQL =
"CREATE TABLE IF NOT EXISTS METADATA_TABLE(ID INTEGER NOT NULL PRIMARY KEY AUTOINCREMENT, "
"SCHEMA_NAME TEXT, "
"SCHEMA_VERSION TEXT)";
const static wxString CREATE_METADATA_TABLE_SQL_IDX1 =
"CREATE UNIQUE INDEX IF NOT EXISTS METADATA_TABLE_IDX_1 ON METADATA_TABLE(SCHEMA_NAME)";
//------------------------------------------------
// Scope table
//------------------------------------------------
const static wxString CREATE_SCOPE_TABLE_SQL =
"CREATE TABLE IF NOT EXISTS SCOPE_TABLE(ID INTEGER NOT NULL PRIMARY KEY AUTOINCREMENT, "
"SCOPE_TYPE INTEGER, " // The scope type: 0 for namespace, 1 for class
"SCOPE_ID INTEGER NOT NULL DEFAULT -1, "
"NAME TEXT, " // no scope, just the class name
"FULLNAME TEXT, " // full path
"EXTENDS TEXT DEFAULT '', "
"IMPLEMENTS TEXT DEFAULT '', "
"USING_TRAITS TEXT DEFAULT '', "
"FLAGS INTEGER DEFAULT 0, "
"DOC_COMMENT TEXT DEFAULT '', "
"LINE_NUMBER INTEGER NOT NULL DEFAULT 0, "
"FILE_NAME TEXT DEFAULT '')";
const static wxString CREATE_SCOPE_TABLE_SQL_IDX1 =
"CREATE INDEX IF NOT EXISTS SCOPE_TABLE_IDX_1 ON SCOPE_TABLE(SCOPE_ID)";
const static wxString CREATE_SCOPE_TABLE_SQL_IDX2 =
"CREATE INDEX IF NOT EXISTS SCOPE_TABLE_IDX_2 ON SCOPE_TABLE(FILE_NAME)";
const static wxString CREATE_SCOPE_TABLE_SQL_IDX3 = "CREATE INDEX IF NOT EXISTS SCOPE_TABLE_IDX_3 ON SCOPE_TABLE(NAME)";
const static wxString CREATE_SCOPE_TABLE_SQL_IDX4 =
"CREATE INDEX IF NOT EXISTS SCOPE_TABLE_IDX_4 ON SCOPE_TABLE(SCOPE_TYPE)";
const static wxString CREATE_SCOPE_TABLE_SQL_IDX5 =
"CREATE UNIQUE INDEX IF NOT EXISTS SCOPE_TABLE_IDX_5 ON SCOPE_TABLE(FULLNAME)";
//------------------------------------------------
// Function table
//------------------------------------------------
const static wxString CREATE_FUNCTION_TABLE_SQL =
"CREATE TABLE IF NOT EXISTS FUNCTION_TABLE(ID INTEGER NOT NULL PRIMARY KEY AUTOINCREMENT, "
"SCOPE_ID INTEGER NOT NULL DEFAULT -1, "
"NAME TEXT, " // no scope, just the function name
"FULLNAME TEXT, " // Fullname with scope
"SCOPE TEXT, " // Usually, this means the namespace\class
"SIGNATURE TEXT, " // Formatted signature
"RETURN_VALUE TEXT, " // Fullname (including namespace)
"FLAGS INTEGER DEFAULT 0, "
"DOC_COMMENT TEXT, "
"LINE_NUMBER INTEGER NOT NULL DEFAULT 0, "
"FILE_NAME TEXT )";
const static wxString CREATE_FUNCTION_TABLE_SQL_IDX1 =
"CREATE INDEX IF NOT EXISTS FUNCTION_TABLE_IDX_1 ON FUNCTION_TABLE(SCOPE_ID)";
const static wxString CREATE_FUNCTION_TABLE_SQL_IDX2 =
"CREATE INDEX IF NOT EXISTS FUNCTION_TABLE_IDX_2 ON FUNCTION_TABLE(FILE_NAME)";
const static wxString CREATE_FUNCTION_TABLE_SQL_IDX3 =
"CREATE UNIQUE INDEX IF NOT EXISTS FUNCTION_TABLE_IDX_3 ON FUNCTION_TABLE(FULLNAME)";
const static wxString CREATE_FUNCTION_TABLE_SQL_IDX4 =
"CREATE INDEX IF NOT EXISTS FUNCTION_TABLE_IDX_4 ON FUNCTION_TABLE(NAME)";
const static wxString CREATE_FUNCTION_TABLE_SQL_IDX5 =
"CREATE INDEX IF NOT EXISTS FUNCTION_TABLE_IDX_5 ON FUNCTION_TABLE(LINE_NUMBER)";
//------------------------------------------------
// Function Alias table
//------------------------------------------------
const static wxString CREATE_FUNCTION_ALIAS_TABLE_SQL =
"CREATE TABLE IF NOT EXISTS FUNCTION_ALIAS_TABLE(ID INTEGER NOT NULL PRIMARY KEY AUTOINCREMENT, "
"SCOPE_ID INTEGER NOT NULL DEFAULT -1, "
"NAME TEXT, " // no scope, just the function name
"REALNAME TEXT, " // The fullname of the actual function we are referencing
"FULLNAME TEXT, " // Fullname with scope (of the alias name)
"SCOPE TEXT, " // Usually, this means the namespace\class
"LINE_NUMBER INTEGER NOT NULL DEFAULT 0, "
"FILE_NAME TEXT )";
const static wxString CREATE_FUNCTION_ALIAS_TABLE_SQL_IDX1 =
"CREATE INDEX IF NOT EXISTS FUNCTION_ALIAS_TABLE_IDX_1 ON FUNCTION_ALIAS_TABLE(SCOPE_ID)";
const static wxString CREATE_FUNCTION_ALIAS_TABLE_SQL_IDX2 =
"CREATE INDEX IF NOT EXISTS FUNCTION_ALIAS_TABLE_IDX_2 ON FUNCTION_ALIAS_TABLE(NAME)";
const static wxString CREATE_FUNCTION_ALIAS_TABLE_SQL_IDX3 =
"CREATE INDEX IF NOT EXISTS FUNCTION_ALIAS_TABLE_IDX_3 ON FUNCTION_ALIAS_TABLE(REALNAME)";
const static wxString CREATE_FUNCTION_ALIAS_TABLE_SQL_IDX4 =
"CREATE UNIQUE INDEX IF NOT EXISTS FUNCTION_ALIAS_TABLE_IDX_4 ON FUNCTION_ALIAS_TABLE(NAME,REALNAME,SCOPE_ID)";
//------------------------------------------------
// Variables table
//------------------------------------------------
const static wxString CREATE_VARIABLES_TABLE_SQL =
"CREATE TABLE IF NOT EXISTS VARIABLES_TABLE(ID INTEGER NOT NULL PRIMARY KEY AUTOINCREMENT, "
"SCOPE_ID INTEGER NOT NULL DEFAULT -1, " // for global variable or class member this will be the scope_id parent id
"FUNCTION_ID INTEGER NOT NULL DEFAULT -1, " // for function argument
"NAME TEXT, " // no scope, just the function name
"FULLNAME TEXT, " // Fullname with scope
"SCOPE TEXT, " // Usually, this means the namespace\class
"TYPEHINT TEXT, " // the Variable type hint
"DEFAULT_VALUE TEXT, " // Default value
"FLAGS INTEGER DEFAULT 0, "
"DOC_COMMENT TEXT, "
"LINE_NUMBER INTEGER NOT NULL DEFAULT 0, "
"FILE_NAME TEXT )";
const static wxString CREATE_VARIABLES_TABLE_SQL_IDX1 =
"CREATE INDEX IF NOT EXISTS VARIABLES_TABLE_IDX_1 ON VARIABLES_TABLE(SCOPE_ID)";
const static wxString CREATE_VARIABLES_TABLE_SQL_IDX2 =
"CREATE UNIQUE INDEX IF NOT EXISTS VARIABLES_TABLE_IDX_2 ON VARIABLES_TABLE(SCOPE, NAME, FUNCTION_ID, SCOPE_ID)";
const static wxString CREATE_VARIABLES_TABLE_SQL_IDX3 =
"CREATE INDEX IF NOT EXISTS VARIABLES_TABLE_IDX_3 ON VARIABLES_TABLE(FILE_NAME)";
const static wxString CREATE_VARIABLES_TABLE_SQL_IDX4 =
"CREATE INDEX IF NOT EXISTS VARIABLES_TABLE_IDX_4 ON VARIABLES_TABLE(FUNCTION_ID)";
//------------------------------------------------
// Variables table
//------------------------------------------------
const static wxString CREATE_PHPDOC_VAR_TABLE_SQL =
"CREATE TABLE IF NOT EXISTS PHPDOC_VAR_TABLE(ID INTEGER NOT NULL PRIMARY KEY AUTOINCREMENT, "
"SCOPE_ID INTEGER NOT NULL DEFAULT -1, " // for global variable or class member this will be the scope_id parent id
"NAME TEXT, " // the name
"TYPE TEXT, " // the type, full path
"LINE_NUMBER INTEGER NOT NULL DEFAULT 0, "
"FILE_NAME TEXT )";
const static wxString CREATE_PHPDOC_VAR_TABLE_SQL_IDX1 =
"CREATE INDEX IF NOT EXISTS PHPDOC_VAR_TABLE_SQL_IDX1 ON PHPDOC_VAR_TABLE(SCOPE_ID)";
const static wxString CREATE_PHPDOC_VAR_TABLE_SQL_IDX2 =
"CREATE INDEX IF NOT EXISTS PHPDOC_VAR_TABLE_SQL_IDX2 ON PHPDOC_VAR_TABLE(FILE_NAME)";
//------------------------------------------------
// Files table
//------------------------------------------------
const static wxString CREATE_FILES_TABLE_SQL =
"CREATE TABLE IF NOT EXISTS FILES_TABLE(ID INTEGER NOT NULL PRIMARY KEY AUTOINCREMENT, "
"FILE_NAME TEXT, " // for global variable or class member this will be the scope_id parent id
"LAST_UPDATED INTEGER NOT NULL DEFAULT 0" // for function argument
")";
const static wxString CREATE_FILES_TABLE_SQL_IDX1 =
"CREATE UNIQUE INDEX IF NOT EXISTS FILES_TABLE_IDX_1 ON FILES_TABLE(FILE_NAME)";
PHPLookupTable::PHPLookupTable()
: m_sizeLimit(50)
{
}
PHPLookupTable::~PHPLookupTable() { Close(); }
PHPEntityBase::Ptr_t PHPLookupTable::FindMemberOf(wxLongLong parentDbId, const wxString& exactName, size_t flags)
{
// find the entity
PHPEntityBase::Ptr_t scope = DoFindScope(parentDbId);
if(scope && scope->Cast<PHPEntityClass>()) {
std::vector<wxLongLong> parents;
std::set<wxLongLong> parentsVisited;
DoGetInheritanceParentIDs(scope, parents, parentsVisited, flags & kLookupFlags_Parent);
// std::reverse(parents.begin(), parents.end());
// Parents should now contain an ordered list of all the inheritance
for(size_t i = 0; i < parents.size(); ++i) {
PHPEntityBase::Ptr_t match = DoFindMemberOf(parents.at(i), exactName);
if(match) {
PHPEntityBase::List_t matches;
matches.push_back(match);
DoFixVarsDocComment(matches, parentDbId);
return match;
}
}
} else {
// namespace
return DoFindMemberOf(parentDbId, exactName, true);
}
return PHPEntityBase::Ptr_t(NULL);
}
PHPEntityBase::Ptr_t PHPLookupTable::FindScope(const wxString& fullname)
{
wxString scopeName = fullname;
scopeName.Trim().Trim(false);
if(scopeName.EndsWith("\\") && scopeName.length() > 1) {
scopeName.RemoveLast();
}
return DoFindScope(scopeName);
}
void PHPLookupTable::Open(const wxFileName& dbfile)
{
try {
if(dbfile.Exists()) {
// Check for its integrity. If the database is corrupted,
// it will be deleted
EnsureIntegrity(dbfile);
}
wxFileName::Mkdir(dbfile.GetPath(), wxS_DIR_DEFAULT, wxPATH_MKDIR_FULL);
m_db.Open(dbfile.GetFullPath());
m_db.SetBusyTimeout(10); // Don't lock when we cant access to the database
m_filename = dbfile;
CreateSchema();
} catch(wxSQLite3Exception& e) {
clWARNING() << "PHPLookupTable::Open" << e.GetMessage() << clEndl;
}
}
void PHPLookupTable::Open(const wxString& workspacePath)
{
wxFileName fnDBFile(workspacePath, "phpsymbols.db");
// ensure that the database directory exists
fnDBFile.AppendDir(".codelite");
fnDBFile.Mkdir(wxS_DIR_DEFAULT, wxPATH_MKDIR_FULL);
Open(fnDBFile);
}
void PHPLookupTable::CreateSchema()
{
wxString schemaVersion;
try {
wxString sql;
sql = wxT("PRAGMA journal_mode = ON;");
m_db.ExecuteUpdate(sql);
sql = wxT("PRAGMA synchronous = OFF;");
m_db.ExecuteUpdate(sql);
sql = wxT("PRAGMA temp_store = MEMORY;");
m_db.ExecuteUpdate(sql);
wxSQLite3Statement st =
m_db.PrepareStatement("select SCHEMA_VERSION from METADATA_TABLE where SCHEMA_NAME=:SCHEMA_NAME");
st.Bind(st.GetParamIndex(":SCHEMA_NAME"), "CODELITEPHP");
wxSQLite3ResultSet res = st.ExecuteQuery();
if(res.NextRow()) {
schemaVersion = res.GetString("SCHEMA_VERSION");
}
} catch(wxSQLite3Exception& e) {
wxUnusedVar(e);
}
if(schemaVersion != PHP_SCHEMA_VERSION) {
// Drop the tables and recreate the schema from scratch
m_db.ExecuteUpdate("drop table if exists SCHEMA_VERSION");
m_db.ExecuteUpdate("drop table if exists SCOPE_TABLE");
m_db.ExecuteUpdate("drop table if exists FUNCTION_TABLE");
m_db.ExecuteUpdate("drop table if exists FUNCTION_ALIAS_TABLE");
m_db.ExecuteUpdate("drop table if exists VARIABLES_TABLE");
m_db.ExecuteUpdate("drop table if exists FILES_TABLE");
m_db.ExecuteUpdate("drop table if exists PHPDOC_VAR_TABLE");
}
try {
// Metadata
m_db.ExecuteUpdate(CREATE_METADATA_TABLE_SQL);
m_db.ExecuteUpdate(CREATE_METADATA_TABLE_SQL_IDX1);
// class / namespace table "scope"
m_db.ExecuteUpdate(CREATE_SCOPE_TABLE_SQL);
m_db.ExecuteUpdate(CREATE_SCOPE_TABLE_SQL_IDX1);
m_db.ExecuteUpdate(CREATE_SCOPE_TABLE_SQL_IDX2);
m_db.ExecuteUpdate(CREATE_SCOPE_TABLE_SQL_IDX3);
m_db.ExecuteUpdate(CREATE_SCOPE_TABLE_SQL_IDX4);
m_db.ExecuteUpdate(CREATE_SCOPE_TABLE_SQL_IDX5);
// function table
m_db.ExecuteUpdate(CREATE_FUNCTION_TABLE_SQL);
m_db.ExecuteUpdate(CREATE_FUNCTION_TABLE_SQL_IDX1);
m_db.ExecuteUpdate(CREATE_FUNCTION_TABLE_SQL_IDX2);
m_db.ExecuteUpdate(CREATE_FUNCTION_TABLE_SQL_IDX3);
m_db.ExecuteUpdate(CREATE_FUNCTION_TABLE_SQL_IDX4);
m_db.ExecuteUpdate(CREATE_FUNCTION_TABLE_SQL_IDX5);
// function alias table
m_db.ExecuteUpdate(CREATE_FUNCTION_ALIAS_TABLE_SQL);
m_db.ExecuteUpdate(CREATE_FUNCTION_ALIAS_TABLE_SQL_IDX1);
m_db.ExecuteUpdate(CREATE_FUNCTION_ALIAS_TABLE_SQL_IDX2);
m_db.ExecuteUpdate(CREATE_FUNCTION_ALIAS_TABLE_SQL_IDX3);
m_db.ExecuteUpdate(CREATE_FUNCTION_ALIAS_TABLE_SQL_IDX4);
// variables (function args, globals class members and consts)
m_db.ExecuteUpdate(CREATE_VARIABLES_TABLE_SQL);
m_db.ExecuteUpdate(CREATE_VARIABLES_TABLE_SQL_IDX1);
m_db.ExecuteUpdate(CREATE_VARIABLES_TABLE_SQL_IDX2);
m_db.ExecuteUpdate(CREATE_VARIABLES_TABLE_SQL_IDX3);
m_db.ExecuteUpdate(CREATE_VARIABLES_TABLE_SQL_IDX4);
// phpdoc var table
m_db.ExecuteUpdate(CREATE_PHPDOC_VAR_TABLE_SQL);
m_db.ExecuteUpdate(CREATE_PHPDOC_VAR_TABLE_SQL_IDX1);
m_db.ExecuteUpdate(CREATE_PHPDOC_VAR_TABLE_SQL_IDX2);
// Files
m_db.ExecuteUpdate(CREATE_FILES_TABLE_SQL);
m_db.ExecuteUpdate(CREATE_FILES_TABLE_SQL_IDX1);
// Update the schema version
wxSQLite3Statement st =
m_db.PrepareStatement("replace into METADATA_TABLE (ID, SCHEMA_NAME, SCHEMA_VERSION) VALUES (NULL, "
":SCHEMA_NAME, :SCHEMA_VERSION)");
st.Bind(st.GetParamIndex(":SCHEMA_NAME"), "CODELITEPHP");
st.Bind(st.GetParamIndex(":SCHEMA_VERSION"), PHP_SCHEMA_VERSION);
st.ExecuteUpdate();
} catch(wxSQLite3Exception& e) {
clWARNING() << "PHPLookupTable::CreateSchema" << e.GetMessage() << endl;
}
}
void PHPLookupTable::UpdateSourceFile(PHPSourceFile& source, bool autoCommit)
{
try {
if(autoCommit)
m_db.Begin();
// Delete all entries for this file
DeleteFileEntries(source.GetFilename(), false);
// Store new entries
PHPEntityBase::Ptr_t topNamespace = source.Namespace();
if(topNamespace) {
topNamespace->StoreRecursive(this);
UpdateFileLastParsedTimestamp(source.GetFilename());
}
// Store defines
// --------------
// 'defines' are handled separately as they dont really comply to the standard PHP rules
// define() will define constants exactly as specified.
// The following code will define the constant "MESSAGE" in the global namespace (i.e. "\MESSAGE").
// <?php
// namespace test;
// define('MESSAGE', 'Hello world!');
// ?>
// In the above code, the constant 'MESSAGE' is defined in the GLOBAL namespace even though the
// define was called inside namespace 'test'
// For this reason, we need get the list of defined parsed in the source file and associate them
// with their namespace (we either load the namespace from the database or create one)
if(!source.GetDefines().empty()) {
const PHPEntityBase::List_t& defines = source.GetDefines();
PHPEntityBase::List_t::const_iterator iter = defines.begin();
PHPEntityBase::Map_t nsMap;
for(; iter != defines.end(); ++iter) {
PHPEntityBase::Ptr_t pDefine = *iter;
PHPEntityBase::Ptr_t pNamespace(NULL);
wxString nameSpaceName, shortName;
DoSplitFullname(pDefine->GetFullName(), nameSpaceName, shortName);
PHPEntityBase::Map_t::iterator nsIter = nsMap.find(nameSpaceName);
if(nsIter == nsMap.end()) {
// we did not load this namespace yet => load and cache it
pNamespace = CreateNamespaceForDefine(pDefine);
nsMap.insert(std::make_pair(pNamespace->GetFullName(), pNamespace));
} else {
// We already loaded this namespace
pNamespace = nsIter->second;
}
pNamespace->AddChild(pDefine);
}
// Now, loop over the namespace map and store all entries
PHPEntityBase::Map_t::iterator nsIter = nsMap.begin();
for(; nsIter != nsMap.end(); ++nsIter) {
nsIter->second->StoreRecursive(this);
}
}
if(autoCommit)
m_db.Commit();
} catch(wxSQLite3Exception& e) {
if(autoCommit)
m_db.Rollback();
clWARNING() << "PHPLookupTable::SaveSourceFile" << e.GetMessage() << endl;
}
}
PHPEntityBase::Ptr_t PHPLookupTable::DoFindMemberOf(wxLongLong parentDbId, const wxString& exactName,
bool parentIsNamespace)
{
// Find members of of parentDbID
try {
PHPEntityBase::List_t matches;
{
wxString sql;
sql << "SELECT * from FUNCTION_TABLE WHERE SCOPE_ID=" << parentDbId << " AND NAME='" << exactName << "'";
wxSQLite3Statement st = m_db.PrepareStatement(sql);
wxSQLite3ResultSet res = st.ExecuteQuery();
while(res.NextRow()) {
PHPEntityBase::Ptr_t match(new PHPEntityFunction());
match->FromResultSet(res);
matches.push_back(match);
}
}
if(matches.empty()) {
// Search functions alias table
wxString sql;
sql << "SELECT * from FUNCTION_ALIAS_TABLE WHERE SCOPE_ID=" << parentDbId << " AND NAME='" << exactName
<< "'";
wxSQLite3Statement st = m_db.PrepareStatement(sql);
wxSQLite3ResultSet res = st.ExecuteQuery();
while(res.NextRow()) {
PHPEntityBase::Ptr_t match(new PHPEntityFunctionAlias());
match->FromResultSet(res);
PHPEntityBase::Ptr_t pFunc = FindFunction(match->Cast<PHPEntityFunctionAlias>()->GetRealname());
if(pFunc) {
match->Cast<PHPEntityFunctionAlias>()->SetFunc(pFunc);
matches.push_back(match);
}
}
}
if(matches.empty() && parentIsNamespace) {
// search the scope table as well
wxString sql;
sql << "SELECT * from SCOPE_TABLE WHERE SCOPE_ID=" << parentDbId << " AND NAME='" << exactName << "'";
wxSQLite3Statement st = m_db.PrepareStatement(sql);
wxSQLite3ResultSet res = st.ExecuteQuery();
while(res.NextRow()) {
ePhpScopeType st = kPhpScopeTypeAny;
st =
res.GetInt("SCOPE_TYPE", 1) == kPhpScopeTypeNamespace ? kPhpScopeTypeNamespace : kPhpScopeTypeClass;
PHPEntityBase::Ptr_t match = NewEntity("SCOPE_TABLE", st);
if(match) {
match->FromResultSet(res);
matches.push_back(match);
}
}
}
if(matches.empty()) {
// Could not find a match in the function table, check the variable table
wxString sql;
wxString nameWDollar, namwWODollar;
nameWDollar = exactName;
if(exactName.StartsWith("$")) {
namwWODollar = exactName.Mid(1);
} else {
namwWODollar = exactName;
nameWDollar.Prepend("$");
}
sql << "SELECT * from VARIABLES_TABLE WHERE SCOPE_ID=" << parentDbId << " AND NAME IN ('" << nameWDollar
<< "', '" << namwWODollar << "')";
wxSQLite3Statement st = m_db.PrepareStatement(sql);
wxSQLite3ResultSet res = st.ExecuteQuery();
while(res.NextRow()) {
PHPEntityBase::Ptr_t match(new PHPEntityVariable());
match->FromResultSet(res);
matches.push_back(match);
}
// Fix variables type using the PHPDOC_VAR_TABLE content for this class
DoFixVarsDocComment(matches, parentDbId);
if(matches.empty() || matches.size() > 1) {
return PHPEntityBase::Ptr_t(NULL);
} else {
return (*matches.begin());
}
} else if(matches.size() > 1) {
// we found more than 1 match in the function table
// return NULL
return PHPEntityBase::Ptr_t(NULL);
} else {
// exactly one match was found in the function table
// return it
return (*matches.begin());
}
} catch(wxSQLite3Exception& e) {
clWARNING() << "PHPLookupTable::DoFindMemberOf" << e.GetMessage() << endl;
}
return PHPEntityBase::Ptr_t(NULL);
}
void PHPLookupTable::DoGetInheritanceParentIDs(PHPEntityBase::Ptr_t cls, std::vector<wxLongLong>& parents,
std::set<wxLongLong>& parentsVisited, bool excludeSelf)
{
if(!excludeSelf) {
parents.push_back(cls->GetDbId());
}
parentsVisited.insert(cls->GetDbId());
wxArrayString parentsArr = cls->Cast<PHPEntityClass>()->GetInheritanceArray();
for(size_t i = 0; i < parentsArr.GetCount(); ++i) {
PHPEntityBase::Ptr_t parent = FindClass(parentsArr.Item(i));
if(parent && !parentsVisited.count(parent->GetDbId())) {
DoGetInheritanceParentIDs(parent, parents, parentsVisited, false);
}
parent.Reset(nullptr);
}
}
PHPEntityBase::Ptr_t PHPLookupTable::DoFindScope(const wxString& fullname, ePhpScopeType scopeType)
{
// locate the scope
try {
wxString sql;
// limit by 2 for performance reason
// we will return NULL incase the number of matches is greater than 1...
sql << "SELECT * from SCOPE_TABLE WHERE FULLNAME='" << fullname << "'";
if(scopeType != kPhpScopeTypeAny) {
sql << " AND SCOPE_TYPE = " << static_cast<int>(scopeType);
}
sql << " LIMIT 2 ";
wxSQLite3Statement st = m_db.PrepareStatement(sql);
wxSQLite3ResultSet res = st.ExecuteQuery();
PHPEntityBase::Ptr_t match(NULL);
while(res.NextRow()) {
if(match) {
// only one match
return PHPEntityBase::Ptr_t(NULL);
}
int scopeType = res.GetInt("SCOPE_TYPE", 1);
if(scopeType == 0) {
// namespace
match.Reset(new PHPEntityNamespace());
} else {
// class
match.Reset(new PHPEntityClass());
}
match->FromResultSet(res);
}
return match;
} catch(wxSQLite3Exception& e) {
clWARNING() << "PHPLookupTable::FindScope" << e.GetMessage() << endl;
}
return PHPEntityBase::Ptr_t(NULL);
}
PHPEntityBase::Ptr_t PHPLookupTable::FindClass(const wxString& fullname)
{
return DoFindScope(fullname, kPhpScopeTypeClass);
}
PHPEntityBase::Ptr_t PHPLookupTable::DoFindScope(wxLongLong id, ePhpScopeType scopeType)
{
// locate the scope
try {
wxString sql;
// limit by 2 for performance reason
// we will return NULL incase the number of matches is greater than 1...
sql << "SELECT * from SCOPE_TABLE WHERE ID=" << id;
if(scopeType != kPhpScopeTypeAny) {
sql << " AND SCOPE_TYPE = " << static_cast<int>(scopeType);
}
sql << " LIMIT 1";
wxSQLite3Statement st = m_db.PrepareStatement(sql);
wxSQLite3ResultSet res = st.ExecuteQuery();
if(res.NextRow()) {
PHPEntityBase::Ptr_t match(NULL);
int scopeType = res.GetInt("SCOPE_TYPE", 1);
if(scopeType == kPhpScopeTypeNamespace) {
// namespace
match.Reset(new PHPEntityNamespace());
} else {
// class
match.Reset(new PHPEntityClass());
}
match->FromResultSet(res);
return match;
}
} catch(wxSQLite3Exception& e) {
clWARNING() << "PHPLookupTable::DoFindScope" << e.GetMessage() << endl;
}
return PHPEntityBase::Ptr_t(NULL);
}
PHPEntityBase::Ptr_t PHPLookupTable::FindClass(wxLongLong id) { return DoFindScope(id, kPhpScopeTypeClass); }
PHPEntityBase::List_t PHPLookupTable::FindChildren(wxLongLong parentId, size_t flags, const wxString& nameHint)
{
PHPEntityBase::List_t matches, matchesNoAbstracts;
PHPEntityBase::Ptr_t scope = DoFindScope(parentId);
if(scope && scope->Is(kEntityTypeClass)) {
std::vector<wxLongLong> parents;
std::set<wxLongLong> parentsVisited;
DoGetInheritanceParentIDs(scope, parents, parentsVisited, flags & kLookupFlags_Parent);
// Reverse the order of the parents
std::reverse(parents.begin(), parents.end());
for(size_t i = 0; i < parents.size(); ++i) {
DoFindChildren(matches, parents.at(i), flags, nameHint);
}
// Filter out abstract functions
if(!(flags & kLookupFlags_IncludeAbstractMethods)) {
PHPEntityBase::List_t::iterator iter = matches.begin();
for(; iter != matches.end(); ++iter) {
PHPEntityBase::Ptr_t child = *iter;
if(child->Is(kEntityTypeFunction) && child->HasFlag(kFunc_Abstract))
continue;
matchesNoAbstracts.push_back(child);
}
matches.swap(matchesNoAbstracts);
}
} else if(scope && scope->Is(kEntityTypeNamespace)) {
DoFindChildren(matches, parentId, flags | kLookupFlags_NameHintIsScope, nameHint);
}
return matches;
}
PHPEntityBase::List_t PHPLookupTable::LoadFunctionArguments(wxLongLong parentId)
{
PHPEntityBase::List_t matches;
try {
{
// load functions
wxString sql;
sql << "SELECT * from VARIABLES_TABLE WHERE FUNCTION_ID=" << parentId << " ORDER BY ID ASC";
wxSQLite3Statement st = m_db.PrepareStatement(sql);
wxSQLite3ResultSet res = st.ExecuteQuery();
while(res.NextRow()) {
PHPEntityBase::Ptr_t match(new PHPEntityVariable());
match->FromResultSet(res);
matches.push_back(match);
}
}
} catch(wxSQLite3Exception& e) {
clWARNING() << "PHPLookupTable::LoadFunctionArguments" << e.GetMessage() << endl;
}
return matches;
}
wxString PHPLookupTable::EscapeWildCards(const wxString& str)
{
wxString s(str);
s.Replace(wxT("_"), wxT("^_"));
return s;
}
void PHPLookupTable::DoAddLimit(wxString& sql) { sql << " LIMIT " << m_sizeLimit; }
void PHPLookupTable::DoAddNameFilter(wxString& sql, const wxString& nameHint, size_t flags)
{
wxString name = nameHint;
name.Trim().Trim(false);
if(name.IsEmpty()) {
sql.Trim();
if(sql.EndsWith("AND") || sql.EndsWith("and")) {
sql.RemoveLast(3);
}
sql << " ";
return;
}
if(flags & kLookupFlags_ExactMatch && !name.IsEmpty()) {
sql << " NAME = '" << name << "'";
} else if(flags & kLookupFlags_Contains && !name.IsEmpty()) {
sql << " NAME LIKE '%%" << EscapeWildCards(name) << "%%' ESCAPE '^'";
} else if(flags & kLookupFlags_StartsWith && !name.IsEmpty()) {
sql << " NAME LIKE '" << EscapeWildCards(name) << "%%' ESCAPE '^'";
}
}
void PHPLookupTable::LoadAllByFilter(PHPEntityBase::List_t& matches, const wxString& nameHint, eLookupFlags flags)
{
try {
// Split the nameHint to spaces/tabs
LoadFromTableByNameHint(matches, "SCOPE_TABLE", nameHint, flags);
LoadFromTableByNameHint(matches, "FUNCTION_TABLE", nameHint, flags);
} catch(wxSQLite3Exception& e) {
clWARNING() << "PHPLookupTable::LoadAllByFilter:" << e.GetMessage() << clEndl;
}
}
PHPEntityBase::Ptr_t PHPLookupTable::NewEntity(const wxString& tableName, ePhpScopeType scopeType)
{
if(tableName == "FUNCTION_TABLE") {
return PHPEntityBase::Ptr_t(new PHPEntityFunction());
} else if(tableName == "VARIABLES_TABLE") {
return PHPEntityBase::Ptr_t(new PHPEntityVariable());
} else if(tableName == "SCOPE_TABLE" && scopeType == kPhpScopeTypeNamespace) {
return PHPEntityBase::Ptr_t(new PHPEntityNamespace());
} else if(tableName == "SCOPE_TABLE" && scopeType == kPhpScopeTypeClass) {
return PHPEntityBase::Ptr_t(new PHPEntityClass());
} else {
return PHPEntityBase::Ptr_t(NULL);
}
}
void PHPLookupTable::LoadFromTableByNameHint(PHPEntityBase::List_t& matches, const wxString& tableName,
const wxString& nameHint, eLookupFlags flags)
{
wxArrayString parts = ::wxStringTokenize(nameHint, " \t", wxTOKEN_STRTOK);
if(parts.IsEmpty()) {
return;
}
// Build the filter query
wxString filterQuery = "where ";
wxString sql;
for(size_t i = 0; i < parts.size(); ++i) {
wxString tmpName = parts.Item(i);
tmpName.Replace(wxT("_"), wxT("^_"));
filterQuery << "fullname like '%%" << tmpName << "%%' " << ((i == (parts.size() - 1)) ? "" : "AND ");
}
sql << "select * from " << tableName << " " << filterQuery << " ESCAPE '^' ";
DoAddLimit(sql);
try {
wxSQLite3Statement st = m_db.PrepareStatement(sql);
wxSQLite3ResultSet res = st.ExecuteQuery();
while(res.NextRow()) {
ePhpScopeType st = kPhpScopeTypeAny;
if(tableName == "SCOPE_TABLE") {
st =
res.GetInt("SCOPE_TYPE", 1) == kPhpScopeTypeNamespace ? kPhpScopeTypeNamespace : kPhpScopeTypeClass;
}
PHPEntityBase::Ptr_t match = NewEntity(tableName, st);
if(match) {
match->FromResultSet(res);
matches.push_back(match);
}
}
} catch(wxSQLite3Exception& e) {
clWARNING() << "PHPLookupTable::LoadFromTableByNameHint:" << sql << ":" << e.GetMessage() << clEndl;
}
}
void PHPLookupTable::DeleteFileEntries(const wxFileName& filename, bool autoCommit)
{
try {
if(autoCommit)
m_db.Begin();
{
// When deleting from the 'SCOPE_TABLE' don't remove namespaces
// since they can be still be pointed by other entries in the database
wxString sql;
sql << "delete from SCOPE_TABLE where FILE_NAME=:FILE_NAME AND SCOPE_TYPE != "
<< (int)kPhpScopeTypeNamespace;
wxSQLite3Statement st = m_db.PrepareStatement(sql);
st.Bind(st.GetParamIndex(":FILE_NAME"), filename.GetFullPath());
st.ExecuteUpdate();
}
{
wxString sql;
sql << "delete from FUNCTION_TABLE where FILE_NAME=:FILE_NAME";
wxSQLite3Statement st = m_db.PrepareStatement(sql);
st.Bind(st.GetParamIndex(":FILE_NAME"), filename.GetFullPath());
st.ExecuteUpdate();
}
{
wxString sql;
sql << "delete from FUNCTION_ALIAS_TABLE where FILE_NAME=:FILE_NAME";
wxSQLite3Statement st = m_db.PrepareStatement(sql);
st.Bind(st.GetParamIndex(":FILE_NAME"), filename.GetFullPath());
st.ExecuteUpdate();
}
{
wxString sql;
sql << "delete from VARIABLES_TABLE where FILE_NAME=:FILE_NAME";
wxSQLite3Statement st = m_db.PrepareStatement(sql);
st.Bind(st.GetParamIndex(":FILE_NAME"), filename.GetFullPath());
st.ExecuteUpdate();
}
{
wxString sql;
sql << "delete from FILES_TABLE where FILE_NAME=:FILE_NAME";
wxSQLite3Statement st = m_db.PrepareStatement(sql);
st.Bind(st.GetParamIndex(":FILE_NAME"), filename.GetFullPath());
st.ExecuteUpdate();
}
{
wxString sql;
sql << "delete from PHPDOC_VAR_TABLE where FILE_NAME=:FILE_NAME";
wxSQLite3Statement st = m_db.PrepareStatement(sql);
st.Bind(st.GetParamIndex(":FILE_NAME"), filename.GetFullPath());
st.ExecuteUpdate();
}
if(autoCommit)
m_db.Commit();
} catch(wxSQLite3Exception& e) {
if(autoCommit)
m_db.Rollback();
clWARNING() << "PHPLookupTable::DeleteFileEntries" << e.GetMessage() << endl;
}
}
void PHPLookupTable::Close()
{
try {
if(m_db.IsOpen()) {
m_db.Close();
}
m_filename.Clear();
m_allClasses.clear();
} catch(wxSQLite3Exception& e) {
clWARNING() << "PHPLookupTable::Close" << e.GetMessage() << endl;
}
}
bool PHPLookupTable::IsOpened() const { return m_db.IsOpen(); }
void PHPLookupTable::DoFindChildren(PHPEntityBase::List_t& matches, wxLongLong parentId, size_t flags,
const wxString& nameHint)
{
// Find members of of parentDbID
try {
// Load classes
if(!(flags & kLookupFlags_FunctionsAndConstsOnly)) {
wxString sql;
sql << "SELECT * from SCOPE_TABLE WHERE SCOPE_ID=" << parentId << " AND SCOPE_TYPE = 1 AND ";
DoAddNameFilter(sql, nameHint, flags);
DoAddLimit(sql);
wxSQLite3Statement st = m_db.PrepareStatement(sql);
wxSQLite3ResultSet res = st.ExecuteQuery();
while(res.NextRow()) {
PHPEntityBase::Ptr_t match(new PHPEntityClass());
match->FromResultSet(res);
matches.push_back(match);
}
}
{
// load functions
wxString sql;
sql << "SELECT * from FUNCTION_TABLE WHERE SCOPE_ID=" << parentId << " AND ";
DoAddNameFilter(sql, nameHint, flags);
DoAddLimit(sql);
wxSQLite3Statement st = m_db.PrepareStatement(sql);
wxSQLite3ResultSet res = st.ExecuteQuery();
while(res.NextRow()) {
PHPEntityBase::Ptr_t match(new PHPEntityFunction());
match->FromResultSet(res);
bool isStaticFunction = match->HasFlag(kFunc_Static);
if(isStaticFunction) {
// always return static functions
matches.push_back(match);
} else {
// Non static function.
if(!(flags & kLookupFlags_Static)) {
matches.push_back(match);
}
}
}
}
{
// load function aliases
wxString sql;
sql << "SELECT * from FUNCTION_ALIAS_TABLE WHERE SCOPE_ID=" << parentId << " AND ";
DoAddNameFilter(sql, nameHint, flags);
DoAddLimit(sql);
wxSQLite3Statement st = m_db.PrepareStatement(sql);
wxSQLite3ResultSet res = st.ExecuteQuery();
while(res.NextRow()) {
PHPEntityBase::Ptr_t match(new PHPEntityFunctionAlias());
match->FromResultSet(res);
const wxString& realFuncName = match->Cast<PHPEntityFunctionAlias>()->GetRealname();
// Load the function pointed by this reference
PHPEntityBase::Ptr_t pFunc = FindFunction(realFuncName);
if(pFunc) {
// Keep the reference to the real function
match->Cast<PHPEntityFunctionAlias>()->SetFunc(pFunc);
matches.push_back(match);
}
}
}
{
// Add members from the variables table
wxString sql;
sql << "SELECT * from VARIABLES_TABLE WHERE SCOPE_ID=" << parentId << " AND ";
DoAddNameFilter(sql, nameHint, flags);
DoAddLimit(sql);
wxSQLite3Statement st = m_db.PrepareStatement(sql);
wxSQLite3ResultSet res = st.ExecuteQuery();
while(res.NextRow()) {
PHPEntityBase::Ptr_t match(new PHPEntityVariable());
match->FromResultSet(res);
if(flags & kLookupFlags_FunctionsAndConstsOnly) {
// Filter non consts from the list
if(!match->Cast<PHPEntityVariable>()->IsConst() && !match->Cast<PHPEntityVariable>()->IsDefine()) {
continue;
}
}
bool isConst = match->Cast<PHPEntityVariable>()->IsConst();
bool isStatic = match->Cast<PHPEntityVariable>()->IsStatic();
bool bAddIt = ((isStatic || isConst) && CollectingStatics(flags)) ||
(!isStatic && !isConst && !CollectingStatics(flags));
if(bAddIt) {
matches.push_back(match);
}
}
DoFixVarsDocComment(matches, parentId);
}
} catch(wxSQLite3Exception& e) {
clWARNING() << "PHPLookupTable::FindChildren" << e.GetMessage() << endl;
}
}
wxLongLong PHPLookupTable::GetFileLastParsedTimestamp(const wxFileName& filename)
{
try {
wxSQLite3Statement st =
m_db.PrepareStatement("SELECT LAST_UPDATED FROM FILES_TABLE WHERE FILE_NAME=:FILE_NAME");
st.Bind(st.GetParamIndex(":FILE_NAME"), filename.GetFullPath());
wxSQLite3ResultSet res = st.ExecuteQuery();
if(res.NextRow()) {
return res.GetInt64("LAST_UPDATED");
}
} catch(wxSQLite3Exception& e) {
clWARNING() << "PHPLookupTable::FindChildren" << e.GetMessage() << endl;
}
return 0;
}
void PHPLookupTable::UpdateFileLastParsedTimestamp(const wxFileName& filename)
{
try {
wxSQLite3Statement st = m_db.PrepareStatement(
"REPLACE INTO FILES_TABLE (ID, FILE_NAME, LAST_UPDATED) VALUES (NULL, :FILE_NAME, :LAST_UPDATED)");
st.Bind(st.GetParamIndex(":FILE_NAME"), filename.GetFullPath());
st.Bind(st.GetParamIndex(":LAST_UPDATED"), (wxLongLong)time(NULL));
st.ExecuteUpdate();
} catch(wxSQLite3Exception& e) {
clWARNING() << "PHPLookupTable::UpdateFileLastParsedTimestamp" << e.GetMessage() << endl;
}
}
void PHPLookupTable::ClearAll(bool autoCommit)
{
try {
if(autoCommit)
m_db.Begin();
{
wxString sql;
sql << "delete from SCOPE_TABLE";
wxSQLite3Statement st = m_db.PrepareStatement(sql);
st.ExecuteUpdate();
}
{
wxString sql;
sql << "delete from FUNCTION_TABLE";
wxSQLite3Statement st = m_db.PrepareStatement(sql);
st.ExecuteUpdate();
}
{
wxString sql;
sql << "delete from VARIABLES_TABLE";
wxSQLite3Statement st = m_db.PrepareStatement(sql);
st.ExecuteUpdate();
}
{
wxString sql;
sql << "delete from FILES_TABLE";
wxSQLite3Statement st = m_db.PrepareStatement(sql);
st.ExecuteUpdate();
}
{
wxString sql;
sql << "delete from FUNCTION_ALIAS_TABLE";
wxSQLite3Statement st = m_db.PrepareStatement(sql);
st.ExecuteUpdate();
}
if(autoCommit)
m_db.Commit();
} catch(wxSQLite3Exception& e) {
if(autoCommit)
m_db.Rollback();
clWARNING() << "PHPLookupTable::ClearAll" << e.GetMessage() << endl;
}
}
PHPEntityBase::Ptr_t PHPLookupTable::FindFunction(const wxString& fullname)
{
// locate the scope
try {
wxString sql;
// limit by 2 for performance reason
// we will return NULL incase the number of matches is greater than 1...
sql << "SELECT * from FUNCTION_TABLE WHERE FULLNAME='" << fullname << "'";
sql << " LIMIT 2";
wxSQLite3Statement st = m_db.PrepareStatement(sql);
wxSQLite3ResultSet res = st.ExecuteQuery();
PHPEntityBase::Ptr_t match(NULL);
while(res.NextRow()) {
if(match) {
// only one match
return PHPEntityBase::Ptr_t(NULL);
}
match.Reset(new PHPEntityFunction());
match->FromResultSet(res);
}
return match;
} catch(wxSQLite3Exception& e) {
clWARNING() << "PHPLookupTable::FindFunction" << e.GetMessage() << endl;
}
return PHPEntityBase::Ptr_t(NULL);
}
PHPEntityBase::List_t PHPLookupTable::FindGlobalFunctionAndConsts(size_t flags, const wxString& nameHint)
{
PHPEntityBase::List_t matches;
// Sanity
if(nameHint.IsEmpty())
return matches;
// First, locate the global namespace in the database
PHPEntityBase::Ptr_t globalNs = FindScope("\\");
if(!globalNs)
return matches;
DoFindChildren(matches, globalNs->GetDbId(), kLookupFlags_FunctionsAndConstsOnly | flags, nameHint);
return matches;
}
PHPEntityBase::Ptr_t PHPLookupTable::CreateNamespaceForDefine(PHPEntityBase::Ptr_t define)
{
wxString nameSpaceName, shortName;
DoSplitFullname(define->GetFullName(), nameSpaceName, shortName);
PHPEntityBase::Ptr_t pNamespace = DoFindScope(nameSpaceName, kPhpScopeTypeNamespace);
if(!pNamespace) {
// Create it
pNamespace.Reset(new PHPEntityNamespace());
pNamespace->SetFullName(nameSpaceName);
pNamespace->SetShortName(nameSpaceName.AfterLast('\\'));
pNamespace->SetFilename(define->GetFilename());
pNamespace->SetLine(define->GetLine());
pNamespace->Store(this);
}
return pNamespace;
}
void PHPLookupTable::DoSplitFullname(const wxString& fullname, wxString& ns, wxString& shortName)
{
// get the namespace part
ns = fullname.BeforeLast('\\');
if(!ns.StartsWith("\\")) {
// This means that the fullname contained a single '\'
// and we removed it
ns.Prepend("\\");
}
// Now the short name
shortName = fullname.AfterLast('\\');
}
PHPEntityBase::List_t PHPLookupTable::FindNamespaces(const wxString& fullnameStartsWith,
const wxString& shortNameContains)
{
PHPEntityBase::List_t matches;
try {
wxString sql;
wxString prefix = fullnameStartsWith;
sql << "SELECT * from SCOPE_TABLE WHERE SCOPE_TYPE = 0 ";
DoAddLimit(sql);
wxSQLite3Statement st = m_db.PrepareStatement(sql);
wxSQLite3ResultSet res = st.ExecuteQuery();
wxString fullpath = fullnameStartsWith;
if(!shortNameContains.IsEmpty()) {
if(!fullpath.EndsWith("\\")) {
fullpath << "\\";
}
fullpath << shortNameContains;
}
while(res.NextRow()) {
PHPEntityBase::Ptr_t match(new PHPEntityNamespace());
match->FromResultSet(res);
if(match->Cast<PHPEntityNamespace>()->GetParentNamespace() == fullnameStartsWith &&
match->GetShortName().StartsWith(shortNameContains)) {
matches.push_back(match);
}
}
} catch(wxSQLite3Exception& e) {
clWARNING() << "PHPLookupTable::FindNamespaces" << e.GetMessage() << endl;
}
return matches;
}
PHPEntityBase::Ptr_t PHPLookupTable::FindFunctionByLineAndFile(const wxFileName& filename, int line)
{
try {
wxString sql;
// Try to locate function first
sql << "SELECT * from FUNCTION_TABLE WHERE FILE_NAME=:FILE_NAME AND LINE_NUMBER=:LINE_NUMBER LIMIT 1";
wxSQLite3Statement st = m_db.PrepareStatement(sql);
st.Bind(st.GetParamIndex(":FILE_NAME"), filename.GetFullPath());
st.Bind(st.GetParamIndex(":LINE_NUMBER"), line);
wxSQLite3ResultSet res = st.ExecuteQuery();
if(res.NextRow()) {
PHPEntityBase::Ptr_t match(new PHPEntityFunction());
match->FromResultSet(res);
return match;
}
} catch(wxSQLite3Exception& e) {
clWARNING() << "PHPLookupTable::FindFunctionByLineAndFile" << e.GetMessage() << endl;
}
return NULL;
}
void PHPLookupTable::ResetDatabase()
{
wxFileName curfile = m_filename;
Close(); // Close the databse releasing any file capture we have
// Delete the file
if(curfile.IsOk() && curfile.Exists()) {
// Delete it from the file system
wxLogNull noLog;
if(!clRemoveFile(curfile.GetFullPath())) {
// ??
}
}
Open(curfile);
}
bool PHPLookupTable::CheckDiskImage(wxSQLite3Database& db, const wxFileName& filename)
{
try {
wxSQLite3ResultSet res = db.ExecuteQuery("PRAGMA integrity_check");
if(res.NextRow()) {
wxString value = res.GetString(0);
clDEBUG() << "PHP: 'PRAGMA integrity_check' returned:" << value << clEndl;
return (value.Lower() == "ok");
} else {
return false;
}
} catch(wxSQLite3Exception& exec) {
// this can only happen if we have a corrupt disk image
clWARNING() << "PHP: exception caught:" << exec.GetMessage() << clEndl;
clWARNING() << "PHP: database image is corrupted:" << filename.GetFullPath() << clEndl;
return false;
}
return true;
}
void PHPLookupTable::EnsureIntegrity(const wxFileName& filename)
{
wxSQLite3Database db;
db.Open(filename.GetFullPath());
if(db.IsOpen()) {
if(!CheckDiskImage(db, filename)) {
// disk image is malformed
db.Close();
wxLogNull noLog;
clRemoveFile(filename.GetFullPath());
}
}
}
PHPEntityBase::List_t PHPLookupTable::FindSymbol(const wxString& name)
{
// locate the scope
PHPEntityBase::List_t matches;
try {
{
//---------------------------------------------------------------------
// Load scopes (classes / namespaces)
//---------------------------------------------------------------------
wxString sql;
sql << "SELECT * from SCOPE_TABLE WHERE NAME='" << name << "'";
wxSQLite3Statement st = m_db.PrepareStatement(sql);
wxSQLite3ResultSet res = st.ExecuteQuery();
while(res.NextRow()) {
ePhpScopeType st = kPhpScopeTypeAny;
st =
res.GetInt("SCOPE_TYPE", 1) == kPhpScopeTypeNamespace ? kPhpScopeTypeNamespace : kPhpScopeTypeClass;
PHPEntityBase::Ptr_t match = NewEntity("SCOPE_TABLE", st);
if(match) {
match->FromResultSet(res);
matches.push_back(match);
}
}
}
{
//---------------------------------------------------------------------
// Load functions
//---------------------------------------------------------------------
wxString sql;
sql << "SELECT * from FUNCTION_TABLE WHERE NAME='" << name << "'";
wxSQLite3Statement st = m_db.PrepareStatement(sql);
wxSQLite3ResultSet res = st.ExecuteQuery();
while(res.NextRow()) {
PHPEntityBase::Ptr_t match(new PHPEntityFunction());
match->FromResultSet(res);
matches.push_back(match);
}
}
{
//---------------------------------------------------------------------
// Load function aliases
//---------------------------------------------------------------------
wxString sql;
sql << "SELECT * from FUNCTION_ALIAS_TABLE WHERE NAME='" << name << "'";
wxSQLite3Statement st = m_db.PrepareStatement(sql);
wxSQLite3ResultSet res = st.ExecuteQuery();
while(res.NextRow()) {
PHPEntityBase::Ptr_t match(new PHPEntityFunction());
match->FromResultSet(res);
matches.push_back(match);
}
}
{
//---------------------------------------------------------------------
// Load variables
//---------------------------------------------------------------------
wxString sql;
sql << "SELECT * from VARIABLES_TABLE WHERE NAME='" << name << "'";
wxSQLite3Statement st = m_db.PrepareStatement(sql);
wxSQLite3ResultSet res = st.ExecuteQuery();
while(res.NextRow()) {
PHPEntityBase::Ptr_t match = NewEntity("VARIABLES_TABLE", kPhpScopeTypeAny);
match->FromResultSet(res);
matches.push_back(match);
}
}
} catch(wxSQLite3Exception& e) {
clWARNING() << "PHPLookupTable::FindSymbol" << e.GetMessage() << endl;
}
return matches;
}
void PHPLookupTable::DoFixVarsDocComment(PHPEntityBase::List_t& matches, wxLongLong parentId)
{
// Load all PHPDocVar belonged to this class
PHPDocVar::Map_t docs;
wxString sql;
sql << "SELECT * from PHPDOC_VAR_TABLE WHERE SCOPE_ID=" << parentId;
DoAddLimit(sql);
wxSQLite3Statement st = m_db.PrepareStatement(sql);
wxSQLite3ResultSet res = st.ExecuteQuery();
while(res.NextRow()) {
PHPDocVar::Ptr_t var(new PHPDocVar());
var->FromResultSet(res);
docs.insert(std::make_pair(var->GetName(), var));
}
// Let the PHPDOC table content override the matches' type
std::for_each(matches.begin(), matches.end(), [&](PHPEntityBase::Ptr_t match) {
if(match->Is(kEntityTypeVariable)) {
if(docs.count(match->GetShortName())) {
PHPDocVar::Ptr_t docvar = docs.find(match->GetShortName())->second;
if(!docvar->GetType().IsEmpty()) {
match->Cast<PHPEntityVariable>()->SetTypeHint(docvar->GetType());
}
}
}
});
}
void PHPLookupTable::UpdateClassCache(const wxString& classname)
{
if(m_allClasses.count(classname) == 0) {
m_allClasses.insert(classname);
}
}
bool PHPLookupTable::ClassExists(const wxString& classname) const { return m_allClasses.count(classname) != 0; }
void PHPLookupTable::RebuildClassCache()
{
// locate the scope
clDEBUG() << "Rebuilding PHP class cache..." << clEndl;
m_allClasses.clear();
size_t count = 0;
try {
wxString sql;
sql << "SELECT FULLNAME from SCOPE_TABLE WHERE SCOPE_TYPE=1";
wxSQLite3ResultSet res = m_db.ExecuteQuery(sql);
while(res.NextRow()) {
UpdateClassCache(res.GetString("FULLNAME"));
++count;
}
} catch(wxSQLite3Exception& e) {
clWARNING() << "PHPLookupTable::RebuildClassCache:" << e.GetMessage() << clEndl;
return;
}
clDEBUG() << "Loading" << count << "class names into the cache" << clEndl;
clDEBUG() << "Rebuilding PHP class cache...done" << clEndl;
}
PHPEntityBase::Ptr_t PHPLookupTable::FindFunctionNearLine(const wxFileName& filename, int lineNumber)
{
try {
wxString sql;
// limit by 2 for performance reason
// we will return NULL incase the number of matches is greater than 1...
// SELECT * from FUNCTION_TABLE WHERE
sql << "SELECT * from FUNCTION_TABLE WHERE FILE_NAME='" << filename.GetFullPath()
<< "' AND LINE_NUMBER <=" << lineNumber << " order by LINE_NUMBER DESC LIMIT 1";
wxSQLite3Statement st = m_db.PrepareStatement(sql);
wxSQLite3ResultSet res = st.ExecuteQuery();
PHPEntityBase::Ptr_t match(NULL);
if(res.NextRow()) {
match.Reset(new PHPEntityFunction());
match->FromResultSet(res);
}
return match;
} catch(wxSQLite3Exception& e) {
clWARNING() << "PHPLookupTable::FindFunctionNearLine:" << e.GetMessage() << clEndl;
}
return PHPEntityBase::Ptr_t(NULL);
}
size_t PHPLookupTable::FindFunctionsByFile(const wxFileName& filename, PHPEntityBase::List_t& functions)
{
wxString sql;
try {
// limit by 2 for performance reason
// we will return NULL incase the number of matches is greater than 1...
// SELECT * from FUNCTION_TABLE WHERE
sql << "SELECT * from FUNCTION_TABLE WHERE FILE_NAME='" << filename.GetFullPath()
<< "' order by LINE_NUMBER ASC";
wxSQLite3Statement st = m_db.PrepareStatement(sql);
wxSQLite3ResultSet res = st.ExecuteQuery();
while(res.NextRow()) {
PHPEntityBase::Ptr_t func(new PHPEntityFunction());
func->FromResultSet(res);
functions.push_back(func);
}
} catch(wxSQLite3Exception& e) {
clWARNING() << "SQLite 3 error:" << e.GetMessage() << clEndl;
}
return functions.size();
}
void PHPLookupTable::ParseFolder(const wxString& folder, const wxString& filemask, eUpdateMode updateMode)
{
clFilesScanner scanner;
std::vector<wxString> files;
if(scanner.Scan(folder, files, filemask) == 0) {
return;
}
std::for_each(files.begin(), files.end(), [&](const wxString& file) {
try {
wxFileName fnFile(file);
bool reParseNeeded(true);
if(updateMode == kUpdateMode_Fast) {
// Check to see if we need to re-parse this file
// and store it to the database
if(!fnFile.Exists()) {
reParseNeeded = false;
} else {
time_t lastModifiedOnDisk = fnFile.GetModificationTime().GetTicks();
wxLongLong lastModifiedInDB = GetFileLastParsedTimestamp(fnFile);
if(lastModifiedOnDisk <= lastModifiedInDB.ToLong()) {
reParseNeeded = false;
}
}
}
// Ensure that the file exists
if(!fnFile.Exists()) {
reParseNeeded = false;
}
if(!reParseNeeded)
return;
wxString content;
if(!FileUtils::ReadFileContent(fnFile, content, wxConvISO8859_1)) {
clWARNING() << "PHP: Failed to read file:" << fnFile << "for parsing";
return;
}
LOG_IF_TRACE { clDEBUG1() << "Parsing PHP file:" << fnFile; }
PHPSourceFile sourceFile(content, this);
sourceFile.SetFilename(fnFile);
sourceFile.SetParseFunctionBody(true);
sourceFile.Parse();
UpdateSourceFile(sourceFile, false);
} catch(wxSQLite3Exception& e) {
try {
m_db.Rollback();
} catch(...) {
}
clWARNING() << "PHPLookupTable::ParseFolder:" << e.GetMessage();
}
});
}
|