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
|
------------------------------------------------------------------------------
-- C O D E P E E R --
-- --
-- Copyright (C) 2008-2018, AdaCore --
-- --
-- This is free software; you can redistribute it and/or modify it under --
-- terms of the GNU General Public License as published by the Free Soft- --
-- ware Foundation; either version 3, or (at your option) any later ver- --
-- sion. This software is distributed in the hope that it will be useful, --
-- but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHAN- --
-- TABILITY 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 this software; see file --
-- COPYING3. If not, go to http://www.gnu.org/licenses for a complete copy --
-- of the license. --
-- --
-- The CodePeer technology was originally developed by SofCheck, Inc. --
------------------------------------------------------------------------------
with Ada.Text_IO; use Ada.Text_IO;
with Sax.Readers; use Sax.Readers;
with Sax.Attributes; use Sax.Attributes;
with Unicode.CES;
with Input_Sources;
with Input_Sources.File;
with Ada.Containers.Hashed_Maps;
with Ada.Containers.Indefinite_Doubly_Linked_Lists;
with Ada.Strings.Unbounded.Hash_Case_Insensitive;
with Ada.Strings.Unbounded.Equal_Case_Insensitive;
with GNAT.OS_Lib; use GNAT.OS_Lib;
package body BT.Xml.Reader is
use Ada.Containers;
use Message_Kinds;
Debug_On : constant Boolean := False;
Inspection_Output_Directory : Unbounded_String := Null_Unbounded_String;
-- Save a copy for use with subsequent XML files.
function Hash (Key_Type : Natural) return Hash_Type
is (Hash_Type (Key_Type));
-- Hash function on the VN_Id
package VN_To_BT_Mappings is new Ada.Containers.Hashed_Maps
(Key_Type => Natural,
Element_Type => BT_Info_Seqs.Vector,
Hash => Hash,
Equivalent_Keys => "=",
"=" => BT_Info_Seqs."=");
package BT_File_Mappings is new Ada.Containers.Hashed_Maps
(Key_Type => Natural, -- bt_Id
Element_Type => Unbounded_String, -- file name
Hash => Hash,
Equivalent_Keys => "=");
BT_Files : BT_File_Mappings.Map;
-- mapping check_id => BE_Subkind
package Check_Kind_Mappings is new Ada.Containers.Hashed_Maps
(Key_Type => Natural,
Element_Type => Message_Kinds.BE_Message_Subkind,
Hash => Hash,
Equivalent_Keys => "=");
-- mapping check_id => readable_subkind
package Check_Text_Mappings is new Ada.Containers.Hashed_Maps
(Key_Type => Natural,
Element_Type => Unbounded_String,
Hash => Hash,
Equivalent_Keys => "=");
-- mapping event_id => Event_Enum
package Event_Kind_Mappings is new Ada.Containers.Hashed_Maps
(Key_Type => Natural,
Element_Type => Event_Enum,
Hash => Hash,
Equivalent_Keys => "=");
package Event_Text_Mappings is new Ada.Containers.Hashed_Maps
(Key_Type => Natural,
Element_Type => Unbounded_String,
Hash => Hash,
Equivalent_Keys => "=");
type Mapping_Ptr is access VN_To_BT_Mappings.Map;
-- mapping proc => (vn_id => backtraces)
package Procs_To_Vns_Mappings is new Ada.Containers.Hashed_Maps
(Key_Type => Unbounded_String,
Element_Type => Mapping_Ptr,
Hash => Ada.Strings.Unbounded.Hash_Case_Insensitive,
Equivalent_Keys => Ada.Strings.Unbounded.Equal_Case_Insensitive);
Proc_Vns : Procs_To_Vns_Mappings.Map;
function Hash (Key_Type : Source_Position) return Hash_Type;
-- Hash function on source locations
-- mapping srcpos -> (vn_image, vn_vals)
package Srcpos_Vals_Mappings is new Ada.Containers.Hashed_Maps
(Key_Type => Source_Position,
Element_Type => Vn_Values_Seqs.Vector,
Hash => Hash,
Equivalent_Keys => "=",
"=" => Vn_Values_Seqs."="); -- elements "="
File_Vals : Srcpos_Vals_Mappings.Map;
package Name_Set is new
Ada.Containers.Indefinite_Doubly_Linked_Lists (String);
Files_Read : Name_Set.List;
-- Keep track of XML files that have been read
-- extra precondition_event information
type Callee_Info_Record is record
Bt_Id : Natural;
Callee_File_Name : Unbounded_String;
Callee_Name : Unbounded_String;
Callee_Vn : Natural;
Callee_Pre_Index : Natural;
Callee_Srcpos : Source_Position;
end record;
package Callee_Mappings is new Ada.Containers.Hashed_Maps
(Key_Type => Natural,
Element_Type => Callee_Info_Record,
Hash => Hash,
Equivalent_Keys => "=");
Callee_Mapping : Callee_Mappings.Map;
Current_BT_Seq : BT_Info_Seqs.Vector;
Current_Bt_Id : Natural := 0;
function LT (E1, E2 : BT_Info) return Boolean;
-- compare 2 backtrace records
package Sort_Backtraces is new BT_Info_Seqs.Generic_Sorting (LT);
type Backtrace_Reader is new Sax.Readers.Reader with record
File_Name : Unbounded_String;
Current_Proc : Unbounded_String;
Current_VN : Natural;
Check_Kind : Check_Kind_Mappings.Map;
Check_Text : Check_Text_Mappings.Map;
Event_Kind : Event_Kind_Mappings.Map;
Event_Text : Event_Text_Mappings.Map;
end record;
type Vals_Reader is new Sax.Readers.Reader with record
File_Name : Unbounded_String;
Current_Proc : Unbounded_String;
Current_Src : Source_Position;
Current_Vals : Vn_Values_Seqs.Vector;
end record;
overriding procedure Start_Element
(Self : in out Backtrace_Reader;
Namespace_URI : Unicode.CES.Byte_Sequence;
Local_Name : Unicode.CES.Byte_Sequence;
Qname : Unicode.CES.Byte_Sequence;
Attrs : Sax.Attributes.Attributes'Class);
overriding procedure End_Element
(Self : in out Backtrace_Reader;
Namespace_URI : Unicode.CES.Byte_Sequence;
Local_Name : Unicode.CES.Byte_Sequence;
Qname : Unicode.CES.Byte_Sequence);
overriding procedure Start_Element
(Self : in out Vals_Reader;
Namespace_URI : Unicode.CES.Byte_Sequence;
Local_Name : Unicode.CES.Byte_Sequence;
Qname : Unicode.CES.Byte_Sequence;
Attrs : Sax.Attributes.Attributes'Class);
overriding procedure End_Element
(Self : in out Vals_Reader;
Namespace_URI : Unicode.CES.Byte_Sequence;
Local_Name : Unicode.CES.Byte_Sequence;
Qname : Unicode.CES.Byte_Sequence);
-----------
-- Clear --
-----------
procedure Clear is
begin
Inspection_Output_Directory := Null_Unbounded_String;
BT_Files.Clear;
Proc_Vns.Clear;
File_Vals.Clear;
Files_Read.Clear;
Callee_Mapping.Clear;
Current_BT_Seq.Clear;
Current_Bt_Id := 0;
end Clear;
--------
-- LT --
--------
function LT (E1, E2 : BT_Info) return Boolean is
begin
if E1.Event = E2.Event then
if E1.Kind = E2.Kind then
if E1.Sloc.Line = E2.Sloc.Line then
return E1.Sloc.Column < E2.Sloc.Column;
else
return E1.Sloc.Line < E2.Sloc.Line;
end if;
else
if E1.Sloc.Line = E2.Sloc.Line then
return E1.Kind < E2.Kind;
else
return E1.Sloc.Line < E2.Sloc.Line;
end if;
end if;
else
return E1.Event < E2.Event;
end if;
end LT;
----------
-- Hash --
----------
function Hash (Key_Type : Source_Position) return Hash_Type is
begin
return Hash_Type (Key_Type.Line + Key_Type.Column);
end Hash;
----------------
-- Initialize --
----------------
procedure Initialize (Output_Directory : String) is
begin
Inspection_Output_Directory := To_Unbounded_String (Output_Directory);
end Initialize;
-------------------
-- Start_Element --
-------------------
overriding procedure Start_Element
(Self : in out Backtrace_Reader;
Namespace_URI : Unicode.CES.Byte_Sequence;
Local_Name : Unicode.CES.Byte_Sequence;
Qname : Unicode.CES.Byte_Sequence;
Attrs : Sax.Attributes.Attributes'Class)
is
pragma Unreferenced (Namespace_URI, Local_Name);
begin
if Qname = File_Tag then
declare
File_Name : constant String := Attrs.Get_Value (Name_Attribute);
begin
if Debug_On then
Put_Line ("reading xml for file " & File_Name);
end if;
Set_Unbounded_String (Self.File_Name, File_Name);
end;
elsif Qname = Bt_Tag then
declare
BT : BT_Info;
type BT_Attribute_Enum is (Line, Col, Check, Event, File_Name);
BT_File_Name : Unbounded_String := Null_Unbounded_String;
begin
Current_Bt_Id := Current_Bt_Id + 1;
BT.Bt_Id := Current_Bt_Id;
-- default
BT.Event := Check_Event;
BT.Kind := Module_Annotation;
if Debug_On then
Put ("BT--> " & Natural'Image (Current_Bt_Id) & ",");
end if;
for J in 0 .. Get_Length (Attrs) - 1 loop
declare
Attr_Value : constant String := Get_Value (Attrs, J);
begin
case BT_Attribute_Enum'Value (Get_Qname (Attrs, J)) is
when Line =>
BT.Sloc.Line := Positive'Value (Attr_Value);
if Debug_On then
Put (" line:" & Attr_Value);
end if;
when Col =>
BT.Sloc.Column := Positive'Value (Attr_Value);
if Debug_On then
Put (" col:" & Attr_Value);
end if;
when Check =>
BT.Kind := Self.Check_Kind (Natural'Value (Attr_Value));
BT.Text := Self.Check_Text (Natural'Value (Attr_Value));
if Debug_On then
Put (" kind:" & Attr_Value);
end if;
when Event =>
BT.Event := Self.Event_Kind (Natural'Value (Attr_Value));
BT.Text := Self.Event_Text (Natural'Value (Attr_Value));
if Debug_On then
Put (" event:" & Attr_Value);
end if;
if BT.Event = Precondition_Event then
BT.Kind := Precondition_Check;
end if;
when File_Name =>
-- A file name can be present in cases where the source
-- file for check is different from the current unit's
-- source file (such as for instantiations, where we want
-- the generic unit's source file name).
Set_Unbounded_String (BT_File_Name, Attr_Value);
if Debug_On then
Put_Line (" file:" & Attr_Value);
end if;
end case;
end;
end loop;
if Debug_On then
Put_Line ("");
end if;
BT_Info_Seqs.Append (Current_BT_Seq, BT);
if BT_File_Name = Null_Unbounded_String then
BT_File_Mappings.Insert (BT_Files, BT.Bt_Id, Self.File_Name);
else
BT_File_Mappings.Insert (BT_Files, BT.Bt_Id, BT_File_Name);
end if;
end;
elsif Qname = Vn_Tag then
Current_BT_Seq := BT_Info_Seqs.Empty_Vector;
Self.Current_VN :=
Natural'Value (Attrs.Get_Value (Id_Attribute));
if Debug_On then
Put_Line ("VN--> " & Natural'Image (Self.Current_VN));
end if;
elsif Qname = Proc_Tag then
declare
Proc_Name : constant String := Attrs.Get_Value
(Name_Attribute);
begin
if Debug_On then
Put_Line ("reading proc " & Proc_Name);
end if;
Set_Unbounded_String (Self.Current_Proc, Proc_Name);
if not Procs_To_Vns_Mappings.Contains
(Proc_Vns, Self.Current_Proc)
then
-- TBD: there are instances of 'Elab_Subp_Body that
-- appear in both the SCIL for the spec and the body. Is it
-- ok to combine the backtraces?
Procs_To_Vns_Mappings.Insert
(Proc_Vns, Self.Current_Proc, new VN_To_BT_Mappings.Map);
end if;
end;
elsif Qname = Callee_Tag then
declare
Info : Callee_Info_Record;
begin
Info.Bt_Id := Current_Bt_Id;
Set_Unbounded_String
(Info.Callee_Name, Attrs.Get_Value (Name_Attribute));
Set_Unbounded_String
(Info.Callee_File_Name, Attrs.Get_Value (File_Name_Attribute));
Info.Callee_Vn := Positive'Value
(Attrs.Get_Value (Vn_Attribute));
Info.Callee_Pre_Index := Positive'Value
(Attrs.Get_Value (Pre_Index_Attribute));
Info.Callee_Srcpos.Line := Positive'Value
(Attrs.Get_Value (Line_Attribute));
Info.Callee_Srcpos.Column := Positive'Value
(Attrs.Get_Value (Col_Attribute));
Callee_Mappings.Insert (Callee_Mapping,
Current_Bt_Id, Info);
end;
elsif Qname = Checks_Tag then
-- nothing to do
null;
elsif Qname = Check_Tag then
declare
Check_Name : constant String := Attrs.Get_Value (Name_Attribute);
Check_Text : constant String := Attrs.Get_Value (Text_Attribute);
Check_Id : constant Natural :=
Natural'Value (Attrs.Get_Value (Id_Attribute));
begin
Self.Check_Kind.Insert
(Check_Id, Message_Kinds.BE_Message_Subkind'Value (Check_Name));
Self.Check_Text.Insert
(Check_Id, To_Unbounded_String (Check_Text));
end;
elsif Qname = Event_Tag then
declare
Event_Name : constant String := Attrs.Get_Value (Name_Attribute);
Event_Text : constant String := Attrs.Get_Value (Text_Attribute);
Event_Id : constant Natural :=
Natural'Value (Attrs.Get_Value (Id_Attribute));
begin
Self.Event_Kind.Insert (Event_Id, Event_Enum'Value (Event_Name));
Self.Event_Text.Insert
(Event_Id, To_Unbounded_String (Event_Text));
end;
elsif Qname = Events_Tag then
-- nothing to do
null;
else
null;
end if;
end Start_Element;
-------------------
-- End_Element --
-------------------
overriding procedure End_Element
(Self : in out Backtrace_Reader;
Namespace_URI : Unicode.CES.Byte_Sequence;
Local_Name : Unicode.CES.Byte_Sequence;
Qname : Unicode.CES.Byte_Sequence)
is
pragma Unreferenced (Namespace_URI, Local_Name);
begin
if Qname = File_Tag then
-- we are done
null;
elsif Qname = Bt_Tag then
-- nothing to do
null;
elsif Qname = Vn_Tag then
-- store seq of backtraces into mapping
pragma Assert (Self.Current_VN /= 0);
Proc_Vns.Element (Self.Current_Proc).Include
(Self.Current_VN, Current_BT_Seq);
Current_BT_Seq := BT_Info_Seqs.Empty_Vector;
Self.Current_VN := 0;
elsif Qname = Proc_Tag then
-- nothing to do
null;
elsif Qname = Checks_Tag then
null;
elsif Qname = Check_Tag then
null;
elsif Qname = Events_Tag then
null;
elsif Qname = Event_Tag then
null;
else
null;
end if;
end End_Element;
overriding procedure Start_Element
(Self : in out Vals_Reader;
Namespace_URI : Unicode.CES.Byte_Sequence;
Local_Name : Unicode.CES.Byte_Sequence;
Qname : Unicode.CES.Byte_Sequence;
Attrs : Sax.Attributes.Attributes'Class)
is
pragma Unreferenced (Namespace_URI, Local_Name);
begin
if Qname = File_Tag then
declare
File_Name : constant String := Attrs.Get_Value (Name_Attribute);
begin
if Debug_On then
Put_Line ("reading xml for file " & File_Name);
end if;
Set_Unbounded_String (Self.File_Name, File_Name);
end;
elsif Qname = Proc_Tag then
null;
elsif Qname = Srcpos_Tag then
declare
type Source_Attribute_Enum is (Line, Col);
begin
for J in 0 .. Get_Length (Attrs) - 1 loop
declare
Attr_Value : constant String := Get_Value (Attrs, J);
begin
case Source_Attribute_Enum'Value (Get_Qname (Attrs, J)) is
when Line =>
Self.Current_Src.Line := Positive'Value (Attr_Value);
when Col =>
Self.Current_Src.Column := Positive'Value (Attr_Value);
end case;
end;
end loop;
end;
elsif Qname = Vn_Tag then
declare
type Source_Attribute_Enum is (Name, Vals);
Vn_Vals : Vn_Values;
begin
for J in 0 .. Get_Length (Attrs) - 1 loop
declare
Attr_Value : constant String := Get_Value (Attrs, J);
begin
case Source_Attribute_Enum'Value (Get_Qname (Attrs, J)) is
when Name =>
Vn_Vals.Vn_Image := To_Unbounded_String (Attr_Value);
when Vals =>
Vn_Vals.Set_Image := To_Unbounded_String
(Improve_Number_Readability_In_Messages
(Attr_Value, For_HTML_Output => False));
end case;
end;
end loop;
Vn_Values_Seqs.Append (Self.Current_Vals, Vn_Vals);
end;
else
null;
end if;
end Start_Element;
-------------------
-- End_Element --
-------------------
overriding procedure End_Element
(Self : in out Vals_Reader;
Namespace_URI : Unicode.CES.Byte_Sequence;
Local_Name : Unicode.CES.Byte_Sequence;
Qname : Unicode.CES.Byte_Sequence)
is
pragma Unreferenced (Namespace_URI, Local_Name);
begin
if Qname = File_Tag then
-- we are done
null;
elsif Qname = Srcpos_Tag then
-- store seq of vals into mapping
pragma Assert (Self.Current_Src.Line /= 0);
File_Vals.Include
(Self.Current_Src, Self.Current_Vals);
Self.Current_Vals := Vn_Values_Seqs.Empty_Vector;
Self.Current_Src.Line := 0;
else
null;
end if;
end End_Element;
------------------------------
-- Read_File_Backtraces_Xml --
------------------------------
procedure Read_File_Backtrace_Xml
(Output_Dir : String;
File_Name : String;
File_Exists : out Boolean)
is
use Input_Sources.File;
File_To_Read : constant String :=
BT.Xml.Xml_File_Name (Output_Dir, File_Name, For_Backtraces => True);
Input : Input_Sources.File.File_Input;
Reader : Backtrace_Reader;
begin
if not Is_Regular_File (File_To_Read) then
File_Exists := False;
return;
end if;
File_Exists := True;
if Files_Read.Contains (File_To_Read) then
-- already processed
return;
end if;
if Inspection_Output_Directory = Null_Unbounded_String then
Inspection_Output_Directory := To_Unbounded_String (Output_Dir);
else
pragma Assert (Output_Dir = To_String (Inspection_Output_Directory));
null;
end if;
Input_Sources.Set_Public_Id
(Input_Sources.Input_Source (Input), File_To_Read);
Input_Sources.Set_System_Id
(Input_Sources.Input_Source (Input), File_To_Read);
Input_Sources.File.Open (File_To_Read, Input);
Set_Feature (Reader, Validation_Feature, False);
Parse (Reader, Input);
Close (Input);
Files_Read.Append (File_To_Read);
end Read_File_Backtrace_Xml;
procedure Read_File_Vals_Xml
(Output_Dir : String;
File_Name : String;
File_Exists : out Boolean)
is
use Input_Sources.File;
File_To_Read : constant String :=
BT.Xml.Xml_File_Name (Output_Dir, File_Name, For_Backtraces => False);
Input : Input_Sources.File.File_Input;
Reader : Vals_Reader;
begin
if not Is_Regular_File (File_To_Read) then
File_Exists := False;
return;
end if;
File_Exists := True;
if Files_Read.Contains (File_To_Read) then
-- already processed
return;
end if;
Input_Sources.Set_Public_Id
(Input_Sources.Input_Source (Input), File_To_Read);
Input_Sources.Set_System_Id
(Input_Sources.Input_Source (Input), File_To_Read);
Input_Sources.File.Open (File_To_Read, Input);
Set_Feature (Reader, Validation_Feature, False);
Parse (Reader, Input);
Close (Input);
Files_Read.Append (File_To_Read);
end Read_File_Vals_Xml;
-----------------------
-- Get_Vn_Backtraces --
-----------------------
procedure Get_Vn_Backtraces
(Proc_Name : String;
Vn_Id : Natural;
Msg_Loc : Source_Position;
Msg_Kind : Message_Kinds.BE_Message_Subkind;
Precond_Index : Natural := 0;
Backtraces : in out BT.BT_Info_Seqs.Vector)
is
Proc : constant Unbounded_String := To_Unbounded_String (Proc_Name);
Top_Level : Boolean := True;
Debug_On : constant Boolean := False;
procedure Get_Vn_Backtraces_Rec
(Rec_Proc_Name : String;
Vn_Id : Natural;
Rec_Backtraces : out BT_Info_Seqs.Vector);
-- Recursive version
function BT_Is_Important (Info : BT_Info) return Boolean;
-- Returns True if BT is a precondition event corresponding to
-- a precondition_check message at same source location, message kind,
-- with a matching precondition index, at the top level. Unconditionally
-- returns True for other cases.
---------------------
-- BT_Is_Important --
---------------------
function BT_Is_Important (Info : BT_Info) return Boolean is
begin
if Top_Level and then Msg_Kind = Precondition_Check then
return Info.Kind = Msg_Kind
and then Info.Sloc = Msg_Loc
and then Get_Precondition_Index (Info.Bt_Id) = Precond_Index;
end if;
return True;
end BT_Is_Important;
procedure Display_BT (Info : BT_Info);
-- Print out the backtrace for debugging.
----------------
-- Display_BT --
----------------
procedure Display_BT (Info : BT_Info) is
begin
Put (" "
& Natural'Image (Info.Sloc.Line) & ":"
& Natural'Image (Info.Sloc.Column) & " - "
& To_String (Info.Text));
if Info.Kind = Precondition_Check then
Put (" - call to "
& Get_Precondition_Callee_Name (Info.Bt_Id)
& ", vn"
& Natural'Image (Get_Precondition_VN (Info.Bt_Id)));
end if;
New_Line;
end Display_BT;
procedure Get_Vn_Backtraces_Rec
(Rec_Proc_Name : String;
Vn_Id : Natural;
Rec_Backtraces : out BT_Info_Seqs.Vector)
is
Proc : constant Unbounded_String
:= To_Unbounded_String (Rec_Proc_Name);
All_VN_BTs : BT_Info_Seqs.Vector;
VN_BTs : BT_Info_Seqs.Vector := BT_Info_Seqs.Empty_Vector;
All_Checks : Check_Kinds_Array := Check_Kinds_Array_Default;
Primary_Checks : Check_Kinds_Array;
use BT_Info_Seqs;
use VN_To_BT_Mappings;
begin
if not Procs_To_Vns_Mappings.Contains (Proc_Vns, Proc)
or else not Proc_Vns.Element (Proc).Contains (Vn_Id)
then
-- no known backtraces for this proc
return;
end if;
-- backtraces associated with Vn_Id in proc
All_VN_BTs := VN_To_BT_Mappings.Element
(Proc_Vns.Element (Proc).Find (Vn_Id));
-- Delete unneeded backtraces if Msg_Check is a precondition_check.
-- We are only interested in the backtraces associated with the
-- precondition.
for Info of All_VN_BTs loop
if BT_Is_Important (Info) then
Append (VN_BTs, Info);
end if;
end loop;
Sort_Backtraces.Sort (VN_BTs);
if Debug_On then
Put_Line ("VN_BTs after sort");
for Info of VN_BTs loop
Display_BT (Info);
end loop;
end if;
-- Now import the precondition backtraces
for Info of VN_BTs loop
if not Contains (Rec_Backtraces, Info) then
Append (Rec_Backtraces, Info);
end if;
if Info.Event = Precondition_Event then
Top_Level := False;
declare
Callee_BTs : BT.BT_Info_Seqs.Vector;
Callee_File_Name : constant String :=
Get_Callee_File_Name (Info.Bt_Id);
Callee_Proc_Name : constant String :=
Get_Precondition_Callee_Name (Info.Bt_Id);
Precondition_VN : Natural;
File_Exists : Boolean;
begin
if not Files_Read.Contains
(BT.Xml.Xml_File_Name
(To_String (Inspection_Output_Directory),
Callee_File_Name,
For_Backtraces => True))
then
Read_File_Backtrace_Xml
(To_String (Inspection_Output_Directory),
Callee_File_Name,
File_Exists);
end if;
-- Import the backtraces contributing to that precondition
if Callee_Proc_Name /= Proc_Name
and then Callee_Proc_Name /= Rec_Proc_Name
then
if Debug_On then
Put_Line
("get precondition bts for " & Callee_Proc_Name);
end if;
Precondition_VN := Get_Precondition_VN (Info.Bt_Id);
Get_Vn_Backtraces_Rec
(Callee_Proc_Name,
Precondition_VN,
Callee_BTs);
if Debug_On then
Put_Line ("Adding precondition bts for call to "
& Callee_Proc_Name);
for Info of Callee_BTs loop
Display_BT (Info);
end loop;
end if;
-- Remove non-primary checks at this level.
-- First, collect checks.
for Info of Callee_BTs loop
if Info.Event = Check_Event then
All_Checks (Info.Kind) := True;
end if;
end loop;
Primary_Checks := Primary_Original_Checks (All_Checks);
declare
Result_BTs : BT_Info_Seqs.Vector;
Elem : BT_Info_Seqs.Cursor := Callee_BTs.First;
begin
while BT_Info_Seqs.Has_Element (Elem) loop
declare
Info : constant BT_Info
:= BT_Info_Seqs.Element (Elem);
begin
if Info.Event /= Check_Event
or else Primary_Checks (Info.Kind)
then
Append (Result_BTs, Info);
end if;
end;
Elem := BT_Info_Seqs.Next (Elem);
end loop;
Callee_BTs := Result_BTs;
end;
if Debug_On then
Put_Line ("after removing primary checks");
for Info of Callee_BTs loop
Display_BT (Info);
end loop;
end if;
-- Add to list if not already present
for Info of Callee_BTs loop
if not Contains (Rec_Backtraces, Info) then
Append (Rec_Backtraces, Info);
end if;
end loop;
end if;
end;
end if;
if Debug_On then
Put_Line ("Rec_Backtraces");
for Info of Rec_Backtraces loop
Display_BT (Info);
end loop;
end if;
end loop;
end Get_Vn_Backtraces_Rec;
use BT_Info_Seqs;
begin
if not Proc_Vns.Contains (Proc) or else
not Proc_Vns.Element (Proc).Contains (Vn_Id)
then
if Debug_On then
Put_Line ("No backtraces for this vn " & Natural'Image (Vn_Id)
& " in " & Proc_Name);
end if;
return;
end if;
-- Collect all backtraces (including the backtraces imported
-- at precondition_check events.
-- Uniquify and sort (by increasing line numbers) before
-- returning the sequence.
if Debug_On then
New_Line;
Put_Line ("get_backtraces for vn " & Natural'Image (Vn_Id)
& " in " & Proc_Name & ":" & Integer'Image (Msg_Loc.Line)
& ":" & Integer'Image (Msg_Loc.Column));
end if;
if Backtraces /= BT_Info_Seqs.Empty_Vector then
declare
New_BTs : BT_Info_Seqs.Vector;
begin
Get_Vn_Backtraces_Rec (Proc_Name, Vn_Id, New_BTs);
BT_Info_Seqs.Append (Backtraces, New_BTs);
end;
else
Get_Vn_Backtraces_Rec (Proc_Name, Vn_Id, Backtraces);
end if;
if Debug_On then
Put_Line ("Backtraces after recursion");
for Info of Backtraces loop
Display_BT (Info);
end loop;
end if;
declare
Result_BTs : BT_Info_Seqs.Vector;
Prev : BT_Info := No_BT_Info;
Elem : BT_Info_Seqs.Cursor := Backtraces.First;
begin
while BT_Info_Seqs.Has_Element (Elem) loop
declare
Info : BT_Info := BT_Info_Seqs.Element (Elem);
begin
if not (Info.Event = Prev.Event
and then Info.Kind = Prev.Kind
and then Info.Sloc.Line = Prev.Sloc.Line)
then
-- We need to add this backtrace, but first check if there
-- are multiple similar backtraces for the same line. If
-- there are, only add the one corresponding to the message
-- column.
if Info.Sloc.Line = Msg_Loc.Line and then
Info.Sloc.Column /= Msg_Loc.Column
then
-- Is there another backtrace on the same line that would
-- be more appropriate?
declare
Next_Cursor : BT_Info_Seqs.Cursor :=
BT_Info_Seqs.Next (Elem);
Next_Info : BT_Info;
begin
while BT_Info_Seqs.Has_Element (Next_Cursor) loop
Next_Info :=
BT_Info_Seqs.Element (Next_Cursor);
if Next_Info.Event = Info.Event
and then Next_Info.Kind = Info.Kind
and then Next_Info.Sloc.Line = Info.Sloc.Line
then
if Next_Info.Sloc.Column = Msg_Loc.Column then
Info := Next_Info;
end if;
Elem := Next_Cursor;
else
exit;
end if;
Next_Cursor := BT_Info_Seqs.Next (Next_Cursor);
end loop;
end;
end if;
Prev := Info;
Append (Result_BTs, Info);
end if;
end;
Elem := BT_Info_Seqs.Next (Elem);
end loop;
Backtraces := Result_BTs;
end;
if Debug_On then
Put_Line ("Final Backtraces:");
for Info of Backtraces loop
Display_BT (Info);
end loop;
end if;
end Get_Vn_Backtraces;
----------------------------------
-- Get_Precondition_Callee_Name --
----------------------------------
function Get_Precondition_Callee_Name (Bt_Id : Natural) return String is
Info : constant Callee_Info_Record := Callee_Mapping.Element (Bt_Id);
begin
return To_String (Info.Callee_Name);
end Get_Precondition_Callee_Name;
----------------------------
-- Get_Precondition_Index --
----------------------------
function Get_Precondition_Index (Bt_Id : Natural) return Natural is
Info : constant Callee_Info_Record := Callee_Mapping.Element (Bt_Id);
begin
return Info.Callee_Pre_Index;
end Get_Precondition_Index;
-------------------------
-- Get_Precondition_VN --
-------------------------
function Get_Precondition_VN (Bt_Id : Natural) return Natural is
Info : constant Callee_Info_Record := Callee_Mapping.Element (Bt_Id);
begin
return Info.Callee_Vn;
end Get_Precondition_VN;
--------------------------
-- Get_BT_File_Name --
--------------------------
function Get_BT_File_Name (Bt_Id : Natural) return String is
begin
return To_String (BT_File_Mappings.Element (BT_Files, Bt_Id));
end Get_BT_File_Name;
-----------------------
-- Get_Callee_Srcpos --
-----------------------
function Get_Callee_Srcpos (Bt_Id : Natural) return Source_Position is
Info : constant Callee_Info_Record := Callee_Mapping.Element (Bt_Id);
begin
return Info.Callee_Srcpos;
end Get_Callee_Srcpos;
--------------------------
-- Get_Callee_File_Name --
--------------------------
function Get_Callee_File_Name (Bt_Id : Natural) return String is
Info : constant Callee_Info_Record := Callee_Mapping.Element (Bt_Id);
begin
return To_String (Info.Callee_File_Name);
end Get_Callee_File_Name;
procedure Read_Xml_File (File_Name : String;
File_Exists : out Boolean);
-- Read the *_vals XML file corresponding to File_Name if it has not yet
-- been read
-------------------
-- Read_Xml_File --
-------------------
procedure Read_Xml_File (File_Name : String;
File_Exists : out Boolean) is
begin
if not Files_Read.Contains (
BT.Xml.Xml_File_Name (
To_String (Inspection_Output_Directory),
File_Name,
For_Backtraces => False))
then
Read_File_Vals_Xml
(To_String (Inspection_Output_Directory),
File_Name,
File_Exists);
else
File_Exists := True;
end if;
end Read_Xml_File;
package List_Of_Source_Positions is new
Ada.Containers.Indefinite_Doubly_Linked_Lists
(Element_Type => Source_Position,
"=" => "=");
package Map_Of_Source_Positions is new
Ada.Containers.Hashed_Maps
(Key_Type => Source_Position,
Element_Type => Vn_Values,
Hash => Hash,
Equivalent_Keys => "=",
"=" => "="); -- elements "="
---------------------------
-- Get_Variable_Vn_Value --
---------------------------
function Get_Variable_Vn_Value
(File : String;
Variable : String;
Srcpos : Source_Position;
Closest_Match : out Source_Position) return String
is
File_Exists : Boolean;
Curr : Srcpos_Vals_Mappings.Cursor;
Variable_Positions : List_Of_Source_Positions.List;
Variable_Vals : Map_Of_Source_Positions.Map;
begin
-- Make sure we have read the corresponding Xml file
Read_Xml_File (File, File_Exists);
Closest_Match := No_Source_Position;
if not File_Exists then
if Debug_On then
Put_Line ("Get_Variable_Vn_Value ("
& Variable & "), no values found for file "
& File);
end if;
return "";
end if;
if Debug_On then
Put_Line ("Get_Variable_Vn_Value for " & Variable &
" at " &
Integer'Image (Srcpos.Line) & ":" &
Integer'Image (Srcpos.Column) & ":" &
":");
end if;
Curr := Srcpos_Vals_Mappings.First (File_Vals);
while Srcpos_Vals_Mappings.Has_Element (Curr) loop
declare
Pos : constant Source_Position :=
Srcpos_Vals_Mappings.Key (Curr);
E : constant Vector :=
Srcpos_Vals_Mappings.Element (Curr);
begin
for Info of E loop
if Info.Vn_Image = Variable then
if Pos = Srcpos then
-- exact match
if Debug_On then
Put_Line ("Found an exact match : " &
To_String (Info.Set_Image));
end if;
Closest_Match := Srcpos;
return To_String (Info.Set_Image);
else
if Debug_On then
Put_Line ("add a possible match at " &
Integer'Image (Pos.Line) & ":" &
Integer'Image (Pos.Column) & ":" &
To_String (Info.Set_Image));
end if;
Variable_Positions.Append (Pos);
Variable_Vals.Include (Pos, Info);
end if;
end if;
end loop;
end;
Curr := Srcpos_Vals_Mappings.Next (Curr);
end loop;
-- Check the found values, if any.
if List_Of_Source_Positions.Is_Empty (Variable_Positions) then
-- no known values
if Debug_On then
Put_Line ("Get_Variable_Vn_Value, "
& Variable & " was not found");
end if;
return "";
elsif List_Of_Source_Positions.Length (Variable_Positions) = 1 then
if Debug_On then
Put_Line ("return only possible match");
end if;
Closest_Match := List_Of_Source_Positions.First_Element
(Variable_Positions);
return To_String (Variable_Vals.Element
(List_Of_Source_Positions.First_Element
(Variable_Positions)).Set_Image);
end if;
-- No exact match, find the closest to Srcpos
declare
function "<" (Left, Right : Source_Position) return Boolean;
-- compare 2 source_positions
-------
-- "<"
-------
function "<" (Left, Right : Source_Position) return Boolean
is
begin
if Left.Line = Right.Line then
return Left.Column < Right.Column;
else
return Left.Line < Right.Line;
end if;
end "<";
package Sort_Positions is new
List_Of_Source_Positions.Generic_Sorting ("<");
Cursor, Prev_Cursor, Next_Cursor : List_Of_Source_Positions.Cursor;
begin
Sort_Positions.Sort (Variable_Positions);
-- Check first if Srcpos is outside the bounds of known values
if List_Of_Source_Positions.First_Element (Variable_Positions).
Line > Srcpos.Line
then
-- the first value is already past the line we are
-- interested in, return the first
Closest_Match := List_Of_Source_Positions.First_Element
(Variable_Positions);
if Debug_On then
Put_Line ("use first entry at " &
Integer'Image (Closest_Match.Line) & ":" &
Integer'Image (Closest_Match.Column) & " :" &
To_String (Variable_Vals.Element
(List_Of_Source_Positions.First_Element
(Variable_Positions)).Set_Image));
end if;
return To_String (Variable_Vals.Element
(List_Of_Source_Positions.First_Element
(Variable_Positions)).Set_Image);
elsif List_Of_Source_Positions.Last_Element (Variable_Positions).
Line < Srcpos.Line
then
-- the last value is still before the line we are
-- interested in, return the last
Closest_Match := List_Of_Source_Positions.Last_Element
(Variable_Positions);
if Debug_On then
Put_Line ("use last entry at " &
Integer'Image (Closest_Match.Line) & ":" &
Integer'Image (Closest_Match.Column) & " :" &
To_String (Variable_Vals.Element
(List_Of_Source_Positions.Last_Element
(Variable_Positions)).Set_Image));
end if;
return To_String (Variable_Vals.Element
(List_Of_Source_Positions.Last_Element
(Variable_Positions)).Set_Image);
end if;
-- Find the values closest to srcpos. We'll choose the closest
-- preceding values.
Cursor := List_Of_Source_Positions.First (Variable_Positions);
Prev_Cursor := List_Of_Source_Positions.No_Element;
Next_Cursor := List_Of_Source_Positions.Next (Cursor);
declare
use List_Of_Source_Positions;
Has_Prev : Boolean;
Has_Next : Boolean;
Pos, Prev_Pos, Next_Pos : Source_Position := No_Source_Position;
begin
while List_Of_Source_Positions.Has_Element (Cursor) loop
Pos := List_Of_Source_Positions.Element (Cursor);
Has_Prev := Prev_Cursor /= List_Of_Source_Positions.No_Element
and then List_Of_Source_Positions.Has_Element (Prev_Cursor);
Has_Next := Next_Cursor /= List_Of_Source_Positions.No_Element
and then List_Of_Source_Positions.Has_Element (Next_Cursor);
if Has_Prev then
Prev_Pos := List_Of_Source_Positions.Element (Prev_Cursor);
end if;
if Has_Next then
Next_Pos := List_Of_Source_Positions.Element (Next_Cursor);
end if;
if Pos.Line = Srcpos.Line then
-- found a possible entry
if (Prev_Pos /= No_Source_Position and then
Prev_Pos.Line < Srcpos.Line)
or else (Next_Pos /= No_Source_Position and then
Next_Pos.Line > Srcpos.Line)
then
-- use entry on the same line
if Debug_On then
Put_Line ("Only match on line " &
Integer'Image (Pos.Line) & ":" &
Integer'Image (Pos.Column) & " : " &
To_String (Variable_Vals.Element
(Pos).Set_Image));
end if;
Closest_Match := Pos;
return To_String (Variable_Vals.Element
(Pos).Set_Image);
elsif Prev_Pos /= No_Source_Position and then
Prev_Pos.Line = Srcpos.Line
then
if Next_Pos = No_Source_Position or else
Next_Pos.Line > Srcpos.Line
then
-- Choose between Pos and Prev_Pos
if (Prev_Pos.Column < Srcpos.Column
and then Pos.Column > Srcpos.Column)
or else Pos.Column > Srcpos.Column
then
-- return previous
if Debug_On then
Put_Line ("Match on same line " &
Integer'Image (Prev_Pos.Line) & ":" &
Integer'Image (Prev_Pos.Column) & " : " &
To_String (Variable_Vals.Element
(Prev_Pos).Set_Image));
end if;
Closest_Match := Prev_Pos;
return To_String (Variable_Vals.Element
(Prev_Pos).Set_Image);
else
-- return current
if Debug_On then
Put_Line ("Match on same line " &
Integer'Image (Pos.Line) & ":" &
Integer'Image (Pos.Column) & " : " &
To_String (Variable_Vals.Element
(Pos).Set_Image));
end if;
Closest_Match := Pos;
return To_String (Variable_Vals.Element
(Pos).Set_Image);
end if;
end if;
elsif Next_Pos.Line > Srcpos.Line then
null;
else
null;
end if;
elsif Pos.Line > Srcpos.Line then
-- we passed the desired line.
if Prev_Pos /= No_Source_Position and then
Prev_Pos.Line < Srcpos.Line
then
-- return previous
if Debug_On then
Put_Line ("Match on closest prev line " &
Integer'Image (Prev_Pos.Line) & ":" &
Integer'Image (Prev_Pos.Column) & " : " &
To_String (Variable_Vals.Element
(Prev_Pos).Set_Image));
end if;
Closest_Match := Prev_Pos;
return To_String (Variable_Vals.Element
(Prev_Pos).Set_Image);
end if;
else
-- keep looking
null;
end if;
Prev_Cursor := Cursor;
Cursor := List_Of_Source_Positions.Next (Cursor);
Next_Cursor := List_Of_Source_Positions.Next (Cursor);
end loop;
end;
if Debug_On then
Put_Line ("Get_Variable_Vn_Value, " & Variable & " was not found");
end if;
return "";
end;
end Get_Variable_Vn_Value;
--------------------------
-- Get_Srcpos_Vn_Values --
--------------------------
function Get_Srcpos_Vn_Values
(File_Name : String;
Line : Line_Number) return Vn_Values_Seqs.Vector is
File_Exists : Boolean;
Curr : Srcpos_Vals_Mappings.Cursor;
Result : Vn_Values_Seqs.Vector;
begin
-- Make sure we have read the corresponding Xml file
Read_Xml_File (File_Name, File_Exists);
if not File_Exists then
return Vn_Values_Seqs.Empty_Vector;
end if;
Curr := Srcpos_Vals_Mappings.First (File_Vals);
while Srcpos_Vals_Mappings.Has_Element (Curr) loop
declare
Pos : constant Source_Position :=
Srcpos_Vals_Mappings.Key (Curr);
E : constant Vector :=
Srcpos_Vals_Mappings.Element (Curr);
begin
if Pos.Line = Line then
-- Collect values on this line
for Info of E loop
Vn_Values_Seqs.Append (Result, Info);
end loop;
end if;
end;
Curr := Srcpos_Vals_Mappings.Next (Curr);
end loop;
return Result;
end Get_Srcpos_Vn_Values;
function Get_Srcpos_Vn_Values
(File_Name : String;
Srcpos : Source_Position) return Vn_Values_Seqs.Vector
is
File_Exists : Boolean;
Line : constant Line_Number := Srcpos.Line;
Variables_On_Line : Name_Set.List;
Curr : Srcpos_Vals_Mappings.Cursor;
Result : Vn_Values_Seqs.Vector;
begin
-- Make sure we have read the corresponding Xml file
Read_Xml_File (File_Name, File_Exists);
if not File_Exists or else not File_Vals.Contains (Srcpos) then
return Vn_Values_Seqs.Empty_Vector;
end if;
-- find the VN images on this line
Curr := Srcpos_Vals_Mappings.First (File_Vals);
while Srcpos_Vals_Mappings.Has_Element (Curr) loop
declare
Pos : constant Source_Position :=
Srcpos_Vals_Mappings.Key (Curr);
E : constant Vector :=
Srcpos_Vals_Mappings.Element (Curr);
begin
if Pos.Line = Line then
for Info of E loop
if not Variables_On_Line.Contains
(To_String (Info.Vn_Image))
then
Variables_On_Line.Append
(To_String (Info.Vn_Image));
end if;
end loop;
end if;
end;
Curr := Srcpos_Vals_Mappings.Next (Curr);
end loop;
-- now find the value_sets associated with the closest source position
-- for each of these VNs
declare
procedure Find_One_Variable (Position : Name_Set.Cursor);
-----------------------
-- Find_One_Variable --
-----------------------
procedure Find_One_Variable (Position : Name_Set.Cursor) is
Var_Name : constant String :=
Name_Set.Element (Position);
Closest_Match : Source_Position;
Var_Values : constant String :=
Get_Variable_Vn_Value
(File_Name, Var_Name, Srcpos, Closest_Match);
begin
if Debug_On then
Put_Line ("checking variable " & Var_Name);
end if;
if Closest_Match /= No_Source_Position then
if Debug_On then
Put_Line (" => " & Var_Values);
end if;
Vn_Values_Seqs.Append (Result,
(To_Unbounded_String (Var_Name),
To_Unbounded_String (Var_Values)));
end if;
end Find_One_Variable;
begin
Name_Set.Iterate (Variables_On_Line,
Find_One_Variable'Access);
return Result;
end;
end Get_Srcpos_Vn_Values;
end BT.Xml.Reader;
|