PR target/16201
[official-gcc.git] / gcc / ada / a-direct.ads
blob4cd2340a79c8eda323f96e803db6d318ac9fc1e1
1 ------------------------------------------------------------------------------
2 -- --
3 -- GNAT RUN-TIME COMPONENTS --
4 -- --
5 -- A D A . D I R E C T O R I E S --
6 -- --
7 -- S p e c --
8 -- --
9 -- Copyright (C) 2004 Free Software Foundation, Inc. --
10 -- --
11 -- This specification is derived for use with GNAT from AI-00248, which is --
12 -- expected to be a part of a future expected revised Ada Reference Manual. --
13 -- The copyright notice above, and the license provisions that follow apply --
14 -- solely to the contents of the part following the private keyword. --
15 -- --
16 -- GNAT is free software; you can redistribute it and/or modify it under --
17 -- terms of the GNU General Public License as published by the Free Soft- --
18 -- ware Foundation; either version 2, or (at your option) any later ver- --
19 -- sion. GNAT is distributed in the hope that it will be useful, but WITH- --
20 -- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY --
21 -- or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License --
22 -- for more details. You should have received a copy of the GNU General --
23 -- Public License distributed with GNAT; see file COPYING. If not, write --
24 -- to the Free Software Foundation, 59 Temple Place - Suite 330, Boston, --
25 -- MA 02111-1307, USA. --
26 -- --
27 -- As a special exception, if other files instantiate generics from this --
28 -- unit, or you link this unit with other files to produce an executable, --
29 -- this unit does not by itself cause the resulting executable to be --
30 -- covered by the GNU General Public License. This exception does not --
31 -- however invalidate any other reasons why the executable file might be --
32 -- covered by the GNU Public License. --
33 -- --
34 -- GNAT was originally developed by the GNAT team at New York University. --
35 -- Extensive contributions were provided by Ada Core Technologies Inc. --
36 -- --
37 ------------------------------------------------------------------------------
39 -- Ada 2005: Implementation of Ada.Directories (AI95-00248). Note that this
40 -- unit is available without -gnat05. That seems reasonable, since you only
41 -- get it if you explicitly ask for it.
43 -- External files may be classified as directories, special files, or ordinary
44 -- files. A directory is an external file that is a container for files on
45 -- the target system. A special file is an external file that cannot be
46 -- created or read by a predefined Ada Input-Output package. External files
47 -- that are not special files or directories are called ordinary files.
49 -- A file name is a string identifying an external file. Similarly, a
50 -- directory name is a string identifying a directory. The interpretation of
51 -- file names and directory names is implementation-defined.
53 -- The full name of an external file is a full specification of the name of
54 -- the file. If the external environment allows alternative specifications of
55 -- the name (for example, abbreviations), the full name should not use such
56 -- alternatives. A full name typically will include the names of all of
57 -- directories that contain the item. The simple name of an external file is
58 -- the name of the item, not including any containing directory names. Unless
59 -- otherwise specified, a file name or directory name parameter to a
60 -- predefined Ada input-output subprogram can be a full name, a simple name,
61 -- or any other form of name supported by the implementation.
63 -- The default directory is the directory that is used if a directory or
64 -- file name is not a full name (that is, when the name does not fully
65 -- identify all of the containing directories).
67 -- A directory entry is a single item in a directory, identifying a single
68 -- external file (including directories and special files).
70 -- For each function that returns a string, the lower bound of the returned
71 -- value is 1.
73 with Ada.Calendar;
74 with Ada.Finalization;
75 with Ada.IO_Exceptions;
76 with Ada.Strings.Unbounded;
78 package Ada.Directories is
80 pragma Ada_05;
81 -- To be removed later ???
83 -----------------------------------
84 -- Directory and File Operations --
85 -----------------------------------
87 function Current_Directory return String;
88 -- Returns the full directory name for the current default directory. The
89 -- name returned shall be suitable for a future call to Set_Directory.
90 -- The exception Use_Error is propagated if a default directory is not
91 -- supported by the external environment.
93 procedure Set_Directory (Directory : String);
94 -- Sets the current default directory. The exception Name_Error is
95 -- propagated if the string given as Directory does not identify an
96 -- existing directory. The exception Use_Error is propagated if the
97 -- external environment does not support making Directory (in the absence
98 -- of Name_Error) a default directory.
100 procedure Create_Directory
101 (New_Directory : String;
102 Form : String := "");
103 -- Creates a directory with name New_Directory. The Form parameter can be
104 -- used to give system-dependent characteristics of the directory; the
105 -- interpretation of the Form parameter is implementation-defined. A null
106 -- string for Form specifies the use of the default options of the
107 -- implementation of the new directory. The exception Name_Error is
108 -- propagated if the string given as New_Directory does not allow the
109 -- identification of a directory. The exception Use_Error is propagated if
110 -- the external environment does not support the creation of a directory
111 -- with the given name (in the absence of Name_Error) and form.
113 procedure Delete_Directory (Directory : String);
114 -- Deletes an existing empty directory with name Directory. The exception
115 -- Name_Error is propagated if the string given as Directory does not
116 -- identify an existing directory. The exception Use_Error is propagated
117 -- if the external environment does not support the deletion of the
118 -- directory (or some portion of its contents) with the given name (in the
119 -- absence of Name_Error).
121 procedure Create_Path
122 (New_Directory : String;
123 Form : String := "");
124 -- Creates zero or more directories with name New_Directory. Each
125 -- non-existent directory named by New_Directory is created. For example,
126 -- on a typical Unix system, Create_Path ("/usr/me/my"); would create
127 -- directory "me" in directory "usr", then create directory "my" in
128 -- directory "me". The Form can be used to give system-dependent
129 -- characteristics of the directory; the interpretation of the Form
130 -- parameter is implementation-defined. A null string for Form specifies
131 -- the use of the default options of the implementation of the new
132 -- directory. The exception Name_Error is propagated if the string given
133 -- as New_Directory does not allow the identification of any directory.
134 -- The exception Use_Error is propagated if the external environment does
135 -- not support the creation of any directories with the given name (in the
136 -- absence of Name_Error) and form.
138 procedure Delete_Tree (Directory : String);
139 -- Deletes an existing directory with name Directory. The directory and
140 -- all of its contents (possibly including other directories) are deleted.
141 -- The exception Name_Error is propagated if the string given as Directory
142 -- does not identify an existing directory. The exception Use_Error is
143 -- propagated if the external environment does not support the deletion of
144 -- the directory or some portion of its contents with the given name (in
145 -- the absence of Name_Error). If Use_Error is propagated, it is
146 -- unspecified if a portion of the contents of the directory are deleted.
148 procedure Delete_File (Name : String);
149 -- Deletes an existing ordinary or special file with Name. The exception
150 -- Name_Error is propagated if the string given as Name does not identify
151 -- an existing ordinary or special external file. The exception Use_Error
152 -- is propagated if the external environment does not support the deletion
153 -- of the file with the given name (in the absence of Name_Error).
155 procedure Rename (Old_Name, New_Name : String);
156 -- Renames an existing external file (including directories) with Old_Name
157 -- to New_Name. The exception Name_Error is propagated if the string given
158 -- as Old_Name does not identify an existing external file. The exception
159 -- Use_Error is propagated if the external environment does not support the
160 -- renaming of the file with the given name (in the absence of Name_Error).
161 -- In particular, Use_Error is propagated if a file or directory already
162 -- exists with New_Name.
164 procedure Copy_File
165 (Source_Name : String;
166 Target_Name : String;
167 Form : String := "");
168 -- Copies the contents of the existing external file with Source_Name
169 -- to Target_Name. The resulting external file is a duplicate of the source
170 -- external file. The Form can be used to give system-dependent
171 -- characteristics of the resulting external file; the interpretation of
172 -- the Form parameter is implementation-defined. Exception Name_Error is
173 -- propagated if the string given as Source_Name does not identify an
174 -- existing external ordinary or special file or if the string given as
175 -- Target_Name does not allow the identification of an external file.
176 -- The exception Use_Error is propagated if the external environment does
177 -- not support the creating of the file with the name given by Target_Name
178 -- and form given by Form, or copying of the file with the name given by
179 -- Source_Name (in the absence of Name_Error).
182 -- File and directory name operations:
184 function Full_Name (Name : String) return String;
185 -- Returns the full name corresponding to the file name specified by Name.
186 -- The exception Name_Error is propagated if the string given as Name does
187 -- not allow the identification of an external file (including directories
188 -- and special files).
190 function Simple_Name (Name : String) return String;
191 -- Returns the simple name portion of the file name specified by Name. The
192 -- exception Name_Error is propagated if the string given as Name does not
193 -- allow the identification of an external file (including directories and
194 -- special files).
196 function Containing_Directory (Name : String) return String;
197 -- Returns the name of the containing directory of the external file
198 -- (including directories) identified by Name. If more than one directory
199 -- can contain Name, the directory name returned is implementation-defined.
200 -- The exception Name_Error is propagated if the string given as Name does
201 -- not allow the identification of an external file. The exception
202 -- Use_Error is propagated if the external file does not have a containing
203 -- directory.
205 function Extension (Name : String) return String;
206 -- Returns the extension name corresponding to Name. The extension name is
207 -- a portion of a simple name (not including any separator characters),
208 -- typically used to identify the file class. If the external environment
209 -- does not have extension names, then the null string is returned.
210 -- The exception Name_Error is propagated if the string given as Name does
211 -- not allow the identification of an external file.
213 function Base_Name (Name : String) return String;
214 -- Returns the base name corresponding to Name. The base name is the
215 -- remainder of a simple name after removing any extension and extension
216 -- separators. The exception Name_Error is propagated if the string given
217 -- as Name does not allow the identification of an external file
218 -- (including directories and special files).
220 function Compose
221 (Containing_Directory : String := "";
222 Name : String;
223 Extension : String := "") return String;
224 -- Returns the name of the external file with the specified
225 -- Containing_Directory, Name, and Extension. If Extension is the null
226 -- string, then Name is interpreted as a simple name; otherwise Name is
227 -- interpreted as a base name. The exception Name_Error is propagated if
228 -- the string given as Containing_Directory is not null and does not allow
229 -- the identification of a directory, or if the string given as Extension
230 -- is not null and is not a possible extension, or if the string given as
231 -- Name is not a possible simple name (if Extension is null) or base name
232 -- (if Extension is non-null).
235 -- File and directory queries:
237 type File_Kind is (Directory, Ordinary_File, Special_File);
238 -- The type File_Kind represents the kind of file represented by an
239 -- external file or directory.
241 type File_Size is range 0 .. Long_Long_Integer'Last;
242 -- The type File_Size represents the size of an external file.
244 function Exists (Name : String) return Boolean;
245 -- Returns True if external file represented by Name exists, and False
246 -- otherwise. The exception Name_Error is propagated if the string given as
247 -- Name does not allow the identification of an external file (including
248 -- directories and special files).
250 function Kind (Name : String) return File_Kind;
251 -- Returns the kind of external file represented by Name. The exception
252 -- Name_Error is propagated if the string given as Name does not allow the
253 -- identification of an existing external file.
255 function Size (Name : String) return File_Size;
256 -- Returns the size of the external file represented by Name. The size of
257 -- an external file is the number of stream elements contained in the file.
258 -- If the external file is discontiguous (not all elements exist), the
259 -- result is implementation-defined. If the external file is not an
260 -- ordinary file, the result is implementation-defined. The exception
261 -- Name_Error is propagated if the string given as Name does not allow the
262 -- identification of an existing external file. The exception
263 -- Constraint_Error is propagated if the file size is not a value of type
264 -- File_Size.
266 function Modification_Time (Name : String) return Ada.Calendar.Time;
267 -- Returns the time that the external file represented by Name was most
268 -- recently modified. If the external file is not an ordinary file, the
269 -- result is implementation-defined. The exception Name_Error is propagated
270 -- if the string given as Name does not allow the identification of an
271 -- existing external file. The exception Use_Error is propagated if the
272 -- external environment does not support the reading the modification time
273 -- of the file with the name given by Name (in the absence of Name_Error).
275 -------------------------
276 -- Directory Searching --
277 -------------------------
279 type Directory_Entry_Type is limited private;
280 -- The type Directory_Entry_Type represents a single item in a directory.
281 -- These items can only be created by the Get_Next_Entry procedure in this
282 -- package. Information about the item can be obtained from the functions
283 -- declared in this package. A default initialized object of this type is
284 -- invalid; objects returned from Get_Next_Entry are valid.
286 type Filter_Type is array (File_Kind) of Boolean;
287 -- The type Filter_Type specifies which directory entries are provided from
288 -- a search operation. If the Directory component is True, directory
289 -- entries representing directories are provided. If the Ordinary_File
290 -- component is True, directory entries representing ordinary files are
291 -- provided. If the Special_File component is True, directory entries
292 -- representing special files are provided.
294 type Search_Type is limited private;
295 -- The type Search_Type contains the state of a directory search. A
296 -- default-initialized Search_Type object has no entries available
297 -- (More_Entries returns False).
299 procedure Start_Search
300 (Search : in out Search_Type;
301 Directory : String;
302 Pattern : String;
303 Filter : Filter_Type := (others => True));
304 -- Starts a search in the directory entry in the directory named by
305 -- Directory for entries matching Pattern. Pattern represents a file name
306 -- matching pattern. If Pattern is null, all items in the directory are
307 -- matched; otherwise, the interpretation of Pattern is
308 -- implementation-defined. Only items which match Filter will be returned.
309 -- After a successful call on Start_Search, the object Search may have
310 -- entries available, but it may have no entries available if no files or
311 -- directories match Pattern and Filter. The exception Name_Error is
312 -- propagated if the string given by Directory does not identify an
313 -- existing directory, or if Pattern does not allow the identification of
314 -- any possible external file or directory. The exception Use_Error is
315 -- propagated if the external environment does not support the searching
316 -- of the directory with the given name (in the absence of Name_Error).
318 procedure End_Search (Search : in out Search_Type);
319 -- Ends the search represented by Search. After a successful call on
320 -- End_Search, the object Search will have no entries available.
322 function More_Entries (Search : Search_Type) return Boolean;
323 -- Returns True if more entries are available to be returned by a call
324 -- to Get_Next_Entry for the specified search object, and False otherwise.
326 procedure Get_Next_Entry
327 (Search : in out Search_Type;
328 Directory_Entry : out Directory_Entry_Type);
329 -- Returns the next Directory_Entry for the search described by Search that
330 -- matches the pattern and filter. If no further matches are available,
331 -- Status_Error is raised. It is implementation-defined as to whether the
332 -- results returned by this routine are altered if the contents of the
333 -- directory are altered while the Search object is valid (for example, by
334 -- another program). The exception Use_Error is propagated if the external
335 -- environment does not support continued searching of the directory
336 -- represented by Search.
338 -------------------------------------
339 -- Operations on Directory Entries --
340 -------------------------------------
342 function Simple_Name (Directory_Entry : Directory_Entry_Type) return String;
343 -- Returns the simple external name of the external file (including
344 -- directories) represented by Directory_Entry. The format of the name
345 -- returned is implementation-defined. The exception Status_Error is
346 -- propagated if Directory_Entry is invalid.
348 function Full_Name (Directory_Entry : Directory_Entry_Type) return String;
349 -- Returns the full external name of the external file (including
350 -- directories) represented by Directory_Entry. The format of the name
351 -- returned is implementation-defined. The exception Status_Error is
352 -- propagated if Directory_Entry is invalid.
354 function Kind (Directory_Entry : Directory_Entry_Type) return File_Kind;
355 -- Returns the kind of external file represented by Directory_Entry. The
356 -- exception Status_Error is propagated if Directory_Entry is invalid.
358 function Size (Directory_Entry : Directory_Entry_Type) return File_Size;
359 -- Returns the size of the external file represented by Directory_Entry.
360 -- The size of an external file is the number of stream elements contained
361 -- in the file. If the external file is discontiguous (not all elements
362 -- exist), the result is implementation-defined. If the external file
363 -- represented by Directory_Entry is not an ordinary file, the result is
364 -- implementation-defined. The exception Status_Error is propagated if
365 -- Directory_Entry is invalid. The exception Constraint_Error is propagated
366 -- if the file size is not a value of type File_Size.
368 function Modification_Time
369 (Directory_Entry : Directory_Entry_Type) return Ada.Calendar.Time;
370 -- Returns the time that the external file represented by Directory_Entry
371 -- was most recently modified. If the external file represented by
372 -- Directory_Entry is not an ordinary file, the result is
373 -- implementation-defined. The exception Status_Error is propagated if
374 -- Directory_Entry is invalid. The exception Use_Error is propagated if
375 -- the external environment does not support the reading the modification
376 -- time of the file represented by Directory_Entry.
378 ----------------
379 -- Exceptions --
380 ----------------
382 Status_Error : exception renames Ada.IO_Exceptions.Status_Error;
383 Name_Error : exception renames Ada.IO_Exceptions.Name_Error;
384 Use_Error : exception renames Ada.IO_Exceptions.Use_Error;
385 Device_Error : exception renames Ada.IO_Exceptions.Device_Error;
387 private
388 type Directory_Entry_Type is record
389 Is_Valid : Boolean := False;
390 Simple : Ada.Strings.Unbounded.Unbounded_String;
391 Full : Ada.Strings.Unbounded.Unbounded_String;
392 Kind : File_Kind := Ordinary_File;
393 end record;
395 -- The type Search_Data is defined in the body, so that the spec does not
396 -- depend on packages of the GNAT hierarchy.
398 type Search_Data;
399 type Search_Ptr is access Search_Data;
401 -- Search_Type need to be a controlled type, because it includes component
402 -- of type Dir_Type (in GNAT.Directory_Operations) that need to be closed
403 -- (if opened) during finalization.
404 -- The component need to be an access value, because Search_Data is not
405 -- fully defined in the spec.
407 type Search_Type is new Ada.Finalization.Controlled with record
408 Value : Search_Ptr;
409 end record;
411 procedure Finalize (Search : in out Search_Type);
412 -- Close the directory, if opened, and deallocate Value.
414 procedure End_Search (Search : in out Search_Type) renames Finalize;
416 end Ada.Directories;