Skip to content

Latest commit

 

History

History
537 lines (413 loc) · 14.3 KB

plugin.c

File metadata and controls

537 lines (413 loc) · 14.3 KB
 
Oct 27, 2010
Oct 27, 2010
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/*
* ngfd - Non-graphic feedback daemon
*
* Copyright (C) 2010 Nokia Corporation.
* Contact: Xun Chen <xun.chen@nokia.com>
*
* This work is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This work 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
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this work; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
Oct 27, 2010
Oct 27, 2010
22
23
24
25
26
#include <ngf/plugin.h>
#include <ImmVibe.h>
#include <ImmVibeCore.h>
#include <stdio.h>
Oct 14, 2011
Oct 14, 2011
27
#define IMMVIBE_KEY "plugin.immvibe.data"
Oct 26, 2011
Oct 26, 2011
28
#define SOUND_REPEAT_KEY "sound.repeat"
Oct 14, 2011
Oct 14, 2011
29
30
31
32
33
#define SOUND_FILENAME_KEY "sound.filename"
#define SOUND_FILENAME_ORIGINAL_KEY "sound.filename.original"
#define IMMVIBE_FILENAME_KEY "immvibe.filename"
#define IMMVIBE_LOOKUP_KEY "immvibe.lookup"
#define IMMVIBE_LOOKUP_FROM_KEY "immvibe.lookup_from_key"
Oct 18, 2011
Oct 18, 2011
34
#define ALLOW_CUSTOM_KEY "transform.allow_custom"
Oct 14, 2011
Oct 14, 2011
35
36
37
#define SYSTEM_SOUND_PATH "/usr/share/sounds/"
#define LOG_CAT "immvibe: "
#define POLL_TIMEOUT 500
Oct 27, 2010
Oct 27, 2010
38
39
40
41
42
typedef struct _ImmvibeData
{
NRequest *request;
NSinkInterface *iface;
Oct 27, 2010
Oct 27, 2010
43
guint id;
Oct 27, 2010
Oct 27, 2010
44
45
gpointer pattern;
gboolean paused;
Oct 27, 2010
Oct 27, 2010
46
guint poll_id;
Oct 26, 2011
Oct 26, 2011
47
gboolean repeat_pattern;
Jan 28, 2011
Jan 28, 2011
48
guint idle_complete_id;
Oct 27, 2010
Oct 27, 2010
49
50
} ImmvibeData;
Oct 27, 2010
Oct 27, 2010
51
52
static VibeInt32 device = VIBE_INVALID_DEVICE_HANDLE_VALUE;
static const gchar *search_path = NULL;
Sep 14, 2011
Sep 14, 2011
53
NContext* context = NULL;
Oct 27, 2010
Oct 27, 2010
54
Oct 26, 2011
Oct 26, 2011
55
56
guint vibrator_start (gpointer pattern_data, gpointer userdata);
Oct 27, 2010
Oct 27, 2010
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
N_PLUGIN_NAME ("immvibe")
N_PLUGIN_VERSION ("0.1")
N_PLUGIN_DESCRIPTION ("Immersion vibra plugin")
static gboolean
pattern_is_completed (gint id)
{
VibeStatus status;
VibeInt32 effect_state = 0;
status = ImmVibeGetEffectState (device, id, &effect_state);
if (VIBE_SUCCEEDED (status)) {
if (effect_state == VIBE_EFFECT_STATE_PLAYING)
return FALSE;
}
return TRUE;
}
static gboolean
pattern_poll_cb (gpointer userdata)
{
ImmvibeData *data = (ImmvibeData*) n_request_get_data ((NRequest *)userdata, IMMVIBE_KEY);
if (!data->paused && pattern_is_completed (data->id)) {
Oct 27, 2010
Oct 27, 2010
82
N_DEBUG (LOG_CAT "vibration has been completed.");
Oct 27, 2010
Oct 27, 2010
83
84
data->poll_id = 0;
Oct 26, 2011
Oct 26, 2011
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
if (data->repeat_pattern) {
N_DEBUG (LOG_CAT "pattern needs to be repeated");
if (data->id > 0)
ImmVibeStopPlayingEffect (device, data->id);
if (data->pattern)
data->id = vibrator_start (data->pattern, data->request);
if (!data->pattern || data->id == 0)
n_sink_interface_complete (data->iface, data->request);
}
else {
n_sink_interface_complete (data->iface, data->request);
}
Oct 27, 2010
Oct 27, 2010
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
return FALSE;
}
return TRUE;
}
static gboolean
vibrator_reconnect ()
{
if (device != VIBE_INVALID_DEVICE_HANDLE_VALUE) {
ImmVibeCloseDevice (device);
ImmVibeTerminate ();
device = VIBE_INVALID_DEVICE_HANDLE_VALUE;
}
if (VIBE_FAILED (ImmVibeInitialize (VIBE_CURRENT_VERSION_NUMBER)))
return FALSE;
if (VIBE_FAILED (ImmVibeOpenDevice (0, &device)))
return FALSE;
return TRUE;
}
static gpointer
vibrator_load (const char *filename)
{
FILE *fp = NULL;
unsigned long pattern_size = 0;
size_t bytes_read = 0;
VibeUInt8 *data = NULL;
if (filename == NULL)
goto failed;
if ((fp = fopen (filename, "rb")) == NULL)
goto failed;
fseek (fp, 0L, SEEK_END);
pattern_size = ftell (fp);
fseek (fp, 0L, SEEK_SET);
if (pattern_size > 0 && ((data = g_new (VibeUInt8, pattern_size)) != NULL)) {
bytes_read = fread (data, sizeof (VibeUInt8), pattern_size, fp);
if (bytes_read != pattern_size)
goto failed;
fclose (fp);
return (gpointer)data;
}
failed:
if (data) {
g_free (data);
data = NULL;
}
if (fp) {
fclose (fp);
fp = NULL;
}
return NULL;
}
static gchar*
build_vibration_filename (const char *path, const char *source)
{
gchar *separator = NULL;
gchar *output = NULL;
gchar *basename = NULL;
gchar *result = NULL;
if (!source)
return NULL;
if (!path) {
basename = g_strdup (source);
if ((separator = g_strrstr (basename, ".")) == NULL) {
g_free (basename);
return NULL;
}
*separator = '\0';
result = g_strdup_printf ("%s.ivt", basename);
g_free (output);
g_free (basename);
}
else {
basename = g_path_get_basename (source);
if ((separator = g_strrstr (basename, ".")) == NULL) {
g_free (basename);
return NULL;
}
*separator = '\0';
output = g_strdup_printf ("%s.ivt", basename);
result = g_build_filename (path, output, NULL);
g_free (output);
g_free (basename);
}
return result;
}
guint
vibrator_start (gpointer pattern_data, gpointer userdata)
{
Oct 27, 2010
Oct 27, 2010
213
214
215
216
217
ImmvibeData *data = (ImmvibeData*) n_request_get_data ((NRequest *)userdata, IMMVIBE_KEY);
VibeUInt8 *effects = pattern_data ? (VibeUInt8*) pattern_data : g_pVibeIVTBuiltInEffects;
gint id = 0;
VibeInt32 ret = 0;
gboolean retry = FALSE;
Oct 27, 2010
Oct 27, 2010
218
219
220
221
222
do {
ret = ImmVibePlayIVTEffect (device, effects, 0, &id);
if (VIBE_SUCCEEDED (ret)) {
Jan 28, 2011
Jan 28, 2011
223
224
n_sink_interface_set_resync_on_master (data->iface, data->request);
Oct 27, 2010
Oct 27, 2010
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
N_DEBUG ("%s >> started pattern with id %d", __FUNCTION__, id);
data->poll_id = g_timeout_add (POLL_TIMEOUT, pattern_poll_cb, userdata);
return id;
}
else if (ret == VIBE_E_NOT_INITIALIZED) {
if (retry)
return 0;
N_DEBUG ("%s >> vibrator is not initialized.", __FUNCTION__);
if (!vibrator_reconnect ()) {
N_WARNING ("%s >> failed to reconnect to vibrator.", __FUNCTION__);
return 0;
}
else
N_DEBUG ("%s >> reconnected to vibrator.", __FUNCTION__);
retry = TRUE;
}
} while (retry);
return 0;
}
static int
immvibe_sink_initialize (NSinkInterface *iface)
{
(void) iface;
N_DEBUG (LOG_CAT "sink initialize");
if (!vibrator_reconnect ())
N_WARNING ("%s >> failed to connect to vibrator daemon.", __FUNCTION__);
Sep 14, 2011
Sep 14, 2011
257
258
context = n_core_get_context (n_sink_interface_get_core (iface));
Oct 27, 2010
Oct 27, 2010
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
return TRUE;
}
static void
immvibe_sink_shutdown (NSinkInterface *iface)
{
(void) iface;
N_DEBUG (LOG_CAT "sink shutdown");
ImmVibeStopAllPlayingEffects (device);
ImmVibeCloseDevice (device);
device = VIBE_INVALID_DEVICE_HANDLE_VALUE;
ImmVibeTerminate ();
}
static int
immvibe_sink_can_handle (NSinkInterface *iface, NRequest *request)
{
(void) iface;
Oct 27, 2010
Oct 27, 2010
279
Oct 27, 2010
Oct 27, 2010
280
281
const NProplist *props = n_request_get_properties (request);
Oct 27, 2010
Oct 27, 2010
282
283
284
285
286
287
288
289
290
291
292
293
NCore *core = n_sink_interface_get_core (iface);
NContext *context = n_core_get_context (core);
NValue *enabled = NULL;
enabled = (NValue*) n_context_get_value (context,
"profile.current.vibrating.alert.enabled");
if (!enabled || !n_value_get_bool (enabled)) {
N_DEBUG (LOG_CAT "vibration is not enabled, no action from immvibe.");
return FALSE;
}
Aug 8, 2011
Aug 8, 2011
294
295
if (n_proplist_has_key (props, "immvibe.filename") ||
n_proplist_has_key (props, "immvibe.filename_original")) {
Oct 27, 2010
Oct 27, 2010
296
297
298
299
300
301
302
N_DEBUG (LOG_CAT "can handle request");
return TRUE;
}
return FALSE;
}
Oct 14, 2011
Oct 14, 2011
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
static gboolean
factory_sound_filename (const char *filename)
{
if (filename && g_str_has_prefix (filename, SYSTEM_SOUND_PATH))
return TRUE;
return FALSE;
}
static const char*
lookup_sound_from_context (NContext *context, const char *key)
{
NValue *v;
if (!context || !key)
return NULL;
v = (NValue*) n_context_get_value (context, key);
return n_value_get_string (v);
}
Oct 27, 2010
Oct 27, 2010
324
325
326
327
328
static int
immvibe_sink_prepare (NSinkInterface *iface, NRequest *request)
{
const NProplist *props = n_request_get_properties (request);
ImmvibeData *data = g_slice_new0 (ImmvibeData);
Oct 14, 2011
Oct 14, 2011
329
330
331
332
char *filename;
const char *sound_filename, *immvibe_filename, *lookup_key,
*custom_file, *factory_sound = NULL;
Oct 26, 2011
Oct 26, 2011
333
gboolean lookup, allow_custom, sound_repeat;
Oct 27, 2010
Oct 27, 2010
334
335
336
337
338
N_DEBUG (LOG_CAT "sink prepare");
data->request = request;
data->iface = iface;
Jun 14, 2011
Jun 14, 2011
339
Oct 14, 2011
Oct 14, 2011
340
341
342
343
sound_filename = n_proplist_get_string (props, SOUND_FILENAME_KEY);
immvibe_filename = n_proplist_get_string (props, IMMVIBE_FILENAME_KEY);
lookup = n_proplist_get_bool (props, IMMVIBE_LOOKUP_KEY);
custom_file = n_proplist_get_string (props, SOUND_FILENAME_ORIGINAL_KEY);
Oct 18, 2011
Oct 18, 2011
344
allow_custom = n_proplist_get_bool (props, ALLOW_CUSTOM_KEY);
Oct 26, 2011
Oct 26, 2011
345
sound_repeat = n_proplist_get_bool (props, SOUND_REPEAT_KEY);
Oct 18, 2011
Oct 18, 2011
346
347
348
349
350
351
352
353
354
355
if (custom_file && !allow_custom &&
!g_file_test (custom_file, G_FILE_TEST_EXISTS) && !n_request_is_fallback (request))
{
g_slice_free (ImmvibeData, data);
return FALSE;
}
if (n_request_is_fallback (request))
custom_file = NULL;
Oct 14, 2011
Oct 14, 2011
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
/* case 1 (factory sounds): custom sound file through audio parameter */
if (custom_file)
factory_sound = custom_file;
/* case 2 (factory sounds): not a custom file, but we have lookup parameter set to
find the vibration pattern based on filename. */
if (!custom_file && lookup)
factory_sound = sound_filename;
/* case 3 (factory sounds): and if we have a lookup_from_key set, then we don't use the sound
filename, but a sound queried from the profile using the given key. */
if (!custom_file && lookup && (lookup_key = n_proplist_get_string (props, IMMVIBE_LOOKUP_FROM_KEY)))
factory_sound = lookup_sound_from_context (context, lookup_key);
/* all the cases apply to "factory sounds", which are files with custom
vibration patterns. */
if (factory_sound_filename (factory_sound)) {
filename = build_vibration_filename (search_path, factory_sound);
N_DEBUG (LOG_CAT "sound is factory sound, loading pattern from: %s", filename);
Sep 14, 2011
Sep 14, 2011
380
381
382
383
data->pattern = vibrator_load (filename);
g_free (filename);
}
Oct 14, 2011
Oct 14, 2011
384
385
386
387
/* default case: if no pattern yet, then use immvibe.filename to load either
absolute path or a filename that is to be searched from the vibration path. */
if (!data->pattern && immvibe_filename) {
Oct 26, 2011
Oct 26, 2011
388
389
390
391
/* if repeat is set, then we need to repeat the pattern too */
data->repeat_pattern = sound_repeat;
Oct 14, 2011
Oct 14, 2011
392
393
if (!(data->pattern = vibrator_load (immvibe_filename))) {
filename = build_vibration_filename (search_path, immvibe_filename);
Oct 27, 2010
Oct 27, 2010
394
395
396
397
data->pattern = vibrator_load (filename);
g_free (filename);
}
}
Oct 26, 2011
Oct 26, 2011
398
Jan 28, 2011
Jan 28, 2011
399
/* succeed even if no data. */
Oct 27, 2010
Oct 27, 2010
400
Jan 28, 2011
Jan 28, 2011
401
n_request_store_data (request, IMMVIBE_KEY, data);
Oct 27, 2010
Oct 27, 2010
402
n_sink_interface_synchronize (iface, request);
Jan 28, 2011
Jan 28, 2011
403
Oct 27, 2010
Oct 27, 2010
404
405
406
return TRUE;
}
Jan 28, 2011
Jan 28, 2011
407
408
409
410
411
412
413
414
415
416
417
418
419
420
static gboolean
immvibe_idle_complete_cb (gpointer userdata)
{
ImmvibeData *data = (ImmvibeData*) userdata;
data->idle_complete_id = 0;
/* nothing played, we just complete this event. */
N_DEBUG (LOG_CAT "idle complete");
n_sink_interface_complete (data->iface, data->request);
return FALSE;
}
Oct 27, 2010
Oct 27, 2010
421
422
423
424
425
426
427
428
429
430
431
static int
immvibe_sink_play (NSinkInterface *iface, NRequest *request)
{
N_DEBUG (LOG_CAT "sink play");
(void) iface;
ImmvibeData *data = (ImmvibeData*) n_request_get_data (request, IMMVIBE_KEY);
g_assert (data != NULL);
if (data->paused) {
Jan 28, 2011
Jan 28, 2011
432
433
434
if (data->id > 0) {
(void) ImmVibeResumePausedEffect (device, data->id);
}
Oct 27, 2010
Oct 27, 2010
435
Jan 28, 2011
Jan 28, 2011
436
data->paused = FALSE;
Oct 27, 2010
Oct 27, 2010
437
438
439
return TRUE;
}
Jan 28, 2011
Jan 28, 2011
440
441
442
443
444
445
if (data->pattern) {
data->id = vibrator_start (data->pattern, request);
}
if (!data->pattern || data->id == 0) {
data->idle_complete_id = g_idle_add (immvibe_idle_complete_cb, data);
Oct 27, 2010
Oct 27, 2010
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
}
return TRUE;
}
static int
immvibe_sink_pause (NSinkInterface *iface, NRequest *request)
{
N_DEBUG (LOG_CAT "sink pause");
(void) iface;
ImmvibeData *data = (ImmvibeData*) n_request_get_data (request, IMMVIBE_KEY);
g_assert (data != NULL);
Jan 28, 2011
Jan 28, 2011
461
462
463
464
465
466
467
468
if (!data->pattern) {
return TRUE;
}
if (data->id > 0) {
(void) ImmVibePausePlayingEffect (device, data->id);
}
Oct 27, 2010
Oct 27, 2010
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
data->paused = TRUE;
return TRUE;
}
static void
immvibe_sink_stop (NSinkInterface *iface, NRequest *request)
{
N_DEBUG (LOG_CAT "sink stop");
(void) iface;
ImmvibeData *data = (ImmvibeData*) n_request_get_data (request, IMMVIBE_KEY);
g_assert (data != NULL);
Jan 28, 2011
Jan 28, 2011
484
485
486
if (data->id > 0) {
ImmVibeStopPlayingEffect (device, data->id);
}
Oct 27, 2010
Oct 27, 2010
487
Jan 28, 2011
Jan 28, 2011
488
if (data->poll_id > 0) {
Oct 27, 2010
Oct 27, 2010
489
490
491
492
g_source_remove (data->poll_id);
data->poll_id = 0;
}
Jan 28, 2011
Jan 28, 2011
493
494
495
496
if (data->idle_complete_id > 0) {
g_source_remove (data->idle_complete_id);
data->idle_complete_id = 0;
}
Oct 27, 2010
Oct 27, 2010
497
Jan 28, 2011
Jan 28, 2011
498
g_free (data->pattern);
Oct 27, 2010
Oct 27, 2010
499
g_slice_free (ImmvibeData, data);
Oct 26, 2011
Oct 26, 2011
500
501
n_request_store_data (request, IMMVIBE_KEY, NULL);
Oct 27, 2010
Oct 27, 2010
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
}
N_PLUGIN_LOAD (plugin)
{
N_DEBUG (LOG_CAT "plugin load");
static const NSinkInterfaceDecl decl = {
.name = "immvibe",
.initialize = immvibe_sink_initialize,
.shutdown = immvibe_sink_shutdown,
.can_handle = immvibe_sink_can_handle,
.prepare = immvibe_sink_prepare,
.play = immvibe_sink_play,
.pause = immvibe_sink_pause,
.stop = immvibe_sink_stop
};
n_plugin_register_sink (plugin, &decl);
search_path = n_proplist_get_string (n_plugin_get_params (plugin), "vibration_search_path");
if (search_path == NULL) {
N_WARNING (LOG_CAT "Vibration pattern search path is missing from the configuration file");
return FALSE;
}
return TRUE;
}
N_PLUGIN_UNLOAD (plugin)
{
(void) plugin;
N_DEBUG (LOG_CAT "plugin unload");
}