Ticket #1939: fix of panel state saving.
[pantumic.git] / src / filemanager / cmd.c
blob739a78a745e830e328648c07cb2efa19af142587
1 /* Routines invoked by a function key
2 They normally operate on the current panel.
4 Copyright (C) 1994, 1995, 1998, 1999, 2000, 2001, 2002, 2003, 2004,
5 2005, 2006, 2007, 2009 Free Software Foundation, Inc.
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2 of the License, or
10 (at your option) any later version.
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with this program; if not, write to the Free Software
19 Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */
21 /** \file cmd.c
22 * \brief Source: routines invoked by a function key
24 * They normally operate on the current panel.
27 #include <config.h>
29 #include <errno.h>
30 #include <stdio.h>
31 #include <string.h>
33 #include <sys/types.h>
34 #include <sys/stat.h>
35 #ifdef HAVE_MMAP
36 #include <sys/mman.h>
37 #endif
38 #ifdef ENABLE_VFS_NET
39 #include <netdb.h>
40 #endif
41 #include <unistd.h>
42 #include <stdlib.h>
43 #include <fcntl.h>
44 #include <pwd.h>
45 #include <grp.h>
46 #include <sys/time.h>
48 #include "lib/global.h"
50 #include "lib/tty/tty.h" /* LINES, tty_touch_screen() */
51 #include "lib/tty/key.h" /* ALT() macro */
52 #include "lib/tty/win.h" /* do_enter_ca_mode() */
53 #include "lib/mcconfig.h"
54 #include "lib/search.h"
55 #include "lib/filehighlight.h" /* MC_FHL_INI_FILE */
56 #include "lib/vfs/mc-vfs/vfs.h"
57 #include "lib/fileloc.h"
58 #include "lib/strutil.h"
59 #include "lib/util.h"
60 #include "lib/widget.h"
62 #include "src/subshell.h" /* use_subshell */
63 #include "src/consaver/cons.saver.h" /* console_flag */
64 #include "src/viewer/mcviewer.h"
65 #include "src/help.h" /* interactive_display() */
66 #include "src/setup.h"
67 #include "src/execute.h" /* toggle_panels() */
68 #include "src/history.h"
69 #include "src/keybind-defaults.h" /* CK_InputHistoryShow */
71 #ifdef USE_INTERNAL_EDIT
72 #include "src/editor/edit.h"
73 #endif
75 #ifdef USE_DIFF_VIEW
76 #include "src/diffviewer/ydiff.h"
77 #endif
79 #include "fileopctx.h"
80 #include "file.h" /* file operation routines */
81 #include "find.h" /* do_find() */
82 #include "hotlist.h" /* hotlist_cmd() */
83 #include "tree.h" /* tree_chdir() */
84 #include "midnight.h" /* change_panel() */
85 #include "usermenu.h" /* MC_GLOBAL_MENU */
86 #include "command.h" /* cmdline */
87 #include "layout.h" /* get_current_type() */
88 #include "ext.h" /* regex_command() */
89 #include "boxes.h" /* cd_dialog() */
90 #include "dir.h"
92 #include "cmd.h" /* Our definitions */
94 /*** global variables ****************************************************************************/
96 int select_flags = SELECT_MATCH_CASE | SELECT_SHELL_PATTERNS;
98 /*** file scope macro definitions ****************************************************************/
100 #ifndef MAP_FILE
101 #define MAP_FILE 0
102 #endif
104 /*** file scope type declarations ****************************************************************/
106 enum CompareMode
108 compare_quick, compare_size_only, compare_thourough
111 /*** file scope variables ************************************************************************/
113 #ifdef ENABLE_VFS_NET
114 static const char *machine_str = N_("Enter machine name (F1 for details):");
115 #endif /* ENABLE_VFS_NET */
117 /*** file scope functions ************************************************************************/
118 /* --------------------------------------------------------------------------------------------- */
120 /** scan_for_file (panel, idx, direction)
122 * Inputs:
123 * panel: pointer to the panel on which we operate
124 * idx: starting file.
125 * direction: 1, or -1
128 static int
129 scan_for_file (WPanel * panel, int idx, int direction)
131 int i = idx + direction;
133 while (i != idx)
135 if (i < 0)
136 i = panel->count - 1;
137 if (i == panel->count)
138 i = 0;
139 if (!S_ISDIR (panel->dir.list[i].st.st_mode))
140 return i;
141 i += direction;
143 return i;
146 /* --------------------------------------------------------------------------------------------- */
148 * Run viewer (internal or external) on the currently selected file.
149 * If normal is 1, force internal viewer and raw mode (used for F13).
151 static void
152 do_view_cmd (int normal)
154 /* Directories are viewed by changing to them */
155 if (S_ISDIR (selection (current_panel)->st.st_mode) || link_isdir (selection (current_panel)))
157 if (confirm_view_dir && (current_panel->marked || current_panel->dirs_marked))
159 if (query_dialog
160 (_("Confirmation"), _("Files tagged, want to cd?"), D_NORMAL, 2,
161 _("&Yes"), _("&No")) != 0)
163 return;
166 if (!do_cd (selection (current_panel)->fname, cd_exact))
167 message (D_ERROR, MSG_ERROR, _("Cannot change directory"));
169 else
171 int dir, file_idx;
172 char *filename;
174 file_idx = current_panel->selected;
175 while (1)
177 filename = current_panel->dir.list[file_idx].fname;
179 dir = view_file (filename, normal, use_internal_view);
180 if (dir == 0)
181 break;
182 file_idx = scan_for_file (current_panel, file_idx, dir);
186 repaint_screen ();
189 /* --------------------------------------------------------------------------------------------- */
191 static inline void
192 do_edit (const char *what)
194 do_edit_at_line (what, use_internal_edit, 0);
197 /* --------------------------------------------------------------------------------------------- */
199 static void
200 set_panel_filter_to (WPanel * p, char *allocated_filter_string)
202 g_free (p->filter);
203 p->filter = 0;
205 if (!(allocated_filter_string[0] == '*' && allocated_filter_string[1] == 0))
206 p->filter = allocated_filter_string;
207 else
208 g_free (allocated_filter_string);
209 reread_cmd ();
212 /* --------------------------------------------------------------------------------------------- */
213 /** Set a given panel filter expression */
215 static void
216 set_panel_filter (WPanel * p)
218 char *reg_exp;
219 const char *x;
221 x = p->filter ? p->filter : easy_patterns ? "*" : ".";
223 reg_exp = input_dialog_help (_("Filter"),
224 _("Set expression for filtering filenames"),
225 "[Filter...]", MC_HISTORY_FM_PANEL_FILTER, x);
226 if (!reg_exp)
227 return;
228 set_panel_filter_to (p, reg_exp);
231 /* --------------------------------------------------------------------------------------------- */
233 static void
234 select_unselect_cmd (const char *title, const char *history_name, gboolean do_select)
236 /* dialog sizes */
237 const int DX = 50;
238 const int DY = 7;
240 int files_only = (select_flags & SELECT_FILES_ONLY) != 0;
241 int case_sens = (select_flags & SELECT_MATCH_CASE) != 0;
242 int shell_patterns = (select_flags & SELECT_SHELL_PATTERNS) != 0;
244 char *reg_exp;
245 mc_search_t *search;
246 int i;
248 QuickWidget quick_widgets[] = {
249 QUICK_CHECKBOX (3, DX, DY - 3, DY, N_("&Using shell patterns"), &shell_patterns),
250 QUICK_CHECKBOX (DX / 2 + 1, DX, DY - 4, DY, N_("&Case sensitive"), &case_sens),
251 QUICK_CHECKBOX (3, DX, DY - 4, DY, N_("&Files only"), &files_only),
252 QUICK_INPUT (3, DX, DY - 5, DY, INPUT_LAST_TEXT, DX - 6, 0, history_name, &reg_exp),
253 QUICK_END
256 QuickDialog quick_dlg = {
257 DX, DY, -1, -1, title,
258 "[Select/Unselect Files]", quick_widgets, NULL, FALSE
261 if (quick_dialog (&quick_dlg) == B_CANCEL)
262 return;
264 if (!reg_exp)
265 return;
266 if (!*reg_exp)
268 g_free (reg_exp);
269 return;
271 search = mc_search_new (reg_exp, -1);
272 search->search_type = (shell_patterns != 0) ? MC_SEARCH_T_GLOB : MC_SEARCH_T_REGEX;
273 search->is_entire_line = TRUE;
274 search->is_case_sensitive = case_sens != 0;
276 for (i = 0; i < current_panel->count; i++)
278 if (strcmp (current_panel->dir.list[i].fname, "..") == 0)
279 continue;
280 if (S_ISDIR (current_panel->dir.list[i].st.st_mode) && files_only != 0)
281 continue;
283 if (mc_search_run (search, current_panel->dir.list[i].fname,
284 0, current_panel->dir.list[i].fnamelen, NULL))
285 do_file_mark (current_panel, i, do_select);
288 mc_search_free (search);
289 g_free (reg_exp);
291 /* result flags */
292 select_flags = 0;
293 if (case_sens != 0)
294 select_flags |= SELECT_MATCH_CASE;
295 if (files_only != 0)
296 select_flags |= SELECT_FILES_ONLY;
297 if (shell_patterns != 0)
298 select_flags |= SELECT_SHELL_PATTERNS;
301 /* --------------------------------------------------------------------------------------------- */
303 static int
304 compare_files (char *name1, char *name2, off_t size)
306 int file1, file2;
307 int result = -1; /* Different by default */
309 if (size == 0)
310 return 0;
312 file1 = open (name1, O_RDONLY);
313 if (file1 >= 0)
315 file2 = open (name2, O_RDONLY);
316 if (file2 >= 0)
318 #ifdef HAVE_MMAP
319 char *data1, *data2;
320 /* Ugly if jungle */
321 data1 = mmap (0, size, PROT_READ, MAP_FILE | MAP_PRIVATE, file1, 0);
322 if (data1 != (char *) -1)
324 data2 = mmap (0, size, PROT_READ, MAP_FILE | MAP_PRIVATE, file2, 0);
325 if (data2 != (char *) -1)
327 rotate_dash ();
328 result = memcmp (data1, data2, size);
329 munmap (data2, size);
331 munmap (data1, size);
333 #else
334 /* Don't have mmap() :( Even more ugly :) */
335 char buf1[BUFSIZ], buf2[BUFSIZ];
336 int n1, n2;
337 rotate_dash ();
340 while ((n1 = read (file1, buf1, BUFSIZ)) == -1 && errno == EINTR);
341 while ((n2 = read (file2, buf2, BUFSIZ)) == -1 && errno == EINTR);
343 while (n1 == n2 && n1 == BUFSIZ && !memcmp (buf1, buf2, BUFSIZ));
344 result = (n1 != n2) || memcmp (buf1, buf2, n1);
345 #endif /* !HAVE_MMAP */
346 close (file2);
348 close (file1);
350 return result;
353 /* --------------------------------------------------------------------------------------------- */
355 static void
356 compare_dir (WPanel * panel, WPanel * other, enum CompareMode mode)
358 int i, j;
359 char *src_name, *dst_name;
361 /* No marks by default */
362 panel->marked = 0;
363 panel->total = 0;
364 panel->dirs_marked = 0;
366 /* Handle all files in the panel */
367 for (i = 0; i < panel->count; i++)
369 file_entry *source = &panel->dir.list[i];
371 /* Default: unmarked */
372 file_mark (panel, i, 0);
374 /* Skip directories */
375 if (S_ISDIR (source->st.st_mode))
376 continue;
378 /* Search the corresponding entry from the other panel */
379 for (j = 0; j < other->count; j++)
381 if (strcmp (source->fname, other->dir.list[j].fname) == 0)
382 break;
384 if (j >= other->count)
385 /* Not found -> mark */
386 do_file_mark (panel, i, 1);
387 else
389 /* Found */
390 file_entry *target = &other->dir.list[j];
392 if (mode != compare_size_only)
394 /* Older version is not marked */
395 if (source->st.st_mtime < target->st.st_mtime)
396 continue;
399 /* Newer version with different size is marked */
400 if (source->st.st_size != target->st.st_size)
402 do_file_mark (panel, i, 1);
403 continue;
406 if (mode == compare_size_only)
407 continue;
409 if (mode == compare_quick)
411 /* Thorough compare off, compare only time stamps */
412 /* Mark newer version, don't mark version with the same date */
413 if (source->st.st_mtime > target->st.st_mtime)
415 do_file_mark (panel, i, 1);
417 continue;
420 /* Thorough compare on, do byte-by-byte comparison */
421 src_name = concat_dir_and_file (panel->cwd, source->fname);
422 dst_name = concat_dir_and_file (other->cwd, target->fname);
423 if (compare_files (src_name, dst_name, source->st.st_size))
424 do_file_mark (panel, i, 1);
425 g_free (src_name);
426 g_free (dst_name);
428 } /* for (i ...) */
431 /* --------------------------------------------------------------------------------------------- */
433 static void
434 do_link (link_type_t link_type, const char *fname)
436 char *dest = NULL, *src = NULL;
438 if (link_type == LINK_HARDLINK)
440 src = g_strdup_printf (_("Link %s to:"), str_trunc (fname, 46));
441 dest = input_expand_dialog (_("Link"), src, MC_HISTORY_FM_LINK, "");
442 if (!dest || !*dest)
443 goto cleanup;
444 save_cwds_stat ();
445 if (-1 == mc_link (fname, dest))
446 message (D_ERROR, MSG_ERROR, _("link: %s"), unix_error_string (errno));
448 else
450 char *s;
451 char *d;
453 /* suggest the full path for symlink, and either the full or
454 relative path to the file it points to */
455 s = concat_dir_and_file (current_panel->cwd, fname);
457 if (get_other_type () == view_listing)
458 d = concat_dir_and_file (other_panel->cwd, fname);
459 else
460 d = g_strdup (fname);
462 if (link_type == LINK_SYMLINK_RELATIVE)
463 s = diff_two_paths (other_panel->cwd, s);
465 symlink_dialog (s, d, &dest, &src);
466 g_free (d);
467 g_free (s);
469 if (!dest || !*dest || !src || !*src)
470 goto cleanup;
471 save_cwds_stat ();
472 if (-1 == mc_symlink (dest, src))
473 message (D_ERROR, MSG_ERROR, _("symlink: %s"), unix_error_string (errno));
476 update_panels (UP_OPTIMIZE, UP_KEEPSEL);
477 repaint_screen ();
479 cleanup:
480 g_free (src);
481 g_free (dest);
484 /* --------------------------------------------------------------------------------------------- */
486 #if defined(ENABLE_VFS_UNDELFS) || defined(ENABLE_VFS_NET)
487 static void
488 nice_cd (const char *text, const char *xtext, const char *help,
489 const char *history_name, const char *prefix, int to_home)
491 char *machine;
492 char *cd_path;
494 if (!SELECTED_IS_PANEL)
495 return;
497 machine = input_dialog_help (text, xtext, help, history_name, "");
498 if (!machine)
499 return;
501 to_home = 0; /* FIXME: how to solve going to home nicely? /~/ is
502 ugly as hell and leads to problems in vfs layer */
504 if (strncmp (prefix, machine, strlen (prefix)) == 0)
505 cd_path = g_strconcat (machine, to_home ? "/~/" : (char *) NULL, (char *) NULL);
506 else
507 cd_path = g_strconcat (prefix, machine, to_home ? "/~/" : (char *) NULL, (char *) NULL);
509 if (!do_panel_cd (MENU_PANEL, cd_path, cd_parse_command))
510 message (D_ERROR, MSG_ERROR, _("Cannot chdir to \"%s\""), cd_path);
511 g_free (cd_path);
512 g_free (machine);
514 #endif /* ENABLE_VFS_UNDELFS || ENABLE_VFS_NET */
516 /* --------------------------------------------------------------------------------------------- */
518 static void
519 configure_panel_listing (WPanel * p, int list_type, int use_msformat, char *user, char *status)
521 p->user_mini_status = use_msformat;
522 p->list_type = list_type;
524 if (list_type == list_user || use_msformat)
526 g_free (p->user_format);
527 p->user_format = user;
529 g_free (p->user_status_format[list_type]);
530 p->user_status_format[list_type] = status;
532 set_panel_formats (p);
534 else
536 g_free (user);
537 g_free (status);
540 set_panel_formats (p);
541 do_refresh ();
544 /* --------------------------------------------------------------------------------------------- */
546 static void
547 switch_to_listing (int panel_index)
549 if (get_display_type (panel_index) != view_listing)
550 set_display_type (panel_index, view_listing);
553 /* --------------------------------------------------------------------------------------------- */
554 /** Handle the tree internal listing modes switching */
556 static gboolean
557 set_basic_panel_listing_to (int panel_index, int listing_mode)
559 WPanel *p = (WPanel *) get_panel_widget (panel_index);
560 gboolean ok;
562 switch_to_listing (panel_index);
563 p->list_type = listing_mode;
565 ok = set_panel_formats (p) == 0;
567 if (ok)
568 do_refresh ();
570 return ok;
573 /* --------------------------------------------------------------------------------------------- */
574 /*** public functions ****************************************************************************/
575 /* --------------------------------------------------------------------------------------------- */
578 view_file_at_line (const char *filename, int plain_view, int internal, int start_line)
580 static const char *viewer = NULL;
581 int move_dir = 0;
583 if (plain_view)
585 int changed_hex_mode = 0;
586 int changed_nroff_flag = 0;
587 int changed_magic_flag = 0;
589 mcview_altered_hex_mode = 0;
590 mcview_altered_nroff_flag = 0;
591 mcview_altered_magic_flag = 0;
592 if (mcview_default_hex_mode)
593 changed_hex_mode = 1;
594 if (mcview_default_nroff_flag)
595 changed_nroff_flag = 1;
596 if (mcview_default_magic_flag)
597 changed_magic_flag = 1;
598 mcview_default_hex_mode = 0;
599 mcview_default_nroff_flag = 0;
600 mcview_default_magic_flag = 0;
602 switch (mcview_viewer (NULL, filename, start_line))
604 case MCVIEW_WANT_NEXT:
605 move_dir = 1;
606 break;
607 case MCVIEW_WANT_PREV:
608 move_dir = -1;
609 break;
610 default:
611 move_dir = 0;
614 if (changed_hex_mode && !mcview_altered_hex_mode)
615 mcview_default_hex_mode = 1;
616 if (changed_nroff_flag && !mcview_altered_nroff_flag)
617 mcview_default_nroff_flag = 1;
618 if (changed_magic_flag && !mcview_altered_magic_flag)
619 mcview_default_magic_flag = 1;
621 dialog_switch_process_pending ();
623 else if (internal)
625 char view_entry[BUF_TINY];
627 if (start_line != 0)
628 g_snprintf (view_entry, sizeof (view_entry), "View:%d", start_line);
629 else
630 strcpy (view_entry, "View");
632 if (regex_command (filename, view_entry, &move_dir) == 0)
634 switch (mcview_viewer (NULL, filename, start_line))
636 case MCVIEW_WANT_NEXT:
637 move_dir = 1;
638 break;
639 case MCVIEW_WANT_PREV:
640 move_dir = -1;
641 break;
642 default:
643 move_dir = 0;
646 dialog_switch_process_pending ();
649 else
651 if (viewer == NULL)
653 viewer = getenv ("VIEWER");
654 if (viewer == NULL)
655 viewer = getenv ("PAGER");
656 if (viewer == NULL)
657 viewer = "view";
660 execute_with_vfs_arg (viewer, filename);
663 return move_dir;
666 /* --------------------------------------------------------------------------------------------- */
667 /** view_file (filename, plain_view, internal)
669 * Inputs:
670 * filename: The file name to view
671 * plain_view: If set does not do any fancy pre-processing (no filtering) and
672 * always invokes the internal viewer.
673 * internal: If set uses the internal viewer, otherwise an external viewer.
677 view_file (const char *filename, int plain_view, int internal)
679 return view_file_at_line (filename, plain_view, internal, 0);
683 /* --------------------------------------------------------------------------------------------- */
684 /** Run user's preferred viewer on the currently selected file */
686 void
687 view_cmd (void)
689 do_view_cmd (0);
692 /* --------------------------------------------------------------------------------------------- */
693 /** Ask for file and run user's preferred viewer on it */
695 void
696 view_file_cmd (void)
698 char *filename;
700 filename =
701 input_expand_dialog (_("View file"), _("Filename:"),
702 MC_HISTORY_FM_VIEW_FILE, selection (current_panel)->fname);
703 if (!filename)
704 return;
706 view_file (filename, 0, use_internal_view);
707 g_free (filename);
710 /* --------------------------------------------------------------------------------------------- */
711 /** Run plain internal viewer on the currently selected file */
712 void
713 view_simple_cmd (void)
715 do_view_cmd (1);
718 /* --------------------------------------------------------------------------------------------- */
720 void
721 filtered_view_cmd (void)
723 char *command;
725 command =
726 input_dialog (_("Filtered view"),
727 _("Filter command and arguments:"),
728 MC_HISTORY_FM_FILTERED_VIEW, selection (current_panel)->fname);
730 if (command != NULL)
732 mcview_viewer (command, "", 0);
733 g_free (command);
734 dialog_switch_process_pending ();
738 /* --------------------------------------------------------------------------------------------- */
740 void
741 do_edit_at_line (const char *what, gboolean internal, int start_line)
743 static const char *editor = NULL;
745 #ifdef USE_INTERNAL_EDIT
746 if (internal)
747 edit_file (what, start_line);
748 else
749 #else
750 (void) start_line;
751 #endif /* USE_INTERNAL_EDIT */
753 if (editor == NULL)
755 editor = getenv ("EDITOR");
756 if (editor == NULL)
757 editor = get_default_editor ();
759 execute_with_vfs_arg (editor, what);
762 if (mc_run_mode == MC_RUN_FULL)
763 update_panels (UP_OPTIMIZE, UP_KEEPSEL);
765 #ifdef USE_INTERNAL_EDIT
766 if (use_internal_edit)
767 dialog_switch_process_pending ();
768 else
769 #endif /* USE_INTERNAL_EDIT */
770 repaint_screen ();
773 /* --------------------------------------------------------------------------------------------- */
775 void
776 edit_cmd (void)
778 if (regex_command (selection (current_panel)->fname, "Edit", NULL) == 0)
779 do_edit (selection (current_panel)->fname);
782 /* --------------------------------------------------------------------------------------------- */
784 #ifdef USE_INTERNAL_EDIT
785 void
786 edit_cmd_force_internal (void)
788 if (regex_command (selection (current_panel)->fname, "Edit", NULL) == 0)
789 do_edit_at_line (selection (current_panel)->fname, TRUE, 0);
791 #endif
793 /* --------------------------------------------------------------------------------------------- */
795 void
796 edit_cmd_new (void)
798 #if HAVE_CHARSET
799 source_codepage = default_source_codepage;
800 #endif
801 do_edit (NULL);
804 /* --------------------------------------------------------------------------------------------- */
805 /** Invoked by F5. Copy, default to the other panel. */
807 void
808 copy_cmd (void)
810 save_cwds_stat ();
811 if (panel_operate (current_panel, OP_COPY, FALSE))
813 update_panels (UP_OPTIMIZE, UP_KEEPSEL);
814 repaint_screen ();
818 /* --------------------------------------------------------------------------------------------- */
819 /** Invoked by F6. Move/rename, default to the other panel, ignore marks. */
821 void
822 rename_cmd (void)
824 save_cwds_stat ();
825 if (panel_operate (current_panel, OP_MOVE, FALSE))
827 update_panels (UP_OPTIMIZE, UP_KEEPSEL);
828 repaint_screen ();
832 /* --------------------------------------------------------------------------------------------- */
833 /** Invoked by F15. Copy, default to the same panel, ignore marks. */
835 void
836 copy_cmd_local (void)
838 save_cwds_stat ();
839 if (panel_operate (current_panel, OP_COPY, TRUE))
841 update_panels (UP_OPTIMIZE, UP_KEEPSEL);
842 repaint_screen ();
846 /* --------------------------------------------------------------------------------------------- */
847 /** Invoked by F16. Move/rename, default to the same panel. */
849 void
850 rename_cmd_local (void)
852 save_cwds_stat ();
853 if (panel_operate (current_panel, OP_MOVE, TRUE))
855 update_panels (UP_OPTIMIZE, UP_KEEPSEL);
856 repaint_screen ();
860 /* --------------------------------------------------------------------------------------------- */
862 void
863 mkdir_cmd (void)
865 char *dir, *absdir;
866 const char *name = "";
868 /* If 'on' then automatically fills name with current selected item name */
869 if (auto_fill_mkdir_name && strcmp (selection (current_panel)->fname, "..") != 0)
870 name = selection (current_panel)->fname;
872 dir =
873 input_expand_dialog (_("Create a new Directory"),
874 _("Enter directory name:"), MC_HISTORY_FM_MKDIR, name);
876 if (!dir)
877 return;
879 if (*dir)
881 if (dir[0] == '/' || dir[0] == '~')
882 absdir = g_strdup (dir);
883 else
884 absdir = concat_dir_and_file (current_panel->cwd, dir);
886 save_cwds_stat ();
887 if (my_mkdir (absdir, 0777) == 0)
889 update_panels (UP_OPTIMIZE, dir);
890 repaint_screen ();
891 select_item (current_panel);
893 else
895 message (D_ERROR, MSG_ERROR, "%s", unix_error_string (errno));
897 g_free (absdir);
899 g_free (dir);
902 /* --------------------------------------------------------------------------------------------- */
904 void
905 delete_cmd (void)
907 save_cwds_stat ();
909 if (panel_operate (current_panel, OP_DELETE, FALSE))
911 update_panels (UP_OPTIMIZE, UP_KEEPSEL);
912 repaint_screen ();
916 /* --------------------------------------------------------------------------------------------- */
917 /** Invoked by F18. Remove selected file, regardless of marked files. */
919 void
920 delete_cmd_local (void)
922 save_cwds_stat ();
924 if (panel_operate (current_panel, OP_DELETE, TRUE))
926 update_panels (UP_OPTIMIZE, UP_KEEPSEL);
927 repaint_screen ();
931 /* --------------------------------------------------------------------------------------------- */
933 void
934 find_cmd (void)
936 do_find ();
939 /* --------------------------------------------------------------------------------------------- */
940 /** Invoked from the left/right menus */
942 void
943 filter_cmd (void)
945 WPanel *p;
947 if (!SELECTED_IS_PANEL)
948 return;
950 p = MENU_PANEL;
951 set_panel_filter (p);
954 /* --------------------------------------------------------------------------------------------- */
956 void
957 reread_cmd (void)
959 int flag;
961 if (get_current_type () == view_listing && get_other_type () == view_listing)
962 flag = strcmp (current_panel->cwd, other_panel->cwd) ? UP_ONLY_CURRENT : 0;
963 else
964 flag = UP_ONLY_CURRENT;
966 update_panels (UP_RELOAD | flag, UP_KEEPSEL);
967 repaint_screen ();
970 /* --------------------------------------------------------------------------------------------- */
972 void
973 reverse_selection_cmd (void)
975 int i;
976 file_entry *file;
978 for (i = 0; i < current_panel->count; i++)
980 file = &current_panel->dir.list[i];
981 if (!panels_options.reverse_files_only || !S_ISDIR (file->st.st_mode))
982 do_file_mark (current_panel, i, !file->f.marked);
986 /* --------------------------------------------------------------------------------------------- */
988 void
989 select_cmd (void)
991 select_unselect_cmd (_("Select"), ":select_cmd: Select ", TRUE);
994 /* --------------------------------------------------------------------------------------------- */
996 void
997 unselect_cmd (void)
999 select_unselect_cmd (_("Unselect"), ":unselect_cmd: Unselect ", FALSE);
1002 /* --------------------------------------------------------------------------------------------- */
1004 void
1005 ext_cmd (void)
1007 char *buffer;
1008 char *extdir;
1009 int dir;
1011 dir = 0;
1012 if (geteuid () == 0)
1014 dir = query_dialog (_("Extension file edit"),
1015 _("Which extension file you want to edit?"), D_NORMAL, 2,
1016 _("&User"), _("&System Wide"));
1018 extdir = concat_dir_and_file (mc_home, MC_LIB_EXT);
1020 if (dir == 0)
1022 buffer = g_build_filename (home_dir, MC_USERCONF_DIR, MC_FILEBIND_FILE, NULL);
1023 check_for_default (extdir, buffer);
1024 do_edit (buffer);
1025 g_free (buffer);
1027 else if (dir == 1)
1029 if (!exist_file (extdir))
1031 g_free (extdir);
1032 extdir = concat_dir_and_file (mc_home_alt, MC_LIB_EXT);
1034 do_edit (extdir);
1036 g_free (extdir);
1037 flush_extension_file ();
1040 /* --------------------------------------------------------------------------------------------- */
1041 /** edit file menu for mc */
1043 void
1044 edit_mc_menu_cmd (void)
1046 char *buffer;
1047 char *menufile;
1048 int dir = 0;
1050 dir = query_dialog (_("Menu edit"),
1051 _("Which menu file do you want to edit?"),
1052 D_NORMAL, geteuid ()? 2 : 3, _("&Local"), _("&User"), _("&System Wide"));
1054 menufile = concat_dir_and_file (mc_home, MC_GLOBAL_MENU);
1056 if (!exist_file (menufile))
1058 g_free (menufile);
1059 menufile = concat_dir_and_file (mc_home_alt, MC_GLOBAL_MENU);
1062 switch (dir)
1064 case 0:
1065 buffer = g_strdup (MC_LOCAL_MENU);
1066 check_for_default (menufile, buffer);
1067 chmod (buffer, 0600);
1068 break;
1070 case 1:
1071 buffer = g_build_filename (home_dir, MC_USERCONF_DIR, MC_USERMENU_FILE, NULL);
1072 check_for_default (menufile, buffer);
1073 break;
1075 case 2:
1076 buffer = concat_dir_and_file (mc_home, MC_GLOBAL_MENU);
1077 if (!exist_file (buffer))
1079 g_free (buffer);
1080 buffer = concat_dir_and_file (mc_home_alt, MC_GLOBAL_MENU);
1082 break;
1084 default:
1085 g_free (menufile);
1086 return;
1089 do_edit (buffer);
1091 g_free (buffer);
1092 g_free (menufile);
1095 /* --------------------------------------------------------------------------------------------- */
1097 void
1098 edit_fhl_cmd (void)
1100 char *buffer = NULL;
1101 char *fhlfile = NULL;
1103 int dir;
1105 dir = 0;
1106 if (geteuid () == 0)
1108 dir = query_dialog (_("Highlighting groups file edit"),
1109 _("Which highlighting file you want to edit?"), D_NORMAL, 2,
1110 _("&User"), _("&System Wide"));
1112 fhlfile = concat_dir_and_file (mc_home, MC_FHL_INI_FILE);
1114 if (dir == 0)
1116 buffer = g_build_filename (home_dir, MC_USERCONF_DIR, MC_FHL_INI_FILE, NULL);
1117 check_for_default (fhlfile, buffer);
1118 do_edit (buffer);
1119 g_free (buffer);
1121 else if (dir == 1)
1123 if (!exist_file (fhlfile))
1125 g_free (fhlfile);
1126 fhlfile = concat_dir_and_file (mc_home, MC_FHL_INI_FILE);
1128 do_edit (fhlfile);
1130 g_free (fhlfile);
1132 /* refresh highlighting rules */
1133 mc_fhl_free (&mc_filehighlight);
1134 mc_filehighlight = mc_fhl_new (TRUE);
1137 /* --------------------------------------------------------------------------------------------- */
1139 void
1140 quick_chdir_cmd (void)
1142 char *target;
1144 target = hotlist_cmd (LIST_HOTLIST);
1145 if (!target)
1146 return;
1148 if (get_current_type () == view_tree)
1149 tree_chdir (the_tree, target);
1150 else
1152 char *cmd = g_strconcat ("cd ", target, (char *) NULL);
1153 do_cd_command (cmd);
1154 g_free (cmd);
1156 g_free (target);
1159 #ifdef ENABLE_VFS
1160 void
1161 reselect_vfs (void)
1163 char *target;
1165 target = hotlist_cmd (LIST_VFSLIST);
1166 if (!target)
1167 return;
1169 if (!do_cd (target, cd_exact))
1170 message (D_ERROR, MSG_ERROR, _("Cannot change directory"));
1171 g_free (target);
1173 #endif /* ENABLE_VFS */
1175 /* --------------------------------------------------------------------------------------------- */
1177 void
1178 compare_dirs_cmd (void)
1180 int choice;
1181 enum CompareMode thorough_flag;
1183 choice =
1184 query_dialog (_("Compare directories"),
1185 _("Select compare method:"), D_NORMAL, 4,
1186 _("&Quick"), _("&Size only"), _("&Thorough"), _("&Cancel"));
1188 if (choice < 0 || choice > 2)
1189 return;
1191 thorough_flag = choice;
1193 if (get_current_type () == view_listing && get_other_type () == view_listing)
1195 compare_dir (current_panel, other_panel, thorough_flag);
1196 compare_dir (other_panel, current_panel, thorough_flag);
1198 else
1200 message (D_ERROR, MSG_ERROR,
1201 _("Both panels should be in the listing mode\nto use this command"));
1205 /* --------------------------------------------------------------------------------------------- */
1207 #ifdef USE_DIFF_VIEW
1208 void
1209 diff_view_cmd (void)
1211 dview_diff_cmd ();
1213 if (mc_run_mode == MC_RUN_FULL)
1214 update_panels (UP_OPTIMIZE, UP_KEEPSEL);
1216 dialog_switch_process_pending ();
1218 #endif
1220 /* --------------------------------------------------------------------------------------------- */
1222 void
1223 history_cmd (void)
1225 /* show the history of command line widget */
1226 send_message (&cmdline->widget, WIDGET_COMMAND, CK_InputHistoryShow);
1229 /* --------------------------------------------------------------------------------------------- */
1231 void
1232 swap_cmd (void)
1234 swap_panels ();
1235 tty_touch_screen ();
1236 repaint_screen ();
1239 /* --------------------------------------------------------------------------------------------- */
1241 void
1242 view_other_cmd (void)
1244 static int message_flag = TRUE;
1246 if (!xterm_flag && !console_flag && !use_subshell && !output_starts_shell)
1248 if (message_flag)
1249 message (D_ERROR, MSG_ERROR,
1250 _("Not an xterm or Linux console;\nthe panels cannot be toggled."));
1251 message_flag = FALSE;
1253 else
1255 toggle_panels ();
1259 /* --------------------------------------------------------------------------------------------- */
1261 void
1262 link_cmd (link_type_t link_type)
1264 char *filename = selection (current_panel)->fname;
1266 if (filename != NULL)
1267 do_link (link_type, filename);
1270 /* --------------------------------------------------------------------------------------------- */
1272 void
1273 edit_symlink_cmd (void)
1275 if (S_ISLNK (selection (current_panel)->st.st_mode))
1277 char buffer[MC_MAXPATHLEN];
1278 char *p = NULL;
1279 int i;
1280 char *dest, *q;
1282 p = selection (current_panel)->fname;
1284 q = g_strdup_printf (_("Symlink `%s\' points to:"), str_trunc (p, 32));
1286 i = readlink (p, buffer, MC_MAXPATHLEN - 1);
1287 if (i > 0)
1289 buffer[i] = 0;
1290 dest = input_expand_dialog (_("Edit symlink"), q, MC_HISTORY_FM_EDIT_LINK, buffer);
1291 if (dest)
1293 if (*dest && strcmp (buffer, dest))
1295 save_cwds_stat ();
1296 if (-1 == mc_unlink (p))
1298 message (D_ERROR, MSG_ERROR, _("edit symlink, unable to remove %s: %s"),
1299 p, unix_error_string (errno));
1301 else
1303 if (-1 == mc_symlink (dest, p))
1304 message (D_ERROR, MSG_ERROR, _("edit symlink: %s"),
1305 unix_error_string (errno));
1307 update_panels (UP_OPTIMIZE, UP_KEEPSEL);
1308 repaint_screen ();
1310 g_free (dest);
1313 g_free (q);
1315 else
1317 message (D_ERROR, MSG_ERROR, _("`%s' is not a symbolic link"),
1318 selection (current_panel)->fname);
1322 /* --------------------------------------------------------------------------------------------- */
1324 void
1325 help_cmd (void)
1327 if (current_panel->searching)
1328 interactive_display (NULL, "[Quick search]");
1329 else
1330 interactive_display (NULL, "[main]");
1333 /* --------------------------------------------------------------------------------------------- */
1335 void
1336 user_file_menu_cmd (void)
1338 user_menu_cmd (NULL);
1341 /* --------------------------------------------------------------------------------------------- */
1343 * Return a random hint. If force is not 0, ignore the timeout.
1346 char *
1347 get_random_hint (int force)
1349 char *data, *result = NULL, *eol;
1350 int len;
1351 int start;
1352 static int last_sec;
1353 static struct timeval tv;
1354 GIConv conv;
1355 GString *buffer;
1357 /* Do not change hints more often than one minute */
1358 gettimeofday (&tv, NULL);
1359 if (!force && !(tv.tv_sec > last_sec + 60))
1360 return g_strdup ("");
1361 last_sec = tv.tv_sec;
1363 data = load_mc_home_file (mc_home_alt, MC_HINT, NULL);
1364 if (data == NULL)
1365 return NULL;
1367 /* get a random entry */
1368 srand (tv.tv_sec);
1369 len = strlen (data);
1370 start = rand () % len;
1372 for (; start != 0; start--)
1373 if (data[start] == '\n')
1375 start++;
1376 break;
1379 eol = strchr (data + start, '\n');
1380 if (eol != NULL)
1381 *eol = '\0';
1383 /* hint files are stored in utf-8 */
1384 /* try convert hint file from utf-8 to terminal encoding */
1385 conv = str_crt_conv_from ("UTF-8");
1386 if (conv != INVALID_CONV)
1388 buffer = g_string_new ("");
1389 if (str_convert (conv, &data[start], buffer) != ESTR_FAILURE)
1390 result = g_strdup (buffer->str);
1391 g_string_free (buffer, TRUE);
1392 str_close_conv (conv);
1395 g_free (data);
1396 return result;
1399 /* --------------------------------------------------------------------------------------------- */
1401 #ifdef ENABLE_VFS_NET
1402 #ifdef ENABLE_VFS_FTP
1403 void
1404 ftplink_cmd (void)
1406 nice_cd (_("FTP to machine"), _(machine_str),
1407 "[FTP File System]", ":ftplink_cmd: FTP to machine ", "/#ftp:", 1);
1409 #endif /* ENABLE_VFS_FTP */
1411 /* --------------------------------------------------------------------------------------------- */
1413 #ifdef ENABLE_VFS_FISH
1414 void
1415 fishlink_cmd (void)
1417 nice_cd (_("Shell link to machine"), _(machine_str),
1418 "[FIle transfer over SHell filesystem]", ":fishlink_cmd: Shell link to machine ",
1419 "/#sh:", 1);
1421 #endif /* ENABLE_VFS_FISH */
1423 /* --------------------------------------------------------------------------------------------- */
1425 #ifdef ENABLE_VFS_SMB
1426 void
1427 smblink_cmd (void)
1429 nice_cd (_("SMB link to machine"), _(machine_str),
1430 "[SMB File System]", ":smblink_cmd: SMB link to machine ", "/#smb:", 0);
1432 #endif /* ENABLE_VFS_SMB */
1433 #endif /* ENABLE_VFS_NET */
1435 /* --------------------------------------------------------------------------------------------- */
1437 #ifdef ENABLE_VFS_UNDELFS
1438 void
1439 undelete_cmd (void)
1441 nice_cd (_("Undelete files on an ext2 file system"),
1442 _("Enter device (without /dev/) to undelete\nfiles on: (F1 for details)"),
1443 "[Undelete File System]", ":undelete_cmd: Undel on ext2 fs ", "/#undel:", 0);
1445 #endif /* ENABLE_VFS_UNDELFS */
1447 /* --------------------------------------------------------------------------------------------- */
1449 void
1450 quick_cd_cmd (void)
1452 char *p = cd_dialog ();
1454 if (p && *p)
1456 char *q = g_strconcat ("cd ", p, (char *) NULL);
1458 do_cd_command (q);
1459 g_free (q);
1461 g_free (p);
1464 /* --------------------------------------------------------------------------------------------- */
1466 \brief calculate dirs sizes
1468 calculate dirs sizes and resort panel:
1469 dirs_selected = show size for selected dirs,
1470 otherwise = show size for dir under cursor:
1471 dir under cursor ".." = show size for all dirs,
1472 otherwise = show size for dir under cursor
1475 void
1476 smart_dirsize_cmd (void)
1478 WPanel *panel = current_panel;
1479 file_entry *entry;
1481 entry = &(panel->dir.list[panel->selected]);
1482 if ((S_ISDIR (entry->st.st_mode) && (strcmp (entry->fname, "..") == 0)) || panel->dirs_marked)
1483 dirsizes_cmd ();
1484 else
1485 single_dirsize_cmd ();
1488 /* --------------------------------------------------------------------------------------------- */
1490 void
1491 single_dirsize_cmd (void)
1493 WPanel *panel = current_panel;
1494 file_entry *entry;
1496 entry = &(panel->dir.list[panel->selected]);
1497 if (S_ISDIR (entry->st.st_mode) && strcmp (entry->fname, "..") != 0)
1499 size_t marked = 0;
1500 uintmax_t total = 0;
1501 ComputeDirSizeUI *ui;
1503 ui = compute_dir_size_create_ui ();
1505 if (compute_dir_size (entry->fname, ui, compute_dir_size_update_ui,
1506 &marked, &total, TRUE) == FILE_CONT)
1508 entry->st.st_size = (off_t) total;
1509 entry->f.dir_size_computed = 1;
1512 compute_dir_size_destroy_ui (ui);
1515 if (panels_options.mark_moves_down)
1516 send_message (&panel->widget, WIDGET_KEY, KEY_DOWN);
1518 recalculate_panel_summary (panel);
1520 if (current_panel->current_sort_field->sort_routine == (sortfn *) sort_size)
1521 panel_re_sort (panel);
1523 panel->dirty = 1;
1526 /* --------------------------------------------------------------------------------------------- */
1528 void
1529 dirsizes_cmd (void)
1531 WPanel *panel = current_panel;
1532 int i;
1533 ComputeDirSizeUI *ui;
1535 ui = compute_dir_size_create_ui ();
1537 for (i = 0; i < panel->count; i++)
1538 if (S_ISDIR (panel->dir.list[i].st.st_mode)
1539 && ((panel->dirs_marked && panel->dir.list[i].f.marked)
1540 || !panel->dirs_marked) && strcmp (panel->dir.list[i].fname, "..") != 0)
1542 size_t marked = 0;
1543 uintmax_t total = 0;
1545 if (compute_dir_size (panel->dir.list[i].fname,
1546 ui, compute_dir_size_update_ui, &marked, &total,
1547 TRUE) != FILE_CONT)
1548 break;
1550 panel->dir.list[i].st.st_size = (off_t) total;
1551 panel->dir.list[i].f.dir_size_computed = 1;
1554 compute_dir_size_destroy_ui (ui);
1556 recalculate_panel_summary (panel);
1558 if (current_panel->current_sort_field->sort_routine == (sortfn *) sort_size)
1559 panel_re_sort (panel);
1561 panel->dirty = 1;
1564 /* --------------------------------------------------------------------------------------------- */
1566 void
1567 save_setup_cmd (void)
1569 if (save_setup (TRUE, TRUE))
1570 message (D_NORMAL, _("Setup"), _("Setup saved to ~/%s"),
1571 MC_USERCONF_DIR PATH_SEP_STR MC_CONFIG_FILE);
1574 /* --------------------------------------------------------------------------------------------- */
1576 void
1577 info_cmd_no_menu (void)
1579 if (get_display_type (0) == view_info)
1580 set_display_type (0, view_listing);
1581 else if (get_display_type (1) == view_info)
1582 set_display_type (1, view_listing);
1583 else
1584 set_display_type (current_panel == left_panel ? 1 : 0, view_info);
1587 /* --------------------------------------------------------------------------------------------- */
1589 void
1590 quick_cmd_no_menu (void)
1592 if (get_display_type (0) == view_quick)
1593 set_display_type (0, view_listing);
1594 else if (get_display_type (1) == view_quick)
1595 set_display_type (1, view_listing);
1596 else
1597 set_display_type (current_panel == left_panel ? 1 : 0, view_quick);
1600 /* --------------------------------------------------------------------------------------------- */
1602 void
1603 listing_cmd (void)
1605 switch_to_listing (MENU_PANEL_IDX);
1608 /* --------------------------------------------------------------------------------------------- */
1610 void
1611 change_listing_cmd (void)
1613 int list_type;
1614 int use_msformat;
1615 char *user, *status;
1616 WPanel *p = NULL;
1618 if (get_display_type (MENU_PANEL_IDX) == view_listing)
1619 p = MENU_PANEL_IDX == 0 ? left_panel : right_panel;
1621 list_type = display_box (p, &user, &status, &use_msformat, MENU_PANEL_IDX);
1623 if (list_type != -1)
1625 switch_to_listing (MENU_PANEL_IDX);
1626 p = MENU_PANEL_IDX == 0 ? left_panel : right_panel;
1627 configure_panel_listing (p, list_type, use_msformat, user, status);
1631 /* --------------------------------------------------------------------------------------------- */
1633 void
1634 tree_cmd (void)
1636 set_display_type (MENU_PANEL_IDX, view_tree);
1639 /* --------------------------------------------------------------------------------------------- */
1641 void
1642 info_cmd (void)
1644 set_display_type (MENU_PANEL_IDX, view_info);
1647 /* --------------------------------------------------------------------------------------------- */
1649 void
1650 quick_view_cmd (void)
1652 if ((WPanel *) get_panel_widget (MENU_PANEL_IDX) == current_panel)
1653 change_panel ();
1654 set_display_type (MENU_PANEL_IDX, view_quick);
1657 /* --------------------------------------------------------------------------------------------- */
1659 void
1660 toggle_listing_cmd (void)
1662 int current = get_current_index ();
1663 WPanel *p = (WPanel *) get_panel_widget (current);
1665 set_basic_panel_listing_to (current, (p->list_type + 1) % LIST_TYPES);
1668 /* --------------------------------------------------------------------------------------------- */
1670 void
1671 encoding_cmd (void)
1673 if (SELECTED_IS_PANEL)
1674 panel_change_encoding (MENU_PANEL);
1677 /* --------------------------------------------------------------------------------------------- */