diff options
author | Cosimo Cecchi <cosimoc@gnome.org> | 2009-09-15 18:12:16 +0800 |
---|---|---|
committer | Cosimo Cecchi <cosimoc@gnome.org> | 2009-09-15 19:36:56 +0800 |
commit | 36fcf8ff5514a2e2d941a0f9544098db25b3d8d4 (patch) | |
tree | ffa320eb79d0278cbf39bc67b9e947ddecef0e70 /libempathy | |
parent | 93bc2c62fc9ae522b2d23d7354d0881936c72faa (diff) | |
download | gsoc2013-empathy-36fcf8ff5514a2e2d941a0f9544098db25b3d8d4.tar gsoc2013-empathy-36fcf8ff5514a2e2d941a0f9544098db25b3d8d4.tar.gz gsoc2013-empathy-36fcf8ff5514a2e2d941a0f9544098db25b3d8d4.tar.bz2 gsoc2013-empathy-36fcf8ff5514a2e2d941a0f9544098db25b3d8d4.tar.lz gsoc2013-empathy-36fcf8ff5514a2e2d941a0f9544098db25b3d8d4.tar.xz gsoc2013-empathy-36fcf8ff5514a2e2d941a0f9544098db25b3d8d4.tar.zst gsoc2013-empathy-36fcf8ff5514a2e2d941a0f9544098db25b3d8d4.zip |
Always call _ensure_channel for text chats.
So we can catch opened channels as well, e.g. if we crashed.
Diffstat (limited to 'libempathy')
-rw-r--r-- | libempathy/empathy-dispatcher.c | 52 |
1 files changed, 42 insertions, 10 deletions
diff --git a/libempathy/empathy-dispatcher.c b/libempathy/empathy-dispatcher.c index ef9d180b6..528320295 100644 --- a/libempathy/empathy-dispatcher.c +++ b/libempathy/empathy-dispatcher.c @@ -126,6 +126,7 @@ typedef struct EmpathyDispatcher *dispatcher; EmpathyDispatchOperation *operation; TpConnection *connection; + gboolean should_ensure; gchar *channel_type; guint handle_type; guint handle; @@ -180,7 +181,8 @@ typedef struct } FindChannelRequest; static void -empathy_dispatcher_call_create_channel (EmpathyDispatcher *dispatcher, +empathy_dispatcher_call_create_or_ensure_channel ( + EmpathyDispatcher *dispatcher, DispatcherRequestData *request_data); static DispatchData * @@ -221,6 +223,8 @@ new_dispatcher_request_data (EmpathyDispatcher *dispatcher, result->dispatcher = g_object_ref (dispatcher); result->connection = connection; + result->should_ensure = FALSE; + result->channel_type = g_strdup (channel_type); result->handle_type = handle_type; result->handle = handle; @@ -1282,8 +1286,8 @@ dispatcher_request_channel (DispatcherRequestData *request_data) tp_asv_set_uint32 (request_data->request, TP_IFACE_CHANNEL ".TargetHandle", request_data->handle); - empathy_dispatcher_call_create_channel (request_data->dispatcher, - request_data); + empathy_dispatcher_call_create_or_ensure_channel ( + request_data->dispatcher, request_data); } else { @@ -1316,9 +1320,10 @@ empathy_dispatcher_chat_with_contact (EmpathyContact *contact, connection_data = g_hash_table_lookup (priv->connections, connection); /* The contact handle might not be known yet */ - request_data = new_dispatcher_request_data (dispatcher, connection, + request_data = new_dispatcher_request_data (dispatcher, connection, TP_IFACE_CHANNEL_TYPE_TEXT, TP_HANDLE_TYPE_CONTACT, empathy_contact_get_handle (contact), NULL, contact, callback, user_data); + request_data->should_ensure = TRUE; connection_data->outstanding_requests = g_list_prepend (connection_data->outstanding_requests, request_data); @@ -1469,13 +1474,40 @@ dispatcher_create_channel_cb (TpConnection *connect, } static void -empathy_dispatcher_call_create_channel (EmpathyDispatcher *dispatcher, +dispatcher_ensure_channel_cb (TpConnection *connect, + gboolean is_ours, + const gchar *object_path, + GHashTable *properties, + const GError *error, + gpointer user_data, + GObject *weak_object) +{ + EmpathyDispatcher *dispatcher = EMPATHY_DISPATCHER (weak_object); + DispatcherRequestData *request_data = (DispatcherRequestData *) user_data; + + dispatcher_connection_new_requested_channel (dispatcher, + request_data, object_path, properties, error); +} + +static void +empathy_dispatcher_call_create_or_ensure_channel ( + EmpathyDispatcher *dispatcher, DispatcherRequestData *request_data) { - tp_cli_connection_interface_requests_call_create_channel ( - request_data->connection, -1, - request_data->request, dispatcher_create_channel_cb, request_data, NULL, - G_OBJECT (request_data->dispatcher)); + if (request_data->should_ensure) + { + tp_cli_connection_interface_requests_call_ensure_channel ( + request_data->connection, -1, + request_data->request, dispatcher_ensure_channel_cb, + request_data, NULL, G_OBJECT (request_data->dispatcher)); + } + else + { + tp_cli_connection_interface_requests_call_create_channel ( + request_data->connection, -1, + request_data->request, dispatcher_create_channel_cb, + request_data, NULL, G_OBJECT (request_data->dispatcher)); + } } void @@ -1516,7 +1548,7 @@ empathy_dispatcher_create_channel (EmpathyDispatcher *dispatcher, connection_data->outstanding_requests = g_list_prepend (connection_data->outstanding_requests, request_data); - empathy_dispatcher_call_create_channel (dispatcher, request_data); + empathy_dispatcher_call_create_or_ensure_channel (dispatcher, request_data); } static gboolean |