]> git.0d.be Git - empathy.git/commitdiff
Move chats to its own process.
authorXavier Claessens <xclaesse@gmail.com>
Sun, 11 Nov 2007 14:42:34 +0000 (14:42 +0000)
committerXavier Claessens <xclaesse@src.gnome.org>
Sun, 11 Nov 2007 14:42:34 +0000 (14:42 +0000)
2007-11-11  Xavier Claessens  <xclaesse@gmail.com>

* libempathy-gtk/empathy-chat.c:
* src/empathy-call-chandler.c:
* src/org.gnome.Empathy.Chat.service.in:
* src/empathy-chat-chandler.c:
* src/empathy.c:
* src/Makefile.am: Move chats to its own process.

svn path=/trunk/; revision=429

ChangeLog
libempathy-gtk/empathy-chat.c
src/Makefile.am
src/empathy-call-chandler.c
src/empathy-chat-chandler.c [new file with mode: 0644]
src/empathy.c
src/org.gnome.Empathy.Chat.service.in

index ce861c2475187864136399885d98ff75810cc7e4..de1f761b8c3304da41126290e5162bbb2bb48328 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,12 @@
+2007-11-11  Xavier Claessens  <xclaesse@gmail.com>
+
+       * libempathy-gtk/empathy-chat.c:
+       * src/empathy-call-chandler.c:
+       * src/org.gnome.Empathy.Chat.service.in:
+       * src/empathy-chat-chandler.c:
+       * src/empathy.c:
+       * src/Makefile.am: Move chats to its own process.
+
 2007-11-07  Xavier Claessens  <xclaesse@gmail.com>
 
        * src/org.gnome.Empathy.Call.service.in:
