1 ------------------------------------------------------------------------------
3 -- GNAT COMPILER COMPONENTS --
9 -- Copyright (C) 1992-2005, 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 2, 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 COPYING. If not, write --
19 -- to the Free Software Foundation, 51 Franklin Street, Fifth Floor, --
20 -- Boston, MA 02110-1301, USA. --
22 -- As a special exception, if other files instantiate generics from this --
23 -- unit, or you link this unit with other files to produce an executable, --
24 -- this unit does not by itself cause the resulting executable to be --
25 -- covered by the GNU General Public License. This exception does not --
26 -- however invalidate any other reasons why the executable file might be --
27 -- covered by the GNU Public License. --
29 -- GNAT was originally developed by the GNAT team at New York University. --
30 -- Extensive contributions were provided by Ada Core Technologies Inc. --
32 ------------------------------------------------------------------------------
37 (Buffer
: in out String;
43 B1
: Character renames Buffer
(1);
51 -- Deal with special predefined children cases. Startloc is the first
52 -- location for the krunch, set to 1, except for the predefined children
53 -- case, where it is set to 3, to start after the standard prefix.
61 and then Buffer
(1 .. 17) = "ada-wide_text_io-"
64 Buffer
(2 .. 5) := "-wt-";
65 Buffer
(6 .. Len
- 12) := Buffer
(18 .. Len
);
70 and then Buffer
(1 .. 22) = "ada-wide_wide_text_io-"
73 Buffer
(2 .. 5) := "-zt-";
74 Buffer
(6 .. Len
- 17) := Buffer
(23 .. Len
);
78 elsif Len
>= 4 and then Buffer
(1 .. 4) = "ada-" then
80 Buffer
(2 .. Len
- 2) := Buffer
(4 .. Len
);
84 elsif Len
>= 5 and then Buffer
(1 .. 5) = "gnat-" then
86 Buffer
(2 .. Len
- 3) := Buffer
(5 .. Len
);
90 elsif Len
>= 7 and then Buffer
(1 .. 7) = "system-" then
92 Buffer
(2 .. Len
- 5) := Buffer
(7 .. Len
);
96 elsif Len
>= 11 and then Buffer
(1 .. 11) = "interfaces-" then
98 Buffer
(2 .. Len
- 9) := Buffer
(11 .. Len
);
102 -- For the renamings in the obsolescent section, we also force krunching
103 -- to 8 characters, but no other special processing is required here.
104 -- Note that text_io and calendar are already short enough anyway.
106 elsif (Len
= 9 and then Buffer
(1 .. 9) = "direct_io")
107 or else (Len
= 10 and then Buffer
(1 .. 10) = "interfaces")
108 or else (Len
= 13 and then Buffer
(1 .. 13) = "io_exceptions")
109 or else (Len
= 12 and then Buffer
(1 .. 12) = "machine_code")
110 or else (Len
= 13 and then Buffer
(1 .. 13) = "sequential_io")
111 or else (Len
= 20 and then Buffer
(1 .. 20) = "unchecked_conversion")
112 or else (Len
= 22 and then Buffer
(1 .. 22) = "unchecked_deallocation")
118 -- Special case of a child unit whose parent unit is a single letter that
119 -- is A, G, I, or S. In order to prevent confusion with krunched names
120 -- of predefined units use a tilde rather than a minus as the second
121 -- character of the file name. On VMS a tilde is an illegal character
122 -- in a file name, so a dollar_sign is used instead.
125 and then Buffer
(2) = '-'
126 and then (B1
= 'a' or else B1
= 'g' or else B1
= 'i' or else B1
= 's')
127 and then Len
<= Maxlen
129 if Hostparm
.OpenVMS
then
137 -- Normal case, not a predefined file
145 -- Immediate return if file name is short enough now
147 if Curlen
<= Krlen
then
152 -- If string contains Wide_Wide, replace by a single z
155 while J
<= Curlen
- 8 loop
156 if Buffer
(J
.. J
+ 8) = "wide_wide"
157 and then (J
= Startloc
158 or else Buffer
(J
- 1) = '-'
159 or else Buffer
(J
- 1) = '_')
160 and then (J
+ 8 = Curlen
161 or else Buffer
(J
+ 9) = '-'
162 or else Buffer
(J
+ 9) = '_')
165 Buffer
(J
+ 1 .. Curlen
- 8) := Buffer
(J
+ 9 .. Curlen
);
166 Curlen
:= Curlen
- 8;
172 -- For now, refuse to krunch a name that contains an ESC character (wide
173 -- character sequence) since it's too much trouble to do this right ???
175 for J
in 1 .. Curlen
loop
176 if Buffer
(J
) = ASCII
.ESC
then
181 -- Count number of separators (minus signs and underscores) and for now
182 -- replace them by spaces. We keep them around till the end to control
183 -- the krunching process, and then we eliminate them as the last step
186 for J
in Startloc
.. Curlen
loop
187 if Buffer
(J
) = '-' or else Buffer
(J
) = '_' then
189 Num_Seps
:= Num_Seps
+ 1;
193 -- Now we do the one character at a time krunch till we are short enough
195 while Curlen
- Num_Seps
> Krlen
loop
197 Long_Length
: Natural := 0;
198 Long_Last
: Natural := 0;
199 Piece_Start
: Natural;
205 -- Loop through pieces to find longest piece
207 while Ptr
<= Curlen
loop
210 -- Loop through characters in one piece of name
212 while Ptr
<= Curlen
and then Buffer
(Ptr
) /= ' ' loop
216 if Ptr
- Piece_Start
> Long_Length
then
217 Long_Length
:= Ptr
- Piece_Start
;
218 Long_Last
:= Ptr
- 1;
224 -- Remove last character of longest piece
226 if Long_Last
< Curlen
then
227 Buffer
(Long_Last
.. Curlen
- 1) :=
228 Buffer
(Long_Last
+ 1 .. Curlen
);
231 Curlen
:= Curlen
- 1;
235 -- Final step, remove the spaces
239 for J
in 1 .. Curlen
loop
240 if Buffer
(J
) /= ' ' then
242 Buffer
(Len
) := Buffer
(J
);