Merge branch '4650_shift_f4_segfault'
[midnight-commander.git] / src / filemanager / panelize.c
blob21afcc0dbe41573abf2ab142aeef7679715df645
1 /*
2 External panelize
4 Copyright (C) 1995-2025
5 Free Software Foundation, Inc.
7 Written by:
8 Janne Kukonlehto, 1995
9 Jakub Jelinek, 1995
10 Andrew Borodin <aborodin@vmail.ru> 2011-2023
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 <https://www.gnu.org/licenses/>.
28 /** \file panelize.c
29 * \brief Source: External panelization module
32 #include <config.h>
34 #include "lib/global.h"
36 #include "lib/skin.h"
37 #include "lib/tty/tty.h"
38 #include "lib/vfs/vfs.h"
39 #include "lib/mcconfig.h" // Load/save directories panelize
40 #include "lib/strutil.h"
41 #include "lib/widget.h"
42 #include "lib/util.h" // mc_pipe_t
44 #include "src/history.h"
46 #include "filemanager.h" // current_panel
47 #include "layout.h" // rotate_dash()
48 #include "panel.h" // WPanel, dir.h
50 #include "panelize.h"
52 /*** global variables ****************************************************************************/
54 /*** file scope macro definitions ****************************************************************/
56 #define UX 3
57 #define UY 2
59 #define B_ADD B_USER
60 #define B_REMOVE (B_USER + 1)
62 /*** file scope type declarations ****************************************************************/
64 typedef struct
66 char *command;
67 char *label;
68 } panelize_entry_t;
70 /*** forward declarations (file scope functions) *************************************************/
72 /*** file scope variables ************************************************************************/
74 static WListbox *l_panelize;
75 static WDialog *panelize_dlg;
76 static int last_listitem;
77 static WInput *pname;
78 static GSList *panelize = NULL;
80 static const char *panelize_section = "Panelize";
82 /* --------------------------------------------------------------------------------------------- */
83 /*** file scope functions ************************************************************************/
84 /* --------------------------------------------------------------------------------------------- */
86 static void
87 panelize_entry_free (gpointer data)
89 panelize_entry_t *entry = (panelize_entry_t *) data;
91 g_free (entry->command);
92 g_free (entry->label);
93 g_free (entry);
96 /* --------------------------------------------------------------------------------------------- */
98 static int
99 panelize_entry_cmp_by_label (gconstpointer a, gconstpointer b)
101 const panelize_entry_t *entry = (const panelize_entry_t *) a;
102 const char *label = (const char *) b;
104 return strcmp (entry->label, label);
107 /* --------------------------------------------------------------------------------------------- */
109 static void
110 panelize_entry_add_to_listbox (gpointer data, gpointer user_data)
112 panelize_entry_t *entry = (panelize_entry_t *) data;
114 (void) user_data;
116 listbox_add_item (l_panelize, LISTBOX_APPEND_AT_END, 0, entry->label, entry, FALSE);
119 /* --------------------------------------------------------------------------------------------- */
121 static void
122 update_command (void)
124 if (l_panelize->current != last_listitem)
126 panelize_entry_t *data = NULL;
128 last_listitem = l_panelize->current;
129 listbox_get_current (l_panelize, NULL, (void **) &data);
130 input_assign_text (pname, data->command);
131 pname->point = 0;
132 input_update (pname, TRUE);
136 /* --------------------------------------------------------------------------------------------- */
138 static cb_ret_t
139 panelize_callback (Widget *w, Widget *sender, widget_msg_t msg, int parm, void *data)
141 switch (msg)
143 case MSG_INIT:
144 group_default_callback (w, NULL, MSG_INIT, 0, NULL);
145 MC_FALLTHROUGH;
147 case MSG_NOTIFY: // MSG_NOTIFY is fired by the listbox to tell us the item has changed.
148 update_command ();
149 return MSG_HANDLED;
151 default:
152 return dlg_default_callback (w, sender, msg, parm, data);
156 /* --------------------------------------------------------------------------------------------- */
158 static void
159 external_panelize_init (void)
161 struct
163 int ret_cmd;
164 button_flags_t flags;
165 const char *text;
166 } panelize_but[] = {
167 { B_ENTER, DEFPUSH_BUTTON, N_ ("Pane&lize") },
168 { B_REMOVE, NORMAL_BUTTON, N_ ("&Remove") },
169 { B_ADD, NORMAL_BUTTON, N_ ("&Add new") },
170 { B_CANCEL, NORMAL_BUTTON, N_ ("&Cancel") },
173 WGroup *g;
175 size_t i;
176 int blen;
177 int panelize_cols;
178 int x, y;
180 last_listitem = 0;
182 do_refresh ();
184 i = G_N_ELEMENTS (panelize_but);
185 blen = i - 1; // gaps between buttons
186 while (i-- != 0)
188 #ifdef ENABLE_NLS
189 panelize_but[i].text = _ (panelize_but[i].text);
190 #endif
191 blen += str_term_width1 (panelize_but[i].text) + 3 + 1;
192 if (panelize_but[i].flags == DEFPUSH_BUTTON)
193 blen += 2;
196 panelize_cols = COLS - 6;
197 panelize_cols = MAX (panelize_cols, blen + 4);
199 panelize_dlg =
200 dlg_create (TRUE, 0, 0, 20, panelize_cols, WPOS_CENTER, FALSE, dialog_colors,
201 panelize_callback, NULL, "[External panelize]", _ ("External panelize"));
202 g = GROUP (panelize_dlg);
204 // add listbox to the dialogs
205 y = UY;
206 group_add_widget (g, groupbox_new (y++, UX, 12, panelize_cols - UX * 2, ""));
208 l_panelize = listbox_new (y, UX + 1, 10, panelize_cols - UX * 2 - 2, FALSE, NULL);
209 g_slist_foreach (panelize, panelize_entry_add_to_listbox, NULL);
210 listbox_set_current (l_panelize, listbox_search_text (l_panelize, _ ("Other command")));
211 group_add_widget (g, l_panelize);
213 y += WIDGET (l_panelize)->rect.lines + 1;
214 group_add_widget (g, label_new (y++, UX, _ ("Command")));
215 pname = input_new (y++, UX, input_colors, panelize_cols - UX * 2, "", "in",
216 INPUT_COMPLETE_FILENAMES | INPUT_COMPLETE_HOSTNAMES | INPUT_COMPLETE_COMMANDS
217 | INPUT_COMPLETE_VARIABLES | INPUT_COMPLETE_USERNAMES | INPUT_COMPLETE_CD
218 | INPUT_COMPLETE_SHELL_ESC);
219 group_add_widget (g, pname);
221 group_add_widget (g, hline_new (y++, -1, -1));
223 x = (panelize_cols - blen) / 2;
224 for (i = 0; i < G_N_ELEMENTS (panelize_but); i++)
226 WButton *b;
228 b = button_new (y, x, panelize_but[i].ret_cmd, panelize_but[i].flags, panelize_but[i].text,
229 NULL);
230 group_add_widget (g, b);
232 x += button_get_len (b) + 1;
235 widget_select (WIDGET (l_panelize));
238 /* --------------------------------------------------------------------------------------------- */
240 static void
241 external_panelize_done (void)
243 widget_destroy (WIDGET (panelize_dlg));
244 repaint_screen ();
247 /* --------------------------------------------------------------------------------------------- */
249 static void
250 add2panelize (char *label, char *command)
252 panelize_entry_t *entry;
254 entry = g_try_new (panelize_entry_t, 1);
255 if (entry != NULL)
257 entry->label = label;
258 entry->command = command;
260 panelize = g_slist_insert_sorted (panelize, entry, panelize_entry_cmp_by_label);
264 /* --------------------------------------------------------------------------------------------- */
266 static void
267 add2panelize_cmd (void)
269 if (!input_is_empty (pname))
271 char *label;
273 label = input_dialog (_ ("Add to external panelize"), _ ("Enter command label:"),
274 MC_HISTORY_FM_PANELIZE_ADD, "", INPUT_COMPLETE_NONE);
275 if (label == NULL || *label == '\0')
276 g_free (label);
277 else
278 add2panelize (label, input_get_text (pname));
282 /* --------------------------------------------------------------------------------------------- */
284 static void
285 remove_from_panelize (panelize_entry_t *entry)
287 if (strcmp (entry->label, _ ("Other command")) != 0)
289 panelize = g_slist_remove (panelize, entry);
290 panelize_entry_free (entry);
294 /* --------------------------------------------------------------------------------------------- */
296 static void
297 do_external_panelize (const char *command)
299 dir_list *list = &current_panel->dir;
300 mc_pipe_t *external;
301 GError *error = NULL;
302 GString *remain_file_name = NULL;
304 external = mc_popen (command, TRUE, TRUE, &error);
305 if (external == NULL)
307 message (D_ERROR, _ ("External panelize"), "%s", error->message);
308 g_error_free (error);
309 return;
312 // Clear the counters and the directory list
313 panel_clean_dir (current_panel);
315 panel_panelize_change_root (current_panel, current_panel->cwd_vpath);
317 dir_list_init (list);
319 while (TRUE)
321 GString *line;
322 gboolean ok;
324 // init buffers before call of mc_pread()
325 external->out.len = MC_PIPE_BUFSIZE;
326 external->err.len = MC_PIPE_BUFSIZE;
327 external->err.null_term = TRUE;
329 mc_pread (external, &error);
331 if (error != NULL)
333 message (D_ERROR, MSG_ERROR, _ ("External panelize:\n%s"), error->message);
334 g_error_free (error);
335 break;
338 if (external->err.len > 0)
339 message (D_ERROR, MSG_ERROR, _ ("External panelize:\n%s"), external->err.buf);
341 if (external->out.len == MC_PIPE_STREAM_EOF)
342 break;
344 if (external->out.len == 0)
345 continue;
347 if (external->out.len == MC_PIPE_ERROR_READ)
349 message (D_ERROR, MSG_ERROR,
350 _ ("External panelize:\nfailed to read data from child stdout:\n%s"),
351 unix_error_string (external->out.error));
352 break;
355 ok = TRUE;
357 while (ok && (line = mc_pstream_get_string (&external->out)) != NULL)
359 char *name;
360 gboolean link_to_dir, stale_link;
361 struct stat st;
363 // handle a \n-separated file list
365 if (line->str[line->len - 1] == '\n')
367 // entire file name or last chunk
369 g_string_truncate (line, line->len - 1);
371 // join filename chunks
372 if (remain_file_name != NULL)
374 g_string_append_len (remain_file_name, line->str, line->len);
375 g_string_free (line, TRUE);
376 line = remain_file_name;
377 remain_file_name = NULL;
380 else
382 // first or middle chunk of file name
384 if (remain_file_name == NULL)
385 remain_file_name = line;
386 else
388 g_string_append_len (remain_file_name, line->str, line->len);
389 g_string_free (line, TRUE);
392 continue;
395 name = line->str;
397 if (name[0] == '.' && IS_PATH_SEP (name[1]))
398 name += 2;
400 if (handle_path (name, &st, &link_to_dir, &stale_link))
402 ok = dir_list_append (list, name, &st, link_to_dir, stale_link);
404 if (ok)
406 file_mark (current_panel, list->len - 1, 0);
408 if ((list->len & 31) == 0)
409 rotate_dash (TRUE);
413 g_string_free (line, TRUE);
417 if (remain_file_name != NULL)
418 g_string_free (remain_file_name, TRUE);
420 mc_pclose (external, NULL);
422 current_panel->is_panelized = TRUE;
423 panel_panelize_absolutize_if_needed (current_panel);
425 panel_set_current_by_name (current_panel, NULL);
426 panel_re_sort (current_panel);
427 rotate_dash (FALSE);
430 /* --------------------------------------------------------------------------------------------- */
431 /*** public functions ****************************************************************************/
432 /* --------------------------------------------------------------------------------------------- */
434 void
435 external_panelize_cmd (void)
437 if (!vfs_current_is_local ())
439 message (D_ERROR, MSG_ERROR, _ ("Cannot run external panelize in a non-local directory"));
440 return;
443 external_panelize_init ();
445 // display file info
446 tty_setcolor (SELECTED_COLOR);
448 switch (dlg_run (panelize_dlg))
450 case B_CANCEL:
451 break;
453 case B_ADD:
454 add2panelize_cmd ();
455 break;
457 case B_REMOVE:
459 panelize_entry_t *entry;
461 listbox_get_current (l_panelize, NULL, (void **) &entry);
462 remove_from_panelize (entry);
463 break;
466 case B_ENTER:
467 if (!input_is_empty (pname))
469 char *cmd;
471 cmd = input_get_text (pname);
472 widget_destroy (WIDGET (panelize_dlg));
473 do_external_panelize (cmd);
474 g_free (cmd);
475 repaint_screen ();
476 return;
478 break;
480 default:
481 break;
484 external_panelize_done ();
487 /* --------------------------------------------------------------------------------------------- */
489 void
490 external_panelize_load (void)
492 char **keys;
494 keys = mc_config_get_keys (mc_global.main_config, panelize_section, NULL);
496 add2panelize (g_strdup (_ ("Other command")), g_strdup (""));
498 if (*keys == NULL)
500 add2panelize (g_strdup (_ ("Modified git files")), g_strdup ("git ls-files --modified"));
501 add2panelize (g_strdup (_ ("Find rejects after patching")),
502 g_strdup ("find . -name \\*.rej -print"));
503 add2panelize (g_strdup (_ ("Find *.orig after patching")),
504 g_strdup ("find . -name \\*.orig -print"));
505 add2panelize (g_strdup (_ ("Find SUID and SGID programs")),
506 g_strdup ("find . \\( \\( -perm -04000 -a -perm /011 \\) -o \\( -perm -02000 "
507 "-a -perm /01 \\) \\) -print"));
509 else
511 GIConv conv;
512 char **profile_keys;
514 conv = str_crt_conv_from ("UTF-8");
516 for (profile_keys = keys; *profile_keys != NULL; profile_keys++)
518 GString *buffer;
520 if (mc_global.utf8_display || conv == INVALID_CONV)
521 buffer = g_string_new (*profile_keys);
522 else
524 buffer = g_string_new ("");
525 if (str_convert (conv, *profile_keys, buffer) == ESTR_FAILURE)
526 g_string_assign (buffer, *profile_keys);
529 add2panelize (
530 g_string_free (buffer, FALSE),
531 mc_config_get_string (mc_global.main_config, panelize_section, *profile_keys, ""));
534 str_close_conv (conv);
537 g_strfreev (keys);
540 /* --------------------------------------------------------------------------------------------- */
542 void
543 external_panelize_save (void)
545 GSList *l;
547 mc_config_del_group (mc_global.main_config, panelize_section);
549 for (l = panelize; l != NULL; l = g_slist_next (l))
551 panelize_entry_t *current = (panelize_entry_t *) l->data;
553 if (strcmp (current->label, _ ("Other command")) != 0)
554 mc_config_set_string (mc_global.main_config, panelize_section, current->label,
555 current->command);
559 /* --------------------------------------------------------------------------------------------- */
561 void
562 external_panelize_free (void)
564 g_clear_slist (&panelize, panelize_entry_free);
565 panelize = NULL;
568 /* --------------------------------------------------------------------------------------------- */