]> git.0d.be Git - empathy.git/blobdiff - libempathy/empathy-utils.c
Switch to calling CallFactory to make calls
[empathy.git] / libempathy / empathy-utils.c
index dacd1668b16aba99d7d394ef582e8868b324cffb..a476d9e54da325cb192dd49737f0e9143710a95c 100644 (file)
 #include <string.h>
 #include <time.h>
 #include <sys/types.h>
-#include <regex.h>
 
-#include <glib/gi18n.h>
+#include <glib/gi18n-lib.h>
 
 #include <libxml/uri.h>
-#include <libtelepathy/tp-helpers.h>
-#include <libtelepathy/tp-conn.h>
+#include <telepathy-glib/connection.h>
+#include <telepathy-glib/channel.h>
+#include <telepathy-glib/dbus.h>
 
-#include "empathy-debug.h"
 #include "empathy-utils.h"
 #include "empathy-contact-factory.h"
 #include "empathy-contact-manager.h"
-#include "empathy-tp-group.h"
-
-#define DEBUG_DOMAIN "Utils"
+#include "empathy-dispatcher.h"
+#include "empathy-dispatch-operation.h"
+#include "empathy-idle.h"
+#include "empathy-tp-call.h"
 
-static void regex_init (void);
+#include <extensions/extensions.h>
 
-gchar *
-empathy_substring (const gchar *str,
-                 gint         start,
-                 gint         end)
-{
-       return g_strndup (str + start, end - start);
-}
-
-/*
- * Regular Expression code to match urls.
- */
-#define USERCHARS "-A-Za-z0-9"
-#define PASSCHARS "-A-Za-z0-9,?;.:/!%$^*&~\"#'"
-#define HOSTCHARS "-A-Za-z0-9"
-#define PATHCHARS "-A-Za-z0-9_$.+!*(),;:@&=?/~#%"
-#define SCHEME    "(news:|telnet:|nntp:|file:/|https?:|ftps?:|webcal:)"
-#define USER      "[" USERCHARS "]+(:["PASSCHARS "]+)?"
-#define URLPATH   "/[" PATHCHARS "]*[^]'.}>) \t\r\n,\\\"]"
+#define DEBUG_FLAG EMPATHY_DEBUG_OTHER
+#include "empathy-debug.h"
 
-static regex_t dingus[EMPATHY_REGEX_ALL];
 
-static void
-regex_init (void)
+void
+empathy_init (void)
 {
-       static gboolean  inited = FALSE;
-       const gchar     *expression;
-       gint             i;
+       static gboolean initialized = FALSE;
 
-       if (inited) {
+       if (initialized)
                return;
-       }
 
-       for (i = 0; i < EMPATHY_REGEX_ALL; i++) {
-               switch (i) {
-               case EMPATHY_REGEX_AS_IS:
-                       expression =
-                               SCHEME "//(" USER "@)?[" HOSTCHARS ".]+"
-                               "(:[0-9]+)?(" URLPATH ")?";
-                       break;
-               case EMPATHY_REGEX_BROWSER:
-                       expression =
-                               "(www|ftp)[" HOSTCHARS "]*\\.[" HOSTCHARS ".]+"
-                               "(:[0-9]+)?(" URLPATH ")?";
-                       break;
-               case EMPATHY_REGEX_EMAIL:
-                       expression =
-                               "(mailto:)?[a-z0-9][a-z0-9.-]*@[a-z0-9]"
-                               "[a-z0-9-]*(\\.[a-z0-9][a-z0-9-]*)+";
-                       break;
-               case EMPATHY_REGEX_OTHER:
-                       expression =
-                               "news:[-A-Z\\^_a-z{|}~!\"#$%&'()*+,./0-9;:=?`]+"
-                               "@[" HOSTCHARS ".]+(:[0-9]+)?";
-                       break;
-               default:
-                       /* Silence the compiler. */
-                       expression = NULL;
-                       continue;
-               }
+       g_type_init ();
 
-               memset (&dingus[i], 0, sizeof (regex_t));
-               regcomp (&dingus[i], expression, REG_EXTENDED | REG_ICASE);
-       }
-
-       inited = TRUE;
-}
+       /* Setup gettext */
+       bindtextdomain (GETTEXT_PACKAGE, LOCALEDIR);
+       bind_textdomain_codeset (GETTEXT_PACKAGE, "UTF-8");
 
