wisitoken_4.2.1_dc778486/wisitoken-bnf.ads

  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
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
--  Abstract :
--
--  Root package for generating a parser from a BNF source file; see [2]
--
--  The input file syntax is based on BNF syntax [1] with declarations
--  and grammar actions.
--
--  Reference :
--
--  [1] https://en.wikipedia.org/wiki/Backus%E2%80%93Naur_form
--  [2] http://www.nongnu.org/ada-mode/wisi/wisi-user_guide.html, (info "(wisi-user_guide)Top")
--
--  Copyright (C) 2012 - 2015, 2017 - 2023 Free Software Foundation, Inc.
--
--  The WisiToken package is free software; you can redistribute it
--  and/or modify it under terms of the GNU General Public License as
--  published by the Free Software Foundation; either version 3, or
--  (at your option) any later version. This library is distributed in
--  the hope that it will be useful, but WITHOUT ANY WARRANTY; without
--  even the implied warranty of MERCHANTABILITY or FITNESS FOR A
--  PARTICULAR PURPOSE.
--
--  As a special exception under Section 7 of GPL version 3, you are granted
--  additional permissions described in the GCC Runtime Library Exception,
--  version 3.1, as published by the Free Software Foundation.

pragma License (Modified_GPL);

with Ada.Characters.Handling;
with Ada.Containers.Doubly_Linked_Lists;
with Ada.Containers.Indefinite_Doubly_Linked_Lists;
with Ada.Containers.Ordered_Maps;
with Ada.Strings.Unbounded;
with Ada.Unchecked_Deallocation;
with SAL.Gen_Unbounded_Definite_Vectors.Gen_Image;
with WisiToken.Parse.LR;
with WisiToken.Syntax_Trees;
package WisiToken.BNF is

   --  See also WisiToken exceptions

   Not_Found : exception;
   --  Something not found; should be handled and converted to another
   --  exception.

   type Generate_Algorithm is (None, LALR, LR1, Packrat_Gen, Packrat_Proc, External, Tree_Sitter);
   subtype Valid_Generate_Algorithm is Generate_Algorithm range LALR .. Generate_Algorithm'Last;
   subtype LR_Generate_Algorithm is Generate_Algorithm range LALR .. LR1;
   subtype Packrat_Generate_Algorithm is Generate_Algorithm range Packrat_Gen .. Packrat_Proc;
   subtype LR_Packrat_Generate_Algorithm is Generate_Algorithm range LALR .. Packrat_Proc;

   Generate_Algorithm_Image : constant array (Generate_Algorithm) of String_Access_Constant :=
     (None         => new String'("None"),
      LALR         => new String'("LALR"),
      LR1          => new String'("LR1"),
      Packrat_Gen  => new String'("Packrat_Gen"),
      Packrat_Proc => new String'("Packrat_Proc"),
      External     => new String'("External"),
      Tree_Sitter  => new String'("Tree_Sitter"));
   --  Suitable for Ada package names. For file names, use To_Lower (Gen_Alg'Image).

   function To_Generate_Algorithm (Item : in String) return Generate_Algorithm;
   --  Raises User_Error for invalid Item

   type Generate_Algorithm_Set is array (Generate_Algorithm) of Boolean;
   type Generate_Algorithm_Set_Access is access Generate_Algorithm_Set;

   function From_Generate_Env_Var return Generate_Algorithm_Set;

   type Output_Language is (None, Ada_Lang, Ada_Emacs_Lang);
   subtype Ada_Output_Language is Output_Language range Ada_Lang .. Ada_Emacs_Lang;
   --  _Lang to avoid colliding with the standard package Ada and
   --  WisiToken packages named *.Ada. In the grammar file, they
   --  are named by (case insensitive):
   Output_Language_Image : constant array (Output_Language) of String_Access_Constant :=
     (None           => new String'("None"),
      Ada_Lang       => new String'("Ada"),
      Ada_Emacs_Lang => new String'("Ada_Emacs"));

   function To_Output_Language (Item : in String) return Output_Language;
   --  Raises User_Error for invalid Item

   type Lexer_Type is (None, re2c_Lexer, Tree_Sitter_Lexer);
   subtype Valid_Lexer is Lexer_Type range re2c_Lexer .. Lexer_Type'Last;
   --  We append "_Lexer" to these names to avoid colliding with the
   --  similarly-named WisiToken packages. In the grammar file, they
   --  are named by:
   Lexer_Image : constant array (Lexer_Type) of String_Access_Constant :=
     (None              => new String'("none"),
      re2c_Lexer        => new String'("re2c"),
      Tree_Sitter_Lexer => new String'("tree_sitter"));

   function To_Lexer (Item : in String) return Lexer_Type;
   --  Raises User_Error for invalid Item

   type Lexer_Set is array (Lexer_Type) of Boolean;

   type Lexer_Generate_Algorithm_Set is array (Lexer_Type) of Generate_Algorithm_Set;
   --  %if lexer changes the generated parse table

   type Interface_Type is (None, Process, Module);
   subtype Valid_Interface is Interface_Type range Process .. Module;

   Interface_Image : constant array (Interface_Type) of String_Access_Constant :=
     --  WORKAROUND: 'Image in GNAT Community 2020 with -gnat2020 returns integer
     (None    => new String'("none"),
      Process => new String'("process"),
      Module  => new String'("module"));

   function Is_Valid_Interface (Item : in String) return Boolean;

   type Generate_Tuple is record
      Gen_Alg        : Generate_Algorithm := None;
      Out_Lang       : Output_Language    := None;
      Lexer          : Lexer_Type         := None;
      Interface_Kind : Interface_Type     := None;
      Text_Rep       : Boolean            := False;
   end record;

   function Image (Item : in Generate_Tuple) return String;

   type Generate_Set is array (Natural range <>) of Generate_Tuple;
   type Generate_Set_Access is access Generate_Set;
   procedure Free is new Ada.Unchecked_Deallocation (Generate_Set, Generate_Set_Access);

   procedure Add
     (Set   : in out Generate_Set_Access;
      Tuple : in     Generate_Tuple);

   function Text_Rep_File_Name
     (File_Name_Root   : in String;
      Tuple            : in Generate_Tuple;
      If_Lexer_Present : in Boolean)
     return String
   is (File_Name_Root & "_" &
         Ada.Characters.Handling.To_Lower (Generate_Algorithm_Image (Tuple.Gen_Alg).all) &
         (if If_Lexer_Present
          then "_" & Lexer_Image (Tuple.Lexer).all
          else "") &
         "_parse_table.txt");

   package String_Lists is new Ada.Containers.Indefinite_Doubly_Linked_Lists (String);

   package String_Arrays is new SAL.Gen_Unbounded_Definite_Vectors
     (WisiToken.Identifier_Index, Ada.Strings.Unbounded.Unbounded_String,
      Default_Element => Ada.Strings.Unbounded.Null_Unbounded_String);

   type Language_Param_Type is record
      --  Set by grammar file declarations or command line options. Error
      --  recover parameters are in McKenzie_Recover_Param_Type below.
      Case_Insensitive          : Boolean  := False;
      Declare_Enums             : Boolean  := True;
      End_Names_Optional_Option : Ada.Strings.Unbounded.Unbounded_String;
      Error_Recover             : Boolean  := False; -- True if grammar specifies error recover parameters.
      Language_Runtime_Name     : Ada.Strings.Unbounded.Unbounded_String;
      Recursion_Strategy        : WisiToken.Recursion_Strategy := Full;
      Start_Token               : Ada.Strings.Unbounded.Unbounded_String;
      Use_Language_Runtime      : Boolean  := True;
   end record;

   type Raw_Code_Location is
     (Copyright_License,
      Actions_Spec_Context, Actions_Spec_Pre, Actions_Spec_Post,
      Actions_Body_Context, Actions_Body_Pre, Actions_Body_Post);
   --  So far we have not needed raw code other than license in the main
   --  package.

   type Raw_Code is array (Raw_Code_Location) of String_Lists.List;

   subtype String_2 is String (1 .. 2);

   Ada_Comment   : constant String_2 := "--";
   C_Comment     : constant String_2 := "//";
   Elisp_Comment : constant String_2 := ";;";

   function Split_Lines (Item : in String) return String_Lists.List;

   function Trim (Item : in String_Lists.List; Comment_Start : in String) return String_Lists.List;
   --  From each element, delete trailing comments starting with
   --  Comment_Start; delete leading and trailing spaces.

   procedure Put_Raw_Code
     (Comment_Syntax : in String_2;
      Code           : in String_Lists.List;
      Comment_Only   : in Boolean := False);
   --  Output Code to Ada.Text_IO.Current_Output.
   --
   --  If first two characters of a line are the same and not ' ', it is
   --  assumed to be a comment; ensure the output line has
   --  Comment_Syntax.
   --
   --  If Comment_Only is True, or if the comment syntax used in Code
   --  does not equal Comment_Syntax, only output comment lines.
   --
   --  If Comment_Syntax is Elisp_Comment, only output lines that are
   --  valid elisp comments or forms (ie start with ';;' or '(').
   --
   --  Otherwise output all lines.

   procedure Put_File_Header
     (Comment_Syntax   : in String_2;
      Emacs_Local_Vars : in String         := "";
      Use_Tuple        : in Boolean        := False;
      Tuple            : in Generate_Tuple := (others => <>));
   --  Output "parser support file <emacs_mode> /n command line: " comment to Ada.Text_IO.Current_Output.

   type String_Pair_Type is record
      Name  : aliased Ada.Strings.Unbounded.Unbounded_String;
      Value : Ada.Strings.Unbounded.Unbounded_String;
   end record;

   package String_Pair_Lists is new Ada.Containers.Doubly_Linked_Lists (String_Pair_Type);
   function Is_Present (List : in String_Pair_Lists.List; Name : in String) return Boolean;
   function Value (List : in String_Pair_Lists.List; Name : in String) return String;

   type String_Triple_Type is record
      Name         : aliased Ada.Strings.Unbounded.Unbounded_String;
      Value        : Ada.Strings.Unbounded.Unbounded_String;
      Repair_Image : Ada.Strings.Unbounded.Unbounded_String;
   end record;

   package String_Triple_Lists is new Ada.Containers.Doubly_Linked_Lists (String_Triple_Type);

   package String_Pair_Maps is new Ada.Containers.Ordered_Maps
     (Ada.Strings.Unbounded.Unbounded_String, String_Pair_Type, Ada.Strings.Unbounded."<");

   type McKenzie_Recover_Param_Type is record
      Default_Insert              : Natural                    := 0;
      Default_Delete_Terminal     : Natural                    := 0;
      Default_Push_Back           : Natural                    := 0; -- also default for undo_reduce
      Delete                      : String_Pair_Lists.List;
      Insert                      : String_Pair_Lists.List;
      Push_Back                   : String_Pair_Lists.List;
      Undo_Reduce                 : String_Pair_Lists.List;
      Minimal_Complete_Cost_Delta : Integer                    :=
        WisiToken.Parse.LR.Default_McKenzie_Param.Minimal_Complete_Cost_Delta;
      Fast_Forward                : Integer                    :=
        WisiToken.Parse.LR.Default_McKenzie_Param.Fast_Forward;
      Matching_Begin              : Integer                    :=
        WisiToken.Parse.LR.Default_McKenzie_Param.Matching_Begin;
      Ignore_Check_Fail           : Natural                    :=
        WisiToken.Parse.LR.Default_McKenzie_Param.Ignore_Check_Fail;
      Check_Limit                 : Syntax_Trees.Sequential_Index :=
        WisiToken.Parse.LR.Default_McKenzie_Param.Check_Limit;
      Zombie_Limit                : Positive :=
        WisiToken.Parse.LR.Default_McKenzie_Param.Zombie_Limit;
      Check_Delta_Limit           : Natural                    :=
        WisiToken.Parse.LR.Default_McKenzie_Param.Check_Delta_Limit;
      Enqueue_Limit               : Natural                    :=
        WisiToken.Parse.LR.Default_McKenzie_Param.Enqueue_Limit;
   end record;

   type Token_Kind_Type is record
      Kind   : Ada.Strings.Unbounded.Unbounded_String;
      Tokens : String_Triple_Lists.List;
   end record;

   package Token_Lists is new Ada.Containers.Doubly_Linked_Lists (Token_Kind_Type);

   function Count (Tokens : in Token_Lists.List) return Integer;
   --  Count of all leaves.

   procedure Add_Token
     (Tokens       : in out Token_Lists.List;
      Kind         : in     String;
      Name         : in     String;
      Value        : in     String;
      Repair_Image : in     String := "");
   --  Add Name, Value, Repair_Image to Kind list in Tokens.

   function Is_In (Tokens : in Token_Lists.List; Kind : in String) return Boolean;
   function Is_In
     (Tokens : in Token_Lists.List;
      Kind   : in String;
      Value  : in String)
     return Boolean;

   type Conflict is record
      Source_Line : WisiToken.Line_Number_Type;
      Items       : String_Pair_Lists.List;
      --  Item (I).Name = action, .Value = lhs
      On          : Ada.Strings.Unbounded.Unbounded_String;
      Resolution  : Ada.Strings.Unbounded.Unbounded_String;
      --  Resolution is not empty if this is from %conflict_resolution.
   end record;

   package Conflict_Lists is new Ada.Containers.Doubly_Linked_Lists (Conflict);

   type Labeled_Token is record
      Label : Ada.Strings.Unbounded.Unbounded_String;

      Orig_Token_Index : SAL.Base_Peek_Type := 0;
      --  Index of this token in Orig_EBNF_RHS; 0 if this is that RHS, or if
      --  this token is added by translating to BNF.

      Identifier : Ada.Strings.Unbounded.Unbounded_String;
   end record;

   package Labeled_Token_Arrays is new SAL.Gen_Unbounded_Definite_Vectors
     (Positive_Index_Type, Labeled_Token, Default_Element => (others => <>));
   --  Index matches Syntax_Trees.Valid_Node_Index_Array, used for Tokens
   --  in call to post parse grammar action.

   function Image (Item : in Labeled_Token) return String;
   function Image is new Labeled_Token_Arrays.Gen_Image (Image);

   type RHS_Type is record
      Associativity : WisiToken.Associativity      := WisiToken.None;
      Precedence    : WisiToken.Base_Precedence_ID := WisiToken.No_Precedence;

      Tokens : Labeled_Token_Arrays.Vector;

      Orig_EBNF_RHS : Boolean := False;

      EBNF_RHS_Index : Natural := Natural'Last;
      --  Index of RHS containing EBNF RHS that this was copied from by
      --  Translate_EBNF_To_BNF; used to map tokens in actions.

      Auto_Token_Labels : Boolean := False;
      --  True if some token labels generated by Translate_EBNF_To_BNF

      Post_Parse_Action : Ada.Strings.Unbounded.Unbounded_String;
      In_Parse_Action   : Ada.Strings.Unbounded.Unbounded_String;
      Source_Line       : WisiToken.Line_Number_Type := WisiToken.Line_Number_Type'First;
   end record;
   package RHS_Lists is new Ada.Containers.Doubly_Linked_Lists (RHS_Type, "=");

   type Rule_Type is record
      Left_Hand_Side   : aliased Ada.Strings.Unbounded.Unbounded_String;
      Precedence       : WisiToken.Base_Precedence_ID;
      Right_Hand_Sides : RHS_Lists.List;
      Labels           : String_Arrays.Vector; -- All labels used in any RHS
      Optimized_List   : Boolean := False;
      Source_Line      : WisiToken.Line_Number_Type;
   end record;

   package Rule_Lists is new Ada.Containers.Doubly_Linked_Lists (Rule_Type);

   function Is_Present (Rules : in Rule_Lists.List; LHS : in String) return Boolean;

   function Find (Rules : in Rule_Lists.List; LHS : in String) return Rule_Lists.Cursor;

   type Tokens is record
      Non_Grammar : Token_Lists.List;
      Keywords    : String_Pair_Lists.List;
      Tokens      : Token_Lists.List;
      Rules       : Rule_Lists.List;
      --  Rules included here because they define the nonterminal tokens, as
      --  well as the productions.

      Virtual_Identifiers : String_Arrays.Vector;
      --  Nonterminals and terminals introduced by translating from EBNF to
      --  BNF.

      Lexer_Regexps : String_Pair_Lists.List; -- %lexer_regexp
      Faces         : String_Lists.List;      -- %elisp_face

      Escape_Delimiter_Doubled : String_Lists.List; -- %escape_delimiter_doubled

      Indents : String_Pair_Maps.Map;
      --  %elisp_indent; variables or functions used in wisi-indent-action.
      --  Map key => elisp_name
      --  Name    => Ada_Name
      --  Value   => arg_count, token_index_args

      Actions : String_Pair_Maps.Map;
      --  %elisp_action custom grammar actions.
      --  Map key => elisp name
      --  Name    => post-parse action; navigate, face, indent.
      --  Value   => Ada name
   end record;

   function "+" (Item : in String) return Ada.Strings.Unbounded.Unbounded_String
     renames Ada.Strings.Unbounded.To_Unbounded_String;

   function "-" (Item : in Ada.Strings.Unbounded.Unbounded_String) return String
     renames Ada.Strings.Unbounded.To_String;

   function To_Lower (Item : in String) return String
     renames Ada.Characters.Handling.To_Lower;

   function To_Upper (Item : in String) return String
     renames Ada.Characters.Handling.To_Upper;

   function To_Upper (Item : in Character) return Character
     renames Ada.Characters.Handling.To_Upper;

   function "+" (List : in String_Lists.List; Item : in String) return String_Lists.List;

   function String_To_String_List (Item : in String) return String_Lists.List;
   function "+" (Item : in String) return String_Lists.List renames String_To_String_List;

   function RHS_To_RHS_List (Item : in RHS_Type) return RHS_Lists.List;
   function "+" (Item : in RHS_Type) return RHS_Lists.List renames RHS_To_RHS_List;

   function "+" (List : in RHS_Lists.List; Item : in RHS_Type) return RHS_Lists.List;

   function Image (Item : in Boolean) return String
     is (if Item then "True" else "False");
   --  Match casing in Standard.

   procedure Put_Command_Line
     (Comment_Prefix : in String;
      Use_Tuple      : in Boolean        := False;
      Tuple          : in Generate_Tuple := (others => <>));
   --  Put command line to current output; indicate current tuple.

end WisiToken.BNF;