Merge -r 127928:132243 from trunk
[official-gcc.git] / libgfortran / intrinsics / env.c
blob4d6e037b5e5c0c3cdaab06da0c382bae3669145e
1 /* Implementation of the GETENV g77, and
2 GET_ENVIRONMENT_VARIABLE F2003, intrinsics.
3 Copyright (C) 2004, 2007 Free Software Foundation, Inc.
4 Contributed by Janne Blomqvist.
6 This file is part of the GNU Fortran 95 runtime library (libgfortran).
8 Libgfortran is free software; you can redistribute it and/or
9 modify it under the terms of the GNU General Public
10 License as published by the Free Software Foundation; either
11 version 2 of the License, or (at your option) any later version.
13 In addition to the permissions in the GNU General Public License, the
14 Free Software Foundation gives you unlimited permission to link the
15 compiled version of this file into combinations with other programs,
16 and to distribute those combinations without any restriction coming
17 from the use of this file. (The General Public License restrictions
18 do apply in other respects; for example, they cover modification of
19 the file, and distribution when not linked into a combine
20 executable.)
22 Libgfortran is distributed in the hope that it will be useful,
23 but WITHOUT ANY WARRANTY; without even the implied warranty of
24 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
25 GNU General Public License for more details.
27 You should have received a copy of the GNU General Public
28 License along with libgfortran; see the file COPYING. If not,
29 write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
30 Boston, MA 02110-1301, USA. */
32 #include "libgfortran.h"
33 #include <stdlib.h>
34 #include <string.h>
37 /* GETENV (NAME, VALUE), g77 intrinsic for retrieving the value of
38 an environment variable. The name of the variable is specified in
39 NAME, and the result is stored into VALUE. */
41 void PREFIX(getenv) (char *, char *, gfc_charlen_type, gfc_charlen_type);
42 export_proto_np(PREFIX(getenv));
44 void
45 PREFIX(getenv) (char * name, char * value, gfc_charlen_type name_len,
46 gfc_charlen_type value_len)
48 char *name_nt;
49 char *res = NULL;
50 int res_len;
52 if (name == NULL || value == NULL)
53 runtime_error ("Both arguments to getenv are mandatory.");
55 if (value_len < 1 || name_len < 1)
56 runtime_error ("Zero length string(s) passed to getenv.");
57 else
58 memset (value, ' ', value_len); /* Blank the string. */
60 /* Trim trailing spaces from name. */
61 while (name_len > 0 && name[name_len - 1] == ' ')
62 name_len--;
64 /* Make a null terminated copy of the string. */
65 name_nt = gfc_alloca (name_len + 1);
66 memcpy (name_nt, name, name_len);
67 name_nt[name_len] = '\0';
69 res = getenv(name_nt);
71 /* If res is NULL, it means that the environment variable didn't
72 exist, so just return. */
73 if (res == NULL)
74 return;
76 res_len = strlen(res);
77 if (value_len < res_len)
78 memcpy (value, res, value_len);
79 else
80 memcpy (value, res, res_len);
84 /* GET_ENVIRONMENT_VARIABLE (name, [value, length, status, trim_name])
85 is a F2003 intrinsic for getting an environment variable. */
87 /* Status codes specifyed by the standard. */
88 #define GFC_SUCCESS 0
89 #define GFC_VALUE_TOO_SHORT -1
90 #define GFC_NAME_DOES_NOT_EXIST 1
92 /* This is also specified by the standard and means that the
93 processor doesn't support environment variables. At the moment,
94 gfortran doesn't use it. */
95 #define GFC_NOT_SUPPORTED 2
97 /* Processor-specific failure code. */
98 #define GFC_FAILURE 42
100 extern void get_environment_variable_i4 (char *, char *, GFC_INTEGER_4 *,
101 GFC_INTEGER_4 *, GFC_LOGICAL_4 *,
102 gfc_charlen_type, gfc_charlen_type);
103 iexport_proto(get_environment_variable_i4);
105 void
106 get_environment_variable_i4 (char *name, char *value, GFC_INTEGER_4 *length,
107 GFC_INTEGER_4 *status, GFC_LOGICAL_4 *trim_name,
108 gfc_charlen_type name_len,
109 gfc_charlen_type value_len)
111 int stat = GFC_SUCCESS, res_len = 0;
112 char *name_nt;
113 char *res;
115 if (name == NULL)
116 runtime_error ("Name is required for get_environment_variable.");
118 if (value == NULL && length == NULL && status == NULL && trim_name == NULL)
119 return;
121 if (name_len < 1)
122 runtime_error ("Zero-length string passed as name to "
123 "get_environment_variable.");
125 if (value != NULL)
127 if (value_len < 1)
128 runtime_error ("Zero-length string passed as value to "
129 "get_environment_variable.");
130 else
131 memset (value, ' ', value_len); /* Blank the string. */
134 if ((!trim_name) || *trim_name)
136 /* Trim trailing spaces from name. */
137 while (name_len > 0 && name[name_len - 1] == ' ')
138 name_len--;
140 /* Make a null terminated copy of the name. */
141 name_nt = gfc_alloca (name_len + 1);
142 memcpy (name_nt, name, name_len);
143 name_nt[name_len] = '\0';
145 res = getenv(name_nt);
147 if (res == NULL)
148 stat = GFC_NAME_DOES_NOT_EXIST;
149 else
151 res_len = strlen(res);
152 if (value != NULL)
154 if (value_len < res_len)
156 memcpy (value, res, value_len);
157 stat = GFC_VALUE_TOO_SHORT;
159 else
160 memcpy (value, res, res_len);
164 if (status != NULL)
165 *status = stat;
167 if (length != NULL)
168 *length = res_len;
170 iexport(get_environment_variable_i4);
173 /* INTEGER*8 wrapper for get_environment_variable. */
175 extern void get_environment_variable_i8 (char *, char *, GFC_INTEGER_8 *,
176 GFC_INTEGER_8 *, GFC_LOGICAL_8 *,
177 gfc_charlen_type, gfc_charlen_type);
178 export_proto(get_environment_variable_i8);
180 void
181 get_environment_variable_i8 (char *name, char *value, GFC_INTEGER_8 *length,
182 GFC_INTEGER_8 *status, GFC_LOGICAL_8 *trim_name,
183 gfc_charlen_type name_len,
184 gfc_charlen_type value_len)
186 GFC_INTEGER_4 length4, status4;
187 GFC_LOGICAL_4 trim_name4;
189 if (trim_name)
190 trim_name4 = *trim_name;
192 get_environment_variable_i4 (name, value, &length4, &status4,
193 &trim_name4, name_len, value_len);
195 if (length)
196 *length = length4;
198 if (status)
199 *status = status4;