bd23b2d9fd5a445a1b437af595d37b9c3292ec52
[midnight-commander.git] / src / filemanager / panelize.c
blobbd23b2d9fd5a445a1b437af595d37b9c3292ec52
1 /*
2 External panelize
4 Copyright (C) 1995, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005,
5 2007, 2009, 2011
6 The Free Software Foundation, Inc.
8 Written by:
9 Janne Kukonlehto, 1995
10 Jakub Jelinek, 1995
12 This file is part of the Midnight Commander.
14 The Midnight Commander is free software: you can redistribute it
15 and/or modify it under the terms of the GNU General Public License as
16 published by the Free Software Foundation, either version 3 of the License,
17 or (at your option) any later version.
19 The Midnight Commander is distributed in the hope that it will be useful,
20 but WITHOUT ANY WARRANTY; without even the implied warranty of
21 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
22 GNU General Public License for more details.
24 You should have received a copy of the GNU General Public License
25 along with this program. If not, see <http://www.gnu.org/licenses/>.
28 /** \file panelize.c
29 * \brief Source: External panelization module
32 #include <config.h>
34 #include <errno.h>
35 #include <stdio.h>
36 #include <string.h>
37 #include <sys/types.h>
38 #include <sys/stat.h>
39 #include <unistd.h>
41 #include "lib/global.h"
43 #include "lib/skin.h"
44 #include "lib/vfs/vfs.h"
45 #include "lib/mcconfig.h" /* Load/save directories panelize */
46 #include "lib/strutil.h"
47 #include "lib/util.h"
48 #include "lib/widget.h"
50 #include "src/setup.h" /* For profile_bname */
51 #include "src/history.h"
53 #include "dir.h"
54 #include "midnight.h" /* current_panel */
55 #include "panel.h" /* WPanel */
57 #include "panelize.h"
58 #include "panel.h"
60 /*** global variables ****************************************************************************/
62 /*** file scope macro definitions ****************************************************************/
64 #define UX 3
65 #define UY 2
67 #define LABELS 3
68 #define B_ADD B_USER
69 #define B_REMOVE (B_USER + 1)
71 /*** file scope type declarations ****************************************************************/
73 /*** file scope variables ************************************************************************/
75 static WListbox *l_panelize;
76 static WDialog *panelize_dlg;
77 static int last_listitem;
78 static WInput *pname;
80 static const char *panelize_section = "Panelize";
82 /* Directory panelize */
83 static struct panelize
85 char *command;
86 char *label;
87 struct panelize *next;
88 } *panelize = NULL;
90 /* --------------------------------------------------------------------------------------------- */
91 /*** file scope functions ************************************************************************/
92 /* --------------------------------------------------------------------------------------------- */
94 static void
95 update_command (void)
97 if (l_panelize->pos != last_listitem)
99 struct panelize *data = NULL;
101 last_listitem = l_panelize->pos;
102 listbox_get_current (l_panelize, NULL, (void **) &data);
103 input_assign_text (pname, data->command);
104 pname->point = 0;
105 input_update (pname, TRUE);
109 /* --------------------------------------------------------------------------------------------- */
111 static cb_ret_t
112 panelize_callback (Widget * w, Widget * sender, widget_msg_t msg, int parm, void *data)
114 switch (msg)
116 case MSG_INIT:
117 case MSG_POST_KEY:
118 case MSG_FOCUS:
119 tty_setcolor (MENU_ENTRY_COLOR);
120 update_command ();
121 return MSG_HANDLED;
123 default:
124 return dlg_default_callback (w, sender, msg, parm, data);
128 /* --------------------------------------------------------------------------------------------- */
130 static void
131 init_panelize (void)
133 struct
135 int ret_cmd;
136 button_flags_t flags;
137 const char *text;
138 } panelize_but[] =
140 /* *INDENT-OFF* */
141 { B_ENTER, DEFPUSH_BUTTON, N_("Pane&lize") },
142 { B_REMOVE, NORMAL_BUTTON, N_("&Remove") },
143 { B_ADD, NORMAL_BUTTON, N_("&Add new") },
144 { B_CANCEL, NORMAL_BUTTON, N_("&Cancel") }
145 /* *INDENT-ON* */
148 size_t i;
149 int blen;
150 int panelize_cols;
151 struct panelize *current;
152 int x, y;
154 last_listitem = 0;
156 do_refresh ();
158 i = G_N_ELEMENTS (panelize_but);
159 blen = i - 1; /* gaps between buttons */
160 while (i-- != 0)
162 panelize_but[i].text = _(panelize_but[i].text);
163 blen += str_term_width1 (panelize_but[i].text) + 3 + 1;
164 if (panelize_but[i].flags == DEFPUSH_BUTTON)
165 blen += 2;
168 panelize_cols = COLS - 6;
169 panelize_cols = max (panelize_cols, blen + 4);
171 panelize_dlg =
172 create_dlg (TRUE, 0, 0, 20, panelize_cols, dialog_colors, panelize_callback, NULL,
173 "[External panelize]", _("External panelize"), DLG_CENTER);
175 /* add listbox to the dialogs */
176 y = UY;
177 add_widget (panelize_dlg, groupbox_new (y++, UX, 12, panelize_cols - UX * 2, ""));
179 l_panelize = listbox_new (y, UX + 1, 10, panelize_cols - UX * 2 - 2, FALSE, NULL);
180 for (current = panelize; current != NULL; current = current->next)
181 listbox_add_item (l_panelize, LISTBOX_APPEND_AT_END, 0, current->label, current);
182 listbox_select_entry (l_panelize, listbox_search_text (l_panelize, _("Other command")));
183 add_widget (panelize_dlg, l_panelize);
185 y += WIDGET (l_panelize)->lines + 1;
186 add_widget (panelize_dlg, label_new (y++, UX, _("Command")));
187 pname =
188 input_new (y++, UX, input_get_default_colors (), panelize_cols - UX * 2, "", "in",
189 INPUT_COMPLETE_DEFAULT);
190 add_widget (panelize_dlg, pname);
192 add_widget (panelize_dlg, hline_new (y++, -1, -1));
194 x = (panelize_cols - blen) / 2;
195 for (i = 0; i < G_N_ELEMENTS (panelize_but); i++)
197 WButton *b;
199 b = button_new (y, x,
200 panelize_but[i].ret_cmd, panelize_but[i].flags, panelize_but[i].text, NULL);
201 add_widget (panelize_dlg, b);
203 x += button_get_len (b) + 1;
206 dlg_select_widget (l_panelize);
209 /* --------------------------------------------------------------------------------------------- */
211 static void
212 panelize_done (void)
214 destroy_dlg (panelize_dlg);
215 repaint_screen ();
218 /* --------------------------------------------------------------------------------------------- */
220 static void
221 add2panelize (char *label, char *command)
223 struct panelize *current, *old;
225 old = NULL;
226 current = panelize;
227 while (current && strcmp (current->label, label) <= 0)
229 old = current;
230 current = current->next;
233 if (old == NULL)
235 panelize = g_new (struct panelize, 1);
236 panelize->label = label;
237 panelize->command = command;
238 panelize->next = current;
240 else
242 struct panelize *new;
243 new = g_new (struct panelize, 1);
244 new->label = label;
245 new->command = command;
246 old->next = new;
247 new->next = current;
251 /* --------------------------------------------------------------------------------------------- */
253 static void
254 add2panelize_cmd (void)
256 char *label;
258 if (pname->buffer && (*pname->buffer))
260 label = input_dialog (_("Add to external panelize"),
261 _("Enter command label:"), MC_HISTORY_FM_PANELIZE_ADD, "");
262 if (!label)
263 return;
264 if (!*label)
266 g_free (label);
267 return;
270 add2panelize (label, g_strdup (pname->buffer));
274 /* --------------------------------------------------------------------------------------------- */
276 static void
277 remove_from_panelize (struct panelize *entry)
279 if (strcmp (entry->label, _("Other command")) != 0)
281 if (entry == panelize)
283 panelize = panelize->next;
285 else
287 struct panelize *current = panelize;
288 while (current && current->next != entry)
289 current = current->next;
290 if (current)
292 current->next = entry->next;
296 g_free (entry->label);
297 g_free (entry->command);
298 g_free (entry);
302 /* --------------------------------------------------------------------------------------------- */
304 static void
305 do_external_panelize (char *command)
307 int status, link_to_dir, stale_link;
308 int next_free = 0;
309 struct stat st;
310 dir_list *list = &current_panel->dir;
311 char line[MC_MAXPATHLEN];
312 char *name;
313 FILE *external;
315 open_error_pipe ();
316 external = popen (command, "r");
317 if (!external)
319 close_error_pipe (D_ERROR, _("Cannot invoke command."));
320 return;
322 /* Clear the counters and the directory list */
323 panel_clean_dir (current_panel);
325 panelize_change_root (current_panel->cwd_vpath);
327 if (set_zero_dir (list))
328 next_free++;
330 while (1)
332 clearerr (external);
333 if (fgets (line, MC_MAXPATHLEN, external) == NULL)
335 if (ferror (external) && errno == EINTR)
336 continue;
337 else
338 break;
340 if (line[strlen (line) - 1] == '\n')
341 line[strlen (line) - 1] = 0;
342 if (strlen (line) < 1)
343 continue;
344 if (line[0] == '.' && line[1] == PATH_SEP)
345 name = line + 2;
346 else
347 name = line;
348 status = handle_path (list, name, &st, next_free, &link_to_dir, &stale_link);
349 if (status == 0)
350 continue;
351 if (status == -1)
352 break;
353 list->list[next_free].fnamelen = strlen (name);
354 list->list[next_free].fname = g_strndup (name, list->list[next_free].fnamelen);
355 file_mark (current_panel, next_free, 0);
356 list->list[next_free].f.link_to_dir = link_to_dir;
357 list->list[next_free].f.stale_link = stale_link;
358 list->list[next_free].f.dir_size_computed = 0;
359 list->list[next_free].st = st;
360 list->list[next_free].sort_key = NULL;
361 list->list[next_free].second_sort_key = NULL;
362 next_free++;
363 if (!(next_free & 32))
364 rotate_dash ();
367 current_panel->is_panelized = TRUE;
368 if (next_free)
370 current_panel->count = next_free;
371 if (list->list[0].fname[0] == PATH_SEP)
373 int ret;
374 panel_set_cwd (current_panel, PATH_SEP_STR);
375 ret = chdir (PATH_SEP_STR);
378 else
380 current_panel->count = set_zero_dir (list) ? 1 : 0;
382 if (pclose (external) < 0)
383 message (D_NORMAL, _("External panelize"), _("Pipe close failed"));
384 close_error_pipe (D_NORMAL, NULL);
385 try_to_select (current_panel, NULL);
386 panel_re_sort (current_panel);
389 /* --------------------------------------------------------------------------------------------- */
391 static void
392 do_panelize_cd (struct WPanel *panel)
394 int i;
395 dir_list *list = &panel->dir;
396 gboolean panelized_same;
398 clean_dir (list, panel->count);
399 if (panelized_panel.root_vpath == NULL)
400 panelize_change_root (current_panel->cwd_vpath);
402 if (panelized_panel.count < 1)
404 if (set_zero_dir (&panelized_panel.list))
405 panelized_panel.count = 1;
407 else if (panelized_panel.count >= list->size)
409 list->list = g_try_realloc (list->list, sizeof (file_entry) * panelized_panel.count);
410 list->size = panelized_panel.count;
412 panel->count = panelized_panel.count;
413 panel->is_panelized = TRUE;
415 panelized_same = (vfs_path_cmp (panelized_panel.root_vpath, panel->cwd_vpath) == 0);
417 for (i = 0; i < panelized_panel.count; i++)
419 if (panelized_same
420 || (panelized_panel.list.list[i].fname[0] == '.'
421 && panelized_panel.list.list[i].fname[1] == '.'
422 && panelized_panel.list.list[i].fname[2] == '\0'))
424 list->list[i].fnamelen = panelized_panel.list.list[i].fnamelen;
425 list->list[i].fname = g_strndup (panelized_panel.list.list[i].fname,
426 panelized_panel.list.list[i].fnamelen);
428 else
430 vfs_path_t *tmp_vpath;
432 tmp_vpath =
433 vfs_path_append_new (panelized_panel.root_vpath, panelized_panel.list.list[i].fname,
434 NULL);
435 list->list[i].fname = vfs_path_to_str (tmp_vpath);
436 vfs_path_free (tmp_vpath);
437 list->list[i].fnamelen = strlen (list->list[i].fname);
439 list->list[i].f.link_to_dir = panelized_panel.list.list[i].f.link_to_dir;
440 list->list[i].f.stale_link = panelized_panel.list.list[i].f.stale_link;
441 list->list[i].f.dir_size_computed = panelized_panel.list.list[i].f.dir_size_computed;
442 list->list[i].f.marked = panelized_panel.list.list[i].f.marked;
443 list->list[i].st = panelized_panel.list.list[i].st;
444 list->list[i].sort_key = panelized_panel.list.list[i].sort_key;
445 list->list[i].second_sort_key = panelized_panel.list.list[i].second_sort_key;
447 try_to_select (panel, NULL);
450 /* --------------------------------------------------------------------------------------------- */
451 /*** public functions ****************************************************************************/
452 /* --------------------------------------------------------------------------------------------- */
455 * Change root directory of panelized content.
456 * @param new_root - object with new path.
458 void
459 panelize_change_root (const vfs_path_t * new_root)
461 vfs_path_free (panelized_panel.root_vpath);
462 panelized_panel.root_vpath = vfs_path_clone (new_root);
465 /* --------------------------------------------------------------------------------------------- */
467 void
468 panelize_save_panel (struct WPanel *panel)
470 int i;
471 dir_list *list = &panel->dir;
473 panelize_change_root (current_panel->cwd_vpath);
475 if (panelized_panel.count > 0)
476 clean_dir (&panelized_panel.list, panelized_panel.count);
477 if (panel->count < 1)
478 return;
480 panelized_panel.count = panel->count;
481 if (panel->count >= panelized_panel.list.size)
483 panelized_panel.list.list = g_try_realloc (panelized_panel.list.list,
484 sizeof (file_entry) * panel->count);
485 panelized_panel.list.size = panel->count;
487 for (i = 0; i < panel->count; i++)
489 panelized_panel.list.list[i].fnamelen = list->list[i].fnamelen;
490 panelized_panel.list.list[i].fname =
491 g_strndup (list->list[i].fname, list->list[i].fnamelen);
492 panelized_panel.list.list[i].f.link_to_dir = list->list[i].f.link_to_dir;
493 panelized_panel.list.list[i].f.stale_link = list->list[i].f.stale_link;
494 panelized_panel.list.list[i].f.dir_size_computed = list->list[i].f.dir_size_computed;
495 panelized_panel.list.list[i].f.marked = list->list[i].f.marked;
496 panelized_panel.list.list[i].st = list->list[i].st;
497 panelized_panel.list.list[i].sort_key = list->list[i].sort_key;
498 panelized_panel.list.list[i].second_sort_key = list->list[i].second_sort_key;
502 /* --------------------------------------------------------------------------------------------- */
504 void
505 cd_panelize_cmd (void)
507 if (get_display_type (MENU_PANEL_IDX) != view_listing)
508 set_display_type (MENU_PANEL_IDX, view_listing);
510 do_panelize_cd ((struct WPanel *) get_panel_widget (MENU_PANEL_IDX));
513 /* --------------------------------------------------------------------------------------------- */
515 void
516 external_panelize (void)
518 char *target = NULL;
520 if (!vfs_current_is_local ())
522 message (D_ERROR, MSG_ERROR, _("Cannot run external panelize in a non-local directory"));
523 return;
526 init_panelize ();
528 /* display file info */
529 tty_setcolor (SELECTED_COLOR);
531 run_dlg (panelize_dlg);
533 switch (panelize_dlg->ret_value)
535 case B_CANCEL:
536 break;
538 case B_ADD:
539 add2panelize_cmd ();
540 break;
542 case B_REMOVE:
544 struct panelize *entry;
546 listbox_get_current (l_panelize, NULL, (void **) &entry);
547 remove_from_panelize (entry);
548 break;
551 case B_ENTER:
552 target = pname->buffer;
553 if (target != NULL && *target)
555 char *cmd = g_strdup (target);
556 destroy_dlg (panelize_dlg);
557 do_external_panelize (cmd);
558 g_free (cmd);
559 repaint_screen ();
560 return;
562 break;
565 panelize_done ();
568 /* --------------------------------------------------------------------------------------------- */
570 void
571 load_panelize (void)
573 gchar **profile_keys, **keys;
574 gsize len;
575 GIConv conv;
577 conv = str_crt_conv_from ("UTF-8");
579 profile_keys = keys = mc_config_get_keys (mc_main_config, panelize_section, &len);
581 add2panelize (g_strdup (_("Other command")), g_strdup (""));
583 if (!profile_keys || *profile_keys == NULL)
585 add2panelize (g_strdup (_("Modified git files")), g_strdup ("git ls-files --modified"));
586 add2panelize (g_strdup (_("Find rejects after patching")),
587 g_strdup ("find . -name \\*.rej -print"));
588 add2panelize (g_strdup (_("Find *.orig after patching")),
589 g_strdup ("find . -name \\*.orig -print"));
590 add2panelize (g_strdup (_("Find SUID and SGID programs")),
591 g_strdup
592 ("find . \\( \\( -perm -04000 -a -perm +011 \\) -o \\( -perm -02000 -a -perm +01 \\) \\) -print"));
593 return;
596 while (*profile_keys)
598 GString *buffer;
600 if (mc_global.utf8_display || conv == INVALID_CONV)
601 buffer = g_string_new (*profile_keys);
602 else
604 buffer = g_string_new ("");
605 if (str_convert (conv, *profile_keys, buffer) == ESTR_FAILURE)
606 g_string_assign (buffer, *profile_keys);
609 add2panelize (g_string_free (buffer, FALSE),
610 mc_config_get_string (mc_main_config, panelize_section, *profile_keys, ""));
611 profile_keys++;
614 g_strfreev (keys);
615 str_close_conv (conv);
618 /* --------------------------------------------------------------------------------------------- */
620 void
621 save_panelize (void)
623 struct panelize *current = panelize;
625 mc_config_del_group (mc_main_config, panelize_section);
626 for (; current; current = current->next)
628 if (strcmp (current->label, _("Other command")))
629 mc_config_set_string (mc_main_config,
630 panelize_section, current->label, current->command);
634 /* --------------------------------------------------------------------------------------------- */
636 void
637 done_panelize (void)
639 struct panelize *current = panelize;
640 struct panelize *next;
642 for (; current; current = next)
644 next = current->next;
645 g_free (current->label);
646 g_free (current->command);
647 g_free (current);
651 /* --------------------------------------------------------------------------------------------- */