1 ------------------------------------------------------------------------------
3 -- GNAT COMPILER COMPONENTS --
9 -- Copyright (C) 1992-2021, Free Software Foundation, Inc. --
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. --
21 -- GNAT was originally developed by the GNAT team at New York University. --
22 -- Extensive contributions were provided by Ada Core Technologies Inc. --
24 ------------------------------------------------------------------------------
26 with Hostparm
; use Hostparm
;
28 with Output
; use Output
;
30 package body Stylesw
is
32 -- The following constant defines the default style options for -gnaty
34 Default_Style
: constant String :=
35 "3" & -- indentation level is 3
36 "a" & -- check attribute casing
37 "A" & -- check array attribute indexes
38 "b" & -- check no blanks at end of lines
39 "c" & -- check comment formats
40 "e" & -- check end/exit labels present
41 "f" & -- check no form/feeds vertical tabs in source
42 "h" & -- check no horizontal tabs in source
43 "i" & -- check if-then layout
44 "k" & -- check casing rules for keywords
45 "l" & -- check reference manual layout
46 "m" & -- check line length <= 79 characters
47 "n" & -- check casing of package Standard idents
48 "p" & -- check pragma casing
49 "r" & -- check casing for identifier references
50 "s" & -- check separate subprogram specs present
51 "t"; -- check token separation rules
53 -- The following constant defines the GNAT style options, showing them
54 -- as additions to the standard default style check options.
56 GNAT_Style
: constant String := Default_Style
&
57 "d" & -- check no DOS line terminators
58 "I" & -- check mode IN
59 "S" & -- check separate lines after THEN or ELSE
60 "u" & -- check no unnecessary blank lines
61 "x"; -- check extra parentheses around conditionals
63 -- Note: we intend GNAT_Style to also include the following, but we do
64 -- not yet have the whole tool suite clean with respect to this.
66 -- "B" & -- check boolean operators
68 -------------------------------
69 -- Reset_Style_Check_Options --
70 -------------------------------
72 procedure Reset_Style_Check_Options
is
74 Style_Check_Indentation
:= 0;
75 Style_Check_Array_Attribute_Index
:= False;
76 Style_Check_Attribute_Casing
:= False;
77 Style_Check_Blanks_At_End
:= False;
78 Style_Check_Blank_Lines
:= False;
79 Style_Check_Boolean_And_Or
:= False;
80 Style_Check_Comments
:= False;
81 Style_Check_DOS_Line_Terminator
:= False;
82 Style_Check_Mixed_Case_Decls
:= False;
83 Style_Check_End_Labels
:= False;
84 Style_Check_Form_Feeds
:= False;
85 Style_Check_Horizontal_Tabs
:= False;
86 Style_Check_If_Then_Layout
:= False;
87 Style_Check_Keyword_Casing
:= False;
88 Style_Check_Layout
:= False;
89 Style_Check_Max_Line_Length
:= False;
90 Style_Check_Max_Nesting_Level
:= False;
91 Style_Check_Missing_Overriding
:= False;
92 Style_Check_Mode_In
:= False;
93 Style_Check_Order_Subprograms
:= False;
94 Style_Check_Pragma_Casing
:= False;
95 Style_Check_References
:= False;
96 Style_Check_Separate_Stmt_Lines
:= False;
97 Style_Check_Specs
:= False;
98 Style_Check_Standard
:= False;
99 Style_Check_Tokens
:= False;
100 Style_Check_Xtra_Parens
:= False;
101 end Reset_Style_Check_Options
;
103 ---------------------
104 -- RM_Column_Check --
105 ---------------------
107 function RM_Column_Check
return Boolean is
109 return Style_Check
and Style_Check_Layout
;
112 ------------------------------
113 -- Save_Style_Check_Options --
114 ------------------------------
116 procedure Save_Style_Check_Options
(Options
: out Style_Check_Options
) is
119 procedure Add
(C
: Character; S
: Boolean);
120 -- Add given character C to string if switch S is true
122 procedure Add_Nat
(N
: Nat
);
123 -- Add given natural number to string
129 procedure Add
(C
: Character; S
: Boolean) is
141 procedure Add_Nat
(N
: Nat
) is
148 Options
(P
) := Character'Val (Character'Pos ('0') + N
mod 10);
151 -- Start of processing for Save_Style_Check_Options
154 Add
(Character'Val (Style_Check_Indentation
+ Character'Pos ('0')),
155 Style_Check_Indentation
/= 0);
157 Add
('a', Style_Check_Attribute_Casing
);
158 Add
('A', Style_Check_Array_Attribute_Index
);
159 Add
('b', Style_Check_Blanks_At_End
);
160 Add
('B', Style_Check_Boolean_And_Or
);
162 if Style_Check_Comments
then
163 if Style_Check_Comments_Spacing
= 2 then
164 Add
('c', Style_Check_Comments
);
166 pragma Assert
(Style_Check_Comments_Spacing
= 1);
167 Add
('C', Style_Check_Comments
);
171 Add
('d', Style_Check_DOS_Line_Terminator
);
172 Add
('D', Style_Check_Mixed_Case_Decls
);
173 Add
('e', Style_Check_End_Labels
);
174 Add
('f', Style_Check_Form_Feeds
);
175 Add
('h', Style_Check_Horizontal_Tabs
);
176 Add
('i', Style_Check_If_Then_Layout
);
177 Add
('I', Style_Check_Mode_In
);
178 Add
('k', Style_Check_Keyword_Casing
);
179 Add
('l', Style_Check_Layout
);
180 Add
('n', Style_Check_Standard
);
181 Add
('o', Style_Check_Order_Subprograms
);
182 Add
('O', Style_Check_Missing_Overriding
);
183 Add
('p', Style_Check_Pragma_Casing
);
184 Add
('r', Style_Check_References
);
185 Add
('s', Style_Check_Specs
);
186 Add
('S', Style_Check_Separate_Stmt_Lines
);
187 Add
('t', Style_Check_Tokens
);
188 Add
('u', Style_Check_Blank_Lines
);
189 Add
('x', Style_Check_Xtra_Parens
);
191 if Style_Check_Max_Line_Length
then
194 Add_Nat
(Style_Max_Line_Length
);
197 if Style_Check_Max_Nesting_Level
then
200 Add_Nat
(Style_Max_Nesting_Level
);
203 pragma Assert
(P
<= Options
'Last);
205 while P
< Options
'Last loop
209 end Save_Style_Check_Options
;
211 -------------------------------------
212 -- Set_Default_Style_Check_Options --
213 -------------------------------------
215 procedure Set_Default_Style_Check_Options
is
217 Reset_Style_Check_Options
;
218 Set_Style_Check_Options
(Default_Style
);
219 end Set_Default_Style_Check_Options
;
221 ----------------------------------
222 -- Set_GNAT_Style_Check_Options --
223 ----------------------------------
225 procedure Set_GNAT_Style_Check_Options
is
227 Reset_Style_Check_Options
;
228 Set_Style_Check_Options
(GNAT_Style
);
229 end Set_GNAT_Style_Check_Options
;
231 -----------------------------
232 -- Set_Style_Check_Options --
233 -----------------------------
235 -- Version used when no error checking is required
237 procedure Set_Style_Check_Options
(Options
: String) is
240 pragma Warnings
(Off
, EC
);
242 Set_Style_Check_Options
(Options
, OK
, EC
);
244 end Set_Style_Check_Options
;
246 -- Normal version with error checking
248 procedure Set_Style_Check_Options
251 Err_Col
: out Natural)
255 On
: Boolean := True;
256 -- Set to False if minus encountered
257 -- Set to True if plus encountered
259 Last_Option
: Character := ' ';
260 -- Set to last character encountered
262 procedure Add_Img
(N
: Natural);
263 -- Concatenates image of N at end of Style_Msg_Buf
265 procedure Bad_Style_Switch
(Msg
: String);
266 -- Called if bad style switch found. Msg is set in Style_Msg_Buf and
267 -- Style_Msg_Len. OK is set False.
273 procedure Add_Img
(N
: Natural) is
279 Style_Msg_Len
:= Style_Msg_Len
+ 1;
280 Style_Msg_Buf
(Style_Msg_Len
) :=
281 Character'Val (N
mod 10 + Character'Pos ('0'));
284 ----------------------
285 -- Bad_Style_Switch --
286 ----------------------
288 procedure Bad_Style_Switch
(Msg
: String) is
291 Style_Msg_Len
:= Msg
'Length;
292 Style_Msg_Buf
(1 .. Style_Msg_Len
) := Msg
;
293 end Bad_Style_Switch
;
295 -- Start of processing for Set_Style_Check_Options
298 Err_Col
:= Options
'First;
299 while Err_Col
<= Options
'Last loop
300 C
:= Options
(Err_Col
);
302 Err_Col
:= Err_Col
+ 1;
304 -- Turning switches on
315 Style_Check_Indentation
:=
316 Character'Pos (C
) - Character'Pos ('0');
319 Style_Check_Attribute_Casing
:= True;
322 Style_Check_Array_Attribute_Index
:= True;
325 Style_Check_Blanks_At_End
:= True;
328 Style_Check_Boolean_And_Or
:= True;
331 Style_Check_Comments
:= True;
332 Style_Check_Comments_Spacing
:= 2;
335 Style_Check_Comments
:= True;
336 Style_Check_Comments_Spacing
:= 1;
339 Style_Check_DOS_Line_Terminator
:= True;
342 Style_Check_Mixed_Case_Decls
:= True;
345 Style_Check_End_Labels
:= True;
348 Style_Check_Form_Feeds
:= True;
351 Set_GNAT_Style_Check_Options
;
354 Style_Check_Horizontal_Tabs
:= True;
357 Style_Check_If_Then_Layout
:= True;
360 Style_Check_Mode_In
:= True;
363 Style_Check_Keyword_Casing
:= True;
366 Style_Check_Layout
:= True;
369 Style_Max_Nesting_Level
:= 0;
371 if Err_Col
> Options
'Last
372 or else Options
(Err_Col
) not in '0' .. '9'
374 Bad_Style_Switch
("invalid nesting level");
379 Style_Max_Nesting_Level
:=
380 Style_Max_Nesting_Level
* 10 +
381 Character'Pos (Options
(Err_Col
)) - Character'Pos ('0');
383 if Style_Max_Nesting_Level
> 999 then
385 ("max nesting level (999) exceeded in style check");
389 Err_Col
:= Err_Col
+ 1;
390 exit when Err_Col
> Options
'Last
391 or else Options
(Err_Col
) not in '0' .. '9';
394 Style_Check_Max_Nesting_Level
:= Style_Max_Nesting_Level
/= 0;
397 Style_Check_Max_Line_Length
:= True;
398 Style_Max_Line_Length
:= 79;
401 Style_Max_Line_Length
:= 0;
403 if Err_Col
> Options
'Last
404 or else Options
(Err_Col
) not in '0' .. '9'
407 ("invalid line length in style check");
412 Style_Max_Line_Length
:=
413 Style_Max_Line_Length
* 10 +
414 Character'Pos (Options
(Err_Col
)) - Character'Pos ('0');
416 if Style_Max_Line_Length
> Int
(Max_Line_Length
) then
418 Style_Msg_Buf
(1 .. 27) := "max line length allowed is ";
420 Add_Img
(Natural (Max_Line_Length
));
424 Err_Col
:= Err_Col
+ 1;
425 exit when Err_Col
> Options
'Last
426 or else Options
(Err_Col
) not in '0' .. '9';
429 Style_Check_Max_Line_Length
:= Style_Max_Line_Length
/= 0;
432 Style_Check_Standard
:= True;
435 Reset_Style_Check_Options
;
438 Style_Check_Order_Subprograms
:= True;
441 Style_Check_Missing_Overriding
:= True;
444 Style_Check_Pragma_Casing
:= True;
447 Style_Check_References
:= True;
450 Style_Check_Specs
:= True;
453 Style_Check_Separate_Stmt_Lines
:= True;
456 Style_Check_Tokens
:= True;
459 Style_Check_Blank_Lines
:= True;
462 Style_Check_Xtra_Parens
:= True;
465 Set_Default_Style_Check_Options
;
471 if Ignore_Unrecognized_VWY_Switches
then
472 Write_Line
("unrecognized switch -gnaty" & C
& " ignored");
474 Err_Col
:= Err_Col
- 1;
475 Bad_Style_Switch
("invalid style switch");
480 -- Turning switches off
491 Style_Check_Indentation
:= 0;
494 Style_Check_Attribute_Casing
:= False;
497 Style_Check_Array_Attribute_Index
:= False;
500 Style_Check_Blanks_At_End
:= False;
503 Style_Check_Boolean_And_Or
:= False;
506 Style_Check_Comments
:= False;
509 Style_Check_DOS_Line_Terminator
:= False;
512 Style_Check_Mixed_Case_Decls
:= False;
515 Style_Check_End_Labels
:= False;
518 Style_Check_Form_Feeds
:= False;
521 Reset_Style_Check_Options
;
524 Style_Check_Horizontal_Tabs
:= False;
527 Style_Check_If_Then_Layout
:= False;
530 Style_Check_Mode_In
:= False;
533 Style_Check_Keyword_Casing
:= False;
536 Style_Check_Layout
:= False;
539 Style_Max_Nesting_Level
:= 0;
542 Style_Check_Max_Line_Length
:= False;
545 Style_Max_Line_Length
:= 0;
546 Style_Check_Max_Line_Length
:= False;
549 Style_Check_Standard
:= False;
552 Style_Check_Order_Subprograms
:= False;
555 Style_Check_Missing_Overriding
:= False;
558 Style_Check_Pragma_Casing
:= False;
561 Style_Check_References
:= False;
564 Style_Check_Specs
:= False;
567 Style_Check_Separate_Stmt_Lines
:= False;
570 Style_Check_Tokens
:= False;
573 Style_Check_Blank_Lines
:= False;
576 Style_Check_Xtra_Parens
:= False;
582 if Ignore_Unrecognized_VWY_Switches
then
583 Write_Line
("unrecognized switch -gnaty-" & C
& " ignored");
585 Err_Col
:= Err_Col
- 1;
586 Bad_Style_Switch
("invalid style switch");
593 -- Turn on style checking if other than N at end of string
595 Style_Check
:= (Last_Option
/= 'N');
597 end Set_Style_Check_Options
;