OSDN Git Service

2008-04-30 Paul Thomas <pault@gcc.gnu.org>
[pf3gnuchains/gcc-fork.git] / gcc / ada / a-direio.ads
1 ------------------------------------------------------------------------------
2 --                                                                          --
3 --                         GNAT RUN-TIME COMPONENTS                         --
4 --                                                                          --
5 --                        A D A . D I R E C T _ I O                         --
6 --                                                                          --
7 --                                 S p e c                                  --
8 --                                                                          --
9 --          Copyright (C) 1992-2008, Free Software Foundation, Inc.         --
10 --                                                                          --
11 -- This specification is derived from the Ada Reference Manual for use with --
12 -- GNAT. The copyright notice above, and the license provisions that follow --
13 -- apply solely to the  contents of the part following the private keyword. --
14 --                                                                          --
15 -- GNAT is free software;  you can  redistribute it  and/or modify it under --
16 -- terms of the  GNU General Public License as published  by the Free Soft- --
17 -- ware  Foundation;  either version 2,  or (at your option) any later ver- --
18 -- sion.  GNAT is distributed in the hope that it will be useful, but WITH- --
19 -- OUT ANY WARRANTY;  without even the  implied warranty of MERCHANTABILITY --
20 -- or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License --
21 -- for  more details.  You should have  received  a copy of the GNU General --
22 -- Public License  distributed with GNAT;  see file COPYING.  If not, write --
23 -- to  the  Free Software Foundation,  51  Franklin  Street,  Fifth  Floor, --
24 -- Boston, MA 02110-1301, USA.                                              --
25 --                                                                          --
26 -- As a special exception,  if other files  instantiate  generics from this --
27 -- unit, or you link  this unit with other files  to produce an executable, --
28 -- this  unit  does not  by itself cause  the resulting  executable  to  be --
29 -- covered  by the  GNU  General  Public  License.  This exception does not --
30 -- however invalidate  any other reasons why  the executable file  might be --
31 -- covered by the  GNU Public License.                                      --
32 --                                                                          --
33 -- GNAT was originally developed  by the GNAT team at  New York University. --
34 -- Extensive contributions were provided by Ada Core Technologies Inc.      --
35 --                                                                          --
36 ------------------------------------------------------------------------------
37
38 with Ada.IO_Exceptions;
39 with System.Direct_IO;
40 with Interfaces.C_Streams;
41
42 generic
43    type Element_Type is private;
44
45 package Ada.Direct_IO is
46
47    pragma Compile_Time_Warning
48      (Element_Type'Has_Access_Values,
49       "Element_Type for Direct_IO instance has access values");
50
51    pragma Compile_Time_Warning
52      (Element_Type'Has_Tagged_Values,
53       "Element_Type for Direct_IO instance has tagged values");
54
55    type File_Type is limited private;
56
57    type File_Mode is (In_File, Inout_File, Out_File);
58
59    --  The following representation clause allows the use of unchecked
60    --  conversion for rapid translation between the File_Mode type
61    --  used in this package and System.File_IO.
62
63    for File_Mode use
64      (In_File    => 0,   -- System.File_IO.File_Mode'Pos (In_File)
65       Inout_File => 1,   -- System.File_IO.File_Mode'Pos (Inout_File);
66       Out_File   => 2);  -- System.File_IO.File_Mode'Pos (Out_File)
67
68    type Count is range 0 .. System.Direct_IO.Count'Last;
69
70    subtype Positive_Count is Count range 1 .. Count'Last;
71
72    ---------------------
73    -- File Management --
74    ---------------------
75
76    procedure Create
77      (File : in out File_Type;
78       Mode : File_Mode := Inout_File;
79       Name : String := "";
80       Form : String := "");
81
82    procedure Open
83      (File : in out File_Type;
84       Mode : File_Mode;
85       Name : String;
86       Form : String := "");
87
88    procedure Close  (File : in out File_Type);
89    procedure Delete (File : in out File_Type);
90    procedure Reset  (File : in out File_Type; Mode : File_Mode);
91    procedure Reset  (File : in out File_Type);
92
93    function Mode (File : File_Type) return File_Mode;
94    function Name (File : File_Type) return String;
95    function Form (File : File_Type) return String;
96
97    function Is_Open (File : File_Type) return Boolean;
98
99    ---------------------------------
100    -- Input and Output Operations --
101    ---------------------------------
102
103    procedure Read
104      (File : File_Type;
105       Item : out Element_Type;
106       From : Positive_Count);
107
108    procedure Read
109      (File : File_Type;
110       Item : out Element_Type);
111
112    procedure Write
113      (File : File_Type;
114       Item : Element_Type;
115       To   : Positive_Count);
116
117    procedure Write
118      (File : File_Type;
119       Item : Element_Type);
120
121    procedure Set_Index (File : File_Type; To : Positive_Count);
122
123    function Index (File : File_Type) return Positive_Count;
124    function Size  (File : File_Type) return Count;
125
126    function End_Of_File (File : File_Type) return Boolean;
127
128    ----------------
129    -- Exceptions --
130    ----------------
131
132    Status_Error : exception renames IO_Exceptions.Status_Error;
133    Mode_Error   : exception renames IO_Exceptions.Mode_Error;
134    Name_Error   : exception renames IO_Exceptions.Name_Error;
135    Use_Error    : exception renames IO_Exceptions.Use_Error;
136    Device_Error : exception renames IO_Exceptions.Device_Error;
137    End_Error    : exception renames IO_Exceptions.End_Error;
138    Data_Error   : exception renames IO_Exceptions.Data_Error;
139
140 private
141    type File_Type is new System.Direct_IO.File_Type;
142
143    Bytes : constant Interfaces.C_Streams.size_t :=
144              Element_Type'Max_Size_In_Storage_Elements;
145    --  Size of an element in storage units
146
147    pragma Inline (Close);
148    pragma Inline (Create);
149    pragma Inline (Delete);
150    pragma Inline (End_Of_File);
151    pragma Inline (Form);
152    pragma Inline (Index);
153    pragma Inline (Is_Open);
154    pragma Inline (Mode);
155    pragma Inline (Name);
156    pragma Inline (Open);
157    pragma Inline (Read);
158    pragma Inline (Reset);
159    pragma Inline (Set_Index);
160    pragma Inline (Size);
161    pragma Inline (Write);
162
163 end Ada.Direct_IO;