1 ------------------------------------------------------------------------------
3 -- GNAT COMPILER COMPONENTS --
9 -- Copyright (C) 1992-2018, 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 ------------------------------------------------------------------------------
28 with Switch
; use Switch
;
30 with Ada
.Characters
.Handling
; use Ada
.Characters
.Handling
;
31 with Ada
.Command_Line
; use Ada
.Command_Line
;
33 with System
.IO
; use System
.IO
;
36 pragma Ident
(Gnatvsn
.Gnat_Static_Version_String
);
40 Exit_Program
: exception;
42 function Get_Maximum_File_Name_Length
return Integer;
43 pragma Import
(C
, Get_Maximum_File_Name_Length
,
44 "__gnat_get_maximum_file_name_length");
47 -- Output usage information
55 Put_Line
("Usage: gnatkr filename[.extension] [krunch-count]");
58 procedure Check_Version_And_Help
is new Check_Version_And_Help_G
(Usage
);
61 Check_Version_And_Help
("GNATKR", "1992");
62 Count
:= Argument_Count
;
64 if Count
< 1 or else Count
> 2 then
69 -- If the length (krunch-count) argument is omitted use the system
70 -- default if there is one, otherwise use 8.
73 Maxlen
:= Get_Maximum_File_Name_Length
;
82 for J
in Argument
(2)'Range loop
83 if Argument
(2) (J
) /= ' ' then
84 if Argument
(2) (J
) not in '0' .. '9' then
85 Put_Line
("Illegal argument for krunch-count");
88 Maxlen
:= Maxlen
* 10 +
89 Character'Pos (Argument
(2) (J
)) - Character'Pos ('0');
94 -- Zero means crunch only system files
97 Maxlen
:= Natural'Last;
103 Fname
: String := Argument
(1);
104 Klen
: Natural := Fname
'Length;
106 Extp
: Boolean := False;
107 -- True if extension is present
110 -- If extension is present, points to it (init to prevent warning)
113 -- Remove extension if present (an extension is defined as the
114 -- section of the file name after the last dot in the name. If
115 -- there is no dot in the name, then
116 -- name is all lower case and contains no other instances of dots)
118 for J
in reverse 1 .. Klen
loop
119 if Fname
(J
) = '.' then
127 -- Fold to lower case and replace dots by dashes
129 for J
in 1 .. Klen
loop
130 Fname
(J
) := To_Lower
(Fname
(J
));
132 if Fname
(J
) = '.' then
137 Krunch
(Fname
, Klen
, Maxlen
, False);
139 Put
(Fname
(1 .. Klen
));
142 Put
(Fname
(Ext
.. Fname
'Length));
149 Set_Exit_Status
(Success
);
153 Set_Exit_Status
(Failure
);