* 5oosinte.adb: Add 2001 to copyright notice.
[platform/upstream/gcc.git] / gcc / ada / a-swuwti.adb
1 ------------------------------------------------------------------------------
2 --                                                                          --
3 --                         GNAT RUNTIME COMPONENTS                          --
4 --                                                                          --
5 --                  ADA.STRINGS.WIDE_UNBOUNDED.WIDE_TEXT_IO                 --
6 --                                                                          --
7 --                                 B o d y                                  --
8 --                                                                          --
9 --                            $Revision: 1.1 $
10 --                                                                          --
11 --          Copyright (C) 1997-1999 Free Software Foundation, Inc.          --
12 --                                                                          --
13 -- GNAT is free software;  you can  redistribute it  and/or modify it under --
14 -- terms of the  GNU General Public License as published  by the Free Soft- --
15 -- ware  Foundation;  either version 2,  or (at your option) any later ver- --
16 -- sion.  GNAT is distributed in the hope that it will be useful, but WITH- --
17 -- OUT ANY WARRANTY;  without even the  implied warranty of MERCHANTABILITY --
18 -- or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License --
19 -- for  more details.  You should have  received  a copy of the GNU General --
20 -- Public License  distributed with GNAT;  see file COPYING.  If not, write --
21 -- to  the Free Software Foundation,  59 Temple Place - Suite 330,  Boston, --
22 -- MA 02111-1307, USA.                                                      --
23 --                                                                          --
24 -- As a special exception,  if other files  instantiate  generics from this --
25 -- unit, or you link  this unit with other files  to produce an executable, --
26 -- this  unit  does not  by itself cause  the resulting  executable  to  be --
27 -- covered  by the  GNU  General  Public  License.  This exception does not --
28 -- however invalidate  any other reasons why  the executable file  might be --
29 -- covered by the  GNU Public License.                                      --
30 --                                                                          --
31 -- GNAT was originally developed  by the GNAT team at  New York University. --
32 -- It is now maintained by Ada Core Technologies Inc (http://www.gnat.com). --
33 --                                                                          --
34 ------------------------------------------------------------------------------
35
36 with Ada.Wide_Text_IO; use Ada.Wide_Text_IO;
37
38 package body Ada.Strings.Wide_Unbounded.Wide_Text_IO is
39
40    --------------
41    -- Get_Line --
42    --------------
43
44    function Get_Line return Unbounded_Wide_String is
45       Buffer : Wide_String (1 .. 1000);
46       Last   : Natural;
47       Str1   : Wide_String_Access;
48       Str2   : Wide_String_Access;
49
50    begin
51       Get_Line (Buffer, Last);
52       Str1 := new Wide_String'(Buffer (1 .. Last));
53
54       while Last = Buffer'Last loop
55          Get_Line (Buffer, Last);
56          Str2 := new Wide_String'(Str1.all & Buffer (1 .. Last));
57          Free (Str1);
58          Str1 := Str2;
59       end loop;
60
61       return To_Unbounded_Wide_String (Str1.all);
62    end Get_Line;
63
64    function Get_Line
65      (File : Ada.Wide_Text_IO.File_Type)
66       return Unbounded_Wide_String
67    is
68       Buffer : Wide_String (1 .. 1000);
69       Last   : Natural;
70       Str1   : Wide_String_Access;
71       Str2   : Wide_String_Access;
72
73    begin
74       Get_Line (File, Buffer, Last);
75       Str1 := new Wide_String'(Buffer (1 .. Last));
76
77       while Last = Buffer'Last loop
78          Get_Line (File, Buffer, Last);
79          Str2 := new Wide_String'(Str1.all & Buffer (1 .. Last));
80          Free (Str1);
81          Str1 := Str2;
82       end loop;
83
84       return To_Unbounded_Wide_String (Str1.all);
85    end Get_Line;
86
87    ---------
88    -- Put --
89    ---------
90
91    procedure Put (U : Unbounded_Wide_String) is
92    begin
93       Put (To_Wide_String (U));
94    end Put;
95
96    procedure Put (File : File_Type; U : Unbounded_Wide_String) is
97    begin
98       Put (File, To_Wide_String (U));
99    end Put;
100
101    --------------
102    -- Put_Line --
103    --------------
104
105    procedure Put_Line (U : Unbounded_Wide_String) is
106    begin
107       Put_Line (To_Wide_String (U));
108    end Put_Line;
109
110    procedure Put_Line (File : File_Type; U : Unbounded_Wide_String) is
111    begin
112       Put_Line (File, To_Wide_String (U));
113    end Put_Line;
114
115 end Ada.Strings.Wide_Unbounded.Wide_Text_IO;