index 944bc10b58ddcb3f84a12401641b02163e29c2df..edff73a3e9b452d031ba7bb0fee1d076cad794a5 100644 (file)
@@ -63,7 +63,6 @@
 #define COMPOSING_STOP_TIMEOUT 5
 
 struct _EmpathyChatPriv {
-       EmpathyContactManager *manager;
        EmpathyLogManager     *log_manager;
        EmpathyTpChat         *tp_chat;
        EmpathyChatWindow      *window;
@@ -234,7 +233,6 @@ empathy_chat_init (EmpathyChat *chat)
 
        priv = GET_PRIV (chat);
 
-       priv->manager = empathy_contact_manager_new ();
        priv->log_manager = empathy_log_manager_new ();
        priv->default_window_height = -1;
        priv->vscroll_visible = FALSE;
@@ -299,7 +297,6 @@ chat_finalize (GObject *object)
 
        chat_composing_remove_timeout (chat);
        g_object_unref (chat->account);
-       g_object_unref (priv->manager);
        g_object_unref (priv->log_manager);
 
        if (priv->tp_chat) {
index 21bd6324883ac1bf89cc47f03d2737e3f2dc378f..ede2b2a014b81ff68fcef4699a189b1e9f947289 100644 (file)
@@ -17,12 +17,15 @@ LDADD =                                                             \
 bin_PROGRAMS =                 \
        empathy                 \
        empathy-accounts
+
 libexec_PROGRAMS =             \
-       empathy-call-chandler
+       empathy-call-chandler   \
+       empathy-chat-chandler
 
 empathy_SOURCES = empathy.c
 empathy_accounts_SOURCES = empathy-accounts.c
 empathy_call_chandler_SOURCES = empathy-call-chandler.c
+empathy_chat_chandler_SOURCES = empathy-chat-chandler.c
 
 # Dbus service files
 servicedir = $(datadir)/dbus-1/services
index bb88747f436ee5ba6c9bedf8150001c0eed3006a..8833bcbcc3031135fd2f4631b02b9a98fd81dd6a 100644 (file)
  *  Authors: Elliot Fairweather <elliot.fairweather@collabora.co.uk>
  */
 
+#include <config.h>
+
 #include <stdlib.h>
 
+#include <glib.h>
+#include <glib/gi18n.h>
 #include <gtk/gtk.h>
 
+#include <libgnomevfs/gnome-vfs.h>
+
 #include <libmissioncontrol/mission-control.h>
 
 #include <libempathy/empathy-chandler.h>
@@ -59,8 +65,18 @@ main (int argc, char *argv[])
        EmpathyChandler *chandler;
        MissionControl  *mc;
 
+       empathy_debug_set_log_file_from_env ();
+
+       bindtextdomain (GETTEXT_PACKAGE, LOCALEDIR);
+       bind_textdomain_codeset (GETTEXT_PACKAGE, "UTF-8");
+       textdomain (GETTEXT_PACKAGE);
+
        gtk_init (&argc, &argv);
 
+       gtk_window_set_default_icon_name ("empathy");
+       gtk_icon_theme_append_search_path (gtk_icon_theme_get_default (),
+                                          PKGDATADIR G_DIR_SEPARATOR_S "icons");
+
        mc = empathy_mission_control_new ();
        chandler = empathy_chandler_new (BUS_NAME, OBJECT_PATH);
        g_signal_connect (chandler, "new-channel",
diff --git a/src/empathy-chat-chandler.c b/src/empathy-chat-chandler.c
new file mode 100644 (file)
index 0000000..c178f7b
--- /dev/null
@@ -0,0 +1,135 @@
+/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
+/*
+ * Copyright (C) 2007 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., 59 Temple Place - Suite 330,
+ * Boston, MA 02111-1307, USA.
+ * 
+ * Authors: Xavier Claessens <xclaesse@gmail.com>
+ */
+
+#include <config.h>
+
+#include <stdlib.h>
+
+#include <glib.h>
+#include <glib/gi18n.h>
+#include <gtk/gtk.h>
+
+#include <libgnomevfs/gnome-vfs.h>
+
+#include <libmissioncontrol/mission-control.h>
+
+#include <libempathy/empathy-chandler.h>
+#include <libempathy/empathy-utils.h>
+#include <libempathy/empathy-tp-chat.h>
+#include <libempathy/empathy-tp-chatroom.h>
+#include <libempathy/empathy-debug.h>
+
+#include <libempathy-gtk/empathy-chat.h>
+#include <libempathy-gtk/empathy-private-chat.h>
+#include <libempathy-gtk/empathy-group-chat.h>
+#include <libempathy-gtk/empathy-chat-window.h>
+
+#define DEBUG_DOMAIN "EmpathyChat"
+
+#define BUS_NAME "org.gnome.Empathy.Chat"
+#define OBJECT_PATH "/org/freedesktop/Telepathy/ChannelHandler"
+
+static void
+chat_chandler_new_channel_cb (EmpathyChandler *chandler,
+                             TpConn          *tp_conn,
+                             TpChan          *tp_chan,
+                             MissionControl  *mc)
+{
+       McAccount   *account;
+       EmpathyChat *chat;
+       gchar       *id;
+
+       account = mission_control_get_account_for_connection (mc, tp_conn, NULL);
+       id = empathy_inspect_channel (account, tp_chan);
+       chat = empathy_chat_window_find_chat (account, id);
+       g_free (id);
+
+       if (chat) {
+               /* The chat already exists */
+               if (!empathy_chat_is_connected (chat)) {
+                       EmpathyTpChat *tp_chat;
+
+                       /* The chat died, give him the new text channel */
+                       if (empathy_chat_is_group_chat (chat)) {
+                               tp_chat = EMPATHY_TP_CHAT (empathy_tp_chatroom_new (account, tp_chan));
+                       } else {
+                               tp_chat = empathy_tp_chat_new (account, tp_chan);
+                       }
+                       empathy_chat_set_tp_chat (chat, tp_chat);
+                       g_object_unref (tp_chat);
+               }
+               empathy_chat_present (chat);
+
+               g_object_unref (account);
+               return;
+       }
+
+       if (tp_chan->handle_type == TP_HANDLE_TYPE_CONTACT) {
+               /* We have a new private chat channel */
+               chat = EMPATHY_CHAT (empathy_private_chat_new (account, tp_chan));
+       }
+       else if (tp_chan->handle_type == TP_HANDLE_TYPE_ROOM) {
+               /* We have a new group chat channel */
+               chat = EMPATHY_CHAT (empathy_group_chat_new (account, tp_chan));
+       }
+
+       empathy_chat_present (EMPATHY_CHAT (chat));
+
+       g_object_unref (chat);
+       g_object_unref (account);
+}
+
+int
+main (int argc, char *argv[])
+{
+       EmpathyChandler *chandler;
+       MissionControl  *mc;
+
+       empathy_debug_set_log_file_from_env ();
+
+       bindtextdomain (GETTEXT_PACKAGE, LOCALEDIR);
+       bind_textdomain_codeset (GETTEXT_PACKAGE, "UTF-8");
+       textdomain (GETTEXT_PACKAGE);
+
+       gtk_init (&argc, &argv);
+
+       gtk_window_set_default_icon_name ("empathy");
+       gtk_icon_theme_append_search_path (gtk_icon_theme_get_default (),
+                                          PKGDATADIR G_DIR_SEPARATOR_S "icons");
+       gnome_vfs_init ();
+
+       mc = empathy_mission_control_new ();
+       chandler = empathy_chandler_new (BUS_NAME, OBJECT_PATH);
+       g_signal_connect (chandler, "new-channel",
+                         G_CALLBACK (chat_chandler_new_channel_cb),
+                         mc);
+
+       empathy_debug (DEBUG_DOMAIN, "Ready to handle new text channels");
+
+       gtk_main ();
+
+       g_object_unref (chandler);
+       g_object_unref (mc);
+
+       return EXIT_SUCCESS;
+}
+
index e23795f72f6c8c83c4035eed7032fd4a3e5d2e5b..fef01b808ed4512512b22ef1b2d6a9269da8c9fd 100644 (file)
 #include <libebook/e-book.h>
 #include <libgnomevfs/gnome-vfs.h>
 
-#include <libtelepathy/tp-conn.h>
-#include <libtelepathy/tp-chan.h>
 #include <libmissioncontrol/mc-account.h>
 #include <libmissioncontrol/mc-account-monitor.h>
 #include <libmissioncontrol/mission-control.h>
 
-#include <libempathy/empathy-debug.h>
-#include <libempathy/empathy-utils.h>
-#include <libempathy/empathy-presence.h>
-#include <libempathy/empathy-contact.h>
-#include <libempathy/empathy-chandler.h>
-#include <libempathy/empathy-tp-chat.h>
-#include <libempathy/empathy-tp-chatroom.h>
 #include <libempathy/empathy-idle.h>
 #include <libempathy/empathy-conf.h>
+#include <libempathy/empathy-utils.h>
+#include <libempathy/empathy-debug.h>
+
 #include <libempathy-gtk/empathy-preferences.h>
 #include <libempathy-gtk/empathy-main-window.h>
 #include <libempathy-gtk/empathy-status-icon.h>
-#include <libempathy-gtk/empathy-private-chat.h>
-#include <libempathy-gtk/empathy-group-chat.h>
 
 #define DEBUG_DOMAIN "EmpathyMain"
 
-#define BUS_NAME "org.gnome.Empathy.Chat"
-#define OBJECT_PATH "/org/freedesktop/Telepathy/ChannelHandler"
-
 static void
 service_ended_cb (MissionControl *mc,
                  gpointer        user_data)
@@ -99,56 +88,6 @@ account_enabled_cb (McAccountMonitor *monitor,
        start_mission_control (idle);
 }
 
-static void
-new_channel_cb (EmpathyChandler *chandler,
-               TpConn          *tp_conn,
-               TpChan          *tp_chan,
-               MissionControl  *mc)
-{
-       McAccount  *account;
-       EmpathyChat *chat;
-       gchar      *id;
-
-       account = mission_control_get_account_for_connection (mc, tp_conn, NULL);
-       id = empathy_inspect_channel (account, tp_chan);
-       chat = empathy_chat_window_find_chat (account, id);
-       g_free (id);
-
-       if (chat) {
-               /* The chat already exists */
-               if (!empathy_chat_is_connected (chat)) {
-                       EmpathyTpChat *tp_chat;
-
-                       /* The chat died, give him the new text channel */
-                       if (empathy_chat_is_group_chat (chat)) {
-                               tp_chat = EMPATHY_TP_CHAT (empathy_tp_chatroom_new (account, tp_chan));
-                       } else {
-                               tp_chat = empathy_tp_chat_new (account, tp_chan);
-                       }
-                       empathy_chat_set_tp_chat (chat, tp_chat);
-                       g_object_unref (tp_chat);
-               }
-               empathy_chat_present (chat);
-
-               g_object_unref (account);
-               return;
-       }
-
-       if (tp_chan->handle_type == TP_HANDLE_TYPE_CONTACT) {
-               /* We have a new private chat channel */
-               chat = EMPATHY_CHAT (empathy_private_chat_new (account, tp_chan));
-       }
-       else if (tp_chan->handle_type == TP_HANDLE_TYPE_ROOM) {
-               /* We have a new group chat channel */
-               chat = EMPATHY_CHAT (empathy_group_chat_new (account, tp_chan));
-       }
-
-       empathy_chat_present (EMPATHY_CHAT (chat));
-
-       g_object_unref (chat);
-       g_object_unref (account);
-}
-
 static void
 create_salut_account (void)
 {
@@ -263,7 +202,6 @@ main (int argc, char *argv[])
        MissionControl    *mc;
        McAccountMonitor  *monitor;
        EmpathyIdle       *idle;
-       EmpathyChandler   *chandler;
        gboolean           no_connect = FALSE;
        GError            *error = NULL;
        GOptionEntry       options[] = {
@@ -318,17 +256,10 @@ main (int argc, char *argv[])
        window = empathy_main_window_show ();
        icon = empathy_status_icon_new (GTK_WINDOW (window));
 
-       /* Setting up channel handler  */
-       chandler = empathy_chandler_new (BUS_NAME, OBJECT_PATH);
-       g_signal_connect (chandler, "new-channel",
-                         G_CALLBACK (new_channel_cb),
-                         mc);
-
        gtk_main ();
 
        empathy_idle_set_state (idle, MC_PRESENCE_OFFLINE);
 
-       g_object_unref (chandler);
        g_object_unref (monitor);
        g_object_unref (mc);
        g_object_unref (idle);
index 071c96e9605f823cf5893a04d3be83f41da5bcf4..89031f3dce6efa6cd1917e65a70ed6f76e5c7b5e 100644 (file)
@@ -1,3 +1,3 @@
 [D-BUS Service]
 Name=org.gnome.Empathy.Chat
-Exec=@bindir@/empathy
+Exec=@libexecdir@/empathy-chat-chandler