ededba0c6d
There is a race if a channel is invalidated during its preparation: the 'invalidated' signal is already emitted so the Shell will never notice. We fix this by simply checking if the channel is already invalidated when receiving it from telepathy-glib. In the approving case, we reject the full ChannelDispatchOperation as we only support approving one channel at the time. https://bugzilla.gnome.org/show_bug.cgi?id=677457
112 lines
3.8 KiB
C
112 lines
3.8 KiB
C
/* -*- mode: C; c-file-style: "gnu"; indent-tabs-mode: nil; -*- */
|
|
|
|
#ifndef __SHELL_TP_CLIENT_H__
|
|
#define __SHELL_TP_CLIENT_H__
|
|
|
|
#include <dbus/dbus-glib.h>
|
|
#include <glib-object.h>
|
|
|
|
#include <telepathy-glib/telepathy-glib.h>
|
|
|
|
G_BEGIN_DECLS
|
|
|
|
typedef struct _ShellTpClient ShellTpClient;
|
|
typedef struct _ShellTpClientClass ShellTpClientClass;
|
|
typedef struct _ShellTpClientPrivate ShellTpClientPrivate;
|
|
|
|
struct _ShellTpClientClass {
|
|
/*<private>*/
|
|
TpBaseClientClass parent_class;
|
|
};
|
|
|
|
struct _ShellTpClient {
|
|
/*<private>*/
|
|
TpBaseClient parent;
|
|
ShellTpClientPrivate *priv;
|
|
};
|
|
|
|
GType shell_tp_client_get_type (void);
|
|
|
|
#define SHELL_TYPE_TP_CLIENT \
|
|
(shell_tp_client_get_type ())
|
|
#define SHELL_TP_CLIENT(obj) \
|
|
(G_TYPE_CHECK_INSTANCE_CAST ((obj), SHELL_TYPE_TP_CLIENT, \
|
|
ShellTpClient))
|
|
#define SHELL_TP_CLIENT_CLASS(klass) \
|
|
(G_TYPE_CHECK_CLASS_CAST ((klass), SHELL_TYPE_TP_CLIENT, \
|
|
ShellTpClientClass))
|
|
#define SHELL_IS_TP_CLIENT(obj) \
|
|
(G_TYPE_CHECK_INSTANCE_TYPE ((obj), SHELL_TYPE_TP_CLIENT))
|
|
#define SHELL_IS_TP_CLIENT_CLASS(klass) \
|
|
(G_TYPE_CHECK_CLASS_TYPE ((klass), SHELL_TYPE_TP_CLIENT))
|
|
#define SHELL_TP_CLIENT_GET_CLASS(obj) \
|
|
(G_TYPE_INSTANCE_GET_CLASS ((obj), SHELL_TYPE_TP_CLIENT, \
|
|
ShellTpClientClass))
|
|
|
|
typedef void (*ShellTpClientObserveChannelsImpl) (ShellTpClient *client,
|
|
TpAccount *account,
|
|
TpConnection *connection,
|
|
GList *channels,
|
|
TpChannelDispatchOperation *dispatch_operation,
|
|
GList *requests,
|
|
TpObserveChannelsContext *context,
|
|
gpointer user_data);
|
|
|
|
void shell_tp_client_set_observe_channels_func (ShellTpClient *self,
|
|
ShellTpClientObserveChannelsImpl observe_impl,
|
|
gpointer user_data,
|
|
GDestroyNotify destroy);
|
|
|
|
typedef void (*ShellTpClientApproveChannelsImpl) (
|
|
ShellTpClient *client,
|
|
TpAccount *account,
|
|
TpConnection *connection,
|
|
GList *channels,
|
|
TpChannelDispatchOperation *dispatch_operation,
|
|
TpAddDispatchOperationContext *context,
|
|
gpointer user_data);
|
|
|
|
void shell_tp_client_set_approve_channels_func (ShellTpClient *self,
|
|
ShellTpClientApproveChannelsImpl approve_impl,
|
|
gpointer user_data,
|
|
GDestroyNotify destroy);
|
|
|
|
typedef void (*ShellTpClientHandleChannelsImpl) (
|
|
ShellTpClient *client,
|
|
TpAccount *account,
|
|
TpConnection *connection,
|
|
GList *channels,
|
|
GList *requests_satisfied,
|
|
gint64 user_action_time,
|
|
TpHandleChannelsContext *context,
|
|
gpointer user_data);
|
|
|
|
void shell_tp_client_set_handle_channels_func (ShellTpClient *self,
|
|
ShellTpClientHandleChannelsImpl handle_channels_impl,
|
|
gpointer user_data,
|
|
GDestroyNotify destroy);
|
|
|
|
typedef void (*ShellTpClientContactListChangedImpl) (
|
|
TpConnection *connection,
|
|
GPtrArray *added,
|
|
GPtrArray *removed,
|
|
gpointer user_data);
|
|
|
|
void shell_tp_client_set_contact_list_changed_func (ShellTpClient *self,
|
|
ShellTpClientContactListChangedImpl contact_list_changed_impl,
|
|
gpointer user_data,
|
|
GDestroyNotify destroy);
|
|
|
|
void shell_tp_client_grab_contact_list_changed (ShellTpClient *self,
|
|
TpConnection *conn);
|
|
|
|
/* Telepathy utility functions */
|
|
|
|
void shell_decline_dispatch_op (TpAddDispatchOperationContext *context,
|
|
const gchar *message);
|
|
|
|
gboolean shell_is_channel_invalidated (TpChannel *channel);
|
|
|
|
G_END_DECLS
|
|
#endif /* __SHELL_TP_CLIENT_H__ */
|