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
|
-------------------------------------------------------------------------------
-- (C) Altran Praxis Limited
-------------------------------------------------------------------------------
--
-- The SPARK toolset is free software; you can redistribute it and/or modify it
-- under terms of the GNU General Public License as published by the Free
-- Software Foundation; either version 3, or (at your option) any later
-- version. The SPARK toolset is distributed in the hope that it will be
-- useful, but WITHOUT ANY WARRANTY; without even the implied warranty of
-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General
-- Public License for more details. You should have received a copy of the GNU
-- General Public License distributed with the SPARK toolset; see file
-- COPYING3. If not, go to http://www.gnu.org/licenses for a complete copy of
-- the license.
--
--=============================================================================
--------------------------------------------------------------------------------
-- ErrorHandler
--
-- Purpose:
-- The package ErrorHandler is used to report almost all warnings and errors
-- detected by the Examiner during analysis and produce summaries of the
-- number of warnings and errors encountered.
--
-- ErrorHandler is also responsible for the definition and suppression
-- of warnings specified in the warning control file (see Examiner User
-- Manual section 4.6)
--
-- The processing of justifications using the accept annotation
-- (see Examiner User Manual section 9.1) is also managed by ErrorHandler.
--
-- The Examiner will terminate with a status code dependent on whether an
-- error has occurred and if applicable the class of error. The ErrorHandler
-- package provides a function for determining the status code. The exit
-- codes are declared below.
--
-- Errors are accumulated as they are encountered in ErrorContexts.
-- The ErrorHandler only manages a single ErrorContext (represented
-- by the own variable ErrorContext) but an ErrorContext for each source
-- file read is maintained by the ContextManager.
--
-- The main ErrorHandler interface provides subprograms to manage
-- ErrorContexts, add various classes of errors and warnings to the
-- accumulated errors and others to initialize, reset and list or print the
-- accumulated warnings and errors or summaries thereof.
--
-- Another section of the ErrorHandler interface is concerned with the
-- Warning Control file and listing the warning messages that have been
-- suppressed.
--
-- A further part of the ErrorHandler interface manages Justifications.
--
-- Clients:
-- The ErrorHandler module is used for reporting almost all errors except
-- errors detected within the command line (See examiner.adb) and fatal
-- errors which immediately terminate the Examiner by calling
-- SystemErrors.FatalError.
-- Consequently ErrorHandler is used by many parts of the Examiner and has
-- many clients, for instance, the FlowAnalyser and Sem.
-- ErrorHandler is also used by SPARKmake.
--
-- Use:
-- Reporting Errors and ErrorContexts:
--
-- (1) When a source file (or configuration file) is opened initialize the
-- ErrorContext by calling ErrorHandler.ErrorInit
-- (or errorHandler.SparkMakeInit from SPARKmake).
-- This ErrorContext is retrieved by calling GetErrorContext and is
-- associated with the source file and saved by calling
-- ContextManager.SetContext (See mainloop.adb).
--
-- (2) For each compilation unit (or a configuration file) to be analysed
-- retrieve the ErrorContext associated with the file containing the
-- compilation unit by calling ContextManager.GetErrorContext and set
-- the current ErrorContext maintained by the ErrorHandler to the
-- retrieved ErrorContext by calling ErrorHandler.SetErrorContext
-- (See mainloop.adb)
--
-- (3) Prior to analysis a body or package initialization call
-- ErrorHandler.ErrorReset to reset the severity of the ErrorContext as
-- this property only applies to a single body or package
-- initialization (See sem-compunit.adb).
--
-- (4) To add a warning or error to the accumulated messages of the
-- ErrorContext call an appropriate interface subprogram from those
-- declared below.
--
-- (5) On completing analysis of each subprogram body
-- (subprogram_implementation) call ErrorHandler.FlushEchoMessages to
-- complete any messages relating to the subprogram that are sent to
-- the screen (standard output) (See sem-compunit.adb).
--
-- (6) After the analysis of each unit ErrorHandler.GetErrorSeverity may
-- be called to determine the worst severity of any errors encountered.
-- The severity levels are declared below (See sem-compunit.adb).
--
-- (7) Call ErrorHander.PrintErrors to generate a listing file annotated
-- with the accumulated error messages for the corresponding source
-- or configuration file (See mainloop.adb).
--
-- Call ErrorHandler.AppendErrors to add errors related to a source
-- or configuration file to the report file (see mainloop.adb).
--
-- (8) Call ErrorHandler.EchoTotalErrorCount after all files have been
-- analysed to display the total error count on the screen
-- (standard_output) (See mainloop.adb).
--
-- (9) Call ErrorHandler.GetErrorsType to obtain the exit code which
-- defines (the worst) type of error encountered during analysis.
-- See below for definition of values.
--
-- (10) If references to Ada LRM 83 or 95, SPARK 83 or 95,
-- Examiner User Manual, VCG or RTC Manuals or
-- Barnes "High Integrity Software" are associated with any warning or
-- error messages issued may be listed to a file by calling
-- ErrorHandler.OutputReferenceList. It is normally called to add
-- these to the report file unless the -brief switch is specified
-- (See mainloop.adb).
--
-- (11) If it is not possible to open any input file (configuration file,
-- meta file or source file), ErrorHandler.SetFileOpenError should
-- be called to register this failure. The failure is not recorded as
-- part of an ErrorContext and related to a single file but as a
-- pervasive event (See mainloop.adb).
--
-- Warning File:
--
-- (1) Read in the warning control file by calling
-- ErrorHandler.ReadWarningFile (See mainloop.adb).
--
-- Warnings which are correctly designated in the warning control file
-- (see Examiner User Manual 9.2.1) will now be suppressed.
--
-- (2) A list of suppressed may be written to a file by calling
-- ErrorHandler.OutputWarningList. It is called in mainloop.adb
-- to write the list to the report file.
--
-- Justifications using Accept Annotations:
--
-- (1) Call ErrorHandler.StartUnit when a new unit is to be analysed
-- (see sem-compunit.adb).
--
-- (2) Call ErrorHandler.StartJustification when an accept annoation is
-- encountered (See sem-compunit-wf_justification_statement.adb).
--
-- The errors justified by the accept annotation will no longer be
-- reported except in the justification summary.
--
-- (3) Call ErrorHandler.EndJustification when an end accept annotation is
-- encountered (See sem-compunit-wf_justification_statement.adb).
--
-- (4) Call ErrorHandler.EndUnit when the analysis of a unit is complete
-- (See sem-compunit.adb).
--
-- Extension:
-- Warnings:
--
-- To add a new warning
--
-- (1) Choose a unique warning number within the range defined by
-- Error_Types.ErrNumRange - distinct from any number listed
-- in the Examiner User Manual section 6.3 "Warning Messages".
--
-- (2) Consider whether the warning is to be suppressible and if suppressible
-- whether it is a severe warning.
--
-- (3) If it is to be suppressible a new keyword must be introduced.
--
-- If the warning is to be suppressible...
--
-- (4) Add a suitable enumeration element to the type Warning_Elements putting
-- it into the correct part of the list depending on whether it is a
-- severe (starred) warning or not.
-- Keep Unexpected_Address_Clauses as the last non-severe element of
-- the enumeration or it corrupts the subtype definition of
-- "Severe_Warnings".
--
-- (5) In errorhandler-warningstatus.adb, procedure Get_Description,
-- add an extra case alternative to describe the new warning.
--
-- (6) In errorhandler-warningstatus-readwarningfile.adb extend procedure
-- Process_Option to recognise new keyword.
--
-- (7) In the body of ErrorHandler, in procedures Semantic_Warning_With_Position
-- or Semantic_Warning_Without_Position, add if/elsif clauses to increment
-- counters, rather than display warning, when suppression has been
-- selected.
-- For all warnings independent of suppression
--
-- (8) If the chosen error number is less than 400 add an extra case
-- alternative to procedure WarningWithPosition define the new warning
-- text and its explanation in file
-- errorhandler-conversions-tostring-warningwithposition.adb.
--
-- If the chosen error number is greater or equal to 400 add an extra
-- case alternative to procedure WarningWithoutPosition define the new
-- warning text and its explanation in file
-- errorhandler-conversions-tostring-warningwithoutposition.adb.
--
-- In either of the above two cases the format of the warning text to be
-- added is a catenation of strings to an E_String.T for the standard
-- warning text followed by a number of comment lines starting with --!.
-- The text in the comments starting with --! constitute the error
-- explanation which is given when the Examiner -error_explanation
-- command line switch is set to first or every_occurrence.
--
-- Two new files are automatically generated from the above two files
-- during the build process to provide SPARK procedures which incorporate
-- the error explanations see
-- errorhandler-conversions-tostring-warningwithposition-warningwithpositionexpl.adb and
-- errorhandler-conversions-tostring-warningwithoutposition-warningwithoutpositionexpl.adb.
--
-- To add a new note
--
-- (1) Choose a unique note number within the range defined by
-- Error_Types.ErrNumRange - distinct from any number listed
-- in the Examiner User Manual section 6.4 "Notes".
--
-- (2) Add an extra case alternative to procedure Note in
-- errorhandler-conversions-tostring-note.adb defining the text and
-- explanation of the note as described for warnings (8).
--
-- To add a new semantic error
-- (excluding those related to inconsistencies between abstract and refined
-- dependency relations)
--
-- (1) Choose a unique semantic error number within the range defined by
-- Error_Types.ErrNumRange - distinct from any number listed
-- in the Examiner User Manual section 6.2 "Semantic Errors".
--
-- (2) Add an extra case alternative to procedure SemanticErr in
-- errorhandler-conversions-tostring-semanticerr.adb defining the text
-- and explanation of the semantic error as described for warnings (8).
--
-- (3) If the error message contains a reference to a document which is
-- already in the list of document references maintained in
-- errorhandler-conversions-tostring-appendreference.adb, then when a
-- semantic error reporting subprogram is called the document reference
-- number may be given.
--
-- (4) If the message contains a reference to a document which is not in
-- the list of documents in
-- errorhandler-conversions-tostring-appendreference.adb then in the file
-- increment the value of the constant MaxReferences and add a new
-- document reference as the last element of the constant array
-- ReferenceTable.
--
-- To add a new error related to inconsistencies between abstract and
-- refined dependency relations
--
-- (1) Choose a unique semantic error number within the range defined by
-- Error_Types.ErrNumRange - distinct from any number listed
-- in the Examiner User Manual section 8.3.7
-- "Inconsistencies between abstract and refined dependency relations".
--
-- (2) Add an extra case alternative to procedure DepSemanticErr in
-- errorhandler-conversions-tostring-depsemanticerr.adb defining the text
-- and explanation of the semantic error as described for warnings (8).
--
-- To add a new control-flow error
--
-- (1) Choose a unique control-flow error number within the range defined by
-- Error_Types.ErrNumRange - distinct from any number listed
-- in the Examiner User Manual section 7.2 "Control-flow Errors".
--
-- (2) Add a new enumeration literal to the type ControlFlowErrType declared
-- below to represent the new error.
--
-- (3) Add an extra case alternative to procedure ControlFlowError in
-- errorhandler-conversions-tostring-controlflowerror.adb defining the
-- text and explanation of the control-flow error as described for
-- warnings (8). Additionally associate the chosen error number
-- with the text using a comment with the syntax --! <name> ErrorNumber.
--
-- To add a new data-flow error
--
-- (1) Choose a unique data-flow error number within the range defined by
-- Error_Types.ErrNumRange - distinct from any number listed
-- in the Examiner User Manual section 8.3
-- "Data and information-flow Errors".
--
-- (2) Add a new enumeration literal to the type DataFlowErrType declared
-- below to represent the new error.
--
-- (3) In errorhandler.adb, procedure DataFlowError, add the new data-flow
-- enumeration to the appropriate alternative of the case statement
-- dependent on whether the new error is a conditional or unconditional
-- flow-error.
--
-- (4) Add an extra case alternative to either procedure CondlFlowErr or
-- procedure UncondFlowErr in
-- errorhandler-conversions-tostring-condlflowerr.adb or
-- errorhandler-conversions-tostring-uncondflowerr.adb respectively
-- defining the text and explanation of the data-flow error as described
-- for warnings (8). Additionally associate the chosen error number
-- with the text using a comment with the syntax --! <name> ErrorNumber.
--
-- To add a new information-flow error
--
-- (1) Choose a unique information-flow error number within the range defined
-- by Error_Types.ErrNumRange - distinct from any number listed
-- in the Examiner User Manual section 8.3
-- "Data and information-flow Errors".
--
-- (2) Add a new enumeration literal to one of the types FullDependErrType,
-- StabilityErrType, IndexType or UsageErrType dependent on the category
-- of the error to be reported. If a new litereral is to be added to
-- FullDependencyErrType it must appear immediately before NotUsedNew so
-- that it is in the subtype DependencyErrType.
--
-- (3) If the error is of the subtype DependencyErrType determine whether
-- the error is a conditional or unconditional flow error and
-- Add the new enumeration literal to the appropriate case alternative
-- of the procedure DependencyError in errorhandler.adb.
--
-- (4) Add an extra case alternative to the appropriate procedure
-- CondlDependency, IneffectiveStatement, StabilityError,
-- UncondDependency or UsageError in
-- errorhandler-conversions-tostring-condldependency.adb
-- errorhandler-conversions-tostring-ineffectivestatement.adb
-- errorhandler-conversions-tostring-stabilityerror.adb
-- errorhandler-conversions-tostring-unconddependency.adb
-- errorhandler-conversions-tostring-usageerror.adb
-- respectively defining the text and explanation of the information-flow
-- error as described for warnings (8).
-- Additionally associate the chosen error number with the text using a
-- comment with the syntax --! <name> ErrorNumber.
--
-- Lexical and syntax errors are not extended in this package but are
-- extended within the SPARKLex and SPParser subsystems.
--
-- It is not expected that the Justification interface will be extended.
--
--------------------------------------------------------------------------------
with Dictionary;
with Error_IO;
with Error_Types;
with ExaminerConstants;
with E_Strings;
with LexTokenManager;
with SPARK_IO;
with SP_Expected_Symbols;
with SP_Symbols;
use type Dictionary.Scopes;
use type Dictionary.Symbol;
use type Error_Types.Error_Class;
use type Error_Types.Names;
use type Error_Types.NumericError;
use type Error_Types.StringError;
use type LexTokenManager.Line_Numbers;
use type LexTokenManager.Str_Comp_Result;
use type LexTokenManager.Token_Position;
use type SPARK_IO.File_Status;
use type SPARK_IO.File_Type;
use type SP_Expected_Symbols.SP_Ess_Sym_Range;
use type SP_Symbols.SP_Symbol;
pragma Elaborate_All (SPARK_IO);
--# inherit Ada.Characters.Handling,
--# Ada.Characters.Latin_1,
--# CommandLineData,
--# CommandLineHandler,
--# Dictionary,
--# Error_IO,
--# Error_Types,
--# ExaminerConstants,
--# E_Strings,
--# FileSystem,
--# LexTokenManager,
--# ScreenEcho,
--# SPARK_IO,
--# SPARK_XML,
--# SP_Expected_Symbols,
--# SP_Relations,
--# SP_Symbols,
--# SystemErrors,
--# XMLReport;
package ErrorHandler
--# own Error_Context;
--# initializes Error_Context;
is
-- Used to define the most serious sort of error encountered in an analysis
-- Fatal is most serious and No_Error the least.
type Error_Level is (Fatal, Semantic_Errs, Flow_Errs, Flow_Warning, No_Error);
-- Enumeration literals representing the different sorts of control-flow
-- error that may be reported.
type Control_Flow_Err_Type is (Misplaced_Exit, Misplaced_Return, Missing_Return, Return_In_Proc);
-- Enumeration literals representing the different sorts of data-flow
-- error that may be reported.
type Data_Flow_Err_Type is (Expn_Undefined, Expn_May_Be_Undefined, Invariant_Exp, Stmt_Undefined, Stmt_May_Be_Undefined);
-- Enumeration literals representing the different sorts of information-flow
-- errors related to dependencies that may be reported.
-- Only the enumeration literals contained within the subtype
-- Dependency_Err_Type may be used externally.
type Full_Depend_Err_Type is (
Not_Used,
May_Be_Used,
Uninitialised,
Ineff_Init, -- this is own var of embedded pack
Ineff_Local_Init,
Integrity_Violation,
May_Be_Integrity_Violation,
Policy_Violation,
Not_Used_New,
May_Be_Used_New,
Not_Used_Continue,
May_Be_Used_Continue);
subtype Dependency_Err_Type is Full_Depend_Err_Type range Not_Used .. Policy_Violation;
-- Enumeration literals representing the different sorts of information-flow
-- errors related to stable conditional expressions that may be reported.
type Stability_Err_Type is (Stable_Exit_Cond, Stable_Fork_Cond);
-- Enumeration literals representing the different sorts of information-flow
-- errors related to stable expressions in loops that may be reported.
type Index_Type is (Index_Zero, Index_One, Larger_Index);
-- Enumeration literals representing the different sorts of information-flow
-- errors related miscellaneous errors that may be reported.
type Usage_Err_Type is (
Unused_Import,
Undefined_Export,
Undefined_Var,
Unreferenced_Var,
Redefined_Import,
Ineffective_Import,
Referenced_But_Not_In_Partition,
Updated_But_Not_In_Partition,
Uninitialized_Protected_Element);
type Err_Sym_Range is range 1 .. 5;
--# assert Err_Sym_Range'Base is Short_Short_Integer; -- For GNAT
-- An array of parser symbols used in reporting and recovering from
-- syntax errors (see spparser.adb).
type Err_Sym_List is array (Err_Sym_Range) of SP_Symbols.SP_Symbol;
-- A list of enumeration literals representing each of the suppressible
-- warnings (and a general literal for notes).
-- The literals up to and including Main_Program_Precondition are considered
-- to be severe warnings in that they detect uses that may affect the
-- semantics of the program.
-- When severe warnings are suppressed in the list of suppressed warnings
-- issued by the Examiner they are suffixed with a '*' character.
-- Non-severe warnings do not have a suffix character.
type Warning_Elements is (Pragmas,
Hidden_Parts,
Handler_Parts,
Representation_Clauses,
Interrupt_Handlers,
Static_Expressions,
Style_Check_Casing,
External_Variable_Assignment,
Unchecked_Conversion,
Imported_Objects,
Real_RTCs,
Default_Loop_Assertions,
Expression_Reordering,
Unexpected_Address_Clauses,
Main_Program_Precondition,
-- those below are not "severe"
Proof_Function_Non_Boolean,
Proof_Function_Implicit,
Proof_Function_Refinement,
Direct_Updates,
With_Clauses,
Unused_Variables,
Unuseable_Private_Types,
Constant_Variables,
Type_Conversions,
SLI_Generation,
Index_Manager_Duplicates,
Declare_Annotations,
Others_Clauses,
Ada2005_Reserved_Words,
Obsolescent_Features,
Notes);
-- "Severe" warnings are for language elements that potentially change the
-- semantics of a program. These are indicated with an additional note
-- in the report file, even if they are suppressed.
subtype Severe_Warnings is Warning_Elements range Pragmas .. Main_Program_Precondition;
type Count is range 0 .. ExaminerConstants.MaxErrorsPerFile;
--# assert Count'Base is Integer; -- for the Large Examiner
-- An array of counters, one for eaach type of suppressible warning
-- This forms part of the error context and is not expexted to be
-- accessed externally.
type Counters is array (Warning_Elements) of Count;
------- Types used for justification of expected errors and warnings --------
-- A justification may be applied to a warning or a flow-error.
type Justification_Kinds is (Flow_Message, Warning_Message);
-- When a message is marked as expected it is unknown whether it will
-- eventually have to match it using a LexString or Symbol (because the error
-- may be added using, say, Semantic_Warning or Semantic_Warning_Sym).
-- Since both forms available in wf_justification_statement
-- both are stored in the justification table and the right one is picked
-- when comparisons are needed.
-- Note that we only have both values for simple identifier like X, if the
-- item being added is of the form P.Q.X then we can only have, and only
-- need, the symbol because warnings for objects of this form are always
-- added with a symbol.
type Justification_Identifier is record
String_Form : LexTokenManager.Lex_String;
Symbol_Form : Dictionary.Symbol;
end record;
Null_Justification_Identifier : constant Justification_Identifier :=
Justification_Identifier'(String_Form => LexTokenManager.Null_String,
Symbol_Form => Dictionary.NullSymbol);
-- A message that we may want to suppress may have more than one idenfiier
-- that needs to match (e.g. information flow dependency errors).
-- There are not any errors that refer to more than two but, in any case
-- the behaviour is made generic by using an array of identifiers.
Max_Justification_Identifier_Length : constant := 2;
subtype Justification_Identifier_Index is Integer range 1 .. Max_Justification_Identifier_Length;
type Justification_Identifiers is array (Justification_Identifier_Index) of Justification_Identifier;
Null_Justification_Identifiers : constant Justification_Identifiers :=
Justification_Identifiers'(others => Null_Justification_Identifier);
---------------- End of Justification type declarations ---------------------
-- An Error_Context maintains all the warning and error information related
-- to a single source or configuration file.
type Error_Contexts is private;
Null_Error_Context : constant Error_Contexts;
-- This constant is used to indicate that the warning or error message
-- does not refer to any document.
-- At the moment references are represented as simple Natural numbers
-- and the list of references is held as a array, Reference_Table declared in
-- errorhandler-conversions-tostring-appendreference.adb.
-- Currently there are 22 reference entries. It would be better if this
-- constant and the reference table were made more controlled and abstract.
No_Reference : constant Natural := 0;
-- Total_Error_Counts used to create summary counts of errors for
-- screen echo at end of Examination.
-- Note the special handling of the count of suppressed warnings
-- which does not form part of the grand total. This has been done for
-- consistency with the way error counts in report files are generated.
-- A total error count is maintained by ErrorHandler and it is not expected
-- that this declaration will be used externally.
type Counted_Error_Kinds is (Syntax_Or_Semantic, Flow, Warning);
type Explicit_Error_Counts is array (Counted_Error_Kinds) of Count;
type Total_Error_Counts is record
Grand_Total : Count;
Explicit_Error_Count : Explicit_Error_Counts;
Suppressed_Warnings : Count;
Justified_Warnings : Count;
end record;
Null_Total_Error_Counts : constant Total_Error_Counts :=
Total_Error_Counts'
(Grand_Total => Count'First,
Explicit_Error_Count => Explicit_Error_Counts'(Counted_Error_Kinds => Count'First),
Suppressed_Warnings => Count'First,
Justified_Warnings => Count'First);
-- Exit codes for the Examiner
-- 0 = Success with no unjustified errors or warnings
-- 1 = Unjustified Warnings
-- 2 = Unjustified Flow Errors
-- 3 = Syntax/Semantic Errors
-- 4-7 = Reserved
-- 8 = Invocation Error e.g. contradictory command-line switches
-- 9 = Internal Error e.g. table overflow or internal exception
subtype Exit_Code is Integer range 0 .. 9;
-- Error numbers used when reporting success in automatic flow analysis mode
No_Error_Default : constant Error_Types.ErrNumRange := 0;
No_Error_Info_Flow : constant Error_Types.ErrNumRange := 1;
No_Error_Data_Flow : constant Error_Types.ErrNumRange := 2;
-- Flushes any pending message text in the Echo_Accumulator, which is part of
-- the Error_Context maintained by the Error_Handler, to the standard output.
-- It should be called on the completion of analysis of each subprogram
-- implementation.
procedure Flush_Echo_Messages;
--# global in out Error_Context;
--# in out SPARK_IO.File_Sys;
--# derives Error_Context,
--# SPARK_IO.File_Sys from *,
--# Error_Context;
-- This subporgram initializes the current Error_Context and is called when
-- a new source file or configuration file is opened for reading.
procedure Error_Init (Source_File_Name : in E_Strings.T;
Echo : in Boolean);
--# global in Dictionary.Dict;
--# in out Error_Context;
--# in out SPARK_IO.File_Sys;
--# derives Error_Context from *,
--# Dictionary.Dict,
--# Echo,
--# Source_File_Name,
--# SPARK_IO.File_Sys &
--# SPARK_IO.File_Sys from *,
--# Dictionary.Dict,
--# Error_Context,
--# Source_File_Name;
-- This subprogram is similar to Error_Init but is for use by SPARKmake
-- rather than the Examiner.
procedure Spark_Make_Init;
--# global in Dictionary.Dict;
--# in out Error_Context;
--# in out SPARK_IO.File_Sys;
--# derives Error_Context from *,
--# SPARK_IO.File_Sys &
--# SPARK_IO.File_Sys from *,
--# Dictionary.Dict,
--# Error_Context;
-- Obtains the current Error_Context from the ErrorHandler.
procedure Get_Error_Context (Context : out Error_Contexts);
--# global in Dictionary.Dict;
--# in out Error_Context;
--# in out SPARK_IO.File_Sys;
--# derives Context,
--# Error_Context from Error_Context,
--# SPARK_IO.File_Sys &
--# SPARK_IO.File_Sys from *,
--# Dictionary.Dict,
--# Error_Context;
-- Sets the current Error_Context of the ErrorHandler to the one supplied
-- by the parameter Context.
procedure Set_Error_Context (Context : in Error_Contexts);
--# global in Dictionary.Dict;
--# in out Error_Context;
--# in out SPARK_IO.File_Sys;
--# derives Error_Context,
--# SPARK_IO.File_Sys from Context,
--# Dictionary.Dict,
--# Error_Context,
--# SPARK_IO.File_Sys;
-- Called prior to analysis of a body or package initialization
-- to reset the severity property of the Error_Context and as
-- this property only applies to a single body or package initialization.
-- Similarly, the invalid value detection only applies to a single body
-- and so this is also reset.
procedure Error_Reset;
--# global in out Error_Context;
--# derives Error_Context from *;
-- Returns the severity property from the current Error_Context.
procedure Get_Error_Severity (Severity : out Error_Level);
--# global in Error_Context;
--# derives Severity from Error_Context;
-- This function returns TRUE if a syntax error or a semantic
-- error has already been met.
function Syntax_Or_Semantic_Error return Boolean;
--# global in Error_Context;
-- True when the analysed body potentially contains invalid values
-- from reading an external variable or using an unchecked conversion.
function Possibly_Invalid_Values return Boolean;
--# global in Error_Context;
-- The function returns TRUE if we are still generating SLI.
function Generate_SLI return Boolean;
--# global in CommandLineData.Content;
--# in Error_Context;
-- Called to report successful analysis of a unit. A successful analysis
-- may be determined by calling the procedure Get_Error_Severity.
procedure Report_Success
(Position : in LexTokenManager.Token_Position;
Subprog_Str : in LexTokenManager.Lex_String;
Err_Num : in Error_Types.ErrNumRange);
--# global in CommandLineData.Content;
--# in Dictionary.Dict;
--# in LexTokenManager.State;
--# in out Error_Context;
--# in out SPARK_IO.File_Sys;
--# derives Error_Context,
--# SPARK_IO.File_Sys from CommandLineData.Content,
--# Dictionary.Dict,
--# Error_Context,
--# Err_Num,
--# LexTokenManager.State,
--# Position,
--# SPARK_IO.File_Sys,
--# Subprog_Str;
-- Reports a warning that a hidden body has been encountered.
procedure Hidden_Text
(Position : in LexTokenManager.Token_Position;
Unit_Str : in LexTokenManager.Lex_String;
Unit_Typ : in SP_Symbols.SP_Symbol);
--# global in CommandLineData.Content;
--# in Dictionary.Dict;
--# in LexTokenManager.State;
--# in out Error_Context;
--# in out SPARK_IO.File_Sys;
--# derives Error_Context,
--# SPARK_IO.File_Sys from CommandLineData.Content,
--# Dictionary.Dict,
--# Error_Context,
--# LexTokenManager.State,
--# Position,
--# SPARK_IO.File_Sys,
--# Unit_Str,
--# Unit_Typ;
-- Reports a warning that a hidden exception handler has been encountered.
procedure Hidden_Handler
(Position : in LexTokenManager.Token_Position;
Unit_Str : in LexTokenManager.Lex_String;
Unit_Typ : in SP_Symbols.SP_Symbol);
--# global in CommandLineData.Content;
--# in Dictionary.Dict;
--# in LexTokenManager.State;
--# in out Error_Context;
--# in out SPARK_IO.File_Sys;
--# derives Error_Context,
--# SPARK_IO.File_Sys from CommandLineData.Content,
--# Dictionary.Dict,
--# Error_Context,
--# LexTokenManager.State,
--# Position,
--# SPARK_IO.File_Sys,
--# Unit_Str,
--# Unit_Typ;
-- Reports a warning that an unrecognised representation clause has been
-- encountered.
procedure Representation_Clause (Position : in LexTokenManager.Token_Position);
--# global in CommandLineData.Content;
--# in Dictionary.Dict;
--# in LexTokenManager.State;
--# in out Error_Context;
--# in out SPARK_IO.File_Sys;
--# derives Error_Context,
--# SPARK_IO.File_Sys from CommandLineData.Content,
--# Dictionary.Dict,
--# Error_Context,
--# LexTokenManager.State,
--# Position,
--# SPARK_IO.File_Sys;
-- Reports a warning that an unrecognised pragma has been encountered.
procedure A_Pragma (Pragma_Name : in LexTokenManager.Lex_String;
Position : in LexTokenManager.Token_Position);
--# global in CommandLineData.Content;
--# in Dictionary.Dict;
--# in LexTokenManager.State;
--# in out Error_Context;
--# in out SPARK_IO.File_Sys;
--# derives Error_Context,
--# SPARK_IO.File_Sys from CommandLineData.Content,
--# Dictionary.Dict,
--# Error_Context,
--# LexTokenManager.State,
--# Position,
--# Pragma_Name,
--# SPARK_IO.File_Sys;
-- Warns that a cut point has been introduced into a loop by inserting a
-- default assertion.
procedure Add_Cut_Point (At_Line : LexTokenManager.Line_Numbers);
--# global in CommandLineData.Content;
--# in Dictionary.Dict;
--# in LexTokenManager.State;
--# in out Error_Context;
--# in out SPARK_IO.File_Sys;
--# derives Error_Context,
--# SPARK_IO.File_Sys from At_Line,
--# CommandLineData.Content,
--# Dictionary.Dict,
--# Error_Context,
--# LexTokenManager.State,
--# SPARK_IO.File_Sys;
-- This subprogram is called to report a semantic warning involving a single
-- named entity represented by a LexString.
-- See the package header documentation for a description of warnings and
-- their definition.
procedure Semantic_Warning
(Err_Num : in Natural;
Position : in LexTokenManager.Token_Position;
Id_Str : in LexTokenManager.Lex_String);
--# global in CommandLineData.Content;
--# in Dictionary.Dict;
--# in LexTokenManager.State;
--# in out Error_Context;
--# in out SPARK_IO.File_Sys;
--# derives Error_Context,
--# SPARK_IO.File_Sys from CommandLineData.Content,
--# Dictionary.Dict,
--# Error_Context,
--# Err_Num,
--# Id_Str,
--# LexTokenManager.State,
--# Position,
--# SPARK_IO.File_Sys;
-- This subprogram is called to report that we stop the SLI
-- generation.
procedure SLI_Generation_Warning (Position : in LexTokenManager.Token_Position;
Id_Str : in LexTokenManager.Lex_String);
--# global in CommandLineData.Content;
--# in Dictionary.Dict;
--# in LexTokenManager.State;
--# in out Error_Context;
--# in out SPARK_IO.File_Sys;
--# derives Error_Context,
--# SPARK_IO.File_Sys from CommandLineData.Content,
--# Dictionary.Dict,
--# Error_Context,
--# Id_Str,
--# LexTokenManager.State,
--# Position,
--# SPARK_IO.File_Sys;
-- This subprogram is called to report a semantic warning involving a single
-- named entity represented by a Dictionary.Symbol.
-- See the package header documentation for a description of warnings and
-- their definition.
procedure Semantic_Warning_Sym
(Err_Num : in Natural;
Position : in LexTokenManager.Token_Position;
Sym : in Dictionary.Symbol;
Scope : in Dictionary.Scopes);
--# global in CommandLineData.Content;
--# in Dictionary.Dict;
--# in LexTokenManager.State;
--# in out Error_Context;
--# in out SPARK_IO.File_Sys;
--# derives Error_Context,
--# SPARK_IO.File_Sys from CommandLineData.Content,
--# Dictionary.Dict,
--# Error_Context,
--# Err_Num,
--# LexTokenManager.State,
--# Position,
--# Scope,
--# SPARK_IO.File_Sys,
--# Sym;
-- This subprogram is called to report a note involving a single
-- Reports a lexical error detected by SPARKlex.
procedure Lex_Error (Error_Message, Recovery_Message : in String;
Error_Item : in LexTokenManager.Lex_Value);
--# global in CommandLineData.Content;
--# in Dictionary.Dict;
--# in out Error_Context;
--# in out LexTokenManager.State;
--# in out SPARK_IO.File_Sys;
--# derives Error_Context,
--# SPARK_IO.File_Sys from CommandLineData.Content,
--# Dictionary.Dict,
--# Error_Context,
--# Error_Item,
--# Error_Message,
--# LexTokenManager.State,
--# Recovery_Message,
--# SPARK_IO.File_Sys &
--# LexTokenManager.State from *,
--# Error_Item,
--# Error_Message,
--# Recovery_Message;
-- Reports an error detected by SPParser.
procedure Syntax_Error
(Error_Item : in LexTokenManager.Lex_Value;
Current_Sym, Entry_Symbol : in SP_Symbols.SP_Symbol;
No_Of_Terminals, No_Of_Non_Terminals : in SP_Expected_Symbols.SP_Ess_Sym_Range;
Terminal_List, Non_Terminal_List : in SP_Expected_Symbols.SP_Exp_Sym_List);
--# global in CommandLineData.Content;
--# in Dictionary.Dict;
--# in out Error_Context;
--# in out LexTokenManager.State;
--# in out SPARK_IO.File_Sys;
--# derives Error_Context,
--# SPARK_IO.File_Sys from CommandLineData.Content,
--# Current_Sym,
--# Dictionary.Dict,
--# Entry_Symbol,
--# Error_Context,
--# Error_Item,
--# LexTokenManager.State,
--# Non_Terminal_List,
--# No_Of_Non_Terminals,
--# No_Of_Terminals,
--# SPARK_IO.File_Sys,
--# Terminal_List &
--# LexTokenManager.State from *,
--# Current_Sym,
--# Entry_Symbol,
--# Error_Item,
--# Non_Terminal_List,
--# No_Of_Non_Terminals,
--# No_Of_Terminals,
--# Terminal_List;
-- Reports on a syntax error recovery action taken by SPParser.
procedure Syntax_Recovery
(Recovery_Posn : in LexTokenManager.Lex_Value;
Replacement_Sym : in SP_Symbols.SP_Symbol;
Next_Sym : in SP_Symbols.SP_Terminal;
No_Of_Syms : in Natural;
Sym_List : in Err_Sym_List);
--# global in CommandLineData.Content;
--# in Dictionary.Dict;
--# in out Error_Context;
--# in out LexTokenManager.State;
--# in out SPARK_IO.File_Sys;
--# derives Error_Context,
--# SPARK_IO.File_Sys from CommandLineData.Content,
--# Dictionary.Dict,
--# Error_Context,
--# LexTokenManager.State,
--# Next_Sym,
--# No_Of_Syms,
--# Recovery_Posn,
--# Replacement_Sym,
--# SPARK_IO.File_Sys,
--# Sym_List &
--# LexTokenManager.State from *,
--# Error_Context,
--# Next_Sym,
--# No_Of_Syms,
--# Recovery_Posn,
--# Replacement_Sym,
--# Sym_List;
-- named entity represented by a LexString.
-- See the package header documentation for a description of notes and
-- their definition.
procedure Semantic_Note
(Err_Num : in Natural;
Position : in LexTokenManager.Token_Position;
Id_Str : in LexTokenManager.Lex_String);
--# global in CommandLineData.Content;
--# in Dictionary.Dict;
--# in LexTokenManager.State;
--# in out Error_Context;
--# in out SPARK_IO.File_Sys;
--# derives Error_Context,
--# SPARK_IO.File_Sys from CommandLineData.Content,
--# Dictionary.Dict,
--# Error_Context,
--# Err_Num,
--# Id_Str,
--# LexTokenManager.State,
--# Position,
--# SPARK_IO.File_Sys;
-- This subprogram is called to report inconsistencies between abstract and
-- refined dependency relations involving two named entities represented by
-- LexStrings.
-- See the package header documentation for a description of these errors and
-- their definition.
procedure Dep_Semantic_Error
(Err_Num : in Natural;
Position : in LexTokenManager.Token_Position;
Id_Str1 : in LexTokenManager.Lex_String;
Id_Str2 : in LexTokenManager.Lex_String);
--# global in CommandLineData.Content;
--# in Dictionary.Dict;
--# in LexTokenManager.State;
--# in out Error_Context;
--# in out SPARK_IO.File_Sys;
--# derives Error_Context,
--# SPARK_IO.File_Sys from CommandLineData.Content,
--# Dictionary.Dict,
--# Error_Context,
--# Err_Num,
--# Id_Str1,
--# Id_Str2,
--# LexTokenManager.State,
--# Position,
--# SPARK_IO.File_Sys;
-- This subprogram is called to report inconsistencies between abstract and
-- refined dependency relations involving two named entities represented by
-- Dictionary.Symbols.
-- See the package header documentation for a description of these errors and
-- their definition.
procedure Dep_Semantic_Error_Sym
(Err_Num : in Natural;
Position : in LexTokenManager.Token_Position;
Sym1 : in Dictionary.Symbol;
Sym2 : in Dictionary.Symbol;
Scope : in Dictionary.Scopes);
--# global in CommandLineData.Content;
--# in Dictionary.Dict;
--# in LexTokenManager.State;
--# in out Error_Context;
--# in out SPARK_IO.File_Sys;
--# derives Error_Context,
--# SPARK_IO.File_Sys from CommandLineData.Content,
--# Dictionary.Dict,
--# Error_Context,
--# Err_Num,
--# LexTokenManager.State,
--# Position,
--# Scope,
--# SPARK_IO.File_Sys,
--# Sym1,
--# Sym2;
-- This subprogram is called to report a semantic error involving a single
-- named entity represented by a LexString.
-- The parameter "Reference" facilitates referencing a document within
-- the warning. A list of document references is maintained in
-- errorhandler-conversions-tostring-appendreference.adb. If a document is
-- not referenced then the constant ErrorHandler.No_Reference should be used
-- to signify this.
-- See the package header documentation for a description of semantic errors
-- and their definition.
procedure Semantic_Error
(Err_Num : in Natural;
Reference : in Natural;
Position : in LexTokenManager.Token_Position;
Id_Str : in LexTokenManager.Lex_String);
--# global in CommandLineData.Content;
--# in Dictionary.Dict;
--# in LexTokenManager.State;
--# in out Error_Context;
--# in out SPARK_IO.File_Sys;
--# derives Error_Context,
--# SPARK_IO.File_Sys from CommandLineData.Content,
--# Dictionary.Dict,
--# Error_Context,
--# Err_Num,
--# Id_Str,
--# LexTokenManager.State,
--# Position,
--# Reference,
--# SPARK_IO.File_Sys;
-- This subprogram is called to report a semantic error involving two
-- named entitities represented by LexStrings.
-- The parameter "Reference" facilitates referencing a document within
-- the warning. A list of document references is maintained in
-- errorhandler-conversions-tostring-appendreference.adb. If a document is
-- not referenced then the constant ErrorHandler.No_Reference should be used
-- to signify this.
-- See the package header documentation for a description of semantic errors
-- and their definition.
procedure Semantic_Error2
(Err_Num : in Natural;
Reference : in Natural;
Position : in LexTokenManager.Token_Position;
Id_Str1 : in LexTokenManager.Lex_String;
Id_Str2 : in LexTokenManager.Lex_String);
--# global in CommandLineData.Content;
--# in Dictionary.Dict;
--# in LexTokenManager.State;
--# in out Error_Context;
--# in out SPARK_IO.File_Sys;
--# derives Error_Context,
--# SPARK_IO.File_Sys from CommandLineData.Content,
--# Dictionary.Dict,
--# Error_Context,
--# Err_Num,
--# Id_Str1,
--# Id_Str2,
--# LexTokenManager.State,
--# Position,
--# Reference,
--# SPARK_IO.File_Sys;
-- This subprogram is called to report a semantic error involving a single
-- named entity represented by a Dictionary.Symbol.
-- The parameter "Reference" facilitates referencing a document within
-- the warning. A list of document references is maintained in
-- errorhandler-conversions-tostring-appendreference.adb. If a document is
-- not referenced then the constant ErrorHandler.No_Reference should be used
-- to signify this.
-- See the package header documentation for a description of semantic errors
-- and their definition.
procedure Semantic_Error_Sym
(Err_Num : in Natural;
Reference : in Natural;
Position : in LexTokenManager.Token_Position;
Sym : in Dictionary.Symbol;
Scope : in Dictionary.Scopes);
--# global in CommandLineData.Content;
--# in Dictionary.Dict;
--# in LexTokenManager.State;
--# in out Error_Context;
--# in out SPARK_IO.File_Sys;
--# derives Error_Context,
--# SPARK_IO.File_Sys from CommandLineData.Content,
--# Dictionary.Dict,
--# Error_Context,
--# Err_Num,
--# LexTokenManager.State,
--# Position,
--# Reference,
--# Scope,
--# SPARK_IO.File_Sys,
--# Sym;
-- This subprogram is called to report a semantic error involving two
-- named entitities represented by Dictionary.Symbols.
-- The parameter "Reference" facilitates referencing a document within
-- the warning. A list of document references is maintained in
-- errorhandler-conversions-tostring-appendreference.adb. If a document is
-- not referenced then the constant ErrorHandler.No_Reference should be used
-- to signify this.
-- See the package header documentation for a description of semantic errors
-- and their definition.
procedure Semantic_Error_Sym2
(Err_Num : in Natural;
Reference : in Natural;
Position : in LexTokenManager.Token_Position;
Sym : in Dictionary.Symbol;
Sym2 : in Dictionary.Symbol;
Scope : in Dictionary.Scopes);
--# global in CommandLineData.Content;
--# in Dictionary.Dict;
--# in LexTokenManager.State;
--# in out Error_Context;
--# in out SPARK_IO.File_Sys;
--# derives Error_Context,
--# SPARK_IO.File_Sys from CommandLineData.Content,
--# Dictionary.Dict,
--# Error_Context,
--# Err_Num,
--# LexTokenManager.State,
--# Position,
--# Reference,
--# Scope,
--# SPARK_IO.File_Sys,
--# Sym,
--# Sym2;
-- This subprogram is called to report a semantic error involving two
-- named entitities represented one by a LexString and one by a
-- Dictionary.Symbol.
-- The parameter "Reference" facilitates referencing a document within
-- the warning. A list of document references is maintained in
-- errorhandler-conversions-tostring-appendreference.adb. If a document is
-- not referenced then the constant ErrorHandler.No_Reference should be used
-- to signify this.
-- See the package header documentation for a description of semantic errors
-- and their definition.
procedure Semantic_Error_Lex1_Sym1
(Err_Num : in Natural;
Reference : in Natural;
Position : in LexTokenManager.Token_Position;
Id_Str : in LexTokenManager.Lex_String;
Sym : in Dictionary.Symbol;
Scope : in Dictionary.Scopes);
--# global in CommandLineData.Content;
--# in Dictionary.Dict;
--# in LexTokenManager.State;
--# in out Error_Context;
--# in out SPARK_IO.File_Sys;
--# derives Error_Context,
--# SPARK_IO.File_Sys from CommandLineData.Content,
--# Dictionary.Dict,
--# Error_Context,
--# Err_Num,
--# Id_Str,
--# LexTokenManager.State,
--# Position,
--# Reference,
--# Scope,
--# SPARK_IO.File_Sys,
--# Sym;
-- This subprogram is called to report a semantic error involving three
-- named entitities represented one by a LexString and two by
-- Dictionary.Symbols.
-- The parameter "Reference" facilitates referencing a document within
-- the warning. A list of document references is maintained in
-- errorhandler-conversions-tostring-appendreference.adb. If a document is
-- not referenced then the constant ErrorHandler.No_Reference should be used
-- to signify this.
-- See the package header documentation for a description of semantic errors
-- and their definition.
procedure Semantic_Error_Lex1_Sym2
(Err_Num : in Natural;
Reference : in Natural;
Position : in LexTokenManager.Token_Position;
Id_Str : in LexTokenManager.Lex_String;
Sym : in Dictionary.Symbol;
Sym2 : in Dictionary.Symbol;
Scope : in Dictionary.Scopes);
--# global in CommandLineData.Content;
--# in Dictionary.Dict;
--# in LexTokenManager.State;
--# in out Error_Context;
--# in out SPARK_IO.File_Sys;
--# derives Error_Context,
--# SPARK_IO.File_Sys from CommandLineData.Content,
--# Dictionary.Dict,
--# Error_Context,
--# Err_Num,
--# Id_Str,
--# LexTokenManager.State,
--# Position,
--# Reference,
--# Scope,
--# SPARK_IO.File_Sys,
--# Sym,
--# Sym2;
-- This subprogram is called to report a semantic error involving three
-- named entitities represented by Dictionary.Symbols.
-- The parameter "Reference" facilitates referencing a document within
-- the warning. A list of document references is maintained in
-- errorhandler-conversions-tostring-appendreference.adb. If a document is
-- not referenced then the constant ErrorHandler.No_Reference should be used
-- to signify this.
-- See the package header documentation for a description of semantic errors
-- and their definition.
procedure Semantic_Error_Sym3
(Err_Num : in Natural;
Reference : in Natural;
Position : in LexTokenManager.Token_Position;
Sym : in Dictionary.Symbol;
Sym2 : in Dictionary.Symbol;
Sym3 : in Dictionary.Symbol;
Scope : in Dictionary.Scopes);
--# global in CommandLineData.Content;
--# in Dictionary.Dict;
--# in LexTokenManager.State;
--# in out Error_Context;
--# in out SPARK_IO.File_Sys;
--# derives Error_Context,
--# SPARK_IO.File_Sys from CommandLineData.Content,
--# Dictionary.Dict,
--# Error_Context,
--# Err_Num,
--# LexTokenManager.State,
--# Position,
--# Reference,
--# Scope,
--# SPARK_IO.File_Sys,
--# Sym,
--# Sym2,
--# Sym3;
-- This subprogram is called to report a control-flow error.
-- See the package header documentation for a description of control-flow
-- errors and their definition.
procedure Control_Flow_Error (Err_Type : in Control_Flow_Err_Type;
Position : in LexTokenManager.Token_Position);
--# global in CommandLineData.Content;
--# in Dictionary.Dict;
--# in LexTokenManager.State;
--# in out Error_Context;
--# in out SPARK_IO.File_Sys;
--# derives Error_Context,
--# SPARK_IO.File_Sys from CommandLineData.Content,
--# Dictionary.Dict,
--# Error_Context,
--# Err_Type,
--# LexTokenManager.State,
--# Position,
--# SPARK_IO.File_Sys;
-- This subprogram is called to report a data-flow error involving a single
-- named entity represented by a Dictionary.Symbol.
-- See the package header documentation for a description of data-flow errors
-- and their definition.
procedure Data_Flow_Error
(Err_Type : in Data_Flow_Err_Type;
Position : in LexTokenManager.Token_Position;
Var_Sym : in Dictionary.Symbol;
Scope : in Dictionary.Scopes);
--# global in CommandLineData.Content;
--# in Dictionary.Dict;
--# in LexTokenManager.State;
--# in out Error_Context;
--# in out SPARK_IO.File_Sys;
--# derives Error_Context,
--# SPARK_IO.File_Sys from CommandLineData.Content,
--# Dictionary.Dict,
--# Error_Context,
--# Err_Type,
--# LexTokenManager.State,
--# Position,
--# Scope,
--# SPARK_IO.File_Sys,
--# Var_Sym;
-- This subprogram is called to report an ineffective statement involving a
-- single named entity represented by a Dictionary.Symbol.
procedure Ineffective_Stmt
(Position : in LexTokenManager.Token_Position;
Var_Sym : in Dictionary.Symbol;
Scope : in Dictionary.Scopes);
--# global in CommandLineData.Content;
--# in Dictionary.Dict;
--# in LexTokenManager.State;
--# in out Error_Context;
--# in out SPARK_IO.File_Sys;
--# derives Error_Context,
--# SPARK_IO.File_Sys from CommandLineData.Content,
--# Dictionary.Dict,
--# Error_Context,
--# LexTokenManager.State,
--# Position,
--# Scope,
--# SPARK_IO.File_Sys,
--# Var_Sym;
-- This subprogram is called to report a stable conditional or a stable
-- expression in a loop.
-- See the package header documentation for a description of information-flow
-- errors and their definition.
procedure Stability_Error
(Err_Type : in Stability_Err_Type;
Position : in LexTokenManager.Token_Position;
Stability_Index : in Index_Type);
--# global in CommandLineData.Content;
--# in Dictionary.Dict;
--# in LexTokenManager.State;
--# in out Error_Context;
--# in out SPARK_IO.File_Sys;
--# derives Error_Context,
--# SPARK_IO.File_Sys from CommandLineData.Content,
--# Dictionary.Dict,
--# Error_Context,
--# Err_Type,
--# LexTokenManager.State,
--# Position,
--# SPARK_IO.File_Sys,
--# Stability_Index;
-- This subprogram is called to report a dependency error involving two
-- named entitities, the imported and exported variables, represented by
-- Dictionary.Symbols.
-- See the package header documentation for a description of information-flow
-- errors and their definition.
procedure Dependency_Error
(Err_Type : in Dependency_Err_Type;
Position : in LexTokenManager.Token_Position;
Import_Var_Sym : in Dictionary.Symbol;
Export_Var_Sym : in Dictionary.Symbol;
Scope : in Dictionary.Scopes);
--# global in CommandLineData.Content;
--# in Dictionary.Dict;
--# in LexTokenManager.State;
--# in out Error_Context;
--# in out SPARK_IO.File_Sys;
--# derives Error_Context,
--# SPARK_IO.File_Sys from CommandLineData.Content,
--# Dictionary.Dict,
--# Error_Context,
--# Err_Type,
--# Export_Var_Sym,
--# Import_Var_Sym,
--# LexTokenManager.State,
--# Position,
--# Scope,
--# SPARK_IO.File_Sys;
-- This subprogram is called to report a usage error involving a single
-- named entitity represented by a Dictionary.Symbol.
-- See the package header documentation for a description of information-flow
-- errors and their definition.
procedure Usage_Error
(Err_Type : in Usage_Err_Type;
Position : in LexTokenManager.Token_Position;
Var_Sym : in Dictionary.Symbol;
Scope : in Dictionary.Scopes);
--# global in CommandLineData.Content;
--# in Dictionary.Dict;
--# in LexTokenManager.State;
--# in out Error_Context;
--# in out SPARK_IO.File_Sys;
--# derives Error_Context,
--# SPARK_IO.File_Sys from CommandLineData.Content,
--# Dictionary.Dict,
--# Error_Context,
--# Err_Type,
--# LexTokenManager.State,
--# Position,
--# Scope,
--# SPARK_IO.File_Sys,
--# Var_Sym;
-- Read_Warning_File reads in and parses the warning control file specified on
-- the command line. It sets up an internal store (part of the state
-- represented by the own variable Error_Context) which records which warnings
-- have been suppressed by the inclusion of their keyword in the warning file.
-- See the package header documentation for a description of the use of the
-- warning file and the definition of suppressible warnings.
procedure Read_Warning_File;
--# global in CommandLineData.Content;
--# in out Error_Context;
--# in out LexTokenManager.State;
--# in out SPARK_IO.File_Sys;
--# derives Error_Context,
--# LexTokenManager.State,
--# SPARK_IO.File_Sys from CommandLineData.Content,
--# Error_Context,
--# LexTokenManager.State,
--# SPARK_IO.File_Sys;
-- Output_Warning_List writes out a list of the warnings to the file parameter
-- "To_File" that are currently suppressed based on the internal store of
-- warnings suppressed by reading the warning control file (part of the state
-- represented by the own variable Error_Context).
-- See the package header documentation for a description of the use of the
-- warning file and the definition of suppressible warnings.
procedure Output_Warning_List (To_File : in SPARK_IO.File_Type);
--# global in CommandLineData.Content;
--# in Error_Context;
--# in LexTokenManager.State;
--# in out SPARK_IO.File_Sys;
--# in out XMLReport.State;
--# derives SPARK_IO.File_Sys from *,
--# CommandLineData.Content,
--# Error_Context,
--# LexTokenManager.State,
--# To_File,
--# XMLReport.State &
--# XMLReport.State from *,
--# CommandLineData.Content,
--# Error_Context;
-- Output_Reference_List writes out a list of the document references that are
-- associated with reported semantic erros to the file parameter "To_File"
-- See the package header documentation for a description of semantic errors
-- and document references.
procedure Output_Reference_List (To_File : in SPARK_IO.File_Type);
--# global in CommandLineData.Content;
--# in Error_Context;
--# in out SPARK_IO.File_Sys;
--# derives SPARK_IO.File_Sys from *,
--# CommandLineData.Content,
--# Error_Context,
--# To_File;
-- This subprogram writes a source listing to the file parameter "Listing"
-- in which the accumulated reported warnings and errors are interspersed
-- with program text to indicate the location of the warning or error.
-- A table showing the successful justifications encountered in the source
-- file and a summary of the suppressed warnings are appended to the end of
-- the listing file.
-- The parameter "Purpose" identifies the type of listing that is being
-- generated and is used in conjunction with the -error_explanations command
-- line switch to control the generation of extended messages.
-- For this subprogram, given its use, it is likely that Purpose
-- will either be For_Listing - indicating this is a sorce listing or
-- For_Report_Indexed_Files used when listing the configuration file.
procedure PrintErrors (Listing : in SPARK_IO.File_Type;
Purpose : in Error_Types.ConversionRequestSource);
--# global in CommandLineData.Content;
--# in Dictionary.Dict;
--# in LexTokenManager.State;
--# in out Error_Context;
--# in out SPARK_IO.File_Sys;
--# derives Error_Context,
--# SPARK_IO.File_Sys from CommandLineData.Content,
--# Dictionary.Dict,
--# Error_Context,
--# LexTokenManager.State,
--# Listing,
--# Purpose,
--# SPARK_IO.File_Sys;
-- Append_Errors extends the report file passed as the parameter "Report"
-- adding the accumulated errors from the current Error_Context.
-- A table showing the successful justifications encountered within the
-- current Error_Context and a summary of the suppressed warnings are
-- added after the reported warnings and errors.
-- The parameter "Purpose" identifies the type of listing that is being
-- generated and is used in conjunction with the -error_explanations command
-- line switch to control the generation of extended messages.
-- For this subprogram, given its use, it is likely that Purpose
-- will either be For_Report_Selected_Files - indicating this is a file that
-- is explicitly given on the command line or in a meta file, or
-- For_Report_Indexed_Files - indicating that this is a file which was accessed
-- indirectly via an index file..
procedure AppendErrors (Report : in SPARK_IO.File_Type;
Purpose : in Error_Types.ConversionRequestSource);
--# global in CommandLineData.Content;
--# in Dictionary.Dict;
--# in LexTokenManager.State;
--# in out Error_Context;
--# in out SPARK_IO.File_Sys;
--# in out XMLReport.State;
--# derives Error_Context,
--# SPARK_IO.File_Sys,
--# XMLReport.State from CommandLineData.Content,
--# Dictionary.Dict,
--# Error_Context,
--# LexTokenManager.State,
--# Purpose,
--# Report,
--# SPARK_IO.File_Sys,
--# XMLReport.State;
-- This procedure write at the standard output an error in an
-- index file.
procedure Index_Manager_Error
(S : in String;
Source_File : in LexTokenManager.Lex_String;
Line_No : in Positive;
Col_No : in Positive;
Token_String : in E_Strings.T;
Is_Token_Filename : in Boolean;
Is_Fatal : in Boolean);
--# global in CommandLineData.Content;
--# in LexTokenManager.State;
--# in out Error_Context;
--# in out SPARK_IO.File_Sys;
--# derives Error_Context from *,
--# Is_Fatal &
--# SPARK_IO.File_Sys from *,
--# Col_No,
--# CommandLineData.Content,
--# Error_Context,
--# Is_Fatal,
--# Is_Token_Filename,
--# LexTokenManager.State,
--# Line_No,
--# S,
--# Source_File,
--# Token_String;
-- When called writes the total warnings and errors encountered during the
-- Examiner run to the standard output.
procedure Echo_Total_Error_Count;
--# global in CommandLineData.Content;
--# in Error_Context;
--# in out SPARK_IO.File_Sys;
--# derives SPARK_IO.File_Sys from *,
--# CommandLineData.Content,
--# Error_Context;
-- Call this subprogram if it is not possible to open a required input file
-- during analysis. It will record the fact that this has happened and
-- it will be reflected in the exit code returned by a call to Get_Errors_Type.
procedure Set_File_Open_Error;
--# global in out Error_Context;
--# derives Error_Context from *;
-- At the end of an Examiner run call this subprogram to obtain an exit code
-- reflecting the most severe type of error encountered during the run.
-- The exit code so obtained can then be used in a call to Set_Exit_Status.
function Get_Errors_Type return Exit_Code;
--# global in Error_Context;
------ Exported calls concerned with the error justification mechanism ------
-- Called at the start of analysis of each unit to initialize the
-- justification state for the unit.
-- The justification state is part of the state represented by the own
-- variable Error_Context.
procedure Start_Unit;
--# global in out Error_Context;
--# derives Error_Context from *;
-- Called at the end of analysis of each unit to close the
-- justification state for the unit.
-- The justification state is part of the state represented by the own
-- variable Error_Context.
procedure End_Unit;
--# global in CommandLineData.Content;
--# in Dictionary.Dict;
--# in LexTokenManager.State;
--# in out Error_Context;
--# in out SPARK_IO.File_Sys;
--# derives Error_Context,
--# SPARK_IO.File_Sys from CommandLineData.Content,
--# Dictionary.Dict,
--# Error_Context,
--# LexTokenManager.State,
--# SPARK_IO.File_Sys;
-- Called when an accept annotation is encountered in the source text to
-- register the justification.
-- If the maximum allowed justifications within a unit has been reached when
-- registering the justification the parameter Maximum_Justifications_Reached
-- is True but justification is registered.
-- The Maximum_Justifications_Reached is only ever set True once, when the
-- table first fills up. If the table is already full then False is returned.
-- at the point of call where the table first fills, not at every call thereafter.
procedure Start_Justification
(Position : in LexTokenManager.Token_Position;
Line : in LexTokenManager.Line_Numbers;
Kind : in Justification_Kinds;
Err_Num : in Natural;
Identifiers : in Justification_Identifiers;
Applies_To_All : in Boolean;
Explanation : in E_Strings.T;
Maximum_Justifications_Reached : out Boolean);
--# global in out Error_Context;
--# derives Error_Context from *,
--# Applies_To_All,
--# Err_Num,
--# Explanation,
--# Identifiers,
--# Kind,
--# Line,
--# Position &
--# Maximum_Justifications_Reached from Error_Context;
-- Called when an end accept annotation is encountered in the source text to
-- end the scope of a justification.
-- The parameter Unmatched_End returns True if there is no accept annotation
-- matching the end accept annotation provided the Justification table
-- is not full in which case it will always return False to avoid false
-- alarms.
procedure End_Justification (Line : in LexTokenManager.Line_Numbers;
Unmatched_End : out Boolean);
--# global in out Error_Context;
--# derives Error_Context,
--# Unmatched_End from Error_Context,
--# Line;
private --------------------------------------------------------------
-- The following declarations define a Data Table which is a core component
-- of the Justification structure.
-- A Data_Table_Table_Entry defines a single element of the table and contains
-- all the information associated with a single justification.
-- Data_Tables defines the array of Data_Table_Entries which holds all the
-- justifications for a unit.
Max_Table_Entries : constant := ExaminerConstants.MaxJustificationsPerFile;
type Data_Table_Ptr is range 0 .. Max_Table_Entries;
type Data_Table_Entry is record
Kind : Justification_Kinds;
Err_Num : Natural;
Identifiers : Justification_Identifiers;
Applies_To_All : Boolean;
Explanation : E_Strings.T;
-- location of the justification clause for error reporting purposes
Position : LexTokenManager.Token_Position;
-- location of start justify (for multiple clauses this is the line of the justify statement as a whole)
Start_Line : LexTokenManager.Line_Numbers;
-- location of end justify or end of unit (const End_Line_Of_Unit_Marker) if there is no matching end justify
End_Line : LexTokenManager.Line_Numbers;
End_Found : Boolean; -- explicit end justify found or not
Match_Count : Natural;
-- number of times this justification matched last line where match occurred linkage
Match_Line : LexTokenManager.Line_Numbers;
Previous : Data_Table_Ptr;
end record;
-- Initializing constants for Data Tables
End_Of_List : constant Data_Table_Ptr := 0;
Empty_Data_Table_Entry : constant Data_Table_Entry :=
Data_Table_Entry'
(Kind => Flow_Message,
Err_Num => 0,
Identifiers => Null_Justification_Identifiers,
Applies_To_All => False,
Explanation => E_Strings.Empty_String,
Position => LexTokenManager.Token_Position'(Start_Line_No => 0,
Start_Pos => 0),
Start_Line => 0,
End_Line => 0,
End_Found => False,
Match_Count => 0,
Match_Line => 0,
Previous => End_Of_List);
-- Data_Tables defines the array of Data_Table_Entries representing all the
-- justifications for a unit.
subtype Data_Table_Index is Data_Table_Ptr range 1 .. Max_Table_Entries;
type Data_Tables is array (Data_Table_Index) of Data_Table_Entry;
-- Initializing constant
Empty_Data_Table : constant Data_Tables := Data_Tables'(Data_Table_Index => Empty_Data_Table_Entry);
-- The Stack is the second major component of the justification structure
-- A Stack_Record is a single element of the stack, Unit_Stack_Array is the
-- stack storage and Unit_Stacks is the complete stack including a stack
-- pointer.
Max_Stack_Size : constant := 10; -- Perhaps move this to ExaminerConstants later
type Stack_Ptrs is range 0 .. Max_Stack_Size;
subtype Stack_Index is Stack_Ptrs range 1 .. Max_Stack_Size;
type Stack_Record is record
List_Items : Data_Table_Ptr;
Semantic_Error_In_Unit : Boolean;
end record;
type Unit_Stack_Array is array (Stack_Index) of Stack_Record;
type Unit_Stacks is record
Vector : Unit_Stack_Array;
Ptr : Stack_Ptrs;
end record;
-- initializing constant
Empty_Stack : constant Unit_Stacks :=
Unit_Stacks'
(Ptr => 0,
Vector => Unit_Stack_Array'(Stack_Index => Stack_Record'(List_Items => End_Of_List,
Semantic_Error_In_Unit => False)));
-- The justification structure including a Data_Table, a Unit_Stack, a pointer
-- for the current entry in the Data_Table and a Boolean indicating whether
-- the justification table is accepting more entries (is not full).
type Justifications_Data_Tables is record
Data_Table : Data_Tables;
Current_Slot : Data_Table_Ptr;
Accepting_More_Entries : Boolean;
Unit_Stack : Unit_Stacks;
end record;
-- initializing constant
Empty_Justifications_Data_Table : constant Justifications_Data_Tables :=
Justifications_Data_Tables'
(Data_Table => Empty_Data_Table,
Current_Slot => End_Of_List,
Accepting_More_Entries => True,
Unit_Stack => Empty_Stack);
--------- End of justification table data structure definitions -------------
-- We can now declare the actual announced private type
-- The private type Error_Contexts contains a Justification_Table which is
-- itself a complex data structure used to track the justification of
-- expected flow errors and warnings.
-- It is part of Error_Contexts because we need a different copy of the data
-- structure for each file we are examining.
-- The data structure types can be declared here because they are only used
-- in the body of ErrorHandler and in the embedded package Justifications.
--
-- More details of the rationale for the Justifications Table data structure
-- can be found in ErrorHandler.Justifications.adb
--
type Error_Contexts is record
Recovery_Messages : Boolean;
Echo : Boolean;
Severity : Error_Level;
Num_Errs : Count;
Num_Message : Count;
Line_No : LexTokenManager.Line_Numbers;
Current_Line : E_Strings.T;
Errs : Error_IO.File_Type;
Source : SPARK_IO.File_Type;
Source_File_Name : E_Strings.T;
Counter : Counters;
Justifications_Data_Table : Justifications_Data_Tables;
end record;
Null_Error_Context : constant Error_Contexts :=
Error_Contexts'
(Recovery_Messages => False,
Echo => False,
Severity => Error_Level'First,
Num_Errs => Count'First,
Num_Message => Count'First,
Line_No => LexTokenManager.Line_Numbers'First,
Current_Line => E_Strings.Empty_String,
Errs => Error_IO.Null_File,
Source => SPARK_IO.Null_File,
Source_File_Name => E_Strings.Empty_String,
Counter => Counters'(others => Count'First),
Justifications_Data_Table => Empty_Justifications_Data_Table);
end ErrorHandler;
|