diff options
author | Pascal Obry <obry@adacore.com> | 2018-05-30 08:58:00 +0000 |
---|---|---|
committer | Pierre-Marie de Rodat <pmderodat@gcc.gnu.org> | 2018-05-30 08:58:00 +0000 |
commit | 42e508b45d21b195109424f62f454fa619f1cc29 (patch) | |
tree | a87aa0628e5e9ab69e979ea746f01e0c3b04ebdc | |
parent | 7cc6d416ae9fa0e476523d30ab403fa3fd5970c2 (diff) | |
download | gcc-42e508b45d21b195109424f62f454fa619f1cc29.zip gcc-42e508b45d21b195109424f62f454fa619f1cc29.tar.gz gcc-42e508b45d21b195109424f62f454fa619f1cc29.tar.bz2 |
[Ada] Add support for Define_Switch with a callback in GNAT.Command_Line
Add support for Define_Switch with a callback in GNAT.Command_Line.
The callback is called for every instance of the switch found on the
command line. This make it possible to have full control over the
switch value and chain multiple actions if needed.
2018-05-30 Pascal Obry <obry@adacore.com>
gcc/ada/
* libgnat/g-comlin.ads (Value_Callback, Define_Switch): New.
* libgnat/g-comlin.adb: Add corresponding implementation.
From-SVN: r260940
-rw-r--r-- | gcc/ada/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/ada/libgnat/g-comlin.adb | 29 | ||||
-rw-r--r-- | gcc/ada/libgnat/g-comlin.ads | 19 |
3 files changed, 51 insertions, 2 deletions
diff --git a/gcc/ada/ChangeLog b/gcc/ada/ChangeLog index 295ec64..80abf0c 100644 --- a/gcc/ada/ChangeLog +++ b/gcc/ada/ChangeLog @@ -1,3 +1,8 @@ +2018-05-30 Pascal Obry <obry@adacore.com> + + * libgnat/g-comlin.ads (Value_Callback, Define_Switch): New. + * libgnat/g-comlin.adb: Add corresponding implementation. + 2018-05-30 Gary Dismukes <dismukes@adacore.com> * sem_res.adb, sem_util.adb: Fix several typos. diff --git a/gcc/ada/libgnat/g-comlin.adb b/gcc/ada/libgnat/g-comlin.adb index 8d2a9b9..24677f1 100644 --- a/gcc/ada/libgnat/g-comlin.adb +++ b/gcc/ada/libgnat/g-comlin.adb @@ -1474,6 +1474,29 @@ package body GNAT.Command_Line is end if; end Define_Switch; + ------------------- + -- Define_Switch -- + ------------------- + + procedure Define_Switch + (Config : in out Command_Line_Configuration; + Callback : not null Value_Callback; + Switch : String := ""; + Long_Switch : String := ""; + Help : String := ""; + Section : String := ""; + Argument : String := "ARG") + is + Def : Switch_Definition (Switch_Callback); + begin + if Switch /= "" or else Long_Switch /= "" then + Initialize_Switch_Def + (Def, Switch, Long_Switch, Help, Section, Argument); + Def.Callback := Callback; + Add (Config, Def); + end if; + end Define_Switch; + -------------------- -- Define_Section -- -------------------- @@ -3403,6 +3426,10 @@ package body GNAT.Command_Line is Local_Config.Switches (Index).String_Output.all := new String'(Parameter); return; + + when Switch_Callback => + Local_Config.Switches (Index).Callback (Switch, Parameter); + return; end case; end if; @@ -3471,7 +3498,7 @@ package body GNAT.Command_Line is for S in Local_Config.Switches'Range loop case Local_Config.Switches (S).Typ is - when Switch_Untyped => + when Switch_Untyped | Switch_Callback => null; -- Nothing to do when Switch_Boolean => diff --git a/gcc/ada/libgnat/g-comlin.ads b/gcc/ada/libgnat/g-comlin.ads index 1f35db8..1afa57b 100644 --- a/gcc/ada/libgnat/g-comlin.ads +++ b/gcc/ada/libgnat/g-comlin.ads @@ -678,6 +678,20 @@ package GNAT.Command_Line is -- so that you can specify the default value directly in the declaration -- of the variable). The switch must accept an argument. + type Value_Callback is access procedure (Switch, Value : String); + + procedure Define_Switch + (Config : in out Command_Line_Configuration; + Callback : not null Value_Callback; + Switch : String := ""; + Long_Switch : String := ""; + Help : String := ""; + Section : String := ""; + Argument : String := "ARG"); + -- Call Callback for each instance of Switch. The callback is given the + -- actual switch and the corresponding value. The switch must accept + -- an argument. + procedure Set_Usage (Config : in out Command_Line_Configuration; Usage : String := "[switches] [arguments]"; @@ -1111,7 +1125,8 @@ private type Switch_Type is (Switch_Untyped, Switch_Boolean, Switch_Integer, - Switch_String); + Switch_String, + Switch_Callback); type Switch_Definition (Typ : Switch_Type := Switch_Untyped) is record Switch : GNAT.OS_Lib.String_Access; @@ -1135,6 +1150,8 @@ private Integer_Default : Integer; when Switch_String => String_Output : access GNAT.Strings.String_Access; + when Switch_Callback => + Callback : Value_Callback; end case; end record; type Switch_Definitions is array (Natural range <>) of Switch_Definition; |