-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathprofile-tracker.c
More file actions
220 lines (173 loc) · 5.98 KB
/
profile-tracker.c
File metadata and controls
220 lines (173 loc) · 5.98 KB
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
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
/******************************************************************************
** This file is part of profile-qt
**
** Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies).
** All rights reserved.
**
** Contact: Sakari Poussa <sakari.poussa@nokia.com>
**
** Redistribution and use in source and binary forms, with or without
** modification, are permitted provided that the following conditions are met:
**
** Redistributions of source code must retain the above copyright notice,
** this list of conditions and the following disclaimer. Redistributions in
** binary form must reproduce the above copyright notice, this list of
** conditions and the following disclaimer in the documentation and/or
** other materials provided with the distribution.
**
** Neither the name of Nokia Corporation nor the names of its contributors
** may be used to endorse or promote products derived from this software
** without specific prior written permission.
**
** THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
** AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
** THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
** PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
** CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
** EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
** PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
** OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
** WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
** OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
** ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
******************************************************************************/
#include <sys/time.h>
#include <stdio.h>
#include <time.h>
#include <string.h>
#include <stdlib.h>
#include <dbus/dbus-glib-lowlevel.h>
#include "profile_dbus.h"
static void longpausebar(void)
{
static struct timeval bar = {0,0};
static struct timeval const tmo = {0,500*1000};
auto struct timeval now;
gettimeofday(&now, 0);
if( timercmp(&bar,&now,<) )
{
printf("--------------------------------"
"--------------------------------\n");
}
timeradd(&now,&tmo,&bar);
}
/* ========================================================================= *
* PROFILE DBUS FUNCTIONS
* ========================================================================= */
static DBusConnection *tracker_bus = NULL;
/* ------------------------------------------------------------------------- *
* tracker_filter -- handle requests coming via dbus
* ------------------------------------------------------------------------- */
static
DBusHandlerResult
tracker_filter(DBusConnection *conn,
DBusMessage *msg,
void *user_data)
{
(void)conn; (void)user_data;
DBusHandlerResult result = DBUS_HANDLER_RESULT_NOT_YET_HANDLED;
const char *interface = dbus_message_get_interface(msg);
const char *member = dbus_message_get_member(msg);
const char *object = dbus_message_get_path(msg);
if( !interface || !member || !object )
{
goto cleanup;
}
if( !strcmp(interface, PROFILED_SERVICE) && !strcmp(object, PROFILED_PATH) )
{
result = DBUS_HANDLER_RESULT_HANDLED;
longpausebar();
// QUARANTINE extern void dbusif_show_message(DBusMessage *);
// QUARANTINE dbusif_show_message(msg);
}
cleanup:
return result;
}
/* ------------------------------------------------------------------------- *
* tracker_init
* ------------------------------------------------------------------------- */
static
int
tracker_init(void)
{
int res = -1;
DBusError err;
dbus_error_init(&err);
/* - - - - - - - - - - - - - - - - - - - *
* connect to system bus
* - - - - - - - - - - - - - - - - - - - */
#ifdef USE_SYSTEM_BUS
if( (tracker_bus = dbus_bus_get(DBUS_BUS_SYSTEM, &err)) == 0 )
{
//CLEANUP fatalf("%s: %s\n", "dbus_bus_get", err.message);
goto cleanup;
}
#else
if( (tracker_bus = dbus_bus_get(DBUS_BUS_SESSION, &err)) == 0 )
{
//CLEANUP fatalf("%s: %s\n", "dbus_bus_get", err.message);
goto cleanup;
}
#endif
dbus_connection_setup_with_g_main(tracker_bus, NULL);
dbus_connection_set_exit_on_disconnect(tracker_bus, 0);
/* - - - - - - - - - - - - - - - - - - - *
* register message filter
* - - - - - - - - - - - - - - - - - - - */
if( !dbus_connection_add_filter(tracker_bus, tracker_filter, 0, 0) )
{
//CLEANUP fatalf("%s: %s\n", "dbus_connection_add_filter", "FAILED");
goto cleanup;
}
/* - - - - - - - - - - - - - - - - - - - *
* listen to signals
* - - - - - - - - - - - - - - - - - - - */
dbus_bus_add_match(tracker_bus,
"type='signal', interface='"PROFILED_INTERFACE"'",
&err);
if( dbus_error_is_set(&err) )
{
//CLEANUP fatalf("%s: %s\n", "dbus_bus_add_match", err.message);
goto cleanup;
}
/* - - - - - - - - - - - - - - - - - - - *
* success
* - - - - - - - - - - - - - - - - - - - */
res = 0;
/* - - - - - - - - - - - - - - - - - - - *
* cleanup & return
* - - - - - - - - - - - - - - - - - - - */
cleanup:
dbus_error_free(&err);
return res;
}
/* ------------------------------------------------------------------------- *
* tracker_quit
* ------------------------------------------------------------------------- */
static
void
tracker_quit(void)
{
if( tracker_bus != 0 )
{
dbus_connection_unref(tracker_bus);
tracker_bus = 0;
}
}
static GMainLoop *tracker_mainloop = 0;
int main(int ac, char **av)
{
(void)ac; (void)av;
int exit_code = EXIT_FAILURE;
tracker_mainloop = g_main_loop_new(NULL, FALSE);
tracker_init();
g_main_loop_run(tracker_mainloop);
exit_code = EXIT_SUCCESS;
tracker_quit();
if( tracker_mainloop != 0 )
{
g_main_loop_unref(tracker_mainloop);
tracker_mainloop = 0;
}
return exit_code;
}