2 * Copyright (C) 2007-2011 Collabora Ltd.
4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Lesser General Public
6 * License as published by the Free Software Foundation; either
7 * version 2.1 of the License, or (at your option) any later version.
9 * This library is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * Lesser General Public License for more details.
14 * You should have received a copy of the GNU Lesser General Public
15 * License along with this library; if not, write to the Free Software
16 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
18 * Authors: Xavier Claessens <xclaesse@gmail.com>
22 #include "empathy-presence-manager.h"
24 #include <tp-account-widgets/tpaw-utils.h>
26 #include "empathy-utils.h"
28 #define DEBUG_FLAG EMPATHY_DEBUG_OTHER
29 #include "empathy-debug.h"
31 /* Number of seconds before entering extended autoaway. */
32 #define EXT_AWAY_TIME (30*60)
34 /* Number of seconds to consider an account in the "just connected" state
36 #define ACCOUNT_IS_JUST_CONNECTED_SECONDS 10
38 struct _EmpathyPresenceManagerPrivate
44 TpConnectionPresenceType state
;
48 TpConnectionPresenceType away_saved_state
;
51 guint ext_away_timeout
;
53 TpAccountManager
*manager
;
55 /* pointer to a TpAccount --> glong of time of connection */
56 GHashTable
*connect_times
;
58 TpConnectionPresenceType requested_presence_type
;
59 gchar
*requested_status_message
;
64 SESSION_STATUS_AVAILABLE
,
65 SESSION_STATUS_INVISIBLE
,
68 SESSION_STATUS_UNKNOWN
79 G_DEFINE_TYPE (EmpathyPresenceManager
, empathy_presence_manager
, G_TYPE_OBJECT
);
81 static EmpathyPresenceManager
* singleton
= NULL
;
83 static const gchar
*presence_type_to_status
[TP_NUM_CONNECTION_PRESENCE_TYPES
] =
97 most_available_presence_changed (TpAccountManager
*manager
,
98 TpConnectionPresenceType state
,
100 gchar
*status_message
,
101 EmpathyPresenceManager
*self
)
103 if (state
== TP_CONNECTION_PRESENCE_TYPE_UNSET
)
104 /* Assume our presence is offline if MC reports UNSET */
105 state
= TP_CONNECTION_PRESENCE_TYPE_OFFLINE
;
107 DEBUG ("Presence changed to '%s' (%d) \"%s\"", status
, state
,
110 g_free (self
->priv
->status
);
111 self
->priv
->state
= state
;
112 if (TPAW_STR_EMPTY (status_message
))
113 self
->priv
->status
= NULL
;
115 self
->priv
->status
= g_strdup (status_message
);
117 g_object_notify (G_OBJECT (self
), "state");
118 g_object_notify (G_OBJECT (self
), "status");
122 ext_away_cb (EmpathyPresenceManager
*self
)
124 DEBUG ("Going to extended autoaway");
125 empathy_presence_manager_set_state (self
,
126 TP_CONNECTION_PRESENCE_TYPE_EXTENDED_AWAY
);
127 self
->priv
->ext_away_timeout
= 0;
133 next_away_stop (EmpathyPresenceManager
*self
)
135 if (self
->priv
->ext_away_timeout
)
137 g_source_remove (self
->priv
->ext_away_timeout
);
138 self
->priv
->ext_away_timeout
= 0;
143 ext_away_start (EmpathyPresenceManager
*self
)
145 if (self
->priv
->ext_away_timeout
!= 0)
148 self
->priv
->ext_away_timeout
= g_timeout_add_seconds (EXT_AWAY_TIME
,
149 (GSourceFunc
) ext_away_cb
, self
);
153 session_status_changed_cb (DBusGProxy
*gs_proxy
,
154 SessionStatus status
,
155 EmpathyPresenceManager
*self
)
159 is_idle
= (status
== SESSION_STATUS_IDLE
);
161 DEBUG ("Session idle state changed, %s -> %s",
162 self
->priv
->is_idle
? "yes" : "no",
163 is_idle
? "yes" : "no");
165 if (!self
->priv
->auto_away
||
166 (self
->priv
->state
<= TP_CONNECTION_PRESENCE_TYPE_OFFLINE
||
167 self
->priv
->state
== TP_CONNECTION_PRESENCE_TYPE_HIDDEN
))
169 /* We don't want to go auto away OR we explicitely asked to be
170 * offline, nothing to do here */
171 self
->priv
->is_idle
= is_idle
;
175 if (is_idle
&& !self
->priv
->is_idle
)
177 TpConnectionPresenceType new_state
;
178 /* We are now idle */
180 ext_away_start (self
);
182 self
->priv
->away_saved_state
= self
->priv
->state
;
184 new_state
= TP_CONNECTION_PRESENCE_TYPE_AWAY
;
185 if (self
->priv
->state
== TP_CONNECTION_PRESENCE_TYPE_EXTENDED_AWAY
)
186 new_state
= TP_CONNECTION_PRESENCE_TYPE_EXTENDED_AWAY
;
188 DEBUG ("Going to autoaway. Saved state=%d, new state=%d",
189 self
->priv
->away_saved_state
, new_state
);
190 empathy_presence_manager_set_state (self
, new_state
);
192 else if (!is_idle
&& self
->priv
->is_idle
)
194 /* We are no more idle, restore state */
196 next_away_stop (self
);
198 /* Only try and set the presence if the away saved state is not
199 * unset. This is an odd case because it means that the session
200 * didn't notify us of the state change to idle, and as a
201 * result, we couldn't save the current state at that time.
203 if (self
->priv
->away_saved_state
!= TP_CONNECTION_PRESENCE_TYPE_UNSET
)
205 DEBUG ("Restoring state to %d",
206 self
->priv
->away_saved_state
);
208 empathy_presence_manager_set_state (self
,
209 self
->priv
->away_saved_state
);
213 DEBUG ("Away saved state is unset. This means that we "
214 "weren't told when the session went idle. "
215 "As a result, I'm not trying to set presence");
218 self
->priv
->away_saved_state
= TP_CONNECTION_PRESENCE_TYPE_UNSET
;
221 self
->priv
->is_idle
= is_idle
;
225 presence_manager_dispose (GObject
*object
)
227 EmpathyPresenceManager
*self
= (EmpathyPresenceManager
*) object
;
229 tp_clear_object (&self
->priv
->gs_proxy
);
230 tp_clear_object (&self
->priv
->manager
);
232 tp_clear_pointer (&self
->priv
->connect_times
, g_hash_table_unref
);
234 next_away_stop (EMPATHY_PRESENCE_MANAGER (object
));
236 G_OBJECT_CLASS (empathy_presence_manager_parent_class
)->dispose (object
);
240 presence_manager_finalize (GObject
*object
)
242 EmpathyPresenceManager
*self
= (EmpathyPresenceManager
*) object
;
244 g_free (self
->priv
->status
);
245 g_free (self
->priv
->requested_status_message
);
247 G_OBJECT_CLASS (empathy_presence_manager_parent_class
)->finalize (object
);
251 presence_manager_constructor (GType type
,
253 GObjectConstructParam
*props
)
259 retval
= g_object_ref (singleton
);
263 retval
= G_OBJECT_CLASS (empathy_presence_manager_parent_class
)->
264 constructor (type
, n_props
, props
);
266 singleton
= EMPATHY_PRESENCE_MANAGER (retval
);
267 g_object_add_weak_pointer (retval
, (gpointer
) &singleton
);
274 empathy_presence_manager_get_status (EmpathyPresenceManager
*self
)
276 if (G_UNLIKELY (!self
->priv
->ready
))
277 g_critical (G_STRLOC
": %s called before AccountManager ready",
280 if (!self
->priv
->status
)
281 return empathy_presence_get_default_message (self
->priv
->state
);
283 return self
->priv
->status
;
287 presence_manager_get_property (GObject
*object
,
292 EmpathyPresenceManager
*self
= EMPATHY_PRESENCE_MANAGER (object
);
297 g_value_set_enum (value
, empathy_presence_manager_get_state (self
));
300 g_value_set_string (value
, empathy_presence_manager_get_status (self
));
303 g_value_set_boolean (value
,
304 empathy_presence_manager_get_auto_away (self
));
307 G_OBJECT_WARN_INVALID_PROPERTY_ID (object
, param_id
, pspec
);
313 presence_manager_set_property (GObject
*object
,
318 EmpathyPresenceManager
*self
= EMPATHY_PRESENCE_MANAGER (object
);
323 empathy_presence_manager_set_state (self
, g_value_get_enum (value
));
326 empathy_presence_manager_set_status (self
, g_value_get_string (value
));
329 empathy_presence_manager_set_auto_away (self
,
330 g_value_get_boolean (value
));
333 G_OBJECT_WARN_INVALID_PROPERTY_ID (object
, param_id
, pspec
);
339 empathy_presence_manager_class_init (EmpathyPresenceManagerClass
*klass
)
341 GObjectClass
*object_class
= G_OBJECT_CLASS (klass
);
343 object_class
->dispose
= presence_manager_dispose
;
344 object_class
->finalize
= presence_manager_finalize
;
345 object_class
->constructor
= presence_manager_constructor
;
346 object_class
->get_property
= presence_manager_get_property
;
347 object_class
->set_property
= presence_manager_set_property
;
349 g_object_class_install_property (object_class
,
351 g_param_spec_uint ("state", "state", "state",
352 0, TP_NUM_CONNECTION_PRESENCE_TYPES
,
353 TP_CONNECTION_PRESENCE_TYPE_UNSET
,
356 g_object_class_install_property (object_class
,
358 g_param_spec_string ("status","status", "status",
362 g_object_class_install_property (object_class
,
364 g_param_spec_boolean ("auto-away", "Automatic set presence to away",
365 "Should it set presence to away if inactive",
369 g_type_class_add_private (object_class
,
370 sizeof (EmpathyPresenceManagerPrivate
));
374 account_status_changed_cb (TpAccount
*account
,
378 gchar
*dbus_error_name
,
382 EmpathyPresenceManager
*self
= EMPATHY_PRESENCE_MANAGER (user_data
);
385 if (new_status
== TP_CONNECTION_STATUS_CONNECTED
)
387 g_get_current_time (&val
);
388 g_hash_table_insert (self
->priv
->connect_times
, account
,
389 GINT_TO_POINTER (val
.tv_sec
));
391 else if (new_status
== TP_CONNECTION_STATUS_DISCONNECTED
)
393 g_hash_table_remove (self
->priv
->connect_times
, account
);
398 account_manager_ready_cb (GObject
*source_object
,
399 GAsyncResult
*result
,
402 EmpathyPresenceManager
*self
= user_data
;
403 TpAccountManager
*account_manager
= TP_ACCOUNT_MANAGER (source_object
);
404 TpConnectionPresenceType state
;
405 gchar
*status
, *status_message
;
407 GError
*error
= NULL
;
409 /* In case we've been finalized before reading this callback */
410 if (singleton
== NULL
)
413 self
->priv
->ready
= TRUE
;
415 if (!tp_proxy_prepare_finish (account_manager
, result
, &error
))
417 DEBUG ("Failed to prepare account manager: %s", error
->message
);
418 g_error_free (error
);
422 state
= tp_account_manager_get_most_available_presence (self
->priv
->manager
,
423 &status
, &status_message
);
425 most_available_presence_changed (account_manager
, state
, status
,
426 status_message
, self
);
428 accounts
= tp_account_manager_dup_valid_accounts (self
->priv
->manager
);
429 for (l
= accounts
; l
!= NULL
; l
= l
->next
)
431 tp_g_signal_connect_object (l
->data
, "status-changed",
432 G_CALLBACK (account_status_changed_cb
), self
, 0);
434 g_list_free_full (accounts
, g_object_unref
);
437 g_free (status_message
);
441 empathy_presence_manager_init (EmpathyPresenceManager
*self
)
445 self
->priv
= G_TYPE_INSTANCE_GET_PRIVATE (self
,
446 EMPATHY_TYPE_PRESENCE_MANAGER
, EmpathyPresenceManagerPrivate
);
448 self
->priv
->is_idle
= FALSE
;
450 self
->priv
->manager
= tp_account_manager_dup ();
452 tp_proxy_prepare_async (self
->priv
->manager
, NULL
,
453 account_manager_ready_cb
, self
);
455 tp_g_signal_connect_object (self
->priv
->manager
,
456 "most-available-presence-changed",
457 G_CALLBACK (most_available_presence_changed
), self
, 0);
459 dbus
= tp_dbus_daemon_dup (NULL
);
461 self
->priv
->gs_proxy
= dbus_g_proxy_new_for_name (
462 tp_proxy_get_dbus_connection (dbus
),
463 "org.gnome.SessionManager",
464 "/org/gnome/SessionManager/Presence",
465 "org.gnome.SessionManager.Presence");
467 if (self
->priv
->gs_proxy
)
469 dbus_g_proxy_add_signal (self
->priv
->gs_proxy
, "StatusChanged",
470 G_TYPE_UINT
, G_TYPE_INVALID
);
471 dbus_g_proxy_connect_signal (self
->priv
->gs_proxy
, "StatusChanged",
472 G_CALLBACK (session_status_changed_cb
),
477 DEBUG ("Failed to get gs proxy");
480 g_object_unref (dbus
);
482 self
->priv
->connect_times
= g_hash_table_new (g_direct_hash
, g_direct_equal
);
485 EmpathyPresenceManager
*
486 empathy_presence_manager_dup_singleton (void)
488 return g_object_new (EMPATHY_TYPE_PRESENCE_MANAGER
, NULL
);
491 TpConnectionPresenceType
492 empathy_presence_manager_get_state (EmpathyPresenceManager
*self
)
494 if (G_UNLIKELY (!self
->priv
->ready
))
495 g_critical (G_STRLOC
": %s called before AccountManager ready",
498 return self
->priv
->state
;
502 empathy_presence_manager_set_state (EmpathyPresenceManager
*self
,
503 TpConnectionPresenceType state
)
505 empathy_presence_manager_set_presence (self
, state
, self
->priv
->status
);
509 empathy_presence_manager_set_status (EmpathyPresenceManager
*self
,
512 empathy_presence_manager_set_presence (self
, self
->priv
->state
, status
);
516 empathy_presence_manager_do_set_presence (EmpathyPresenceManager
*self
,
517 TpConnectionPresenceType status_type
,
518 const gchar
*status_message
)
522 g_assert (status_type
> 0 && status_type
< TP_NUM_CONNECTION_PRESENCE_TYPES
);
524 status
= presence_type_to_status
[status_type
];
526 g_return_if_fail (status
!= NULL
);
528 /* We possibly should be sure that the account manager is prepared, but
529 * sometimes this isn't possible, like when exiting. In other words,
530 * we need a callback to empathy_presence_manager_set_presence to be sure the
531 * presence is set on all accounts successfully.
532 * However, in practice, this is fine as we've already prepared the
533 * account manager here in _init. */
534 tp_account_manager_set_all_requested_presences (self
->priv
->manager
,
535 status_type
, status
, status_message
);
539 empathy_presence_manager_set_presence (EmpathyPresenceManager
*self
,
540 TpConnectionPresenceType state
,
543 const gchar
*default_status
;
545 DEBUG ("Changing presence to %s (%d)", status
, state
);
547 g_free (self
->priv
->requested_status_message
);
548 self
->priv
->requested_presence_type
= state
;
549 self
->priv
->requested_status_message
= g_strdup (status
);
551 /* Do not set translated default messages */
552 default_status
= empathy_presence_get_default_message (state
);
553 if (!tp_strdiff (status
, default_status
))
556 empathy_presence_manager_do_set_presence (self
, state
, status
);
560 empathy_presence_manager_get_auto_away (EmpathyPresenceManager
*self
)
562 return self
->priv
->auto_away
;
566 empathy_presence_manager_set_auto_away (EmpathyPresenceManager
*self
,
569 self
->priv
->auto_away
= auto_away
;
571 g_object_notify (G_OBJECT (self
), "auto-away");
574 TpConnectionPresenceType
575 empathy_presence_manager_get_requested_presence (EmpathyPresenceManager
*self
,
577 gchar
**status_message
)
580 *status
= g_strdup (presence_type_to_status
[
581 self
->priv
->requested_presence_type
]);
583 if (status_message
!= NULL
)
584 *status_message
= g_strdup (self
->priv
->requested_status_message
);
586 return self
->priv
->requested_presence_type
;
589 /* This function returns %TRUE if EmpathyPresenceManager considers the account
590 * @account as having just connected recently. Otherwise, it returns
591 * %FALSE. In doubt, %FALSE is returned. */
593 empathy_presence_manager_account_is_just_connected (
594 EmpathyPresenceManager
*self
,
601 if (tp_account_get_connection_status (account
, NULL
)
602 != TP_CONNECTION_STATUS_CONNECTED
)
605 ptr
= g_hash_table_lookup (self
->priv
->connect_times
, account
);
610 t
= GPOINTER_TO_INT (ptr
);
612 g_get_current_time (&val
);
614 return (val
.tv_sec
- t
) < ACCOUNT_IS_JUST_CONNECTED_SECONDS
;