2 Extension dependent execution.
4 Copyright (C) 1994-2024
5 Free Software Foundation, Inc.
10 Slava Zanko <slavazanko@gmail.com>, 2013
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 */
54 #include "src/setup.h" /* use_file_to_check_type */
56 #include "src/execute.h"
57 #include "src/history.h"
58 #include "src/usermenu.h"
60 #include "src/consaver/cons.saver.h"
61 #include "src/viewer/mcviewer.h"
64 #include "src/selcodepage.h" /* do_set_codepage */
67 #include "filemanager.h" /* current_panel */
68 #include "panel.h" /* panel_cd */
72 /*** global variables ****************************************************************************/
74 /*** file scope macro definitions ****************************************************************/
78 #define FILE_CMD "file -z " FILE_B FILE_S FILE_L
80 #define FILE_CMD "file -z " FILE_S FILE_L
84 /*** file scope type declarations ****************************************************************/
86 typedef char *(*quote_func_t
) (const char *name
, gboolean quote_percent
);
88 /*** forward declarations (file scope functions) *************************************************/
90 /*** file scope variables ************************************************************************/
92 /* This variable points to a copy of the mc.ext file in memory
93 * With this we avoid loading/parsing the file each time we
96 static mc_config_t
*ext_ini
= NULL
;
97 static gchar
**ext_ini_groups
= NULL
;
98 static vfs_path_t
*localfilecopy_vpath
= NULL
;
99 static char buffer
[BUF_1K
];
101 static char *pbuffer
= NULL
;
102 static time_t localmtime
= 0;
103 static quote_func_t quote_func
= name_quote
;
104 static gboolean run_view
= FALSE
;
105 static gboolean is_cd
= FALSE
;
106 static gboolean written_nonspace
= FALSE
;
107 static gboolean do_local_copy
= FALSE
;
109 static const char *descr_group
= "mc.ext.ini";
110 static const char *default_group
= "Default";
112 /* --------------------------------------------------------------------------------------------- */
113 /*** file scope functions ************************************************************************/
114 /* --------------------------------------------------------------------------------------------- */
117 exec_cleanup_script (vfs_path_t
*script_vpath
)
119 if (script_vpath
!= NULL
)
121 (void) mc_unlink (script_vpath
);
122 vfs_path_free (script_vpath
, TRUE
);
126 /* --------------------------------------------------------------------------------------------- */
129 exec_cleanup_file_name (const vfs_path_t
*filename_vpath
, gboolean has_changed
)
131 if (localfilecopy_vpath
== NULL
)
138 mc_stat (localfilecopy_vpath
, &mystat
);
139 has_changed
= localmtime
!= mystat
.st_mtime
;
141 mc_ungetlocalcopy (filename_vpath
, localfilecopy_vpath
, has_changed
);
142 vfs_path_free (localfilecopy_vpath
, TRUE
);
143 localfilecopy_vpath
= NULL
;
146 /* --------------------------------------------------------------------------------------------- */
149 exec_get_file_name (const vfs_path_t
*filename_vpath
)
152 return quote_func (vfs_path_get_last_path_str (filename_vpath
), FALSE
);
154 if (localfilecopy_vpath
== NULL
)
157 localfilecopy_vpath
= mc_getlocalcopy (filename_vpath
);
158 if (localfilecopy_vpath
== NULL
)
161 mc_stat (localfilecopy_vpath
, &mystat
);
162 localmtime
= mystat
.st_mtime
;
165 return quote_func (vfs_path_get_last_path_str (localfilecopy_vpath
), FALSE
);
168 /* --------------------------------------------------------------------------------------------- */
171 exec_expand_format (char symbol
, gboolean is_result_quoted
)
175 text
= expand_format (NULL
, symbol
, TRUE
);
176 if (is_result_quoted
&& text
!= NULL
)
180 quoted_text
= g_strdup_printf ("\"%s\"", text
);
187 /* --------------------------------------------------------------------------------------------- */
190 exec_get_export_variables (const vfs_path_t
*filename_vpath
)
193 GString
*export_vars_string
;
201 const gboolean is_result_quoted
;
202 } export_variables
[] = {
203 {'p', "MC_EXT_BASENAME", FALSE
},
204 {'d', "MC_EXT_CURRENTDIR", FALSE
},
205 {'s', "MC_EXT_SELECTED", TRUE
},
206 {'t', "MC_EXT_ONLYTAGGED", TRUE
},
211 text
= exec_get_file_name (filename_vpath
);
215 export_vars_string
= g_string_new ("MC_EXT_FILENAME=");
216 g_string_append_printf (export_vars_string
, "%s\nexport MC_EXT_FILENAME\n", text
);
219 for (i
= 0; export_variables
[i
].name
!= NULL
; i
++)
222 exec_expand_format (export_variables
[i
].symbol
, export_variables
[i
].is_result_quoted
);
225 g_string_append_printf (export_vars_string
,
226 "%s=%s\nexport %s\n", export_variables
[i
].name
, text
,
227 export_variables
[i
].name
);
232 return export_vars_string
;
235 /* --------------------------------------------------------------------------------------------- */
238 exec_make_shell_string (const char *lc_data
, const vfs_path_t
*filename_vpath
)
240 GString
*shell_string
;
241 char lc_prompt
[80] = "\0";
242 gboolean parameter_found
= FALSE
;
243 gboolean expand_prefix_found
= FALSE
;
245 shell_string
= g_string_new ("");
247 for (; *lc_data
!= '\0' && *lc_data
!= '\n'; lc_data
++)
255 parameter_found
= FALSE
;
257 input_dialog (_("Parameter"), lc_prompt
, MC_HISTORY_EXT_PARAMETER
, "",
258 INPUT_COMPLETE_NONE
);
259 if (parameter
== NULL
)
262 g_string_free (shell_string
, TRUE
);
263 exec_cleanup_file_name (filename_vpath
, FALSE
);
266 g_string_append (shell_string
, parameter
);
267 written_nonspace
= TRUE
;
272 size_t len
= strlen (lc_prompt
);
274 if (len
< sizeof (lc_prompt
) - 1)
276 lc_prompt
[len
] = *lc_data
;
277 lc_prompt
[len
+ 1] = '\0';
281 else if (expand_prefix_found
)
283 expand_prefix_found
= FALSE
;
285 parameter_found
= TRUE
;
290 i
= check_format_view (lc_data
);
298 i
= check_format_cd (lc_data
);
302 quote_func
= fake_name_quote
;
303 do_local_copy
= FALSE
;
311 i
= check_format_var (lc_data
, &v
);
314 g_string_append (shell_string
, v
);
323 text
= expand_format (NULL
, *lc_data
, !is_cd
);
326 text
= exec_get_file_name (filename_vpath
);
329 g_string_free (shell_string
, TRUE
);
337 g_string_append (shell_string
, text
);
340 strcpy (pbuffer
, text
);
341 pbuffer
= strchr (pbuffer
, '\0');
347 written_nonspace
= TRUE
;
353 else if (*lc_data
== '%')
354 expand_prefix_found
= TRUE
;
357 if (!whitespace (*lc_data
))
358 written_nonspace
= TRUE
;
360 *(pbuffer
++) = *lc_data
;
362 g_string_append_c (shell_string
, *lc_data
);
369 /* --------------------------------------------------------------------------------------------- */
372 exec_extension_view (void *target
, char *cmd
, const vfs_path_t
*filename_vpath
, int start_line
)
374 mcview_mode_flags_t def_flags
= {
377 .hex
= mcview_global_flags
.hex
,
379 .nroff
= mcview_global_flags
.nroff
383 mcview_mode_flags_t changed_flags
;
385 mcview_clear_mode_flags (&changed_flags
);
386 mcview_altered_flags
.hex
= FALSE
;
387 mcview_altered_flags
.nroff
= FALSE
;
388 if (def_flags
.hex
!= mcview_global_flags
.hex
)
389 changed_flags
.hex
= TRUE
;
390 if (def_flags
.nroff
!= mcview_global_flags
.nroff
)
391 changed_flags
.nroff
= TRUE
;
394 mcview_viewer (cmd
, filename_vpath
, start_line
, 0, 0);
396 mcview_load ((WView
*) target
, cmd
, vfs_path_as_str (filename_vpath
), start_line
, 0, 0);
398 if (changed_flags
.hex
&& !mcview_altered_flags
.hex
)
399 mcview_global_flags
.hex
= def_flags
.hex
;
400 if (changed_flags
.nroff
&& !mcview_altered_flags
.nroff
)
401 mcview_global_flags
.nroff
= def_flags
.nroff
;
403 dialog_switch_process_pending ();
406 /* --------------------------------------------------------------------------------------------- */
409 exec_extension_cd (WPanel
*panel
)
416 /* Search last non-space character. Start search at the end in order
417 not to short filenames containing spaces. */
418 q
= pbuffer
+ strlen (pbuffer
) - 1;
419 while (q
>= pbuffer
&& whitespace (*q
))
423 p_vpath
= vfs_path_from_str_flags (pbuffer
, VPF_NO_CANON
);
424 panel_cd (panel
, p_vpath
, cd_parse_command
);
425 vfs_path_free (p_vpath
, TRUE
);
429 /* --------------------------------------------------------------------------------------------- */
432 exec_extension (WPanel
*panel
, void *target
, const vfs_path_t
*filename_vpath
,
433 const char *lc_data
, int start_line
)
435 GString
*shell_string
, *export_variables
;
436 vfs_path_t
*script_vpath
= NULL
;
443 quote_func
= name_quote
;
446 written_nonspace
= FALSE
;
448 /* Avoid making a local copy if we are doing a cd */
449 do_local_copy
= !vfs_file_is_local (filename_vpath
);
451 shell_string
= exec_make_shell_string (lc_data
, filename_vpath
);
452 if (shell_string
== NULL
)
457 exec_extension_cd (panel
);
458 g_string_free (shell_string
, TRUE
);
463 * All commands should be run in /bin/sh regardless of user shell.
464 * To do that, create temporary shell script and run it.
465 * Sometimes it's not needed (e.g. for %cd and %view commands),
466 * but it's easier to create it anyway.
468 cmd_file_fd
= mc_mkstemps (&script_vpath
, "mcext", SCRIPT_SUFFIX
);
470 if (cmd_file_fd
== -1)
472 message (D_ERROR
, MSG_ERROR
,
473 _("Cannot create temporary command file\n%s"), unix_error_string (errno
));
474 g_string_free (shell_string
, TRUE
);
478 cmd_file
= fdopen (cmd_file_fd
, "w");
479 fputs ("#! /bin/sh\n\n", cmd_file
);
481 export_variables
= exec_get_export_variables (filename_vpath
);
482 if (export_variables
!= NULL
)
484 fputs (export_variables
->str
, cmd_file
);
485 g_string_free (export_variables
, TRUE
);
488 fputs (shell_string
->str
, cmd_file
);
489 g_string_free (shell_string
, TRUE
);
492 * Make the script remove itself when it finishes.
493 * Don't do it for the viewer - it may need to rerun the script,
494 * so we clean up after calling view().
497 fprintf (cmd_file
, "\n/bin/rm -f %s\n", vfs_path_as_str (script_vpath
));
501 if ((run_view
&& !written_nonspace
) || is_cd
)
503 exec_cleanup_script (script_vpath
);
508 /* Set executable flag on the command file ... */
509 mc_chmod (script_vpath
, S_IRWXU
);
510 /* ... but don't rely on it - run /bin/sh explicitly */
511 cmd
= g_strconcat ("/bin/sh ", vfs_path_as_str (script_vpath
), (char *) NULL
);
516 /* If we've written whitespace only, then just load filename into view */
517 if (!written_nonspace
)
518 exec_extension_view (target
, NULL
, filename_vpath
, start_line
);
520 exec_extension_view (target
, cmd
, filename_vpath
, start_line
);
524 shell_execute (cmd
, EXECUTE_INTERNAL
);
525 if (mc_global
.tty
.console_flag
!= '\0')
527 handle_console (CONSOLE_SAVE
);
528 if (output_lines
!= 0 && mc_global
.keybar_visible
)
530 unsigned char end_line
;
532 end_line
= LINES
- (mc_global
.keybar_visible
? 1 : 0) - 1;
533 show_console_contents (output_start_y
, end_line
- output_lines
, end_line
);
540 exec_cleanup_file_name (filename_vpath
, TRUE
);
545 /* --------------------------------------------------------------------------------------------- */
547 * Run cmd_file with args, put result into buf.
548 * If error, put '\0' into buf[0]
549 * Return 1 if the data is valid, 0 otherwise, -1 for fatal errors.
551 * NOTES: buf is null-terminated string.
556 get_popen_information (const char *cmd_file
, const char *args
, char *buf
, int buflen
)
558 gboolean read_bytes
= FALSE
;
562 command
= g_strconcat (cmd_file
, args
, " 2>/dev/null", (char *) NULL
);
563 f
= popen (command
, "r");
569 if (setvbuf (f
, NULL
, _IOFBF
, 0) != 0)
575 read_bytes
= (fgets (buf
, buflen
, f
) != NULL
);
577 buf
[0] = '\0'; /* Paranoid termination */
582 buf
[0] = '\0'; /* Paranoid termination */
586 buf
[buflen
- 1] = '\0';
588 return read_bytes
? 1 : 0;
591 /* --------------------------------------------------------------------------------------------- */
593 * Run the "file" command on the local file.
594 * Return 1 if the data is valid, 0 otherwise, -1 for fatal errors.
598 get_file_type_local (const vfs_path_t
*filename_vpath
, char *buf
, int buflen
)
600 char *filename_quoted
;
603 filename_quoted
= name_quote (vfs_path_get_last_path_str (filename_vpath
), FALSE
);
604 if (filename_quoted
!= NULL
)
606 ret
= get_popen_information (FILE_CMD
, filename_quoted
, buf
, buflen
);
607 g_free (filename_quoted
);
613 /* --------------------------------------------------------------------------------------------- */
615 * Run the "enca" command on the local file.
616 * Return 1 if the data is valid, 0 otherwise, -1 for fatal errors.
621 get_file_encoding_local (const vfs_path_t
*filename_vpath
, char *buf
, int buflen
)
623 char *filename_quoted
;
626 filename_quoted
= name_quote (vfs_path_get_last_path_str (filename_vpath
), FALSE
);
627 if (filename_quoted
!= NULL
)
631 lang
= name_quote (autodetect_codeset
, FALSE
);
636 args
= g_strdup_printf (" -L %s -i %s", lang
, filename_quoted
);
639 ret
= get_popen_information ("enca", args
, buf
, buflen
);
643 g_free (filename_quoted
);
648 #endif /* HAVE_CHARSET */
650 /* --------------------------------------------------------------------------------------------- */
652 * Invoke the "file" command on the file and match its output against PTR.
653 * have_type is a flag that is set if we already have tried to determine
654 * the type of that file.
655 * Return TRUE for match, FALSE otherwise.
659 regex_check_type (const vfs_path_t
*filename_vpath
, const char *ptr
, gboolean case_insense
,
660 gboolean
*have_type
, GError
**mcerror
)
662 gboolean found
= FALSE
;
664 /* Following variables are valid if *have_type is TRUE */
665 static char content_string
[2048];
666 static size_t content_shift
= 0;
667 static int got_data
= 0;
669 mc_return_val_if_error (mcerror
, FALSE
);
673 vfs_path_t
*localfile_vpath
;
676 static char encoding_id
[21]; /* CSISO51INISCYRILLIC -- 20 */
677 int got_encoding_data
;
678 #endif /* HAVE_CHARSET */
680 /* Don't repeate even unsuccessful checks */
683 localfile_vpath
= mc_getlocalcopy (filename_vpath
);
684 if (localfile_vpath
== NULL
)
686 mc_propagate_error (mcerror
, 0, _("Cannot fetch a local copy of %s"),
687 vfs_path_as_str (filename_vpath
));
693 got_encoding_data
= is_autodetect_codeset_enabled
694 ? get_file_encoding_local (localfile_vpath
, encoding_id
, sizeof (encoding_id
)) : 0;
696 if (got_encoding_data
> 0)
701 pp
= strchr (encoding_id
, '\n');
705 cp_id
= get_codepage_index (encoding_id
);
707 cp_id
= default_source_codepage
;
709 do_set_codepage (cp_id
);
711 #endif /* HAVE_CHARSET */
713 got_data
= get_file_type_local (localfile_vpath
, content_string
, sizeof (content_string
));
715 mc_ungetlocalcopy (filename_vpath
, localfile_vpath
, FALSE
);
721 pp
= strchr (content_string
, '\n');
727 const char *real_name
; /* name used with "file" */
730 real_name
= vfs_path_get_last_path_str (localfile_vpath
);
731 real_len
= strlen (real_name
);
733 if (strncmp (content_string
, real_name
, real_len
) == 0)
735 /* Skip "real_name: " */
736 content_shift
= real_len
;
738 /* Solaris' file prints tab(s) after ':' */
739 if (content_string
[content_shift
] == ':')
740 for (content_shift
++; whitespace (content_string
[content_shift
]);
750 content_string
[0] = '\0';
752 vfs_path_free (localfile_vpath
, TRUE
);
757 mc_propagate_error (mcerror
, 0, "%s", _("Pipe failed"));
761 if (content_string
[0] != '\0')
765 search
= mc_search_new (ptr
, DEFAULT_CHARSET
);
768 search
->search_type
= MC_SEARCH_T_REGEX
;
769 search
->is_case_sensitive
= !case_insense
;
770 found
= mc_search_run (search
, content_string
+ content_shift
, 0, -1, NULL
);
771 mc_search_free (search
);
775 mc_propagate_error (mcerror
, 0, "%s", _("Regular expression error"));
781 #endif /* USE_FILE_CMD */
783 /* --------------------------------------------------------------------------------------------- */
786 check_old_extension_file (void)
788 char *extension_old_file
;
790 extension_old_file
= mc_config_get_full_path (MC_EXT_OLD_FILE
);
791 if (exist_file (extension_old_file
))
792 message (D_ERROR
, _("Warning"),
793 _("You have an outdated %s file.\nMidnight Commander now uses %s file.\n"
794 "Please copy your modifications of the old file to the new one."),
795 extension_old_file
, MC_EXT_FILE
);
796 g_free (extension_old_file
);
799 /* --------------------------------------------------------------------------------------------- */
802 load_extension_file (void)
804 char *extension_file
;
805 gboolean mc_user_ext
= TRUE
;
806 gboolean home_error
= FALSE
;
808 extension_file
= mc_config_get_full_path (MC_EXT_FILE
);
809 if (!exist_file (extension_file
))
811 g_free (extension_file
);
813 check_old_extension_file ();
816 extension_file
= mc_build_filename (mc_global
.sysconfig_dir
, MC_EXT_FILE
, (char *) NULL
);
817 if (!exist_file (extension_file
))
819 g_free (extension_file
);
821 mc_build_filename (mc_global
.share_data_dir
, MC_EXT_FILE
, (char *) NULL
);
822 if (!exist_file (extension_file
))
823 MC_PTR_FREE (extension_file
);
828 if (extension_file
!= NULL
)
830 ext_ini
= mc_config_init (extension_file
, TRUE
);
831 g_free (extension_file
);
837 if (!mc_config_has_group (ext_ini
, descr_group
))
839 flush_extension_file ();
843 message (D_ERROR
, MSG_ERROR
,
844 _("The format of the\n%s%s\nfile has changed with version 4.0.\n"
845 "It seems that the installation has failed.\nPlease fetch a fresh copy "
846 "from the Midnight Commander package."),
847 mc_global
.sysconfig_dir
, MC_EXT_FILE
);
852 goto check_stock_mc_ext
;
857 extension_file
= mc_config_get_full_path (MC_EXT_FILE
);
858 message (D_ERROR
, MSG_ERROR
,
859 _("The format of the\n%s\nfile has changed with version 4.0.\nYou may either want "
860 "to copy it from\n%s%s\nor use that file as an example of how to write it."),
861 extension_file
, mc_global
.sysconfig_dir
, MC_EXT_FILE
);
862 g_free (extension_file
);
868 /* --------------------------------------------------------------------------------------------- */
869 /*** public functions ****************************************************************************/
870 /* --------------------------------------------------------------------------------------------- */
873 flush_extension_file (void)
875 g_strfreev (ext_ini_groups
);
876 ext_ini_groups
= NULL
;
878 mc_config_deinit (ext_ini
);
882 /* --------------------------------------------------------------------------------------------- */
884 * The second argument is action, i.e. Open, View or Edit
885 * Use target object to open file in.
887 * This function returns:
889 * -1 for a failure or user interrupt
890 * 0 if no command was run
891 * 1 if some command was run
893 * If action == "View" then a parameter is checked in the form of "View:%d",
894 * if the value for %d exists, then the viewer is started up at that line number.
898 regex_command_for (void *target
, const vfs_path_t
*filename_vpath
, const char *action
,
899 vfs_path_t
**script_vpath
)
901 const char *filename
;
903 gboolean found
= FALSE
;
904 gboolean error_flag
= FALSE
;
907 int view_at_line_number
= 0;
909 gboolean have_type
= FALSE
; /* Flag used by regex_check_type() */
912 char *include_group
= NULL
;
913 const char *current_group
;
915 if (filename_vpath
== NULL
)
918 if (script_vpath
!= NULL
)
919 *script_vpath
= NULL
;
921 /* Check for the special View:%d parameter */
922 if (strncmp (action
, "View:", 5) == 0)
924 view_at_line_number
= atoi (action
+ 5);
928 if (ext_ini
== NULL
&& !load_extension_file ())
931 mc_stat (filename_vpath
, &mystat
);
933 filename
= vfs_path_get_last_path_str (filename_vpath
);
934 filename
= x_basename (filename
);
935 filename_len
= strlen (filename
);
937 if (ext_ini_groups
== NULL
)
938 ext_ini_groups
= mc_config_get_groups (ext_ini
, NULL
);
940 /* find matched type, regex or shell pattern */
941 for (group_iter
= ext_ini_groups
; *group_iter
!= NULL
&& !found
; group_iter
++)
948 } type_state
= TYPE_UNUSED
;
950 const gchar
*g
= *group_iter
;
952 gboolean ignore_case
;
954 if (strcmp (g
, descr_group
) == 0 || strncmp (g
, "Include/", 8) == 0
955 || strcmp (g
, default_group
) == 0)
958 /* The "Directory" parameter is a special case: if it's present then
959 "Type", "Regex", and "Shell" parameters are ignored */
960 pattern
= mc_config_get_string_raw (ext_ini
, g
, "Directory", NULL
);
963 found
= S_ISDIR (mystat
.st_mode
)
964 && mc_search (pattern
, DEFAULT_CHARSET
, vfs_path_as_str (filename_vpath
),
968 continue; /* stop if found */
972 if (use_file_to_check_type
)
974 pattern
= mc_config_get_string_raw (ext_ini
, g
, "Type", NULL
);
977 GError
*mcerror
= NULL
;
979 ignore_case
= mc_config_get_bool (ext_ini
, g
, "TypeIgnoreCase", FALSE
);
981 regex_check_type (filename_vpath
, pattern
, ignore_case
, &have_type
, &mcerror
)
982 ? TYPE_FOUND
: TYPE_NOT_FOUND
;
985 if (mc_error_message (&mcerror
, NULL
))
986 error_flag
= TRUE
; /* leave it if file cannot be opened */
988 if (type_state
== TYPE_NOT_FOUND
)
992 #endif /* USE_FILE_CMD */
994 pattern
= mc_config_get_string_raw (ext_ini
, g
, "Regex", NULL
);
999 ignore_case
= mc_config_get_bool (ext_ini
, g
, "RegexIgnoreCase", FALSE
);
1000 search
= mc_search_new (pattern
, DEFAULT_CHARSET
);
1005 search
->search_type
= MC_SEARCH_T_REGEX
;
1006 search
->is_case_sensitive
= !ignore_case
;
1007 found
= mc_search_run (search
, filename
, 0, filename_len
, NULL
);
1008 mc_search_free (search
);
1011 found
= found
&& (type_state
== TYPE_UNUSED
|| type_state
== TYPE_FOUND
);
1015 pattern
= mc_config_get_string_raw (ext_ini
, g
, "Shell", NULL
);
1016 if (pattern
!= NULL
)
1018 int (*cmp_func
) (const char *s1
, const char *s2
, size_t n
);
1021 ignore_case
= mc_config_get_bool (ext_ini
, g
, "ShellIgnoreCase", FALSE
);
1022 cmp_func
= ignore_case
? strncasecmp
: strncmp
;
1023 pattern_len
= strlen (pattern
);
1025 if (*pattern
== '.' && filename_len
>= pattern_len
)
1027 cmp_func (pattern
, filename
+ filename_len
- pattern_len
, pattern_len
) == 0;
1029 found
= pattern_len
== filename_len
1030 && cmp_func (pattern
, filename
, filename_len
) == 0;
1034 found
= found
&& (type_state
== TYPE_UNUSED
|| type_state
== TYPE_FOUND
);
1037 found
= type_state
== TYPE_FOUND
;
1041 /* group is found, process actions */
1044 char *include_value
;
1048 /* "Include" parameter has the highest priority over any actions */
1049 include_value
= mc_config_get_string_raw (ext_ini
, *group_iter
, "Include", NULL
);
1050 if (include_value
!= NULL
)
1052 /* find "Include/include_value" group */
1053 include_group
= g_strconcat ("Include/", include_value
, (char *) NULL
);
1054 g_free (include_value
);
1055 found
= mc_config_has_group (ext_ini
, include_group
);
1060 current_group
= include_group
!= NULL
? include_group
: *group_iter
;
1063 current_group
= default_group
;
1064 found
= mc_config_has_group (ext_ini
, current_group
);
1067 if (found
&& !error_flag
)
1069 gchar
*action_value
;
1071 action_value
= mc_config_get_string_raw (ext_ini
, current_group
, action
, NULL
);
1072 if (action_value
== NULL
)
1074 /* Not found, try the action from default section */
1075 action_value
= mc_config_get_string_raw (ext_ini
, default_group
, action
, NULL
);
1076 found
= (action_value
!= NULL
&& *action_value
!= '\0');
1080 /* If action's value is empty, ignore action from default section */
1081 found
= (*action_value
!= '\0');
1088 sv
= exec_extension (current_panel
, target
, filename_vpath
, action_value
,
1089 view_at_line_number
);
1090 if (script_vpath
!= NULL
)
1093 exec_cleanup_script (sv
);
1098 g_free (action_value
);
1101 g_free (include_group
);
1103 return (error_flag
? -1 : ret
);
1106 /* --------------------------------------------------------------------------------------------- */