/*
* empathy-chat-manager.c - Source for EmpathyChatManager
* Copyright (C) 2010 Collabora Ltd.
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*/
#include <telepathy-glib/telepathy-glib.h>
#include <libempathy/empathy-chatroom-manager.h>
#include <libempathy/empathy-dispatcher.h>
#include "empathy-chat-window.h"
#define DEBUG_FLAG EMPATHY_DEBUG_OTHER
#include <libempathy/empathy-debug.h>
#include "empathy-chat-manager.h"
enum {
CHATS_CHANGED,
LAST_SIGNAL
};
static guint signals[LAST_SIGNAL];
G_DEFINE_TYPE(EmpathyChatManager, empathy_chat_manager, G_TYPE_OBJECT)
/* private structure */
typedef struct _EmpathyChatManagerPriv EmpathyChatManagerPriv;
struct _EmpathyChatManagerPriv
{
/* Queue of (ChatData *) representing the closed chats */
GQueue *queue;
TpBaseClient *handler;
};
#define GET_PRIV(o) \
(G_TYPE_INSTANCE_GET_PRIVATE ((o), EMPATHY_TYPE_CHAT_MANAGER, \
EmpathyChatManagerPriv))
static EmpathyChatManager *chat_manager_singleton = NULL;
typedef struct
{
TpAccount *account;
gchar *id;
gboolean room;
} ChatData;
static ChatData *
chat_data_new (EmpathyChat *chat)
{
ChatData *data = NULL;
data = g_slice_new0 (ChatData);
data->account = g_object_ref (empathy_chat_get_account (chat));
data->id = g_strdup (empathy_chat_get_id (chat));
data->room = empathy_chat_is_room (chat);
return data;
}
static void
chat_data_free (ChatData *data)
{
if (data->account != NULL)
{
g_object_unref (data->account);
data->account = NULL;
}
if (data->id != NULL)
{
g_free (data->id);
data->id = NULL;
}
g_slice_free (ChatData, data);
}
static void
tell_chatroom_manager_if_needed (TpAccount *account,
EmpathyTpChat *chat)
{
TpHandleType type;
tp_channel_get_handle (empathy_tp_chat_get_channel (chat), &type);
if (type == TP_HANDLE_TYPE_ROOM)
{
EmpathyChatroomManager *chatroom_mgr;
chatroom_mgr = empathy_chatroom_manager_dup_singleton (NULL);
empathy_chatroom_manager_chat_handled (chatroom_mgr, chat, account);
g_object_unref (chatroom_mgr);
}
}
static void
process_tp_chat (EmpathyTpChat *tp_chat,
TpAccount *account,
gint64 user_action_time)
{
EmpathyChat *chat = NULL;
const gchar *id;
tell_chatroom_manager_if_needed (account, tp_chat);
id = empathy_tp_chat_get_id (tp_chat);
if (!tp_str_empty (id))
{
chat = empathy_chat_window_find_chat (account, id);
}
if (chat != NULL)
{
empathy_chat_set_tp_chat (chat, tp_chat);
}
else
{
chat = empathy_chat_new (tp_chat);
/* empathy_chat_new returns a floating reference as EmpathyChat is
* a GtkWidget. This reference will be taken by a container
* (a GtkNotebook) when we'll call empathy_chat_window_present_chat */
}
empathy_chat_window_present_chat (chat, user_action_time);
if (empathy_tp_chat_is_invited (tp_chat, NULL))
{
/* We have been invited to the room. Add ourself as member as this
* channel has been approved. */
empathy_tp_chat_join (tp_chat);
}
g_object_unref (tp_chat);
}
typedef struct
{
EmpathyTpChat *tp_chat;
TpAccount *account;
gint64 user_action_time;
gulong sig_id;
} chat_ready_ctx;
static chat_ready_ctx *
chat_ready_ctx_new (EmpathyTpChat *tp_chat,
TpAccount *account,
gint64 user_action_time)
{
chat_ready_ctx *ctx = g_slice_new0 (chat_ready_ctx);
ctx->tp_chat = g_object_ref (tp_chat);
ctx->account = g_object_ref (account);
ctx->user_action_time = user_action_time;
return ctx;
}
static void
chat_ready_ctx_free (chat_ready_ctx *ctx)
{
g_object_unref (ctx->tp_chat);
g_object_unref (ctx->account);
if (ctx->sig_id != 0)
g_signal_handler_disconnect (ctx->tp_chat, ctx->sig_id);
g_slice_free (chat_ready_ctx, ctx);
}
static void
tp_chat_ready_cb (GObject *object,
GParamSpec *spec,
gpointer user_data)
{
EmpathyTpChat *tp_chat = EMPATHY_TP_CHAT (object);
chat_ready_ctx *ctx = user_data;
if (!empathy_tp_chat_is_ready (tp_chat))
return;
process_tp_chat (tp_chat, ctx->account, ctx->user_action_time);
chat_ready_ctx_free (ctx);
}
static void
handle_channels (TpSimpleHandler *handler,
TpAccount *account,
TpConnection *connection,
GList *channels,
GList *requests_satisfied,
gint64 user_action_time,
TpHandleChannelsContext *context,
gpointer user_data)
{
GList *l;
for (l = channels; l != NULL; l = g_list_next (l))
{
TpChannel *channel = l->data;
EmpathyTpChat *tp_chat;
tp_chat = empathy_tp_chat_new (channel);
if (empathy_tp_chat_is_ready (tp_chat))
{
process_tp_chat (tp_chat, account, user_action_time);
}
else
{
chat_ready_ctx *ctx = chat_ready_ctx_new (tp_chat, account,
user_action_time);
ctx->sig_id = g_signal_connect (tp_chat, "notify::ready",
G_CALLBACK (tp_chat_ready_cb), ctx);
}
}
tp_handle_channels_context_accept (context);
}
static void
empathy_chat_manager_init (EmpathyChatManager *self)
{
EmpathyChatManagerPriv *priv = GET_PRIV (self);
TpDBusDaemon *dbus;
GError *error = NULL;
priv->queue = g_queue_new ();
dbus = tp_dbus_daemon_dup (&error);
if (dbus == NULL)
{
g_critical ("Failed to get D-Bus daemon: %s", error->message);
g_error_free (error);
return;
}
/* Text channels handler */
priv->handler = tp_simple_handler_new (dbus, FALSE, FALSE, "Empathy", FALSE,
handle_channels, self, NULL);
g_object_unref (dbus);
tp_base_client_take_handler_filter (priv->handler, tp_asv_new (
TP_PROP_CHANNEL_CHANNEL_TYPE, G_TYPE_STRING, TP_IFACE_CHANNEL_TYPE_TEXT,
TP_PROP_CHANNEL_TARGET_HANDLE_TYPE, G_TYPE_UINT, TP_HANDLE_TYPE_CONTACT,
NULL));
tp_base_client_take_handler_filter (priv->handler, tp_asv_new (
TP_PROP_CHANNEL_CHANNEL_TYPE, G_TYPE_STRING, TP_IFACE_CHANNEL_TYPE_TEXT,
TP_PROP_CHANNEL_TARGET_HANDLE_TYPE, G_TYPE_UINT, TP_HANDLE_TYPE_ROOM,
NULL));
tp_base_client_take_handler_filter (priv->handler, tp_asv_new (
TP_PROP_CHANNEL_CHANNEL_TYPE, G_TYPE_STRING, TP_IFACE_CHANNEL_TYPE_TEXT,
TP_PROP_CHANNEL_TARGET_HANDLE_TYPE, G_TYPE_UINT, TP_HANDLE_TYPE_NONE,
NULL));
if (!tp_base_client_register (priv->handler, &error))
{
g_critical ("Failed to register text handler: %s", error->message);
g_error_free (error);
}
}
static void
empathy_chat_manager_finalize (GObject *object)
{
EmpathyChatManager *self = EMPATHY_CHAT_MANAGER (object);
EmpathyChatManagerPriv *priv = GET_PRIV (self);
if (priv->queue != NULL)
{
g_queue_foreach (priv->queue, (GFunc) chat_data_free, NULL);
g_queue_free (priv->queue);
priv->queue = NULL;
}
tp_clear_object (&priv->handler);
G_OBJECT_CLASS (empathy_chat_manager_parent_class)->finalize (object);
}
static GObject *
empathy_chat_manager_constructor (GType type,
guint n_construct_params,
GObjectConstructParam *construct_params)
{
GObject *retval;
if (!chat_manager_singleton)
{
retval = G_OBJECT_CLASS (empathy_chat_manager_parent_class)->constructor
(type, n_construct_params, construct_params);
chat_manager_singleton = EMPATHY_CHAT_MANAGER (retval);
g_object_add_weak_pointer (retval, (gpointer) &chat_manager_singleton);
}
else
{
retval = g_object_ref (chat_manager_singleton);
}
return retval;
}
static void
empathy_chat_manager_class_init (
EmpathyChatManagerClass *empathy_chat_manager_class)
{
GObjectClass *object_class = G_OBJECT_CLASS (empathy_chat_manager_class);
object_class->finalize = empathy_chat_manager_finalize;
object_class->constructor = empathy_chat_manager_constructor;
signals[CHATS_CHANGED] =
g_signal_new ("chats-changed",
G_TYPE_FROM_CLASS (object_class),
G_SIGNAL_RUN_LAST,
0,
NULL, NULL,
g_cclosure_marshal_VOID__UINT,
G_TYPE_NONE,
1, G_TYPE_UINT, NULL);
g_type_class_add_private (empathy_chat_manager_class,
sizeof (EmpathyChatManagerPriv));
}
EmpathyChatManager *
empathy_chat_manager_dup_singleton (void)
{
return g_object_new (EMPATHY_TYPE_CHAT_MANAGER, NULL);
}
void
empathy_chat_manager_closed_chat (EmpathyChatManager *self,
EmpathyChat *chat)
{
EmpathyChatManagerPriv *priv = GET_PRIV (self);
ChatData *data;
data = chat_data_new (chat);
DEBUG ("Adding %s to queue: %s", data->room ? "room" : "contact", data->id);
g_queue_push_tail (priv->queue, data);
g_signal_emit (self, signals[CHATS_CHANGED], 0,
g_queue_get_length (priv->queue));
}
static void
connection_ready_cb (TpConnection *connection,
const GError *error,
gpointer user_data)
{
ChatData *data = user_data;
EmpathyChatManager *self = chat_manager_singleton;
EmpathyChatManagerPriv *priv;
/* Extremely unlikely to happen, but I don't really want to keep refs to the
* chat manager in the ChatData structs as it'll then prevent the manager
* from being finalized. */
if (G_UNLIKELY (self == NULL))
goto out;
priv = GET_PRIV (self);
if (error == NULL)
{
if (data->room)
empathy_dispatcher_join_muc (connection, data->id,
EMPATHY_DISPATCHER_NON_USER_ACTION);
else
empathy_dispatcher_chat_with_contact_id (connection, data->id,
EMPATHY_DISPATCHER_NON_USER_ACTION, NULL, NULL);
g_signal_emit (self, signals[CHATS_CHANGED], 0,
g_queue_get_length (priv->queue));
}
else
{
DEBUG ("Error readying connection, no chat: %s", error->message);
}
out:
chat_data_free (data);
}
void
empathy_chat_manager_undo_closed_chat (EmpathyChatManager *self)
{
EmpathyChatManagerPriv *priv = GET_PRIV (self);
ChatData *data;
TpConnection *connection;
data = g_queue_pop_tail (priv->queue);
if (data == NULL)
return;
DEBUG ("Removing %s from queue and starting a chat with: %s",
data->room ? "room" : "contact", data->id);
connection = tp_account_get_connection (data->account);
if (connection != NULL)
{
tp_connection_call_when_ready (connection, connection_ready_cb, data);
}
else
{
DEBUG ("No connection, no chat.");
chat_data_free (data);
}
}
guint
empathy_chat_manager_get_num_chats (EmpathyChatManager *self)
{
EmpathyChatManagerPriv *priv = GET_PRIV (self);
return g_queue_get_length (priv->queue);
}