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
|
/*
* Copyright 2013 Canonical Ltd.
*
* Authors:
* Charles Kerr <charles.kerr@canonical.com>
*
* This program is free software: you can redistribute it and/or modify it
* under the terms of the GNU General Public License version 3, as published
* by the Free Software Foundation.
*
* This program is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranties of
* MERCHANTABILITY, SATISFACTORY QUALITY, 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, see <http://www.gnu.org/licenses/>.
*/
#include "actions.h"
#include "backend-dbus.h"
#include "guest.h"
#include "users.h"
#include "utils.h"
struct dbus_world_data
{
GCancellable * cancellable;
IndicatorSessionActionsDbus * actions;
IndicatorSessionUsersDbus * users;
IndicatorSessionGuestDbus * guest;
};
static void
on_proxies_ready (Login1Manager * login1_manager,
Login1Seat * login1_seat,
DisplayManagerSeat * display_manager_seat,
Accounts * account_manager,
GCancellable * cancellable,
gpointer gdata)
{
struct dbus_world_data * data = gdata;
if (!g_cancellable_is_cancelled (cancellable))
{
if (data->actions != NULL)
indicator_session_actions_dbus_set_proxies (data->actions,
login1_manager,
login1_seat,
display_manager_seat);
if (data->users != NULL)
indicator_session_users_dbus_set_proxies (data->users,
login1_manager,
login1_seat,
display_manager_seat,
account_manager);
if (data->guest != NULL)
indicator_session_guest_dbus_set_proxies (data->guest,
login1_manager,
login1_seat,
display_manager_seat);
}
g_free (data);
}
/***
****
***/
void
backend_get (GCancellable * cancellable,
IndicatorSessionActions ** setme_actions,
IndicatorSessionUsers ** setme_users,
IndicatorSessionGuest ** setme_guest)
{
struct dbus_world_data * data;
data = g_new0 (struct dbus_world_data, 1);
if (setme_actions != NULL)
{
IndicatorSessionActions * actions;
actions = indicator_session_actions_dbus_new ();
data->actions = INDICATOR_SESSION_ACTIONS_DBUS (actions);
*setme_actions = actions;
}
if (setme_users != NULL)
{
IndicatorSessionUsers * users;
users = indicator_session_users_dbus_new ();
data->users = INDICATOR_SESSION_USERS_DBUS (users);
*setme_users = users;
}
if (setme_guest != NULL)
{
IndicatorSessionGuest * guest;
guest = indicator_session_guest_dbus_new ();
data->guest = INDICATOR_SESSION_GUEST_DBUS (guest);
*setme_guest = guest;
}
data->cancellable = g_object_ref (cancellable);
indicator_session_util_get_session_proxies (on_proxies_ready,
data->cancellable,
data);
}
|