Daily bump.
[official-gcc.git] / gcc / ada / s-imgwch.adb
blob74e3803b4e135edd75eea84504d152e70ac3461c
1 ------------------------------------------------------------------------------
2 -- --
3 -- GNAT RUN-TIME COMPONENTS --
4 -- --
5 -- S Y S T E M . I M G _ W C H A R --
6 -- --
7 -- B o d y --
8 -- --
9 -- Copyright (C) 1992-2007, Free Software Foundation, Inc. --
10 -- --
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. --
21 -- --
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. --
28 -- --
29 -- GNAT was originally developed by the GNAT team at New York University. --
30 -- Extensive contributions were provided by Ada Core Technologies Inc. --
31 -- --
32 ------------------------------------------------------------------------------
34 with Interfaces; use Interfaces;
36 with System.Img_Char; use System.Img_Char;
38 package body System.Img_WChar is
40 --------------------------
41 -- Image_Wide_Character --
42 --------------------------
44 procedure Image_Wide_Character
45 (V : Wide_Character;
46 S : in out String;
47 P : out Natural;
48 Ada_2005 : Boolean)
50 pragma Assert (S'First = 1);
52 begin
53 -- Annoying Ada 95 incompatibility with FFFE/FFFF
55 if V >= Wide_Character'Val (16#FFFE#)
56 and then not Ada_2005
57 then
58 if V = Wide_Character'Val (16#FFFE#) then
59 S (1 .. 4) := "FFFE";
60 else
61 S (1 .. 4) := "FFFF";
62 end if;
64 P := 4;
66 -- Normal case, same as Wide_Wide_Character
68 else
69 Image_Wide_Wide_Character
70 (Wide_Wide_Character'Val (Wide_Character'Pos (V)), S, P);
71 end if;
72 end Image_Wide_Character;
74 -------------------------------
75 -- Image_Wide_Wide_Character --
76 -------------------------------
78 procedure Image_Wide_Wide_Character
79 (V : Wide_Wide_Character;
80 S : in out String;
81 P : out Natural)
83 pragma Assert (S'First = 1);
85 Val : Unsigned_32 := Wide_Wide_Character'Pos (V);
87 begin
88 -- If in range of standard Character, use Character routine
90 if Val <= 16#FF# then
91 Image_Character (Character'Val (Wide_Wide_Character'Pos (V)), S, P);
93 -- Otherwise value returned is Hex_hhhhhhhh
95 else
96 declare
97 Hex : constant array (Unsigned_32 range 0 .. 15) of Character :=
98 "0123456789ABCDEF";
100 begin
101 S (1 .. 4) := "Hex_";
103 for J in reverse 5 .. 12 loop
104 S (J) := Hex (Val mod 16);
105 Val := Val / 16;
106 end loop;
108 P := 12;
109 end;
110 end if;
111 end Image_Wide_Wide_Character;
113 end System.Img_WChar;