OSDN Git Service

2010-10-22 Ben Brosgol <brosgol@adacore.com>
[pf3gnuchains/gcc-fork.git] / gcc / ada / cstreams.c
1 /****************************************************************************
2  *                                                                          *
3  *                          GNAT RUN-TIME COMPONENTS                        *
4  *                                                                          *
5  *                              C S T R E A M S                             *
6  *                                                                          *
7  *              Auxiliary C functions for Interfaces.C.Streams              *
8  *                                                                          *
9  *          Copyright (C) 1992-2010, 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 3,  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.                                     *
17  *                                                                          *
18  * As a special exception under Section 7 of GPL version 3, you are granted *
19  * additional permissions described in the GCC Runtime Library Exception,   *
20  * version 3.1, as published by the Free Software Foundation.               *
21  *                                                                          *
22  * You should have received a copy of the GNU General Public License and    *
23  * a copy of the GCC Runtime Library Exception along with this program;     *
24  * see the files COPYING3 and COPYING.RUNTIME respectively.  If not, see    *
25  * <http://www.gnu.org/licenses/>.                                          *
26  *                                                                          *
27  * GNAT was originally developed  by the GNAT team at  New York University. *
28  * Extensive contributions were provided by Ada Core Technologies Inc.      *
29  *                                                                          *
30  ****************************************************************************/
31
32 /* Routines required for implementing routines in Interfaces.C.Streams */
33
34 #ifdef __vxworks
35 #include "vxWorks.h"
36 #endif
37
38 #ifdef IN_RTS
39 #include "tconfig.h"
40 #include "tsystem.h"
41 #include <sys/stat.h>
42 #else
43 #include "config.h"
44 #include "system.h"
45 #endif
46
47 #include "adaint.h"
48
49 #ifdef VMS
50 #include <unixlib.h>
51 #endif
52
53 #ifdef linux
54 /* Don't use macros on GNU/Linux since they cause incompatible changes between
55    glibc 2.0 and 2.1 */
56
57 #ifdef stderr
58 #  undef stderr
59 #endif
60 #ifdef stdin
61 #  undef stdin
62 #endif
63 #ifdef stdout
64 #  undef stdout
65 #endif
66
67 #endif
68
69 /* The _IONBF value in MINGW32 stdio.h is wrong.  */
70 #if defined (WINNT) || defined (_WINNT)
71 #if OLD_MINGW
72 #undef _IONBF
73 #define _IONBF 0004
74 #endif
75 #endif
76
77 int
78 __gnat_feof (FILE *stream)
79 {
80   return (feof (stream));
81 }
82
83 int
84 __gnat_ferror (FILE *stream)
85 {
86    return (ferror (stream));
87 }
88
89 int
90 __gnat_fileno (FILE *stream)
91 {
92    return (fileno (stream));
93 }
94
95 int
96 __gnat_is_regular_file_fd (int fd)
97 {
98   int ret;
99   GNAT_STRUCT_STAT statbuf;
100
101   ret = GNAT_FSTAT (fd, &statbuf);
102   return (!ret && S_ISREG (statbuf.st_mode));
103 }
104
105 /* on some systems, the constants for seek are not defined, if so, then
106    provide the conventional definitions */
107
108 #ifndef SEEK_SET
109 #define SEEK_SET 0  /* Set file pointer to offset                           */
110 #define SEEK_CUR 1  /* Set file pointer to its current value plus offset    */
111 #define SEEK_END 2  /* Set file pointer to the size of the file plus offset */
112 #endif
113
114 /* if L_tmpnam is not set, use a large number that should be safe */
115 #ifndef L_tmpnam
116 #define L_tmpnam 256
117 #endif
118
119 int    __gnat_constant_eof      = EOF;
120 int    __gnat_constant_iofbf    = _IOFBF;
121 int    __gnat_constant_iolbf    = _IOLBF;
122 int    __gnat_constant_ionbf    = _IONBF;
123 int    __gnat_constant_l_tmpnam = L_tmpnam;
124 int    __gnat_constant_seek_cur = SEEK_CUR;
125 int    __gnat_constant_seek_end = SEEK_END;
126 int    __gnat_constant_seek_set = SEEK_SET;
127
128 FILE *
129 __gnat_constant_stderr (void)
130 {
131   return stderr;
132 }
133
134 FILE *
135 __gnat_constant_stdin (void)
136 {
137   return stdin;
138 }
139
140 FILE *
141 __gnat_constant_stdout (void)
142 {
143   return stdout;
144 }
145
146 char *
147 __gnat_full_name (char *nam, char *buffer)
148 {
149 #ifdef RTSS
150   /* RTSS applications have no current-directory notion, so RTSS file I/O
151      requests must use fully qualified path names, such as:
152        c:\temp\MyFile.txt (for a file system object)
153        \\.\MyDevice0 (for a device object)
154    */
155   if (nam[1] == ':' || nam[0] == '\\')
156     strcpy (buffer, nam);
157   else
158     buffer[0] = '\0';
159
160 #elif defined (__MINGW32__)
161   /* If this is a device file return it as is;
162      under Windows NT a device file ends with ":".  */
163   if (nam[strlen (nam) - 1] == ':')
164     strcpy (buffer, nam);
165   else
166     {
167       char *p;
168
169       _fullpath (buffer, nam, __gnat_max_path_len);
170
171       for (p = buffer; *p; p++)
172         if (*p == '/')
173           *p = '\\';
174     }
175
176 #elif defined (sgi) || defined (__FreeBSD__)
177
178   /* Use realpath function which resolves links and references to . and ..
179      on those Unix systems that support it. Note that GNU/Linux provides it but
180      cannot handle more than 5 symbolic links in a full name, so we use the
181      getcwd approach instead. */
182   realpath (nam, buffer);
183
184 #elif defined (VMS)
185   strncpy (buffer, __gnat_to_canonical_file_spec (nam), __gnat_max_path_len);
186
187   if (buffer[0] == '/' || strchr (buffer, '!'))  /* '!' means decnet node */
188     strncpy (buffer, __gnat_to_host_file_spec (buffer), __gnat_max_path_len);
189   else
190     {
191       char *nambuffer = alloca (__gnat_max_path_len);
192
193       strncpy (nambuffer, buffer, __gnat_max_path_len);
194       strncpy
195         (buffer, getcwd (buffer, __gnat_max_path_len, 0), __gnat_max_path_len);
196       strncat (buffer, "/", __gnat_max_path_len);
197       strncat (buffer, nambuffer, __gnat_max_path_len);
198       strncpy (buffer, __gnat_to_host_file_spec (buffer), __gnat_max_path_len);
199     }
200
201 #elif defined (__vxworks)
202
203   /* On VxWorks systems, an absolute path can be represented (depending on
204      the host platform) as either /dir/file, or device:/dir/file, or
205      device:drive_letter:/dir/file. Use the __gnat_is_absolute_path
206      to verify it. */
207
208   int length;
209
210   if (__gnat_is_absolute_path (nam, strlen (nam)))
211     strcpy (buffer, nam);
212
213   else
214     {
215       length = __gnat_max_path_len;
216       __gnat_get_current_dir (buffer, &length);
217       strncat (buffer, nam, __gnat_max_path_len - length - 1);
218     }
219
220 #else
221   if (nam[0] != '/')
222     {
223       char *p = getcwd (buffer, __gnat_max_path_len);
224
225       if (p == 0)
226         {
227           buffer[0] = '\0';
228           return 0;
229         }
230
231
232       /* If the name returned is an absolute path, it is safe to append '/'
233          to the path and concatenate the name of the file. */
234       if (buffer[0] == '/')
235         strcat (buffer, "/");
236
237       strcat (buffer, nam);
238     }
239   else
240     strcpy (buffer, nam);
241 #endif
242
243   return buffer;
244 }