1 ------------------------------------------------------------------------------
3 -- GNAT RUN-TIME COMPONENTS --
5 -- A D A . S T R I N G S . W I D E _ W I D E _ S E A R C H --
9 -- Copyright (C) 1992-2012, 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. --
18 -- As a special exception under Section 7 of GPL version 3, you are granted --
19 -- additional permissions described in the GCC Runtime Library Exception, --
20 -- version 3.1, as published by the Free Software Foundation. --
22 -- You should have received a copy of the GNU General Public License and --
23 -- a copy of the GCC Runtime Library Exception along with this program; --
24 -- see the files COPYING3 and COPYING.RUNTIME respectively. If not, see --
25 -- <http://www.gnu.org/licenses/>. --
27 -- GNAT was originally developed by the GNAT team at New York University. --
28 -- Extensive contributions were provided by Ada Core Technologies Inc. --
30 ------------------------------------------------------------------------------
32 with Ada
.Strings
.Wide_Wide_Maps
; use Ada
.Strings
.Wide_Wide_Maps
;
33 with System
; use System
;
35 package body Ada
.Strings
.Wide_Wide_Search
is
37 -----------------------
38 -- Local Subprograms --
39 -----------------------
42 (Element
: Wide_Wide_Character
;
43 Set
: Wide_Wide_Maps
.Wide_Wide_Character_Set
;
44 Test
: Membership
) return Boolean;
45 pragma Inline
(Belongs
);
46 -- Determines if the given element is in (Test = Inside) or not in
47 -- (Test = Outside) the given character set.
54 (Element
: Wide_Wide_Character
;
55 Set
: Wide_Wide_Maps
.Wide_Wide_Character_Set
;
56 Test
: Membership
) return Boolean
60 return Is_In
(Element
, Set
);
62 return not Is_In
(Element
, Set
);
71 (Source
: Wide_Wide_String
;
72 Pattern
: Wide_Wide_String
;
73 Mapping
: Wide_Wide_Maps
.Wide_Wide_Character_Mapping
:=
74 Wide_Wide_Maps
.Identity
) return Natural
76 PL1
: constant Integer := Pattern
'Length - 1;
91 if Mapping
'Address = Wide_Wide_Maps
.Identity
'Address then
92 while Ind
<= Source
'Last - PL1
loop
93 if Pattern
= Source
(Ind
.. Ind
+ PL1
) then
95 Ind
:= Ind
+ Pattern
'Length;
104 while Ind
<= Source
'Last - PL1
loop
106 for K
in Pattern
'Range loop
107 if Pattern
(K
) /= Value
(Mapping
, Source
(Cur
)) then
116 Ind
:= Ind
+ Pattern
'Length;
129 (Source
: Wide_Wide_String
;
130 Pattern
: Wide_Wide_String
;
131 Mapping
: Wide_Wide_Maps
.Wide_Wide_Character_Mapping_Function
)
134 PL1
: constant Integer := Pattern
'Length - 1;
144 -- Check for null pointer in case checks are off
146 if Mapping
= null then
147 raise Constraint_Error
;
152 while Ind
<= Source
'Last - PL1
loop
154 for K
in Pattern
'Range loop
155 if Pattern
(K
) /= Mapping
(Source
(Cur
)) then
164 Ind
:= Ind
+ Pattern
'Length;
174 (Source
: Wide_Wide_String
;
175 Set
: Wide_Wide_Maps
.Wide_Wide_Character_Set
) return Natural
180 for J
in Source
'Range loop
181 if Is_In
(Source
(J
), Set
) then
194 (Source
: Wide_Wide_String
;
195 Set
: Wide_Wide_Maps
.Wide_Wide_Character_Set
;
198 First
: out Positive;
202 for J
in From
.. Source
'Last loop
203 if Belongs
(Source
(J
), Set
, Test
) then
206 for K
in J
+ 1 .. Source
'Last loop
207 if not Belongs
(Source
(K
), Set
, Test
) then
213 -- Here if J indexes first char of token, and all chars after J
221 -- Here if no token found
228 (Source
: Wide_Wide_String
;
229 Set
: Wide_Wide_Maps
.Wide_Wide_Character_Set
;
231 First
: out Positive;
235 for J
in Source
'Range loop
236 if Belongs
(Source
(J
), Set
, Test
) then
239 for K
in J
+ 1 .. Source
'Last loop
240 if not Belongs
(Source
(K
), Set
, Test
) then
246 -- Here if J indexes first char of token, and all chars after J
254 -- Here if no token found
256 First
:= Source
'First;
265 (Source
: Wide_Wide_String
;
266 Pattern
: Wide_Wide_String
;
267 Going
: Direction
:= Forward
;
268 Mapping
: Wide_Wide_Maps
.Wide_Wide_Character_Mapping
:=
269 Wide_Wide_Maps
.Identity
) return Natural
271 PL1
: constant Integer := Pattern
'Length - 1;
275 -- Index for start of match check. This can be negative if the pattern
276 -- length is greater than the string length, which is why this variable
277 -- is Integer instead of Natural. In this case, the search loops do not
278 -- execute at all, so this Ind value is never used.
287 if Going
= Forward
then
290 -- Unmapped forward case
292 if Mapping
'Address = Wide_Wide_Maps
.Identity
'Address then
293 for J
in 1 .. Source
'Length - PL1
loop
294 if Pattern
= Source
(Ind
.. Ind
+ PL1
) then
301 -- Mapped forward case
304 for J
in 1 .. Source
'Length - PL1
loop
307 for K
in Pattern
'Range loop
308 if Pattern
(K
) /= Value
(Mapping
, Source
(Cur
)) then
325 -- Unmapped backward case
327 Ind
:= Source
'Last - PL1
;
329 if Mapping
'Address = Wide_Wide_Maps
.Identity
'Address then
330 for J
in reverse 1 .. Source
'Length - PL1
loop
331 if Pattern
= Source
(Ind
.. Ind
+ PL1
) then
338 -- Mapped backward case
341 for J
in reverse 1 .. Source
'Length - PL1
loop
344 for K
in Pattern
'Range loop
345 if Pattern
(K
) /= Value
(Mapping
, Source
(Cur
)) then
360 -- Fall through if no match found. Note that the loops are skipped
361 -- completely in the case of the pattern being longer than the source.
367 (Source
: Wide_Wide_String
;
368 Pattern
: Wide_Wide_String
;
369 Going
: Direction
:= Forward
;
370 Mapping
: Wide_Wide_Maps
.Wide_Wide_Character_Mapping_Function
)
373 PL1
: constant Integer := Pattern
'Length - 1;
382 -- Check for null pointer in case checks are off
384 if Mapping
= null then
385 raise Constraint_Error
;
388 -- If Pattern longer than Source it can't be found
390 if Pattern
'Length > Source
'Length then
396 if Going
= Forward
then
398 for J
in 1 .. Source
'Length - PL1
loop
401 for K
in Pattern
'Range loop
402 if Pattern
(K
) /= Mapping
.all (Source
(Cur
)) then
418 Ind
:= Source
'Last - PL1
;
419 for J
in reverse 1 .. Source
'Length - PL1
loop
422 for K
in Pattern
'Range loop
423 if Pattern
(K
) /= Mapping
.all (Source
(Cur
)) then
437 -- Fall through if no match found. Note that the loops are skipped
438 -- completely in the case of the pattern being longer than the source.
444 (Source
: Wide_Wide_String
;
445 Set
: Wide_Wide_Maps
.Wide_Wide_Character_Set
;
446 Test
: Membership
:= Inside
;
447 Going
: Direction
:= Forward
) return Natural
452 if Going
= Forward
then
453 for J
in Source
'Range loop
454 if Belongs
(Source
(J
), Set
, Test
) then
462 for J
in reverse Source
'Range loop
463 if Belongs
(Source
(J
), Set
, Test
) then
469 -- Fall through if no match
475 (Source
: Wide_Wide_String
;
476 Pattern
: Wide_Wide_String
;
478 Going
: Direction
:= Forward
;
479 Mapping
: Wide_Wide_Maps
.Wide_Wide_Character_Mapping
:=
480 Wide_Wide_Maps
.Identity
) return Natural
483 if Going
= Forward
then
484 if From
< Source
'First then
489 Index
(Source
(From
.. Source
'Last), Pattern
, Forward
, Mapping
);
492 if From
> Source
'Last then
497 Index
(Source
(Source
'First .. From
), Pattern
, Backward
, Mapping
);
502 (Source
: Wide_Wide_String
;
503 Pattern
: Wide_Wide_String
;
505 Going
: Direction
:= Forward
;
506 Mapping
: Wide_Wide_Maps
.Wide_Wide_Character_Mapping_Function
)
510 if Going
= Forward
then
511 if From
< Source
'First then
516 (Source
(From
.. Source
'Last), Pattern
, Forward
, Mapping
);
519 if From
> Source
'Last then
524 (Source
(Source
'First .. From
), Pattern
, Backward
, Mapping
);
529 (Source
: Wide_Wide_String
;
530 Set
: Wide_Wide_Maps
.Wide_Wide_Character_Set
;
532 Test
: Membership
:= Inside
;
533 Going
: Direction
:= Forward
) return Natural
536 if Going
= Forward
then
537 if From
< Source
'First then
542 Index
(Source
(From
.. Source
'Last), Set
, Test
, Forward
);
545 if From
> Source
'Last then
550 Index
(Source
(Source
'First .. From
), Set
, Test
, Backward
);
554 ---------------------
555 -- Index_Non_Blank --
556 ---------------------
558 function Index_Non_Blank
559 (Source
: Wide_Wide_String
;
560 Going
: Direction
:= Forward
) return Natural
563 if Going
= Forward
then
564 for J
in Source
'Range loop
565 if Source
(J
) /= Wide_Wide_Space
then
570 else -- Going = Backward
571 for J
in reverse Source
'Range loop
572 if Source
(J
) /= Wide_Wide_Space
then
578 -- Fall through if no match
583 function Index_Non_Blank
584 (Source
: Wide_Wide_String
;
586 Going
: Direction
:= Forward
) return Natural
589 if Going
= Forward
then
590 if From
< Source
'First then
595 Index_Non_Blank
(Source
(From
.. Source
'Last), Forward
);
598 if From
> Source
'Last then
603 Index_Non_Blank
(Source
(Source
'First .. From
), Backward
);
607 end Ada
.Strings
.Wide_Wide_Search
;