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
|
------------------------------------------------------------------------------
-- --
-- GNAT COMPILER COMPONENTS --
-- --
-- G N A T . A W K --
-- --
-- B o d y --
-- --
-- Copyright (C) 2000-2018, AdaCore --
-- --
-- GNAT 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. GNAT is distributed in the hope that it will be useful, but WITH- --
-- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY --
-- or FITNESS FOR A PARTICULAR PURPOSE. --
-- --
-- As a special exception under Section 7 of GPL version 3, you are granted --
-- additional permissions described in the GCC Runtime Library Exception, --
-- version 3.1, as published by the Free Software Foundation. --
-- --
-- You should have received a copy of the GNU General Public License and --
-- a copy of the GCC Runtime Library Exception along with this program; --
-- see the files COPYING3 and COPYING.RUNTIME respectively. If not, see --
-- <http://www.gnu.org/licenses/>. --
-- --
-- GNAT was originally developed by the GNAT team at New York University. --
-- Extensive contributions were provided by Ada Core Technologies Inc. --
-- --
------------------------------------------------------------------------------
with Ada.Exceptions;
with Ada.Text_IO;
with Ada.Strings.Unbounded;
with Ada.Strings.Fixed;
with Ada.Strings.Maps;
with Ada.Unchecked_Deallocation;
with GNAT.Directory_Operations;
with GNAT.Dynamic_Tables;
with GNAT.OS_Lib;
package body GNAT.AWK is
use Ada;
use Ada.Strings.Unbounded;
-----------------------
-- Local subprograms --
-----------------------
-- The following two subprograms provide a functional interface to the
-- two special session variables, that are manipulated explicitly by
-- Finalize, but must be declared after Finalize to prevent static
-- elaboration warnings.
function Get_Def return Session_Data_Access;
procedure Set_Cur;
----------------
-- Split mode --
----------------
package Split is
type Mode is abstract tagged null record;
-- This is the main type which is declared abstract. This type must be
-- derived for each split style.
type Mode_Access is access Mode'Class;
procedure Current_Line (S : Mode; Session : Session_Type)
is abstract;
-- Split current line of Session using split mode S
------------------------
-- Split on separator --
------------------------
type Separator (Size : Positive) is new Mode with record
Separators : String (1 .. Size);
end record;
procedure Current_Line
(S : Separator;
Session : Session_Type);
---------------------
-- Split on column --
---------------------
type Column (Size : Positive) is new Mode with record
Columns : Widths_Set (1 .. Size);
end record;
procedure Current_Line (S : Column; Session : Session_Type);
end Split;
procedure Free is new Unchecked_Deallocation
(Split.Mode'Class, Split.Mode_Access);
----------------
-- File_Table --
----------------
type AWK_File is access String;
package File_Table is
new Dynamic_Tables (AWK_File, Natural, 1, 5, 50);
-- List of file names associated with a Session
procedure Free is new Unchecked_Deallocation (String, AWK_File);
-----------------
-- Field_Table --
-----------------
type Field_Slice is record
First : Positive;
Last : Natural;
end record;
-- This is a field slice (First .. Last) in session's current line
package Field_Table is
new Dynamic_Tables (Field_Slice, Natural, 1, 10, 100);
-- List of fields for the current line
--------------
-- Patterns --
--------------
-- Define all patterns style: exact string, regular expression, boolean
-- function.
package Patterns is
type Pattern is abstract tagged null record;
-- This is the main type which is declared abstract. This type must be
-- derived for each patterns style.
type Pattern_Access is access Pattern'Class;
function Match
(P : Pattern;
Session : Session_Type) return Boolean
is abstract;
-- Returns True if P match for the current session and False otherwise
procedure Release (P : in out Pattern);
-- Release memory used by the pattern structure
--------------------------
-- Exact string pattern --
--------------------------
type String_Pattern is new Pattern with record
Str : Unbounded_String;
Rank : Count;
end record;
function Match
(P : String_Pattern;
Session : Session_Type) return Boolean;
--------------------------------
-- Regular expression pattern --
--------------------------------
type Pattern_Matcher_Access is access Regpat.Pattern_Matcher;
type Regexp_Pattern is new Pattern with record
Regx : Pattern_Matcher_Access;
Rank : Count;
end record;
function Match
(P : Regexp_Pattern;
Session : Session_Type) return Boolean;
procedure Release (P : in out Regexp_Pattern);
------------------------------
-- Boolean function pattern --
------------------------------
type Callback_Pattern is new Pattern with record
Pattern : Pattern_Callback;
end record;
function Match
(P : Callback_Pattern;
Session : Session_Type) return Boolean;
end Patterns;
procedure Free is new Unchecked_Deallocation
(Patterns.Pattern'Class, Patterns.Pattern_Access);
-------------
-- Actions --
-------------
-- Define all action style : simple call, call with matches
package Actions is
type Action is abstract tagged null record;
-- This is the main type which is declared abstract. This type must be
-- derived for each action style.
type Action_Access is access Action'Class;
procedure Call
(A : Action;
Session : Session_Type) is abstract;
-- Call action A as required
-------------------
-- Simple action --
-------------------
type Simple_Action is new Action with record
Proc : Action_Callback;
end record;
procedure Call
(A : Simple_Action;
Session : Session_Type);
-------------------------
-- Action with matches --
-------------------------
type Match_Action is new Action with record
Proc : Match_Action_Callback;
end record;
procedure Call
(A : Match_Action;
Session : Session_Type);
end Actions;
procedure Free is new Unchecked_Deallocation
(Actions.Action'Class, Actions.Action_Access);
--------------------------
-- Pattern/Action table --
--------------------------
type Pattern_Action is record
Pattern : Patterns.Pattern_Access; -- If Pattern is True
Action : Actions.Action_Access; -- Action will be called
end record;
package Pattern_Action_Table is
new Dynamic_Tables (Pattern_Action, Natural, 1, 5, 50);
------------------
-- Session Data --
------------------
type Session_Data is record
Current_File : Text_IO.File_Type;
Current_Line : Unbounded_String;
Separators : Split.Mode_Access;
Files : File_Table.Instance;
File_Index : Natural := 0;
Fields : Field_Table.Instance;
Filters : Pattern_Action_Table.Instance;
NR : Natural := 0;
FNR : Natural := 0;
Matches : Regpat.Match_Array (0 .. 100);
-- Latest matches for the regexp pattern
end record;
procedure Free is
new Unchecked_Deallocation (Session_Data, Session_Data_Access);
--------------
-- Finalize --
--------------
procedure Finalize (Session : in out Session_Type) is
begin
-- We release the session data only if it is not the default session
if Session.Data /= Get_Def then
-- Release separators
Free (Session.Data.Separators);
Free (Session.Data);
-- Since we have closed the current session, set it to point now to
-- the default session.
Set_Cur;
end if;
end Finalize;
----------------
-- Initialize --
----------------
procedure Initialize (Session : in out Session_Type) is
begin
Session.Data := new Session_Data;
-- Initialize separators
Session.Data.Separators :=
new Split.Separator'(Default_Separators'Length, Default_Separators);
-- Initialize all tables
File_Table.Init (Session.Data.Files);
Field_Table.Init (Session.Data.Fields);
Pattern_Action_Table.Init (Session.Data.Filters);
end Initialize;
-----------------------
-- Session Variables --
-----------------------
Def_Session : Session_Type;
Cur_Session : Session_Type;
----------------------
-- Private Services --
----------------------
function Always_True return Boolean;
-- A function that always returns True
function Apply_Filters
(Session : Session_Type) return Boolean;
-- Apply any filters for which the Pattern is True for Session. It returns
-- True if a least one filters has been applied (i.e. associated action
-- callback has been called).
procedure Open_Next_File
(Session : Session_Type);
pragma Inline (Open_Next_File);
-- Open next file for Session closing current file if needed. It raises
-- End_Error if there is no more file in the table.
procedure Raise_With_Info
(E : Exceptions.Exception_Id;
Message : String;
Session : Session_Type);
pragma No_Return (Raise_With_Info);
-- Raises exception E with the message prepended with the current line
-- number and the filename if possible.
procedure Read_Line (Session : Session_Type);
-- Read a line for the Session and set Current_Line
procedure Split_Line (Session : Session_Type);
-- Split session's Current_Line according to the session separators and
-- set the Fields table. This procedure can be called at any time.
----------------------
-- Private Packages --
----------------------
-------------
-- Actions --
-------------
package body Actions is
----------
-- Call --
----------
procedure Call
(A : Simple_Action;
Session : Session_Type)
is
pragma Unreferenced (Session);
begin
A.Proc.all;
end Call;
----------
-- Call --
----------
procedure Call
(A : Match_Action;
Session : Session_Type)
is
begin
A.Proc (Session.Data.Matches);
end Call;
end Actions;
--------------
-- Patterns --
--------------
package body Patterns is
-----------
-- Match --
-----------
function Match
(P : String_Pattern;
Session : Session_Type) return Boolean
is
begin
return P.Str = Field (P.Rank, Session);
end Match;
-----------
-- Match --
-----------
function Match
(P : Regexp_Pattern;
Session : Session_Type) return Boolean
is
use type Regpat.Match_Location;
begin
Regpat.Match
(P.Regx.all, Field (P.Rank, Session), Session.Data.Matches);
return Session.Data.Matches (0) /= Regpat.No_Match;
end Match;
-----------
-- Match --
-----------
function Match
(P : Callback_Pattern;
Session : Session_Type) return Boolean
is
pragma Unreferenced (Session);
begin
return P.Pattern.all;
end Match;
-------------
-- Release --
-------------
procedure Release (P : in out Pattern) is
pragma Unreferenced (P);
begin
null;
end Release;
-------------
-- Release --
-------------
procedure Release (P : in out Regexp_Pattern) is
procedure Free is new Unchecked_Deallocation
(Regpat.Pattern_Matcher, Pattern_Matcher_Access);
begin
Free (P.Regx);
end Release;
end Patterns;
-----------
-- Split --
-----------
package body Split is
use Ada.Strings;
------------------
-- Current_Line --
------------------
procedure Current_Line (S : Separator; Session : Session_Type) is
Line : constant String := To_String (Session.Data.Current_Line);
Fields : Field_Table.Instance renames Session.Data.Fields;
Seps : constant Maps.Character_Set := Maps.To_Set (S.Separators);
Start : Natural;
Stop : Natural;
begin
-- First field start here
Start := Line'First;
-- Record the first field start position which is the first character
-- in the line.
Field_Table.Increment_Last (Fields);
Fields.Table (Field_Table.Last (Fields)).First := Start;
loop
-- Look for next separator
Stop := Fixed.Index
(Source => Line (Start .. Line'Last),
Set => Seps);
exit when Stop = 0;
Fields.Table (Field_Table.Last (Fields)).Last := Stop - 1;
-- If separators are set to the default (space and tab) we skip
-- all spaces and tabs following current field.
if S.Separators = Default_Separators then
Start := Fixed.Index
(Line (Stop + 1 .. Line'Last),
Maps.To_Set (Default_Separators),
Outside,
Strings.Forward);
if Start = 0 then
Start := Stop + 1;
end if;
else
Start := Stop + 1;
end if;
-- Record in the field table the start of this new field
Field_Table.Increment_Last (Fields);
Fields.Table (Field_Table.Last (Fields)).First := Start;
end loop;
Fields.Table (Field_Table.Last (Fields)).Last := Line'Last;
end Current_Line;
------------------
-- Current_Line --
------------------
procedure Current_Line (S : Column; Session : Session_Type) is
Line : constant String := To_String (Session.Data.Current_Line);
Fields : Field_Table.Instance renames Session.Data.Fields;
Start : Positive := Line'First;
begin
-- Record the first field start position which is the first character
-- in the line.
for C in 1 .. S.Columns'Length loop
Field_Table.Increment_Last (Fields);
Fields.Table (Field_Table.Last (Fields)).First := Start;
Start := Start + S.Columns (C);
Fields.Table (Field_Table.Last (Fields)).Last := Start - 1;
end loop;
-- If there is some remaining character on the line, add them in a
-- new field.
if Start - 1 < Line'Length then
Field_Table.Increment_Last (Fields);
Fields.Table (Field_Table.Last (Fields)).First := Start;
Fields.Table (Field_Table.Last (Fields)).Last := Line'Last;
end if;
end Current_Line;
end Split;
--------------
-- Add_File --
--------------
procedure Add_File
(Filename : String;
Session : Session_Type)
is
Files : File_Table.Instance renames Session.Data.Files;
begin
if OS_Lib.Is_Regular_File (Filename) then
File_Table.Increment_Last (Files);
Files.Table (File_Table.Last (Files)) := new String'(Filename);
else
Raise_With_Info
(File_Error'Identity,
"File " & Filename & " not found.",
Session);
end if;
end Add_File;
procedure Add_File
(Filename : String)
is
begin
Add_File (Filename, Cur_Session);
end Add_File;
---------------
-- Add_Files --
---------------
procedure Add_Files
(Directory : String;
Filenames : String;
Number_Of_Files_Added : out Natural;
Session : Session_Type)
is
use Directory_Operations;
Dir : Dir_Type;
Filename : String (1 .. 200);
Last : Natural;
begin
Number_Of_Files_Added := 0;
Open (Dir, Directory);
loop
Read (Dir, Filename, Last);
exit when Last = 0;
Add_File (Filename (1 .. Last), Session);
Number_Of_Files_Added := Number_Of_Files_Added + 1;
end loop;
Close (Dir);
exception
when others =>
Raise_With_Info
(File_Error'Identity,
"Error scanning directory " & Directory
& " for files " & Filenames & '.',
Session);
end Add_Files;
procedure Add_Files
(Directory : String;
Filenames : String;
Number_Of_Files_Added : out Natural)
is
begin
Add_Files (Directory, Filenames, Number_Of_Files_Added, Cur_Session);
end Add_Files;
-----------------
-- Always_True --
-----------------
function Always_True return Boolean is
begin
return True;
end Always_True;
-------------------
-- Apply_Filters --
-------------------
function Apply_Filters
(Session : Session_Type) return Boolean
is
Filters : Pattern_Action_Table.Instance renames Session.Data.Filters;
Results : Boolean := False;
begin
-- Iterate through the filters table, if pattern match call action
for F in 1 .. Pattern_Action_Table.Last (Filters) loop
if Patterns.Match (Filters.Table (F).Pattern.all, Session) then
Results := True;
Actions.Call (Filters.Table (F).Action.all, Session);
end if;
end loop;
return Results;
end Apply_Filters;
-----------
-- Close --
-----------
procedure Close (Session : Session_Type) is
Filters : Pattern_Action_Table.Instance renames Session.Data.Filters;
Files : File_Table.Instance renames Session.Data.Files;
begin
-- Close current file if needed
if Text_IO.Is_Open (Session.Data.Current_File) then
Text_IO.Close (Session.Data.Current_File);
end if;
-- Release Filters table
for F in 1 .. Pattern_Action_Table.Last (Filters) loop
Patterns.Release (Filters.Table (F).Pattern.all);
Free (Filters.Table (F).Pattern);
Free (Filters.Table (F).Action);
end loop;
for F in 1 .. File_Table.Last (Files) loop
Free (Files.Table (F));
end loop;
File_Table.Set_Last (Session.Data.Files, 0);
Field_Table.Set_Last (Session.Data.Fields, 0);
Pattern_Action_Table.Set_Last (Session.Data.Filters, 0);
Session.Data.NR := 0;
Session.Data.FNR := 0;
Session.Data.File_Index := 0;
Session.Data.Current_Line := Null_Unbounded_String;
end Close;
---------------------
-- Current_Session --
---------------------
function Current_Session return not null access Session_Type is
begin
return Cur_Session.Self;
end Current_Session;
---------------------
-- Default_Session --
---------------------
function Default_Session return not null access Session_Type is
begin
return Def_Session.Self;
end Default_Session;
--------------------
-- Discrete_Field --
--------------------
function Discrete_Field
(Rank : Count;
Session : Session_Type) return Discrete
is
begin
return Discrete'Value (Field (Rank, Session));
end Discrete_Field;
function Discrete_Field_Current_Session
(Rank : Count) return Discrete is
function Do_It is new Discrete_Field (Discrete);
begin
return Do_It (Rank, Cur_Session);
end Discrete_Field_Current_Session;
-----------------
-- End_Of_Data --
-----------------
function End_Of_Data
(Session : Session_Type) return Boolean
is
begin
return Session.Data.File_Index = File_Table.Last (Session.Data.Files)
and then End_Of_File (Session);
end End_Of_Data;
function End_Of_Data
return Boolean
is
begin
return End_Of_Data (Cur_Session);
end End_Of_Data;
-----------------
-- End_Of_File --
-----------------
function End_Of_File
(Session : Session_Type) return Boolean
is
begin
return Text_IO.End_Of_File (Session.Data.Current_File);
end End_Of_File;
function End_Of_File
return Boolean
is
begin
return End_Of_File (Cur_Session);
end End_Of_File;
-----------
-- Field --
-----------
function Field
(Rank : Count;
Session : Session_Type) return String
is
Fields : Field_Table.Instance renames Session.Data.Fields;
begin
if Rank > Number_Of_Fields (Session) then
Raise_With_Info
(Field_Error'Identity,
"Field number" & Count'Image (Rank) & " does not exist.",
Session);
elsif Rank = 0 then
-- Returns the whole line, this is what $0 does under Session_Type
return To_String (Session.Data.Current_Line);
else
return Slice (Session.Data.Current_Line,
Fields.Table (Positive (Rank)).First,
Fields.Table (Positive (Rank)).Last);
end if;
end Field;
function Field
(Rank : Count) return String
is
begin
return Field (Rank, Cur_Session);
end Field;
function Field
(Rank : Count;
Session : Session_Type) return Integer
is
begin
return Integer'Value (Field (Rank, Session));
exception
when Constraint_Error =>
Raise_With_Info
(Field_Error'Identity,
"Field number" & Count'Image (Rank)
& " cannot be converted to an integer.",
Session);
end Field;
function Field
(Rank : Count) return Integer
is
begin
return Field (Rank, Cur_Session);
end Field;
function Field
(Rank : Count;
Session : Session_Type) return Float
is
begin
return Float'Value (Field (Rank, Session));
exception
when Constraint_Error =>
Raise_With_Info
(Field_Error'Identity,
"Field number" & Count'Image (Rank)
& " cannot be converted to a float.",
Session);
end Field;
function Field
(Rank : Count) return Float
is
begin
return Field (Rank, Cur_Session);
end Field;
----------
-- File --
----------
function File
(Session : Session_Type) return String
is
Files : File_Table.Instance renames Session.Data.Files;
begin
if Session.Data.File_Index = 0 then
return "??";
else
return Files.Table (Session.Data.File_Index).all;
end if;
end File;
function File
return String
is
begin
return File (Cur_Session);
end File;
--------------------
-- For_Every_Line --
--------------------
procedure For_Every_Line
(Separators : String := Use_Current;
Filename : String := Use_Current;
Callbacks : Callback_Mode := None;
Session : Session_Type)
is
Quit : Boolean;
begin
Open (Separators, Filename, Session);
while not End_Of_Data (Session) loop
Read_Line (Session);
Split_Line (Session);
if Callbacks in Only .. Pass_Through then
declare
Discard : Boolean;
begin
Discard := Apply_Filters (Session);
end;
end if;
if Callbacks /= Only then
Quit := False;
Action (Quit);
exit when Quit;
end if;
end loop;
Close (Session);
end For_Every_Line;
procedure For_Every_Line_Current_Session
(Separators : String := Use_Current;
Filename : String := Use_Current;
Callbacks : Callback_Mode := None)
is
procedure Do_It is new For_Every_Line (Action);
begin
Do_It (Separators, Filename, Callbacks, Cur_Session);
end For_Every_Line_Current_Session;
--------------
-- Get_Line --
--------------
procedure Get_Line
(Callbacks : Callback_Mode := None;
Session : Session_Type)
is
Filter_Active : Boolean;
begin
if not Text_IO.Is_Open (Session.Data.Current_File) then
raise File_Error;
end if;
loop
Read_Line (Session);
Split_Line (Session);
case Callbacks is
when None =>
exit;
when Only =>
Filter_Active := Apply_Filters (Session);
exit when not Filter_Active;
when Pass_Through =>
Filter_Active := Apply_Filters (Session);
exit;
end case;
end loop;
end Get_Line;
procedure Get_Line
(Callbacks : Callback_Mode := None)
is
begin
Get_Line (Callbacks, Cur_Session);
end Get_Line;
----------------------
-- Number_Of_Fields --
----------------------
function Number_Of_Fields
(Session : Session_Type) return Count
is
begin
return Count (Field_Table.Last (Session.Data.Fields));
end Number_Of_Fields;
function Number_Of_Fields
return Count
is
begin
return Number_Of_Fields (Cur_Session);
end Number_Of_Fields;
--------------------------
-- Number_Of_File_Lines --
--------------------------
function Number_Of_File_Lines
(Session : Session_Type) return Count
is
begin
return Count (Session.Data.FNR);
end Number_Of_File_Lines;
function Number_Of_File_Lines
return Count
is
begin
return Number_Of_File_Lines (Cur_Session);
end Number_Of_File_Lines;
---------------------
-- Number_Of_Files --
---------------------
function Number_Of_Files
(Session : Session_Type) return Natural
is
Files : File_Table.Instance renames Session.Data.Files;
begin
return File_Table.Last (Files);
end Number_Of_Files;
function Number_Of_Files
return Natural
is
begin
return Number_Of_Files (Cur_Session);
end Number_Of_Files;
---------------------
-- Number_Of_Lines --
---------------------
function Number_Of_Lines
(Session : Session_Type) return Count
is
begin
return Count (Session.Data.NR);
end Number_Of_Lines;
function Number_Of_Lines
return Count
is
begin
return Number_Of_Lines (Cur_Session);
end Number_Of_Lines;
----------
-- Open --
----------
procedure Open
(Separators : String := Use_Current;
Filename : String := Use_Current;
Session : Session_Type)
is
begin
if Text_IO.Is_Open (Session.Data.Current_File) then
raise Session_Error;
end if;
if Filename /= Use_Current then
File_Table.Init (Session.Data.Files);
Add_File (Filename, Session);
end if;
if Separators /= Use_Current then
Set_Field_Separators (Separators, Session);
end if;
Open_Next_File (Session);
exception
when End_Error =>
raise File_Error;
end Open;
procedure Open
(Separators : String := Use_Current;
Filename : String := Use_Current)
is
begin
Open (Separators, Filename, Cur_Session);
end Open;
--------------------
-- Open_Next_File --
--------------------
procedure Open_Next_File
(Session : Session_Type)
is
Files : File_Table.Instance renames Session.Data.Files;
begin
if Text_IO.Is_Open (Session.Data.Current_File) then
Text_IO.Close (Session.Data.Current_File);
end if;
Session.Data.File_Index := Session.Data.File_Index + 1;
-- If there are no mores file in the table, raise End_Error
if Session.Data.File_Index > File_Table.Last (Files) then
raise End_Error;
end if;
Text_IO.Open
(File => Session.Data.Current_File,
Name => Files.Table (Session.Data.File_Index).all,
Mode => Text_IO.In_File);
end Open_Next_File;
-----------
-- Parse --
-----------
procedure Parse
(Separators : String := Use_Current;
Filename : String := Use_Current;
Session : Session_Type)
is
Filter_Active : Boolean;
pragma Unreferenced (Filter_Active);
begin
Open (Separators, Filename, Session);
while not End_Of_Data (Session) loop
Get_Line (None, Session);
Filter_Active := Apply_Filters (Session);
end loop;
Close (Session);
end Parse;
procedure Parse
(Separators : String := Use_Current;
Filename : String := Use_Current)
is
begin
Parse (Separators, Filename, Cur_Session);
end Parse;
---------------------
-- Raise_With_Info --
---------------------
procedure Raise_With_Info
(E : Exceptions.Exception_Id;
Message : String;
Session : Session_Type)
is
function Filename return String;
-- Returns current filename and "??" if this information is not
-- available.
function Line return String;
-- Returns current line number without the leading space
--------------
-- Filename --
--------------
function Filename return String is
File : constant String := AWK.File (Session);
begin
if File = "" then
return "??";
else
return File;
end if;
end Filename;
----------
-- Line --
----------
function Line return String is
L : constant String := Natural'Image (Session.Data.FNR);
begin
return L (2 .. L'Last);
end Line;
-- Start of processing for Raise_With_Info
begin
Exceptions.Raise_Exception
(E,
'[' & Filename & ':' & Line & "] " & Message);
raise Constraint_Error; -- to please GNAT as this is a No_Return proc
end Raise_With_Info;
---------------
-- Read_Line --
---------------
procedure Read_Line (Session : Session_Type) is
function Read_Line return String;
-- Read a line in the current file. This implementation is recursive
-- and does not have a limitation on the line length.
NR : Natural renames Session.Data.NR;
FNR : Natural renames Session.Data.FNR;
---------------
-- Read_Line --
---------------
function Read_Line return String is
Buffer : String (1 .. 1_024);
Last : Natural;
begin
Text_IO.Get_Line (Session.Data.Current_File, Buffer, Last);
if Last = Buffer'Last then
return Buffer & Read_Line;
else
return Buffer (1 .. Last);
end if;
end Read_Line;
-- Start of processing for Read_Line
begin
if End_Of_File (Session) then
Open_Next_File (Session);
FNR := 0;
end if;
Session.Data.Current_Line := To_Unbounded_String (Read_Line);
NR := NR + 1;
FNR := FNR + 1;
end Read_Line;
--------------
-- Register --
--------------
procedure Register
(Field : Count;
Pattern : String;
Action : Action_Callback;
Session : Session_Type)
is
Filters : Pattern_Action_Table.Instance renames Session.Data.Filters;
U_Pattern : constant Unbounded_String := To_Unbounded_String (Pattern);
begin
Pattern_Action_Table.Increment_Last (Filters);
Filters.Table (Pattern_Action_Table.Last (Filters)) :=
(Pattern => new Patterns.String_Pattern'(U_Pattern, Field),
Action => new Actions.Simple_Action'(Proc => Action));
end Register;
procedure Register
(Field : Count;
Pattern : String;
Action : Action_Callback)
is
begin
Register (Field, Pattern, Action, Cur_Session);
end Register;
procedure Register
(Field : Count;
Pattern : GNAT.Regpat.Pattern_Matcher;
Action : Action_Callback;
Session : Session_Type)
is
Filters : Pattern_Action_Table.Instance renames Session.Data.Filters;
A_Pattern : constant Patterns.Pattern_Matcher_Access :=
new Regpat.Pattern_Matcher'(Pattern);
begin
Pattern_Action_Table.Increment_Last (Filters);
Filters.Table (Pattern_Action_Table.Last (Filters)) :=
(Pattern => new Patterns.Regexp_Pattern'(A_Pattern, Field),
Action => new Actions.Simple_Action'(Proc => Action));
end Register;
procedure Register
(Field : Count;
Pattern : GNAT.Regpat.Pattern_Matcher;
Action : Action_Callback)
is
begin
Register (Field, Pattern, Action, Cur_Session);
end Register;
procedure Register
(Field : Count;
Pattern : GNAT.Regpat.Pattern_Matcher;
Action : Match_Action_Callback;
Session : Session_Type)
is
Filters : Pattern_Action_Table.Instance renames Session.Data.Filters;
A_Pattern : constant Patterns.Pattern_Matcher_Access :=
new Regpat.Pattern_Matcher'(Pattern);
begin
Pattern_Action_Table.Increment_Last (Filters);
Filters.Table (Pattern_Action_Table.Last (Filters)) :=
(Pattern => new Patterns.Regexp_Pattern'(A_Pattern, Field),
Action => new Actions.Match_Action'(Proc => Action));
end Register;
procedure Register
(Field : Count;
Pattern : GNAT.Regpat.Pattern_Matcher;
Action : Match_Action_Callback)
is
begin
Register (Field, Pattern, Action, Cur_Session);
end Register;
procedure Register
(Pattern : Pattern_Callback;
Action : Action_Callback;
Session : Session_Type)
is
Filters : Pattern_Action_Table.Instance renames Session.Data.Filters;
begin
Pattern_Action_Table.Increment_Last (Filters);
Filters.Table (Pattern_Action_Table.Last (Filters)) :=
(Pattern => new Patterns.Callback_Pattern'(Pattern => Pattern),
Action => new Actions.Simple_Action'(Proc => Action));
end Register;
procedure Register
(Pattern : Pattern_Callback;
Action : Action_Callback)
is
begin
Register (Pattern, Action, Cur_Session);
end Register;
procedure Register
(Action : Action_Callback;
Session : Session_Type)
is
begin
Register (Always_True'Access, Action, Session);
end Register;
procedure Register
(Action : Action_Callback)
is
begin
Register (Action, Cur_Session);
end Register;
-----------------
-- Set_Current --
-----------------
procedure Set_Current (Session : Session_Type) is
begin
Cur_Session.Data := Session.Data;
end Set_Current;
--------------------------
-- Set_Field_Separators --
--------------------------
procedure Set_Field_Separators
(Separators : String := Default_Separators;
Session : Session_Type)
is
begin
Free (Session.Data.Separators);
Session.Data.Separators :=
new Split.Separator'(Separators'Length, Separators);
-- If there is a current line read, split it according to the new
-- separators.
if Session.Data.Current_Line /= Null_Unbounded_String then
Split_Line (Session);
end if;
end Set_Field_Separators;
procedure Set_Field_Separators
(Separators : String := Default_Separators)
is
begin
Set_Field_Separators (Separators, Cur_Session);
end Set_Field_Separators;
----------------------
-- Set_Field_Widths --
----------------------
procedure Set_Field_Widths
(Field_Widths : Widths_Set;
Session : Session_Type)
is
begin
Free (Session.Data.Separators);
Session.Data.Separators :=
new Split.Column'(Field_Widths'Length, Field_Widths);
-- If there is a current line read, split it according to
-- the new separators.
if Session.Data.Current_Line /= Null_Unbounded_String then
Split_Line (Session);
end if;
end Set_Field_Widths;
procedure Set_Field_Widths
(Field_Widths : Widths_Set)
is
begin
Set_Field_Widths (Field_Widths, Cur_Session);
end Set_Field_Widths;
----------------
-- Split_Line --
----------------
procedure Split_Line (Session : Session_Type) is
Fields : Field_Table.Instance renames Session.Data.Fields;
begin
Field_Table.Init (Fields);
Split.Current_Line (Session.Data.Separators.all, Session);
end Split_Line;
-------------
-- Get_Def --
-------------
function Get_Def return Session_Data_Access is
begin
return Def_Session.Data;
end Get_Def;
-------------
-- Set_Cur --
-------------
procedure Set_Cur is
begin
Cur_Session.Data := Def_Session.Data;
end Set_Cur;
begin
-- We have declared two sessions but both should share the same data.
-- The current session must point to the default session as its initial
-- value. So first we release the session data then we set current
-- session data to point to default session data.
Free (Cur_Session.Data);
Cur_Session.Data := Def_Session.Data;
end GNAT.AWK;
|