Commit b96c08a4 authored by Victor Ananjevsky's avatar Victor Ananjevsky

don't freeze main dialog when running sinchronous handlers like --row-action in…

don't freeze main dialog when running sinchronous handlers like --row-action in list or commands with @ in form dialogs
parent 0fe181a2
...@@ -239,7 +239,7 @@ update_preview (GtkFileChooser * chooser, GtkWidget *p) ...@@ -239,7 +239,7 @@ update_preview (GtkFileChooser * chooser, GtkWidget *p)
} }
gchar ** gchar **
split_arg (const gchar * str) split_arg (const gchar *str)
{ {
gchar **res; gchar **res;
gchar *p_col; gchar *p_col;
...@@ -637,31 +637,56 @@ print_bool_val (gboolean val) ...@@ -637,31 +637,56 @@ print_bool_val (gboolean val)
return ret; return ret;
} }
typedef struct {
gchar *cmd;
gchar **out;
} RunData;
static gboolean run_lock = FALSE;
static gint ret = 0;
static void
run_thread (RunData *d)
{
GError *err = NULL;
if (!g_spawn_command_line_sync (d->cmd, d->out, NULL, &ret, &err))
{
if (options.debug)
g_printerr (_("WARNING: Run command failed: %s\n"), err->message);
g_error_free (err);
}
run_lock = FALSE;
}
gint gint
run_command_sync (gchar *cmd, gchar **out) run_command_sync (gchar *cmd, gchar **out)
{ {
gint ret = 0; RunData *d;
gchar *full_cmd = NULL;
GError *err = NULL; d = g_new0 (RunData, 1);
if (options.data.use_interp) if (options.data.use_interp)
{ {
if (g_strstr_len (options.data.interp, -1, "%s") != NULL) if (g_strstr_len (options.data.interp, -1, "%s") != NULL)
full_cmd = g_strdup_printf (options.data.interp, cmd); d->cmd = g_strdup_printf (options.data.interp, cmd);
else else
full_cmd = g_strdup_printf ("%s %s", options.data.interp, cmd); d->cmd = g_strdup_printf ("%s %s", options.data.interp, cmd);
} }
else else
full_cmd = g_strdup (cmd); d->cmd = g_strdup (cmd);
d->out = out;
if (!g_spawn_command_line_sync (full_cmd, out, NULL, &ret, &err)) run_lock = TRUE;
{ ret = 0;
if (options.debug) g_thread_new ("run_sync", (GThreadFunc) run_thread, d);
g_printerr (_("WARNING: Run command failed: %s\n"), err->message);
g_error_free (err); while (run_lock != FALSE)
} gtk_main_iteration ();
g_free (d->cmd);
g_free (d);
g_free (full_cmd);
return ret; return ret;
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment