Merged trunk at revision 161680 into branch.
[official-gcc.git] / gcc / ada / g-comlin.ads
blobcea2e7b12e8fe8fba87705ed319e8b75ba87f226
1 ------------------------------------------------------------------------------
2 -- --
3 -- GNAT COMPILER COMPONENTS --
4 -- --
5 -- G N A T . C O M M A N D _ L I N E --
6 -- --
7 -- S p e c --
8 -- --
9 -- Copyright (C) 1999-2010, 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 -- High level package for command line parsing and manipulation
36 -- Parsing the command line
37 -- ========================
39 -- This package provides an interface for parsing command line arguments,
40 -- when they are either read from Ada.Command_Line or read from a string list.
41 -- As shown in the example below, one should first retrieve the switches
42 -- (special command line arguments starting with '-' by default) and their
43 -- parameters, and then the rest of the command line arguments.
45 -- This package is flexible enough to accommodate various needs: optional
46 -- switch parameters, various characters to separate a switch and its
47 -- parameter, whether to stop the parsing at the first non-switch argument
48 -- encountered, etc.
50 -- begin
51 -- loop
52 -- case Getopt ("a b: ad") is -- Accepts '-a', '-ad', or '-b argument'
53 -- when ASCII.NUL => exit;
55 -- when 'a' =>
56 -- if Full_Switch = "a" then
57 -- Put_Line ("Got a");
58 -- else
59 -- Put_Line ("Got ad");
60 -- end if;
62 -- when 'b' =>
63 -- Put_Line ("Got b + " & Parameter);
65 -- when others =>
66 -- raise Program_Error; -- cannot occur!
67 -- end case;
68 -- end loop;
70 -- loop
71 -- declare
72 -- S : constant String := Get_Argument (Do_Expansion => True);
73 -- begin
74 -- exit when S'Length = 0;
75 -- Put_Line ("Got " & S);
76 -- end;
77 -- end loop;
79 -- exception
80 -- when Invalid_Switch => Put_Line ("Invalid Switch " & Full_Switch);
81 -- when Invalid_Parameter => Put_Line ("No parameter for " & Full_Switch);
82 -- end;
84 -- A more complicated example would involve the use of sections for the
85 -- switches, as for instance in gnatmake. The same command line is used to
86 -- provide switches for several tools. Each tool recognizes its switches by
87 -- separating them with special switches that act as section separators.
88 -- Each section acts as a command line of its own.
90 -- begin
91 -- Initialize_Option_Scan ('-', False, "largs bargs cargs");
92 -- loop
93 -- -- Same loop as above to get switches and arguments
94 -- end loop;
96 -- Goto_Section ("bargs");
97 -- loop
98 -- -- Same loop as above to get switches and arguments
99 -- -- The supported switches in Getopt might be different
100 -- end loop;
102 -- Goto_Section ("cargs");
103 -- loop
104 -- -- Same loop as above to get switches and arguments
105 -- -- The supported switches in Getopt might be different
106 -- end loop;
107 -- end;
109 -- The examples above show how to parse the command line when the arguments
110 -- are read directly from Ada.Command_Line. However, these arguments can also
111 -- be read from a list of strings. This can be useful in several contexts,
112 -- either because your system does not support Ada.Command_Line, or because
113 -- you are manipulating other tools and creating their command lines by hand,
114 -- or for any other reason.
116 -- To create the list of strings, it is recommended to use
117 -- GNAT.OS_Lib.Argument_String_To_List.
119 -- The example below shows how to get the parameters from such a list. Note
120 -- also the use of '*' to get all the switches, and not report errors when an
121 -- unexpected switch was used by the user
123 -- declare
124 -- Parser : Opt_Parser;
125 -- Args : constant Argument_List_Access :=
126 -- GNAT.OS_Lib.Argument_String_To_List ("-g -O1 -Ipath");
127 -- begin
128 -- Initialize_Option_Scan (Parser, Args);
129 -- while Getopt ("* g O! I=", Parser) /= ASCII.NUL loop
130 -- Put_Line ("Switch " & Full_Switch (Parser)
131 -- & " param=" & Parameter (Parser));
132 -- end loop;
133 -- Free (Parser);
134 -- end;
136 -- Creating and manipulating the command line
137 -- ===========================================
139 -- This package provides mechanisms to create and modify command lines by
140 -- adding or removing arguments from them. The resulting command line is kept
141 -- as short as possible by coalescing arguments whenever possible.
143 -- Complex command lines can thus be constructed, for example from a GUI
144 -- (although this package does not by itself depend upon any specific GUI
145 -- toolkit). For instance, if you are configuring the command line to use when
146 -- spawning a tool with the following characteristics:
148 -- * Specifying -gnatwa is the same as specifying -gnatwu -gnatwv, but
149 -- shorter and more readable
151 -- * All switches starting with -gnatw can be grouped, for instance one
152 -- can write -gnatwcd instead of -gnatwc -gnatwd.
153 -- Of course, this can be combined with the above and -gnatwacd is the
154 -- same as -gnatwc -gnatwd -gnatwu -gnatwv
156 -- * The switch -T is the same as -gnatwAB
158 -- * A switch -foo takes one mandatory parameter
160 -- These properties can be configured through this package with the following
161 -- calls:
163 -- Config : Command_Line_Configuration;
164 -- Define_Prefix (Config, "-gnatw");
165 -- Define_Alias (Config, "-gnatwa", "-gnatwuv");
166 -- Define_Alias (Config, "-T", "-gnatwAB");
168 -- Using this configuration, one can then construct a command line for the
169 -- tool with:
171 -- Cmd : Command_Line;
172 -- Set_Configuration (Cmd, Config);
173 -- Add_Switch (Cmd, "-bar");
174 -- Add_Switch (Cmd, "-gnatwu");
175 -- Add_Switch (Cmd, "-gnatwv"); -- will be grouped with the above
176 -- Add_Switch (Cmd, "-T");
178 -- The resulting command line can be iterated over to get all its switches,
179 -- There are two modes for this iteration: either you want to get the
180 -- shortest possible command line, which would be:
182 -- -bar -gnatwaAB
184 -- or on the other hand you want each individual switch (so that your own
185 -- tool does not have to do further complex processing), which would be:
187 -- -bar -gnatwu -gnatwv -gnatwA -gnatwB
189 -- Of course, we can assume that the tool you want to spawn would understand
190 -- both of these, since they are both compatible with the description we gave
191 -- above. However, the first result is useful if you want to show the user
192 -- what you are spawning (since that keeps the output shorter), and the second
193 -- output is more useful for a tool that would check whether -gnatwu was
194 -- passed (which isn't obvious in the first output). Likewise, the second
195 -- output is more useful if you have a graphical interface since each switch
196 -- can be associated with a widget, and you immediately know whether -gnatwu
197 -- was selected.
199 -- Some command line arguments can have parameters, which on a command line
200 -- appear as a separate argument that must immediately follow the switch.
201 -- Since the subprograms in this package will reorganize the switches to group
202 -- them, you need to indicate what is a command line
203 -- parameter, and what is a switch argument.
205 -- This is done by passing an extra argument to Add_Switch, as in:
207 -- Add_Switch (Cmd, "-foo", "arg1");
209 -- This ensures that "arg1" will always be treated as the argument to -foo,
210 -- and will not be grouped with other parts of the command line.
212 -- Parsing the command line with grouped arguments
213 -- ===============================================
215 -- The command line construction facility can also be used in conjunction with
216 -- Getopt to interpret a command line. For example when implementing the tool
217 -- described above, you would do a first loop with Getopt to pass the switches
218 -- and their arguments, and create a temporary representation of the command
219 -- line as a Command_Line object. Finally, you can query each individual
220 -- switch from that object. For instance:
222 -- declare
223 -- Cmd : Command_Line;
224 -- Iter : Command_Line_Iterator;
226 -- begin
227 -- while Getopt ("foo: gnatw! T bar") /= ASCII.NUL loop
228 -- Add_Switch (Cmd, Full_Switch, Parameter);
229 -- end loop;
231 -- Start (Cmd, Iter, Expanded => True);
232 -- while Has_More (Iter) loop
233 -- if Current_Switch (Iter) = "-gnatwu" then ..
234 -- elsif Current_Switch (Iter) = "-gnatwv" then ...
235 -- end if;
236 -- Next (Iter);
237 -- end loop;
239 -- The above means that your tool does not have to handle on its own whether
240 -- the user passed -gnatwa (in which case -gnatwu was indeed selected), or
241 -- just -gnatwu, or a combination of -gnatw switches as in -gnatwuv.
243 with Ada.Command_Line;
244 with GNAT.Directory_Operations;
245 with GNAT.OS_Lib;
246 with GNAT.Regexp;
248 package GNAT.Command_Line is
250 -------------
251 -- Parsing --
252 -------------
254 type Opt_Parser is private;
255 Command_Line_Parser : constant Opt_Parser;
256 -- This object is responsible for parsing a list of arguments, which by
257 -- default are the standard command line arguments from Ada.Command_Line.
258 -- This is really a pointer to actual data, which must therefore be
259 -- initialized through a call to Initialize_Option_Scan, and must be freed
260 -- with a call to Free.
262 -- As a special case, Command_Line_Parser does not need to be either
263 -- initialized or free-ed.
265 procedure Initialize_Option_Scan
266 (Switch_Char : Character := '-';
267 Stop_At_First_Non_Switch : Boolean := False;
268 Section_Delimiters : String := "");
269 procedure Initialize_Option_Scan
270 (Parser : out Opt_Parser;
271 Command_Line : GNAT.OS_Lib.Argument_List_Access;
272 Switch_Char : Character := '-';
273 Stop_At_First_Non_Switch : Boolean := False;
274 Section_Delimiters : String := "");
275 -- The first procedure resets the internal state of the package to prepare
276 -- to rescan the parameters. It does not need to be called before the first
277 -- use of Getopt (but it could be), but it must be called if you want to
278 -- start rescanning the command line parameters from the start. The
279 -- optional parameter Switch_Char can be used to reset the switch
280 -- character, e.g. to '/' for use in DOS-like systems.
282 -- The second subprogram initializes a parser that takes its arguments from
283 -- an array of strings rather than directly from the command line. In this
284 -- case, the parser is responsible for freeing the strings stored in
285 -- Command_Line. If you pass null to Command_Line, this will in fact create
286 -- a second parser for Ada.Command_Line, which doesn't share any data with
287 -- the default parser. This parser must be free-ed.
289 -- The optional parameter Stop_At_First_Non_Switch indicates if Getopt is
290 -- to look for switches on the whole command line, or if it has to stop as
291 -- soon as a non-switch argument is found.
293 -- Example:
295 -- Arguments: my_application file1 -c
297 -- If Stop_At_First_Non_Switch is False, then -c will be considered
298 -- as a switch (returned by getopt), otherwise it will be considered
299 -- as a normal argument (returned by Get_Argument).
301 -- If Section_Delimiters is set, then every following subprogram
302 -- (Getopt and Get_Argument) will only operate within a section, which
303 -- is delimited by any of these delimiters or the end of the command line.
305 -- Example:
306 -- Initialize_Option_Scan (Section_Delimiters => "largs bargs cargs");
308 -- Arguments on command line : my_application -c -bargs -d -e -largs -f
309 -- This line contains three sections, the first one is the default one
310 -- and includes only the '-c' switch, the second one is between -bargs
311 -- and -largs and includes '-d -e' and the last one includes '-f'.
313 procedure Free (Parser : in out Opt_Parser);
314 -- Free the memory used by the parser. Calling this is not mandatory for
315 -- the Command_Line_Parser
317 procedure Goto_Section
318 (Name : String := "";
319 Parser : Opt_Parser := Command_Line_Parser);
320 -- Change the current section. The next Getopt or Get_Argument will start
321 -- looking at the beginning of the section. An empty name ("") refers to
322 -- the first section between the program name and the first section
323 -- delimiter. If the section does not exist in Section_Delimiters, then
324 -- Invalid_Section is raised. If the section does not appear on the command
325 -- line, then it is treated as an empty section.
327 function Full_Switch
328 (Parser : Opt_Parser := Command_Line_Parser) return String;
329 -- Returns the full name of the last switch found (Getopt only returns the
330 -- first character). Does not include the Switch_Char ('-' by default),
331 -- unless the "*" option of Getopt is used (see below).
333 function Getopt
334 (Switches : String;
335 Concatenate : Boolean := True;
336 Parser : Opt_Parser := Command_Line_Parser) return Character;
337 -- This function moves to the next switch on the command line (defined as
338 -- switch character followed by a character within Switches, casing being
339 -- significant). The result returned is the first character of the switch
340 -- that is located. If there are no more switches in the current section,
341 -- returns ASCII.NUL. If Concatenate is True (the default), the switches do
342 -- not need to be separated by spaces (they can be concatenated if they do
343 -- not require an argument, e.g. -ab is the same as two separate arguments
344 -- -a -b).
346 -- Switches is a string of all the possible switches, separated by
347 -- spaces. A switch can be followed by one of the following characters:
349 -- ':' The switch requires a parameter. There can optionally be a space
350 -- on the command line between the switch and its parameter.
352 -- '=' The switch requires a parameter. There can either be a '=' or a
353 -- space on the command line between the switch and its parameter.
355 -- '!' The switch requires a parameter, but there can be no space on the
356 -- command line between the switch and its parameter.
358 -- '?' The switch may have an optional parameter. There can be no space
359 -- between the switch and its argument.
361 -- e.g. if Switches has the following value : "a? b",
362 -- The command line can be:
364 -- -afoo : -a switch with 'foo' parameter
365 -- -a foo : -a switch and another element on the
366 -- command line 'foo', returned by Get_Argument
368 -- Example: if Switches is "-a: -aO:", you can have the following
369 -- command lines:
371 -- -aarg : 'a' switch with 'arg' parameter
372 -- -a arg : 'a' switch with 'arg' parameter
373 -- -aOarg : 'aO' switch with 'arg' parameter
374 -- -aO arg : 'aO' switch with 'arg' parameter
376 -- Example:
378 -- Getopt ("a b: ac ad?")
380 -- accept either 'a' or 'ac' with no argument,
381 -- accept 'b' with a required argument
382 -- accept 'ad' with an optional argument
384 -- If the first item in switches is '*', then Getopt will catch
385 -- every element on the command line that was not caught by any other
386 -- switch. The character returned by GetOpt is '*', but Full_Switch
387 -- contains the full command line argument, including leading '-' if there
388 -- is one. If this character was not returned, there would be no way of
389 -- knowing whether it is there or not.
391 -- Example
392 -- Getopt ("* a b")
393 -- If the command line is '-a -c toto.o -b', Getopt will return
394 -- successively 'a', '*', '*' and 'b', with Full_Switch returning
395 -- "a", "-c", "toto.o", and "b".
397 -- When Getopt encounters an invalid switch, it raises the exception
398 -- Invalid_Switch and sets Full_Switch to return the invalid switch.
399 -- When Getopt cannot find the parameter associated with a switch, it
400 -- raises Invalid_Parameter, and sets Full_Switch to return the invalid
401 -- switch.
403 -- Note: in case of ambiguity, e.g. switches a ab abc, then the longest
404 -- matching switch is returned.
406 -- Arbitrary characters are allowed for switches, although it is
407 -- strongly recommended to use only letters and digits for portability
408 -- reasons.
410 -- When Concatenate is False, individual switches need to be separated by
411 -- spaces.
413 -- Example
414 -- Getopt ("a b", Concatenate => False)
415 -- If the command line is '-ab', exception Invalid_Switch will be
416 -- raised and Full_Switch will return "ab".
418 function Get_Argument
419 (Do_Expansion : Boolean := False;
420 Parser : Opt_Parser := Command_Line_Parser) return String;
421 -- Returns the next element on the command line that is not a switch. This
422 -- function should not be called before Getopt has returned ASCII.NUL.
424 -- If Do_Expansion is True, then the parameter on the command line will
425 -- be considered as a filename with wild cards, and will be expanded. The
426 -- matching file names will be returned one at a time. This is useful in
427 -- non-Unix systems for obtaining normal expansion of wild card references.
428 -- When there are no more arguments on the command line, this function
429 -- returns an empty string.
431 function Parameter
432 (Parser : Opt_Parser := Command_Line_Parser) return String;
433 -- Returns parameter associated with the last switch returned by Getopt.
434 -- If no parameter was associated with the last switch, or no previous call
435 -- has been made to Get_Argument, raises Invalid_Parameter. If the last
436 -- switch was associated with an optional argument and this argument was
437 -- not found on the command line, Parameter returns an empty string.
439 function Separator
440 (Parser : Opt_Parser := Command_Line_Parser) return Character;
441 -- The separator that was between the switch and its parameter. This is
442 -- useful if you want to know exactly what was on the command line. This
443 -- is in general a single character, set to ASCII.NUL if the switch and
444 -- the parameter were concatenated. A space is returned if the switch and
445 -- its argument were in two separate arguments.
447 type Expansion_Iterator is limited private;
448 -- Type used during expansion of file names
450 procedure Start_Expansion
451 (Iterator : out Expansion_Iterator;
452 Pattern : String;
453 Directory : String := "";
454 Basic_Regexp : Boolean := True);
455 -- Initialize a wild card expansion. The next calls to Expansion will
456 -- return the next file name in Directory which match Pattern (Pattern
457 -- is a regular expression, using only the Unix shell and DOS syntax if
458 -- Basic_Regexp is True). When Directory is an empty string, the current
459 -- directory is searched.
461 -- Pattern may contain directory separators (as in "src/*/*.ada").
462 -- Subdirectories of Directory will also be searched, up to one
463 -- hundred levels deep.
465 -- When Start_Expansion has been called, function Expansion should
466 -- be called repeatedly until it returns an empty string, before
467 -- Start_Expansion can be called again with the same Expansion_Iterator
468 -- variable.
470 function Expansion (Iterator : Expansion_Iterator) return String;
471 -- Returns the next file in the directory matching the parameters given
472 -- to Start_Expansion and updates Iterator to point to the next entry.
473 -- Returns an empty string when there are no more files.
475 -- If Expansion is called again after an empty string has been returned,
476 -- then the exception GNAT.Directory_Operations.Directory_Error is raised.
478 Invalid_Section : exception;
479 -- Raised when an invalid section is selected by Goto_Section
481 Invalid_Switch : exception;
482 -- Raised when an invalid switch is detected in the command line
484 Invalid_Parameter : exception;
485 -- Raised when a parameter is missing, or an attempt is made to obtain a
486 -- parameter for a switch that does not allow a parameter
488 -----------------
489 -- Configuring --
490 -----------------
492 type Command_Line_Configuration is private;
494 procedure Define_Alias
495 (Config : in out Command_Line_Configuration;
496 Switch : String;
497 Expanded : String);
498 -- Indicates that whenever Switch appears on the command line, it should
499 -- be expanded as Expanded. For instance, for the GNAT compiler switches,
500 -- we would define "-gnatwa" as an alias for "-gnatwcfijkmopruvz", ie some
501 -- default warnings to be activated.
503 -- Likewise, in some context you could define "--verbose" as an alias for
504 -- ("-v", "--full"), ie two switches.
506 procedure Define_Prefix
507 (Config : in out Command_Line_Configuration;
508 Prefix : String);
509 -- Indicates that all switches starting with the given prefix should be
510 -- grouped. For instance, for the GNAT compiler we would define "-gnatw" as
511 -- a prefix, so that "-gnatwu -gnatwv" can be grouped into "-gnatwuv" It is
512 -- assumed that the remainder of the switch ("uv") is a set of characters
513 -- whose order is irrelevant. In fact, this package will sort them
514 -- alphabetically.
516 procedure Define_Switch
517 (Config : in out Command_Line_Configuration;
518 Switch : String);
519 -- Indicates a new switch. The format of this switch follows the getopt
520 -- format (trailing ':', '?', etc for defining a switch with parameters).
521 -- The switches defined in the Command_Line_Configuration object are used
522 -- when ungrouping switches with more that one character after the prefix.
524 procedure Define_Section
525 (Config : in out Command_Line_Configuration;
526 Section : String);
527 -- Indicates a new switch section. All switches belonging to the same
528 -- section are ordered together, preceded by the section. They are placed
529 -- at the end of the command line (as in "gnatmake somefile.adb -cargs -g")
531 function Get_Switches
532 (Config : Command_Line_Configuration;
533 Switch_Char : Character) return String;
534 -- Get the switches list as expected by Getopt. This list is built using
535 -- all switches defined previously via Define_Switch above.
537 procedure Free (Config : in out Command_Line_Configuration);
538 -- Free the memory used by Config
540 -------------
541 -- Editing --
542 -------------
544 type Command_Line is private;
546 procedure Set_Configuration
547 (Cmd : in out Command_Line;
548 Config : Command_Line_Configuration);
549 -- Set the configuration for this command line
551 function Get_Configuration
552 (Cmd : Command_Line) return Command_Line_Configuration;
553 -- Return the configuration used for that command line
555 procedure Set_Command_Line
556 (Cmd : in out Command_Line;
557 Switches : String;
558 Getopt_Description : String := "";
559 Switch_Char : Character := '-');
560 -- Set the new content of the command line, by replacing the current
561 -- version with Switches.
563 -- The parsing of Switches is done through calls to Getopt, by passing
564 -- Getopt_Description as an argument. (A "*" is automatically prepended so
565 -- that all switches and command line arguments are accepted).
567 -- To properly handle switches that take parameters, you should document
568 -- them in Getopt_Description. Otherwise, the switch and its parameter will
569 -- be recorded as two separate command line arguments as returned by a
570 -- Command_Line_Iterator (which might be fine depending on your
571 -- application).
573 -- If the command line has sections (such as -bargs -cargs), then they
574 -- should be listed in the Sections parameter (as "-bargs -cargs").
576 -- This function can be used to reset Cmd by passing an empty string.
578 procedure Add_Switch
579 (Cmd : in out Command_Line;
580 Switch : String;
581 Parameter : String := "";
582 Separator : Character := ' ';
583 Section : String := "";
584 Add_Before : Boolean := False);
585 -- Add a new switch to the command line, and combine/group it with existing
586 -- switches if possible. Nothing is done if the switch already exists with
587 -- the same parameter.
589 -- If the Switch takes a parameter, the latter should be specified
590 -- separately, so that the association between the two is always correctly
591 -- recognized even if the order of switches on the command line changes.
592 -- For instance, you should pass "--check=full" as ("--check", "full") so
593 -- that Remove_Switch below can simply take "--check" in parameter. That
594 -- will automatically remove "full" as well. The value of the parameter is
595 -- never modified by this package.
597 -- On the other hand, you could decide to simply pass "--check=full" as
598 -- the Switch above, and then pass no parameter. This means that you need
599 -- to pass "--check=full" to Remove_Switch as well.
601 -- A Switch with a parameter will never be grouped with another switch to
602 -- avoid ambiguities as to what the parameter applies to.
604 -- Separator is the character that goes between the switches and its
605 -- parameter on the command line. If it is set to ASCII.NUL, then no
606 -- separator is applied, and they are concatenated.
608 -- If the switch is part of a section, then it should be specified so that
609 -- the switch is correctly placed in the command line, and the section
610 -- added if not already present. For example, to add the -g switch into the
611 -- -cargs section, you need to pass (Cmd, "-g", Section => "-cargs").
613 -- Add_Before allows insertion of the switch at the beginning of the
614 -- command line.
616 procedure Add_Switch
617 (Cmd : in out Command_Line;
618 Switch : String;
619 Parameter : String := "";
620 Separator : Character := ' ';
621 Section : String := "";
622 Add_Before : Boolean := False;
623 Success : out Boolean);
624 -- Same as above, returning the status of the operation
626 procedure Remove_Switch
627 (Cmd : in out Command_Line;
628 Switch : String;
629 Remove_All : Boolean := False;
630 Has_Parameter : Boolean := False;
631 Section : String := "");
632 -- Remove Switch from the command line, and ungroup existing switches if
633 -- necessary.
635 -- The actual parameter to the switches are ignored. If for instance
636 -- you are removing "-foo", then "-foo param1" and "-foo param2" can
637 -- be removed.
639 -- If Remove_All is True, then all matching switches are removed, otherwise
640 -- only the first matching one is removed.
642 -- If Has_Parameter is set to True, then only switches having a parameter
643 -- are removed.
645 -- If the switch belongs to a section, then this section should be
646 -- specified: Remove_Switch (Cmd_Line, "-g", Section => "-cargs") called
647 -- on the command line "-g -cargs -g" will result in "-g", while if
648 -- called with (Cmd_Line, "-g") this will result in "-cargs -g".
649 -- If Remove_All is set, then both "-g" will be removed.
651 procedure Remove_Switch
652 (Cmd : in out Command_Line;
653 Switch : String;
654 Remove_All : Boolean := False;
655 Has_Parameter : Boolean := False;
656 Section : String := "";
657 Success : out Boolean);
658 -- Same as above, reporting the success of the operation (Success is False
659 -- if no switch was removed).
661 procedure Remove_Switch
662 (Cmd : in out Command_Line;
663 Switch : String;
664 Parameter : String;
665 Section : String := "");
666 -- Remove a switch with a specific parameter. If Parameter is the empty
667 -- string, then only a switch with no parameter will be removed.
669 procedure Free (Cmd : in out Command_Line);
670 -- Free the memory used by Cmd
672 ---------------
673 -- Iteration --
674 ---------------
676 type Command_Line_Iterator is private;
678 procedure Start
679 (Cmd : in out Command_Line;
680 Iter : in out Command_Line_Iterator;
681 Expanded : Boolean);
682 -- Start iterating over the command line arguments. If Expanded is true,
683 -- then the arguments are not grouped and no alias is used. For instance,
684 -- "-gnatwv" and "-gnatwu" would be returned instead of "-gnatwuv".
686 -- The iterator becomes invalid if the command line is changed through a
687 -- call to Add_Switch, Remove_Switch or Set_Command_Line.
689 function Current_Switch (Iter : Command_Line_Iterator) return String;
690 function Is_New_Section (Iter : Command_Line_Iterator) return Boolean;
691 function Current_Section (Iter : Command_Line_Iterator) return String;
692 function Current_Separator (Iter : Command_Line_Iterator) return String;
693 function Current_Parameter (Iter : Command_Line_Iterator) return String;
694 -- Return the current switch and its parameter (or the empty string if
695 -- there is no parameter or the switch was added through Add_Switch
696 -- without specifying the parameter.
698 -- Separator is the string that goes between the switch and its separator.
699 -- It could be the empty string if they should be concatenated, or a space
700 -- for instance. When printing, you should not add any other character.
702 function Has_More (Iter : Command_Line_Iterator) return Boolean;
703 -- Return True if there are more switches to be returned
705 procedure Next (Iter : in out Command_Line_Iterator);
706 -- Move to the next switch
708 private
710 Max_Depth : constant := 100;
711 -- Maximum depth of subdirectories
713 Max_Path_Length : constant := 1024;
714 -- Maximum length of relative path
716 type Depth is range 1 .. Max_Depth;
718 type Level is record
719 Name_Last : Natural := 0;
720 Dir : GNAT.Directory_Operations.Dir_Type;
721 end record;
723 type Level_Array is array (Depth) of Level;
725 type Section_Number is new Natural range 0 .. 65534;
726 for Section_Number'Size use 16;
728 type Parameter_Type is record
729 Arg_Num : Positive;
730 First : Positive;
731 Last : Positive;
732 Extra : Character;
733 end record;
735 type Is_Switch_Type is array (Natural range <>) of Boolean;
736 pragma Pack (Is_Switch_Type);
738 type Section_Type is array (Natural range <>) of Section_Number;
739 pragma Pack (Section_Type);
741 type Expansion_Iterator is limited record
742 Start : Positive := 1;
743 -- Position of the first character of the relative path to check against
744 -- the pattern.
746 Dir_Name : String (1 .. Max_Path_Length);
748 Current_Depth : Depth := 1;
750 Levels : Level_Array;
752 Regexp : GNAT.Regexp.Regexp;
753 -- Regular expression built with the pattern
755 Maximum_Depth : Depth := 1;
756 -- The maximum depth of directories, reflecting the number of directory
757 -- separators in the pattern.
758 end record;
760 type Opt_Parser_Data (Arg_Count : Natural) is record
761 Arguments : GNAT.OS_Lib.Argument_List_Access;
762 -- null if reading from the command line
764 The_Parameter : Parameter_Type;
765 The_Separator : Character;
766 The_Switch : Parameter_Type;
767 -- This type and this variable are provided to store the current switch
768 -- and parameter.
770 Is_Switch : Is_Switch_Type (1 .. Arg_Count) := (others => False);
771 -- Indicates wich arguments on the command line are considered not be
772 -- switches or parameters to switches (leaving e.g. filenames,...)
774 Section : Section_Type (1 .. Arg_Count) := (others => 1);
775 -- Contains the number of the section associated with the current
776 -- switch. If this number is 0, then it is a section delimiter, which is
777 -- never returned by GetOpt.
779 Current_Argument : Natural := 1;
780 -- Number of the current argument parsed on the command line
782 Current_Index : Natural := 1;
783 -- Index in the current argument of the character to be processed
785 Current_Section : Section_Number := 1;
787 Expansion_It : aliased Expansion_Iterator;
788 -- When Get_Argument is expanding a file name, this is the iterator used
790 In_Expansion : Boolean := False;
791 -- True if we are expanding a file
793 Switch_Character : Character := '-';
794 -- The character at the beginning of the command line arguments,
795 -- indicating the beginning of a switch.
797 Stop_At_First : Boolean := False;
798 -- If it is True then Getopt stops at the first non-switch argument
799 end record;
801 Command_Line_Parser_Data : aliased Opt_Parser_Data
802 (Ada.Command_Line.Argument_Count);
803 -- The internal data used when parsing the command line
805 type Opt_Parser is access all Opt_Parser_Data;
806 Command_Line_Parser : constant Opt_Parser :=
807 Command_Line_Parser_Data'Access;
809 type Command_Line_Configuration_Record is record
810 Prefixes : GNAT.OS_Lib.Argument_List_Access;
811 -- The list of prefixes
813 Sections : GNAT.OS_Lib.Argument_List_Access;
814 -- The list of sections
816 Aliases : GNAT.OS_Lib.Argument_List_Access;
817 Expansions : GNAT.OS_Lib.Argument_List_Access;
818 -- The aliases (Both arrays have the same bounds)
820 Switches : GNAT.OS_Lib.Argument_List_Access;
821 -- List of expected switches (Used when expanding switch groups)
822 end record;
823 type Command_Line_Configuration is access Command_Line_Configuration_Record;
825 type Command_Line is record
826 Config : Command_Line_Configuration;
827 Expanded : GNAT.OS_Lib.Argument_List_Access;
829 Params : GNAT.OS_Lib.Argument_List_Access;
830 -- Parameter for the corresponding switch in Expanded. The first
831 -- character is the separator (or ASCII.NUL if there is no separator).
833 Sections : GNAT.OS_Lib.Argument_List_Access;
834 -- The list of sections
836 Coalesce : GNAT.OS_Lib.Argument_List_Access;
837 Coalesce_Params : GNAT.OS_Lib.Argument_List_Access;
838 Coalesce_Sections : GNAT.OS_Lib.Argument_List_Access;
839 -- Cached version of the command line. This is recomputed every time
840 -- the command line changes. Switches are grouped as much as possible,
841 -- and aliases are used to reduce the length of the command line. The
842 -- parameters are not allocated, they point into Params, so they must
843 -- not be freed.
844 end record;
846 type Command_Line_Iterator is record
847 List : GNAT.OS_Lib.Argument_List_Access;
848 Sections : GNAT.OS_Lib.Argument_List_Access;
849 Params : GNAT.OS_Lib.Argument_List_Access;
850 Current : Natural;
851 end record;
853 end GNAT.Command_Line;