OSDN Git Service

PR fortran/23516
[pf3gnuchains/gcc-fork.git] / gcc / ada / g-os_lib.ads
1 ------------------------------------------------------------------------------
2 --                                                                          --
3 --                         GNAT COMPILER COMPONENTS                         --
4 --                                                                          --
5 --                          G N A T . O S _ L I B                           --
6 --                                                                          --
7 --                                 S p e c                                  --
8 --                                                                          --
9 --          Copyright (C) 1995-2005 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 ------------------------------------------------------------------------------
33
34 --  Operating system interface facilities
35
36 --  This package contains types and procedures for interfacing to the
37 --  underlying OS. It is used by the GNAT compiler and by tools associated
38 --  with the GNAT compiler, and therefore works for the various operating
39 --  systems to which GNAT has been ported. This package will undoubtedly grow
40 --  as new services are needed by various tools.
41
42 --  This package tends to use fairly low-level Ada in order to not bring in
43 --  large portions of the RTL. For example, functions return access to string
44 --  as part of avoiding functions returning unconstrained types.
45
46 --  Except where specifically noted, these routines are portable across all
47 --  GNAT implementations on all supported operating systems.
48
49 with System;
50 with GNAT.Strings;
51
52 package GNAT.OS_Lib is
53    pragma Elaborate_Body (OS_Lib);
54
55    -----------------------
56    -- String Operations --
57    -----------------------
58
59    --  These are reexported from package Strings (which was introduced to
60    --  avoid different packages declarting different types unnecessarily).
61    --  See package GNAT.Strings for details.
62
63    subtype String_Access is Strings.String_Access;
64
65    function "=" (Left, Right : in String_Access) return Boolean
66      renames Strings."=";
67
68    procedure Free (X : in out String_Access) renames Strings.Free;
69
70    subtype String_List is Strings.String_List;
71
72    function "=" (Left, Right : in String_List) return Boolean
73      renames Strings."=";
74
75    function "&" (Left : String_Access; Right : String_Access)
76      return String_List renames Strings."&";
77    function "&" (Left : String_Access; Right : String_List)
78      return String_List renames Strings."&";
79    function "&" (Left : String_List; Right : String_Access)
80      return String_List renames Strings."&";
81    function "&" (Left : String_List; Right : String_List)
82      return String_List renames Strings."&";
83
84    subtype String_List_Access is Strings.String_List_Access;
85
86    function "=" (Left, Right : in String_List_Access) return Boolean
87      renames Strings."=";
88
89    procedure Free (Arg : in out String_List_Access)
90      renames Strings.Free;
91
92    ---------------------
93    -- Time/Date Stuff --
94    ---------------------
95
96    type OS_Time is private;
97    --  The OS's notion of time is represented by the private type OS_Time.
98    --  This is the type returned by the File_Time_Stamp functions to obtain
99    --  the time stamp of a specified file. Functions and a procedure (modeled
100    --  after the similar subprograms in package Calendar) are provided for
101    --  extracting information from a value of this type. Although these are
102    --  called GM, the intention is not that they provide GMT times in all
103    --  cases but rather the actual (time-zone independent) time stamp of the
104    --  file (of course in Unix systems, this *is* in GMT form).
105
106    Invalid_Time : constant OS_Time;
107    --  A special unique value used to flag an invalid time stamp value
108
109    subtype Year_Type   is Integer range 1900 .. 2099;
110    subtype Month_Type  is Integer range    1 ..   12;
111    subtype Day_Type    is Integer range    1 ..   31;
112    subtype Hour_Type   is Integer range    0 ..   23;
113    subtype Minute_Type is Integer range    0 ..   59;
114    subtype Second_Type is Integer range    0 ..   59;
115    --  Declarations similar to those in Calendar, breaking down the time
116
117    function GM_Year    (Date : OS_Time) return Year_Type;
118    function GM_Month   (Date : OS_Time) return Month_Type;
119    function GM_Day     (Date : OS_Time) return Day_Type;
120    function GM_Hour    (Date : OS_Time) return Hour_Type;
121    function GM_Minute  (Date : OS_Time) return Minute_Type;
122    function GM_Second  (Date : OS_Time) return Second_Type;
123    --  Functions to extract information from OS_Time value
124
125    function "<"  (X, Y : OS_Time) return Boolean;
126    function ">"  (X, Y : OS_Time) return Boolean;
127    function ">=" (X, Y : OS_Time) return Boolean;
128    function "<=" (X, Y : OS_Time) return Boolean;
129    --  Basic comparison operators on OS_Time with obvious meanings. Note that
130    --  these have Intrinsic convention, so for example it is not permissible
131    --  to create accesses to any of these functions.
132
133    procedure GM_Split
134      (Date    : OS_Time;
135       Year    : out Year_Type;
136       Month   : out Month_Type;
137       Day     : out Day_Type;
138       Hour    : out Hour_Type;
139       Minute  : out Minute_Type;
140       Second  : out Second_Type);
141    --  Analogous to the routine of similar name in Calendar, takes an OS_Time
142    --  and splits it into its component parts with obvious meanings.
143
144    ----------------
145    -- File Stuff --
146    ----------------
147
148    --  These routines give access to the open/creat/close/read/write level of
149    --  I/O routines in the typical C library (these functions are not part of
150    --  the ANSI C standard, but are typically available in all systems). See
151    --  also package Interfaces.C_Streams for access to the stream level
152    --  routines.
153
154    --  Note on file names. If a file name is passed as type String in any of
155    --  the following specifications, then the name is a normal Ada string and
156    --  need not be NUL-terminated. However, a trailing NUL character is
157    --  permitted, and will be ignored (more accurately, the NUL and any
158    --  characters that follow it will be ignored).
159
160    type File_Descriptor is new Integer;
161    --  Corresponds to the int file handle values used in the C routines
162
163    Standin  : constant File_Descriptor := 0;
164    Standout : constant File_Descriptor := 1;
165    Standerr : constant File_Descriptor := 2;
166    --  File descriptors for standard input output files
167
168    Invalid_FD : constant File_Descriptor := -1;
169    --  File descriptor returned when error in opening/creating file;
170
171    type Mode is (Binary, Text);
172    for Mode'Size use Integer'Size;
173    for Mode use (Binary => 0, Text => 1);
174    --  Used in all the Open and Create calls to specify if the file is to be
175    --  opened in binary mode or text mode. In systems like Unix, this has no
176    --  effect, but in systems capable of text mode translation, the use of
177    --  Text as the mode parameter causes the system to do CR/LF translation
178    --  and also to recognize the DOS end of file character on input. The use
179    --  of Text where appropriate allows programs to take a portable Unix view
180    --  of DOS-format files and process them appropriately.
181
182    function Open_Read
183      (Name  : String;
184       Fmode : Mode) return File_Descriptor;
185    --  Open file Name for reading, returning file descriptor File descriptor
186    --  returned is Invalid_FD if file cannot be opened.
187
188    function Open_Read_Write
189      (Name  : String;
190       Fmode : Mode) return File_Descriptor;
191    --  Open file Name for both reading and writing, returning file descriptor.
192    --  File descriptor returned is Invalid_FD if file cannot be opened.
193
194    function Create_File
195      (Name  : String;
196       Fmode : Mode) return File_Descriptor;
197    --  Creates new file with given name for writing, returning file descriptor
198    --  for subsequent use in Write calls. File descriptor returned is
199    --  Invalid_FD if file cannot be successfully created.
200
201    function Create_Output_Text_File (Name  : String) return File_Descriptor;
202    --  Creates new text file with given name suitable to redirect standard
203    --  output, returning file descriptor. File descriptor returned is
204    --  Invalid_FD if file cannot be successfully created.
205
206    function Create_New_File
207      (Name  : String;
208       Fmode : Mode) return File_Descriptor;
209    --  Create new file with given name for writing, returning file descriptor
210    --  for subsequent use in Write calls. This differs from Create_File in
211    --  that it fails if the file already exists. File descriptor returned is
212    --  Invalid_FD if the file exists or cannot be created.
213
214    Temp_File_Len : constant Integer := 12;
215    --  Length of name returned by Create_Temp_File call (GNAT-XXXXXX & NUL)
216
217    subtype Temp_File_Name is String (1 .. Temp_File_Len);
218    --  String subtype set by Create_Temp_File
219
220    procedure Create_Temp_File
221      (FD   : out File_Descriptor;
222       Name : out Temp_File_Name);
223    --  Create and open for writing a temporary file in the current working
224    --  directory. The name of the file and the File Descriptor are returned.
225    --  The File Descriptor returned is Invalid_FD in the case of failure. No
226    --  mode parameter is provided. Since this is a temporary file, there is no
227    --  point in doing text translation on it.
228    --
229    --  On some OSes, the maximum number of temp files that can be created with
230    --  this procedure may be limited. When the maximum is reached, this
231    --  procedure returns Invalid_FD. On some OSes, there may be a race
232    --  condition between processes trying to create temp files at the same
233    --  time in the same directory using this procedure.
234
235    procedure Create_Temp_File
236      (FD   : out File_Descriptor;
237       Name : out String_Access);
238    --  Create and open for writing a temporary file in the current working
239    --  directory. The name of the file and the File Descriptor are returned.
240    --  No mode parameter is provided. Since this is a temporary file, there is
241    --  no point in doing text translation on it. It is the responsibility of
242    --  the caller to deallocate the access value returned in Name.
243    --
244    --  This procedure will always succeed if the current working directory is
245    --  writable. If the current working directory is not writable, then
246    --  Invalid_FD is returned for the file descriptor and null for the Name.
247    --  There is no race condition problem between processes trying to create
248    --  temp files at the same time in the same directory.
249
250    procedure Close (FD : File_Descriptor; Status : out Boolean);
251    --  Close file referenced by FD. Status is False if the underlying service
252    --  failed. Reasons for failure include: disk full, disk quotas exceeded
253    --  and invalid file descriptor (the file may have been closed twice).
254
255    procedure Close (FD : File_Descriptor);
256    --  Close file referenced by FD. This form is used when the caller wants to
257    --  ignore any possible error (see above for error cases).
258
259    procedure Set_Close_On_Exec
260      (FD            : File_Descriptor;
261       Close_On_Exec : Boolean;
262       Status        : out Boolean);
263    --  When Close_On_Exec is True, mark FD to be closed automatically when new
264    --  program is executed by the calling process (i.e. prevent FD from being
265    --  inherited by child processes). When Close_On_Exec is False, mark FD to
266    --  not be closed on exec (i.e. allow it to be inherited). Status is False
267    --  if the operation could not be performed.
268
269    procedure Delete_File (Name : String; Success : out Boolean);
270    --  Deletes file. Success is set True or False indicating if the delete is
271    --  successful.
272
273    procedure Rename_File
274      (Old_Name : String;
275       New_Name : String;
276       Success  : out Boolean);
277    --  Rename a file. Success is set True or False indicating if the rename is
278    --  successful or not.
279
280    --  The following defines the mode for the Copy_File procedure below. Note
281    --  that "time stamps and other file attributes" in the descriptions below
282    --  refers to the creation and last modification times, and also the file
283    --  access (read/write/execute) status flags.
284
285    type Copy_Mode is
286      (Copy,
287       --  Copy the file. It is an error if the target file already exists. The
288       --  time stamps and other file attributes are preserved in the copy.
289
290       Overwrite,
291       --  If the target file exists, the file is replaced otherwise the file
292       --  is just copied. The time stamps and other file attributes are
293       --  preserved in the copy.
294
295       Append);
296       --  If the target file exists, the contents of the source file is
297       --  appended at the end. Otherwise the source file is just copied. The
298       --  time stamps and other file attributes are are preserved if the
299       --  destination file does not exist.
300
301    type Attribute is
302      (Time_Stamps,
303       --  Copy time stamps from source file to target file. All other
304       --  attributes are set to normal default values for file creation.
305
306       Full,
307       --  All attributes are copied from the source file to the target file.
308       --  This includes the timestamps, and for example also includes
309       --  read/write/execute attributes in Unix systems.
310
311       None);
312       --  No attributes are copied. All attributes including the time stamp
313       --  values are set to normal default values for file creation.
314
315    --  Note: The default is Time_Stamps, which corresponds to the normal
316    --  default on Windows style systems. Full corresponds to the typical
317    --  effect of "cp -p" on Unix systems, and None corresponds to the typical
318    --  effect of "cp" on Unix systems.
319
320    --  Note: Time_Stamps and Full are not supported on VMS and VxWorks
321
322    procedure Copy_File
323      (Name     : String;
324       Pathname : String;
325       Success  : out Boolean;
326       Mode     : Copy_Mode := Copy;
327       Preserve : Attribute := Time_Stamps);
328    --  Copy a file. Name must designate a single file (no wild cards allowed).
329    --  Pathname can be a filename or directory name. In the latter case Name
330    --  is copied into the directory preserving the same file name. Mode
331    --  defines the kind of copy, see above with the default being a normal
332    --  copy in which the target file must not already exist. Success is set to
333    --  True or False indicating if the copy is successful (depending on the
334    --  specified Mode).
335    --
336    --  Note: this procedure is only supported to a very limited extent on VMS.
337    --  The only supported mode is Overwrite, and the only supported value for
338    --  Preserve is None, resulting in the default action which for Overwrite
339    --  is to leave attributes unchanged. Furthermore, the copy only works for
340    --  simple text files.
341
342    procedure Copy_Time_Stamps (Source, Dest : String; Success : out Boolean);
343    --  Copy Source file time stamps (last modification and last access time
344    --  stamps) to Dest file. Source and Dest must be valid filenames,
345    --  furthermore Dest must be writable. Success will be set to True if the
346    --  operation was successful and False otherwise.
347    --
348    --  Note: this procedure is not supported on VMS and VxWorks. On these
349    --  platforms, Success is always set to False.
350
351    function Read
352      (FD   : File_Descriptor;
353       A    : System.Address;
354       N    : Integer) return Integer;
355    --  Read N bytes to address A from file referenced by FD. Returned value is
356    --  count of bytes actually read, which can be less than N at EOF.
357
358    function Write
359      (FD   : File_Descriptor;
360       A    : System.Address;
361       N    : Integer) return Integer;
362    --  Write N bytes from address A to file referenced by FD. The returned
363    --  value is the number of bytes written, which can be less than N if a
364    --  disk full condition was detected.
365
366    Seek_Cur : constant := 1;
367    Seek_End : constant := 2;
368    Seek_Set : constant := 0;
369    --  Used to indicate origin for Lseek call
370
371    procedure Lseek
372      (FD     : File_Descriptor;
373       offset : Long_Integer;
374       origin : Integer);
375    pragma Import (C, Lseek, "__gnat_lseek");
376    --  Sets the current file pointer to the indicated offset value, relative
377    --  to the current position (origin = SEEK_CUR), end of file (origin =
378    --  SEEK_END), or start of file (origin = SEEK_SET).
379
380    function File_Length (FD : File_Descriptor) return Long_Integer;
381    pragma Import (C, File_Length, "__gnat_file_length");
382    --  Get length of file from file descriptor FD
383
384    function File_Time_Stamp (Name : String) return OS_Time;
385    --  Given the name of a file or directory, Name, obtains and returns the
386    --  time stamp. This function can be used for an unopened file. Returns
387    --  Invalid_Time is Name doesn't correspond to an existing file.
388
389    function File_Time_Stamp (FD : File_Descriptor) return OS_Time;
390    --  Get time stamp of file from file descriptor FD Returns Invalid_Time is
391    --  FD doesn't correspond to an existing file.
392
393    function Normalize_Pathname
394      (Name           : String;
395       Directory      : String  := "";
396       Resolve_Links  : Boolean := True;
397       Case_Sensitive : Boolean := True) return String;
398    --  Returns a file name as an absolute path name, resolving all relative
399    --  directories, and symbolic links. The parameter Directory is a fully
400    --  resolved path name for a directory, or the empty string (the default).
401    --  Name is the name of a file, which is either relative to the given
402    --  directory name, if Directory is non-null, or to the current working
403    --  directory if Directory is null. The result returned is the normalized
404    --  name of the file. For most cases, if two file names designate the same
405    --  file through different paths, Normalize_Pathname will return the same
406    --  canonical name in both cases. However, there are cases when this is not
407    --  true; for example, this is not true in Unix for two hard links
408    --  designating the same file.
409    --
410    --  On Windows, the returned path will start with a drive letter except
411    --  when Directory is not empty and does not include a drive letter. If
412    --  Directory is empty (the default) and Name is a relative path or an
413    --  absolute path without drive letter, the letter of the current drive
414    --  will start the returned path. If Case_Sensitive is True (the default),
415    --  then this drive letter will be forced to upper case ("C:\...").
416    --
417    --  If Resolve_Links is set to True, then the symbolic links, on systems
418    --  that support them, will be fully converted to the name of the file or
419    --  directory pointed to. This is slightly less efficient, since it
420    --  requires system calls.
421    --
422    --  If Name cannot be resolved or is null on entry (for example if there is
423    --  symbolic link circularity, e.g. A is a symbolic link for B, and B is a
424    --  symbolic link for A), then Normalize_Pathname returns an empty  string.
425    --
426    --  In VMS, if Name follows the VMS syntax file specification, it is first
427    --  converted into Unix syntax. If the conversion fails, Normalize_Pathname
428    --  returns an empty string.
429    --
430    --  For case-sensitive file systems, the value of Case_Sensitive parameter
431    --  is ignored. For file systems that are not case-sensitive, such as
432    --  Windows and OpenVMS, if this parameter is set to False, then the file
433    --  and directory names are folded to lower case. This allows checking
434    --  whether two files are the same by applying this function to their names
435    --  and comparing the results. If Case_Sensitive is set to True, this
436    --  function does not change the casing of file and directory names.
437
438    function Is_Absolute_Path (Name : String) return Boolean;
439    --  Returns True if Name is an absolute path name, i.e. it designates a
440    --  file or directory absolutely rather than relative to another directory.
441
442    function Is_Regular_File (Name : String) return Boolean;
443    --  Determines if the given string, Name, is the name of an existing
444    --  regular file. Returns True if so, False otherwise. Name may be an
445    --  absolute path name or a relative path name, including a simple file
446    --  name. If it is a relative path name, it is relative to the current
447    --  working directory.
448
449    function Is_Directory (Name : String) return Boolean;
450    --  Determines if the given string, Name, is the name of a directory.
451    --  Returns True if so, False otherwise. Name may be an absolute path
452    --  name or a relative path name, including a simple file name. If it is
453    --  a relative path name, it is relative to the current working directory.
454
455    function Is_Readable_File (Name : String) return Boolean;
456    --  Determines if the given string, Name, is the name of an existing file
457    --  that is readable. Returns True if so, False otherwise. Note that this
458    --  function simply interrogates the file attributes (e.g. using the C
459    --  function stat), so it does not indicate a situation in which a file may
460    --  not actually be readable due to some other process having exclusive
461    --  access.
462
463    function Is_Writable_File (Name : String) return Boolean;
464    --  Determines if the given string, Name, is the name of an existing file
465    --  that is writable. Returns True if so, False otherwise. Note that this
466    --  function simply interrogates the file attributes (e.g. using the C
467    --  function stat), so it does not indicate a situation in which a file may
468    --  not actually be writeable due to some other process having exclusive
469    --  access.
470
471    function Is_Symbolic_Link (Name : String) return Boolean;
472    --  Determines if the given string, Name, is the path of a symbolic link on
473    --  systems that support it. Returns True if so, False if the path is not a
474    --  symbolic link or if the system does not support symbolic links.
475    --
476    --  A symbolic link is an indirect pointer to a file; its directory entry
477    --  contains the name of the file to which it is linked. Symbolic links may
478    --  span file systems and may refer to directories.
479
480    procedure Set_Writable (Name : String);
481    --  Change the permissions on the named file to make it writable
482    --  for its owner.
483
484    procedure Set_Read_Only (Name : String);
485    --  Change the permissions on the named file to make it non-writable
486    --  for its owner.
487
488    procedure Set_Executable (Name : String);
489    --  Change the permissions on the named file to make it executable
490    --  for its owner.
491
492    function Locate_Exec_On_Path
493      (Exec_Name : String) return String_Access;
494    --  Try to locate an executable whose name is given by Exec_Name in the
495    --  directories listed in the environment Path. If the Exec_Name doesn't
496    --  have the executable suffix, it will be appended before the search.
497    --  Otherwise works like Locate_Regular_File below.
498    --
499    --  Note that this function allocates some memory for the returned value.
500    --  This memory needs to be deallocated after use.
501
502    function Locate_Regular_File
503      (File_Name : String;
504       Path      : String) return String_Access;
505    --  Try to locate a regular file whose name is given by File_Name in the
506    --  directories listed in Path. If a file is found, its full pathname is
507    --  returned; otherwise, a null pointer is returned. If the File_Name given
508    --  is an absolute pathname, then Locate_Regular_File just checks that the
509    --  file exists and is a regular file. Otherwise, if the File_Name given
510    --  includes directory information, Locate_Regular_File first checks if the
511    --  file exists relative to the current directory. If it does not, or if
512    --  the File_Name given is a simple file name, the Path argument is parsed
513    --  according to OS conventions, and for each directory in the Path a check
514    --  is made if File_Name is a relative pathname of a regular file from that
515    --  directory.
516    --
517    --  Note that this function allocates some memory for the returned value.
518    --  This memory needs to be deallocated after use.
519
520    function Get_Debuggable_Suffix return String_Access;
521    --  Return the debuggable suffix convention. Usually this is the same as
522    --  the convention for Get_Executable_Suffix. The result is allocated on
523    --  the heap and should be freed when no longer needed to avoid storage
524    --  leaks.
525
526    function Get_Executable_Suffix return String_Access;
527    --  Return the executable suffix convention. The result is allocated on
528    --  the heap and should be freed when no longer needed to avoid storage
529    --  leaks.
530
531    function Get_Object_Suffix return String_Access;
532    --  Return the object suffix convention. The result is allocated on the
533    --  heap and should be freed when no longer needed to avoid storage leaks.
534
535    --  The following section contains low-level routines using addresses to
536    --  pass file name and executable name. In each routine the name must be
537    --  Nul-Terminated. For complete documentation refer to the equivalent
538    --  routine (using String in place of C_File_Name) defined above.
539
540    subtype C_File_Name is System.Address;
541    --  This subtype is used to document that a parameter is the address of a
542    --  null-terminated string containing the name of a file.
543
544    --  All the following functions need comments ???
545
546    function Open_Read
547      (Name  : C_File_Name;
548       Fmode : Mode) return File_Descriptor;
549
550    function Open_Read_Write
551      (Name  : C_File_Name;
552       Fmode : Mode) return File_Descriptor;
553
554    function Create_File
555      (Name  : C_File_Name;
556       Fmode : Mode) return File_Descriptor;
557
558    function Create_New_File
559      (Name  : C_File_Name;
560       Fmode : Mode) return File_Descriptor;
561
562    procedure Delete_File (Name : C_File_Name; Success : out Boolean);
563
564    procedure Rename_File
565      (Old_Name : C_File_Name;
566       New_Name : C_File_Name;
567       Success  : out Boolean);
568
569    procedure Copy_File
570      (Name     : C_File_Name;
571       Pathname : C_File_Name;
572       Success  : out Boolean;
573       Mode     : Copy_Mode := Copy;
574       Preserve : Attribute := Time_Stamps);
575
576    procedure Copy_Time_Stamps
577      (Source, Dest : C_File_Name;
578       Success      : out Boolean);
579
580    function File_Time_Stamp (Name : C_File_Name) return OS_Time;
581    --  Returns Invalid_Time is Name doesn't correspond to an existing file
582
583    function Is_Regular_File (Name : C_File_Name) return Boolean;
584    function Is_Directory (Name : C_File_Name) return Boolean;
585    function Is_Readable_File (Name : C_File_Name) return Boolean;
586    function Is_Writable_File (Name : C_File_Name) return Boolean;
587    function Is_Symbolic_Link (Name : C_File_Name) return Boolean;
588
589    function Locate_Regular_File
590      (File_Name : C_File_Name;
591       Path      : C_File_Name)
592       return      String_Access;
593
594    ------------------
595    -- Subprocesses --
596    ------------------
597
598    subtype Argument_List is String_List;
599    --  Type used for argument list in call to Spawn. The lower bound of the
600    --  array should be 1, and the length of the array indicates the number of
601    --  arguments.
602
603    subtype Argument_List_Access is String_List_Access;
604    --  Type used to return Argument_List without dragging in secondary stack.
605    --  Note that there is a Free procedure declared for this subtype which
606    --  frees the array and all referenced strings.
607
608    procedure Normalize_Arguments (Args : in out Argument_List);
609    --  Normalize all arguments in the list. This ensure that the argument list
610    --  is compatible with the running OS and will works fine with Spawn and
611    --  Non_Blocking_Spawn for example. If Normalize_Arguments is called twice
612    --  on the same list it will do nothing the second time. Note that Spawn
613    --  and Non_Blocking_Spawn call Normalize_Arguments automatically, but
614    --  since there is a guarantee that a second call does nothing, this
615    --  internal call will have no effect if Normalize_Arguments is called
616    --  before calling Spawn. The call to Normalize_Arguments assumes that the
617    --  individual referenced arguments in Argument_List are on the heap, and
618    --  may free them and reallocate if they are modified.
619
620    procedure Spawn
621      (Program_Name : String;
622       Args         : Argument_List;
623       Success      : out Boolean);
624    --  This procedure spawns a program with a given list of arguments. The
625    --  first parameter of is the name of the executable. The second parameter
626    --  contains the arguments to be passed to this program. Success is False
627    --  if the named program could not be spawned or its execution completed
628    --  unsuccessfully. Note that the caller will be blocked until the
629    --  execution of the spawned program is complete. For maximum portability,
630    --  use a full path name for the Program_Name argument. On some systems
631    --  (notably Unix systems) a simple file name may also work (if the
632    --  executable can be located in the path).
633    --
634    --  "Spawn" should not be used in tasking applications. Why not??? More
635    --  documentation would be helpful here ??? Is it really tasking programs,
636    --  or tasking activity that cause trouble ???
637    --
638    --  Note: Arguments in Args that contain spaces and/or quotes such as
639    --  "--GCC=gcc -v" or "--GCC=""gcc -v""" are not portable across all
640    --  operating systems, and would not have the desired effect if they were
641    --  passed directly to the operating system. To avoid this problem, Spawn
642    --  makes an internal call to Normalize_Arguments, which ensures that such
643    --  arguments are modified in a manner that ensures that the desired effect
644    --  is obtained on all operating systems. The caller may call
645    --  Normalize_Arguments explicitly before the call (e.g. to print out the
646    --  exact form of arguments passed to the operating system). In this case
647    --  the guarantee a second call to Normalize_Arguments has no effect
648    --  ensures that the internal call will not affect the result. Note that
649    --  the implicit call to Normalize_Arguments may free and reallocate some
650    --  of the individual arguments.
651    --
652    --  This function will always set Success to False under VxWorks and other
653    --  similar operating systems which have no notion of the concept of
654    --  dynamically executable file.
655
656    function Spawn
657      (Program_Name : String;
658       Args         : Argument_List)
659       return         Integer;
660    --  Similar to the above procedure, but returns the actual status returned
661    --  by the operating system, or -1 under VxWorks and any other similar
662    --  operating systems which have no notion of separately spawnable programs.
663    --
664    --  "Spawn" should not be used in tasking applications.
665
666    procedure Spawn
667      (Program_Name           : String;
668       Args                   : Argument_List;
669       Output_File_Descriptor : File_Descriptor;
670       Return_Code            : out Integer;
671       Err_To_Out             : Boolean := True);
672    --  Similar to the procedure above, but redirects the output to the file
673    --  designated by Output_File_Descriptor. If Err_To_Out is True, then the
674    --  Standard Error output is also redirected.
675    --  Return_Code is set to the status code returned by the operating system
676    --
677    --  "Spawn" should not be used in tasking applications.
678
679    procedure Spawn
680      (Program_Name  : String;
681       Args          : Argument_List;
682       Output_File   : String;
683       Success       : out Boolean;
684       Return_Code   : out Integer;
685       Err_To_Out    : Boolean := True);
686    --  Similar to the procedure above, but saves the output of the command to
687    --  a file with the name Output_File.
688    --
689    --  Success is set to True if the command is executed and its output
690    --  successfully written to the file. If Success is True, then Return_Code
691    --  will be set to the status code returned by the operating system.
692    --  Otherwise, Return_Code is undefined.
693    --
694    --  "Spawn" should not be used in tasking applications.
695
696    type Process_Id is private;
697    --  A private type used to identify a process activated by the following
698    --  non-blocking call. The only meaningful operation on this type is a
699    --  comparison for equality.
700
701    Invalid_Pid : constant Process_Id;
702    --  A special value used to indicate errors, as described below
703
704    function Non_Blocking_Spawn
705      (Program_Name : String;
706       Args         : Argument_List)
707       return         Process_Id;
708    --  This is a non blocking call. The Process_Id of the spawned process is
709    --  returned. Parameters are to be used as in Spawn. If Invalid_Id is
710    --  returned the program could not be spawned.
711    --
712    --  "Non_Blocking_Spawn" should not be used in tasking applications.
713    --
714    --  This function will always return Invalid_Id under VxWorks, since there
715    --  is no notion of executables under this OS.
716
717    function Non_Blocking_Spawn
718      (Program_Name           : String;
719       Args                   : Argument_List;
720       Output_File_Descriptor : File_Descriptor;
721       Err_To_Out             : Boolean := True)
722       return                   Process_Id;
723    --  Similar to the procedure above, but redirects the output to the file
724    --  designated by Output_File_Descriptor. If Err_To_Out is True, then the
725    --  Standard Error output is also redirected. Invalid_Id is returned
726    --  if the program could not be spawned successfully.
727    --
728    --  "Non_Blocking_Spawn" should not be used in tasking applications.
729    --
730    --  This function will always return Invalid_Id under VxWorks, since there
731    --  is no notion of executables under this OS.
732
733    function Non_Blocking_Spawn
734      (Program_Name : String;
735       Args         : Argument_List;
736       Output_File  : String;
737       Err_To_Out   : Boolean := True)
738       return         Process_Id;
739    --  Similar to the procedure above, but saves the output of the command to
740    --  a file with the name Output_File.
741    --
742    --  Success is set to True if the command is executed and its output
743    --  successfully written to the file. Invalid_Id is returned if the output
744    --  file could not be created or if the program could not be spawned
745    --  successfully.
746    --
747    --  "Non_Blocking_Spawn" should not be used in tasking applications.
748    --
749    --  This function will always return Invalid_Id under VxWorks, since there
750    --  is no notion of executables under this OS.
751
752    procedure Wait_Process (Pid : out Process_Id; Success : out Boolean);
753    --  Wait for the completion of any of the processes created by previous
754    --  calls to Non_Blocking_Spawn. The caller will be suspended until one of
755    --  these processes terminates (normally or abnormally). If any of these
756    --  subprocesses terminates prior to the call to Wait_Process (and has not
757    --  been returned by a previous call to Wait_Process), then the call to
758    --  Wait_Process is immediate. Pid identifies the process that has
759    --  terminated (matching the value returned from Non_Blocking_Spawn).
760    --  Success is set to True if this sub-process terminated successfully. If
761    --  Pid = Invalid_Id, there were no subprocesses left to wait on.
762    --
763    --  This function will always set success to False under VxWorks, since
764    --  there is no notion of executables under this OS.
765
766    function Argument_String_To_List
767      (Arg_String : String)
768       return       Argument_List_Access;
769    --  Take a string that is a program and its arguments and parse it into an
770    --  Argument_List. Note that the result is allocated on the heap, and must
771    --  be freed by the programmer (when it is no longer needed) to avoid
772    --  memory leaks.
773
774    -------------------
775    -- Miscellaneous --
776    -------------------
777
778    function Getenv (Name : String) return String_Access;
779    --  Get the value of the environment variable. Returns an access to the
780    --  empty string if the environment variable does not exist or has an
781    --  explicit null value (in some operating systems these are distinct
782    --  cases, in others they are not; this interface abstracts away that
783    --  difference. The argument is allocated on the heap (even in the null
784    --  case), and needs to be freed explicitly when no longer needed to avoid
785    --  memory leaks.
786
787    procedure Setenv (Name : String; Value : String);
788    --  Set the value of the environment variable Name to Value. This call
789    --  modifies the current environment, but does not modify the parent
790    --  process environment. After a call to Setenv, Getenv (Name) will always
791    --  return a String_Access referencing the same String as Value. This is
792    --  true also for the null string case (the actual effect may be to either
793    --  set an explicit null as the value, or to remove the entry, this is
794    --  operating system dependent). Note that any following calls to Spawn
795    --  will pass an environment to the spawned process that includes the
796    --  changes made by Setenv calls. This procedure is not available on VMS.
797
798    procedure OS_Exit (Status : Integer);
799    pragma Import (C, OS_Exit, "__gnat_os_exit");
800    pragma No_Return (OS_Exit);
801    --  Exit to OS with given status code (program is terminated)
802
803    procedure OS_Abort;
804    pragma Import (C, OS_Abort, "abort");
805    pragma No_Return (OS_Abort);
806    --  Exit to OS signalling an abort (traceback or other appropriate
807    --  diagnostic information should be given if possible, or entry made to
808    --  the debugger if that is possible).
809
810    function Errno return Integer;
811    pragma Import (C, Errno, "__get_errno");
812    --  Return the task-safe last error number
813
814    procedure Set_Errno (Errno : Integer);
815    pragma Import (C, Set_Errno, "__set_errno");
816    --  Set the task-safe error number
817
818    Directory_Separator : constant Character;
819    --  The character that is used to separate parts of a pathname
820
821    Path_Separator : constant Character;
822    --  The character to separate paths in an environment variable value
823
824 private
825    pragma Import (C, Path_Separator, "__gnat_path_separator");
826    pragma Import (C, Directory_Separator, "__gnat_dir_separator");
827
828    type OS_Time is new Long_Integer;
829    --  Type used for timestamps in the compiler. This type is used to hold
830    --  time stamps, but may have a different representation than C's time_t.
831    --  This type needs to match the declaration of OS_Time in adaint.h.
832
833    --  Add pragma Inline statements for comparison operations on OS_Time. It
834    --  would actually be nice to use pragma Import (Intrinsic) here, but this
835    --  was not properly supported till GNAT 3.15a, so that would cause
836    --  bootstrap path problems. To be changed later ???
837
838    Invalid_Time : constant OS_Time := -1;
839    --  This value should match the return valud by __gnat_file_time_*
840
841    pragma Inline ("<");
842    pragma Inline (">");
843    pragma Inline ("<=");
844    pragma Inline (">=");
845
846    type Process_Id is new Integer;
847    Invalid_Pid : constant Process_Id := -1;
848
849 end GNAT.OS_Lib;