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
|
/*
* Copyright (c) 1996-2002, Darren Hiebert
*
* This source code is released for free distribution under the terms of the
* GNU General Public License version 2 or (at your option) any later version.
*
* This module contains functions for creating tag entries.
*/
/*
* INCLUDE FILES
*/
#include "general.h" /* must always come first */
#include <string.h>
#include <ctype.h> /* to define isspace () */
#include <errno.h>
#if defined (HAVE_SYS_TYPES_H)
# include <sys/types.h> /* to declare off_t on some hosts */
#endif
#if defined (HAVE_TYPES_H)
# include <types.h> /* to declare off_t on some hosts */
#endif
#if defined (HAVE_UNISTD_H)
# include <unistd.h> /* to declare close (), ftruncate (), truncate () */
#endif
/* These header files provide for the functions necessary to do file
* truncation.
*/
#ifdef HAVE_FCNTL_H
# include <fcntl.h>
#endif
#ifdef HAVE_IO_H
# include <io.h>
#endif
#include <stdint.h>
#include "debug.h"
#include "entry_p.h"
#include "field.h"
#include "fmt_p.h"
#include "kind.h"
#include "main.h"
#include "nestlevel.h"
#include "options_p.h"
#include "ptag_p.h"
#include "read.h"
#include "routines.h"
#include "routines_p.h"
#include "parse_p.h"
#include "ptrarray.h"
#include "sort.h"
#include "strlist.h"
#include "subparser.h"
#include "trashbox.h"
#include "writer_p.h"
#include "xtag.h"
/*
* MACROS
*/
/*
* Portability defines
*/
#if !defined(HAVE_TRUNCATE) && !defined(HAVE_FTRUNCATE) && !defined(HAVE_CHSIZE)
# define USE_REPLACEMENT_TRUNCATE
#endif
/* Hack for ridiculous practice of Microsoft Visual C++.
*/
#if defined (WIN32) && defined (_MSC_VER)
# define chsize _chsize
# define open _open
# define close _close
# define O_RDWR _O_RDWR
#endif
/* Maintains the state of the tag file.
*/
typedef struct eTagFile {
char *name;
char *directory;
MIO *mio;
struct sNumTags { unsigned long added, prev; } numTags;
struct sMax { size_t line, tag; } max;
vString *vLine;
unsigned int cork;
struct sCorkQueue {
struct sTagEntryInfo* queue;
unsigned int length;
unsigned int count;
} corkQueue;
bool patternCacheValid;
} tagFile;
/*
* DATA DEFINITIONS
*/
static tagFile TagFile = {
NULL, /* tag file name */
NULL, /* tag file directory (absolute) */
NULL, /* file pointer */
{ 0, 0 }, /* numTags */
{ 0, 0 }, /* max */
NULL, /* vLine */
.cork = false,
.corkQueue = {
.queue = NULL,
.length = 0,
.count = 0
},
.patternCacheValid = false,
};
static bool TagsToStdout = false;
/*
* FUNCTION PROTOTYPES
*/
#ifdef NEED_PROTO_TRUNCATE
extern int truncate (const char *path, off_t length);
#endif
#ifdef NEED_PROTO_FTRUNCATE
extern int ftruncate (int fd, off_t length);
#endif
/*
* FUNCTION DEFINITIONS
*/
extern void freeTagFileResources (void)
{
if (TagFile.directory != NULL)
eFree (TagFile.directory);
vStringDelete (TagFile.vLine);
}
extern const char *tagFileName (void)
{
return TagFile.name;
}
/*
* Pseudo tag support
*/
extern void abort_if_ferror(MIO *const mio)
{
if (mio_error (mio))
error (FATAL | PERROR, "cannot write tag file");
}
static void rememberMaxLengths (const size_t nameLength, const size_t lineLength)
{
if (nameLength > TagFile.max.tag)
TagFile.max.tag = nameLength;
if (lineLength > TagFile.max.line)
TagFile.max.line = lineLength;
}
static void addCommonPseudoTags (void)
{
for (int i = 0; i < PTAG_COUNT; i++)
{
if (isPtagCommonInParsers (i))
makePtagIfEnabled (i, NULL);
}
}
extern void makeFileTag (const char *const fileName)
{
tagEntryInfo tag;
if (!isXtagEnabled(XTAG_FILE_NAMES))
return;
initTagEntry (&tag, baseFilename (fileName), KIND_FILE_INDEX);
tag.isFileEntry = true;
tag.lineNumberEntry = true;
markTagExtraBit (&tag, XTAG_FILE_NAMES);
tag.lineNumber = 1;
if (isFieldEnabled (FIELD_END_LINE))
{
/* isFieldEnabled is called again in the rendering
stage. However, it is called here for avoiding
unnecessary read line loop. */
while (readLineFromInputFile () != NULL)
; /* Do nothing */
tag.extensionFields.endLine = getInputLineNumber ();
}
makeTagEntry (&tag);
}
static void updateSortedFlag (
const char *const line, MIO *const mio, MIOPos startOfLine)
{
const char *const tab = strchr (line, '\t');
if (tab != NULL)
{
const long boolOffset = tab - line + 1; /* where it should be */
if (line [boolOffset] == '0' || line [boolOffset] == '1')
{
MIOPos nextLine;
if (mio_getpos (mio, &nextLine) == -1 || mio_setpos (mio, &startOfLine) == -1)
error (WARNING, "Failed to update 'sorted' pseudo-tag");
else
{
MIOPos flagLocation;
int c, d;
do
c = mio_getc (mio);
while (c != '\t' && c != '\n');
mio_getpos (mio, &flagLocation);
d = mio_getc (mio);
if (c == '\t' && (d == '0' || d == '1') &&
d != (int) Option.sorted)
{
mio_setpos (mio, &flagLocation);
mio_putc (mio, Option.sorted == SO_FOLDSORTED ? '2' :
(Option.sorted == SO_SORTED ? '1' : '0'));
}
mio_setpos (mio, &nextLine);
}
}
}
}
/* Look through all line beginning with "!_TAG_FILE", and update those which
* require it.
*/
static long unsigned int updatePseudoTags (MIO *const mio)
{
enum { maxEntryLength = 20 };
char entry [maxEntryLength + 1];
unsigned long linesRead = 0;
MIOPos startOfLine;
size_t entryLength;
const char *line;
sprintf (entry, "%sTAG_FILE", PSEUDO_TAG_PREFIX);
entryLength = strlen (entry);
Assert (entryLength < maxEntryLength);
mio_getpos (mio, &startOfLine);
line = readLineRaw (TagFile.vLine, mio);
while (line != NULL && line [0] == entry [0])
{
++linesRead;
if (strncmp (line, entry, entryLength) == 0)
{
char tab, classType [16];
if (sscanf (line + entryLength, "%15s%c", classType, &tab) == 2 &&
tab == '\t')
{
if (strcmp (classType, "_SORTED") == 0)
updateSortedFlag (line, mio, startOfLine);
}
mio_getpos (mio, &startOfLine);
}
line = readLineRaw (TagFile.vLine, mio);
}
while (line != NULL) /* skip to end of file */
{
++linesRead;
line = readLineRaw (TagFile.vLine, mio);
}
return linesRead;
}
/*
* Tag file management
*/
static bool isValidTagAddress (const char *const excmd)
{
bool isValid = false;
if (strchr ("/?", excmd [0]) != NULL)
isValid = true;
else
{
char *address = xMalloc (strlen (excmd) + 1, char);
if (sscanf (excmd, "%[^;\n]", address) == 1 &&
strspn (address,"0123456789") == strlen (address))
isValid = true;
eFree (address);
}
return isValid;
}
static bool isCtagsLine (const char *const line)
{
enum fieldList { TAG, TAB1, SRC_FILE, TAB2, EXCMD, NUM_FIELDS };
bool ok = false; /* we assume not unless confirmed */
const size_t fieldLength = strlen (line) + 1;
char *const fields = xMalloc (NUM_FIELDS * fieldLength, char);
if (fields == NULL)
error (FATAL, "Cannot analyze tag file");
else
{
#define field(x) (fields + ((size_t) (x) * fieldLength))
const int numFields = sscanf (
line, "%[^\t]%[\t]%[^\t]%[\t]%[^\r\n]",
field (TAG), field (TAB1), field (SRC_FILE),
field (TAB2), field (EXCMD));
/* There must be exactly five fields: two tab fields containing
* exactly one tab each, the tag must not begin with "#", and the
* file name should not end with ";", and the excmd must be
* acceptable.
*
* These conditions will reject tag-looking lines like:
* int a; <C-comment>
* #define LABEL <C-comment>
*/
if (numFields == NUM_FIELDS &&
strlen (field (TAB1)) == 1 &&
strlen (field (TAB2)) == 1 &&
field (TAG) [0] != '#' &&
field (SRC_FILE) [strlen (field (SRC_FILE)) - 1] != ';' &&
isValidTagAddress (field (EXCMD)))
ok = true;
eFree (fields);
}
return ok;
}
static bool isEtagsLine (const char *const line)
{
bool result = false;
if (line [0] == '\f')
result = (bool) (line [1] == '\n' || line [1] == '\r');
return result;
}
static bool isTagFile (const char *const filename)
{
bool ok = false; /* we assume not unless confirmed */
MIO *const mio = mio_new_file (filename, "rb");
if (mio == NULL && errno == ENOENT)
ok = true;
else if (mio != NULL)
{
const char *line = readLineRaw (TagFile.vLine, mio);
if (line == NULL)
ok = true;
else
ok = (bool) (isCtagsLine (line) || isEtagsLine (line));
mio_free (mio);
}
return ok;
}
extern void openTagFile (void)
{
setDefaultTagFileName ();
TagsToStdout = isDestinationStdout ();
if (TagFile.vLine == NULL)
TagFile.vLine = vStringNew ();
/* Open the tags file.
*/
if (TagsToStdout)
{
if (Option.sorted == SO_UNSORTED)
{
/* Passing NULL for keeping stdout open.
stdout can be used for debugging purpose.*/
TagFile.mio = mio_new_fp(stdout, NULL);
TagFile.name = eStrdup ("/dev/stdout");
}
else
{
/* Open a tempfile with read and write mode. Read mode is used when
* write the result to stdout. */
TagFile.mio = tempFile ("w+", &TagFile.name);
}
if (isXtagEnabled (XTAG_PSEUDO_TAGS))
addCommonPseudoTags ();
}
else
{
bool fileExists;
TagFile.name = eStrdup (Option.tagFileName);
fileExists = doesFileExist (TagFile.name);
if (fileExists && ! isTagFile (TagFile.name))
error (FATAL,
"\"%s\" doesn't look like a tag file; I refuse to overwrite it.",
TagFile.name);
if (Option.etags)
{
if (Option.append && fileExists)
TagFile.mio = mio_new_file (TagFile.name, "a+b");
else
TagFile.mio = mio_new_file (TagFile.name, "w+b");
}
else
{
if (Option.append && fileExists)
{
TagFile.mio = mio_new_file (TagFile.name, "r+");
if (TagFile.mio != NULL)
{
TagFile.numTags.prev = updatePseudoTags (TagFile.mio);
mio_free (TagFile.mio);
TagFile.mio = mio_new_file (TagFile.name, "a+");
}
}
else
{
TagFile.mio = mio_new_file (TagFile.name, "w");
if (TagFile.mio != NULL && isXtagEnabled (XTAG_PSEUDO_TAGS))
addCommonPseudoTags ();
}
}
if (TagFile.mio == NULL)
error (FATAL | PERROR, "cannot open tag file");
}
if (TagFile.directory == NULL)
{
if (TagsToStdout)
TagFile.directory = eStrdup (CurrentDirectory);
else
TagFile.directory = absoluteDirname (TagFile.name);
}
}
#ifdef USE_REPLACEMENT_TRUNCATE
static void copyBytes (MIO* const fromMio, MIO* const toMio, const long size)
{
enum { BufferSize = 1000 };
long toRead, numRead;
char* buffer = xMalloc (BufferSize, char);
long remaining = size;
do
{
toRead = (0 < remaining && remaining < BufferSize) ?
remaining : (long) BufferSize;
numRead = mio_read (fromMio, buffer, (size_t) 1, (size_t) toRead);
if (mio_write (toMio, buffer, (size_t)1, (size_t)numRead) < (size_t)numRead)
error (FATAL | PERROR, "cannot complete write");
if (remaining > 0)
remaining -= numRead;
} while (numRead == toRead && remaining != 0);
eFree (buffer);
}
static void copyFile (const char *const from, const char *const to, const long size)
{
MIO* const fromMio = mio_new_file (from, "rb");
if (fromMio == NULL)
error (FATAL | PERROR, "cannot open file to copy");
else
{
MIO* const toMio = mio_new_file (to, "wb");
if (toMio == NULL)
error (FATAL | PERROR, "cannot open copy destination");
else
{
copyBytes (fromMio, toMio, size);
mio_free (toMio);
}
mio_free (fromMio);
}
}
/* Replacement for missing library function.
*/
static int replacementTruncate (const char *const name, const long size)
{
#define WHOLE_FILE -1L
char *tempName = NULL;
MIO *mio = tempFile ("w", &tempName);
mio_free (mio);
copyFile (name, tempName, size);
copyFile (tempName, name, WHOLE_FILE);
remove (tempName);
eFree (tempName);
return 0;
}
#endif
#ifndef EXTERNAL_SORT
static void internalSortTagFile (void)
{
MIO *mio;
/* Open/Prepare the tag file and place its lines into allocated buffers.
*/
if (TagsToStdout)
{
mio = TagFile.mio;
mio_seek (mio, 0, SEEK_SET);
}
else
{
mio = mio_new_file (tagFileName (), "r");
if (mio == NULL)
failedSort (mio, NULL);
}
internalSortTags (TagsToStdout,
mio,
TagFile.numTags.added + TagFile.numTags.prev);
if (! TagsToStdout)
mio_free (mio);
}
#endif
static void sortTagFile (void)
{
if (TagFile.numTags.added > 0L)
{
if (Option.sorted != SO_UNSORTED)
{
verbose ("sorting tag file\n");
#ifdef EXTERNAL_SORT
externalSortTags (TagsToStdout, TagFile.mio);
#else
internalSortTagFile ();
#endif
}
else if (TagsToStdout)
catFile (TagFile.mio);
}
}
static void resizeTagFile (const long newSize)
{
int result;
#ifdef USE_REPLACEMENT_TRUNCATE
result = replacementTruncate (TagFile.name, newSize);
#else
# ifdef HAVE_TRUNCATE
result = truncate (TagFile.name, (off_t) newSize);
# else
const int fd = open (TagFile.name, O_RDWR);
if (fd == -1)
result = -1;
else
{
# ifdef HAVE_FTRUNCATE
result = ftruncate (fd, (off_t) newSize);
# else
# ifdef HAVE_CHSIZE
result = chsize (fd, newSize);
# endif
# endif
close (fd);
}
# endif
#endif
if (result == -1)
fprintf (stderr, "Cannot shorten tag file: errno = %d\n", errno);
}
static void writeEtagsIncludes (MIO *const mio)
{
if (Option.etagsInclude)
{
unsigned int i;
for (i = 0 ; i < stringListCount (Option.etagsInclude) ; ++i)
{
vString *item = stringListItem (Option.etagsInclude, i);
mio_printf (mio, "\f\n%s,include\n", vStringValue (item));
}
}
}
extern void closeTagFile (const bool resize)
{
long desiredSize, size;
if (Option.etags)
writeEtagsIncludes (TagFile.mio);
mio_flush (TagFile.mio);
if ((TagsToStdout && (Option.sorted == SO_UNSORTED)))
{
if (mio_free (TagFile.mio) != 0)
error (FATAL | PERROR, "cannot close tag file");
goto out;
}
abort_if_ferror (TagFile.mio);
desiredSize = mio_tell (TagFile.mio);
mio_seek (TagFile.mio, 0L, SEEK_END);
size = mio_tell (TagFile.mio);
if (! TagsToStdout)
/* The tag file should be closed before resizing. */
if (mio_free (TagFile.mio) != 0)
error (FATAL | PERROR, "cannot close tag file");
if (resize && desiredSize < size)
{
DebugStatement (
debugPrintf (DEBUG_STATUS, "shrinking %s from %ld to %ld bytes\n",
TagFile.name, size, desiredSize); )
resizeTagFile (desiredSize);
}
sortTagFile ();
if (TagsToStdout)
{
if (mio_free (TagFile.mio) != 0)
error (FATAL | PERROR, "cannot close tag file");
remove (tagFileName ()); /* remove temporary file */
}
out:
eFree (TagFile.name);
TagFile.name = NULL;
}
/*
* Tag entry management
*/
/* This function copies the current line out to a specified file. It has no
* effect on the fileGetc () function. During copying, any '\' characters
* are doubled and a leading '^' or trailing '$' is also quoted. End of line
* characters (line feed or carriage return) are dropped.
*/
static size_t appendInputLine (int putc_func (char , void *), const char *const line, void * data, bool *omitted)
{
size_t length = 0;
const char *p;
int extraLength = 0;
/* Write everything up to, but not including, a line end character.
*/
*omitted = false;
for (p = line ; *p != '\0' ; ++p)
{
const int next = *(p + 1);
const int c = *p;
if (c == CRETURN || c == NEWLINE)
break;
if (Option.patternLengthLimit != 0 && length >= Option.patternLengthLimit &&
/* Do not cut inside a multi-byte UTF-8 character, but safe-guard it not to
* allow more than one extra valid UTF-8 character in case it's not actually
* UTF-8. To do that, limit to an extra 3 UTF-8 sub-bytes (0b10xxxxxx). */
((((unsigned char) c) & 0xc0) != 0x80 || ++extraLength > 3))
{
*omitted = true;
break;
}
/* If character is '\', or a terminal '$', then quote it.
*/
if (c == BACKSLASH || c == (Option.backward ? '?' : '/') ||
(c == '$' && (next == NEWLINE || next == CRETURN)))
{
putc_func (BACKSLASH, data);
++length;
}
putc_func (c, data);
++length;
}
return length;
}
static int vstring_putc (char c, void *data)
{
vString *str = data;
vStringPut (str, c);
return 1;
}
static int vstring_puts (const char* s, void *data)
{
vString *str = data;
size_t len = vStringLength (str);
vStringCatS (str, s);
return (int) (vStringLength (str) - len);
}
#ifdef DEBUG
static bool isPosSet(MIOPos pos)
{
char * p = (char *)&pos;
bool r = false;
unsigned int i;
for (i = 0; i < sizeof(pos); i++)
r |= p[i];
return r;
}
#endif
extern char *readLineFromBypassForTag (vString *const vLine, const tagEntryInfo *const tag,
long *const pSeekValue)
{
Assert (isPosSet (tag->filePosition) || (tag->pattern == NULL));
return readLineFromBypass (vLine, tag->filePosition, pSeekValue);
}
/* Truncates the text line containing the tag at the character following the
* tag, providing a character which designates the end of the tag.
*/
extern void truncateTagLineAfterTag (
char *const line, const char *const token, const bool discardNewline)
{
char *p = strstr (line, token);
if (p != NULL)
{
p += strlen (token);
if (*p != '\0' && ! (*p == '\n' && discardNewline))
++p; /* skip past character terminating character */
*p = '\0';
}
}
static char* getFullQualifiedScopeNameFromCorkQueue (const tagEntryInfo * inner_scope)
{
int kindIndex = KIND_GHOST_INDEX;
langType lang;
const tagEntryInfo *scope = inner_scope;
stringList *queue = stringListNew ();
vString *v;
vString *n;
unsigned int c;
const char *sep;
while (scope)
{
if (!scope->placeholder)
{
if (kindIndex != KIND_GHOST_INDEX)
{
sep = scopeSeparatorFor (lang, kindIndex, scope->kindIndex);
v = vStringNewInit (sep);
stringListAdd (queue, v);
}
/* TODO: scope field of SCOPE can be used for optimization. */
v = vStringNewInit (scope->name);
stringListAdd (queue, v);
kindIndex = scope->kindIndex;
lang = scope->langType;
}
scope = getEntryInCorkQueue (scope->extensionFields.scopeIndex);
}
n = vStringNew ();
while ((c = stringListCount (queue)) > 0)
{
v = stringListLast (queue);
vStringCat (n, v);
vStringDelete (v);
stringListRemoveLast (queue);
}
stringListDelete (queue);
return vStringDeleteUnwrap (n);
}
extern void getTagScopeInformation (tagEntryInfo *const tag,
const char **kind, const char **name)
{
if (kind)
*kind = NULL;
if (name)
*name = NULL;
if (tag->extensionFields.scopeKindIndex == KIND_GHOST_INDEX
&& tag->extensionFields.scopeName == NULL
&& tag->extensionFields.scopeIndex != CORK_NIL
&& TagFile.corkQueue.count > 0)
{
const tagEntryInfo * scope;
char *full_qualified_scope_name;
scope = getEntryInCorkQueue (tag->extensionFields.scopeIndex);
full_qualified_scope_name = getFullQualifiedScopeNameFromCorkQueue(scope);
Assert (full_qualified_scope_name);
/* Make the information reusable to generate full qualified entry, and xformat output*/
tag->extensionFields.scopeLangType = scope->langType;
tag->extensionFields.scopeKindIndex = scope->kindIndex;
tag->extensionFields.scopeName = full_qualified_scope_name;
}
if (tag->extensionFields.scopeKindIndex != KIND_GHOST_INDEX &&
tag->extensionFields.scopeName != NULL)
{
if (kind)
{
langType lang = (tag->extensionFields.scopeLangType == LANG_AUTO)
? tag->langType
: tag->extensionFields.scopeLangType;
kindDefinition *kdef = getLanguageKind (lang,
tag->extensionFields.scopeKindIndex);
*kind = kdef->name;
}
if (name)
*name = tag->extensionFields.scopeName;
}
}
static int makePatternStringCommon (const tagEntryInfo *const tag,
int (* putc_func) (char , void *),
int (* puts_func) (const char* , void *),
void *output)
{
int length = 0;
char *line;
int searchChar;
const char *terminator;
bool omitted;
size_t line_len;
bool making_cache = false;
int (* puts_o_func)(const char* , void *);
void * o_output;
static vString *cached_pattern;
static MIOPos cached_location;
if (TagFile.patternCacheValid
&& (! tag->truncateLineAfterTag)
&& (memcmp (&tag->filePosition, &cached_location, sizeof(MIOPos)) == 0))
return puts_func (vStringValue (cached_pattern), output);
line = readLineFromBypassForTag (TagFile.vLine, tag, NULL);
if (line == NULL)
{
/* This can be occurs if the size of input file is zero, and
an empty regex pattern (//) matches to the input. */
line = "";
}
if (tag->truncateLineAfterTag)
truncateTagLineAfterTag (line, tag->name, false);
line_len = strlen (line);
searchChar = Option.backward ? '?' : '/';
terminator = (line_len > 0 && (line [line_len - 1] == '\n')) ? "$": "";
if (!tag->truncateLineAfterTag)
{
making_cache = true;
cached_pattern = vStringNewOrClearWithAutoRelease (cached_pattern);
puts_o_func = puts_func;
o_output = output;
putc_func = vstring_putc;
puts_func = vstring_puts;
output = cached_pattern;
}
length += putc_func(searchChar, output);
if ((tag->boundaryInfo & BOUNDARY_START) == 0)
length += putc_func('^', output);
length += appendInputLine (putc_func, line, output, &omitted);
length += puts_func (omitted? "": terminator, output);
length += putc_func (searchChar, output);
if (making_cache)
{
puts_o_func (vStringValue (cached_pattern), o_output);
cached_location = tag->filePosition;
TagFile.patternCacheValid = true;
}
return length;
}
extern char* makePatternString (const tagEntryInfo *const tag)
{
vString* pattern = vStringNew ();
makePatternStringCommon (tag, vstring_putc, vstring_puts, pattern);
return vStringDeleteUnwrap (pattern);
}
static tagField * tagFieldNew(fieldType ftype, const char *value, bool valueOwner)
{
tagField *f = xMalloc (1, tagField);
f->ftype = ftype;
f->value = value;
f->valueOwner = valueOwner;
return f;
}
static void tagFieldDelete (tagField * f)
{
if (f->valueOwner)
eFree((void *)f->value);
eFree (f);
}
static void attachParserFieldGeneric (tagEntryInfo *const tag, fieldType ftype, const char * value,
bool valueOwner)
{
if (tag->usedParserFields < PRE_ALLOCATED_PARSER_FIELDS)
{
tag->parserFields [tag->usedParserFields].ftype = ftype;
tag->parserFields [tag->usedParserFields].value = value;
tag->parserFields [tag->usedParserFields].valueOwner = valueOwner;
tag->usedParserFields++;
}
else if (tag->parserFieldsDynamic == NULL)
{
tag->parserFieldsDynamic = ptrArrayNew((ptrArrayDeleteFunc)tagFieldDelete);
PARSER_TRASH_BOX(tag->parserFieldsDynamic, ptrArrayDelete);
attachParserFieldGeneric (tag, ftype, value, valueOwner);
}
else
{
tagField *f = tagFieldNew (ftype, value, valueOwner);
ptrArrayAdd(tag->parserFieldsDynamic, f);
tag->usedParserFields++;
}
}
extern void attachParserField (tagEntryInfo *const tag, fieldType ftype, const char * value)
{
attachParserFieldGeneric (tag, ftype, value, false);
}
extern void attachParserFieldToCorkEntry (int index,
fieldType ftype,
const char *value)
{
tagEntryInfo * tag;
const char * v;
if (index == CORK_NIL)
return;
tag = getEntryInCorkQueue(index);
Assert (tag != NULL);
v = eStrdup (value);
attachParserFieldGeneric (tag, ftype, v, true);
}
extern const tagField* getParserField (const tagEntryInfo * tag, int index)
{
if (index < 0
|| tag->usedParserFields <= ((unsigned int)index) )
return NULL;
else if (index < PRE_ALLOCATED_PARSER_FIELDS)
return tag->parserFields + index;
else
{
unsigned int n = index - PRE_ALLOCATED_PARSER_FIELDS;
return ptrArrayItem(tag->parserFieldsDynamic, n);
}
}
static void copyParserFields (const tagEntryInfo *const tag, tagEntryInfo* slot)
{
unsigned int i;
const char* value;
for (i = 0; i < tag->usedParserFields; i++)
{
const tagField *f = getParserField (tag, i);
Assert(f);
value = f->value;
if (value)
value = eStrdup (value);
attachParserFieldGeneric (slot,
f->ftype,
value,
true);
}
}
static void recordTagEntryInQueue (const tagEntryInfo *const tag, tagEntryInfo* slot)
{
*slot = *tag;
if (slot->pattern)
slot->pattern = eStrdup (slot->pattern);
slot->inputFileName = eStrdup (slot->inputFileName);
slot->name = eStrdup (slot->name);
if (slot->extensionFields.access)
slot->extensionFields.access = eStrdup (slot->extensionFields.access);
if (slot->extensionFields.fileScope)
slot->extensionFields.fileScope = eStrdup (slot->extensionFields.fileScope);
if (slot->extensionFields.implementation)
slot->extensionFields.implementation = eStrdup (slot->extensionFields.implementation);
if (slot->extensionFields.inheritance)
slot->extensionFields.inheritance = eStrdup (slot->extensionFields.inheritance);
if (slot->extensionFields.scopeName)
slot->extensionFields.scopeName = eStrdup (slot->extensionFields.scopeName);
if (slot->extensionFields.signature)
slot->extensionFields.signature = eStrdup (slot->extensionFields.signature);
if (slot->extensionFields.typeRef[0])
slot->extensionFields.typeRef[0] = eStrdup (slot->extensionFields.typeRef[0]);
if (slot->extensionFields.typeRef[1])
slot->extensionFields.typeRef[1] = eStrdup (slot->extensionFields.typeRef[1]);
#ifdef HAVE_LIBXML
if (slot->extensionFields.xpath)
slot->extensionFields.xpath = eStrdup (slot->extensionFields.xpath);
#endif
if (slot->extraDynamic)
{
int n = countXtags () - XTAG_COUNT;
slot->extraDynamic = xCalloc ((n / 8) + 1, uint8_t);
memcpy (slot->extraDynamic, tag->extraDynamic, (n / 8) + 1);
}
if (slot->sourceFileName)
slot->sourceFileName = eStrdup (slot->sourceFileName);
slot->usedParserFields = 0;
slot->parserFieldsDynamic = NULL;
copyParserFields (tag, slot);
if (slot->parserFieldsDynamic)
PARSER_TRASH_BOX_TAKE_BACK(slot->parserFieldsDynamic);
}
static void clearParserFields (tagEntryInfo *const tag)
{
unsigned int i, n;
const char* value;
if ( tag->usedParserFields < PRE_ALLOCATED_PARSER_FIELDS )
n = tag->usedParserFields;
else
n = PRE_ALLOCATED_PARSER_FIELDS;
for (i = 0; i < n; i++)
{
value = tag->parserFields[i].value;
if (value && tag->parserFields[i].valueOwner)
eFree ((char *)value);
tag->parserFields[i].value = NULL;
tag->parserFields[i].ftype = FIELD_UNKNOWN;
}
if (tag->parserFieldsDynamic)
{
ptrArrayDelete (tag->parserFieldsDynamic);
tag->parserFieldsDynamic = NULL;
}
}
static void clearTagEntryInQueue (tagEntryInfo* slot)
{
if (slot->pattern)
eFree ((char *)slot->pattern);
eFree ((char *)slot->inputFileName);
eFree ((char *)slot->name);
if (slot->extensionFields.access)
eFree ((char *)slot->extensionFields.access);
if (slot->extensionFields.fileScope)
eFree ((char *)slot->extensionFields.fileScope);
if (slot->extensionFields.implementation)
eFree ((char *)slot->extensionFields.implementation);
if (slot->extensionFields.inheritance)
eFree ((char *)slot->extensionFields.inheritance);
if (slot->extensionFields.scopeName)
eFree ((char *)slot->extensionFields.scopeName);
if (slot->extensionFields.signature)
eFree ((char *)slot->extensionFields.signature);
if (slot->extensionFields.typeRef[0])
eFree ((char *)slot->extensionFields.typeRef[0]);
if (slot->extensionFields.typeRef[1])
eFree ((char *)slot->extensionFields.typeRef[1]);
#ifdef HAVE_LIBXML
if (slot->extensionFields.xpath)
eFree ((char *)slot->extensionFields.xpath);
#endif
if (slot->extraDynamic)
eFree (slot->extraDynamic);
if (slot->sourceFileName)
eFree ((char *)slot->sourceFileName);
clearParserFields (slot);
}
static unsigned int queueTagEntry(const tagEntryInfo *const tag)
{
unsigned int i;
void *tmp;
tagEntryInfo * slot;
if (! (TagFile.corkQueue.count < TagFile.corkQueue.length))
{
if (!TagFile.corkQueue.length)
TagFile.corkQueue.length = 1;
tmp = eRealloc (TagFile.corkQueue.queue,
sizeof (*TagFile.corkQueue.queue) * TagFile.corkQueue.length * 2);
TagFile.corkQueue.length *= 2;
TagFile.corkQueue.queue = tmp;
}
i = TagFile.corkQueue.count;
TagFile.corkQueue.count++;
slot = TagFile.corkQueue.queue + i;
recordTagEntryInQueue (tag, slot);
return i;
}
extern void setupWriter (void)
{
writerSetup (TagFile.mio);
}
extern bool teardownWriter (const char *filename)
{
return writerTeardown (TagFile.mio, filename);
}
static bool isTagWritable(const tagEntryInfo *const tag)
{
if (tag->placeholder)
return false;
if (! isLanguageKindEnabled(tag->langType, tag->kindIndex))
return false;
if (tag->extensionFields.roleBits)
{
size_t available_roles;
if (!isXtagEnabled (XTAG_REFERENCE_TAGS))
return false;
available_roles = countLanguageRoles(tag->langType,
tag->kindIndex);
if (tag->extensionFields.roleBits >=
(makeRoleBit(available_roles)))
return false;
/* TODO: optimization
A Bitmasks represeting all enabled roles can be calculated at the
end of initializing the parser. Calculating each time when checking
a tag entry is not needed. */
for (unsigned int roleIndex = 0; roleIndex < available_roles; roleIndex++)
{
if (isRoleAssigned(tag, roleIndex))
{
if (isLanguageRoleEnabled (tag->langType, tag->kindIndex,
roleIndex))
return true;
}
}
return false;
}
else if (isLanguageKindRefOnly(tag->langType, tag->kindIndex))
{
error (WARNING, "definition tag for refonly kind(%s) is made: %s",
getLanguageKind(tag->langType, tag->kindIndex)->name,
tag->name);
/* This one is not so critical. */
}
if (!isXtagEnabled(XTAG_ANONYMOUS)
&& isTagExtraBitMarked(tag, XTAG_ANONYMOUS))
return false;
return true;
}
static void writeTagEntry (const tagEntryInfo *const tag, bool checkingNeeded)
{
int length = 0;
Assert (tag->kindIndex != KIND_GHOST_INDEX);
if (checkingNeeded && !isTagWritable(tag))
return;
DebugStatement ( debugEntry (tag); )
if (includeExtensionFlags ()
&& isXtagEnabled (XTAG_QUALIFIED_TAGS)
&& doesInputLanguageRequestAutomaticFQTag ())
{
/* const is discarded to update the cache field of TAG. */
writerBuildFqTagCache ( (tagEntryInfo *const)tag);
}
length = writerWriteTag (TagFile.mio, tag);
++TagFile.numTags.added;
rememberMaxLengths (strlen (tag->name), (size_t) length);
DebugStatement ( mio_flush (TagFile.mio); )
abort_if_ferror (TagFile.mio);
}
extern bool writePseudoTag (const ptagDesc *desc,
const char *const fileName,
const char *const pattern,
const char *const parserName)
{
int length;
length = writerWritePtag (TagFile.mio, desc, fileName,
pattern, parserName);
if (length < 0)
return false;
abort_if_ferror (TagFile.mio);
++TagFile.numTags.added;
rememberMaxLengths (strlen (desc->name), (size_t) length);
return true;
}
extern void corkTagFile(void)
{
TagFile.cork++;
if (TagFile.cork == 1)
{
TagFile.corkQueue.length = 1;
TagFile.corkQueue.count = 1;
TagFile.corkQueue.queue = eMalloc (sizeof (*TagFile.corkQueue.queue));
memset (TagFile.corkQueue.queue, 0, sizeof (*TagFile.corkQueue.queue));
}
}
extern void uncorkTagFile(void)
{
unsigned int i;
TagFile.cork--;
if (TagFile.cork > 0)
return ;
for (i = 1; i < TagFile.corkQueue.count; i++)
{
tagEntryInfo *tag = TagFile.corkQueue.queue + i;
writeTagEntry (tag, true);
if (doesInputLanguageRequestAutomaticFQTag ()
&& isXtagEnabled (XTAG_QUALIFIED_TAGS)
&& (tag->extensionFields.scopeKindIndex != KIND_GHOST_INDEX)
&& tag->extensionFields.scopeName
&& tag->extensionFields.scopeIndex)
makeQualifiedTagEntry (tag);
}
for (i = 1; i < TagFile.corkQueue.count; i++)
clearTagEntryInQueue (TagFile.corkQueue.queue + i);
memset (TagFile.corkQueue.queue, 0,
sizeof (*TagFile.corkQueue.queue) * TagFile.corkQueue.count);
TagFile.corkQueue.count = 0;
eFree (TagFile.corkQueue.queue);
TagFile.corkQueue.queue = NULL;
TagFile.corkQueue.length = 0;
}
extern tagEntryInfo *getEntryInCorkQueue (unsigned int n)
{
if ((CORK_NIL < n) && (n < TagFile.corkQueue.count))
return TagFile.corkQueue.queue + n;
else
return NULL;
}
extern tagEntryInfo *getEntryOfNestingLevel (const NestingLevel *nl)
{
if (nl == NULL)
return NULL;
return getEntryInCorkQueue (nl->corkIndex);
}
extern size_t countEntryInCorkQueue (void)
{
return TagFile.corkQueue.count;
}
static void makeTagEntriesForSubwords (tagEntryInfo *const subtag)
{
stringList *list;
subtag->extensionFields.scopeIndex = CORK_NIL;
markTagExtraBit (subtag, XTAG_SUBWORD);
list = stringListNewBySplittingWordIntoSubwords(subtag->name);
for (unsigned int i = 0; i < stringListCount(list); i++)
{
vString *subword = stringListItem (list, i);
subtag->name = vStringValue(subword);
if (TagFile.cork)
queueTagEntry (subtag);
else
writeTagEntry (subtag, false);
}
stringListDelete (list);
}
extern int makeTagEntry (const tagEntryInfo *const tag)
{
int r = CORK_NIL;
Assert (tag->name != NULL);
if (!TagFile.cork)
if (!isTagWritable (tag))
goto out;
if (tag->name [0] == '\0' && (!tag->placeholder))
{
if (!doesInputLanguageAllowNullTag())
error (WARNING, "ignoring null tag in %s(line: %lu)",
getInputFileName (), tag->lineNumber);
goto out;
}
if (TagFile.cork)
r = queueTagEntry (tag);
else
writeTagEntry (tag, false);
notifyMakeTagEntry (tag, r);
if (isXtagEnabled (XTAG_SUBWORD))
{
tagEntryInfo subtag = *tag;
makeTagEntriesForSubwords (&subtag);
}
out:
return r;
}
extern int makeQualifiedTagEntry (const tagEntryInfo *const e)
{
int r = CORK_NIL;
tagEntryInfo x;
int xk;
const char *sep;
static vString *fqn;
if (isXtagEnabled (XTAG_QUALIFIED_TAGS))
{
x = *e;
markTagExtraBit (&x, XTAG_QUALIFIED_TAGS);
fqn = vStringNewOrClearWithAutoRelease (fqn);
if (e->extensionFields.scopeName)
{
vStringCatS (fqn, e->extensionFields.scopeName);
xk = e->extensionFields.scopeKindIndex;
sep = scopeSeparatorFor (e->langType, e->kindIndex, xk);
vStringCatS (fqn, sep);
}
else
{
/* This is an top level item. prepend a root separator
if the kind of the item has. */
sep = scopeSeparatorFor (e->langType, e->kindIndex, KIND_GHOST_INDEX);
if (sep == NULL)
{
/* No root separator. The name of the
optional tag and that of full qualified tag
are the same; recording the full qualified tag
is meaningless. */
return r;
}
else
vStringCatS (fqn, sep);
}
vStringCatS (fqn, e->name);
x.name = vStringValue (fqn);
/* makeExtraTagEntry of c.c doesn't clear scope
related fields. */
#if 0
x.extensionFields.scopeKind = NULL;
x.extensionFields.scopeName = NULL;
x.extensionFields.scopeIndex = CORK_NIL;
#endif
bool in_subparser
= isTagExtraBitMarked (&x,
XTAG_TAGS_GENERATED_BY_SUBPARSER);
if (in_subparser)
pushLanguage(x.langType);
r = makeTagEntry (&x);
if (in_subparser)
popLanguage();
}
return r;
}
static void initTagEntryFull (tagEntryInfo *const e, const char *const name,
unsigned long lineNumber,
langType langType_,
MIOPos filePosition,
const char *inputFileName,
int kindIndex,
roleBitsType roleBits,
const char *sourceFileName,
langType sourceLangType,
long sourceLineNumberDifference)
{
int i;
Assert (getInputFileName() != NULL);
memset (e, 0, sizeof (tagEntryInfo));
e->lineNumberEntry = (bool) (Option.locate == EX_LINENUM);
e->lineNumber = lineNumber;
e->boundaryInfo = getNestedInputBoundaryInfo (lineNumber);
e->langType = langType_;
e->filePosition = filePosition;
e->inputFileName = inputFileName;
e->name = name;
e->extensionFields.scopeLangType = LANG_AUTO;
e->extensionFields.scopeKindIndex = KIND_GHOST_INDEX;
e->extensionFields.scopeIndex = CORK_NIL;
Assert (kindIndex < 0 || kindIndex < (int)countLanguageKinds(langType_));
e->kindIndex = kindIndex;
Assert (roleBits == 0
|| (roleBits < (makeRoleBit(countLanguageRoles(langType_, kindIndex)))));
e->extensionFields.roleBits = roleBits;
if (roleBits)
markTagExtraBit (e, XTAG_REFERENCE_TAGS);
if (doesParserRunAsGuest ())
markTagExtraBit (e, XTAG_TAGS_GENERATED_BY_GUEST_PARSERS);
if (doesSubparserRun ())
markTagExtraBit (e, XTAG_TAGS_GENERATED_BY_SUBPARSER);
e->sourceLangType = sourceLangType;
e->sourceFileName = sourceFileName;
e->sourceLineNumberDifference = sourceLineNumberDifference;
e->usedParserFields = 0;
for ( i = 0; i < PRE_ALLOCATED_PARSER_FIELDS; i++ )
e->parserFields[i].ftype = FIELD_UNKNOWN;
if (isParserMarkedNoEmission ())
e->placeholder = 1;
}
extern void initTagEntry (tagEntryInfo *const e, const char *const name,
int kindIndex)
{
initTagEntryFull(e, name,
getInputLineNumber (),
getInputLanguage (),
getInputFilePosition (),
getInputFileTagPath (),
kindIndex,
0,
getSourceFileTagPath(),
getSourceLanguage(),
getSourceLineNumber() - getInputLineNumber ());
}
extern void initRefTagEntry (tagEntryInfo *const e, const char *const name,
int kindIndex, int roleIndex)
{
initTagEntryFull(e, name,
getInputLineNumber (),
getInputLanguage (),
getInputFilePosition (),
getInputFileTagPath (),
kindIndex,
makeRoleBit(roleIndex),
getSourceFileTagPath(),
getSourceLanguage(),
getSourceLineNumber() - getInputLineNumber ());
}
static void markTagExtraBitFull (tagEntryInfo *const tag, xtagType extra, bool mark)
{
unsigned int index;
unsigned int offset;
uint8_t *slot;
Assert (extra != XTAG_UNKNOWN);
if (extra < XTAG_COUNT)
{
index = (extra / 8);
offset = (extra % 8);
slot = tag->extra;
}
else if (tag->extraDynamic)
{
Assert (extra < countXtags ());
index = ((extra - XTAG_COUNT) / 8);
offset = ((extra - XTAG_COUNT) % 8);
slot = tag->extraDynamic;
}
else
{
Assert (extra < countXtags ());
int n = countXtags () - XTAG_COUNT;
tag->extraDynamic = xCalloc ((n / 8) + 1, uint8_t);
PARSER_TRASH_BOX(tag->extraDynamic, eFree);
markTagExtraBit (tag, extra);
return;
}
if (mark)
slot [ index ] |= (1 << offset);
else
slot [ index ] &= ~(1 << offset);
}
extern void markTagExtraBit (tagEntryInfo *const tag, xtagType extra)
{
markTagExtraBitFull (tag, extra, true);
}
extern bool isTagExtraBitMarked (const tagEntryInfo *const tag, xtagType extra)
{
unsigned int index;
unsigned int offset;
const uint8_t *slot;
Assert (extra != XTAG_UNKNOWN);
if (extra < XTAG_COUNT)
{
index = (extra / 8);
offset = (extra % 8);
slot = tag->extra;
}
else if (!tag->extraDynamic)
return false;
else
{
Assert (extra < countXtags ());
index = ((extra - XTAG_COUNT) / 8);
offset = ((extra - XTAG_COUNT) % 8);
slot = tag->extraDynamic;
}
return !! ((slot [ index ]) & (1 << offset));
}
static void assignRoleFull(tagEntryInfo *const e, int roleIndex, bool assign)
{
if (roleIndex == ROLE_INDEX_DEFINITION)
{
if (assign)
{
e->extensionFields.roleBits = 0;
markTagExtraBitFull (e, XTAG_REFERENCE_TAGS, false);
}
}
else if (roleIndex > ROLE_INDEX_DEFINITION)
{
Assert (roleIndex < (int)countLanguageRoles(e->langType, e->kindIndex));
if (assign)
e->extensionFields.roleBits |= (makeRoleBit(roleIndex));
else
e->extensionFields.roleBits &= ~(makeRoleBit(roleIndex));
markTagExtraBitFull (e, XTAG_REFERENCE_TAGS, e->extensionFields.roleBits);
}
else
AssertNotReached();
}
extern void assignRole(tagEntryInfo *const e, int roleIndex)
{
assignRoleFull(e, roleIndex, true);
}
extern bool isRoleAssigned(const tagEntryInfo *const e, int roleIndex)
{
if (roleIndex == ROLE_INDEX_DEFINITION)
return (!e->extensionFields.roleBits);
else
return (e->extensionFields.roleBits & makeRoleBit(roleIndex));
}
extern unsigned long numTagsAdded(void)
{
return TagFile.numTags.added;
}
extern void setNumTagsAdded (unsigned long nadded)
{
TagFile.numTags.added = nadded;
}
extern unsigned long numTagsTotal(void)
{
return TagFile.numTags.added + TagFile.numTags.prev;
}
extern unsigned long maxTagsLine (void)
{
return (unsigned long)TagFile.max.line;
}
extern void invalidatePatternCache(void)
{
TagFile.patternCacheValid = false;
}
extern void tagFilePosition (MIOPos *p)
{
mio_getpos (TagFile.mio, p);
}
extern void setTagFilePosition (MIOPos *p)
{
mio_setpos (TagFile.mio, p);
}
extern const char* getTagFileDirectory (void)
{
return TagFile.directory;
}
|