1 ------------------------------------------------------------------------------
3 -- GNAT RUN-TIME COMPONENTS --
5 -- A D A . C O M M A N D _ L I N E --
9 -- Copyright (C) 1992-2013, Free Software Foundation, Inc. --
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 3, 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. --
18 -- As a special exception under Section 7 of GPL version 3, you are granted --
19 -- additional permissions described in the GCC Runtime Library Exception, --
20 -- version 3.1, as published by the Free Software Foundation. --
22 -- You should have received a copy of the GNU General Public License and --
23 -- a copy of the GCC Runtime Library Exception along with this program; --
24 -- see the files COPYING3 and COPYING.RUNTIME respectively. If not, see --
25 -- <http://www.gnu.org/licenses/>. --
27 -- GNAT was originally developed by the GNAT team at New York University. --
28 -- Extensive contributions were provided by Ada Core Technologies Inc. --
30 ------------------------------------------------------------------------------
32 pragma Compiler_Unit_Warning
;
34 with System
; use System
;
36 package body Ada
.Command_Line
is
38 function Arg_Count
return Natural;
39 pragma Import
(C
, Arg_Count
, "__gnat_arg_count");
41 procedure Fill_Arg
(A
: System
.Address
; Arg_Num
: Integer);
42 pragma Import
(C
, Fill_Arg
, "__gnat_fill_arg");
44 function Len_Arg
(Arg_Num
: Integer) return Integer;
45 pragma Import
(C
, Len_Arg
, "__gnat_len_arg");
47 -----------------------
48 -- Local Subprograms --
49 -----------------------
51 function Initialized
return Boolean;
52 -- Checks to ensure that gnat_argc and gnat_argv have been properly
53 -- initialized. Returns false if not, or if argv / argc are
54 -- unsupported on the target (e.g. VxWorks).
60 function Argument
(Number
: Positive) return String is
64 if Number
> Argument_Count
then
65 raise Constraint_Error
;
68 if Remove_Args
= null then
71 Num
:= Remove_Args
(Number
);
75 Arg
: aliased String (1 .. Len_Arg
(Num
));
77 Fill_Arg
(Arg
'Address, Num
);
86 function Argument_Count
return Natural is
88 if not Initialized
then
93 if Remove_Args
= null then
104 function Initialized
return Boolean is
105 gnat_argv
: System
.Address
;
106 pragma Import
(C
, gnat_argv
, "gnat_argv");
109 return gnat_argv
/= System
.Null_Address
;
116 function Command_Name
return String is
118 if not Initialized
then
123 Arg
: aliased String (1 .. Len_Arg
(0));
126 Fill_Arg
(Arg
'Address, 0);
131 end Ada
.Command_Line
;