OSDN Git Service

2009-08-28 Sebastian Pop <sebastian.pop@amd.com>
[pf3gnuchains/gcc-fork.git] / gcc / ada / prj-pars.adb
1 ------------------------------------------------------------------------------
2 --                                                                          --
3 --                         GNAT COMPILER COMPONENTS                         --
4 --                                                                          --
5 --                             P R J . P A R S                              --
6 --                                                                          --
7 --                                 B o d y                                  --
8 --                                                                          --
9 --          Copyright (C) 2001-2009, 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 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.  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 COPYING3.  If not, go to --
19 -- http://www.gnu.org/licenses for a complete copy of the license.          --
20 --                                                                          --
21 -- GNAT was originally developed  by the GNAT team at  New York University. --
22 -- Extensive contributions were provided by Ada Core Technologies Inc.      --
23 --                                                                          --
24 ------------------------------------------------------------------------------
25
26 with Ada.Exceptions; use Ada.Exceptions;
27 with GNAT.Directory_Operations; use GNAT.Directory_Operations;
28
29 with Output;   use Output;
30 with Prj.Conf; use Prj.Conf;
31 with Prj.Err;  use Prj.Err;
32 with Prj.Part;
33 with Prj.Tree; use Prj.Tree;
34 with Sinput.P;
35
36 package body Prj.Pars is
37
38    -----------
39    -- Parse --
40    -----------
41
42    procedure Parse
43      (In_Tree           : Project_Tree_Ref;
44       Project           : out Project_Id;
45       Project_File_Name : String;
46       Packages_To_Check : String_List_Access := All_Packages;
47       Flags             : Processing_Flags;
48       Reset_Tree        : Boolean := True)
49    is
50       Project_Node      : Project_Node_Id := Empty_Node;
51       The_Project       : Project_Id      := No_Project;
52       Success           : Boolean         := True;
53       Current_Dir       : constant String := Get_Current_Dir;
54       Project_Node_Tree : Prj.Tree.Project_Node_Tree_Ref;
55       Automatically_Generated : Boolean;
56       Config_File_Path        : String_Access;
57    begin
58       Project_Node_Tree := new Project_Node_Tree_Data;
59       Prj.Tree.Initialize (Project_Node_Tree);
60
61       --  Parse the main project file into a tree
62
63       Sinput.P.Reset_First;
64       Prj.Part.Parse
65         (In_Tree                => Project_Node_Tree,
66          Project                => Project_Node,
67          Project_File_Name      => Project_File_Name,
68          Always_Errout_Finalize => False,
69          Packages_To_Check      => Packages_To_Check,
70          Current_Directory      => Current_Dir,
71          Flags                  => Flags,
72          Is_Config_File         => False);
73
74       --  If there were no error, process the tree
75
76       if Project_Node /= Empty_Node then
77          begin
78             --  No config file should be read from the disk for gnatmake.
79             --  However, we will simulate one that only contains the
80             --  default GNAT naming scheme.
81
82             Process_Project_And_Apply_Config
83               (Main_Project               => The_Project,
84                User_Project_Node          => Project_Node,
85                Config_File_Name           => "",
86                Autoconf_Specified         => False,
87                Project_Tree               => In_Tree,
88                Project_Node_Tree          => Project_Node_Tree,
89                Packages_To_Check          => null,
90                Allow_Automatic_Generation => False,
91                Automatically_Generated    => Automatically_Generated,
92                Config_File_Path           => Config_File_Path,
93                Flags                      => Flags,
94                Normalized_Hostname        => "",
95                On_Load_Config             =>
96                  Add_Default_GNAT_Naming_Scheme'Access,
97                Reset_Tree                 => Reset_Tree);
98
99             Success := The_Project /= No_Project;
100
101          exception
102             when Invalid_Config =>
103                Success := False;
104          end;
105
106          Prj.Err.Finalize;
107
108          if not Success then
109             The_Project := No_Project;
110          end if;
111       end if;
112
113       Project := The_Project;
114
115       --  ??? Should free the project_node_tree, no longer useful
116
117    exception
118       when X : others =>
119
120          --  Internal error
121
122          Write_Line (Exception_Information (X));
123          Write_Str  ("Exception ");
124          Write_Str  (Exception_Name (X));
125          Write_Line (" raised, while processing project file");
126          Project := No_Project;
127    end Parse;
128
129    -------------------
130    -- Set_Verbosity --
131    -------------------
132
133    procedure Set_Verbosity (To : Verbosity) is
134    begin
135       Current_Verbosity := To;
136    end Set_Verbosity;
137
138 end Prj.Pars;