aboutsummaryrefslogtreecommitdiffstats
path: root/mail/session.c
diff options
context:
space:
mode:
authorPeter Williams <peterw@src.gnome.org>2000-08-11 01:30:50 +0800
committerPeter Williams <peterw@src.gnome.org>2000-08-11 01:30:50 +0800
commit8cb514d6dd9497893a35a089d07a132d51263ee7 (patch)
tree9f4e5d1f929da7e0be900919753d419fe4c9c61a /mail/session.c
parentbcbb63c59f80eb4e684036c5ef58ab141fb01b03 (diff)
downloadgsoc2013-evolution-8cb514d6dd9497893a35a089d07a132d51263ee7.tar
gsoc2013-evolution-8cb514d6dd9497893a35a089d07a132d51263ee7.tar.gz
gsoc2013-evolution-8cb514d6dd9497893a35a089d07a132d51263ee7.tar.bz2
gsoc2013-evolution-8cb514d6dd9497893a35a089d07a132d51263ee7.tar.lz
gsoc2013-evolution-8cb514d6dd9497893a35a089d07a132d51263ee7.tar.xz
gsoc2013-evolution-8cb514d6dd9497893a35a089d07a132d51263ee7.tar.zst
gsoc2013-evolution-8cb514d6dd9497893a35a089d07a132d51263ee7.zip
Merge with camel-async.
svn path=/trunk/; revision=4687
Diffstat (limited to 'mail/session.c')
-rw-r--r--mail/session.c92
1 files changed, 88 insertions, 4 deletions
diff --git a/mail/session.c b/mail/session.c
index 7eaefd390c..3c5d52abb0 100644
--- a/mail/session.c
+++ b/mail/session.c
@@ -20,9 +20,7 @@ GHashTable *passwords;
* we deadlock....
*/
-#ifdef USE_BROKEN_THREADS
#define ASYNC_AUTH_CALLBACK
-#endif
#ifndef ASYNC_AUTH_CALLBACK
static void
@@ -63,7 +61,7 @@ mail_request_dialog (const char *prompt, gboolean secret, const char *key)
ans == NULL)
return NULL;
#else
- if (!mail_op_get_password (data, secret, &ans))
+ if (!mail_op_get_password (prompt, secret, &ans))
return NULL;
#endif
@@ -115,13 +113,99 @@ auth_callback (CamelAuthCallbackMode mode, char *data, gboolean secret,
return ans;
}
+/* ******************** */
+
+typedef struct _timeout_data_s {
+ CamelTimeoutCallback cb;
+ gpointer camel_data;
+ gboolean result;
+} timeout_data_t;
+
+static gchar *
+describe_camel_timeout (gpointer in_data, gboolean gerund)
+{
+ /* FIXME this is so wrong */
+
+ if (gerund)
+ return g_strdup ("Keeping connection alive");
+ else
+ return g_strdup ("Keep connection alive");
+}
+
+static void
+noop_camel_timeout (gpointer in_data, gpointer op_data, CamelException *ex)
+{
+}
+
+static void
+do_camel_timeout (gpointer in_data, gpointer op_data, CamelException *ex)
+{
+ timeout_data_t *td = (timeout_data_t *) in_data;
+
+ td->result = (td->cb) (td->camel_data);
+}
+
+static const mail_operation_spec spec_camel_timeout =
+{
+ describe_camel_timeout,
+ 0,
+ noop_camel_timeout,
+ do_camel_timeout,
+ noop_camel_timeout
+};
+
+static gboolean
+camel_timeout (gpointer data)
+{
+ timeout_data_t *td = (timeout_data_t *) data;
+
+ if (td->result == FALSE) {
+ g_free (td);
+ return FALSE;
+ }
+
+ mail_operation_queue (&spec_camel_timeout, td, FALSE);
+ return TRUE;
+}
+
+static guint
+register_callback (guint32 interval, CamelTimeoutCallback cb, gpointer camel_data)
+{
+ timeout_data_t *td;
+
+ /* We do this because otherwise the timeout can get called
+ * more often than the dispatch thread can get rid of it,
+ * leading to timeout calls piling up, and we don't have a
+ * good way to watch the return values. It's not cool.
+ */
+ g_return_val_if_fail (interval > 1000, 0);
+
+ td = g_new (timeout_data_t, 1);
+ td->result = TRUE;
+ td->cb = cb;
+ td->camel_data = camel_data;
+
+ return gtk_timeout_add_full (interval, camel_timeout, NULL,
+ td, g_free);
+}
+
+static gboolean
+remove_callback (guint handle)
+{
+ gtk_timeout_remove (handle);
+ return TRUE;
+}
+
+/* ******************** */
+
void
session_init (void)
{
e_setup_base_dir ();
camel_init ();
- session = camel_session_new (auth_callback);
+ session = camel_session_new (auth_callback, register_callback,
+ remove_callback);
}
static gboolean