a60ec95d85de9e5aade6a3358988b6280143ea37
[midnight-commander.git] / src / filemanager / usermenu.c
bloba60ec95d85de9e5aade6a3358988b6280143ea37
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 if (!parameter || !*parameter)
480 /* User canceled */
481 fclose (cmd_file);
482 mc_unlink (file_name_vpath);
483 vfs_path_free (file_name_vpath);
484 return;
486 if (do_quote)
488 tmp = name_quote (parameter, 0);
489 fputs (tmp, cmd_file);
490 g_free (tmp);
492 else
493 fputs (parameter, cmd_file);
494 g_free (parameter);
495 parameter = 0;
497 else
499 if (parameter < &lc_prompt[sizeof (lc_prompt) - 1])
501 *parameter++ = *commands;
505 else if (expand_prefix_found)
507 expand_prefix_found = 0;
508 if (g_ascii_isdigit ((gchar) * commands))
510 do_quote = (atoi (commands) != 0);
511 while (g_ascii_isdigit ((gchar) * commands))
512 commands++;
514 if (*commands == '{')
515 parameter = lc_prompt;
516 else
518 char *text = expand_format (edit_widget, *commands, do_quote);
519 fputs (text, cmd_file);
520 g_free (text);
523 else
525 if (*commands == '%')
527 int i = check_format_view (commands + 1);
528 if (i)
530 commands += i;
531 run_view = 1;
533 else
535 do_quote = TRUE; /* Default: Quote expanded macro */
536 expand_prefix_found = 1;
539 else
540 fputc (*commands, cmd_file);
543 fclose (cmd_file);
544 mc_chmod (file_name_vpath, S_IRWXU);
545 if (run_view)
547 char *file_name;
549 file_name = vfs_path_to_str (file_name_vpath);
550 mcview_viewer (file_name, NULL, 0);
551 g_free (file_name);
552 dialog_switch_process_pending ();
554 else
556 /* execute the command indirectly to allow execution even
557 * on no-exec filesystems. */
558 char *file_name, *cmd;
560 file_name = vfs_path_to_str (file_name_vpath);
561 cmd = g_strconcat ("/bin/sh ", file_name, (char *) NULL);
562 g_free (file_name);
563 if (!show_prompt)
565 if (system (cmd) == -1)
566 message (D_ERROR, MSG_ERROR, "%s", _("Error calling program"));
568 else
570 shell_execute (cmd, EXECUTE_HIDE);
572 g_free (cmd);
574 mc_unlink (file_name_vpath);
575 vfs_path_free (file_name_vpath);
578 /* --------------------------------------------------------------------------------------------- */
580 ** Check owner of the menu file. Using menu file is allowed, if
581 ** owner of the menu is root or the actual user. In either case
582 ** file should not be group and word-writable.
584 ** Q. Should we apply this routine to system and home menu (and .ext files)?
587 static int
588 menu_file_own (char *path)
590 struct stat st;
592 if (stat (path, &st) == 0
593 && (!st.st_uid || (st.st_uid == geteuid ())) && ((st.st_mode & (S_IWGRP | S_IWOTH)) == 0))
595 return 1;
597 if (verbose)
599 message (D_NORMAL, _("Warning -- ignoring file"),
600 _("File %s is not owned by root or you or is world writable.\n"
601 "Using it may compromise your security"), path);
603 return 0;
606 /* --------------------------------------------------------------------------------------------- */
607 /*** public functions ****************************************************************************/
608 /* --------------------------------------------------------------------------------------------- */
610 /* Formats defined:
611 %% The % character
612 %f The current file (if non-local vfs, file will be copied locally and
613 %f will be full path to it).
614 %p The current file
615 %d The current working directory
616 %s "Selected files"; the tagged files if any, otherwise the current file
617 %t Tagged files
618 %u Tagged files (and they are untagged on return from expand_format)
619 %view Runs the commands and pipes standard output to the view command.
620 If %view is immediately followed by '{', recognize keywords
621 ascii, hex, nroff and unform
623 If the format letter is in uppercase, it refers to the other panel.
625 With a number followed the % character you can turn quoting on (default)
626 and off. For example:
627 %f quote expanded macro
628 %1f ditto
629 %0f don't quote expanded macro
631 expand_format returns a memory block that must be free()d.
634 /* Returns how many characters we should advance if %view was found */
636 check_format_view (const char *p)
638 const char *q = p;
639 if (!strncmp (p, "view", 4))
641 q += 4;
642 if (*q == '{')
644 for (q++; *q && *q != '}'; q++)
646 if (!strncmp (q, "ascii", 5))
648 mcview_default_hex_mode = 0;
649 q += 4;
651 else if (!strncmp (q, "hex", 3))
653 mcview_default_hex_mode = 1;
654 q += 2;
656 else if (!strncmp (q, "nroff", 5))
658 mcview_default_nroff_flag = 1;
659 q += 4;
661 else if (!strncmp (q, "unform", 6))
663 mcview_default_nroff_flag = 0;
664 q += 5;
667 if (*q == '}')
668 q++;
670 return q - p;
672 return 0;
675 /* --------------------------------------------------------------------------------------------- */
678 check_format_cd (const char *p)
680 return (strncmp (p, "cd", 2)) ? 0 : 3;
683 /* --------------------------------------------------------------------------------------------- */
684 /* Check if p has a "^var\{var-name\}" */
685 /* Returns the number of skipped characters (zero on not found) */
686 /* V will be set to the expanded variable name */
689 check_format_var (const char *p, char **v)
691 const char *q = p;
692 char *var_name;
693 const char *value;
694 const char *dots = 0;
696 *v = 0;
697 if (!strncmp (p, "var{", 4))
699 for (q += 4; *q && *q != '}'; q++)
701 if (*q == ':')
702 dots = q + 1;
704 if (!*q)
705 return 0;
707 if (!dots || dots == q + 5)
709 message (D_ERROR,
710 _("Format error on file Extensions File"),
711 !dots ? _("The %%var macro has no default")
712 : _("The %%var macro has no variable"));
713 return 0;
716 /* Copy the variable name */
717 var_name = g_strndup (p + 4, dots - 2 - (p + 3));
719 value = getenv (var_name);
720 g_free (var_name);
721 if (value)
723 *v = g_strdup (value);
724 return q - p;
726 var_name = g_strndup (dots, q - dots);
727 *v = var_name;
728 return q - p;
730 return 0;
733 /* --------------------------------------------------------------------------------------------- */
735 char *
736 expand_format (struct WEdit *edit_widget, char c, gboolean do_quote)
738 WPanel *panel = NULL;
739 char *(*quote_func) (const char *, int);
740 char *fname = NULL;
741 char *result;
742 char c_lc;
744 #ifndef USE_INTERNAL_EDIT
745 (void) edit_widget;
746 #endif
748 if (c == '%')
749 return g_strdup ("%");
751 switch (mc_global.mc_run_mode)
753 case MC_RUN_FULL:
754 if (g_ascii_islower ((gchar) c))
755 panel = current_panel;
756 else
758 if (get_other_type () != view_listing)
759 return g_strdup ("");
760 panel = other_panel;
762 fname = g_strdup (panel->dir.list[panel->selected].fname);
763 break;
765 #ifdef USE_INTERNAL_EDIT
766 case MC_RUN_EDITOR:
767 fname = edit_get_file_name (edit_widget);
768 break;
769 #endif
771 default:
772 /* other modes don't use formats */
773 return g_strdup ("");
776 if (do_quote)
777 quote_func = name_quote;
778 else
779 quote_func = fake_name_quote;
781 c_lc = g_ascii_tolower ((gchar) c);
783 switch (c_lc)
785 case 'f':
786 case 'p':
787 result = (*quote_func) (fname, 0);
788 goto ret;
789 case 'x':
790 result = (*quote_func) (extension (fname), 0);
791 goto ret;
792 case 'd':
794 char *cwd;
795 char *qstr;
797 if (panel)
798 cwd = vfs_path_to_str (panel->cwd_vpath);
799 else
800 cwd = vfs_get_current_dir ();
802 qstr = (*quote_func) (cwd, 0);
804 g_free (cwd);
806 result = qstr;
807 goto ret;
809 case 'i': /* indent equal number cursor position in line */
810 #ifdef USE_INTERNAL_EDIT
811 if (edit_widget)
813 result = g_strnfill (edit_get_curs_col (edit_widget), ' ');
814 goto ret;
816 #endif
817 break;
818 case 'y': /* syntax type */
819 #ifdef USE_INTERNAL_EDIT
820 if (edit_widget)
822 const char *syntax_type = edit_get_syntax_type (edit_widget);
823 if (syntax_type != NULL)
825 result = g_strdup (syntax_type);
826 goto ret;
829 #endif
830 break;
831 case 'k': /* block file name */
832 case 'b': /* block file name / strip extension */
834 #ifdef USE_INTERNAL_EDIT
835 if (edit_widget)
837 char *file;
839 file = mc_config_get_full_path (EDIT_BLOCK_FILE);
840 result = (*quote_func) (file, 0);
841 g_free (file);
842 goto ret;
844 #endif
845 if (c_lc == 'b')
847 result = strip_ext ((*quote_func) (fname, 0));
848 goto ret;
850 break;
852 case 'n': /* strip extension in editor */
853 #ifdef USE_INTERNAL_EDIT
854 if (edit_widget)
856 result = strip_ext ((*quote_func) (fname, 0));
857 goto ret;
859 #endif
860 break;
861 case 'm': /* menu file name */
862 if (menu)
864 result = (*quote_func) (menu, 0);
865 goto ret;
867 break;
868 case 's':
869 if (!panel || !panel->marked)
871 result = (*quote_func) (fname, 0);
872 goto ret;
875 /* Fall through */
877 case 't':
878 case 'u':
880 GString *block;
881 int i;
883 if (panel == NULL)
885 result = g_strdup ("");
886 goto ret;
889 block = g_string_sized_new (16);
891 for (i = 0; i < panel->count; i++)
892 if (panel->dir.list[i].f.marked)
894 char *tmp;
896 tmp = (*quote_func) (panel->dir.list[i].fname, 0);
897 g_string_append (block, tmp);
898 g_string_append_c (block, ' ');
899 g_free (tmp);
901 if (c_lc == 'u')
902 do_file_mark (panel, i, 0);
904 result = g_string_free (block, FALSE);
905 goto ret;
906 } /* sub case block */
907 } /* switch */
908 result = g_strdup ("% ");
909 result[1] = c;
910 ret:
911 g_free (fname);
912 return result;
915 /* --------------------------------------------------------------------------------------------- */
917 * If edit_widget is NULL then we are called from the mc menu,
918 * otherwise we are called from the mcedit menu.
921 gboolean
922 user_menu_cmd (struct WEdit * edit_widget, const char *menu_file, int selected_entry)
924 char *p;
925 char *data, **entries;
926 int max_cols, menu_lines, menu_limit;
927 int col, i, accept_entry = 1;
928 int selected, old_patterns;
929 Listbox *listbox;
930 gboolean res = FALSE;
931 gboolean interactive = TRUE;
933 if (!vfs_current_is_local ())
935 message (D_ERROR, MSG_ERROR, "%s", _("Cannot execute commands on non-local filesystems"));
936 return FALSE;
938 if (menu_file != NULL)
939 menu = g_strdup (menu_file);
940 else
941 menu = g_strdup (edit_widget ? EDIT_LOCAL_MENU : MC_LOCAL_MENU);
942 if (!exist_file (menu) || !menu_file_own (menu))
944 if (menu_file != NULL)
946 message (D_ERROR, MSG_ERROR, _("Cannot open file %s\n%s"), menu,
947 unix_error_string (errno));
948 g_free (menu);
949 menu = NULL;
950 return FALSE;
953 g_free (menu);
954 if (edit_widget)
955 menu = mc_config_get_full_path (EDIT_HOME_MENU);
956 else
957 menu = mc_config_get_full_path (MC_USERMENU_FILE);
960 if (!exist_file (menu))
962 g_free (menu);
963 menu =
964 mc_build_filename (mc_config_get_home_dir (),
965 edit_widget ? EDIT_GLOBAL_MENU : MC_GLOBAL_MENU, NULL);
966 if (!exist_file (menu))
968 g_free (menu);
969 menu =
970 mc_build_filename (mc_global.sysconfig_dir,
971 edit_widget ? EDIT_GLOBAL_MENU : MC_GLOBAL_MENU, NULL);
972 if (!exist_file (menu))
974 g_free (menu);
975 menu = mc_build_filename
976 (mc_global.share_data_dir, edit_widget ? EDIT_GLOBAL_MENU : MC_GLOBAL_MENU,
977 NULL);
983 if (!g_file_get_contents (menu, &data, NULL, NULL))
985 message (D_ERROR, MSG_ERROR, _("Cannot open file%s\n%s"), menu, unix_error_string (errno));
986 g_free (menu);
987 menu = NULL;
988 return FALSE;
991 max_cols = 0;
992 selected = 0;
993 menu_limit = 0;
994 entries = 0;
996 /* Parse the menu file */
997 old_patterns = easy_patterns;
998 p = check_patterns (data);
999 for (menu_lines = col = 0; *p; str_next_char (&p))
1001 if (menu_lines >= menu_limit)
1003 char **new_entries;
1005 menu_limit += MAX_ENTRIES;
1006 new_entries = g_try_realloc (entries, sizeof (new_entries[0]) * menu_limit);
1008 if (new_entries == NULL)
1009 break;
1011 entries = new_entries;
1012 new_entries += menu_limit;
1013 while (--new_entries >= &entries[menu_lines])
1014 *new_entries = NULL;
1016 if (col == 0 && !entries[menu_lines])
1018 if (*p == '#')
1020 /* show prompt if first line of external script is #interactive */
1021 if (selected_entry >= 0 && strncmp (p, "#silent", 7) == 0)
1022 interactive = FALSE;
1023 /* A commented menu entry */
1024 accept_entry = 1;
1026 else if (*p == '+')
1028 if (*(p + 1) == '=')
1030 /* Combined adding and default */
1031 p = test_line (edit_widget, p + 1, &accept_entry);
1032 if (selected == 0 && accept_entry)
1033 selected = menu_lines;
1035 else
1037 /* A condition for adding the entry */
1038 p = test_line (edit_widget, p, &accept_entry);
1041 else if (*p == '=')
1043 if (*(p + 1) == '+')
1045 /* Combined adding and default */
1046 p = test_line (edit_widget, p + 1, &accept_entry);
1047 if (selected == 0 && accept_entry)
1048 selected = menu_lines;
1050 else
1052 /* A condition for making the entry default */
1053 i = 1;
1054 p = test_line (edit_widget, p, &i);
1055 if (selected == 0 && i)
1056 selected = menu_lines;
1059 else if (*p != ' ' && *p != '\t' && str_isprint (p))
1061 /* A menu entry title line */
1062 if (accept_entry)
1063 entries[menu_lines] = p;
1064 else
1065 accept_entry = 1;
1068 if (*p == '\n')
1070 if (entries[menu_lines])
1072 menu_lines++;
1073 accept_entry = 1;
1075 max_cols = max (max_cols, col);
1076 col = 0;
1078 else
1080 if (*p == '\t')
1081 *p = ' ';
1082 col++;
1086 if (menu_lines == 0)
1088 message (D_ERROR, MSG_ERROR, _("No suitable entries found in %s"), menu);
1089 res = FALSE;
1091 else
1093 if (selected_entry >= 0)
1094 selected = selected_entry;
1095 else
1097 max_cols = min (max (max_cols, col), MAX_ENTRY_LEN);
1099 /* Create listbox */
1100 listbox = create_listbox_window (menu_lines, max_cols + 2, _("User menu"),
1101 "[Menu File Edit]");
1102 /* insert all the items found */
1103 for (i = 0; i < menu_lines; i++)
1105 p = entries[i];
1106 LISTBOX_APPEND_TEXT (listbox, (unsigned char) p[0],
1107 extract_line (p, p + MAX_ENTRY_LEN), p);
1109 /* Select the default entry */
1110 listbox_select_entry (listbox->list, selected);
1112 selected = run_listbox (listbox);
1114 if (selected >= 0)
1116 execute_menu_command (edit_widget, entries[selected], interactive);
1117 res = TRUE;
1120 do_refresh ();
1123 easy_patterns = old_patterns;
1124 g_free (menu);
1125 menu = NULL;
1126 g_free (entries);
1127 g_free (data);
1128 return res;
1131 /* --------------------------------------------------------------------------------------------- */