1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
|
/* -*- 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 <libtelepathy/tp-helpers.h>
#include <libmissioncontrol/mc-account-monitor.h>
#include <libmissioncontrol/mission-control.h>
#include <libempathy/gossip-debug.h>
#define DEBUG_DOMAIN "Launcher"
static void error_cb (MissionControl *mc,
GError *error,
gpointer data);
static void service_ended_cb (MissionControl *mc,
gpointer user_data);
static void start_mission_control (MissionControl *mc);
static void
error_cb (MissionControl *mc,
GError *error,
gpointer data)
{
if (error) {
gossip_debug (DEBUG_DOMAIN, "Error: %s", error->message);
}
}
static void
service_ended_cb (MissionControl *mc,
gpointer user_data)
{
gossip_debug (DEBUG_DOMAIN, "Mission Control stopped");
}
static void
account_enabled_cb (McAccountMonitor *monitor,
gchar *unique_name,
MissionControl *mc)
{
gossip_debug (DEBUG_DOMAIN, "Account enabled: %s", unique_name);
start_mission_control (mc);
}
static void
start_mission_control (MissionControl *mc)
{
McPresence presence;
presence = mission_control_get_presence_actual (mc, NULL);
if (presence != MC_PRESENCE_UNSET &&
presence != MC_PRESENCE_OFFLINE) {
/* MC is already running and online, nothing to do */
return;
}
gossip_debug (DEBUG_DOMAIN, "Starting Mission Control...");
/* FIXME: Save/Restore status message */
mission_control_set_presence (mc, MC_PRESENCE_AVAILABLE,
NULL,
(McCallback) error_cb,
NULL);
mission_control_connect_all_with_default_presence (mc,
(McCallback) error_cb,
NULL);
}
int
main (int argc, char *argv[])
{
GMainLoop *main_loop;
MissionControl *mc;
McAccountMonitor *monitor;
g_type_init ();
main_loop = g_main_loop_new (NULL, FALSE);
monitor = mc_account_monitor_new ();
mc = mission_control_new (tp_get_bus ());
g_signal_connect (monitor, "account-enabled",
G_CALLBACK (account_enabled_cb),
mc);
g_signal_connect (mc, "ServiceEnded",
G_CALLBACK (service_ended_cb),
NULL);
start_mission_control (mc);
g_main_loop_run (main_loop);
g_object_unref (monitor);
g_object_unref (mc);
return 0;
}
|