2 Extension dependent execution.
4 Copyright (C) 1994, 1995, 1998, 1999, 2000, 2001, 2002, 2003, 2004,
6 The Free Software Foundation, Inc.
12 This file is part of the Midnight Commander.
14 The Midnight Commander is free software: you can redistribute it
15 and/or modify it under the terms of the GNU General Public License as
16 published by the Free Software Foundation, either version 3 of the License,
17 or (at your option) any later version.
19 The Midnight Commander is distributed in the hope that it will be useful,
20 but WITHOUT ANY WARRANTY; without even the implied warranty of
21 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
22 GNU General Public License for more details.
24 You should have received a copy of the GNU General Public License
25 along with this program. If not, see <http://www.gnu.org/licenses/>.
29 * \brief Source: extension dependent execution
41 #include "lib/global.h"
42 #include "lib/tty/tty.h"
43 #include "lib/search.h"
44 #include "lib/fileloc.h"
45 #include "lib/mcconfig.h"
47 #include "lib/vfs/vfs.h"
48 #include "lib/widget.h"
50 #include "lib/charsets.h" /* get_codepage_index */
53 #include "src/setup.h" /* use_file_to_check_type */
54 #include "src/execute.h"
55 #include "src/history.h"
56 #include "src/main.h" /* do_cd */
58 #include "src/consaver/cons.saver.h"
59 #include "src/viewer/mcviewer.h"
62 #include "src/selcodepage.h" /* do_set_codepage */
69 /*** global variables ****************************************************************************/
71 /*** file scope macro definitions ****************************************************************/
74 #define FILE_CMD "file -L "
76 #define FILE_CMD "file "
79 /*** file scope type declarations ****************************************************************/
81 typedef char *(*quote_func_t
) (const char *name
, int quote_percent
);
83 /*** file scope variables ************************************************************************/
85 /* This variable points to a copy of the mc.ext file in memory
86 * With this we avoid loading/parsing the file each time we
89 static char *data
= NULL
;
91 /*** file scope functions ************************************************************************/
92 /* --------------------------------------------------------------------------------------------- */
95 exec_extension (const char *filename
, const char *lc_data
, int *move_dir
, int start_line
)
97 vfs_path_t
*file_name_vpath
;
101 int expand_prefix_found
= 0;
102 int parameter_found
= 0;
105 int def_hex_mode
= mcview_default_hex_mode
, changed_hex_mode
= 0;
106 int def_nroff_flag
= mcview_default_nroff_flag
, changed_nroff_flag
= 0;
107 int written_nonspace
= 0;
111 vfs_path_t
*localcopy_vpath
= NULL
;
113 time_t localmtime
= 0;
115 quote_func_t quote_func
= name_quote
;
118 g_return_if_fail (filename
!= NULL
);
119 g_return_if_fail (lc_data
!= NULL
);
121 vpath
= vfs_path_from_str (filename
);
123 /* Avoid making a local copy if we are doing a cd */
124 do_local_copy
= vfs_file_is_local (vpath
) ? 0 : 1;
127 * All commands should be run in /bin/sh regardless of user shell.
128 * To do that, create temporary shell script and run it.
129 * Sometimes it's not needed (e.g. for %cd and %view commands),
130 * but it's easier to create it anyway.
132 cmd_file_fd
= mc_mkstemps (&file_name_vpath
, "mcext", SCRIPT_SUFFIX
);
134 if (cmd_file_fd
== -1)
136 message (D_ERROR
, MSG_ERROR
,
137 _("Cannot create temporary command file\n%s"), unix_error_string (errno
));
141 cmd_file
= fdopen (cmd_file_fd
, "w");
142 fputs ("#! /bin/sh\n", cmd_file
);
145 for (; *lc_data
!= '\0' && *lc_data
!= '\n'; lc_data
++)
154 parameter
= input_dialog (_("Parameter"), lc_prompt
, MC_HISTORY_EXT_PARAMETER
, "");
155 if (parameter
== NULL
)
159 mc_unlink (file_name_vpath
);
160 if (localcopy_vpath
!= NULL
)
162 mc_ungetlocalcopy (vpath
, localcopy_vpath
, FALSE
);
163 vfs_path_free (localcopy_vpath
);
167 fputs (parameter
, cmd_file
);
168 written_nonspace
= 1;
173 size_t len
= strlen (lc_prompt
);
175 if (len
< sizeof (lc_prompt
) - 1)
177 lc_prompt
[len
] = *lc_data
;
178 lc_prompt
[len
+ 1] = '\0';
182 else if (expand_prefix_found
)
184 expand_prefix_found
= 0;
192 i
= check_format_view (lc_data
);
200 i
= check_format_cd (lc_data
);
204 quote_func
= fake_name_quote
;
211 i
= check_format_var (lc_data
, &v
);
212 if (i
> 0 && v
!= NULL
)
223 text
= expand_format (NULL
, *lc_data
, !is_cd
);
228 localcopy_vpath
= mc_getlocalcopy (vpath
);
229 if (localcopy_vpath
== NULL
)
232 mc_unlink (file_name_vpath
);
235 mc_stat (localcopy_vpath
, &mystat
);
236 localmtime
= mystat
.st_mtime
;
238 quote_func (vfs_path_get_last_path_str (localcopy_vpath
),
243 const vfs_path_element_t
*path_element
;
245 path_element
= vfs_path_get_by_index (vpath
, -1);
246 text
= quote_func (path_element
->path
, 0);
251 fputs (text
, cmd_file
);
259 written_nonspace
= 1;
265 else if (*lc_data
== '%')
266 expand_prefix_found
= 1;
269 if (*lc_data
!= ' ' && *lc_data
!= '\t')
270 written_nonspace
= 1;
274 fputc (*lc_data
, cmd_file
);
279 * Make the script remove itself when it finishes.
280 * Don't do it for the viewer - it may need to rerun the script,
281 * so we clean up after calling view().
287 file_name
= vfs_path_to_str (file_name_vpath
);
288 fprintf (cmd_file
, "\n/bin/rm -f %s\n", file_name
);
294 if ((run_view
&& !written_nonspace
) || is_cd
)
296 mc_unlink (file_name_vpath
);
297 vfs_path_free (file_name_vpath
);
298 file_name_vpath
= NULL
;
304 file_name
= vfs_path_to_str (file_name_vpath
);
305 /* Set executable flag on the command file ... */
306 mc_chmod (file_name_vpath
, S_IRWXU
);
307 /* ... but don't rely on it - run /bin/sh explicitly */
308 cmd
= g_strconcat ("/bin/sh ", file_name
, (char *) NULL
);
316 mcview_altered_hex_mode
= 0;
317 mcview_altered_nroff_flag
= 0;
318 if (def_hex_mode
!= mcview_default_hex_mode
)
319 changed_hex_mode
= 1;
320 if (def_nroff_flag
!= mcview_default_nroff_flag
)
321 changed_nroff_flag
= 1;
323 /* If we've written whitespace only, then just load filename
326 if (written_nonspace
)
328 ret
= mcview_viewer (cmd
, vpath
, start_line
);
329 mc_unlink (file_name_vpath
);
332 ret
= mcview_viewer (NULL
, vpath
, start_line
);
334 if (move_dir
!= NULL
)
337 case MCVIEW_WANT_NEXT
:
340 case MCVIEW_WANT_PREV
:
347 if (changed_hex_mode
&& !mcview_altered_hex_mode
)
348 mcview_default_hex_mode
= def_hex_mode
;
349 if (changed_nroff_flag
&& !mcview_altered_nroff_flag
)
350 mcview_default_nroff_flag
= def_nroff_flag
;
352 dialog_switch_process_pending ();
361 /* while (*p == ' ' && *p == '\t')
364 /* Search last non-space character. Start search at the end in order
365 not to short filenames containing spaces. */
366 q
= p
+ strlen (p
) - 1;
367 while (q
>= p
&& (*q
== ' ' || *q
== '\t'))
371 p_vpath
= vfs_path_from_str_flags (p
, VPF_NO_CANON
);
372 do_cd (p_vpath
, cd_parse_command
);
373 vfs_path_free (p_vpath
);
377 shell_execute (cmd
, EXECUTE_INTERNAL
);
378 if (mc_global
.tty
.console_flag
!= '\0')
380 handle_console (CONSOLE_SAVE
);
381 if (output_lines
&& mc_global
.keybar_visible
)
382 show_console_contents (output_start_y
,
383 LINES
- mc_global
.keybar_visible
-
384 output_lines
- 1, LINES
- mc_global
.keybar_visible
- 1);
390 if (localcopy_vpath
!= NULL
)
392 mc_stat (localcopy_vpath
, &mystat
);
393 mc_ungetlocalcopy (vpath
, localcopy_vpath
, localmtime
!= mystat
.st_mtime
);
394 vfs_path_free (localcopy_vpath
);
397 vfs_path_free (file_name_vpath
);
398 vfs_path_free (vpath
);
401 /* --------------------------------------------------------------------------------------------- */
403 * Run cmd_file with args, put result into buf.
404 * If error, put '\0' into buf[0]
405 * Return 1 if the data is valid, 0 otherwise, -1 for fatal errors.
407 * NOTES: buf is null-terminated string.
411 get_popen_information (const char *cmd_file
, const char *args
, char *buf
, int buflen
)
413 gboolean read_bytes
= FALSE
;
417 command
= g_strconcat (cmd_file
, args
, " 2>/dev/null", (char *) NULL
);
418 f
= popen (command
, "r");
424 if (setvbuf (f
, NULL
, _IOFBF
, 0) != 0)
430 read_bytes
= (fgets (buf
, buflen
, f
) != NULL
);
432 buf
[0] = '\0'; /* Paranoid termination */
437 buf
[0] = '\0'; /* Paranoid termination */
441 buf
[buflen
- 1] = '\0';
443 return read_bytes
? 1 : 0;
446 /* --------------------------------------------------------------------------------------------- */
448 * Run the "file" command on the local file.
449 * Return 1 if the data is valid, 0 otherwise, -1 for fatal errors.
453 get_file_type_local (const vfs_path_t
* filename_vpath
, char *buf
, int buflen
)
458 tmp
= name_quote (vfs_path_get_last_path_str (filename_vpath
), 0);
459 ret
= get_popen_information (FILE_CMD
, tmp
, buf
, buflen
);
465 /* --------------------------------------------------------------------------------------------- */
467 * Run the "enca" command on the local file.
468 * Return 1 if the data is valid, 0 otherwise, -1 for fatal errors.
473 get_file_encoding_local (const vfs_path_t
* filename_vpath
, char *buf
, int buflen
)
475 char *tmp
, *lang
, *args
;
478 tmp
= name_quote (vfs_path_get_last_path_str (filename_vpath
), 0);
479 lang
= name_quote (autodetect_codeset
, 0);
480 args
= g_strconcat (" -L", lang
, " -i ", tmp
, (char *) NULL
);
482 ret
= get_popen_information ("enca", args
, buf
, buflen
);
490 #endif /* HAVE_CHARSET */
492 /* --------------------------------------------------------------------------------------------- */
494 * Invoke the "file" command on the file and match its output against PTR.
495 * have_type is a flag that is set if we already have tried to determine
496 * the type of that file.
497 * Return 1 for match, 0 for no match, -1 errors.
501 regex_check_type (const vfs_path_t
* filename_vpath
, const char *ptr
, int *have_type
)
505 /* Following variables are valid if *have_type is 1 */
506 static char content_string
[2048];
508 static char encoding_id
[21]; /* CSISO51INISCYRILLIC -- 20 */
510 static size_t content_shift
= 0;
511 static int got_data
= 0;
513 if (!use_file_to_check_type
)
518 vfs_path_t
*localfile_vpath
;
519 const char *realname
; /* name used with "file" */
522 int got_encoding_data
;
523 #endif /* HAVE_CHARSET */
525 /* Don't repeate even unsuccessful checks */
528 localfile_vpath
= mc_getlocalcopy (filename_vpath
);
529 if (localfile_vpath
== NULL
)
532 realname
= vfs_path_get_last_path_str (localfile_vpath
);
535 got_encoding_data
= is_autodetect_codeset_enabled
536 ? get_file_encoding_local (localfile_vpath
, encoding_id
, sizeof (encoding_id
)) : 0;
538 if (got_encoding_data
> 0)
543 pp
= strchr (encoding_id
, '\n');
547 cp_id
= get_codepage_index (encoding_id
);
549 cp_id
= default_source_codepage
;
551 do_set_codepage (cp_id
);
553 #endif /* HAVE_CHARSET */
555 mc_ungetlocalcopy (filename_vpath
, localfile_vpath
, FALSE
);
557 got_data
= get_file_type_local (localfile_vpath
, content_string
, sizeof (content_string
));
564 pp
= strchr (content_string
, '\n');
568 real_len
= strlen (realname
);
570 if (strncmp (content_string
, realname
, real_len
) == 0)
572 /* Skip "realname: " */
573 content_shift
= real_len
;
574 if (content_string
[content_shift
] == ':')
576 /* Solaris' file prints tab(s) after ':' */
577 for (content_shift
++;
578 content_string
[content_shift
] == ' '
579 || content_string
[content_shift
] == '\t'; content_shift
++)
587 content_string
[0] = '\0';
589 vfs_path_free (localfile_vpath
);
595 if (content_string
[0] != '\0'
596 && mc_search (ptr
, content_string
+ content_shift
, MC_SEARCH_T_REGEX
))
604 /* --------------------------------------------------------------------------------------------- */
605 /*** public functions ****************************************************************************/
606 /* --------------------------------------------------------------------------------------------- */
609 flush_extension_file (void)
615 /* --------------------------------------------------------------------------------------------- */
617 * The second argument is action, i.e. Open, View or Edit
619 * This function returns:
621 * -1 for a failure or user interrupt
622 * 0 if no command was run
623 * 1 if some command was run
625 * If action == "View" then a parameter is checked in the form of "View:%d",
626 * if the value for %d exists, then the viewer is started up at that line number.
630 regex_command (const vfs_path_t
* filename_vpath
, const char *action
, int *move_dir
)
632 char *filename
, *p
, *q
, *r
, c
;
638 int view_at_line_number
;
639 char *include_target
;
640 int include_target_len
;
641 int have_type
= 0; /* Flag used by regex_check_type() */
643 /* Check for the special View:%d parameter */
644 if (strncmp (action
, "View:", 5) == 0)
646 view_at_line_number
= atoi (action
+ 5);
651 view_at_line_number
= 0;
656 char *extension_file
;
660 extension_file
= mc_config_get_full_path (MC_FILEBIND_FILE
);
661 if (!exist_file (extension_file
))
663 g_free (extension_file
);
665 extension_file
= mc_build_filename (mc_global
.sysconfig_dir
, MC_LIB_EXT
, NULL
);
666 if (!exist_file (extension_file
))
668 g_free (extension_file
);
669 extension_file
= mc_build_filename (mc_global
.share_data_dir
, MC_LIB_EXT
, NULL
);
674 g_file_get_contents (extension_file
, &data
, NULL
, NULL
);
675 g_free (extension_file
);
679 if (!strstr (data
, "default/"))
681 if (!strstr (data
, "regex/") && !strstr (data
, "shell/") && !strstr (data
, "type/"))
688 goto check_stock_mc_ext
;
692 char *title
= g_strdup_printf (_(" %s%s file error"),
693 mc_global
.sysconfig_dir
, MC_LIB_EXT
);
694 message (D_ERROR
, title
, _("The format of the %smc.ext "
695 "file has changed with version 3.0. It seems that "
696 "the installation failed. Please fetch a fresh "
697 "copy from the Midnight Commander package."),
698 mc_global
.sysconfig_dir
);
706 char *filebind_filename
= mc_config_get_full_path (MC_FILEBIND_FILE
);
707 char *title
= g_strdup_printf (_("%s file error"), filebind_filename
);
708 message (D_ERROR
, title
,
709 _("The format of the %s file has "
710 "changed with version 3.0. You may either want to copy "
711 "it from %smc.ext or use that file as an example of how to write it."),
712 filebind_filename
, mc_global
.sysconfig_dir
);
713 g_free (filebind_filename
);
718 mc_stat (filename_vpath
, &mystat
);
720 include_target
= NULL
;
721 include_target_len
= 0;
722 filename
= vfs_path_to_str (filename_vpath
);
723 file_len
= vfs_path_len (filename_vpath
);
725 for (p
= data
; *p
; p
++)
727 for (q
= p
; *q
== ' ' || *q
== '\t'; q
++);
728 if (*q
== '\n' || !*q
)
729 p
= q
; /* empty line */
730 if (*p
== '#') /* comment */
731 while (*p
&& *p
!= '\n')
738 { /* i.e. starts in the first column, should be
742 q
= strchr (p
, '\n');
749 if ((strncmp (p
, "include/", 8) == 0)
750 && (strncmp (p
+ 8, include_target
, include_target_len
) == 0))
753 else if (!strncmp (p
, "regex/", 6))
756 /* Do not transform shell patterns, you can use shell/ for
759 if (mc_search (p
, filename
, MC_SEARCH_T_REGEX
))
762 else if (!strncmp (p
, "directory/", 10))
764 if (S_ISDIR (mystat
.st_mode
) && mc_search (p
+ 10, filename
, MC_SEARCH_T_REGEX
))
767 else if (!strncmp (p
, "shell/", 6))
770 if (*p
== '.' && file_len
>= (size_t) (q
- p
))
772 if (!strncmp (p
, filename
+ file_len
- (q
- p
), q
- p
))
777 if ((size_t) (q
- p
) == file_len
&& !strncmp (p
, filename
, q
- p
))
781 else if (!strncmp (p
, "type/", 5))
785 res
= regex_check_type (filename_vpath
, p
, &have_type
);
789 error_flag
= 1; /* leave it if file cannot be opened */
791 else if (!strncmp (p
, "default/", 8))
801 { /* List of actions */
803 q
= strchr (p
, '\n');
806 if (found
&& !error_flag
)
813 if (strcmp (p
, "Include") == 0)
817 include_target
= p
+ 8;
818 t
= strchr (include_target
, '\n');
821 include_target_len
= strlen (include_target
);
833 if (!strcmp (action
, p
))
836 for (p
= r
+ 1; *p
== ' ' || *p
== '\t'; p
++);
838 /* Empty commands just stop searching
839 * through, they don't do anything
841 * We need to copy the filename because exec_extension
842 * may end up invoking update_panels thus making the
843 * filename parameter invalid (ie, most of the time,
844 * we get filename as a pointer from current_panel->dir).
848 char *filename_copy
= g_strdup (filename
);
850 exec_extension (filename_copy
, r
+ 1, move_dir
, view_at_line_number
);
851 g_free (filename_copy
);
872 /* --------------------------------------------------------------------------------------------- */