[Xfce4-commits] <midori:master> Work-around GLib/ libSoup source issue with downloads
Christian Dywan
noreply at xfce.org
Sun May 13 02:24:05 CEST 2012
Updating branch refs/heads/master
to 654950f2545e37f494ef7ee6e68e26cc1fcf38b9 (commit)
from 23d51753fddd727eadefc0e18989b79f7254bc34 (commit)
commit 654950f2545e37f494ef7ee6e68e26cc1fcf38b9
Author: Christian Dywan <christian at twotoasts.de>
Date: Sun May 13 02:19:18 2012 +0200
Work-around GLib/ libSoup source issue with downloads
Fixes: https://bugs.launchpad.net/midori/+bug/780133
midori/midori-view.c | 82 ++++++++++++++++++++++++++++++++++++++++++++++++++
wscript | 2 +
2 files changed, 84 insertions(+), 0 deletions(-)
diff --git a/midori/midori-view.c b/midori/midori-view.c
index 8057316..d7d0233 100644
--- a/midori/midori-view.c
+++ b/midori/midori-view.c
@@ -2895,6 +2895,43 @@ webkit_web_view_mime_type_decision_cb (GtkWidget* web_view,
return TRUE;
}
+#if HAVE_LIBSOUP_2_33_4 && !GLIB_CHECK_VERSION (2, 33, 1)
+#define WORKAROUND_GLIB_MAINLOOP_HANG
+#endif
+
+#ifdef WORKAROUND_GLIB_MAINLOOP_HANG
+
+#define GSOURCE_PREV(s) (s->prev)
+#define GSOURCE_NEXT(s) (s->next)
+
+static GSource*
+midori_workaround_g_source_unlink (GSource* source)
+{
+ GSource* prev = GSOURCE_PREV (source);
+ GSource* next = GSOURCE_NEXT (source);
+ if (next)
+ GSOURCE_NEXT (prev) = next;
+ if (prev)
+ GSOURCE_PREV (next) = prev;
+
+ return prev ? prev : next;
+}
+
+static GSource*
+midori_workaround_g_source_relink (GSource* source,
+ GSource* prev)
+{
+ GSource* next = GSOURCE_NEXT (prev);
+
+ GSOURCE_NEXT (source) = next;
+ GSOURCE_PREV (source) = prev;
+ GSOURCE_NEXT (prev) = source;
+ GSOURCE_PREV (next) = source;
+
+ return prev;
+}
+#endif
+
static gboolean
webkit_web_view_download_requested_cb (GtkWidget* web_view,
WebKitDownload* download,
@@ -2923,6 +2960,13 @@ webkit_web_view_download_requested_cb (GtkWidget* web_view,
GtkIconTheme* icon_theme;
gint response;
gboolean handled;
+ #ifdef WORKAROUND_GLIB_MAINLOOP_HANG
+ GSource* last;
+ GSource* source;
+ GSource* prev = NULL;
+ GSource** sources = NULL;
+ guint n_sources = 0, i;
+ #endif
dialog = gtk_message_dialog_new (
NULL, 0, GTK_MESSAGE_WARNING, GTK_BUTTONS_NONE,
@@ -2998,7 +3042,45 @@ webkit_web_view_download_requested_cb (GtkWidget* web_view,
GTK_STOCK_CANCEL, DOWNLOAD_CANCEL,
GTK_STOCK_OPEN, DOWNLOAD_OPEN,
NULL);
+
+ #ifdef WORKAROUND_GLIB_MAINLOOP_HANG
+ {
+ GSource* new_source = g_idle_source_new ();
+ g_source_attach (new_source, NULL);
+ last = GSOURCE_PREV (new_source);
+ g_source_destroy (new_source);
+ }
+
+ for (source = last; source; source = GSOURCE_PREV (source))
+ {
+ const char* name;
+ if (source && (name = g_source_get_name (source)))
+ {
+ if(!strcmp (name, "GPollableSource") || !strcmp (name, "GSocket"))
+ {
+ sources = realloc (sources, (++n_sources) * sizeof (GSource*));
+ sources[n_sources - 1] = source;
+ }
+ }
+ }
+ i = n_sources;
+ while (i > 0)
+ {
+ prev = midori_workaround_g_source_unlink (sources[--i]);
+ }
+ #endif
+
response = gtk_dialog_run (GTK_DIALOG (dialog));
+
+ #ifdef WORKAROUND_GLIB_MAINLOOP_HANG
+ i = n_sources;
+ while (i > 0)
+ {
+ prev = midori_workaround_g_source_relink (sources[--i], prev);
+ }
+ g_free (sources);
+ #endif
+
gtk_widget_destroy (dialog);
switch (response)
{
diff --git a/wscript b/wscript
index c7a0c87..61a9bdd 100644
--- a/wscript
+++ b/wscript
@@ -263,6 +263,8 @@ def configure (conf):
conf.define ('HAVE_LIBSOUP_2_29_3', 1)
if check_version (conf.env['LIBSOUP_VERSION'], 2, 29, 91):
conf.define ('HAVE_LIBSOUP_2_29_91', 1)
+ if check_version (conf.env['LIBSOUP_VERSION'], 2, 33, 4):
+ conf.define ('HAVE_LIBSOUP_2_33_4', 1)
if check_version (conf.env['LIBSOUP_VERSION'], 2, 37, 1):
conf.define ('HAVE_LIBSOUP_2_37_1', 1)
check_pkg ('libxml-2.0', '2.6')
More information about the Xfce4-commits
mailing list