Merge -r 127928:132243 from trunk
[official-gcc.git] / libgfortran / intrinsics / args.c
blobc3435957d26dc6489e238222f9f88d4b0e25fb31
1 /* Implementation of the GETARG and IARGC g77, and
2 corresponding F2003, intrinsics.
3 Copyright (C) 2004, 2005, 2007 Free Software Foundation, Inc.
4 Contributed by Bud Davis and 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 <string.h>
36 /* Get a commandline argument. */
38 extern void getarg_i4 (GFC_INTEGER_4 *, char *, gfc_charlen_type);
39 iexport_proto(getarg_i4);
41 void
42 getarg_i4 (GFC_INTEGER_4 *pos, char *val, gfc_charlen_type val_len)
44 int argc;
45 int arglen;
46 char **argv;
48 get_args (&argc, &argv);
50 if (val_len < 1 || !val )
51 return; /* something is wrong , leave immediately */
53 memset (val, ' ', val_len);
55 if ((*pos) + 1 <= argc && *pos >=0 )
57 arglen = strlen (argv[*pos]);
58 if (arglen > val_len)
59 arglen = val_len;
60 memcpy (val, argv[*pos], arglen);
63 iexport(getarg_i4);
66 /* INTEGER*8 wrapper of getarg. */
68 extern void getarg_i8 (GFC_INTEGER_8 *, char *, gfc_charlen_type);
69 export_proto (getarg_i8);
71 void
72 getarg_i8 (GFC_INTEGER_8 *pos, char *val, gfc_charlen_type val_len)
74 GFC_INTEGER_4 pos4 = (GFC_INTEGER_4) *pos;
75 getarg_i4 (&pos4, val, val_len);
79 /* Return the number of commandline arguments. The g77 info page
80 states that iargc does not include the specification of the
81 program name itself. */
83 extern GFC_INTEGER_4 iargc (void);
84 export_proto(iargc);
86 GFC_INTEGER_4
87 iargc (void)
89 int argc;
90 char **argv;
92 get_args (&argc, &argv);
94 return (argc - 1);
98 /* F2003 intrinsic functions and subroutines related to command line
99 arguments.
101 - function command_argument_count() is converted to iargc by the compiler.
103 - subroutine get_command([command, length, status]).
105 - subroutine get_command_argument(number, [value, length, status]).
108 /* These two status codes are specified in the standard. */
109 #define GFC_GC_SUCCESS 0
110 #define GFC_GC_VALUE_TOO_SHORT -1
112 /* Processor-specific status failure code. */
113 #define GFC_GC_FAILURE 42
116 extern void get_command_argument_i4 (GFC_INTEGER_4 *, char *, GFC_INTEGER_4 *,
117 GFC_INTEGER_4 *, gfc_charlen_type);
118 iexport_proto(get_command_argument_i4);
120 /* Get a single commandline argument. */
122 void
123 get_command_argument_i4 (GFC_INTEGER_4 *number, char *value,
124 GFC_INTEGER_4 *length, GFC_INTEGER_4 *status,
125 gfc_charlen_type value_len)
127 int argc, arglen = 0, stat_flag = GFC_GC_SUCCESS;
128 char **argv;
130 if (number == NULL )
131 /* Should never happen. */
132 runtime_error ("Missing argument to get_command_argument");
134 if (value == NULL && length == NULL && status == NULL)
135 return; /* No need to do anything. */
137 get_args (&argc, &argv);
139 if (*number < 0 || *number >= argc)
140 stat_flag = GFC_GC_FAILURE;
141 else
142 arglen = strlen(argv[*number]);
144 if (value != NULL)
146 if (value_len < 1)
147 stat_flag = GFC_GC_FAILURE;
148 else
149 memset (value, ' ', value_len);
152 if (value != NULL && stat_flag != GFC_GC_FAILURE)
154 if (arglen > value_len)
156 arglen = value_len;
157 stat_flag = GFC_GC_VALUE_TOO_SHORT;
159 memcpy (value, argv[*number], arglen);
162 if (length != NULL)
163 *length = arglen;
165 if (status != NULL)
166 *status = stat_flag;
168 iexport(get_command_argument_i4);
171 /* INTEGER*8 wrapper for get_command_argument. */
173 extern void get_command_argument_i8 (GFC_INTEGER_8 *, char *, GFC_INTEGER_8 *,
174 GFC_INTEGER_8 *, gfc_charlen_type);
175 export_proto(get_command_argument_i8);
177 void
178 get_command_argument_i8 (GFC_INTEGER_8 *number, char *value,
179 GFC_INTEGER_8 *length, GFC_INTEGER_8 *status,
180 gfc_charlen_type value_len)
182 GFC_INTEGER_4 number4;
183 GFC_INTEGER_4 length4;
184 GFC_INTEGER_4 status4;
186 number4 = (GFC_INTEGER_4) *number;
187 get_command_argument_i4 (&number4, value, &length4, &status4, value_len);
188 if (length)
189 *length = length4;
190 if (status)
191 *status = status4;
195 /* Return the whole commandline. */
197 extern void get_command_i4 (char *, GFC_INTEGER_4 *, GFC_INTEGER_4 *,
198 gfc_charlen_type);
199 iexport_proto(get_command_i4);
201 void
202 get_command_i4 (char *command, GFC_INTEGER_4 *length, GFC_INTEGER_4 *status,
203 gfc_charlen_type command_len)
205 int i, argc, arglen, thisarg;
206 int stat_flag = GFC_GC_SUCCESS;
207 int tot_len = 0;
208 char **argv;
210 if (command == NULL && length == NULL && status == NULL)
211 return; /* No need to do anything. */
213 get_args (&argc, &argv);
215 if (command != NULL)
217 /* Initialize the string to blanks. */
218 if (command_len < 1)
219 stat_flag = GFC_GC_FAILURE;
220 else
221 memset (command, ' ', command_len);
224 for (i = 0; i < argc ; i++)
226 arglen = strlen(argv[i]);
228 if (command != NULL && stat_flag == GFC_GC_SUCCESS)
230 thisarg = arglen;
231 if (tot_len + thisarg > command_len)
233 thisarg = command_len - tot_len; /* Truncate. */
234 stat_flag = GFC_GC_VALUE_TOO_SHORT;
236 /* Also a space before the next arg. */
237 else if (i != argc - 1 && tot_len + arglen == command_len)
238 stat_flag = GFC_GC_VALUE_TOO_SHORT;
240 memcpy (&command[tot_len], argv[i], thisarg);
243 /* Add the legth of the argument. */
244 tot_len += arglen;
245 if (i != argc - 1)
246 tot_len++;
249 if (length != NULL)
250 *length = tot_len;
252 if (status != NULL)
253 *status = stat_flag;
255 iexport(get_command_i4);
258 /* INTEGER*8 wrapper for get_command. */
260 extern void get_command_i8 (char *, GFC_INTEGER_8 *, GFC_INTEGER_8 *,
261 gfc_charlen_type);
262 export_proto(get_command_i8);
264 void
265 get_command_i8 (char *command, GFC_INTEGER_8 *length, GFC_INTEGER_8 *status,
266 gfc_charlen_type command_len)
268 GFC_INTEGER_4 length4;
269 GFC_INTEGER_4 status4;
271 get_command_i4 (command, &length4, &status4, command_len);
272 if (length)
273 *length = length4;
274 if (status)
275 *status = status4;