1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014
|
//////////////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////////////
//
// copyright : (C) 2008 by Eran Ifrah
// file name : language.cpp
//
// -------------------------------------------------------------------------
// A
// _____ _ _ _ _
// / __ \ | | | | (_) |
// | / \/ ___ __| | ___| | _| |_ ___
// | | / _ \ / _ |/ _ \ | | | __/ _ )
// | \__/\ (_) | (_| | __/ |___| | || __/
// \____/\___/ \__,_|\___\_____/_|\__\___|
//
// F i l e
//
// This program is free software; you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation; either version 2 of the License, or
// (at your option) any later version.
//
//////////////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////////////
#include "language.h"
#include "CompletionHelper.hpp"
#include "CxxLexerAPI.h"
#include "CxxPreProcessor.h"
#include "CxxScannerTokens.h"
#include "CxxTemplateFunction.h"
#include "CxxUsingNamespaceCollector.h"
#include "CxxVariableScanner.h"
#include "crawler_include.h"
#include "ctags_manager.h"
#include "file_logger.h"
#include "function.h"
#include "map"
#include "pptable.h"
#include "precompiled_header.h"
#include "variable.h"
#include "y.tab.h"
#include <algorithm>
#include <wx/ffile.h>
#include <wx/regex.h>
#include <wx/stopwatch.h>
#include <wx/tokenzr.h>
//#define __PERFORMANCE
#include "code_completion_api.h"
#include "performance.h"
#include "scope_optimizer.h"
static wxString PathFromNameAndScope(const wxString& typeName, const wxString& typeScope)
{
wxString path;
if(typeScope != wxT("<global>"))
path << typeScope << wxT("::");
path << typeName;
return path;
}
static wxString NameFromPath(const wxString& path)
{
wxString name = path.AfterLast(wxT(':'));
return name;
}
static wxString ScopeFromPath(const wxString& path)
{
wxString scope = path.BeforeLast(wxT(':'));
if(scope.IsEmpty())
return wxT("<global>");
if(scope.EndsWith(wxT(":"))) {
scope.RemoveLast();
}
if(scope.IsEmpty())
return wxT("<global>");
return scope;
}
Language::Language()
: m_expression(wxEmptyString)
, m_scanner(new CppScanner())
, m_tm(NULL)
{
// Initialise the braces map
m_braces['<'] = '>';
m_braces['('] = ')';
m_braces['['] = ']';
m_braces['{'] = '}';
// C++ / C auto complete delimiters for tokens
std::vector<wxString> delimArr;
delimArr.push_back(_T("::"));
delimArr.push_back(_T("->"));
delimArr.push_back(_T("."));
delimArr.push_back(wxT("@"));
SetAutoCompDeliemters(delimArr);
}
/// Destructor
Language::~Language() {}
#define SCP_STATE_NORMAL 0
#define SCP_STATE_IN_IF 1
#define SCP_STATE_IN_WHILE 2
#define SCP_STATE_IN_FOR 3
#define SCP_STATE_IN_CATCH 4
#define SCP_STATE_IN_FOR_NO_SEMICOLON 5
/// Return the visible scope until pchStopWord is encountered
wxString Language::OptimizeScope(const wxString& srcString, int lastFuncLine, wxString& localsScope)
{
CxxTokenizer tokenizer;
std::stack<wxString> scopes;
tokenizer.Reset(srcString);
CxxLexerToken token;
wxString currentScope;
int parenthesisDepth = 0;
int state = SCP_STATE_NORMAL;
while(tokenizer.NextToken(token)) {
if(tokenizer.IsInPreProcessorSection())
continue;
switch(state) {
case SCP_STATE_NORMAL:
switch(token.GetType()) {
case '{':
currentScope << "{";
scopes.push(currentScope);
currentScope.clear();
break;
case '}':
if(scopes.empty())
return ""; // Invalid braces count
currentScope = scopes.top();
scopes.pop();
currentScope << "} ";
break;
case T_IF:
state = SCP_STATE_IN_IF;
currentScope << " if ";
break;
case T_WHILE:
state = SCP_STATE_IN_WHILE;
currentScope << " while ";
break;
case T_FOR:
state = SCP_STATE_IN_FOR_NO_SEMICOLON;
currentScope << ";";
break;
case T_CATCH:
state = SCP_STATE_IN_CATCH;
currentScope << ";";
break;
case '(':
parenthesisDepth++;
currentScope << "(";
// Handle lambda
// If we are enterting lamda function defenition, collect the locals
// this is exactly what we in 'catch' hence the state change to SCP_STATE_IN_CATCH
if(tokenizer.GetLastToken().GetType() == ']') {
state = SCP_STATE_IN_CATCH;
}
break;
case ')':
parenthesisDepth--;
currentScope << ")";
break;
default:
if(parenthesisDepth == 0) {
currentScope << " " << token.GetWXString();
}
break;
}
break;
case SCP_STATE_IN_WHILE:
case SCP_STATE_IN_IF:
switch(token.GetType()) {
case '(':
parenthesisDepth++;
currentScope << "(";
break;
case ')':
parenthesisDepth--;
currentScope << ")";
if(parenthesisDepth == 0) {
state = SCP_STATE_NORMAL;
}
break;
}
break;
case SCP_STATE_IN_FOR_NO_SEMICOLON:
switch(token.GetType()) {
case '(':
parenthesisDepth++;
currentScope << "(";
break;
case ')':
parenthesisDepth--;
currentScope << ")";
if(parenthesisDepth == 0) {
state = SCP_STATE_NORMAL;
}
break;
case ';':
currentScope << ";";
state = SCP_STATE_IN_FOR;
break;
default:
currentScope << " " << token.GetWXString();
break;
}
break;
case SCP_STATE_IN_FOR:
switch(token.GetType()) {
case '(':
parenthesisDepth++;
currentScope << "(";
break;
case ')':
parenthesisDepth--;
currentScope << ")";
if(parenthesisDepth == 0) {
state = SCP_STATE_NORMAL;
}
break;
default:
break;
}
break;
case SCP_STATE_IN_CATCH:
switch(token.GetType()) {
case '(':
currentScope << "(";
parenthesisDepth++;
break;
case ')':
parenthesisDepth--;
currentScope << ")";
if(parenthesisDepth == 0) {
state = SCP_STATE_NORMAL;
}
break;
default:
currentScope << " " << token.GetWXString();
break;
}
break;
default:
break;
}
}
wxString s;
while(!scopes.empty()) {
s.Prepend(scopes.top());
scopes.pop();
}
s << currentScope;
localsScope = s;
return s;
}
ParsedToken* Language::ParseTokens(const wxString& scopeName)
{
wxString token;
wxString delim;
bool subscript;
ParsedToken* header(NULL);
ParsedToken* currentToken(header);
wxString funcArgList;
while(NextToken(token, delim, subscript, funcArgList)) {
ParsedToken* pt = new ParsedToken;
pt->SetSubscriptOperator(subscript);
pt->SetOperator(delim);
pt->SetPrev(currentToken);
pt->SetCurrentScopeName(scopeName);
pt->SetArgumentList(funcArgList);
ExpressionResult result = ParseExpression(token);
if(result.m_name.empty() && result.m_isGlobalScope == false) {
ParsedToken::DeleteTokens(header);
return NULL;
}
if(result.m_isGlobalScope && pt->GetOperator() != wxT("::")) {
ParsedToken::DeleteTokens(header);
return NULL;
}
if(result.m_isaType) {
pt->SetTypeScope(result.m_scope.empty() ? wxString(wxT("<global>"))
: wxString::From8BitData(result.m_scope.c_str()));
pt->SetTypeName(wxString::From8BitData(result.m_name.c_str()));
} else if(result.m_isGlobalScope) {
pt->SetTypeScope(wxT("<global>"));
pt->SetTypeName(wxT("<global>"));
} else if(result.m_isThis) {
//-----------------------------------------
// special handle for 'this' keyword
//-----------------------------------------
pt->SetTypeScope(result.m_scope.empty() ? wxString(wxT("<global>"))
: wxString::From8BitData(result.m_scope.c_str()));
if(scopeName == wxT("<global>")) {
ParsedToken::DeleteTokens(header);
return NULL;
}
if(pt->GetOperator() == wxT("::")) {
ParsedToken::DeleteTokens(header);
return NULL;
}
if(result.m_isPtr && pt->GetOperator() == wxT(".")) {
ParsedToken::DeleteTokens(header);
return NULL;
}
if(!result.m_isPtr && pt->GetOperator() == wxT("->")) {
ParsedToken::DeleteTokens(header);
return NULL;
}
pt->SetTypeName(scopeName);
pt->SetName(wxT("this"));
}
pt->SetIsTemplate(result.m_isTemplate);
// If the current token is 'this' then the type is actually the
// current scope
pt->SetName(_U(result.m_name.c_str()));
wxArrayString argsList;
ParseTemplateInitList(wxString::From8BitData(result.m_templateInitList.c_str()), argsList);
pt->SetTemplateInitialization(argsList);
if(currentToken == NULL) {
header = pt;
currentToken = pt;
} else {
currentToken->SetNext(pt);
currentToken = pt;
}
token.Clear();
delim.Clear();
subscript = false;
}
if(header && header->GetNext() && header->GetName().IsEmpty() && header->GetOperator() == "::") {
// a chain with more than one token and the first token is simple "::"
// Delete the first token from the list
ParsedToken* newHeader = header->GetNext();
newHeader->SetPrev(NULL);
wxDELETE(header);
header = newHeader;
}
return header;
}
bool Language::NextToken(wxString& token, wxString& delim, bool& subscriptOperator, wxString& funcArgList)
{
int depth(0);
int parenthesisDepth(0);
bool collectingFuncArgList = true;
subscriptOperator = false;
funcArgList.Clear();
CxxLexerToken tok;
while(m_tokenScanner.NextToken(tok)) {
if(parenthesisDepth) {
switch(tok.GetType()) {
case '(':
++parenthesisDepth;
if(collectingFuncArgList) {
funcArgList << "(";
}
break;
case ')':
--parenthesisDepth;
if(collectingFuncArgList) {
funcArgList << ")";
}
break;
default:
if(collectingFuncArgList) {
funcArgList << " " << tok.GetWXString();
}
break;
}
} else {
switch(tok.GetType()) {
case T_DECLTYPE: {
if(m_tokenScanner.GetLastToken().GetType() == ',') {
token.RemoveLast();
}
wxString dummy;
if(m_tokenScanner.ReadUntilClosingBracket(')', dummy)) {
m_tokenScanner.NextToken(tok); // Consume the closing parent
}
break;
}
case T_STATIC_CAST:
case T_DYNAMIC_CAST:
case T_REINTERPRET_CAST:
case T_CONST_CAST: {
// We expect now: "<"
wxString txt;
if(m_tokenScanner.PeekToken(txt) != '<')
return false;
wxString typestr;
if(!m_tokenScanner.ReadUntilClosingBracket('>', typestr))
return false;
token.swap(typestr);
// Consume the closing angle bracket
m_tokenScanner.NextToken(tok);
// Peek at the next token
if(m_tokenScanner.PeekToken(txt) != '(')
return false;
if(!m_tokenScanner.ReadUntilClosingBracket(')', typestr))
return false;
// Consume the closing parenthessis
m_tokenScanner.NextToken(tok);
token.Replace("*", "");
token.Replace("&", "");
token.Trim().Trim(false);
token.Remove(0, 1).RemoveLast();
token.Trim().Trim(false);
break;
}
case T_THIS:
token << "this";
break;
case T_DOUBLE_COLONS:
case '.':
case T_ARROW:
if(depth == 0) {
delim = tok.GetWXString();
return true;
} else {
token << " " << tok.GetWXString();
}
break;
case '[':
subscriptOperator = true;
depth++;
token << " " << tok.GetWXString();
break;
case '(':
if(!token.IsEmpty()) {
// If the token is empty, we ignore this parenthessis.
// The reason is that it is probably from an expression like casting:
// (wxClipboard*)
parenthesisDepth++;
if(collectingFuncArgList) {
token << tok.GetWXString();
}
}
break;
case ')':
// Closing brace on this leve, means that their partner (the open brace)
// was ignored (see above) so we should ignore this one as well
break;
case '<':
case '{':
depth++;
token << " " << tok.GetWXString();
break;
case '>':
case ']':
case '}':
depth--;
token << " " << tok.GetWXString();
break;
case T_IDENTIFIER:
case ',':
case T_DOUBLE:
case T_INT:
case T_STRUCT:
case T_LONG:
case T_ENUM:
case T_CHAR:
case T_UNION:
case T_FLOAT:
case T_SHORT:
case T_UNSIGNED:
case T_SIGNED:
case T_VOID:
case T_CLASS:
case T_TYPEDEF:
token << " " << tok.GetWXString();
break;
default:
break;
}
}
}
if(token.IsEmpty() == false && depth == 0) {
if(delim.IsEmpty()) {
delim = ".";
return true;
}
}
return false;
}
void Language::SetAutoCompDeliemters(const std::vector<wxString>& delimArr) { m_delimArr = delimArr; }
bool Language::ProcessExpression(const wxString& expr, const wxString& text, const wxFileName& fn, int lineno,
wxString& typeName, // output
wxString& typeScope, // output
wxString& oper, // output
wxString& scopeTemplateInitList) // output
{
bool evaluationSucceeded = true;
m_templateArgs.clear();
wxString statement(expr);
// Trim whitespace from right and left
static wxString trimString(_T("{};\r\n\t\v "));
statement.erase(0, statement.find_first_not_of(trimString));
statement.erase(statement.find_last_not_of(trimString) + 1);
wxString visibleScope, scopeName, localsBody;
wxString lastFuncSig;
TagEntryPtr matched_tag = TagsManagerST::Get()->FunctionFromBufferLine(text, lineno, fn.GetFullPath());
wxString textAfterTokensReplacements;
textAfterTokensReplacements = ApplyCtagsReplacementTokens(text);
// Parse the local variables once
const wxStringTable_t& ignoreTokens = GetTagsManager()->GetCtagsOptions().GetTokensWxMap();
m_locals.clear();
{
CxxVariableScanner scanner(textAfterTokensReplacements, eCxxStandard::kCxx11, ignoreTokens, false);
CxxVariable::Map_t localsMap = scanner.GetVariablesMap();
m_locals.insert(localsMap.begin(), localsMap.end());
visibleScope = scanner.GetOptimizeBuffer();
}
// parse the the current function's signature
if(matched_tag) {
CompletionHelper helper;
std::vector<wxString> args = helper.split_function_signature(matched_tag->GetSignature(), nullptr);
for(const wxString& arg : args) {
lastFuncSig << arg << ",";
CxxVariableScanner scanner(arg, eCxxStandard::kCxx11, ignoreTokens, true);
CxxVariable::Map_t localsMap = scanner.GetVariablesMap();
m_locals.insert(localsMap.begin(), localsMap.end());
}
if(!lastFuncSig.empty()) {
lastFuncSig.RemoveLast();
}
}
std::vector<wxString> additionalScopes;
scopeName = GetScopeName(visibleScope, &additionalScopes);
// Always use the global namespace as an addition scope
// but make sure we add it last
additionalScopes.push_back(wxT("<global>"));
SetLastFunctionSignature(lastFuncSig);
SetVisibleScope(localsBody);
SetAdditionalScopes(additionalScopes, fn.GetFullPath());
// get next token using the tokenscanner object
m_tokenScanner.Reset(statement);
// By default we keep the head of the list to the top
// of the chain
TokenContainer container;
container.head = ParseTokens(scopeName);
if(!container.head) {
return false;
}
container.current = container.head;
while(container.current) {
bool res = ProcessToken(&container);
if(!res && !container.Rewind()) {
evaluationSucceeded = false;
break;
} else if(!res && container.Rewind()) {
// ProcessToken() modified the list
container.SetRewind(false);
continue;
}
container.retries = 0;
// HACK1: Let the user override the parser decisions
RunUserTypes(container.current);
// We call here to IsTypeAndScopeExists which will attempt to provide the best scope / type
DoIsTypeAndScopeExist(container.current);
DoExtractTemplateInitListFromInheritance(container.current);
if(container.current->GetIsTemplate() && container.current->GetTemplateArgList().IsEmpty()) {
// We got no template declaration...
container.current->SetTemplateArgList(DoExtractTemplateDeclarationArgs(container.current), m_templateArgs);
}
int retryCount(0);
bool cont(false);
bool cont2(false);
do {
CheckForTemplateAndTypedef(container.current);
// We check subscript operator only once
cont = (container.current->GetSubscriptOperator() && OnSubscriptOperator(container.current));
if(cont) {
RunUserTypes(container.current);
}
container.current->SetSubscriptOperator(false);
cont2 = (container.current->GetOperator() == wxT("->") && OnArrowOperatorOverloading(container.current));
if(cont2) {
RunUserTypes(container.current);
}
retryCount++;
} while((cont || cont2) && retryCount < 5);
// Update the results we got so far
typeName = container.current->GetTypeName();
typeScope = container.current->GetTypeScope();
// Keep the last operator used, it is required by the caller
oper = container.current->GetOperator();
container.current = container.current->GetNext();
}
// release the tokens
ParsedToken::DeleteTokens(container.head);
return evaluationSucceeded;
}
bool Language::OnTemplates(ParsedToken* token)
{
token->ResolveTemplateType(GetTagsManager());
return token->ResovleTemplate(GetTagsManager());
}
void Language::DoSimpleTypedef(ParsedToken* token) {}
bool Language::OnTypedef(ParsedToken* token) { return false; }
void Language::ParseTemplateArgs(const wxString& argListStr, wxArrayString& argsList)
{
CppScanner scanner;
scanner.SetText(_C(argListStr));
int type = scanner.yylex();
wxString word = _U(scanner.YYText());
// Eof?
if(type == 0) {
return;
}
if(type != (int)'<') {
return;
}
bool nextIsArg(false);
bool cont(true);
while(cont) {
type = scanner.yylex();
if(type == 0) {
break;
}
switch(type) {
case lexCLASS:
case IDENTIFIER: {
wxString word = _U(scanner.YYText());
if(word == wxT("class") || word == wxT("typename")) {
nextIsArg = true;
} else if(nextIsArg) {
argsList.Add(word);
nextIsArg = false;
}
break;
}
case(int)'>':
cont = false;
break;
default:
break;
}
}
}
void Language::ParseTemplateInitList(const wxString& argListStr, wxArrayString& argsList)
{
CppScanner scanner;
scanner.SetText(_C(argListStr));
int type = scanner.yylex();
wxString word = _U(scanner.YYText());
// Eof?
if(type == 0) {
return;
}
if(type != (int)'<') {
return;
}
int depth(1);
wxString typeName;
while(depth > 0) {
type = scanner.yylex();
if(type == 0) {
break;
}
switch(type) {
case(int)',': {
if(depth == 1) {
argsList.Add(typeName.Trim().Trim(false));
typeName.Empty();
}
break;
}
case(int)'>':
depth--;
break;
case(int)'<':
depth++;
break;
case(int)'*':
case(int)'&':
// ignore pointers & references
break;
default:
if(depth == 1) {
typeName << _U(scanner.YYText());
}
break;
}
}
if(typeName.Trim().Trim(false).IsEmpty() == false) {
argsList.Add(typeName.Trim().Trim(false));
}
typeName.Empty();
}
void Language::ParseComments(const wxFileName& fileName, std::vector<CommentPtr>* comments)
{
wxString content;
try {
wxFFile f(fileName.GetFullPath().GetData());
if(!f.IsOpened())
return;
// read the content of the file and parse it
f.ReadAll(&content);
f.Close();
} catch(...) {
return;
}
m_scanner->Reset();
m_scanner->SetText(_C(content));
m_scanner->KeepComment(1);
int type(0);
wxString comment(_T(""));
int line(-1);
while(true) {
type = m_scanner->yylex();
if(type == 0) // eof
break;
// we keep only comments
if(type == CPPComment) {
// incase the previous comment was one line above this one,
// concatenate them to a single comment
if(m_scanner->lineno() - 1 == line) {
comment << m_scanner->GetComment();
line = m_scanner->lineno();
m_scanner->ClearComment();
continue;
}
// save the previous comment buffer
if(comment.IsEmpty() == false) {
comments->push_back(new Comment(comment, fileName.GetFullPath(), line - 1));
comment.Empty();
line = -1;
}
// first time or no comment is buffer
if(comment.IsEmpty()) {
comment = m_scanner->GetComment();
line = m_scanner->lineno();
m_scanner->ClearComment();
continue;
}
comments->push_back(new Comment(m_scanner->GetComment(), fileName.GetFullPath(), m_scanner->lineno() - 1));
comment.Empty();
line = -1;
m_scanner->ClearComment();
} else if(type == CComment) {
comments->push_back(new Comment(m_scanner->GetComment(), fileName.GetFullPath(), m_scanner->lineno()));
m_scanner->ClearComment();
}
}
if(comment.IsEmpty() == false) {
comments->push_back(new Comment(comment, fileName.GetFullPath(), line - 1));
}
// reset the scanner
m_scanner->KeepComment(0);
m_scanner->Reset();
}
wxString Language::GetScopeName(const wxString& in, std::vector<wxString>* additionlNS)
{
std::vector<std::string> moreNS;
const wxCharBuffer buf = _C(in);
TagsManager* mgr = GetTagsManager();
std::map<std::string, std::string> ignoreTokens = mgr->GetCtagsOptions().GetTokensMap();
std::string scope_name = get_scope_name(buf.data(), moreNS, ignoreTokens);
wxString scope = _U(scope_name.c_str());
if(scope.IsEmpty()) {
scope = wxT("<global>");
}
if(additionlNS) {
for(size_t i = 0; i < moreNS.size(); i++) {
additionlNS->push_back(_U(moreNS.at(i).c_str()));
}
// In case we are found some 'using namesapce XXX;' statement
// we should scan the following scopes:
// XXX
// and also:
// XXX::CurrentScope (assuming that CurrentScope != <global>)
if(scope != wxT("<global>")) {
std::vector<wxString> tmpScopes;
for(size_t i = 0; i < additionlNS->size(); i++) {
tmpScopes.push_back(additionlNS->at(i));
tmpScopes.push_back(additionlNS->at(i) + wxT("::") + scope);
}
additionlNS->clear();
additionlNS->insert(additionlNS->begin(), tmpScopes.begin(), tmpScopes.end());
}
wxArrayString moreScopes = GetTagsManager()->BreakToOuterScopes(scope);
for(size_t i = 0; i < moreScopes.GetCount(); i++) {
if(moreScopes.Item(i) != scope &&
std::find(additionlNS->begin(), additionlNS->end(), moreScopes.Item(i)) == additionlNS->end()) {
additionlNS->push_back(moreScopes.Item(i));
}
}
}
return scope;
}
ExpressionResult Language::ParseExpression(const wxString& in)
{
ExpressionResult result;
if(in.IsEmpty()) {
result.m_isGlobalScope = true;
} else {
const wxCharBuffer buf = _C(in);
result = parse_expression(buf.data());
}
return result;
}
bool Language::ProcessToken(TokenContainer* tokeContainer) { return false; }
bool Language::CorrectUsingNamespace(wxString& type, wxString& typeScope, const wxString& parentScope,
std::vector<TagEntryPtr>& tags)
{
wxString strippedScope(typeScope);
wxArrayString tmplInitList;
DoRemoveTempalteInitialization(strippedScope, tmplInitList);
if(typeScope == wxT("<global>") && GetAdditionalScopes().empty() == false) {
// Incase the typeScope is "global" and we got additional-scopes
// Use the additional scopes *before* the "global" scope
for(size_t i = 0; i < GetAdditionalScopes().size(); i++) {
tags.clear();
wxString newScope(GetAdditionalScopes().at(i));
if(typeScope != wxT("<global>")) {
newScope << wxT("::") << typeScope;
}
if(DoSearchByNameAndScope(type, newScope, tags, type, typeScope)) {
return true;
}
}
}
// try the passed scope (might be <global> now)
if(GetTagsManager()->IsTypeAndScopeExists(type, strippedScope)) {
return true;
}
// if we are here, it means that the more scopes did not matched any, try the parent scope
tags.clear();
// try all the scopes of the parent:
// for example:
// assuming the parent scope is A::B::C
// try to match:
// A::B::C
// A::B
// A
wxArrayString scopesToScan = GetTagsManager()->BreakToOuterScopes(parentScope);
scopesToScan.Add(wxT("<global>"));
for(size_t i = 0; i < scopesToScan.GetCount(); i++) {
tags.clear();
if(DoSearchByNameAndScope(type, scopesToScan.Item(i), tags, type, typeScope, false)) {
return true;
}
}
// still no luck, try the typeScope
scopesToScan = GetTagsManager()->BreakToOuterScopes(typeScope);
for(size_t i = 0; i < scopesToScan.GetCount(); i++) {
tags.clear();
if(DoSearchByNameAndScope(type, scopesToScan.Item(i), tags, type, typeScope, false)) {
return true;
}
}
return true;
}
bool Language::DoSearchByNameAndScope(const wxString& name, const wxString& scopeName, std::vector<TagEntryPtr>& tags,
wxString& type, wxString& typeScope, bool testGlobalScope)
{
return false;
}
bool Language::VariableFromPattern(const wxString& in, const wxString& name, Variable& var)
{
VariableList li;
wxString pattern(in);
// we need to extract the return value from the pattern
pattern = pattern.BeforeLast(wxT('$'));
pattern = pattern.AfterFirst(wxT('^'));
// remove C++11 angle bracket to use C++98
wxString fixed_pattern;
for(const wxChar& ch : pattern) {
switch(ch) {
case '>':
fixed_pattern << " >";
break;
case '<':
fixed_pattern << "< ";
break;
default:
fixed_pattern << ch;
break;
}
}
pattern.swap(fixed_pattern);
const wxCharBuffer patbuf = _C(pattern);
li.clear();
TagsManager* mgr = GetTagsManager();
auto ignoreTokens = mgr->GetCtagsOptions().GetTokensMap();
get_variables(patbuf.data(), li, ignoreTokens, false);
VariableList::iterator iter = li.begin();
for(; iter != li.end(); iter++) {
Variable v = *iter;
if(name == _U(v.m_name.c_str())) {
var = (*iter);
var.m_pattern = pattern.mb_str(wxConvUTF8).data();
return true;
}
} // if(li.size() == 1)
return false;
}
bool Language::FunctionFromPattern(TagEntryPtr tag, clFunction& foo) { return false; }
void Language::GetLocalVariables(const wxString& in, std::vector<TagEntryPtr>& tags, bool isFuncSignature,
const wxString& name, size_t flags)
{
wxString pattern(in);
pattern = pattern.Trim().Trim(false);
if(flags & ReplaceTokens) {
// Apply ctags replcements table on the current input string
pattern = ApplyCtagsReplacementTokens(in);
}
CxxVariableScanner scanner(pattern, eCxxStandard::kCxx11, GetTagsManager()->GetCtagsOptions().GetTokensWxMap(),
isFuncSignature);
CxxVariable::Vec_t locals = scanner.GetVariables(false);
for(CxxVariable::Ptr_t local : locals) {
const wxString& tagName = local->GetName();
// if we have name, collect only tags that matches name
if(!name.IsEmpty()) {
// incase CaseSensitive is not required, make both string lower case
wxString tmpName(name);
wxString tmpTagName(tagName);
if(flags & IgnoreCaseSensitive) {
tmpName.MakeLower();
tmpTagName.MakeLower();
}
if((flags & PartialMatch) && !tmpTagName.StartsWith(tmpName))
continue;
// Don't suggest what we have typed so far
if((flags & PartialMatch) && tmpTagName == tmpName)
continue;
;
if((flags & ExactMatch) && tmpTagName != tmpName)
continue;
;
} // else no name is specified, collect all tags
TagEntryPtr tag(new TagEntry());
tag->SetName(tagName);
tag->SetKind(wxT("variable"));
tag->SetParent(wxT("<local>"));
tag->SetScope(local->GetTypeAsCxxString());
tag->SetAccess("public");
tag->SetPattern(local->ToString());
tags.push_back(tag);
}
}
bool Language::OnArrowOperatorOverloading(ParsedToken* token)
{
bool ret(false);
// collect all functions of typename
std::vector<TagEntryPtr> tags;
wxString typeScope(token->GetTypeScope());
wxString typeName(token->GetTypeName());
// this function will retrieve the ineherited tags as well
GetTagsManager()->GetDereferenceOperator(token->GetPath(), tags);
if(tags.size() == 1) {
// loop over the tags and scan for operator -> overloading
// we found our overloading operator
// extract the 'real' type from the pattern
clFunction f;
if(FunctionFromPattern(tags.at(0), f)) {
typeName = _U(f.m_returnValue.m_type.c_str());
typeScope =
f.m_returnValue.m_typeScope.empty() ? token->GetPath() : _U(f.m_returnValue.m_typeScope.c_str());
token->SetTypeName(typeName);
token->SetTypeScope(typeScope);
// Call the magic method that fixes typename/typescope
DoIsTypeAndScopeExist(token);
ret = true;
}
}
return ret;
}
void Language::SetTagsManager(TagsManager* tm) { m_tm = tm; }
TagsManager* Language::GetTagsManager()
{
if(!m_tm) {
// for backward compatibility allows access to the tags manager using
// the singleton call
return TagsManagerST::Get();
} else {
return m_tm;
}
}
void Language::DoRemoveTempalteInitialization(wxString& str, wxArrayString& tmplInitList)
{
CppScanner sc;
sc.SetText(_C(str));
int type(0);
int depth(0);
wxString token;
wxString outputString;
str.Clear();
while((type = sc.yylex()) != 0) {
if(type == 0)
return;
token = _U(sc.YYText());
switch(type) {
case wxT('<'):
if(depth == 0)
outputString.Clear();
outputString << token;
depth++;
break;
case wxT('>'):
outputString << token;
depth--;
break;
default:
if(depth > 0)
outputString << token;
else
str << token;
break;
}
}
if(outputString.IsEmpty() == false) {
ParseTemplateInitList(outputString, tmplInitList);
}
}
void Language::DoFixFunctionUsingCtagsReturnValue(clFunction& foo, TagEntryPtr tag)
{
wxUnusedVar(foo);
wxUnusedVar(tag);
}
void Language::DoReplaceTokens(wxString& inStr, const wxStringTable_t& ignoreTokens)
{
if(inStr.IsEmpty())
return;
wxStringTable_t::const_iterator iter = ignoreTokens.begin();
for(; iter != ignoreTokens.end(); iter++) {
wxString findWhat = iter->first;
wxString replaceWith = iter->second;
if(findWhat.StartsWith(wxT("re:"))) {
findWhat.Remove(0, 3);
wxRegEx re(findWhat);
if(re.IsValid() && re.Matches(inStr)) {
re.ReplaceAll(&inStr, replaceWith);
}
} else {
// Simple replacement
int where = inStr.Find(findWhat);
if(where >= 0) {
if(inStr.Length() > static_cast<size_t>(where)) {
// Make sure that the next char is a non valid char otherwise this is not a complete word
if(inStr.Mid(where, 1).find_first_of(
wxT("abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ_1234567890")) != wxString::npos) {
// the match is not a full word
continue;
} else {
inStr.Replace(findWhat, replaceWith);
}
} else {
inStr.Replace(findWhat, replaceWith);
}
}
}
}
}
void Language::CheckForTemplateAndTypedef(ParsedToken* token)
{
bool typedefMatch;
bool templateMatch;
int retry(0);
do {
typedefMatch = OnTypedef(token);
if(typedefMatch) {
RunUserTypes(token);
DoIsTypeAndScopeExist(token);
}
// Attempt to fix the result
if(typedefMatch) {
DoExtractTemplateInitListFromInheritance(token);
// The typeName was a typedef, so make sure we update the template declaration list
// with the actual type
std::vector<TagEntryPtr> tags;
GetTagsManager()->FindByPath(token->GetPath(), tags);
if(tags.size() == 1 && !tags.at(0)->IsTypedef()) {
// Not a typedef
token->SetTemplateArgList(DoExtractTemplateDeclarationArgs(tags.at(0)), m_templateArgs);
token->SetIsTemplate(token->GetTemplateArgList().IsEmpty() == false);
} else if(tags.size() == 1) {
// Typedef
TagEntryPtr t = tags.at(0);
wxString pattern(t->GetPattern());
wxArrayString tmpInitList;
DoRemoveTempalteInitialization(pattern, tmpInitList);
// Incase any of the template initialization list is a
// typedef, resolve it as well
DoResolveTemplateInitializationList(tmpInitList);
token->SetTemplateInitialization(tmpInitList);
}
}
templateMatch = OnTemplates(token);
if(templateMatch) {
if(!DoIsTypeAndScopeExist(token)) {
std::vector<TagEntryPtr> dummyTags;
DoCorrectUsingNamespaces(token, dummyTags);
}
token->SetIsTemplate(false);
DoExtractTemplateInitListFromInheritance(token);
}
if(templateMatch) {
RunUserTypes(token);
}
retry++;
} while((typedefMatch || templateMatch) && retry < 15);
}
void Language::DoResolveTemplateInitializationList(wxArrayString& tmpInitList)
{
for(size_t i = 0; i < tmpInitList.GetCount(); i++) {
wxString fixedTemplateArg;
wxString name = NameFromPath(tmpInitList.Item(i));
wxString tmpScope = ScopeFromPath(tmpInitList.Item(i));
wxString scope = tmpScope == wxT("<global>") ? m_templateHelper.GetPath() : tmpScope;
ParsedToken tok;
tok.SetTypeName(name);
tok.SetTypeScope(scope);
DoSimpleTypedef(&tok);
name = tok.GetTypeName();
scope = tok.GetTypeScope();
if(GetTagsManager()->GetDatabase()->IsTypeAndScopeExistLimitOne(name, scope) == false) {
// no match, assume template: NAME only
tmpInitList.Item(i) = name;
} else
tmpInitList.Item(i) = PathFromNameAndScope(name, scope);
}
}
wxArrayString Language::DoExtractTemplateDeclarationArgs(ParsedToken* token)
{
// Find a tag in the database that matches this find and
// extract the template declaration for it
std::vector<TagEntryPtr> tags;
GetTagsManager()->FindByPath(token->GetPath(), tags);
if(tags.size() != 1)
return wxArrayString();
return DoExtractTemplateDeclarationArgs(tags.at(0));
}
wxArrayString Language::DoExtractTemplateDeclarationArgsFromScope()
{
wxString tmpParentScope(m_templateHelper.GetTypeScope());
wxString cuttedScope(tmpParentScope);
tmpParentScope.Replace(wxT("::"), wxT("@"));
std::vector<TagEntryPtr> tags;
cuttedScope.Trim().Trim(false);
while(!cuttedScope.IsEmpty()) {
// try all the scopes of thse parent:
// for example:
// assuming the parent scope is A::B::C
// try to match:
// A::B::C
// A::B
// A
tags.clear();
GetTagsManager()->FindByPath(cuttedScope, tags);
if(tags.size() == 1) {
if(tags.at(0)->GetPattern().Contains(wxT("template"))) {
return DoExtractTemplateDeclarationArgs(tags.at(0));
}
}
// get the next scope to search
cuttedScope = tmpParentScope.BeforeLast(wxT('@'));
cuttedScope.Replace(wxT("@"), wxT("::"));
cuttedScope.Trim().Trim(false);
tmpParentScope = tmpParentScope.BeforeLast(wxT('@'));
}
return wxArrayString();
}
wxArrayString Language::DoExtractTemplateDeclarationArgs(TagEntryPtr tag)
{
wxString pattern = tag->GetPattern();
wxString templateString;
// extract the template declartion list
CppScanner declScanner;
declScanner.ReturnWhite(1);
declScanner.SetText(_C(pattern));
bool foundTemplate(false);
int type(0);
while(true) {
type = declScanner.yylex();
if(type == 0) // eof
break;
wxString word = _U(declScanner.YYText());
switch(type) {
case IDENTIFIER:
if(word == wxT("template")) {
foundTemplate = true;
} else if(foundTemplate) {
templateString << word;
}
break;
default:
if(foundTemplate) {
templateString << word;
}
break;
}
}
if(foundTemplate) {
wxArrayString ar;
ParseTemplateArgs(templateString, ar);
return ar;
}
return wxArrayString();
}
///////////////////////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////////////////
// Scope Class
///////////////////////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////////////////
void TemplateHelper::SetTemplateDeclaration(const wxString& templateDeclaration)
{
LanguageST::Get()->ParseTemplateArgs(templateDeclaration, this->templateDeclaration);
}
void TemplateHelper::SetTemplateInstantiation(const wxString& tempalteInstantiation)
{
this->templateInstantiationVector.clear();
wxArrayString l;
LanguageST::Get()->ParseTemplateInitList(tempalteInstantiation, l);
this->templateInstantiationVector.push_back(l);
}
void TemplateHelper::SetTemplateInstantiation(const wxArrayString& templInstantiation)
{
// incase we are using template argument as template instantiation,
// we should perform the replacement or else we will lose
// the actual tempalte instantiation list
// an example for such cases:
// template <class _Tp> class vector {
// typedef Something<_Tp> reference;
// reference get();
// };
// Now, by attempting to resolve this:
// vector<wxString> v;
// v.get()->
// we should replace Something<_Tp> into Something<wxString> *before* we continue with
// the resolving
wxArrayString newInstantiationList = templInstantiation;
// search for 'name' in the declaration list
for(size_t i = 0; i < newInstantiationList.GetCount(); i++) {
int where = this->templateDeclaration.Index(newInstantiationList.Item(i));
if(where != wxNOT_FOUND) {
wxString name = Substitute(newInstantiationList.Item(i));
if(!name.IsEmpty())
newInstantiationList[i] = name;
}
}
templateInstantiationVector.push_back(newInstantiationList);
}
wxString TemplateHelper::Substitute(const wxString& name)
{
// for(size_t i=0; i<templateInstantiationVector.size(); i++) {
int count = static_cast<int>(templateInstantiationVector.size());
for(int i = count - 1; i >= 0; i--) {
int where = templateDeclaration.Index(name);
if(where != wxNOT_FOUND) {
// it exists, return the name in the templateInstantiation list
if(templateInstantiationVector.at(i).GetCount() > (size_t)where &&
templateInstantiationVector.at(i).Item(where) != name)
return templateInstantiationVector.at(i).Item(where);
}
}
return wxT("");
}
void TemplateHelper::Clear()
{
typeName.Clear();
typeScope.Clear();
templateInstantiationVector.clear();
templateDeclaration.Clear();
}
wxString TemplateHelper::GetPath() const
{
wxString path;
if(typeScope != wxT("<global>"))
path << typeScope << wxT("::");
path << typeName;
return path;
}
void Language::SetAdditionalScopes(const std::vector<wxString>& additionalScopes, const wxString& filename)
{
if(!(GetTagsManager()->GetCtagsOptions().GetFlags() & CC_DEEP_SCAN_USING_NAMESPACE_RESOLVING)) {
this->m_additionalScopes = additionalScopes;
} else {
this->m_additionalScopes.clear();
// Use the cache to get the list of using namespaces.
// The cache is populated by the CodeCompletionManager worker
// thread when the file is loaded
std::map<wxString, std::vector<wxString>>::iterator iter = m_additionalScopesCache.find(filename);
if(iter != m_additionalScopesCache.end()) {
this->m_additionalScopes = iter->second;
}
// "using namespace" may not contains current namespace, so make sure we add it
for(size_t i = 0; i < additionalScopes.size(); i++) {
if(!(std::find(this->m_additionalScopes.begin(), this->m_additionalScopes.end(), additionalScopes.at(i)) !=
this->m_additionalScopes.end())) {
this->m_additionalScopes.push_back(additionalScopes.at(i));
}
}
}
}
const std::vector<wxString>& Language::GetAdditionalScopes() const { return m_additionalScopes; }
bool Language::OnSubscriptOperator(ParsedToken* token)
{
bool ret(false);
// collect all functions of typename
std::vector<TagEntryPtr> tags;
wxString scope;
wxString typeName(token->GetTypeName());
wxString typeScope(token->GetTypeScope());
if(typeScope == wxT("<global>"))
scope << token->GetTypeName();
else
scope << token->GetTypeScope() << wxT("::") << token->GetTypeName();
// this function will retrieve the ineherited tags as well
GetTagsManager()->GetSubscriptOperator(scope, tags);
if(tags.size() == 1) {
// we found our overloading operator
// extract the 'real' type from the pattern
clFunction f;
if(FunctionFromPattern(tags.at(0), f)) {
token->SetTypeName(_U(f.m_returnValue.m_type.c_str()));
// first assume that the return value has the same scope like the parent (unless the return value has a
// scope)
token->SetTypeScope(f.m_returnValue.m_typeScope.empty() ? scope : _U(f.m_returnValue.m_typeScope.c_str()));
// Call the magic method that fixes typename/typescope
DoIsTypeAndScopeExist(token);
ret = true;
}
}
return ret;
}
bool Language::RunUserTypes(ParsedToken* token, const wxString& entryPath)
{
wxStringTable_t typeMap = GetTagsManager()->GetCtagsOptions().GetTypesMap();
// HACK1: Let the user override the parser decisions
wxString path = entryPath.IsEmpty() ? token->GetPath() : entryPath;
wxStringTable_t::const_iterator where = typeMap.find(path);
if(where != typeMap.end()) {
wxArrayString argList;
// Split to name and scope
wxString name, scope;
scope = where->second.BeforeFirst(wxT('<'));
name = scope.AfterLast(wxT(':'));
scope = scope.BeforeLast(wxT(':'));
if(scope.EndsWith(wxT(":"))) {
scope.RemoveLast();
}
token->SetTypeName(name);
// Did we got a scope as well?
if(!scope.IsEmpty())
token->SetTypeScope(scope);
wxString argsString = where->second.AfterFirst(wxT('<'));
argsString.Prepend(wxT("<"));
DoRemoveTempalteInitialization(argsString, argList);
if(argList.IsEmpty() == false) {
// If we already got a concrete template initialization list
// do not override it with the dummy one taken from the user
// type definition
if(token->GetTemplateInitialization().IsEmpty())
token->SetTemplateInitialization(argList);
token->SetIsTemplate(true);
}
return true;
}
return false;
}
bool Language::DoIsTypeAndScopeExist(ParsedToken* token)
{
// Check to see if this is a primitve type...
if(is_primitive_type(token->GetTypeName().mb_str(wxConvUTF8).data())) {
return true;
}
// Does the typename is happen to be a template argument?
if(m_templateArgs.count(token->GetTypeName())) {
return true;
}
std::vector<wxString> scopes_to_try = GetAdditionalScopes();
wxArrayString parent_scopes = ::wxStringTokenize(token->GetFullScope(), ":", wxTOKEN_STRTOK);
std::vector<wxString> additional_sscopes;
while(!parent_scopes.empty()) {
wxString tmpscope;
for(const wxString& s : parent_scopes) {
if(!tmpscope.empty()) {
tmpscope << "::";
}
tmpscope << s;
}
additional_sscopes.push_back(tmpscope);
parent_scopes.pop_back();
}
// prepend the `additional_sscopes` to the `scopes_to_try`
scopes_to_try.insert(scopes_to_try.begin(), additional_sscopes.begin(), additional_sscopes.end());
wxString type = token->GetTypeName();
wxString scope;
bool res = false;
for(const wxString& s : scopes_to_try) {
scope = s;
res = GetTagsManager()->IsTypeAndScopeExists(type, scope);
if(res) {
token->SetTypeName(type);
token->SetTypeScope(scope);
return true;
}
}
return false;
}
bool Language::DoCorrectUsingNamespaces(ParsedToken* token, std::vector<TagEntryPtr>& tags)
{
wxString type(token->GetTypeName());
wxString scope(token->GetTypeScope());
bool res = CorrectUsingNamespace(type, scope, token->GetContextScope(), tags);
token->SetTypeName(type);
token->SetTypeScope(scope);
return res;
}
void Language::DoExtractTemplateInitListFromInheritance(TagEntryPtr tag, ParsedToken* token)
{
wxArrayString initList;
wxString parent;
wxString scope;
if(token->GetIsTemplate()) {
// if this token is already tagged as 'template' dont
// change this
return;
}
// Loop over the parents of 'tag' and search for any template parent
// In case we find one, extract the template initialization list from
// the parent inheritance line and copy it to the current token.
// If we do find a match, search for the parent itself in the database
// and extract its template declaration list
if(tag->IsClass() || tag->IsStruct()) {
// returns the inheris string with template initialization list
wxArrayString inherits = tag->GetInheritsAsArrayWithTemplates();
wxArrayString inheritsNoTemplate = tag->GetInheritsAsArrayNoTemplates();
size_t i = 0;
for(; i < inherits.size(); i++) {
DoRemoveTempalteInitialization(inherits.Item(i), initList);
if(initList.IsEmpty() == false) {
break;
}
}
if(initList.IsEmpty() == false) {
token->SetIsTemplate(true);
token->SetTemplateInitialization(initList);
if(i < inheritsNoTemplate.GetCount()) {
parent = inheritsNoTemplate.Item(i);
scope = tag->GetScope();
// Find this parent
GetTagsManager()->IsTypeAndScopeExists(parent, scope);
if(scope.IsEmpty() == false && scope != wxT("<global>")) {
parent.Prepend(scope + wxT("::"));
}
std::vector<TagEntryPtr> tags;
GetTagsManager()->FindByPath(parent, tags);
if(tags.size() == 1) {
wxArrayString newArgList = DoExtractTemplateDeclarationArgs(tags.at(0));
if(newArgList.IsEmpty() == false) {
token->SetTemplateArgList(newArgList, m_templateArgs);
}
}
}
}
}
}
void Language::DoExtractTemplateInitListFromInheritance(ParsedToken* token)
{
std::vector<TagEntryPtr> tags;
GetTagsManager()->FindByPath(token->GetPath(), tags);
if(tags.size() == 1) {
DoExtractTemplateInitListFromInheritance(tags.at(0), token);
}
}
void Language::DoFixTokensFromVariable(TokenContainer* tokeContainer, const wxString& variableDecl)
{
// the current tokan is indeed defined on the local stack.
// what we do now is creating new chain of tokens based on the
// variable declaration, removing the token that represents the local variable
// and link the two chains together
//
// In addition, we copy the subscript operator flag
// from the variable into the token declaration
ParsedToken* token = tokeContainer->current;
wxString scopeName = token->GetCurrentScopeName();
wxString op = token->GetOperator();
bool subscript = token->GetSubscriptOperator();
wxString newTextToParse;
newTextToParse << variableDecl << op;
m_tokenScanner.Reset(newTextToParse);
ParsedToken* newToken = ParseTokens(scopeName);
if(newToken) {
// copy the subscript operator from the local variable token to the
// last token in the new parsed list
ParsedToken* lastToken = newToken;
while(lastToken && lastToken->GetNext()) {
lastToken = lastToken->GetNext();
}
lastToken->SetSubscriptOperator(subscript);
// If the local variable token has more tokens down the chain,
// disconnect it from them while connecting the rest of the
// tokens to the newly parsed list
if(token->GetNext()) {
lastToken->SetNext(token->GetNext());
token->GetNext()->SetPrev(lastToken);
token->SetNext(NULL);
}
// free the token
ParsedToken::DeleteTokens(token);
tokeContainer->head = newToken;
tokeContainer->current = newToken;
tokeContainer->SetRewind(true);
}
}
void Language::DoExtractTemplateArgsFromSelf(ParsedToken* token)
{
// if it is already marked as template, dont change it
if(token->GetIsTemplate())
return;
std::vector<TagEntryPtr> tags;
GetTagsManager()->FindByPath(token->GetPath(), tags);
if(tags.size() == 1 && !tags.at(0)->IsTypedef()) {
// Not a typedef
token->SetTemplateArgList(DoExtractTemplateDeclarationArgs(tags.at(0)), m_templateArgs);
token->SetIsTemplate(token->GetTemplateArgList().IsEmpty() == false);
}
}
// Adaptor to Language
static Language* gs_Language = NULL;
void LanguageST::Free()
{
if(gs_Language) {
delete gs_Language;
}
gs_Language = NULL;
}
Language* LanguageST::Get()
{
if(gs_Language == NULL)
gs_Language = new Language();
return gs_Language;
}
wxString Language::ApplyCtagsReplacementTokens(const wxString& in)
{
// First, get the replacement map
CLReplacementList replacements;
const wxStringTable_t& replacementMap = GetTagsManager()->GetCtagsOptions().GetTokensWxMap();
wxStringTable_t::const_iterator iter = replacementMap.begin();
for(; iter != replacementMap.end(); ++iter) {
if(iter->second.IsEmpty())
continue;
wxString pattern = iter->first;
wxString replace = iter->second;
pattern.Trim().Trim(false);
replace.Trim().Trim(false);
CLReplacement repl;
repl.construct(pattern.To8BitData().data(), replace.To8BitData().data());
if(repl.is_ok) {
replacements.push_back(repl);
}
}
if(replacements.empty())
return in;
// Now, apply the replacements
wxString outputStr;
wxArrayString lines = ::wxStringTokenize(in, wxT("\r\n"), wxTOKEN_STRTOK);
for(size_t i = 0; i < lines.GetCount(); i++) {
std::string outStr = lines.Item(i).mb_str(wxConvUTF8).data();
CLReplacementList::iterator iter = replacements.begin();
for(; iter != replacements.end(); iter++) {
::CLReplacePatternA(outStr, *iter, outStr);
}
outputStr << wxString(outStr.c_str(), wxConvUTF8) << wxT("\n");
}
return outputStr;
}
int Language::DoReadClassName(CppScanner& scanner, wxString& clsname) const
{
clsname.clear();
int type = 0;
while(true) {
type = scanner.yylex();
if(type == 0)
return 0;
if(type == IDENTIFIER) {
clsname = scanner.YYText();
} else if(type == '{' || type == ':') {
return type;
} else if(type == ';') {
// we probably encountered a forward declaration or 'friend' statement
clsname.Clear();
return (int)';';
}
}
return 0;
}
bool Language::InsertFunctionDecl(const wxString& clsname, const wxString& functionDecl, wxString& sourceContent,
int visibility)
{
// detemine the visibility requested
int typeVisibility = lexPUBLIC;
wxString strVisibility = wxT("public:\n");
switch(visibility) {
default:
case 0:
typeVisibility = lexPUBLIC;
strVisibility = wxT("public:\n");
break;
case 1:
typeVisibility = lexPROTECTED;
strVisibility = wxT("protected:\n");
break;
case 2:
typeVisibility = lexPRIVATE;
strVisibility = wxT("private:\n");
break;
}
// step 1: locate the class
CppScanner scanner;
scanner.SetText(sourceContent.mb_str(wxConvUTF8).data());
bool success = false;
int type = 0;
while(true) {
type = scanner.yylex();
if(type == 0) {
return false; // EOF
}
if(type == lexCLASS) {
wxString name;
type = DoReadClassName(scanner, name);
if(type == 0) {
return false;
}
if(name == clsname) {
// We found the lex
success = true;
break;
}
}
}
if(!success)
return false;
// scanner is pointing on the class
// We now need to find the first opening curly brace
success = false;
if(type == '{') {
// DoReadClassName already consumed the '{' character
// mark this as a success and continue
success = true;
} else {
while(true) {
type = scanner.yylex();
if(type == 0)
return false; // EOF
if(type == '{') {
success = true;
break;
}
}
}
if(!success)
return false;
// search for requested visibility, if we could not locate it
// locate the class ending curly brace
success = false;
int depth = 1;
int visibilityLine = wxNOT_FOUND;
int closingCurlyBraceLine = wxNOT_FOUND;
while(true) {
type = scanner.yylex();
if(type == 0)
break;
if(type == typeVisibility) {
visibilityLine = scanner.LineNo();
break;
}
if(type == '{') {
depth++;
} else if(type == '}') {
depth--;
if(depth == 0) {
// reached end of class
closingCurlyBraceLine = scanner.LineNo();
break;
}
}
}
wxString strToInsert;
int insertLine = visibilityLine;
if(visibilityLine == wxNOT_FOUND) {
// could not locate the visibility line
insertLine = closingCurlyBraceLine;
strToInsert << strVisibility << functionDecl;
insertLine--; // Place it one line on top of the curly brace
} else {
strToInsert << functionDecl;
}
if(insertLine == wxNOT_FOUND)
// could not find any of the two
return false;
wxString newContent;
wxArrayString lines = ::wxStringTokenize(sourceContent, wxT("\n"), wxTOKEN_RET_DELIMS);
for(size_t i = 0; i < lines.GetCount(); i++) {
if(insertLine == (int)i) {
newContent << strToInsert;
}
newContent << lines.Item(i);
}
sourceContent = newContent;
return true;
}
int Language::GetBestLineForForwardDecl(const wxString& fileContent) const
{
// Locating the place for adding forward declaration is one line on top of the first non comment/preprocessor
// code. So basically we constrcut our lexer and call yylex() once (it will skip all whitespaces/comments/pp...
// )
CppLexer lexer(fileContent.mb_str(wxConvISO8859_1).data());
while(true) {
int type = lexer.lex();
if(type == 0) {
// EOF
return wxNOT_FOUND;
}
break;
}
// stc is 0 based
int line = lexer.line_number();
if(line)
--line;
return line;
}
void Language::UpdateAdditionalScopesCache(const wxString& filename, const std::vector<wxString>& additionalScopes)
{
if(m_additionalScopesCache.count(filename)) {
m_additionalScopesCache.erase(filename);
}
m_additionalScopesCache.insert(std::make_pair(filename, additionalScopes));
}
void Language::ClearAdditionalScopesCache() { m_additionalScopesCache.clear(); }
CxxVariable::Ptr_t Language::FindLocalVariable(const wxString& name)
{
if(m_locals.empty()) {
return nullptr;
}
CxxVariable::Map_t::iterator iter = m_locals.find(name);
if(iter == m_locals.end()) {
return nullptr;
}
return iter->second;
}
CxxVariable::Ptr_t Language::FindVariableInScope(const wxString& scope, const wxString& name)
{
CxxVariableScanner scanner(scope, eCxxStandard::kCxx11, GetTagsManager()->GetCtagsOptions().GetTokensWxMap(),
false);
CxxVariable::Map_t M = scanner.GetVariablesMap();
if(M.count(name) == 0) {
return nullptr;
}
return M[name];
}
|