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
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
|
-- GHDL driver - main part.
-- Copyright (C) 2002 - 2010 Tristan Gingold
--
-- This program is free software: you can redistribute it and/or modify
-- it under the terms of the GNU General Public License as published by
-- the Free Software Foundation, either version 2 of the License, or
-- (at your option) any later version.
--
-- This program 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. See the
-- GNU General Public License for more details.
--
-- You should have received a copy of the GNU General Public License
-- along with this program. If not, see <gnu.org/licenses>.
with Ada.Command_Line;
with Ada.Command_Line.Response_File;
with Simple_IO;
with Version;
with Bug;
with Types; use Types;
with Errorout; use Errorout;
with Errorout.Console;
with Default_Paths;
package body Ghdlmain is
procedure Init (Cmd : in out Command_Type)
is
pragma Unreferenced (Cmd);
begin
null;
end Init;
procedure Decode_Option (Cmd : in out Command_Type;
Option : String;
Arg : String;
Res : out Option_State)
is
pragma Unreferenced (Cmd);
pragma Unreferenced (Option);
pragma Unreferenced (Arg);
begin
Res := Option_Unknown;
end Decode_Option;
procedure Disp_Long_Help (Cmd : Command_Type)
is
pragma Unreferenced (Cmd);
use Simple_IO;
begin
Put_Line ("This command does not accept options.");
end Disp_Long_Help;
First_Cmd : Command_Acc := null;
Last_Cmd : Command_Acc := null;
procedure Register_Command (Cmd : Command_Acc) is
begin
if First_Cmd = null then
First_Cmd := Cmd;
else
Last_Cmd.Next := Cmd;
end if;
Last_Cmd := Cmd;
end Register_Command;
-- Find the command.
function Find_Command (Action : String) return Command_Acc
is
Cmd : Command_Acc;
begin
Cmd := First_Cmd;
while Cmd /= null loop
if Decode_Command (Cmd.all, Action) then
return Cmd;
end if;
Cmd := Cmd.Next;
end loop;
return null;
end Find_Command;
function Decode_Command (Cmd : Command_Str_Type; Name : String)
return Boolean is
begin
return Name = Cmd.Cmd_Str.all;
end Decode_Command;
function Get_Short_Help (Cmd : Command_Str_Type) return String is
begin
return Cmd.Help_Str.all;
end Get_Short_Help;
procedure Perform_Action
(Cmd : in out Command_Str_Disp; Args : Argument_List)
is
pragma Unreferenced (Args);
begin
Simple_IO.Put_Line (Cmd.Disp.all);
end Perform_Action;
-- Command help.
type Command_Help is new Command_Type with null record;
function Decode_Command (Cmd : Command_Help; Name : String) return Boolean;
procedure Decode_Option (Cmd : in out Command_Help;
Option : String;
Arg : String;
Res : out Option_State);
function Get_Short_Help (Cmd : Command_Help) return String;
procedure Perform_Action (Cmd : in out Command_Help; Args : Argument_List);
function Decode_Command (Cmd : Command_Help; Name : String) return Boolean
is
pragma Unreferenced (Cmd);
begin
return
Name = "help" or else
Name = "--help" or else
Name = "-h";
end Decode_Command;
procedure Decode_Option (Cmd : in out Command_Help;
Option : String;
Arg : String;
Res : out Option_State)
is
pragma Unreferenced (Cmd);
pragma Unreferenced (Option);
pragma Unreferenced (Arg);
begin
Res := Option_End;
end Decode_Option;
function Get_Short_Help (Cmd : Command_Help) return String
is
pragma Unreferenced (Cmd);
begin
return "help [CMD]"
& ASCII.LF & " Display this help or [help on CMD]"
& ASCII.LF & " aliases: -h, --help";
end Get_Short_Help;
procedure Perform_Action (Cmd : in out Command_Help; Args : Argument_List)
is
pragma Unreferenced (Cmd);
use Simple_IO;
use Ada.Command_Line;
C : Command_Acc;
begin
if Args'Length = 0 then
Put_Line ("usage: " & Command_Name & " COMMAND [OPTIONS] ...");
Put_Line ("COMMAND is one of:");
C := First_Cmd;
while C /= null loop
declare
S : constant String := Get_Short_Help (C.all);
begin
if S'Length > 1 and then S (S'First) /= '!' then
Put_Line (S);
end if;
end;
C := C.Next;
end loop;
New_Line;
Put_Line ("To display the options of a GHDL program,");
Put_Line (" run your program with the 'help' option.");
Put_Line ("Also see 'opts-help' for analyzer options.");
New_Line;
Put_Line ("Please, refer to the GHDL manual for more information.");
Put_Line ("Report issues on https://github.com/ghdl/ghdl");
elsif Args'Length = 1 then
C := Find_Command (Args (1).all);
if C = null then
Error ("Command '" & Args (1).all & "' is unknown.");
raise Option_Error;
end if;
Put_Line (Get_Short_Help (C.all));
Disp_Long_Help (C.all);
else
Error ("Command 'help' accepts at most one argument.");
raise Option_Error;
end if;
end Perform_Action;
-- Command options help.
type Command_Option_Help is new Command_Type with null record;
function Decode_Command (Cmd : Command_Option_Help; Name : String)
return Boolean;
function Get_Short_Help (Cmd : Command_Option_Help) return String;
procedure Perform_Action (Cmd : in out Command_Option_Help;
Args : Argument_List);
function Decode_Command (Cmd : Command_Option_Help; Name : String)
return Boolean
is
pragma Unreferenced (Cmd);
begin
return
Name = "opts-help" or else
Name = "--options-help";
end Decode_Command;
function Get_Short_Help (Cmd : Command_Option_Help) return String
is
pragma Unreferenced (Cmd);
begin
return "opts-help"
& ASCII.LF & " Display help for analyzer options"
& ASCII.LF & " alias: --options-help";
end Get_Short_Help;
procedure Perform_Action (Cmd : in out Command_Option_Help;
Args : Argument_List)
is
pragma Unreferenced (Cmd);
begin
if Args'Length /= 0 then
Error
("warning: command 'opts-help' does not accept any argument");
end if;
Options.Disp_Options_Help;
end Perform_Action;
-- Command Version
type Command_Version is new Command_Type with null record;
function Decode_Command (Cmd : Command_Version; Name : String)
return Boolean;
function Get_Short_Help (Cmd : Command_Version) return String;
procedure Perform_Action (Cmd : in out Command_Version;
Args : Argument_List);
function Decode_Command (Cmd : Command_Version; Name : String)
return Boolean
is
pragma Unreferenced (Cmd);
begin
return
Name = "version" or else
Name = "--version" or else
Name = "-v";
end Decode_Command;
function Get_Short_Help (Cmd : Command_Version) return String
is
pragma Unreferenced (Cmd);
begin
return "version"
& ASCII.LF & " Display ghdl version"
& ASCII.LF & " aliases: -v, --version";
end Get_Short_Help;
procedure Perform_Action (Cmd : in out Command_Version;
Args : Argument_List)
is
pragma Unreferenced (Cmd);
use Simple_IO;
begin
if Args'Length /= 0 then
if Args (1).all = "ref" or else Args (1).all = "--ref" then
Put_Line (Version.Ghdl_Ref);
return;
end if;
if Args (1).all = "hash" or else Args (1).all = "--hash" then
Put_Line (Version.Ghdl_Hash);
return;
end if;
Error ("warning: 'version' subcommand '"
& Args(1).all & "' not supported");
return;
end if;
Put ("GHDL ");
Put (Version.Ghdl_Ver);
Put (' ');
Put_Line (Version.Ghdl_Release);
Put_Line (" Compiled with " & Bug.Get_Gnat_Version);
if Version_String /= null then
Put (" ");
Put (Version_String.all);
end if;
New_Line;
Put_Line ("Written by Tristan Gingold.");
New_Line;
-- Display copyright. Assume 80 cols terminal.
Put_Line ("Copyright (C) 2003 - 2021 Tristan Gingold.");
Put_Line ("GHDL is free software, covered by the "
& "GNU General Public License. There is NO");
Put_Line ("warranty; not even for MERCHANTABILITY or"
& " FITNESS FOR A PARTICULAR PURPOSE.");
end Perform_Action;
-- Disp MSG on the standard output with the command name.
procedure Error (Msg : String)is
begin
Report_Msg (Msgid_Error, Option, No_Source_Coord, Msg);
end Error;
procedure Warning (Msg : String) is
begin
Report_Msg (Msgid_Warning, Option, No_Source_Coord, Msg);
end Warning;
function Index (Str : String; C : Character) return Natural is
begin
for I in Str'Range loop
if Str (I) = C then
return I;
end if;
end loop;
return 0;
end Index;
-- Decode command CMD_NAME and return the command_type.
-- If the command is not known, emit an error message and
-- raise Option_Error.
function Find_Command_With_Error (Cmd_Name : String) return Command_Acc
is
Cmd : Command_Acc;
begin
-- Decode command.
Cmd := Find_Command (Cmd_Name);
if Cmd = null then
Error ("unknown command '" & Cmd_Name & "', try 'help'");
raise Option_Error;
end if;
return Cmd;
end Find_Command_With_Error;
procedure Decode_Command_Options (Cmd : in out Command_Type'Class;
Args : Argument_List;
First_Arg : out Natural)
is
Arg_Index : Natural;
begin
Init (Cmd);
-- Decode options.
First_Arg := 0;
Arg_Index := Args'First;
while Arg_Index <= Args'Last loop
declare
Arg : constant String_Access := Args (Arg_Index);
Res : Option_State;
begin
if Arg (1) = '-' then
-- Argument is an option.
if First_Arg > 0 then
Error ("options after file");
raise Option_Error;
end if;
Decode_Option (Cmd, Arg.all, "", Res);
case Res is
when Option_Unknown =>
Error ("unknown command option '" & Arg.all & "'");
raise Option_Error;
when Option_Err =>
raise Option_Error;
when Option_Ok =>
Arg_Index := Arg_Index + 1;
when Option_Arg_Req =>
if Arg_Index + 1 > Args'Last then
Error
("option '" & Arg.all & "' requires an argument");
raise Option_Error;
end if;
Decode_Option
(Cmd, Arg.all, Args (Arg_Index + 1).all, Res);
if Res /= Option_Arg then
raise Program_Error;
end if;
Arg_Index := Arg_Index + 2;
when Option_Arg =>
raise Program_Error;
when Option_End =>
First_Arg := Arg_Index;
exit;
end case;
else
First_Arg := Arg_Index;
exit;
end if;
end;
end loop;
if First_Arg = 0 then
First_Arg := Args'Last + 1;
end if;
end Decode_Command_Options;
Is_Windows : constant Boolean :=
Default_Paths.Shared_Library_Extension = ".dll";
function Convert_Path_To_Unix (Path : String) return String is
begin
if Is_Windows then
declare
Res : String := Path;
begin
-- Convert path separators.
for I in Res'Range loop
if Res (I) = '\' then
Res (I) := '/';
end if;
end loop;
-- Convert C: to /C/
if Res'Length > 2
and then (Res (Res'First) in 'a' .. 'z'
or else Res (Res'First) in 'A' .. 'Z')
and then Res (Res'First + 1) = ':'
then
Res (Res'First + 1) := '/';
return '/' & Res;
end if;
return Res;
end;
else
return Path;
end if;
end Convert_Path_To_Unix;
procedure Main
is
use Ada.Command_Line;
Args : String_List_Access;
Arg_Index : Natural;
begin
-- Set program name for error message.
Errorout.Console.Set_Program_Name (Command_Name);
Errorout.Console.Install_Handler;
-- Initialize global structures.
Options.Initialize;
-- Handle case of no argument
if Argument_Count = 0 then
Error ("missing command, try " & Command_Name & " 'help'");
raise Option_Error;
end if;
Args := new String_List (1 .. Argument_Count);
for I in Args'Range loop
Args (I) := new String'(Argument (I));
pragma Assert (Args (I)'First = 1);
if Args (I)'Last < 1 then
Error ("empty argument on the command line (#"
& Natural'Image (I) & ")");
raise Option_Error;
end if;
end loop;
-- Expand response files
Arg_Index := 1;
while Arg_Index <= Args'Last loop
if Args (Arg_Index).all (1) = '@' then
declare
Rsp_Arg : constant String_Access := Args (Arg_Index);
Rsp_File : constant String := Rsp_Arg (2 .. Rsp_Arg'Last);
begin
-- Need a second declare block so that the exception handler
-- can use Rsp_File.
declare
Exp_Args : constant GNAT.OS_Lib.Argument_List :=
Response_File.Arguments_From (Rsp_File);
Exp_Length : constant Natural := Exp_Args'Length;
New_Args : String_List_Access;
begin
New_Args :=
new String_List (1 .. Args'Last + Exp_Length - 1);
-- Copy arguments from the response file.
New_Args (1 .. Arg_Index - 1) := Args (1 .. Arg_Index - 1);
New_Args (Arg_Index .. Arg_Index + Exp_Length - 1) :=
Exp_Args;
New_Args (Arg_Index + Exp_Length .. New_Args'Last) :=
Args (Arg_Index + 1 .. Args'Last);
-- Free array. Note: Free deallocates both the array and
-- its elements. But we need to keep the elements.
Args.all := (others => null);
Args (Arg_Index) := Rsp_Arg;
Free (Args);
Args := New_Args;
Arg_Index := Arg_Index + Exp_Length;
end;
exception
when Response_File.File_Does_Not_Exist =>
Error ("cannot open response file '" & Rsp_File & "'");
raise Option_Error;
end;
else
Arg_Index := Arg_Index + 1;
end if;
end loop;
declare
Cmd : Command_Acc;
First_Arg : Natural;
begin
Cmd := Find_Command_With_Error (Args (1).all);
Decode_Command_Options (Cmd.all, Args (2 .. Args'Last), First_Arg);
-- Set before running the action, so that it can be changed.
Set_Exit_Status (Success);
declare
Cmd_Args : Argument_List (1 .. Args'Last - First_Arg + 1);
begin
for I in Cmd_Args'Range loop
Cmd_Args (I) := Args (First_Arg + I - 1);
end loop;
Perform_Action (Cmd.all, Cmd_Args);
end;
end;
-- Free args. This frees both the array and the strings.
Free (Args);
--if Flags.Dump_Stats then
-- Name_Table.Disp_Stats;
-- Iirs.Disp_Stats;
--end if;
exception
when Option_Error
| Compile_Error
| Errorout.Compilation_Error =>
Set_Exit_Status (Failure);
when Exec_Error =>
Set_Exit_Status (3);
when E: others =>
Bug.Disp_Bug_Box (E);
Set_Exit_Status (2);
end Main;
procedure Register_Commands is
begin
Register_Command (new Command_Help);
Register_Command (new Command_Version);
Register_Command (new Command_Option_Help);
end Register_Commands;
end Ghdlmain;
|