2015-05-05 Yvan Roux <yvan.roux@linaro.org>
[official-gcc.git] / libgfortran / intrinsics / execute_command_line.c
blob404314b09521d0c51f5e64ad91f0c10125071a95
1 /* Implementation of the EXECUTE_COMMAND_LINE intrinsic.
2 Copyright (C) 2009-2015 Free Software Foundation, Inc.
3 Contributed by François-Xavier Coudert.
5 This file is part of the GNU Fortran runtime library (libgfortran).
7 Libgfortran is free software; you can redistribute it and/or modify it under
8 the terms of the GNU General Public License as published by the Free
9 Software Foundation; either version 3, or (at your option) any later
10 version.
12 Libgfortran is distributed in the hope that it will be useful, but WITHOUT
13 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
14 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
15 for more details.
17 Under Section 7 of GPL version 3, you are granted additional
18 permissions described in the GCC Runtime Library Exception, version
19 3.1, as published by the Free Software Foundation.
21 You should have received a copy of the GNU General Public License and
22 a copy of the GCC Runtime Library Exception along with this program;
23 see the files COPYING3 and COPYING.RUNTIME respectively. If not, see
24 <http://www.gnu.org/licenses/>. */
26 #include "libgfortran.h"
27 #include <string.h>
28 #include <stdlib.h>
30 #ifdef HAVE_UNISTD_H
31 #include <unistd.h>
32 #endif
33 #ifdef HAVE_SYS_WAIT_H
34 #include <sys/wait.h>
35 #endif
38 enum { EXEC_SYNCHRONOUS = -2, EXEC_NOERROR = 0, EXEC_SYSTEMFAILED,
39 EXEC_CHILDFAILED };
40 static const char *cmdmsg_values[] =
41 { "",
42 "Termination status of the command-language interpreter cannot be obtained",
43 "Execution of child process impossible" };
47 static void
48 set_cmdstat (int *cmdstat, int value)
50 if (cmdstat)
51 *cmdstat = value;
52 else if (value > EXEC_NOERROR)
53 runtime_error ("Could not execute command line");
57 static void
58 execute_command_line (const char *command, bool wait, int *exitstat,
59 int *cmdstat, char *cmdmsg,
60 gfc_charlen_type command_len,
61 gfc_charlen_type cmdmsg_len)
63 /* Transform the Fortran string to a C string. */
64 char *cmd = fc_strdup (command, command_len);
66 /* Flush all I/O units before executing the command. */
67 flush_all_units();
69 #if defined(HAVE_FORK)
70 if (!wait)
72 /* Asynchronous execution. */
73 pid_t pid;
75 set_cmdstat (cmdstat, EXEC_NOERROR);
77 if ((pid = fork()) < 0)
78 set_cmdstat (cmdstat, EXEC_CHILDFAILED);
79 else if (pid == 0)
81 /* Child process. */
82 int res = system (cmd);
83 _exit (WIFEXITED(res) ? WEXITSTATUS(res) : res);
86 else
87 #endif
89 /* Synchronous execution. */
90 int res = system (cmd);
92 if (res == -1)
93 set_cmdstat (cmdstat, EXEC_SYSTEMFAILED);
94 #ifndef HAVE_FORK
95 else if (!wait)
96 set_cmdstat (cmdstat, EXEC_SYNCHRONOUS);
97 #endif
98 else
99 set_cmdstat (cmdstat, EXEC_NOERROR);
101 if (res != -1)
103 #if defined(WEXITSTATUS) && defined(WIFEXITED)
104 *exitstat = WIFEXITED(res) ? WEXITSTATUS(res) : res;
105 #else
106 *exitstat = res;
107 #endif
111 free (cmd);
113 /* Now copy back to the Fortran string if needed. */
114 if (cmdstat && *cmdstat > EXEC_NOERROR)
116 if (cmdmsg)
117 fstrcpy (cmdmsg, cmdmsg_len, cmdmsg_values[*cmdstat],
118 strlen (cmdmsg_values[*cmdstat]));
119 else
120 runtime_error ("Failure in EXECUTE_COMMAND_LINE: %s",
121 cmdmsg_values[*cmdstat]);
126 extern void
127 execute_command_line_i4 (const char *command, GFC_LOGICAL_4 *wait,
128 GFC_INTEGER_4 *exitstat, GFC_INTEGER_4 *cmdstat,
129 char *cmdmsg, gfc_charlen_type command_len,
130 gfc_charlen_type cmdmsg_len);
131 export_proto(execute_command_line_i4);
133 void
134 execute_command_line_i4 (const char *command, GFC_LOGICAL_4 *wait,
135 GFC_INTEGER_4 *exitstat, GFC_INTEGER_4 *cmdstat,
136 char *cmdmsg, gfc_charlen_type command_len,
137 gfc_charlen_type cmdmsg_len)
139 bool w = wait ? *wait : true;
140 int estat, estat_initial, cstat;
142 if (exitstat)
143 estat_initial = estat = *exitstat;
145 execute_command_line (command, w, &estat, cmdstat ? &cstat : NULL,
146 cmdmsg, command_len, cmdmsg_len);
148 if (exitstat && estat != estat_initial)
149 *exitstat = estat;
150 if (cmdstat)
151 *cmdstat = cstat;
155 extern void
156 execute_command_line_i8 (const char *command, GFC_LOGICAL_8 *wait,
157 GFC_INTEGER_8 *exitstat, GFC_INTEGER_8 *cmdstat,
158 char *cmdmsg, gfc_charlen_type command_len,
159 gfc_charlen_type cmdmsg_len);
160 export_proto(execute_command_line_i8);
162 void
163 execute_command_line_i8 (const char *command, GFC_LOGICAL_8 *wait,
164 GFC_INTEGER_8 *exitstat, GFC_INTEGER_8 *cmdstat,
165 char *cmdmsg, gfc_charlen_type command_len,
166 gfc_charlen_type cmdmsg_len)
168 bool w = wait ? *wait : true;
169 int estat, estat_initial, cstat;
171 if (exitstat)
172 estat_initial = estat = *exitstat;
174 execute_command_line (command, w, &estat, cmdstat ? &cstat : NULL,
175 cmdmsg, command_len, cmdmsg_len);
177 if (exitstat && estat != estat_initial)
178 *exitstat = estat;
179 if (cmdstat)
180 *cmdstat = cstat;