/* * Copyright (C) 2010 Collabora Ltd. * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License as * published by the Free Software Foundation; either version 2 of the * License, or (at your option) any later version. * * This program 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 * General Public License for more details. * * You should have received a copy of the GNU General Public * License along with this program; if not, write to the * Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, * Boston, MA 02110-1301 USA * * Authors: Guillaume Desmottes */ #include #include "empathy-client-factory.h" #include "empathy-tp-chat.h" #include "empathy-tp-file.h" #include "empathy-utils.h" #include G_DEFINE_TYPE (EmpathyClientFactory, empathy_client_factory, TP_TYPE_AUTOMATIC_CLIENT_FACTORY) #define chainup ((TpSimpleClientFactoryClass *) \ empathy_client_factory_parent_class) /* FIXME: move to yell */ static TpyCallChannel * call_channel_new_with_factory (TpSimpleClientFactory *factory, TpConnection *conn, const gchar *object_path, const GHashTable *immutable_properties, GError **error) { TpProxy *conn_proxy = (TpProxy *) conn; g_return_val_if_fail (TP_IS_CONNECTION (conn), NULL); g_return_val_if_fail (object_path != NULL, NULL); g_return_val_if_fail (immutable_properties != NULL, NULL); if (!tp_dbus_check_valid_object_path (object_path, error)) return NULL; return g_object_new (TPY_TYPE_CALL_CHANNEL, "factory", factory, "connection", conn, "dbus-daemon", conn_proxy->dbus_daemon, "bus-name", conn_proxy->bus_name, "object-path", object_path, "handle-type", (guint) TP_UNKNOWN_HANDLE_TYPE, "channel-properties", immutable_properties, NULL); } static TpChannel * empathy_client_factory_create_channel (TpSimpleClientFactory *factory, TpConnection *conn, const gchar *path, const GHashTable *properties, GError **error) { const gchar *chan_type; chan_type = tp_asv_get_string (properties, TP_PROP_CHANNEL_CHANNEL_TYPE); if (!tp_strdiff (chan_type, TP_IFACE_CHANNEL_TYPE_TEXT)) { TpAccount *account; account = tp_connection_get_account (conn); return TP_CHANNEL (empathy_tp_chat_new ( TP_SIMPLE_CLIENT_FACTORY (factory), account, conn, path, properties)); } else if (!tp_strdiff (chan_type, TPY_IFACE_CHANNEL_TYPE_CALL)) { return TP_CHANNEL (call_channel_new_with_factory ( TP_SIMPLE_CLIENT_FACTORY (factory), conn, path, properties, error)); } else if (!tp_strdiff (chan_type, TP_IFACE_CHANNEL_TYPE_FILE_TRANSFER)) { return TP_CHANNEL (empathy_tp_file_new ( TP_SIMPLE_CLIENT_FACTORY (factory), conn, path, properties, error)); } return chainup->create_channel (factory, conn, path, properties, error); } static GArray * empathy_client_factory_dup_channel_features (TpSimpleClientFactory *factory, TpChannel *channel) { GArray *features; GQuark feature; features = chainup->dup_channel_features (factory, channel); if (EMPATHY_IS_TP_CHAT (channel)) { feature = TP_CHANNEL_FEATURE_CHAT_STATES; g_array_append_val (features, feature); feature = EMPATHY_TP_CHAT_FEATURE_READY; g_array_append_val (features, feature); } return features; } static GArray * empathy_client_factory_dup_account_features (TpSimpleClientFactory *factory, TpAccount *account) { GArray *features; GQuark feature; features = chainup->dup_account_features (factory, account); feature = TP_ACCOUNT_FEATURE_CONNECTION; g_array_append_val (features, feature); feature = TP_ACCOUNT_FEATURE_ADDRESSING; g_array_append_val (features, feature); return features; } static GArray * empathy_client_factory_dup_connection_features (TpSimpleClientFactory *factory, TpConnection *connection) { GArray *features; GQuark feature; features = chainup->dup_connection_features (factory, connection); feature = TP_CONNECTION_FEATURE_CAPABILITIES; g_array_append_val (features, feature); feature = TP_CONNECTION_FEATURE_AVATAR_REQUIREMENTS; g_array_append_val (features, feature); feature = TP_CONNECTION_FEATURE_CONTACT_INFO; g_array_append_val (features, feature); feature = TP_CONNECTION_FEATURE_BALANCE; g_array_append_val (features, feature); return features; } static void empathy_client_factory_class_init (EmpathyClientFactoryClass *cls) { TpSimpleClientFactoryClass *simple_class = (TpSimpleClientFactoryClass *) cls; simple_class->create_channel = empathy_client_factory_create_channel; simple_class->dup_channel_features = empathy_client_factory_dup_channel_features; simple_class->dup_account_features = empathy_client_factory_dup_account_features; simple_class->dup_connection_features = empathy_client_factory_dup_connection_features; } static void empathy_client_factory_init (EmpathyClientFactory *self) { } static EmpathyClientFactory * empathy_client_factory_new (TpDBusDaemon *dbus) { return g_object_new (EMPATHY_TYPE_CLIENT_FACTORY, "dbus-daemon", dbus, NULL); } EmpathyClientFactory * empathy_client_factory_dup (void) { static EmpathyClientFactory *singleton = NULL; TpDBusDaemon *dbus; GError *error = NULL; if (singleton != NULL) return g_object_ref (singleton); dbus = tp_dbus_daemon_dup (&error); if (dbus == NULL) { g_warning ("Failed to get TpDBusDaemon: %s", error->message); g_error_free (error); return NULL; } singleton = empathy_client_factory_new (dbus); g_object_unref (dbus); g_object_add_weak_pointer (G_OBJECT (singleton), (gpointer) &singleton); return singleton; }