Extend QUICK_INPUT and QUICK_LABELED_INPUT macros for getting completion flags via...
[midnight-commander.git] / src / filemanager / usermenu.c
blob854b68156bf23113a6f84242dba8958727b8c1a9
1 /*
2 User Menu implementation
4 Copyright (C) 1994, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005,
5 2006, 2007, 2011
6 The Free Software Foundation, Inc.
8 This file is part of the Midnight Commander.
10 The Midnight Commander is free software: you can redistribute it
11 and/or modify it under the terms of the GNU General Public License as
12 published by the Free Software Foundation, either version 3 of the License,
13 or (at your option) any later version.
15 The Midnight Commander is distributed in the hope that it will be useful,
16 but WITHOUT ANY WARRANTY; without even the implied warranty of
17 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 GNU General Public License for more details.
20 You should have received a copy of the GNU General Public License
21 along with this program. If not, see <http://www.gnu.org/licenses/>.
24 /** \file usermenu.c
25 * \brief Source: user menu implementation
28 #include <config.h>
30 #include <ctype.h>
31 #include <errno.h>
32 #include <stdlib.h>
33 #include <stdio.h>
34 #include <string.h>
36 #include "lib/global.h"
37 #include "lib/tty/tty.h"
38 #include "lib/skin.h"
39 #include "lib/search.h"
40 #include "lib/vfs/vfs.h"
41 #include "lib/strutil.h"
42 #include "lib/util.h"
43 #include "lib/widget.h"
45 #include "src/editor/edit.h" /* WEdit, BLOCK_FILE */
46 #include "src/viewer/mcviewer.h" /* for default_* externs */
48 #include "src/execute.h"
49 #include "src/setup.h"
50 #include "src/history.h"
52 #include "dir.h"
53 #include "midnight.h"
54 #include "layout.h"
56 #include "usermenu.h"
58 /*** global variables ****************************************************************************/
60 /*** file scope macro definitions ****************************************************************/
62 #define MAX_ENTRIES 16
63 #define MAX_ENTRY_LEN 60
65 /*** file scope type declarations ****************************************************************/
67 /*** file scope variables ************************************************************************/
69 static int debug_flag = 0;
70 static int debug_error = 0;
71 static char *menu = NULL;
73 /*** file scope functions ************************************************************************/
74 /* --------------------------------------------------------------------------------------------- */
76 /** strip file's extension */
77 static char *
78 strip_ext (char *ss)
80 register char *s = ss;
81 char *e = NULL;
82 while (*s)
84 if (*s == '.')
85 e = s;
86 if (*s == PATH_SEP && e)
87 e = NULL; /* '.' in *directory* name */
88 s++;
90 if (e)
91 *e = 0;
92 return ss;
95 /* --------------------------------------------------------------------------------------------- */
96 /**
97 * Check for the "shell_patterns" directive. If it's found and valid,
98 * interpret it and move the pointer past the directive. Return the
99 * current pointer.
102 static char *
103 check_patterns (char *p)
105 static const char def_name[] = "shell_patterns=";
106 char *p0 = p;
108 if (strncmp (p, def_name, sizeof (def_name) - 1) != 0)
109 return p0;
111 p += sizeof (def_name) - 1;
112 if (*p == '1')
113 easy_patterns = 1;
114 else if (*p == '0')
115 easy_patterns = 0;
116 else
117 return p0;
119 /* Skip spaces */
120 p++;
121 while (*p == '\n' || *p == '\t' || *p == ' ')
122 p++;
123 return p;
126 /* --------------------------------------------------------------------------------------------- */
127 /** Copies a whitespace separated argument from p to arg. Returns the
128 point after argument. */
130 static char *
131 extract_arg (char *p, char *arg, int size)
133 char *np;
135 while (*p && (*p == ' ' || *p == '\t' || *p == '\n'))
136 p++;
137 /* support quote space .mnu */
138 while (*p && (*p != ' ' || *(p - 1) == '\\') && *p != '\t' && *p != '\n')
140 np = str_get_next_char (p);
141 if (np - p >= size)
142 break;
143 memcpy (arg, p, np - p);
144 arg += np - p;
145 size -= np - p;
146 p = np;
148 *arg = 0;
149 if (!*p || *p == '\n')
150 str_prev_char (&p);
151 return p;
154 /* --------------------------------------------------------------------------------------------- */
155 /* Tests whether the selected file in the panel is of any of the types
156 specified in argument. */
158 static int
159 test_type (WPanel * panel, char *arg)
161 int result = 0; /* False by default */
162 int st_mode = panel->dir.list[panel->selected].st.st_mode;
164 for (; *arg != 0; arg++)
166 switch (*arg)
168 case 'n': /* Not a directory */
169 result |= !S_ISDIR (st_mode);
170 break;
171 case 'r': /* Regular file */
172 result |= S_ISREG (st_mode);
173 break;
174 case 'd': /* Directory */
175 result |= S_ISDIR (st_mode);
176 break;
177 case 'l': /* Link */
178 result |= S_ISLNK (st_mode);
179 break;
180 case 'c': /* Character special */
181 result |= S_ISCHR (st_mode);
182 break;
183 case 'b': /* Block special */
184 result |= S_ISBLK (st_mode);
185 break;
186 case 'f': /* Fifo (named pipe) */
187 result |= S_ISFIFO (st_mode);
188 break;
189 case 's': /* Socket */
190 result |= S_ISSOCK (st_mode);
191 break;
192 case 'x': /* Executable */
193 result |= (st_mode & 0111) ? 1 : 0;
194 break;
195 case 't':
196 result |= panel->marked ? 1 : 0;
197 break;
198 default:
199 debug_error = 1;
200 break;
203 return result;
206 /* --------------------------------------------------------------------------------------------- */
207 /** Calculates the truth value of the next condition starting from
208 p. Returns the point after condition. */
210 static char *
211 test_condition (WEdit * edit_widget, char *p, int *condition)
213 char arg[256];
214 const mc_search_type_t search_type = easy_patterns ? MC_SEARCH_T_GLOB : MC_SEARCH_T_REGEX;
216 /* Handle one condition */
217 for (; *p != '\n' && *p != '&' && *p != '|'; p++)
219 WPanel *panel = NULL;
221 /* support quote space .mnu */
222 if ((*p == ' ' && *(p - 1) != '\\') || *p == '\t')
223 continue;
224 if (*p >= 'a')
225 panel = current_panel;
226 else if (get_other_type () == view_listing)
227 panel = other_panel;
229 *p |= 0x20;
231 switch (*p++)
233 case '!':
234 p = test_condition (edit_widget, p, condition);
235 *condition = !*condition;
236 str_prev_char (&p);
237 break;
238 case 'f': /* file name pattern */
239 p = extract_arg (p, arg, sizeof (arg));
240 #ifdef USE_INTERNAL_EDIT
241 if (edit_widget != NULL)
243 char *edit_filename;
245 edit_filename = edit_get_file_name (edit_widget);
246 *condition = mc_search (arg, edit_filename, search_type) ? 1 : 0;
247 g_free (edit_filename);
249 else
250 #endif
251 *condition = panel != NULL &&
252 mc_search (arg, panel->dir.list[panel->selected].fname, search_type) ? 1 : 0;
253 break;
254 case 'y': /* syntax pattern */
255 #ifdef USE_INTERNAL_EDIT
256 if (edit_widget != NULL)
258 const char *syntax_type = edit_get_syntax_type (edit_widget);
259 if (syntax_type != NULL)
261 p = extract_arg (p, arg, sizeof (arg));
262 *condition = mc_search (arg, syntax_type, MC_SEARCH_T_NORMAL) ? 1 : 0;
265 #endif
266 break;
267 case 'd':
268 p = extract_arg (p, arg, sizeof (arg));
270 char *cwd_str;
272 cwd_str = vfs_path_to_str (panel->cwd_vpath);
273 *condition = panel != NULL && mc_search (arg, cwd_str, search_type) ? 1 : 0;
274 g_free (cwd_str);
276 break;
277 case 't':
278 p = extract_arg (p, arg, sizeof (arg));
279 *condition = panel != NULL && test_type (panel, arg) ? 1 : 0;
280 break;
281 case 'x': /* executable */
283 struct stat status;
285 p = extract_arg (p, arg, sizeof (arg));
286 if (stat (arg, &status) == 0)
287 *condition = is_exe (status.st_mode) ? 1 : 0;
288 else
289 *condition = 0;
290 break;
292 default:
293 debug_error = 1;
294 break;
295 } /* switch */
297 } /* while */
298 return p;
301 /* --------------------------------------------------------------------------------------------- */
302 /** General purpose condition debug output handler */
304 static void
305 debug_out (char *start, char *end, int cond)
307 static char *msg;
308 int len;
310 if (start == NULL && end == NULL)
312 /* Show output */
313 if (debug_flag && msg)
315 len = strlen (msg);
316 if (len)
317 msg[len - 1] = 0;
318 message (D_NORMAL, _("Debug"), "%s", msg);
321 debug_flag = 0;
322 g_free (msg);
323 msg = NULL;
325 else
327 const char *type;
328 char *p;
330 /* Save debug info for later output */
331 if (!debug_flag)
332 return;
333 /* Save the result of the condition */
334 if (debug_error)
336 type = _("ERROR:");
337 debug_error = 0;
339 else if (cond)
340 type = _("True:");
341 else
342 type = _("False:");
343 /* This is for debugging, don't need to be super efficient. */
344 if (end == NULL)
345 p = g_strdup_printf ("%s %s %c \n", msg ? msg : "", type, *start);
346 else
347 p = g_strdup_printf ("%s %s %.*s \n", msg ? msg : "", type, (int) (end - start), start);
348 g_free (msg);
349 msg = p;
353 /* --------------------------------------------------------------------------------------------- */
354 /** Calculates the truth value of one lineful of conditions. Returns
355 the point just before the end of line. */
357 static char *
358 test_line (WEdit * edit_widget, char *p, int *result)
360 int condition;
361 char operator;
362 char *debug_start, *debug_end;
364 /* Repeat till end of line */
365 while (*p && *p != '\n')
367 /* support quote space .mnu */
368 while ((*p == ' ' && *(p - 1) != '\\') || *p == '\t')
369 p++;
370 if (!*p || *p == '\n')
371 break;
372 operator = *p++;
373 if (*p == '?')
375 debug_flag = 1;
376 p++;
378 /* support quote space .mnu */
379 while ((*p == ' ' && *(p - 1) != '\\') || *p == '\t')
380 p++;
381 if (!*p || *p == '\n')
382 break;
383 condition = 1; /* True by default */
385 debug_start = p;
386 p = test_condition (edit_widget, p, &condition);
387 debug_end = p;
388 /* Add one debug statement */
389 debug_out (debug_start, debug_end, condition);
391 switch (operator)
393 case '+':
394 case '=':
395 /* Assignment */
396 *result = condition;
397 break;
398 case '&': /* Logical and */
399 *result &= condition;
400 break;
401 case '|': /* Logical or */
402 *result |= condition;
403 break;
404 default:
405 debug_error = 1;
406 break;
407 } /* switch */
408 /* Add one debug statement */
409 debug_out (&operator, NULL, *result);
411 } /* while (*p != '\n') */
412 /* Report debug message */
413 debug_out (NULL, NULL, 1);
415 if (!*p || *p == '\n')
416 str_prev_char (&p);
417 return p;
420 /* --------------------------------------------------------------------------------------------- */
421 /** FIXME: recode this routine on version 3.0, it could be cleaner */
423 static void
424 execute_menu_command (WEdit * edit_widget, const char *commands, gboolean show_prompt)
426 FILE *cmd_file;
427 int cmd_file_fd;
428 int expand_prefix_found = 0;
429 char *parameter = 0;
430 gboolean do_quote = FALSE;
431 char lc_prompt[80];
432 int col;
433 vfs_path_t *file_name_vpath;
434 int run_view = 0;
436 /* Skip menu entry title line */
437 commands = strchr (commands, '\n');
438 if (!commands)
440 return;
443 cmd_file_fd = mc_mkstemps (&file_name_vpath, "mcusr", SCRIPT_SUFFIX);
445 if (cmd_file_fd == -1)
447 message (D_ERROR, MSG_ERROR, _("Cannot create temporary command file\n%s"),
448 unix_error_string (errno));
449 vfs_path_free (file_name_vpath);
450 return;
452 cmd_file = fdopen (cmd_file_fd, "w");
453 fputs ("#! /bin/sh\n", cmd_file);
454 commands++;
456 for (col = 0; *commands; commands++)
458 if (col == 0)
460 if (*commands != ' ' && *commands != '\t')
461 break;
462 while (*commands == ' ' || *commands == '\t')
463 commands++;
464 if (*commands == 0)
465 break;
467 col++;
468 if (*commands == '\n')
469 col = 0;
470 if (parameter)
472 if (*commands == '}')
474 char *tmp;
475 *parameter = 0;
476 parameter =
477 input_dialog (_("Parameter"), lc_prompt, MC_HISTORY_FM_MENU_EXEC_PARAM, "",
478 INPUT_COMPLETE_DEFAULT);
479 if (!parameter || !*parameter)
481 /* User canceled */
482 fclose (cmd_file);
483 mc_unlink (file_name_vpath);
484 vfs_path_free (file_name_vpath);
485 return;
487 if (do_quote)
489 tmp = name_quote (parameter, 0);
490 fputs (tmp, cmd_file);
491 g_free (tmp);
493 else
494 fputs (parameter, cmd_file);
495 g_free (parameter);
496 parameter = 0;
498 else
500 if (parameter < &lc_prompt[sizeof (lc_prompt) - 1])
502 *parameter++ = *commands;
506 else if (expand_prefix_found)
508 expand_prefix_found = 0;
509 if (g_ascii_isdigit ((gchar) * commands))
511 do_quote = (atoi (commands) != 0);
512 while (g_ascii_isdigit ((gchar) * commands))
513 commands++;
515 if (*commands == '{')
516 parameter = lc_prompt;
517 else
519 char *text = expand_format (edit_widget, *commands, do_quote);
520 fputs (text, cmd_file);
521 g_free (text);
524 else
526 if (*commands == '%')
528 int i = check_format_view (commands + 1);
529 if (i)
531 commands += i;
532 run_view = 1;
534 else
536 do_quote = TRUE; /* Default: Quote expanded macro */
537 expand_prefix_found = 1;
540 else
541 fputc (*commands, cmd_file);
544 fclose (cmd_file);
545 mc_chmod (file_name_vpath, S_IRWXU);
546 if (run_view)
548 char *file_name;
550 file_name = vfs_path_to_str (file_name_vpath);
551 mcview_viewer (file_name, NULL, 0);
552 g_free (file_name);
553 dialog_switch_process_pending ();
555 else
557 /* execute the command indirectly to allow execution even
558 * on no-exec filesystems. */
559 char *file_name, *cmd;
561 file_name = vfs_path_to_str (file_name_vpath);
562 cmd = g_strconcat ("/bin/sh ", file_name, (char *) NULL);
563 g_free (file_name);
564 if (!show_prompt)
566 if (system (cmd) == -1)
567 message (D_ERROR, MSG_ERROR, "%s", _("Error calling program"));
569 else
571 shell_execute (cmd, EXECUTE_HIDE);
573 g_free (cmd);
575 mc_unlink (file_name_vpath);
576 vfs_path_free (file_name_vpath);
579 /* --------------------------------------------------------------------------------------------- */
581 ** Check owner of the menu file. Using menu file is allowed, if
582 ** owner of the menu is root or the actual user. In either case
583 ** file should not be group and word-writable.
585 ** Q. Should we apply this routine to system and home menu (and .ext files)?
588 static int
589 menu_file_own (char *path)
591 struct stat st;
593 if (stat (path, &st) == 0
594 && (!st.st_uid || (st.st_uid == geteuid ())) && ((st.st_mode & (S_IWGRP | S_IWOTH)) == 0))
596 return 1;
598 if (verbose)
600 message (D_NORMAL, _("Warning -- ignoring file"),
601 _("File %s is not owned by root or you or is world writable.\n"
602 "Using it may compromise your security"), path);
604 return 0;
607 /* --------------------------------------------------------------------------------------------- */
608 /*** public functions ****************************************************************************/
609 /* --------------------------------------------------------------------------------------------- */
611 /* Formats defined:
612 %% The % character
613 %f The current file (if non-local vfs, file will be copied locally and
614 %f will be full path to it).
615 %p The current file
616 %d The current working directory
617 %s "Selected files"; the tagged files if any, otherwise the current file
618 %t Tagged files
619 %u Tagged files (and they are untagged on return from expand_format)
620 %view Runs the commands and pipes standard output to the view command.
621 If %view is immediately followed by '{', recognize keywords
622 ascii, hex, nroff and unform
624 If the format letter is in uppercase, it refers to the other panel.
626 With a number followed the % character you can turn quoting on (default)
627 and off. For example:
628 %f quote expanded macro
629 %1f ditto
630 %0f don't quote expanded macro
632 expand_format returns a memory block that must be free()d.
635 /* Returns how many characters we should advance if %view was found */
637 check_format_view (const char *p)
639 const char *q = p;
640 if (!strncmp (p, "view", 4))
642 q += 4;
643 if (*q == '{')
645 for (q++; *q && *q != '}'; q++)
647 if (!strncmp (q, "ascii", 5))
649 mcview_default_hex_mode = 0;
650 q += 4;
652 else if (!strncmp (q, "hex", 3))
654 mcview_default_hex_mode = 1;
655 q += 2;
657 else if (!strncmp (q, "nroff", 5))
659 mcview_default_nroff_flag = 1;
660 q += 4;
662 else if (!strncmp (q, "unform", 6))
664 mcview_default_nroff_flag = 0;
665 q += 5;
668 if (*q == '}')
669 q++;
671 return q - p;
673 return 0;
676 /* --------------------------------------------------------------------------------------------- */
679 check_format_cd (const char *p)
681 return (strncmp (p, "cd", 2)) ? 0 : 3;
684 /* --------------------------------------------------------------------------------------------- */
685 /* Check if p has a "^var\{var-name\}" */
686 /* Returns the number of skipped characters (zero on not found) */
687 /* V will be set to the expanded variable name */
690 check_format_var (const char *p, char **v)
692 const char *q = p;
693 char *var_name;
694 const char *value;
695 const char *dots = 0;
697 *v = 0;
698 if (!strncmp (p, "var{", 4))
700 for (q += 4; *q && *q != '}'; q++)
702 if (*q == ':')
703 dots = q + 1;
705 if (!*q)
706 return 0;
708 if (!dots || dots == q + 5)
710 message (D_ERROR,
711 _("Format error on file Extensions File"),
712 !dots ? _("The %%var macro has no default")
713 : _("The %%var macro has no variable"));
714 return 0;
717 /* Copy the variable name */
718 var_name = g_strndup (p + 4, dots - 2 - (p + 3));
720 value = getenv (var_name);
721 g_free (var_name);
722 if (value)
724 *v = g_strdup (value);
725 return q - p;
727 var_name = g_strndup (dots, q - dots);
728 *v = var_name;
729 return q - p;
731 return 0;
734 /* --------------------------------------------------------------------------------------------- */
736 char *
737 expand_format (struct WEdit *edit_widget, char c, gboolean do_quote)
739 WPanel *panel = NULL;
740 char *(*quote_func) (const char *, int);
741 char *fname = NULL;
742 char *result;
743 char c_lc;
745 #ifndef USE_INTERNAL_EDIT
746 (void) edit_widget;
747 #endif
749 if (c == '%')
750 return g_strdup ("%");
752 switch (mc_global.mc_run_mode)
754 case MC_RUN_FULL:
755 if (g_ascii_islower ((gchar) c))
756 panel = current_panel;
757 else
759 if (get_other_type () != view_listing)
760 return g_strdup ("");
761 panel = other_panel;
763 fname = g_strdup (panel->dir.list[panel->selected].fname);
764 break;
766 #ifdef USE_INTERNAL_EDIT
767 case MC_RUN_EDITOR:
768 fname = edit_get_file_name (edit_widget);
769 break;
770 #endif
772 default:
773 /* other modes don't use formats */
774 return g_strdup ("");
777 if (do_quote)
778 quote_func = name_quote;
779 else
780 quote_func = fake_name_quote;
782 c_lc = g_ascii_tolower ((gchar) c);
784 switch (c_lc)
786 case 'f':
787 case 'p':
788 result = (*quote_func) (fname, 0);
789 goto ret;
790 case 'x':
791 result = (*quote_func) (extension (fname), 0);
792 goto ret;
793 case 'd':
795 char *cwd;
796 char *qstr;
798 if (panel)
799 cwd = vfs_path_to_str (panel->cwd_vpath);
800 else
801 cwd = vfs_get_current_dir ();
803 qstr = (*quote_func) (cwd, 0);
805 g_free (cwd);
807 result = qstr;
808 goto ret;
810 case 'i': /* indent equal number cursor position in line */
811 #ifdef USE_INTERNAL_EDIT
812 if (edit_widget)
814 result = g_strnfill (edit_get_curs_col (edit_widget), ' ');
815 goto ret;
817 #endif
818 break;
819 case 'y': /* syntax type */
820 #ifdef USE_INTERNAL_EDIT
821 if (edit_widget)
823 const char *syntax_type = edit_get_syntax_type (edit_widget);
824 if (syntax_type != NULL)
826 result = g_strdup (syntax_type);
827 goto ret;
830 #endif
831 break;
832 case 'k': /* block file name */
833 case 'b': /* block file name / strip extension */
835 #ifdef USE_INTERNAL_EDIT
836 if (edit_widget)
838 char *file;
840 file = mc_config_get_full_path (EDIT_BLOCK_FILE);
841 result = (*quote_func) (file, 0);
842 g_free (file);
843 goto ret;
845 #endif
846 if (c_lc == 'b')
848 result = strip_ext ((*quote_func) (fname, 0));
849 goto ret;
851 break;
853 case 'n': /* strip extension in editor */
854 #ifdef USE_INTERNAL_EDIT
855 if (edit_widget)
857 result = strip_ext ((*quote_func) (fname, 0));
858 goto ret;
860 #endif
861 break;
862 case 'm': /* menu file name */
863 if (menu)
865 result = (*quote_func) (menu, 0);
866 goto ret;
868 break;
869 case 's':
870 if (!panel || !panel->marked)
872 result = (*quote_func) (fname, 0);
873 goto ret;
876 /* Fall through */
878 case 't':
879 case 'u':
881 GString *block;
882 int i;
884 if (panel == NULL)
886 result = g_strdup ("");
887 goto ret;
890 block = g_string_sized_new (16);
892 for (i = 0; i < panel->count; i++)
893 if (panel->dir.list[i].f.marked)
895 char *tmp;
897 tmp = (*quote_func) (panel->dir.list[i].fname, 0);
898 g_string_append (block, tmp);
899 g_string_append_c (block, ' ');
900 g_free (tmp);
902 if (c_lc == 'u')
903 do_file_mark (panel, i, 0);
905 result = g_string_free (block, FALSE);
906 goto ret;
907 } /* sub case block */
908 } /* switch */
909 result = g_strdup ("% ");
910 result[1] = c;
911 ret:
912 g_free (fname);
913 return result;
916 /* --------------------------------------------------------------------------------------------- */
918 * If edit_widget is NULL then we are called from the mc menu,
919 * otherwise we are called from the mcedit menu.
922 gboolean
923 user_menu_cmd (struct WEdit * edit_widget, const char *menu_file, int selected_entry)
925 char *p;
926 char *data, **entries;
927 int max_cols, menu_lines, menu_limit;
928 int col, i, accept_entry = 1;
929 int selected, old_patterns;
930 Listbox *listbox;
931 gboolean res = FALSE;
932 gboolean interactive = TRUE;
934 if (!vfs_current_is_local ())
936 message (D_ERROR, MSG_ERROR, "%s", _("Cannot execute commands on non-local filesystems"));
937 return FALSE;
939 if (menu_file != NULL)
940 menu = g_strdup (menu_file);
941 else
942 menu = g_strdup (edit_widget ? EDIT_LOCAL_MENU : MC_LOCAL_MENU);
943 if (!exist_file (menu) || !menu_file_own (menu))
945 if (menu_file != NULL)
947 message (D_ERROR, MSG_ERROR, _("Cannot open file %s\n%s"), menu,
948 unix_error_string (errno));
949 g_free (menu);
950 menu = NULL;
951 return FALSE;
954 g_free (menu);
955 if (edit_widget)
956 menu = mc_config_get_full_path (EDIT_HOME_MENU);
957 else
958 menu = mc_config_get_full_path (MC_USERMENU_FILE);
961 if (!exist_file (menu))
963 g_free (menu);
964 menu =
965 mc_build_filename (mc_config_get_home_dir (),
966 edit_widget ? EDIT_GLOBAL_MENU : MC_GLOBAL_MENU, NULL);
967 if (!exist_file (menu))
969 g_free (menu);
970 menu =
971 mc_build_filename (mc_global.sysconfig_dir,
972 edit_widget ? EDIT_GLOBAL_MENU : MC_GLOBAL_MENU, NULL);
973 if (!exist_file (menu))
975 g_free (menu);
976 menu = mc_build_filename
977 (mc_global.share_data_dir, edit_widget ? EDIT_GLOBAL_MENU : MC_GLOBAL_MENU,
978 NULL);
984 if (!g_file_get_contents (menu, &data, NULL, NULL))
986 message (D_ERROR, MSG_ERROR, _("Cannot open file%s\n%s"), menu, unix_error_string (errno));
987 g_free (menu);
988 menu = NULL;
989 return FALSE;
992 max_cols = 0;
993 selected = 0;
994 menu_limit = 0;
995 entries = 0;
997 /* Parse the menu file */
998 old_patterns = easy_patterns;
999 p = check_patterns (data);
1000 for (menu_lines = col = 0; *p; str_next_char (&p))
1002 if (menu_lines >= menu_limit)
1004 char **new_entries;
1006 menu_limit += MAX_ENTRIES;
1007 new_entries = g_try_realloc (entries, sizeof (new_entries[0]) * menu_limit);
1009 if (new_entries == NULL)
1010 break;
1012 entries = new_entries;
1013 new_entries += menu_limit;
1014 while (--new_entries >= &entries[menu_lines])
1015 *new_entries = NULL;
1017 if (col == 0 && !entries[menu_lines])
1019 if (*p == '#')
1021 /* show prompt if first line of external script is #interactive */
1022 if (selected_entry >= 0 && strncmp (p, "#silent", 7) == 0)
1023 interactive = FALSE;
1024 /* A commented menu entry */
1025 accept_entry = 1;
1027 else if (*p == '+')
1029 if (*(p + 1) == '=')
1031 /* Combined adding and default */
1032 p = test_line (edit_widget, p + 1, &accept_entry);
1033 if (selected == 0 && accept_entry)
1034 selected = menu_lines;
1036 else
1038 /* A condition for adding the entry */
1039 p = test_line (edit_widget, p, &accept_entry);
1042 else if (*p == '=')
1044 if (*(p + 1) == '+')
1046 /* Combined adding and default */
1047 p = test_line (edit_widget, p + 1, &accept_entry);
1048 if (selected == 0 && accept_entry)
1049 selected = menu_lines;
1051 else
1053 /* A condition for making the entry default */
1054 i = 1;
1055 p = test_line (edit_widget, p, &i);
1056 if (selected == 0 && i)
1057 selected = menu_lines;
1060 else if (*p != ' ' && *p != '\t' && str_isprint (p))
1062 /* A menu entry title line */
1063 if (accept_entry)
1064 entries[menu_lines] = p;
1065 else
1066 accept_entry = 1;
1069 if (*p == '\n')
1071 if (entries[menu_lines])
1073 menu_lines++;
1074 accept_entry = 1;
1076 max_cols = max (max_cols, col);
1077 col = 0;
1079 else
1081 if (*p == '\t')
1082 *p = ' ';
1083 col++;
1087 if (menu_lines == 0)
1089 message (D_ERROR, MSG_ERROR, _("No suitable entries found in %s"), menu);
1090 res = FALSE;
1092 else
1094 if (selected_entry >= 0)
1095 selected = selected_entry;
1096 else
1098 max_cols = min (max (max_cols, col), MAX_ENTRY_LEN);
1100 /* Create listbox */
1101 listbox = create_listbox_window (menu_lines, max_cols + 2, _("User menu"),
1102 "[Menu File Edit]");
1103 /* insert all the items found */
1104 for (i = 0; i < menu_lines; i++)
1106 p = entries[i];
1107 LISTBOX_APPEND_TEXT (listbox, (unsigned char) p[0],
1108 extract_line (p, p + MAX_ENTRY_LEN), p);
1110 /* Select the default entry */
1111 listbox_select_entry (listbox->list, selected);
1113 selected = run_listbox (listbox);
1115 if (selected >= 0)
1117 execute_menu_command (edit_widget, entries[selected], interactive);
1118 res = TRUE;
1121 do_refresh ();
1124 easy_patterns = old_patterns;
1125 g_free (menu);
1126 menu = NULL;
1127 g_free (entries);
1128 g_free (data);
1129 return res;
1132 /* --------------------------------------------------------------------------------------------- */