1 ------------------------------------------------------------------------------
3 -- GNAT RUN-TIME COMPONENTS --
5 -- ADA.STRINGS.WIDE_WIDE_UNBOUNDED.WIDE_WIDE_TEXT_IO --
9 -- Copyright (C) 1997-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 ------------------------------------------------------------------------------
34 with Ada
.Wide_Wide_Text_IO
; use Ada
.Wide_Wide_Text_IO
;
36 package body Ada
.Strings
.Wide_Wide_Unbounded
.Wide_Wide_Text_IO
is
42 function Get_Line
return Unbounded_Wide_Wide_String
is
43 Buffer
: Wide_Wide_String
(1 .. 1000);
45 Str1
: Wide_Wide_String_Access
;
46 Str2
: Wide_Wide_String_Access
;
47 Result
: Unbounded_Wide_Wide_String
;
50 Get_Line
(Buffer
, Last
);
51 Str1
:= new Wide_Wide_String
'(Buffer (1 .. Last));
52 while Last = Buffer'Last loop
53 Get_Line (Buffer, Last);
54 Str2 := new Wide_Wide_String'(Str1
.all & Buffer
(1 .. Last
));
59 Result
.Reference
:= Str1
;
60 Result
.Last
:= Str1
'Length;
65 (File
: Ada
.Wide_Wide_Text_IO
.File_Type
) return Unbounded_Wide_Wide_String
67 Buffer
: Wide_Wide_String
(1 .. 1000);
69 Str1
: Wide_Wide_String_Access
;
70 Str2
: Wide_Wide_String_Access
;
71 Result
: Unbounded_Wide_Wide_String
;
74 Get_Line
(File
, Buffer
, Last
);
75 Str1
:= new Wide_Wide_String
'(Buffer (1 .. Last));
77 while Last = Buffer'Last loop
78 Get_Line (File, Buffer, Last);
79 Str2 := new Wide_Wide_String'(Str1
.all & Buffer
(1 .. Last
));
84 Result
.Reference
:= Str1
;
85 Result
.Last
:= Str1
'Length;
89 procedure Get_Line
(Item
: out Unbounded_Wide_Wide_String
) is
91 Get_Line
(Current_Input
, Item
);
95 (File
: Ada
.Wide_Wide_Text_IO
.File_Type
;
96 Item
: out Unbounded_Wide_Wide_String
)
99 -- We are going to read into the string that is already there and
100 -- allocated. Hopefully it is big enough now, if not, we will extend
101 -- it in the usual manner using Realloc_For_Chunk.
103 -- Make sure we start with at least 80 characters
105 if Item
.Reference
'Last < 80 then
106 Realloc_For_Chunk
(Item
, 80);
109 -- Loop to read data, filling current string as far as possible.
110 -- Item.Last holds the number of characters read so far.
116 Item
.Reference
(Item
.Last
+ 1 .. Item
.Reference
'Last),
119 -- If we hit the end of the line before the end of the buffer, then
120 -- we are all done, and the result length is properly set.
122 if Item
.Last
< Item
.Reference
'Last then
126 -- If not enough room, double it and keep reading
128 Realloc_For_Chunk
(Item
, Item
.Last
);
136 procedure Put
(U
: Unbounded_Wide_Wide_String
) is
138 Put
(U
.Reference
(1 .. U
.Last
));
141 procedure Put
(File
: File_Type
; U
: Unbounded_Wide_Wide_String
) is
143 Put
(File
, U
.Reference
(1 .. U
.Last
));
150 procedure Put_Line
(U
: Unbounded_Wide_Wide_String
) is
152 Put_Line
(U
.Reference
(1 .. U
.Last
));
155 procedure Put_Line
(File
: File_Type
; U
: Unbounded_Wide_Wide_String
) is
157 Put_Line
(File
, U
.Reference
(1 .. U
.Last
));
160 end Ada
.Strings
.Wide_Wide_Unbounded
.Wide_Wide_Text_IO
;