libgpr2_24.0.0_eda3c693/langkit/generated/src-mains/parse.adb

  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
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
--
--  Copyright (C) 2019-2023, AdaCore
--  SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
--


with Ada.Calendar;              use Ada.Calendar;
with Ada.Containers.Hashed_Sets;
with Ada.Strings;               use Ada.Strings;
with Ada.Strings.Unbounded;     use Ada.Strings.Unbounded;
pragma Warnings (Off, "internal");
with Ada.Text_IO;               use Ada.Text_IO;

with GNATCOLL.Opt_Parse;

with Gpr_Parser_Support.Slocs; use Gpr_Parser_Support.Slocs;
with Gpr_Parser_Support.Text;  use Gpr_Parser_Support.Text;
with Gpr_Parser_Support.Token_Data_Handlers;
use Gpr_Parser_Support.Token_Data_Handlers;

with Gpr_Parser.Analysis;  use Gpr_Parser.Analysis;
with Gpr_Parser.Common;    use Gpr_Parser.Common;
with Gpr_Parser.Unparsing; use Gpr_Parser.Unparsing;

procedure Parse is

   function Convert (Grammar_Rule_Name : String) return Grammar_Rule;

   package Args is
      use GNATCOLL.Opt_Parse;

      Parser : Argument_Parser := Create_Argument_Parser
        (Help =>
           "Run Gpr_Parser's"
           & " parser on an input string(s) or file(s)");

      package Silent is new Parse_Flag
        (Parser, "-s", "--silent",
         Help => "Do not print the representation of the resulting tree");

      package Print_Envs is new Parse_Flag
        (Parser, "-E", "--print-envs", "Print lexical environments computed");

      package Measure_Time is new Parse_Flag
        (Parser, "-t", "--time", "Time the execution of parsing");

      package Check is new Parse_Flag
        (Parser, "-C", "--check",
         Help => "Perform consistency checks on the tree");

      package Rule is new Parse_Option
        (Parser, "-r", "--rule-name",
         Arg_Type    => Grammar_Rule,
         Default_Val => Default_Grammar_Rule,
         Help        => "Rule name to parse");

      package Charset is new Parse_Option
        (Parser, "-c", "--charset",
         Arg_Type    => Unbounded_String,
         Default_Val => Null_Unbounded_String,
         Help        => "Charset to use to decode the source code");

      package Do_Print_Trivia is new Parse_Flag
        (Parser, "-P", "--print-with-trivia",
         Help => "Print a simplified tree with trivia included");

      package Do_Print_Tokens is new Parse_Flag
        (Parser, "-T", "--print-tokens",
         Help => "Only print the stream of tokens/trivia");

      package Hide_Slocs is new Parse_Flag
        (Parser,
         Long => "--hide-slocs",
         Help => "When printing the tree, hide source locations");

      package Lookups is new Parse_Option_List
        (Parser, "-L", "--lookups",
         Arg_Type   => Unbounded_String,
         Accumulate => True,
         Help       => "Lookups to do in the parse tree");

      package File_Names is new Parse_Option_List
        (Parser, "-f", "--file-name",
         Arg_Type   => Unbounded_String,
         Accumulate => True,
         Help       => "Files to parse");

      package File_List is new Parse_Option
        (Parser, "-F", "--file-list",
         Arg_Type    => Unbounded_String,
         Default_Val => Null_Unbounded_String,
         Help        =>
           "Parse files listed in the provided filename with the regular"
            & " analysis circuitry (useful for timing measurements)");

      package Do_Unparse is new Parse_Flag
        (Parser, "-u", "--unparse",
         Help => "Unparse the code with the built-in unparser");
      package Strings is new Parse_Positional_Arg_List
        (Parser,
         Name        => "strings",
         Arg_Type    => Unbounded_String,
         Help        => "Raw strings to parse",
         Allow_Empty => True);
   end Args;

   procedure Process_Lookups (Node : Gpr_Node'Class);
   procedure Process_Node (Res : Gpr_Node'Class);
   procedure Process_File (Filename : String; Ctx : Analysis_Context);
   procedure Print_Token_Stream (Unit : Analysis_Unit);
   procedure Parse_Input (Content : String);

   function Create_Parse_Context return Analysis_Context is
     (Create_Context (Charset     => To_String (Args.Charset.Get),
                      With_Trivia => Args.Do_Print_Trivia.Get
                                     or else Args.Do_Print_Tokens.Get));

   -------------
   -- Convert --
   -------------

   function Convert (Grammar_Rule_Name : String) return Grammar_Rule is
   begin
      return Grammar_Rule'Value (Grammar_Rule_Name & "_Rule");
   exception
      when Constraint_Error =>
         raise GNATCOLL.Opt_Parse.Opt_Parse_Error
           with "Unsupported rule: " & Grammar_Rule_Name;
   end Convert;

   ---------------------
   -- Process_Lookups --
   ---------------------

   procedure Process_Lookups (Node : Gpr_Node'Class) is
   begin
      for Lookup_Str of Args.Lookups.Get loop
         New_Line;

         declare
            Sep : constant Natural := Index (Lookup_Str, ":");

            Line   : constant Line_Number := Line_Number'Value
              (Slice (Lookup_Str, 1, Sep - 1));
            Column : constant Column_Number := Column_Number'Value
              (Slice (Lookup_Str, Sep + 1, Length (Lookup_Str)));

            Sloc        : constant Source_Location := (Line, Column);
            Lookup_Node : constant Gpr_Node :=
               Lookup (Node, (Line, Column));
         begin
            Put_Line ("Lookup " & Image (Sloc) & ":");
            Print (Lookup_Node, not Args.Hide_Slocs.Get);
         end;
      end loop;
   end Process_Lookups;

   ------------------
   -- Process_Node --
   ------------------

   procedure Process_Node (Res : Gpr_Node'Class) is
   begin
      if Is_Null (Res) then
         Put_Line ("<null node>");
         return;
      end if;

      if not Args.Silent.Get then
         if Args.Do_Print_Trivia.Get then
            PP_Trivia (Res);
         else
            Print (Res, not Args.Hide_Slocs.Get);
         end if;
      end if;

      Process_Lookups (Res);

      if Args.Do_Unparse.Get then
         Put_Line (Unparse (Res));
      end if;
   end Process_Node;

   ------------------------
   -- Print_Token_Stream --
   ------------------------

   procedure Print_Token_Stream (Unit : Analysis_Unit) is
      Token : Token_Reference := First_Token (Unit);
      TD    : Token_Data_Type;
   begin
      while Token /= No_Token loop
         TD := Data (Token);
         Put_Line
           ("  [" & (if Is_Trivia (TD) then "trivia" else "token ")
            & Token_Index'Image (Index (TD)) & "] "
            & Token_Kind_Name (Kind (TD))
            & " " & Image (Text (Token), With_Quotes => True));
         Token := Next (Token);
      end loop;
      New_Line;
   end Print_Token_Stream;

   -----------------
   -- Parse_Input --
   -----------------

   procedure Parse_Input (Content : String) is
      Ctx  : constant Analysis_Context := Create_Parse_Context;
      Unit : Analysis_Unit;
   begin
      Unit := Get_From_Buffer
        (Context  => Ctx,
         Filename => "<input>",
         Buffer   => Content,
         Rule     => Args.Rule.Get);

      if Has_Diagnostics (Unit) then
         Put_Line ("Parsing failed:");
         for D of Diagnostics (Unit) loop
            Put_Line (Format_GNU_Diagnostic (Unit, D));
         end loop;
      end if;

      if Args.Do_Print_Tokens.Get then
         Print_Token_Stream (Unit);

      else
         --  Error recovery may make the parser return something even on error:
         --  process it anyway.
         Process_Node (Root (Unit));
      end if;
   end Parse_Input;

   ------------------
   -- Process_File --
   ------------------

   procedure Process_File (Filename : String; Ctx : Analysis_Context)
   is
      package Node_Sets is new Ada.Containers.Hashed_Sets
        (Gpr_Node, Hash, "=", "=");

      Set : Node_Sets.Set;

      procedure Check_Consistency
        (Node, Parent : Gpr_Node);

      procedure Check_Consistency
        (Node, Parent : Gpr_Node) is
      begin
         if Node.Parent /= Parent then
            Put_Line ("Invalid parent for node " & Node.Image);
         end if;

         if Set.Contains (Node) then
            Put_Line ("Duplicate node" & Node.Image);
         end if;

         Set.Insert (Node);

         for C of Node.Children loop
            if not C.Is_Null then
               Check_Consistency (C, Node);
            end if;
         end loop;
      end Check_Consistency;

      Unit         : Analysis_Unit;
      Time_Before  : constant Time := Clock;
      Time_After   : Time;
      AST          : Gpr_Node;
   begin
      Unit := Get_From_File (Ctx, Filename, "", True, Rule => Args.Rule.Get);
      AST := Root (Unit);
      Time_After := Clock;

      if Has_Diagnostics (Unit) then
         for D of Diagnostics (Unit) loop
            Put_Line (Format_GNU_Diagnostic (Unit, D));
         end loop;
      end if;

      if Args.Do_Print_Tokens.Get then
         Print_Token_Stream (Unit);

      elsif not Is_Null (AST) then
         if not Args.Silent.Get then
            if Args.Do_Print_Trivia.Get then
               PP_Trivia (Unit);
            else
               Print (AST, not Args.Hide_Slocs.Get);
            end if;

            Process_Lookups (AST);
         end if;

         if Args.Print_Envs.Get then

            --  Run PLE on all PLE roots

               Unit.Populate_Lexical_Env;
            Put_Line ("");
            Put_Line ("==== Dumping lexical environments ====");
            Dump_Lexical_Env (Unit);
         end if;

         if Args.Check.Get then
            Put_Line ("");
            Put_Line ("==== Checking tree consistency ====");
            if not AST.Is_Null then
               Check_Consistency
                 (AST, No_Gpr_Node);
            end if;
         end if;

         if Args.Do_Unparse.Get then
            Put_Line (Unparse (AST));
         end if;
      end if;

      if Args.Measure_Time.Get then
         Put_Line
           ("Time elapsed: " & Duration'Image (Time_After - Time_Before));
      end if;

   end Process_File;

begin
   if not Args.Parser.Parse then
      return;
   end if;

   if Args.File_List.Get /= Null_Unbounded_String then
      declare
         F   : File_Type;
         Ctx : constant Analysis_Context := Create_Parse_Context;
      begin
         Open (F, In_File, To_String (Args.File_List.Get));
         while not End_Of_File (F) loop
            declare
               Filename : constant String := Get_Line (F);
            begin
               Process_File (Filename, Ctx);
            end;
         end loop;
         Close (F);
      end;

   elsif Args.File_Names.Get'Length /= 0 then
      declare
         Ctx : constant Analysis_Context := Create_Parse_Context;
      begin
         for File_Name of Args.File_Names.Get loop
            Process_File (To_String (File_Name), Ctx);
         end loop;
      end;

   else
      for Input_Str_Unbounded of Args.Strings.Get loop
         declare
            Time_Before : constant Time := Clock;
            Time_After  : Time;
            Input_Str   : constant String := To_String (Input_Str_Unbounded);
         begin
            Parse_Input (Input_Str);
            Time_After := Clock;
            if Args.Measure_Time.Get then
               Put_Line
                 ("Time elapsed: "
                  & Duration'Image (Time_After - Time_Before));
            end if;
         end;
      end loop;

   end if;

end Parse;