parse_args_0.9.0_635f9e4f/examples/src/generic_example_options.ads

 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
-- generic_example_options
-- An example of the use of parse_args with generic option types

-- Copyright (c) 2015, James Humphry
--
-- Permission to use, copy, modify, and/or distribute this software for any
-- purpose with or without fee is hereby granted, provided that the above
-- copyright notice and this permission notice appear in all copies.
--
-- THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
-- REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
-- AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
-- INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
-- LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE
-- OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
-- PERFORMANCE OF THIS SOFTWARE.

with Ada.Unchecked_Deallocation;

with Parse_Args;
use Parse_Args;

with Parse_Args.Generic_Discrete_Options;
with Parse_Args.Generic_Options;
with Parse_Args.Generic_Indefinite_Options;
with Parse_Args.Split_CSV;

package Generic_Example_Options is

   type Compass is (North, South, East, West);

   package Compass_Option is new Generic_Discrete_Options(Element => Compass,
                                                         Fallback_Default => North);

   procedure Is_Even(Arg : in Integer; Result : in out Boolean);

   package Even_Option is new Generic_Discrete_Options(Element => Natural,
                                                      Fallback_Default => 0,
                                                      Valid => Is_Even);

   package Float_Option is new Generic_Options(Element => Float,
                                               Fallback_Default => 0.0,
                                               Value => Float'Value,
                                               Image => Float'Image);

   type Float_Array is array (Integer range <>) of Float;
   type Float_Array_Access is access Float_Array;

   procedure Free_Float_Array is
     new Ada.Unchecked_Deallocation(Object => Float_Array,
                                    Name => Float_Array_Access);

   function Split_Float_Array is new Split_CSV(Element => Float,
                                               Element_Array => Float_Array,
                                               Element_Array_Access => Float_Array_Access,
                                               Value => Float'Value);

   function Float_Array_Image(Arg : Float_Array_Access) return String is
      ("<Float array of length: " & Integer'Image(Arg.all'Length) & ">");

   package Float_Array_Option is new Generic_Indefinite_Options(Element => Float_Array,
                                                                Element_Access => Float_Array_Access,
                                                                Value => Split_Float_Array,
                                                                Image => Float_Array_Image,
                                                                Free_Element => Free_Float_Array);

end Generic_Example_Options;