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 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291
|
------------------------------------------------------------------------------
-- G P S --
-- --
-- Copyright (C) 2002-2013, AdaCore --
-- --
-- This is free software; you can redistribute it and/or modify it under --
-- terms of the GNU General Public License as published by the Free Soft- --
-- ware Foundation; either version 3, or (at your option) any later ver- --
-- sion. This software is distributed in the hope that it will be useful, --
-- but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHAN- --
-- TABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public --
-- License for more details. You should have received a copy of the GNU --
-- General Public License distributed with this software; see file --
-- COPYING3. If not, go to http://www.gnu.org/licenses for a complete copy --
-- of the license. --
------------------------------------------------------------------------------
with Ada.Strings.Hash_Case_Insensitive;
with Ada.Unchecked_Deallocation;
with GNAT.Strings; use GNAT.Strings;
with GNATCOLL.Arg_Lists; use GNATCOLL.Arg_Lists;
with GNATCOLL.Traces; use GNATCOLL.Traces;
with GNATCOLL.Utils; use GNATCOLL.Utils;
with GNATCOLL.VFS; use GNATCOLL.VFS;
with Opt; use Opt;
with Namet; use Namet;
with Scans; use Scans;
with Snames; use Snames;
with GPS.Intl; use GPS.Intl;
with Remote; use Remote;
with Toolchains_Old; use Toolchains_Old;
pragma Warnings (Off);
with GNAT.Expect.TTY; use GNAT.Expect, GNAT.Expect.TTY;
with GNAT.Expect.TTY.Remote; use GNAT.Expect.TTY.Remote;
pragma Warnings (On);
package body Projects is
Me : constant Trace_Handle := Create ("Projects");
Keywords_Initialized : Boolean := False;
-- Whether we have already initialized the Ada keywords list. This is only
-- used by Is_Valid_Project_Name
Gnatls_Called : Boolean := False;
-- Flag used to avoid generating an error message the first time
-- GPS is launched, and only a cross-gnatls is available.
-- The second time, assuming the project properly defined the Gnatlist
-- attribute, everything will work properly. Otherwise, we will generate
-- an error message at this point.
-- ??? If no Gnatlist attribute is defined, Compute_Predefined_Paths
-- won't be called a second time, but it's better to hide messages about
-- gnatls being not found to users rather than confuse them for the case
-- above (cross-gnatls only).
-----------------------
-- Project_Name_Hash --
-----------------------
function Project_Name_Hash
(Project : Project_Type) return Ada.Containers.Hash_Type is
begin
return Ada.Strings.Hash_Case_Insensitive (Project.Name);
end Project_Name_Hash;
-----------------------
-- Project_Directory --
-----------------------
function Project_Directory
(Project : Project_Type;
Host : String := Local_Host) return GNATCOLL.VFS.Virtual_File is
begin
return Dir (Project_Path (Project, Host));
end Project_Directory;
--------------------
-- Set_Paths_Type --
--------------------
procedure Set_Paths_Type
(Project : Project_Type; Paths : Paths_Type_Information) is
begin
GPS_Project_Data_Access (Project.Data).Paths_Type := Paths;
end Set_Paths_Type;
--------------------
-- Get_Paths_Type --
--------------------
function Get_Paths_Type
(Project : Project_Type) return Paths_Type_Information is
begin
return GPS_Project_Data_Access (Project.Data).Paths_Type;
end Get_Paths_Type;
--------------------------
-- Source_Dirs_With_VCS --
--------------------------
function Source_Dirs_With_VCS
(Project : Project_Type;
Recursive : Boolean) return GNATCOLL.VFS.File_Array
is
begin
-- ??? We could optimize and only take into account projects with a
-- VCS attribute. This used to be the case before we moved the projects
-- API into GNATCOLL
return Project.Source_Dirs (Recursive => Recursive);
end Source_Dirs_With_VCS;
---------------------------
-- Is_Valid_Project_Name --
---------------------------
function Is_Valid_Project_Name (Name : String) return Boolean is
begin
if Name'Length = 0
or else (Name (Name'First) not in 'a' .. 'z'
and then Name (Name'First) not in 'A' .. 'Z')
then
return False;
end if;
for N in Name'First + 1 .. Name'Last loop
if Name (N) not in 'a' .. 'z'
and then Name (N) not in 'A' .. 'Z'
and then Name (N) not in '0' .. '9'
and then Name (N) /= '_'
and then Name (N) /= '.'
then
return False;
end if;
end loop;
if not Keywords_Initialized then
Scans.Initialize_Ada_Keywords;
Keywords_Initialized := True;
end if;
Name_Len := Name'Length;
Name_Buffer (1 .. Name_Len) := Name;
if Is_Keyword_Name (Name_Find) then
return False;
end if;
return True;
end Is_Valid_Project_Name;
-----------------
-- Environment --
-----------------
function Environment
(Self : Project_Registry) return Project_Environment_Access
is
begin
return Self.Env;
end Environment;
----------
-- Tree --
----------
function Tree (Self : Project_Registry) return Project_Tree_Access is
begin
return Self.Tree;
end Tree;
-------------
-- Destroy --
-------------
procedure Destroy (Registry : in out Project_Registry_Access) is
procedure Unchecked_Free is new Ada.Unchecked_Deallocation
(Project_Registry'Class, Project_Registry_Access);
begin
Registry.Tree.Unload;
Free (Registry.Tree);
Free (Registry.Env);
Unchecked_Free (Registry);
GNATCOLL.Projects.Finalize;
end Destroy;
------------
-- Create --
------------
function Create
(Tree : not null access Project_Tree'Class)
return Project_Registry_Access
is
Reg : constant Project_Registry_Access := new Project_Registry;
begin
Reg.Tree := Project_Tree_Access (Tree);
Initialize (Reg.Env);
return Reg;
end Create;
------------------------------
-- Compute_Predefined_Paths --
------------------------------
procedure Compute_Predefined_Paths
(Registry : Project_Registry_Access;
GNAT_Version : out GNAT.Strings.String_Access;
Gnatls_Args : GNAT.Strings.String_List_Access;
Errors : GNATCOLL.Projects.Error_Report := null)
is
procedure Unchecked_Free is new Ada.Unchecked_Deallocation
(Process_Descriptor'Class, Process_Descriptor_Access);
Success : Boolean;
Fd : Process_Descriptor_Access;
begin
Trace (Me, "Executing " & Argument_List_To_String (Gnatls_Args.all));
-- ??? Place a error handler here
begin
Success := True;
if Is_Local (Build_Server) then
declare
Gnatls_Path : constant Virtual_File :=
Locate_Compiler_Executable
(+Gnatls_Args (Gnatls_Args'First).all);
begin
if Gnatls_Path = GNATCOLL.VFS.No_File then
Success := False;
Trace (Me, "Could not locate exec " &
Gnatls_Args (Gnatls_Args'First).all);
if Gnatls_Called and then Errors /= null then
Errors (-"Could not locate exec " &
Gnatls_Args (Gnatls_Args'First).all);
end if;
else
Fd := new TTY_Process_Descriptor;
Non_Blocking_Spawn
(Fd.all,
+Gnatls_Path.Full_Name,
Gnatls_Args (2 .. Gnatls_Args'Last),
Buffer_Size => 0, Err_To_Out => True);
end if;
end;
else
Remote_Spawn
(Fd, Get_Nickname (Build_Server), Gnatls_Args.all,
Err_To_Out => True);
end if;
exception
when others =>
if Errors /= null then
Errors (-"Could not execute " & Gnatls_Args (1).all);
end if;
Success := False;
end;
if not Success then
if Gnatls_Called and then Errors /= null then
Errors
(-"Could not compute predefined paths for this project.");
Errors
(-("Subprojects might be incorrectly loaded, please make " &
"sure they are in your ADA_PROJECT_PATH"));
end if;
Gnatls_Called := True;
return;
end if;
Gnatls_Called := True;
Set_Path_From_Gnatls_Output
(Registry.Environment.all,
Output => GNATCOLL.Utils.Get_Command_Output (Fd),
GNAT_Version => GNAT_Version);
Unchecked_Free (Fd);
end Compute_Predefined_Paths;
begin
-- Use full path name so that the messages are sent to Locations view
Opt.Full_Path_Name_For_Brief_Errors := True;
end Projects;
|