1 /* Implementation of the EXECUTE_COMMAND_LINE intrinsic.
2 Copyright (C) 2009-2013 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
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
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"
33 #ifdef HAVE_SYS_WAIT_H
38 enum { EXEC_SYNCHRONOUS
= -2, EXEC_NOERROR
= 0, EXEC_SYSTEMFAILED
,
40 static const char *cmdmsg_values
[] =
42 "Termination status of the command-language interpreter cannot be obtained",
43 "Execution of child process impossible" };
48 set_cmdstat (int *cmdstat
, int value
)
52 else if (value
> EXEC_NOERROR
)
53 runtime_error ("Could not execute command line");
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
[command_len
+ 1];
65 memcpy (cmd
, command
, command_len
);
66 cmd
[command_len
] = '\0';
68 /* Flush all I/O units before executing the command. */
71 #if defined(HAVE_FORK)
74 /* Asynchronous execution. */
77 set_cmdstat (cmdstat
, EXEC_NOERROR
);
79 if ((pid
= fork()) < 0)
80 set_cmdstat (cmdstat
, EXEC_CHILDFAILED
);
84 int res
= system (cmd
);
85 _exit (WIFEXITED(res
) ? WEXITSTATUS(res
) : res
);
91 /* Synchronous execution. */
92 int res
= system (cmd
);
95 set_cmdstat (cmdstat
, EXEC_SYSTEMFAILED
);
98 set_cmdstat (cmdstat
, EXEC_SYNCHRONOUS
);
101 set_cmdstat (cmdstat
, EXEC_NOERROR
);
105 #if defined(WEXITSTATUS) && defined(WIFEXITED)
106 *exitstat
= WIFEXITED(res
) ? WEXITSTATUS(res
) : res
;
113 /* Now copy back to the Fortran string if needed. */
114 if (cmdstat
&& *cmdstat
> EXEC_NOERROR
)
117 fstrcpy (cmdmsg
, cmdmsg_len
, cmdmsg_values
[*cmdstat
],
118 strlen (cmdmsg_values
[*cmdstat
]));
120 runtime_error ("Failure in EXECUTE_COMMAND_LINE: %s",
121 cmdmsg_values
[*cmdstat
]);
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
);
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
;
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
)
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
);
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
;
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
)