* c-cppbuiltin.c (c_cpp_builtins): Define __pic__ and __PIC__ when
[official-gcc.git] / gcc / ada / g-awk.ads
blob346da5e0dd65477e2252d4d08b9a6da602e6e993
1 ------------------------------------------------------------------------------
2 -- --
3 -- GNAT COMPILER COMPONENTS --
4 -- --
5 -- G N A T . A W K --
6 -- --
7 -- S p e c --
8 -- --
9 -- Copyright (C) 2000-2005, AdaCore --
10 -- --
11 -- GNAT is free software; you can redistribute it and/or modify it under --
12 -- terms of the GNU General Public License as published by the Free Soft- --
13 -- ware Foundation; either version 2, or (at your option) any later ver- --
14 -- sion. GNAT is distributed in the hope that it will be useful, but WITH- --
15 -- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY --
16 -- or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License --
17 -- for more details. You should have received a copy of the GNU General --
18 -- Public License distributed with GNAT; see file COPYING. If not, write --
19 -- to the Free Software Foundation, 51 Franklin Street, Fifth Floor, --
20 -- Boston, MA 02110-1301, USA. --
21 -- --
22 -- As a special exception, if other files instantiate generics from this --
23 -- unit, or you link this unit with other files to produce an executable, --
24 -- this unit does not by itself cause the resulting executable to be --
25 -- covered by the GNU General Public License. This exception does not --
26 -- however invalidate any other reasons why the executable file might be --
27 -- covered by the GNU Public License. --
28 -- --
29 -- GNAT was originally developed by the GNAT team at New York University. --
30 -- Extensive contributions were provided by Ada Core Technologies Inc. --
31 -- --
32 ------------------------------------------------------------------------------
34 -- This is an AWK-like unit. It provides an easy interface for parsing one
35 -- or more files containing formatted data. The file can be viewed seen as
36 -- a database where each record is a line and a field is a data element in
37 -- this line. In this implementation an AWK record is a line. This means
38 -- that a record cannot span multiple lines. The operating procedure is to
39 -- read files line by line, with each line being presented to the user of
40 -- the package. The interface provides services to access specific fields
41 -- in the line. Thus it is possible to control actions takn on a line based
42 -- on values of some fields. This can be achieved directly or by registering
43 -- callbacks triggered on programmed conditions.
45 -- The state of an AWK run is recorded in an object of type session.
46 -- The following is the procedure for using a session to control an
47 -- AWK run:
49 -- 1) Specify which session is to be used. It is possible to use the
50 -- default session or to create a new one by declaring an object of
51 -- type Session_Type. For example:
53 -- Computers : Session_Type;
55 -- 2) Specify how to cut a line into fields. There are two modes: using
56 -- character fields separators or column width. This is done by using
57 -- Set_Fields_Separators or Set_Fields_Width. For example by:
59 -- AWK.Set_Field_Separators (";,", Computers);
61 -- or by using iterators' Separators parameter.
63 -- 3) Specify which files to parse. This is done with Add_File/Add_Files
64 -- services, or by using the iterators' Filename parameter. For
65 -- example:
67 -- AWK.Add_File ("myfile.db", Computers);
69 -- 4) Run the AWK session using one of the provided iterators.
71 -- Parse
72 -- This is the most automated iterator. You can gain control on
73 -- the session only by registering one or more callbacks (see
74 -- Register).
76 -- Get_Line/End_Of_Data
77 -- This is a manual iterator to be used with a loop. You have
78 -- complete control on the session. You can use callbacks but
79 -- this is not required.
81 -- For_Every_Line
82 -- This provides a mixture of manual/automated iterator action.
84 -- Examples of these three approaches appear below
86 -- There is many ways to use this package. The following discussion shows
87 -- three approaches, using the three iterator forms, to using this package.
88 -- All examples will use the following file (computer.db):
90 -- Pluton;Windows-NT;Pentium III
91 -- Mars;Linux;Pentium Pro
92 -- Venus;Solaris;Sparc
93 -- Saturn;OS/2;i486
94 -- Jupiter;MacOS;PPC
96 -- 1) Using Parse iterator
98 -- Here the first step is to register some action associated to a pattern
99 -- and then to call the Parse iterator (this is the simplest way to use
100 -- this unit). The default session is used here. For example to output the
101 -- second field (the OS) of computer "Saturn".
103 -- procedure Action is
104 -- begin
105 -- Put_Line (AWK.Field (2));
106 -- end Action;
108 -- begin
109 -- AWK.Register (1, "Saturn", Action'Access);
110 -- AWK.Parse (";", "computer.db");
113 -- 2) Using the Get_Line/End_Of_Data iterator
115 -- Here you have full control. For example to do the same as
116 -- above but using a specific session, you could write:
118 -- Computer_File : Session_Type;
120 -- begin
121 -- AWK.Set_Current (Computer_File);
122 -- AWK.Open (Separators => ";",
123 -- Filename => "computer.db");
125 -- -- Display Saturn OS
127 -- while not AWK.End_Of_File loop
128 -- AWK.Get_Line;
130 -- if AWK.Field (1) = "Saturn" then
131 -- Put_Line (AWK.Field (2));
132 -- end if;
133 -- end loop;
135 -- AWK.Close (Computer_File);
138 -- 3) Using For_Every_Line iterator
140 -- In this case you use a provided iterator and you pass the procedure
141 -- that must be called for each record. You could code the previous
142 -- example could be coded as follows (using the iterator quick interface
143 -- but without using the current session):
145 -- Computer_File : Session_Type;
147 -- procedure Action (Quit : in out Boolean) is
148 -- begin
149 -- if AWK.Field (1, Computer_File) = "Saturn" then
150 -- Put_Line (AWK.Field (2, Computer_File));
151 -- end if;
152 -- end Action;
154 -- procedure Look_For_Saturn is
155 -- new AWK.For_Every_Line (Action);
157 -- begin
158 -- Look_For_Saturn (Separators => ";",
159 -- Filename => "computer.db",
160 -- Session => Computer_File);
162 -- Integer_Text_IO.Put
163 -- (Integer (AWK.NR (Session => Computer_File)));
164 -- Put_Line (" line(s) have been processed.");
166 -- You can also use a regular expression for the pattern. Let us output
167 -- the computer name for all computer for which the OS has a character
168 -- O in its name.
170 -- Regexp : String := ".*O.*";
172 -- Matcher : Regpat.Pattern_Matcher := Regpat.Compile (Regexp);
174 -- procedure Action is
175 -- begin
176 -- Text_IO.Put_Line (AWK.Field (2));
177 -- end Action;
179 -- begin
180 -- AWK.Register (2, Matcher, Action'Unrestricted_Access);
181 -- AWK.Parse (";", "computer.db");
184 with Ada.Finalization;
185 with GNAT.Regpat;
187 package GNAT.AWK is
189 Session_Error : exception;
190 -- Raised when a Session is reused but is not closed
192 File_Error : exception;
193 -- Raised when there is a file problem (see below)
195 End_Error : exception;
196 -- Raised when an attempt is made to read beyond the end of the last
197 -- file of a session.
199 Field_Error : exception;
200 -- Raised when accessing a field value which does not exist
202 Data_Error : exception;
203 -- Raised when it is impossible to convert a field value to a specific type
205 type Count is new Natural;
207 type Widths_Set is array (Positive range <>) of Positive;
208 -- Used to store a set of columns widths
210 Default_Separators : constant String := " " & ASCII.HT;
212 Use_Current : constant String := "";
213 -- Value used when no separator or filename is specified in iterators
215 type Session_Type is limited private;
216 -- This is the main exported type. A session is used to keep the state of
217 -- a full AWK run. The state comprises a list of files, the current file,
218 -- the number of line processed, the current line, the number of fields in
219 -- the current line... A default session is provided (see Set_Current,
220 -- Current_Session and Default_Session above).
222 ----------------------------
223 -- Package initialization --
224 ----------------------------
226 -- To be thread safe it is not possible to use the default provided
227 -- session. Each task must used a specific session and specify it
228 -- explicitly for every services.
230 procedure Set_Current (Session : Session_Type);
231 -- Set the session to be used by default. This file will be used when the
232 -- Session parameter in following services is not specified.
234 function Current_Session return Session_Type;
235 -- Returns the session used by default by all services. This is the
236 -- latest session specified by Set_Current service or the session
237 -- provided by default with this implementation.
239 function Default_Session return Session_Type;
240 -- Returns the default session provided by this package. Note that this is
241 -- the session return by Current_Session if Set_Current has not been used.
243 procedure Set_Field_Separators
244 (Separators : String := Default_Separators;
245 Session : Session_Type := Current_Session);
246 -- Set the field separators. Each character in the string is a field
247 -- separator. When a line is read it will be split by field using the
248 -- separators set here. Separators can be changed at any point and in this
249 -- case the current line is split according to the new separators. In the
250 -- special case that Separators is a space and a tabulation
251 -- (Default_Separators), fields are separated by runs of spaces and/or
252 -- tabs.
254 procedure Set_FS
255 (Separators : String := Default_Separators;
256 Session : Session_Type := Current_Session)
257 renames Set_Field_Separators;
258 -- FS is the AWK abbreviation for above service
260 procedure Set_Field_Widths
261 (Field_Widths : Widths_Set;
262 Session : Session_Type := Current_Session);
263 -- This is another way to split a line by giving the length (in number of
264 -- characters) of each field in a line. Field widths can be changed at any
265 -- point and in this case the current line is split according to the new
266 -- field lengths. A line split with this method must have a length equal or
267 -- greater to the total of the field widths. All characters remaining on
268 -- the line after the latest field are added to a new automatically
269 -- created field.
271 procedure Add_File
272 (Filename : String;
273 Session : Session_Type := Current_Session);
274 -- Add Filename to the list of file to be processed. There is no limit on
275 -- the number of files that can be added. Files are processed in the order
276 -- they have been added (i.e. the filename list is FIFO). If Filename does
277 -- not exist or if it is not readable, File_Error is raised.
279 procedure Add_Files
280 (Directory : String;
281 Filenames : String;
282 Number_Of_Files_Added : out Natural;
283 Session : Session_Type := Current_Session);
284 -- Add all files matching the regular expression Filenames in the specified
285 -- directory to the list of file to be processed. There is no limit on
286 -- the number of files that can be added. Each file is processed in
287 -- the same order they have been added (i.e. the filename list is FIFO).
288 -- The number of files (possibly 0) added is returned in
289 -- Number_Of_Files_Added.
291 -------------------------------------
292 -- Information about current state --
293 -------------------------------------
295 function Number_Of_Fields
296 (Session : Session_Type := Current_Session) return Count;
297 pragma Inline (Number_Of_Fields);
298 -- Returns the number of fields in the current record. It returns 0 when
299 -- no file is being processed.
301 function NF
302 (Session : Session_Type := Current_Session) return Count
303 renames Number_Of_Fields;
304 -- AWK abbreviation for above service
306 function Number_Of_File_Lines
307 (Session : Session_Type := Current_Session) return Count;
308 pragma Inline (Number_Of_File_Lines);
309 -- Returns the current line number in the processed file. It returns 0 when
310 -- no file is being processed.
312 function FNR (Session : Session_Type := Current_Session) return Count
313 renames Number_Of_File_Lines;
314 -- AWK abbreviation for above service
316 function Number_Of_Lines
317 (Session : Session_Type := Current_Session) return Count;
318 pragma Inline (Number_Of_Lines);
319 -- Returns the number of line processed until now. This is equal to number
320 -- of line in each already processed file plus FNR. It returns 0 when
321 -- no file is being processed.
323 function NR (Session : Session_Type := Current_Session) return Count
324 renames Number_Of_Lines;
325 -- AWK abbreviation for above service
327 function Number_Of_Files
328 (Session : Session_Type := Current_Session) return Natural;
329 pragma Inline (Number_Of_Files);
330 -- Returns the number of files associated with Session. This is the total
331 -- number of files added with Add_File and Add_Files services.
333 function File (Session : Session_Type := Current_Session) return String;
334 -- Returns the name of the file being processed. It returns the empty
335 -- string when no file is being processed.
337 ---------------------
338 -- Field accessors --
339 ---------------------
341 function Field
342 (Rank : Count;
343 Session : Session_Type := Current_Session) return String;
344 -- Returns field number Rank value of the current record. If Rank = 0 it
345 -- returns the current record (i.e. the line as read in the file). It
346 -- raises Field_Error if Rank > NF or if Session is not open.
348 function Field
349 (Rank : Count;
350 Session : Session_Type := Current_Session) return Integer;
351 -- Returns field number Rank value of the current record as an integer. It
352 -- raises Field_Error if Rank > NF or if Session is not open. It
353 -- raises Data_Error if the field value cannot be converted to an integer.
355 function Field
356 (Rank : Count;
357 Session : Session_Type := Current_Session) return Float;
358 -- Returns field number Rank value of the current record as a float. It
359 -- raises Field_Error if Rank > NF or if Session is not open. It
360 -- raises Data_Error if the field value cannot be converted to a float.
362 generic
363 type Discrete is (<>);
364 function Discrete_Field
365 (Rank : Count;
366 Session : Session_Type := Current_Session) return Discrete;
367 -- Returns field number Rank value of the current record as a type
368 -- Discrete. It raises Field_Error if Rank > NF. It raises Data_Error if
369 -- the field value cannot be converted to type Discrete.
371 --------------------
372 -- Pattern/Action --
373 --------------------
375 -- AWK defines rules like "PATTERN { ACTION }". Which means that ACTION
376 -- will be executed if PATTERN match. A pattern in this implementation can
377 -- be a simple string (match function is equality), a regular expression,
378 -- a function returning a boolean. An action is associated to a pattern
379 -- using the Register services.
381 -- Each procedure Register will add a rule to the set of rules for the
382 -- session. Rules are examined in the order they have been added.
384 type Pattern_Callback is access function return Boolean;
385 -- This is a pattern function pointer. When it returns True the associated
386 -- action will be called.
388 type Action_Callback is access procedure;
389 -- A simple action pointer
391 type Match_Action_Callback is
392 access procedure (Matches : GNAT.Regpat.Match_Array);
393 -- An advanced action pointer used with a regular expression pattern. It
394 -- returns an array of all the matches. See GNAT.Regpat for further
395 -- information.
397 procedure Register
398 (Field : Count;
399 Pattern : String;
400 Action : Action_Callback;
401 Session : Session_Type := Current_Session);
402 -- Register an Action associated with a Pattern. The pattern here is a
403 -- simple string that must match exactly the field number specified.
405 procedure Register
406 (Field : Count;
407 Pattern : GNAT.Regpat.Pattern_Matcher;
408 Action : Action_Callback;
409 Session : Session_Type := Current_Session);
410 -- Register an Action associated with a Pattern. The pattern here is a
411 -- simple regular expression which must match the field number specified.
413 procedure Register
414 (Field : Count;
415 Pattern : GNAT.Regpat.Pattern_Matcher;
416 Action : Match_Action_Callback;
417 Session : Session_Type := Current_Session);
418 -- Same as above but it pass the set of matches to the action
419 -- procedure. This is useful to analyse further why and where a regular
420 -- expression did match.
422 procedure Register
423 (Pattern : Pattern_Callback;
424 Action : Action_Callback;
425 Session : Session_Type := Current_Session);
426 -- Register an Action associated with a Pattern. The pattern here is a
427 -- function that must return a boolean. Action callback will be called if
428 -- the pattern callback returns True and nothing will happen if it is
429 -- False. This version is more general, the two other register services
430 -- trigger an action based on the value of a single field only.
432 procedure Register
433 (Action : Action_Callback;
434 Session : Session_Type := Current_Session);
435 -- Register an Action that will be called for every line. This is
436 -- equivalent to a Pattern_Callback function always returning True.
438 --------------------
439 -- Parse iterator --
440 --------------------
442 procedure Parse
443 (Separators : String := Use_Current;
444 Filename : String := Use_Current;
445 Session : Session_Type := Current_Session);
446 -- Launch the iterator, it will read every line in all specified
447 -- session's files. Registered callbacks are then called if the associated
448 -- pattern match. It is possible to specify a filename and a set of
449 -- separators directly. This offer a quick way to parse a single
450 -- file. These parameters will override those specified by Set_FS and
451 -- Add_File. The Session will be opened and closed automatically.
452 -- File_Error is raised if there is no file associated with Session, or if
453 -- a file associated with Session is not longer readable. It raises
454 -- Session_Error is Session is already open.
456 -----------------------------------
457 -- Get_Line/End_Of_Data Iterator --
458 -----------------------------------
460 type Callback_Mode is (None, Only, Pass_Through);
461 -- These mode are used for Get_Line/End_Of_Data and For_Every_Line
462 -- iterators. The associated semantic is:
464 -- None
465 -- callbacks are not active. This is the default mode for
466 -- Get_Line/End_Of_Data and For_Every_Line iterators.
468 -- Only
469 -- callbacks are active, if at least one pattern match, the associated
470 -- action is called and this line will not be passed to the user. In
471 -- the Get_Line case the next line will be read (if there is some
472 -- line remaining), in the For_Every_Line case Action will
473 -- not be called for this line.
475 -- Pass_Through
476 -- callbacks are active, for patterns which match the associated
477 -- action is called. Then the line is passed to the user. It means
478 -- that Action procedure is called in the For_Every_Line case and
479 -- that Get_Line returns with the current line active.
482 procedure Open
483 (Separators : String := Use_Current;
484 Filename : String := Use_Current;
485 Session : Session_Type := Current_Session);
486 -- Open the first file and initialize the unit. This must be called once
487 -- before using Get_Line. It is possible to specify a filename and a set of
488 -- separators directly. This offer a quick way to parse a single file.
489 -- These parameters will override those specified by Set_FS and Add_File.
490 -- File_Error is raised if there is no file associated with Session, or if
491 -- the first file associated with Session is no longer readable. It raises
492 -- Session_Error is Session is already open.
494 procedure Get_Line
495 (Callbacks : Callback_Mode := None;
496 Session : Session_Type := Current_Session);
497 -- Read a line from the current input file. If the file index is at the
498 -- end of the current input file (i.e. End_Of_File is True) then the
499 -- following file is opened. If there is no more file to be processed,
500 -- exception End_Error will be raised. File_Error will be raised if Open
501 -- has not been called. Next call to Get_Line will return the following
502 -- line in the file. By default the registered callbacks are not called by
503 -- Get_Line, this can activated by setting Callbacks (see Callback_Mode
504 -- description above). File_Error may be raised if a file associated with
505 -- Session is not readable.
507 -- When Callbacks is not None, it is possible to exhaust all the lines
508 -- of all the files associated with Session. In this case, File_Error
509 -- is not raised.
511 -- This procedure can be used from a subprogram called by procedure Parse
512 -- or by an instantiation of For_Every_Line (see below).
514 function End_Of_Data
515 (Session : Session_Type := Current_Session) return Boolean;
516 pragma Inline (End_Of_Data);
517 -- Returns True if there is no more data to be processed in Session. It
518 -- means that the latest session's file is being processed and that
519 -- there is no more data to be read in this file (End_Of_File is True).
521 function End_Of_File
522 (Session : Session_Type := Current_Session) return Boolean;
523 pragma Inline (End_Of_File);
524 -- Returns True when there is no more data to be processed on the current
525 -- session's file.
527 procedure Close (Session : Session_Type);
528 -- Release all associated data with Session. All memory allocated will
529 -- be freed, the current file will be closed if needed, the callbacks
530 -- will be unregistered. Close is convenient in reestablishing a session
531 -- for new use. Get_Line is no longer usable (will raise File_Error)
532 -- except after a successful call to Open, Parse or an instantiation
533 -- of For_Every_Line.
535 -----------------------------
536 -- For_Every_Line iterator --
537 -----------------------------
539 generic
540 with procedure Action (Quit : in out Boolean);
541 procedure For_Every_Line
542 (Separators : String := Use_Current;
543 Filename : String := Use_Current;
544 Callbacks : Callback_Mode := None;
545 Session : Session_Type := Current_Session);
546 -- This is another iterator. Action will be called for each new
547 -- record. The iterator's termination can be controlled by setting Quit
548 -- to True. It is by default set to False. It is possible to specify a
549 -- filename and a set of separators directly. This offer a quick way to
550 -- parse a single file. These parameters will override those specified by
551 -- Set_FS and Add_File. By default the registered callbacks are not called
552 -- by For_Every_Line, this can activated by setting Callbacks (see
553 -- Callback_Mode description above). The Session will be opened and
554 -- closed automatically. File_Error is raised if there is no file
555 -- associated with Session. It raises Session_Error is Session is already
556 -- open.
558 private
559 type Session_Data;
560 type Session_Data_Access is access Session_Data;
562 type Session_Type is new Ada.Finalization.Limited_Controlled with record
563 Data : Session_Data_Access;
564 end record;
566 procedure Initialize (Session : in out Session_Type);
567 procedure Finalize (Session : in out Session_Type);
569 end GNAT.AWK;