diff options
author | Xavier Claessens <xclaesse@src.gnome.org> | 2008-04-20 05:04:23 +0800 |
---|---|---|
committer | Xavier Claessens <xclaesse@src.gnome.org> | 2008-04-20 05:04:23 +0800 |
commit | 4c27cbce2a1e6d1b51c3a7f1a983c1278506120e (patch) | |
tree | 1af396319a7f82ae06a51bd40addd8bc2a583fa2 /libempathy/empathy-tube-handler.c | |
parent | 14ed90780c03a6d14601cd898d048b70d4a941a9 (diff) | |
download | gsoc2013-empathy-4c27cbce2a1e6d1b51c3a7f1a983c1278506120e.tar gsoc2013-empathy-4c27cbce2a1e6d1b51c3a7f1a983c1278506120e.tar.gz gsoc2013-empathy-4c27cbce2a1e6d1b51c3a7f1a983c1278506120e.tar.bz2 gsoc2013-empathy-4c27cbce2a1e6d1b51c3a7f1a983c1278506120e.tar.lz gsoc2013-empathy-4c27cbce2a1e6d1b51c3a7f1a983c1278506120e.tar.xz gsoc2013-empathy-4c27cbce2a1e6d1b51c3a7f1a983c1278506120e.tar.zst gsoc2013-empathy-4c27cbce2a1e6d1b51c3a7f1a983c1278506120e.zip |
Change the way tube handler's object-path and bus-name are build.
svn path=/trunk/; revision=984
Diffstat (limited to 'libempathy/empathy-tube-handler.c')
-rw-r--r-- | libempathy/empathy-tube-handler.c | 63 |
1 files changed, 57 insertions, 6 deletions
diff --git a/libempathy/empathy-tube-handler.c b/libempathy/empathy-tube-handler.c index 0005a369d..3e363837f 100644 --- a/libempathy/empathy-tube-handler.c +++ b/libempathy/empathy-tube-handler.c @@ -27,6 +27,7 @@ #include <telepathy-glib/connection.h> #include <telepathy-glib/channel.h> #include <telepathy-glib/interfaces.h> +#include <telepathy-glib/util.h> #include <extensions/extensions.h> @@ -146,14 +147,21 @@ empathy_tube_handler_init (EmpathyTubeHandler *thandler) } EmpathyTubeHandler * -empathy_tube_handler_new (const gchar *bus_name, - const gchar *object_path) +empathy_tube_handler_new (TpTubeType type, const gchar *service) { - EmpathyTubeHandler *thandler; + EmpathyTubeHandler *thandler = NULL; DBusGProxy *proxy; guint result; + gchar *bus_name; + gchar *object_path; GError *error = NULL; + g_return_val_if_fail (type <= TP_TUBE_TYPE_STREAM, NULL); + g_return_val_if_fail (service != NULL, NULL); + + bus_name = empathy_tube_handler_build_bus_name (type, service); + object_path = empathy_tube_handler_build_object_path (type, service); + proxy = dbus_g_proxy_new_for_name (tp_get_bus (), DBUS_SERVICE_DBUS, DBUS_PATH_DBUS, DBUS_INTERFACE_DBUS); @@ -164,15 +172,58 @@ empathy_tube_handler_new (const gchar *bus_name, empathy_debug (DEBUG_DOMAIN, "Failed to request name: %s", error ? error->message : "No error given"); g_clear_error (&error); - return NULL; + goto OUT; } - g_object_unref (proxy); - thandler = g_object_new (EMPATHY_TYPE_TUBE_HANDLER, NULL); dbus_g_connection_register_g_object (tp_get_bus (), object_path, G_OBJECT (thandler)); +OUT: + g_object_unref (proxy); + g_free (bus_name); + g_free (object_path); + return thandler; } +gchar * +empathy_tube_handler_build_bus_name (TpTubeType type, const gchar *service) +{ + gchar *service_escaped; + gchar *str = NULL; + + g_return_val_if_fail (type <= TP_TUBE_TYPE_STREAM, NULL); + g_return_val_if_fail (service != NULL, NULL); + + service_escaped = tp_escape_as_identifier (service); + if (type == TP_TUBE_TYPE_DBUS) + str = g_strdup_printf ("org.gnome.Empathy.DTubeHandler.%s", service); + else if (type == TP_TUBE_TYPE_STREAM) + str = g_strdup_printf ("org.gnome.Empathy.StreamTubeHandler.%s", service); + + g_free (service_escaped); + + return str; +} + +gchar * +empathy_tube_handler_build_object_path (TpTubeType type, const gchar *service) +{ + gchar *service_escaped; + gchar *str = NULL; + + g_return_val_if_fail (type <= TP_TUBE_TYPE_STREAM, NULL); + g_return_val_if_fail (service != NULL, NULL); + + service_escaped = tp_escape_as_identifier (service); + if (type == TP_TUBE_TYPE_DBUS) + str = g_strdup_printf ("/org/gnome/Empathy/DTubeHandler/%s", service); + else if (type == TP_TUBE_TYPE_STREAM) + str = g_strdup_printf ("/org/gnome/Empathy/StreamTubeHandler/%s", service); + + g_free (service_escaped); + + return str; +} + |