2003-12-26 Guilhem Lavaux <guilhem@kaffe.org>
[official-gcc.git] / gcc / ada / gnatlbr.adb
blob917f06416da840d664b22a3cc916c38e15750feb
1 ------------------------------------------------------------------------------
2 -- --
3 -- GNAT COMPILER COMPONENTS --
4 -- --
5 -- G N A T L B R --
6 -- --
7 -- B o d y --
8 -- --
9 -- Copyright (C) 1997-2003 Free Software Foundation, Inc. --
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, 59 Temple Place - Suite 330, Boston, --
20 -- MA 02111-1307, USA. --
21 -- --
22 -- GNAT was originally developed by the GNAT team at New York University. --
23 -- Extensive contributions were provided by Ada Core Technologies Inc. --
24 -- --
25 ------------------------------------------------------------------------------
27 -- Program to create, set, or delete an alternate runtime library.
29 -- Works by calling an appropriate target specific Makefile residing
30 -- in the default library object (e.g. adalib) directory from the context
31 -- of the new library objects directory.
33 -- Command line arguments are:
34 -- 1st: --[create | set | delete]=<directory_spec>
35 -- --create : Build a library
36 -- --set : Set environment variables to point to a library
37 -- --delete : Delete a library
39 -- 2nd: --config=<file_spec>
40 -- A -gnatg valid file containing desired configuration pragmas
42 -- This program is currently used only on Alpha/VMS
44 with Ada.Command_Line; use Ada.Command_Line;
45 with Ada.Text_IO; use Ada.Text_IO;
46 with GNAT.OS_Lib; use GNAT.OS_Lib;
47 with Gnatvsn; use Gnatvsn;
48 with Interfaces.C_Streams; use Interfaces.C_Streams;
49 with Osint; use Osint;
50 with System;
52 procedure GnatLbr is
53 pragma Ident (Gnat_Static_Version_String);
55 type Lib_Mode is (None, Create, Set, Delete);
56 Next_Arg : Integer;
57 Mode : Lib_Mode := None;
58 ADC_File : String_Access := null;
59 Lib_Dir : String_Access := null;
60 Make : constant String := "make";
61 Make_Path : String_Access;
63 procedure Create_Directory (Name : System.Address; Mode : Integer);
64 pragma Import (C, Create_Directory, "mkdir");
66 begin
67 if Argument_Count = 0 then
68 Put ("Usage: ");
69 Put_Line
70 ("gnatlbr --[create|set|delete]=<directory> [--config=<file>]");
71 Exit_Program (E_Fatal);
72 end if;
74 Next_Arg := 1;
76 loop
77 exit when Next_Arg > Argument_Count;
79 Process_One_Arg : declare
80 Arg : String := Argument (Next_Arg);
82 begin
84 if Arg'Length > 9 and then Arg (1 .. 9) = "--create=" then
85 if Mode = None then
86 Mode := Create;
87 Lib_Dir := new String'(Arg (10 .. Arg'Last));
88 else
89 Put_Line (Standard_Error, "Error: Multiple modes specified");
90 Exit_Program (E_Fatal);
91 end if;
93 elsif Arg'Length > 6 and then Arg (1 .. 6) = "--set=" then
94 if Mode = None then
95 Mode := Set;
96 Lib_Dir := new String'(Arg (7 .. Arg'Last));
97 else
98 Put_Line (Standard_Error, "Error: Multiple modes specified");
99 Exit_Program (E_Fatal);
100 end if;
102 elsif Arg'Length > 9 and then Arg (1 .. 9) = "--delete=" then
103 if Mode = None then
104 Mode := Delete;
105 Lib_Dir := new String'(Arg (10 .. Arg'Last));
106 else
107 Put_Line (Standard_Error, "Error: Multiple modes specified");
108 Exit_Program (E_Fatal);
109 end if;
111 elsif Arg'Length > 9 and then Arg (1 .. 9) = "--config=" then
112 if ADC_File /= null then
113 Put_Line (Standard_Error,
114 "Error: Multiple gnat.adc files specified");
115 Exit_Program (E_Fatal);
116 end if;
118 ADC_File := new String'(Arg (10 .. Arg'Last));
120 else
121 Put_Line (Standard_Error, "Error: Unrecognized option: " & Arg);
122 Exit_Program (E_Fatal);
124 end if;
125 end Process_One_Arg;
127 Next_Arg := Next_Arg + 1;
128 end loop;
130 case Mode is
131 when Create =>
133 -- Validate arguments
135 if Lib_Dir = null then
136 Put_Line (Standard_Error, "Error: No library directory specified");
137 Exit_Program (E_Fatal);
138 end if;
140 if Is_Directory (Lib_Dir.all) then
141 Put_Line (Standard_Error,
142 "Error:" & Lib_Dir.all & " already exists");
143 Exit_Program (E_Fatal);
144 end if;
146 if ADC_File = null then
147 Put_Line (Standard_Error,
148 "Error: No configuration file specified");
149 Exit_Program (E_Fatal);
150 end if;
152 if not Is_Regular_File (ADC_File.all) then
153 Put_Line (Standard_Error,
154 "Error: " & ADC_File.all & " doesn't exist");
155 Exit_Program (E_Fatal);
156 end if;
158 Create_Block : declare
159 Success : Boolean;
160 Make_Args : Argument_List (1 .. 9);
161 C_Lib_Dir : String := Lib_Dir.all & ASCII.Nul;
162 C_ADC_File : String := ADC_File.all & ASCII.Nul;
163 F_ADC_File : String (1 .. max_path_len);
164 F_ADC_File_Len : Integer := max_path_len;
165 Include_Dirs : Integer;
166 Object_Dirs : Integer;
167 Include_Dir : array (Integer range 1 .. 256) of String_Access;
168 Object_Dir : array (Integer range 1 .. 256) of String_Access;
169 Include_Dir_Name : String_Access;
170 Object_Dir_Name : String_Access;
172 begin
173 -- Create the new top level library directory
175 if not Is_Directory (Lib_Dir.all) then
176 Create_Directory (C_Lib_Dir'Address, 8#755#);
177 end if;
179 full_name (C_ADC_File'Address, F_ADC_File'Address);
181 for I in 1 .. max_path_len loop
182 if F_ADC_File (I) = ASCII.Nul then
183 F_ADC_File_Len := I - 1;
184 exit;
185 end if;
186 end loop;
189 -- Make a list of the default library source and object
190 -- directories. Usually only one, except on VMS where
191 -- there are two.
193 Include_Dirs := 0;
194 Include_Dir_Name := new String'(Include_Dir_Default_Prefix);
195 Get_Next_Dir_In_Path_Init (String_Access (Include_Dir_Name));
197 loop
198 declare
199 Dir : String_Access := String_Access
200 (Get_Next_Dir_In_Path (String_Access (Include_Dir_Name)));
201 begin
202 exit when Dir = null;
203 Include_Dirs := Include_Dirs + 1;
204 Include_Dir (Include_Dirs)
205 := String_Access (Normalize_Directory_Name (Dir.all));
206 end;
207 end loop;
209 Object_Dirs := 0;
210 Object_Dir_Name := new String'(Object_Dir_Default_Prefix);
211 Get_Next_Dir_In_Path_Init (String_Access (Object_Dir_Name));
213 loop
214 declare
215 Dir : String_Access := String_Access
216 (Get_Next_Dir_In_Path (String_Access (Object_Dir_Name)));
217 begin
218 exit when Dir = null;
219 Object_Dirs := Object_Dirs + 1;
220 Object_Dir (Object_Dirs)
221 := String_Access (Normalize_Directory_Name (Dir.all));
222 end;
223 end loop;
225 -- "Make" an alternate sublibrary for each default sublibrary.
227 for Dirs in 1 .. Object_Dirs loop
229 Make_Args (1) :=
230 new String'("-C");
232 Make_Args (2) :=
233 new String'(Lib_Dir.all);
235 -- Resolve /gnu on VMS by converting to host format and then
236 -- convert resolved path back to canonical format for the
237 -- make program. This fixes the problem that can occur when
238 -- GNU: is a search path pointing to multiple versions of GNAT.
240 Make_Args (3) :=
241 new String'("ADA_INCLUDE_PATH=" &
242 To_Canonical_Dir_Spec
243 (To_Host_Dir_Spec
244 (Include_Dir (Dirs).all, True).all, True).all);
246 Make_Args (4) :=
247 new String'("ADA_OBJECTS_PATH=" &
248 To_Canonical_Dir_Spec
249 (To_Host_Dir_Spec
250 (Object_Dir (Dirs).all, True).all, True).all);
252 Make_Args (5) :=
253 new String'("GNAT_ADC_FILE="
254 & F_ADC_File (1 .. F_ADC_File_Len));
256 Make_Args (6) :=
257 new String'("LIBRARY_VERSION=" & '"' &
258 Verbose_Library_Version & '"');
260 Make_Args (7) :=
261 new String'("-f");
263 Make_Args (8) :=
264 new String'(Object_Dir (Dirs).all & "Makefile.lib");
266 Make_Args (9) :=
267 new String'("create");
269 Make_Path := Locate_Exec_On_Path (Make);
270 Put (Make);
272 for I in 1 .. Make_Args'Last loop
273 Put (" ");
274 Put (Make_Args (I).all);
275 end loop;
277 New_Line;
278 Spawn (Make_Path.all, Make_Args, Success);
279 if not Success then
280 Put_Line (Standard_Error, "Error: Make failed");
281 Exit_Program (E_Fatal);
282 end if;
283 end loop;
284 end Create_Block;
286 when Set =>
288 -- Validate arguments.
290 if Lib_Dir = null then
291 Put_Line (Standard_Error,
292 "Error: No library directory specified");
293 Exit_Program (E_Fatal);
294 end if;
296 if not Is_Directory (Lib_Dir.all) then
297 Put_Line (Standard_Error,
298 "Error: " & Lib_Dir.all & " doesn't exist");
299 Exit_Program (E_Fatal);
300 end if;
302 if ADC_File = null then
303 Put_Line (Standard_Error,
304 "Error: No configuration file specified");
305 Exit_Program (E_Fatal);
306 end if;
308 if not Is_Regular_File (ADC_File.all) then
309 Put_Line (Standard_Error,
310 "Error: " & ADC_File.all & " doesn't exist");
311 Exit_Program (E_Fatal);
312 end if;
314 -- Give instructions.
316 Put_Line ("Copy the contents of "
317 & ADC_File.all & " into your GNAT.ADC file");
318 Put_Line ("and use GNAT Make qualifier /OBJECT_SEARCH=("
319 & To_Host_Dir_Spec
320 (Lib_Dir (Lib_Dir'First .. Lib_Dir'Last) & "/declib", False).all
321 & ","
322 & To_Host_Dir_Spec
323 (Lib_Dir (Lib_Dir'First .. Lib_Dir'Last) & "/adalib", False).all
324 & ")");
325 Put_Line ("or else define ADA_OBJECTS_PATH as " & '"'
326 & To_Host_Dir_Spec
327 (Lib_Dir (Lib_Dir'First .. Lib_Dir'Last) & "/declib", False).all
328 & ','
329 & To_Host_Dir_Spec
330 (Lib_Dir (Lib_Dir'First .. Lib_Dir'Last) & "/adalib", False).all
331 & '"');
333 when Delete =>
335 -- Give instructions.
337 Put_Line ("GNAT Librarian DELETE not yet implemented.");
338 Put_Line ("Use appropriate system tools to remove library");
340 when None =>
341 Put_Line (Standard_Error,
342 "Error: No mode (create|set|delete) specified");
343 Exit_Program (E_Fatal);
345 end case;
347 end GnatLbr;