2 Execution routines for GNU Midnight Commander
4 Copyright (C) 2003, 2004, 2005, 2007, 2011
5 The Free Software Foundation, Inc.
7 This file is part of the Midnight Commander.
9 The Midnight Commander is free software: you can redistribute it
10 and/or modify it under the terms of the GNU General Public License as
11 published by the Free Software Foundation, either version 3 of the License,
12 or (at your option) any later version.
14 The Midnight Commander is distributed in the hope that it will be useful,
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 GNU General Public License for more details.
19 You should have received a copy of the GNU General Public License
20 along with this program. If not, see <http://www.gnu.org/licenses/>.
24 * \brief Source: execution routines
33 #include "lib/global.h"
35 #include "lib/tty/tty.h"
36 #include "lib/tty/key.h"
37 #include "lib/tty/win.h"
38 #include "lib/vfs/vfs.h"
40 #include "lib/widget.h"
42 #include "filemanager/midnight.h"
43 #include "filemanager/layout.h" /* use_dash() */
44 #include "consaver/cons.saver.h"
46 #include "setup.h" /* clear_before_exec */
50 /*** global variables ****************************************************************************/
52 int pause_after_run
= pause_on_dumb_terminals
;
54 /*** file scope macro definitions ****************************************************************/
56 /*** file scope type declarations ****************************************************************/
58 /*** file scope variables ************************************************************************/
60 /*** file scope functions ************************************************************************/
61 /* --------------------------------------------------------------------------------------------- */
64 edition_post_exec (void)
68 /* FIXME: Missing on slang endwin? */
69 tty_reset_prog_mode ();
76 if (mc_global
.tty
.alternate_plus_minus
)
77 application_keypad_mode ();
80 /* --------------------------------------------------------------------------------------------- */
83 edition_pre_exec (void)
85 if (clear_before_exec
)
89 if (!(mc_global
.tty
.console_flag
!= '\0' || mc_global
.tty
.xterm_flag
))
96 tty_reset_shell_mode ();
100 numeric_keypad_mode ();
102 /* on xterms: maybe endwin did not leave the terminal on the shell
103 * screen page: do it now.
105 * Do not move this before endwin: in some systems rmcup includes
106 * a call to clear screen, so it will end up clearing the shell screen.
111 /* --------------------------------------------------------------------------------------------- */
113 #ifdef HAVE_SUBSHELL_SUPPORT
115 do_possible_cd (const char *new_dir
)
117 if (!do_cd (new_dir
, cd_exact
))
118 message (D_ERROR
, _("Warning"),
119 _("The Commander can't change to the directory that\n"
120 "the subshell claims you are in. Perhaps you have\n"
121 "deleted your working directory, or given yourself\n"
122 "extra access permissions with the \"su\" command?"));
124 #endif /* HAVE_SUBSHELL_SUPPORT */
126 /* --------------------------------------------------------------------------------------------- */
129 do_execute (const char *lc_shell
, const char *command
, int flags
)
131 #ifdef HAVE_SUBSHELL_SUPPORT
132 char *new_dir
= NULL
;
133 #endif /* HAVE_SUBSHELL_SUPPORT */
135 char *old_vfs_dir
= 0;
137 if (!vfs_current_is_local ())
138 old_vfs_dir
= vfs_get_current_dir ();
140 if (mc_global
.mc_run_mode
== MC_RUN_FULL
)
143 if (mc_global
.tty
.console_flag
!= '\0')
144 handle_console (CONSOLE_RESTORE
);
146 if (!mc_global
.tty
.use_subshell
&& command
&& !(flags
& EXECUTE_INTERNAL
))
148 printf ("%s%s\n", mc_prompt
, command
);
151 #ifdef HAVE_SUBSHELL_SUPPORT
152 if (mc_global
.tty
.use_subshell
&& !(flags
& EXECUTE_INTERNAL
))
156 /* We don't care if it died, higher level takes care of this */
157 invoke_subshell (command
, VISIBLY
, old_vfs_dir
? NULL
: &new_dir
);
160 #endif /* HAVE_SUBSHELL_SUPPORT */
161 my_system (flags
, lc_shell
, command
);
163 if (!(flags
& EXECUTE_INTERNAL
))
165 if ((pause_after_run
== pause_always
166 || (pause_after_run
== pause_on_dumb_terminals
&& !mc_global
.tty
.xterm_flag
167 && mc_global
.tty
.console_flag
== '\0')) && quit
== 0
168 #ifdef HAVE_SUBSHELL_SUPPORT
169 && subshell_state
!= RUNNING_COMMAND
170 #endif /* HAVE_SUBSHELL_SUPPORT */
173 printf (_("Press any key to continue..."));
180 if (mc_global
.tty
.console_flag
!= '\0')
182 if (output_lines
&& mc_global
.keybar_visible
)
190 if (mc_global
.tty
.console_flag
!= '\0')
191 handle_console (CONSOLE_SAVE
);
192 edition_post_exec ();
194 #ifdef HAVE_SUBSHELL_SUPPORT
196 do_possible_cd (new_dir
);
198 #endif /* HAVE_SUBSHELL_SUPPORT */
202 mc_chdir (old_vfs_dir
);
203 g_free (old_vfs_dir
);
206 if (mc_global
.mc_run_mode
== MC_RUN_FULL
)
208 update_panels (UP_OPTIMIZE
, UP_KEEPSEL
);
209 update_xterm_title_path ();
216 /* --------------------------------------------------------------------------------------------- */
219 do_suspend_cmd (void)
223 if (mc_global
.tty
.console_flag
!= '\0' && !mc_global
.tty
.use_subshell
)
224 handle_console (CONSOLE_RESTORE
);
228 struct sigaction sigtstp_action
;
230 /* Make sure that the SIGTSTP below will suspend us directly,
231 without calling ncurses' SIGTSTP handler; we *don't* want
232 ncurses to redraw the screen immediately after the SIGCONT */
233 sigaction (SIGTSTP
, &startup_handler
, &sigtstp_action
);
235 kill (getpid (), SIGTSTP
);
237 /* Restore previous SIGTSTP action */
238 sigaction (SIGTSTP
, &sigtstp_action
, NULL
);
242 if (mc_global
.tty
.console_flag
!= '\0' && !mc_global
.tty
.use_subshell
)
243 handle_console (CONSOLE_SAVE
);
245 edition_post_exec ();
248 /* --------------------------------------------------------------------------------------------- */
249 /*** public functions ****************************************************************************/
250 /* --------------------------------------------------------------------------------------------- */
252 /** Set up the terminal before executing a program */
261 /* --------------------------------------------------------------------------------------------- */
262 /** Hide the terminal after executing a program */
266 edition_post_exec ();
271 /* --------------------------------------------------------------------------------------------- */
272 /* Executes a command */
275 shell_execute (const char *command
, int flags
)
279 if (flags
& EXECUTE_HIDE
)
281 cmd
= g_strconcat (" ", command
, (char *) NULL
);
282 flags
^= EXECUTE_HIDE
;
285 #ifdef HAVE_SUBSHELL_SUPPORT
286 if (mc_global
.tty
.use_subshell
)
287 if (subshell_state
== INACTIVE
)
288 do_execute (shell
, cmd
? cmd
: command
, flags
| EXECUTE_AS_SHELL
);
290 message (D_ERROR
, MSG_ERROR
, _("The shell is already running a command"));
292 #endif /* HAVE_SUBSHELL_SUPPORT */
293 do_execute (shell
, cmd
? cmd
: command
, flags
| EXECUTE_AS_SHELL
);
298 /* --------------------------------------------------------------------------------------------- */
303 do_execute (shell
, 0, 0);
306 /* --------------------------------------------------------------------------------------------- */
311 #ifdef HAVE_SUBSHELL_SUPPORT
312 char *new_dir
= NULL
;
314 #endif /* HAVE_SUBSHELL_SUPPORT */
318 if (clear_before_exec
)
320 if (mc_global
.tty
.alternate_plus_minus
)
321 numeric_keypad_mode ();
323 /* With slang we don't want any of this, since there
324 * is no raw_mode supported
326 tty_reset_shell_mode ();
327 #endif /* !HAVE_SLANG */
333 if (mc_global
.tty
.console_flag
!= '\0')
334 handle_console (CONSOLE_RESTORE
);
336 #ifdef HAVE_SUBSHELL_SUPPORT
337 if (mc_global
.tty
.use_subshell
)
339 new_dir_p
= vfs_current_is_local ()? &new_dir
: NULL
;
340 invoke_subshell (NULL
, VISIBLY
, new_dir_p
);
343 #endif /* HAVE_SUBSHELL_SUPPORT */
345 if (output_starts_shell
)
347 fprintf (stderr
, _("Type `exit' to return to the Midnight Commander"));
348 fprintf (stderr
, "\n\r\n\r");
350 my_system (EXECUTE_INTERNAL
, shell
, NULL
);
356 if (mc_global
.tty
.console_flag
!= '\0')
357 handle_console (CONSOLE_SAVE
);
361 tty_reset_prog_mode ();
364 /* Prevent screen flash when user did 'exit' or 'logout' within
366 if ((quit
& SUBSHELL_EXIT
) != 0)
368 /* User did `exit' or `logout': quit MC */
369 if (quiet_quit_cmd ())
373 #ifdef HAVE_SUBSHELL_SUPPORT
374 /* restart subshell */
375 if (mc_global
.tty
.use_subshell
)
377 #endif /* HAVE_SUBSHELL_SUPPORT */
382 if (mc_global
.tty
.alternate_plus_minus
)
383 application_keypad_mode ();
385 #ifdef HAVE_SUBSHELL_SUPPORT
386 if (mc_global
.tty
.use_subshell
)
390 do_possible_cd (new_dir
);
391 if (mc_global
.tty
.console_flag
!= '\0' && output_lines
)
392 show_console_contents (output_start_y
,
393 LINES
- mc_global
.keybar_visible
- output_lines
-
394 1, LINES
- mc_global
.keybar_visible
- 1);
396 #endif /* HAVE_SUBSHELL_SUPPORT */
398 if (mc_global
.mc_run_mode
== MC_RUN_FULL
)
400 update_panels (UP_OPTIMIZE
, UP_KEEPSEL
);
401 update_xterm_title_path ();
406 /* --------------------------------------------------------------------------------------------- */
410 execute_suspend (const gchar
* event_group_name
, const gchar
* event_name
,
411 gpointer init_data
, gpointer data
)
413 (void) event_group_name
;
418 if (mc_global
.mc_run_mode
== MC_RUN_FULL
)
421 if (mc_global
.mc_run_mode
== MC_RUN_FULL
)
422 update_panels (UP_OPTIMIZE
, UP_KEEPSEL
);
428 /* --------------------------------------------------------------------------------------------- */
430 * Execute command on a filename that can be on VFS.
431 * Errors are reported to the user.
435 execute_with_vfs_arg (const char *command
, const char *filename
)
441 vfs_path_t
*vpath
= vfs_path_from_str (filename
);
443 /* Simplest case, this file is local */
444 if (!filename
|| vfs_file_is_local (vpath
))
446 fn
= vfs_path_to_str (vpath
);
447 do_execute (command
, fn
, EXECUTE_INTERNAL
);
449 vfs_path_free (vpath
);
452 vfs_path_free (vpath
);
454 /* FIXME: Creation of new files on VFS is not supported */
458 localcopy
= mc_getlocalcopy (filename
);
459 if (localcopy
== NULL
)
461 message (D_ERROR
, MSG_ERROR
, _("Cannot fetch a local copy of %s"), filename
);
466 * filename can be an entry on panel, it can be changed by executing
467 * the command, so make a copy. Smarter VFS code would make the code
470 fn
= g_strdup (filename
);
471 mc_stat (localcopy
, &st
);
473 do_execute (command
, localcopy
, EXECUTE_INTERNAL
);
474 mc_stat (localcopy
, &st
);
475 mc_ungetlocalcopy (fn
, localcopy
, mtime
!= st
.st_mtime
);
480 /* --------------------------------------------------------------------------------------------- */