-gint
-empathy_regex_match (EmpathyRegExType  type,
-                   const gchar     *msg,
-                   GArray          *start,
-                   GArray          *end)
-{
-       regmatch_t matches[1];
-       gint       ret = 0;
-       gint       num_matches = 0;
-       gint       offset = 0;
-       gint       i;
-
-       g_return_val_if_fail (type >= 0 || type <= EMPATHY_REGEX_ALL, 0);
-
-       regex_init ();
-
-       while (!ret && type != EMPATHY_REGEX_ALL) {
-               ret = regexec (&dingus[type], msg + offset, 1, matches, 0);
-               if (ret == 0) {
-                       gint s;
-
-                       num_matches++;
-
-                       s = matches[0].rm_so + offset;
-                       offset = matches[0].rm_eo + offset;
-
-                       g_array_append_val (start, s);
-                       g_array_append_val (end, offset);
-               }
-       }
-
-       if (type != EMPATHY_REGEX_ALL) {
-               empathy_debug (DEBUG_DOMAIN,
-                             "Found %d matches for regex type:%d",
-                             num_matches, type);
-               return num_matches;
+       /* Setup debug output for empathy and telepathy-glib */
+       if (g_getenv ("EMPATHY_TIMING") != NULL) {
+               g_log_set_default_handler (tp_debug_timestamped_log_handler, NULL);
        }
+       empathy_debug_set_flags (g_getenv ("EMPATHY_DEBUG"));
+       tp_debug_divert_messages (g_getenv ("EMPATHY_LOGFILE"));
 
-       /* If EMPATHY_REGEX_ALL then we run ALL regex's on the string. */
-       for (i = 0; i < EMPATHY_REGEX_ALL; i++, ret = 0) {
-               while (!ret) {
-                       ret = regexec (&dingus[i], msg + offset, 1, matches, 0);
-                       if (ret == 0) {
-                               gint s;
-
-                               num_matches++;
-
-                               s = matches[0].rm_so + offset;
-                               offset = matches[0].rm_eo + offset;
-
-                               g_array_append_val (start, s);
-                               g_array_append_val (end, offset);
-                       }
-               }
-       }
+       emp_cli_init ();
 
-       empathy_debug (DEBUG_DOMAIN,
-                     "Found %d matches for ALL regex types",
-                     num_matches);
+       initialized = TRUE;
+}
 
-       return num_matches;
+gchar *
+empathy_substring (const gchar *str,
+                 gint         start,
+                 gint         end)
+{
+       return g_strndup (str + start, end - start);
 }
 
 gint
@@ -210,12 +118,13 @@ empathy_xml_validate (xmlDoc      *doc,
        xmlDtd       *dtd;
        gboolean      ret;
 
-       path = g_build_filename (UNINSTALLED_DTD_DIR, dtd_filename, NULL);
+       path = g_build_filename (g_getenv ("EMPATHY_SRCDIR"), "libempathy",
+                                dtd_filename, NULL);
        if (!g_file_test (path, G_FILE_TEST_EXISTS)) {
                g_free (path);
                path = g_build_filename (DATADIR, "empathy", dtd_filename, NULL);
        }
-       empathy_debug (DEBUG_DOMAIN, "Loading dtd file %s", path);
+       DEBUG ("Loading dtd file %s", path);
 
        /* The list of valid chars is taken from libxml. */
        escaped = xmlURIEscapeStr (path, ":@&=+$,/?;");
@@ -321,7 +230,7 @@ empathy_account_equal (gconstpointer a,
 }
 
 MissionControl *
-empathy_mission_control_new (void)
+empathy_mission_control_dup_singleton (void)
 {
        static MissionControl *mc = NULL;
 
@@ -335,203 +244,6 @@ empathy_mission_control_new (void)
        return mc;
 }
 
-gchar *
-empathy_inspect_channel (McAccount *account,
-                        TpChan    *tp_chan)
-{
-       g_return_val_if_fail (MC_IS_ACCOUNT (account), NULL);
-       g_return_val_if_fail (TELEPATHY_IS_CHAN (tp_chan), NULL);
-
-       return empathy_inspect_handle (account,
-                                      tp_chan->handle,
-                                      tp_chan->handle_type);
-}
-
-gchar *
-empathy_inspect_handle (McAccount *account,
-                       guint      handle,
-                       guint      handle_type)
-{
-       MissionControl  *mc;
-       TpConn          *tp_conn;
-       GArray          *handles;
-       gchar          **names;
-       gchar           *name;
-       GError          *error = NULL;
-
-       g_return_val_if_fail (MC_IS_ACCOUNT (account), NULL);
-       g_return_val_if_fail (handle != 0, NULL);
-       g_return_val_if_fail (handle_type != 0, NULL);
-
-       mc = empathy_mission_control_new ();
-       tp_conn = mission_control_get_connection (mc, account, NULL);
-       g_object_unref (mc);
-
-       if (!tp_conn) {
-               return NULL;
-       }
-
-       /* Get the handle's name */
-       handles = g_array_new (FALSE, FALSE, sizeof (guint));
-       g_array_append_val (handles, handle);
-       if (!tp_conn_inspect_handles (DBUS_G_PROXY (tp_conn),
-                                     handle_type,
-                                     handles,
-                                     &names,
-                                     &error)) {
-               empathy_debug (DEBUG_DOMAIN, 
-                             "Couldn't get id: %s",
-                             error ? error->message : "No error given");
-
-               g_clear_error (&error);
-               g_array_free (handles, TRUE);
-               g_object_unref (tp_conn);
-               
-               return NULL;
-       }
-
-       g_array_free (handles, TRUE);
-       name = *names;
-       g_free (names);
-       g_object_unref (tp_conn);
-
-       return name;
-}
-
-void
-empathy_call_with_contact (EmpathyContact *contact)
-{
-#ifdef HAVE_VOIP
-       MissionControl        *mc;
-       McAccount             *account;
-       TpConn                *tp_conn;
-       gchar                 *object_path;
-       const gchar           *bus_name;
-       TpChan                *new_chan;
-       EmpathyContactFactory *factory;
-       EmpathyTpGroup        *group;
-       EmpathyContact        *self_contact;
-       GError                *error = NULL;
-
-       g_return_if_fail (EMPATHY_IS_CONTACT (contact));
-
-       /* StreamedMedia channels must have handle=0 and handle_type=none.
-        * To call a contact we have to add him in the group interface of the
-        * channel. MissionControl will detect the channel creation and 
-        * dispatch it to the VoIP chandler automatically. */
-
-       mc = empathy_mission_control_new ();
-       account = empathy_contact_get_account (contact);
-       tp_conn = mission_control_get_connection (mc, account, NULL);
-       /* FIXME: Should be async */
-       if (!tp_conn_request_channel (DBUS_G_PROXY (tp_conn),
-                                     TP_IFACE_CHANNEL_TYPE_STREAMED_MEDIA,
-                                     TP_HANDLE_TYPE_NONE,
-                                     0,
-                                     FALSE,
-                                     &object_path,
-                                     &error)) {
-               empathy_debug (DEBUG_DOMAIN, 
-                             "Couldn't request channel: %s",
-                             error ? error->message : "No error given");
-               g_clear_error (&error);
-               g_object_unref (mc);
-               g_object_unref (tp_conn);
-               return;
-       }
-
-       bus_name = dbus_g_proxy_get_bus_name (DBUS_G_PROXY (tp_conn));
-       new_chan = tp_chan_new (tp_get_bus (),
-                               bus_name,
-                               object_path,
-                               TP_IFACE_CHANNEL_TYPE_STREAMED_MEDIA,
-                               TP_HANDLE_TYPE_NONE,
-                               0);
-
-       group = empathy_tp_group_new (account, new_chan);
-       factory = empathy_contact_factory_new ();
-       self_contact = empathy_contact_factory_get_user (factory, account);
-       empathy_tp_group_add_member (group, contact, "");
-       empathy_tp_group_add_member (group, self_contact, "");  
-
-       g_object_unref (factory);
-       g_object_unref (self_contact);
-       g_object_unref (group);
-       g_object_unref (mc);
-       g_object_unref (tp_conn);
-       g_object_unref (new_chan);
-       g_free (object_path);
-#endif
-}
-
-#ifdef HAVE_VOIP
-static void
-got_handle_cb (EmpathyContact        *contact, 
-              GParamSpec            *property,
-              EmpathyContactFactory *factory)
-{
-       g_signal_handlers_disconnect_by_func (contact,
-                                             got_handle_cb,
-                                             factory);
-
-       empathy_call_with_contact (contact);
-       g_object_unref (factory);
-       g_object_unref (contact);
-}
-#endif
-
-void
-empathy_call_with_contact_id (McAccount *account, const gchar *contact_id)
-{
-#ifdef HAVE_VOIP
-       EmpathyContactFactory *factory;
-       EmpathyContact        *contact;
-
-       factory = empathy_contact_factory_new ();
-       contact = empathy_contact_factory_get_from_id (factory, account, contact_id);
-
-       if (empathy_contact_get_handle (contact) != 0) {
-               empathy_call_with_contact (contact);
-               g_object_unref (contact);
-               g_object_unref (factory);
-       } else {
-               g_signal_connect (contact, "notify::handle",
-                                 G_CALLBACK (got_handle_cb),
-                                 factory);
-       }
-#endif
-}
-
-void
-empathy_chat_with_contact (EmpathyContact  *contact)
-{
-       MissionControl *mc;
-
-       mc = empathy_mission_control_new ();
-       mission_control_request_channel (mc,
-                                        empathy_contact_get_account (contact),
-                                        TP_IFACE_CHANNEL_TYPE_TEXT,
-                                        empathy_contact_get_handle (contact),
-                                        TP_HANDLE_TYPE_CONTACT,
-                                        NULL, NULL);
-       g_object_unref (mc);
-}
-
-void
-empathy_chat_with_contact_id (McAccount *account, const gchar *contact_id)
-{
-       MissionControl *mc;
-
-       mc = empathy_mission_control_new ();
-       mission_control_request_channel_with_string_handle (mc,
-                                                           account,
-                                                           TP_IFACE_CHANNEL_TYPE_TEXT,
-                                                           contact_id,
-                                                           TP_HANDLE_TYPE_CONTACT,
-                                                           NULL, NULL);
-       g_object_unref (mc);
-}
-
 const gchar *
 empathy_presence_get_default_message (McPresence presence)
 {
@@ -599,6 +311,162 @@ empathy_presence_from_str (const gchar *str)
                return MC_PRESENCE_UNSET;
        }
 
-       return MC_PRESENCE_AVAILABLE;
+       return MC_PRESENCE_UNSET;
 }
 
+gchar *
+empathy_file_lookup (const gchar *filename, const gchar *subdir)
+{
+       gchar *path;
+
+       if (!subdir) {
+               subdir = ".";
+       }
+
+       path = g_build_filename (g_getenv ("EMPATHY_SRCDIR"), subdir, filename, NULL);
+       if (!g_file_test (path, G_FILE_TEST_EXISTS)) {
+               g_free (path);
+               path = g_build_filename (DATADIR, "empathy", filename, NULL);
+       }
+
+       return path;
+}
+
+typedef struct {
+       EmpathyRunUntilReadyFunc  func;
+       gpointer                  user_data;
+       GObject                  *object;
+       GMainLoop                *loop;
+} RunUntilReadyData;
+
+static void
+run_until_ready_cb (RunUntilReadyData *data)
+{
+       if (!data->func || data->func (data->object, data->user_data)) {
+               DEBUG ("Object %p is ready", data->object);
+               g_main_loop_quit (data->loop);
+       }
+}
+
+static gboolean
+object_is_ready (GObject *object,
+                gpointer user_data)
+{
+       gboolean ready;
+
+       g_object_get (object, "ready", &ready, NULL);
+
+       return ready;
+}
+
+void
+empathy_run_until_ready_full (gpointer                  object,
+                             const gchar              *signal,
+                             EmpathyRunUntilReadyFunc  func,
+                             gpointer                  user_data,
+                             GMainLoop               **loop)
+{
+       RunUntilReadyData  data;
+       gulong             signal_id;
+
+       g_return_if_fail (G_IS_OBJECT (object));
+       g_return_if_fail (signal != NULL);
+
+       if (func && func (object, user_data)) {
+               return;
+       }
+
+       DEBUG ("Starting run until ready for object %p", object);
+
+       data.func = func;
+       data.user_data = user_data;
+       data.object = object;
+       data.loop = g_main_loop_new (NULL, FALSE);
+
+       signal_id = g_signal_connect_swapped (object, signal,
+                                             G_CALLBACK (run_until_ready_cb),
+                                             &data);
+       if (loop != NULL) {
+               *loop = data.loop;
+       }
+
+       g_main_loop_run (data.loop);
+
+       if (loop != NULL) {
+               *loop = NULL;
+       }
+
+       g_signal_handler_disconnect (object, signal_id);
+       g_main_loop_unref (data.loop);
+}
+
+void
+empathy_run_until_ready (gpointer object)
+{
+       empathy_run_until_ready_full (object, "notify::ready", object_is_ready,
+                                     NULL, NULL);
+}
+
+McAccount *
+empathy_channel_get_account (TpChannel *channel)
+{
+       TpConnection   *connection;
+       McAccount      *account;
+       MissionControl *mc;
+
+       g_object_get (channel, "connection", &connection, NULL);
+       mc = empathy_mission_control_dup_singleton ();
+       account = mission_control_get_account_for_tpconnection (mc, connection, NULL);
+       g_object_unref (connection);
+       g_object_unref (mc);
+
+       return account;
+}
+
+guint
+empathy_proxy_hash (gconstpointer key)
+{
+       TpProxy      *proxy = TP_PROXY (key);
+       TpProxyClass *proxy_class = TP_PROXY_GET_CLASS (key);
+
+       g_return_val_if_fail (TP_IS_PROXY (proxy), 0);
+       g_return_val_if_fail (proxy_class->must_have_unique_name, 0);
+
+       return g_str_hash (proxy->object_path) ^ g_str_hash (proxy->bus_name);
+}
+
+gboolean
+empathy_proxy_equal (gconstpointer a,
+                    gconstpointer b)
+{
+       TpProxy *proxy_a = TP_PROXY (a);
+       TpProxy *proxy_b = TP_PROXY (b);
+       TpProxyClass *proxy_a_class = TP_PROXY_GET_CLASS (a);
+       TpProxyClass *proxy_b_class = TP_PROXY_GET_CLASS (b);
+
+       g_return_val_if_fail (TP_IS_PROXY (proxy_a), FALSE);
+       g_return_val_if_fail (TP_IS_PROXY (proxy_b), FALSE);
+       g_return_val_if_fail (proxy_a_class->must_have_unique_name, 0);
+       g_return_val_if_fail (proxy_b_class->must_have_unique_name, 0);
+
+       return g_str_equal (proxy_a->object_path, proxy_b->object_path) &&
+              g_str_equal (proxy_a->bus_name, proxy_b->bus_name);
+}
+
+gboolean
+empathy_check_available_state (void)
+{
+       McPresence presence;
+       EmpathyIdle *idle;
+
+       idle = empathy_idle_dup_singleton ();
+       presence = empathy_idle_get_state (idle);
+       g_object_unref (idle);
+
+       if (presence != MC_PRESENCE_AVAILABLE &&
+               presence != MC_PRESENCE_UNSET) {
+               return FALSE;    
+       }
+
+       return TRUE;
+}