17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
with Ada.Strings.Fixed;
with Ada.Strings.Maps;
package body Natools.Getopt_Long is
package Fixed renames Ada.Strings.Fixed;
package Maps renames Ada.Strings.Maps;
----------------------------
-- Option list management --
----------------------------
procedure Add_Option
(Options : in out Option_Definitions;
|
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
|
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
|
with Ada.Strings.Fixed;
with Ada.Strings.Maps;
package body Natools.Getopt_Long is
package Fixed renames Ada.Strings.Fixed;
package Maps renames Ada.Strings.Maps;
---------------------------
-- Any_Name constructors --
---------------------------
function To_Name (Long_Name : String) return Any_Name is
begin
return Any_Name'(Style => Long,
Size => Long_Name'Length,
Long => Long_Name);
end To_Name;
function To_Name (Short_Name : Character) return Any_Name is
begin
return Any_Name'(Style => Short, Size => 1, Short => Short_Name);
end To_Name;
function Image (Name : Any_Name) return String is
begin
case Name.Style is
when Short => return '-' & Name.Short;
when Long => return "--" & Name.Long;
end case;
-- Alternate implementation:
-- case Name.Style is
-- when Short => return String'(1 => Name.Short);
-- when Long => return '"' & Name.Long & '"';
-- end case;
end Image;
----------------------
-- Default handlers --
----------------------
package body Handlers is
procedure Missing_Argument
(Handler : in out Callback;
Id : Option_Id;
Name : Any_Name)
is
pragma Unreferenced (Handler);
pragma Unreferenced (Id);
begin
raise Option_Error with
"Missing argument to option " & Image (Name);
end Missing_Argument;
procedure Unexpected_Argument
(Handler : in out Callback;
Id : Option_Id;
Name : Any_Name;
Argument : String)
is
pragma Unreferenced (Handler);
pragma Unreferenced (Id);
begin
raise Option_Error with
"Unexpected argument """ & Argument
& """ to option " & Image (Name);
end Unexpected_Argument;
procedure Unknown_Option
(Handler : in out Callback;
Name : Any_Name)
is
pragma Unreferenced (Handler);
begin
raise Option_Error with "Unknown option " & Image (Name);
end Unknown_Option;
end Handlers;
----------------------------
-- Option list management --
----------------------------
procedure Add_Option
(Options : in out Option_Definitions;
|
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
|
-----------------------------
-- Command-line processing --
-----------------------------
procedure Process
(Options : Option_Definitions;
Top_Level_Argument : Option_Id;
Callback : not null access procedure (Id : Option_Id;
Argument : String);
Missing_Argument : access procedure (Id : Option_Id) := null;
Unexpected_Argument : access procedure (Id : Option_Id;
Arg : String) := null;
Unknown_Long_Option : access procedure (Name : String) := null;
Unknown_Short_Option : access procedure (Name : Character) := null;
Posixly_Correct : Boolean := True;
Long_Only : Boolean := False;
Argument_Count : not null access function return Natural
:= Ada.Command_Line.Argument_Count'Access;
Argument : not null access function (Number : Positive) return String
:= Ada.Command_Line.Argument'Access)
is
|
<
|
<
<
<
<
<
<
|
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
|
-----------------------------
-- Command-line processing --
-----------------------------
procedure Process
(Options : Option_Definitions;
Handler : in out Handlers.Callback'Class;
Posixly_Correct : Boolean := True;
Long_Only : Boolean := False;
Argument_Count : not null access function return Natural
:= Ada.Command_Line.Argument_Count'Access;
Argument : not null access function (Number : Positive) return String
:= Ada.Command_Line.Argument'Access)
is
|
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
|
if not Long_Option_Maps.Has_Element (Cursor) then
-- Looking for a unique partial match
Cursor := Options.By_Long_Name.Ceiling (Arg_Name);
if not Long_Option_Maps.Has_Element (Cursor) or else
not Has_Prefix (Cursor, Arg_Name) or else
Has_Prefix (Long_Option_Maps.Next (Cursor), Arg_Name)
then
if Unknown_Long_Option = null then
raise Option_Error with "Unknown long option " & Arg_Name;
else
Unknown_Long_Option (Arg_Name);
return;
end if;
end if;
end if;
-- At this point, Cursor points to the selected argument
declare
Opt : constant Option := Long_Option_Maps.Element (Cursor);
begin
case Opt.Has_Arg is
when No_Argument =>
if Equal = 0 then
Callback (Opt.Id, "");
else
if Unexpected_Argument = null then
raise Option_Error with "Unexpected argument """
& Arg (Equal + 1 .. Arg'Last) & """ to "
& Opt.Long_Name;
else
Unexpected_Argument (Opt.Id,
Arg (Equal + 1 .. Arg'Last));
end if;
end if;
when Optional_Argument =>
if Equal = 0 then
Callback (Opt.Id, "");
else
Callback (Opt.Id, Arg (Equal + 1 .. Arg'Last));
end if;
when Required_Argument =>
if Equal = 0 then
if Arg_N = Arg_Count then
if Missing_Argument = null then
raise Option_Error with "Missing argument to "
& "option " & Opt.Long_Name;
else
Missing_Argument (Opt.Id);
end if;
else
Callback (Opt.Id, Argument (Arg_N + 1));
Arg_N := Arg_N + 1;
end if;
else
Callback (Opt.Id, Arg (Equal + 1 .. Arg'Last));
end if;
end case;
end;
end;
end Process_Long_Option;
begin
while Arg_N <= Arg_Count loop
declare
Arg : constant String := Argument (Arg_N);
begin
if Arg'Length <= 1 or else Arg (Arg'First) /= '-' then
-- This is a non-flag argument, abort option processing if
-- posixly correct.
if Posixly_Correct then
exit;
else
Callback (Top_Level_Argument, Arg);
Arg_N := Arg_N + 1;
end if;
elsif Arg (Arg'First + 1) = '-' then
-- Argument starting with "--": long option.
if Arg'Length = 2 then
Arg_N := Arg_N + 1;
exit;
end if;
Process_Long_Option (Arg (Arg'First + 2 .. Arg'Last));
Arg_N := Arg_N + 1;
elsif Long_Only then
-- Force long option on a single dash prefix.
Process_Long_Option (Arg (Arg'First + 1 .. Arg'Last));
Arg_N := Arg_N + 1;
else
|
<
<
<
|
|
<
|
|
|
<
|
<
<
|
<
|
|
|
<
|
|
<
<
<
|
|
|
|
>
|
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
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
|
if not Long_Option_Maps.Has_Element (Cursor) then
-- Looking for a unique partial match
Cursor := Options.By_Long_Name.Ceiling (Arg_Name);
if not Long_Option_Maps.Has_Element (Cursor) or else
not Has_Prefix (Cursor, Arg_Name) or else
Has_Prefix (Long_Option_Maps.Next (Cursor), Arg_Name)
then
Handler.Unknown_Option (To_Name (Arg_Name));
return;
end if;
end if;
-- At this point, Cursor points to the selected argument
declare
Opt : constant Option := Long_Option_Maps.Element (Cursor);
begin
case Opt.Has_Arg is
when No_Argument =>
if Equal = 0 then
Handler.Option (Opt.Id, "");
else
Handler.Unexpected_Argument
(Opt.Id,
To_Name (Opt.Long_Name),
Arg (Equal + 1 .. Arg'Last));
end if;
when Optional_Argument =>
if Equal = 0 then
Handler.Option (Opt.Id, "");
else
Handler.Option (Opt.Id, Arg (Equal + 1 .. Arg'Last));
end if;
when Required_Argument =>
if Equal = 0 then
if Arg_N = Arg_Count then
Handler.Missing_Argument
(Opt.Id, To_Name (Opt.Long_Name));
else
Handler.Option (Opt.Id, Argument (Arg_N + 1));
Arg_N := Arg_N + 1;
end if;
else
Handler.Option (Opt.Id, Arg (Equal + 1 .. Arg'Last));
end if;
end case;
end;
end;
end Process_Long_Option;
begin
while Arg_N <= Arg_Count loop
declare
Arg : constant String := Argument (Arg_N);
begin
if Arg'Length <= 1 or else Arg (Arg'First) /= '-' then
-- This is a non-flag argument, abort option processing if
-- posixly correct.
if Posixly_Correct then
exit;
else
Handler.Argument (Arg);
Arg_N := Arg_N + 1;
end if;
elsif Arg (Arg'First + 1) = '-' then
-- "--" stops option processing.
if Arg'Length = 2 then
Arg_N := Arg_N + 1;
exit;
end if;
-- Argument starting with "--": long option.
Process_Long_Option (Arg (Arg'First + 2 .. Arg'Last));
Arg_N := Arg_N + 1;
elsif Long_Only then
-- Force long option on a single dash prefix.
Process_Long_Option (Arg (Arg'First + 1 .. Arg'Last));
Arg_N := Arg_N + 1;
else
|
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
|
declare
Opt : constant Option
:= Short_Option_Maps.Element (Cursor);
begin
if Opt.Has_Arg = Required_Argument then
if Arg_I = Arg'Last then
if Arg_N = Arg_Count then
if Missing_Argument = null then
raise Option_Error with "Missing "
& "argument to option "
& Opt.Short_Name;
else
Missing_Argument (Opt.Id);
end if;
else
Callback (Opt.Id, Argument (Arg_N + 1));
Arg_N := Arg_N + 1;
exit;
end if;
else
Callback (Opt.Id,
Arg (Arg_I + 1 .. Arg'Last));
exit;
end if;
else
Callback (Opt.Id, "");
end if;
end;
else
if Unknown_Short_Option = null then
raise Option_Error with "Unknown short option "
& Arg (Arg_I);
else
Unknown_Short_Option (Arg (Arg_I));
end if;
end if;
end;
end loop;
Arg_N := Arg_N + 1;
end if;
end;
end loop;
-- Only non-flag arguments remain
while Arg_N <= Arg_Count loop
Callback (Top_Level_Argument, Argument (Arg_N));
Arg_N := Arg_N + 1;
end loop;
end Process;
end Natools.Getopt_Long;
|
|
<
<
|
|
<
|
<
|
|
|
|
<
<
|
<
<
<
|
|
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
|
declare
Opt : constant Option
:= Short_Option_Maps.Element (Cursor);
begin
if Opt.Has_Arg = Required_Argument then
if Arg_I = Arg'Last then
if Arg_N = Arg_Count then
Handler.Missing_Argument
(Opt.Id, To_Name (Opt.Short_Name));
else
Handler.Option
(Opt.Id, Argument (Arg_N + 1));
Arg_N := Arg_N + 1;
exit;
end if;
else
Handler.Option
(Opt.Id, Arg (Arg_I + 1 .. Arg'Last));
exit;
end if;
else
Handler.Option (Opt.Id, "");
end if;
end;
else
Handler.Unknown_Option (To_Name (Arg (Arg_I)));
end if;
end;
end loop;
Arg_N := Arg_N + 1;
end if;
end;
end loop;
-- Only non-flag arguments remain
while Arg_N <= Arg_Count loop
Handler.Argument (Argument (Arg_N));
Arg_N := Arg_N + 1;
end loop;
end Process;
end Natools.Getopt_Long;
|