Add notstrip file for TV
[platform/core/multimedia/libmm-sound.git] / mm_sound.c
1 /*
2  * libmm-sound
3  *
4  * Copyright (c) 2000 - 2011 Samsung Electronics Co., Ltd. All rights reserved.
5  *
6  * Contact: Seungbae Shin <seungbae.shin@samsung.com>
7  *
8  * Licensed under the Apache License, Version 2.0 (the "License");
9  * you may not use this file except in compliance with the License.
10  * You may obtain a copy of the License at
11  *
12  * http://www.apache.org/licenses/LICENSE-2.0
13  *
14  * Unless required by applicable law or agreed to in writing, software
15  * distributed under the License is distributed on an "AS IS" BASIS,
16  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17  * See the License for the specific language governing permissions and
18  * limitations under the License.
19  *
20  */
21
22 #include <stdlib.h>
23 #include <memory.h>
24 #include <unistd.h>
25 #include <pthread.h>
26
27 #include <errno.h>
28
29 #include <vconf.h>
30 #include <mm_types.h>
31 #include <mm_error.h>
32 #include <mm_session_private.h>
33 #include <mm_debug.h>
34 #include "include/mm_sound_private.h"
35 #include "include/mm_sound_utils.h"
36 #include "include/mm_sound_client.h"
37 #include "include/mm_sound_pa_client.h"
38 #include "include/mm_sound_common.h"
39
40
41 #define VOLUME_MAX_MULTIMEDIA   16
42 #define VOLUME_MAX_BASIC                8
43 #define VOLUME_MAX_SINGLE               1
44
45
46 #define MASTER_VOLUME_MAX 100
47 #define MASTER_VOLUME_MIN 0
48
49 #include <gio/gio.h>
50
51 static pthread_mutex_t g_subscribe_cb_list_mutex = PTHREAD_MUTEX_INITIALIZER;
52
53 #define MM_SOUND_DBUS_BUS_NAME_PREPIX  "org.tizen.MMSound"
54 #define MM_SOUND_DBUS_OBJECT_PATH  "/org/tizen/MMSound"
55 #define MM_SOUND_DBUS_INTERFACE    "org.tizen.mmsound"
56
57 static GDBusConnection *g_dbus_conn_mmsound;
58 static int g_dbus_signal_values[MM_SOUND_SIGNAL_MAX] = {0,};
59 static const char* dbus_signal_name_str[] = {
60         "ReleaseInternalFocus",
61 };
62
63 typedef struct _subscribe_cb {
64         mm_sound_signal_name_t signal_type;
65         mm_sound_signal_callback callback;
66         void *user_data;
67         unsigned int id;
68         int client_pid;
69 } subscribe_cb_t;
70
71 static const char* _get_volume_str (volume_type_t type)
72 {
73         static const char *volume_type_str[VOLUME_TYPE_MAX] =
74                 { "SYSTEM", "NOTIFICATION", "ALARM", "RINGTONE", "MEDIA", "CALL", "VOIP", "VOICE", "FIXED"};
75
76         return (type >= VOLUME_TYPE_SYSTEM && type < VOLUME_TYPE_MAX)? volume_type_str[type] : "Unknown";
77 }
78
79 static int _validate_volume(volume_type_t type, int value)
80 {
81         if (value < 0)
82                 return -1;
83
84         switch (type)
85         {
86         case VOLUME_TYPE_CALL:
87         case VOLUME_TYPE_VOIP:
88                 if (value >= VOLUME_MAX_BASIC) {
89                         return -1;
90                 }
91                 break;
92         case VOLUME_TYPE_SYSTEM:
93         case VOLUME_TYPE_MEDIA:
94         case VOLUME_TYPE_ALARM:
95         case VOLUME_TYPE_NOTIFICATION:
96         case VOLUME_TYPE_RINGTONE:
97         case VOLUME_TYPE_VOICE:
98                 if (value >= VOLUME_MAX_MULTIMEDIA) {
99                         return -1;
100                 }
101                 break;
102         default:
103                 return -1;
104                 break;
105         }
106         return 0;
107 }
108
109 EXPORT_API
110 int mm_sound_volume_remove_callback(volume_type_t type)
111 {
112         /* FIXME : Will be removed */
113         return MM_ERROR_NOT_SUPPORT_API;
114 }
115
116 EXPORT_API
117 int mm_sound_add_volume_changed_callback(mm_sound_volume_changed_cb func, void* user_data, unsigned int *subs_id)
118 {
119         int ret = MM_ERROR_NONE;
120
121         if (func == NULL || subs_id == NULL) {
122                 debug_error("argument is not valid");
123                 return MM_ERROR_INVALID_ARGUMENT;
124         }
125
126         ret = mm_sound_client_add_volume_changed_callback(func, user_data, subs_id);
127         if (ret < 0) {
128                 debug_error("Can not add volume changed callback, ret = %x", ret);
129         }
130
131         return ret;
132 }
133
134 EXPORT_API
135 int mm_sound_remove_volume_changed_callback(unsigned int subs_id)
136 {
137         int ret = MM_ERROR_NONE;
138
139         ret = mm_sound_client_remove_volume_changed_callback(subs_id);
140         if (ret < 0) {
141                 debug_error("Can not remove volume changed callback, ret = %x", ret);
142         }
143
144         return ret;
145 }
146
147 EXPORT_API
148 int mm_sound_volume_set_value(volume_type_t volume_type, const unsigned int volume_level)
149 {
150         int ret = MM_ERROR_NONE;
151
152         debug_msg("type = (%d)%s, value = %d", volume_type, _get_volume_str(volume_type), volume_level);
153
154         /* Check input param */
155         if (0 > _validate_volume(volume_type, (int)volume_level)) {
156                 debug_error("invalid volume type %d, value %u", volume_type, volume_level);
157                 return MM_ERROR_INVALID_ARGUMENT;
158         }
159
160         /* request daemon to set volume */
161         ret = mm_sound_client_set_volume_by_type(volume_type, volume_level);
162         if (MM_ERROR_NONE != ret)
163                 debug_error("Can not set volume, ret=0x%x", ret);
164
165         return ret;
166 }
167
168 EXPORT_API
169 int mm_sound_volume_get_value(volume_type_t type, unsigned int *value)
170 {
171         int ret = MM_ERROR_NONE;
172
173         /* Check input param */
174         if (value == NULL) {
175                 debug_error("invalid argument");
176                 return MM_ERROR_INVALID_ARGUMENT;
177         }
178         if (type < 0 || type >= VOLUME_TYPE_MAX) {
179                 debug_error("invalid volume type value %d", type);
180                 return MM_ERROR_INVALID_ARGUMENT;
181         }
182
183         ret = mm_sound_util_volume_get_value_by_type(type, value);
184
185         debug_msg("returned %s = %d", _get_volume_str(type), *value);
186         return ret;
187 }
188
189 EXPORT_API
190 int mm_sound_volume_primary_type_set(volume_type_t type)
191 {
192         int ret = MM_ERROR_NONE;
193
194         /* Check input param */
195         if(type < VOLUME_TYPE_UNKNOWN || type >= VOLUME_TYPE_MAX) {
196                 debug_error("invalid argument");
197                 return MM_ERROR_INVALID_ARGUMENT;
198         }
199
200         if (vconf_set_int(VCONFKEY_SOUND_PRIMARY_VOLUME_TYPE, type)) {
201                 debug_error("could not set vconf for RIMARY_VOLUME_TYPE");
202                 ret = MM_ERROR_SOUND_INTERNAL;
203         } else {
204                 debug_msg("set primary volume type forcibly %d(%s)", type, _get_volume_str(type));
205         }
206
207         return ret;
208 }
209
210 EXPORT_API
211 int mm_sound_volume_primary_type_get(volume_type_t *type)
212 {
213         int ret = MM_ERROR_NONE;
214         int voltype = VOLUME_TYPE_RINGTONE;
215
216         /* Check input param */
217         if(type == NULL) {
218                 debug_error("invalid argument");
219                 return MM_ERROR_INVALID_ARGUMENT;
220         }
221
222         /* check force set */
223         if (vconf_get_int(VCONFKEY_SOUND_PRIMARY_VOLUME_TYPE, &voltype)) {
224                 debug_error("could not get vconf for PRIMARY_VOLUME_TYPE");
225                 ret = MM_ERROR_SOUND_INTERNAL;
226         } else {
227                 debug_msg("get primary volume type %d(%s)", voltype, _get_volume_str(voltype));
228                 *type = voltype;
229         }
230
231         return ret;
232 }
233
234 EXPORT_API
235 int mm_sound_set_filter(const char *stream_type, const char *filter_name, const char *filter_parameters, const char *filter_group)
236 {
237         /* Check input param */
238         if (!stream_type || !filter_name) {
239                 debug_error("invalid argument");
240                 return MM_ERROR_INVALID_ARGUMENT;
241         }
242         if (!filter_parameters)
243                 filter_parameters = "";
244         if (!filter_group)
245                 filter_group = "default";
246
247         debug_msg("stream_type(%s), filter_name(%s), filter_parameters(%s), filter_group(%s)", stream_type, filter_name, filter_parameters, filter_group);
248
249         return mm_sound_client_set_filter_by_type(stream_type, filter_name, filter_parameters, filter_group);
250 }
251
252 EXPORT_API
253 int mm_sound_unset_filter(const char *stream_type)
254 {
255         /* Check input param */
256         if (!stream_type) {
257                 debug_error("invalid argument");
258                 return MM_ERROR_INVALID_ARGUMENT;
259         }
260
261         debug_msg("stream_type(%s)", stream_type);
262
263         return mm_sound_client_unset_filter_by_type(stream_type);
264 }
265
266 EXPORT_API
267 int mm_sound_control_filter(const char *stream_type, const char *filter_name, const char *filter_controls)
268 {
269         /* Check input param */
270         if (!stream_type || !filter_name || !filter_controls) {
271                 debug_error("invalid argument");
272                 return MM_ERROR_INVALID_ARGUMENT;
273         }
274
275         debug_msg("stream_type(%s), filter_name(%s), filter_controls(%s)", stream_type, filter_name, filter_controls);
276
277         return mm_sound_client_control_filter_by_type(stream_type, filter_name, filter_controls);
278 }
279
280 ///////////////////////////////////
281 ////     MMSOUND PLAY APIs
282 ///////////////////////////////////
283 static inline void _mm_sound_fill_play_param(MMSoundPlayParam *param, const char *filename, int volume_config, mm_sound_stop_callback_func callback, void *data)
284 {
285         param->filename = filename;
286         param->volume = 0; //volume value dose not effect anymore
287         param->callback = callback;
288         param->data = data;
289         param->loop = 1;
290         param->volume_config = volume_config;
291 }
292
293 EXPORT_API
294 int mm_sound_play_loud_solo_sound(const char *filename, int volume_config, mm_sound_stop_callback_func callback, void *data, int *handle)
295 {
296         MMSoundPlayParam param = { 0, };
297
298     /* FIXME : this function will be deleted */
299         _mm_sound_fill_play_param(&param, filename, volume_config, callback, data);
300         return mm_sound_play_sound_ex(&param, handle);
301 }
302
303 EXPORT_API
304 int mm_sound_play_sound(const char *filename, int volume_config, mm_sound_stop_callback_func callback, void *data, int *handle)
305 {
306         MMSoundPlayParam param = { 0, };
307
308         _mm_sound_fill_play_param(&param, filename, volume_config, callback, data);
309         return mm_sound_play_sound_ex(&param, handle);
310 }
311
312 EXPORT_API
313 int mm_sound_play_sound_ex(MMSoundPlayParam *param, int *handle)
314 {
315         int err;
316         int lhandle = -1;
317         int volume_type = 0;
318         /* Check input param */
319         if (param == NULL) {
320                 debug_error("param is null");
321                 return MM_ERROR_INVALID_ARGUMENT;
322         }
323
324         volume_type = MM_SOUND_VOLUME_CONFIG_TYPE(param->volume_config);
325
326         if (param->filename == NULL) {
327                 debug_error("filename is NULL");
328                 return MM_ERROR_SOUND_FILE_NOT_FOUND;
329         }
330         if (volume_type < 0 || volume_type >= VOLUME_TYPE_MAX) {
331                 debug_error("Volume type is invalid %d", volume_type);
332                 return MM_ERROR_INVALID_ARGUMENT;
333         }
334
335         /* Play sound */
336         err = mm_sound_client_play_sound(param, 0, &lhandle);
337         if (err < 0) {
338                 debug_error("Failed to play sound");
339                 return err;
340         }
341
342         /* Set handle to return */
343         if (handle) {
344                 *handle = lhandle;
345         } else {
346                 debug_critical("The sound hadle cannot be get [%d]", lhandle);
347         }
348
349         debug_warning ("success : handle=[%p]", handle);
350
351         return MM_ERROR_NONE;
352 }
353
354 EXPORT_API
355 int mm_sound_play_sound_with_stream_info(const char *filename, char *stream_type, int stream_id, unsigned int loop, mm_sound_stop_callback_func callback, void *data, int *handle)
356 {
357         MMSoundPlayParam param = { 0, };
358         int err;
359
360         param.filename = filename;
361         param.volume = 0; //volume value dose not effect anymore
362         param.callback = callback;
363         param.data = data;
364
365         if (loop == 0)
366                 param.loop = -1;
367         else
368                 param.loop = loop;
369
370         err = mm_sound_client_play_sound_with_stream_info(&param, handle, stream_type, stream_id);
371         if (err < 0) {
372                 debug_error("Failed to play sound");
373                 return err;
374         }
375
376         debug_warning ("success : handle=[%p]", handle);
377
378         return MM_ERROR_NONE;
379
380 }
381
382
383 EXPORT_API
384 int mm_sound_stop_sound(int handle)
385 {
386         int err;
387
388         debug_warning ("enter : handle=[%d]", handle);
389         /* Stop sound */
390         err = mm_sound_client_stop_sound(handle);
391         if (err < 0) {
392                 debug_error("Fail to stop sound");
393                 return err;
394         }
395         debug_warning ("success : handle=[%d]", handle);
396
397         return MM_ERROR_NONE;
398 }
399
400 ///////////////////////////////////
401 ////     MMSOUND TONE APIs
402 ///////////////////////////////////
403 EXPORT_API
404 int mm_sound_play_tone_ex (MMSoundTone_t num, int volume_config, const double volume, const int duration, int *handle, bool enable_session)
405 {
406         int lhandle = -1;
407         int err = MM_ERROR_NONE;
408         int volume_type = MM_SOUND_VOLUME_CONFIG_TYPE(volume_config);
409
410         debug_fenter();
411
412         /* Check input param */
413         if (duration < -1) {
414                 debug_error("number is invalid %d", duration);
415                 return MM_ERROR_INVALID_ARGUMENT;
416         }
417         if (num < MM_SOUND_TONE_DTMF_0 || num >= MM_SOUND_TONE_NUM) {
418                 debug_error("TONE Value is invalid %d", num);
419                 return MM_ERROR_INVALID_ARGUMENT;
420         }
421         if (volume_type < 0 || volume_type >= VOLUME_TYPE_MAX) {
422                 debug_error("Volume type is invalid %d", volume_type);
423                 return MM_ERROR_INVALID_ARGUMENT;
424         }
425         if (volume < 0.0 || volume > 1.0) {
426                 debug_error("Volume Value is invalid %d", volume);
427                 return MM_ERROR_INVALID_ARGUMENT;
428         }
429
430         /* Play tone */
431         debug_msg("Call MMSoundClientPlayTone");
432         err = mm_sound_client_play_tone(num, volume_config, volume, duration, &lhandle, enable_session);
433         if (err < 0) {
434                 debug_error("Failed to play sound");
435                 return err;
436         }
437
438         /* Set handle to return */
439         if (handle)
440                 *handle = lhandle;
441         else
442                 debug_critical("The sound handle cannot be get [%d]", lhandle);
443
444         debug_fleave();
445         return MM_ERROR_NONE;
446 }
447
448 EXPORT_API
449 int mm_sound_play_tone_with_stream_info(MMSoundTone_t tone, char *stream_type, int stream_id, const double volume, const int duration, int *handle)
450 {
451
452         int err = MM_ERROR_NONE;
453
454         err = mm_sound_client_play_tone_with_stream_info(tone, stream_type, stream_id, volume, duration, handle);
455         if (err <0) {
456                 debug_error("Failed to play sound");
457                 return err;
458         }
459
460         return err;
461
462 }
463
464
465 EXPORT_API
466 int mm_sound_play_tone (MMSoundTone_t num, int volume_config, const double volume, const int duration, int *handle)
467 {
468         return mm_sound_play_tone_ex (num, volume_config, volume, duration, handle, true);
469 }
470
471 ///////////////////////////////////
472 ////     MMSOUND ROUTING APIs
473 ///////////////////////////////////
474
475 EXPORT_API
476 int mm_sound_test(int a, int b, int* getv)
477 {
478         int ret = MM_ERROR_NONE;
479
480         debug_log("mm_sound_test enter");
481         if (!getv) {
482                 debug_error("argu null");
483                 return MM_ERROR_INVALID_ARGUMENT;
484         }
485         ret = mm_sound_client_test(a, b, getv);
486         if (ret < 0) {
487                 debug_error("Can not mm sound test, ret = %x", ret);
488         }
489         debug_log("mm_sound_test leave");
490
491         return ret;
492 }
493
494 EXPORT_API
495 int mm_sound_add_test_callback(mm_sound_test_cb func, void *user_data, unsigned int *subs_id)
496 {
497         int ret = MM_ERROR_NONE;
498
499         debug_log("enter");
500         if (!func || !subs_id) {
501                 debug_error("argument is not valid");
502                 return MM_ERROR_INVALID_ARGUMENT;
503         }
504
505         ret = mm_sound_client_add_test_callback(func, user_data, subs_id);
506         if (ret < 0) {
507                 debug_error("Can not add test callback, ret = %x", ret);
508         }
509         debug_log("leave");
510
511         return ret;
512 }
513
514 EXPORT_API
515 int mm_sound_remove_test_callback(unsigned int subs_id)
516 {
517         int ret = MM_ERROR_NONE;
518
519         debug_log("enter");
520         ret = mm_sound_client_remove_test_callback(subs_id);
521         if (ret < 0) {
522                 debug_error("Can not remove test callback, ret = %x", ret);
523         }
524         debug_log("leave");
525
526         return ret;
527 }
528
529 static int _convert_signal_name_str_to_enum (const char *name_str, mm_sound_signal_name_t *name_enum) {
530         int ret = MM_ERROR_NONE;
531
532         if (!name_str || !name_enum)
533                 return MM_ERROR_INVALID_ARGUMENT;
534
535         if (!strncmp(name_str, "ReleaseInternalFocus", strlen("ReleaseInternalFocus"))) {
536                 *name_enum = MM_SOUND_SIGNAL_RELEASE_INTERNAL_FOCUS;
537         } else {
538                 ret = MM_ERROR_INVALID_ARGUMENT;
539                 LOGE("not supported signal name(%s), err(0x%08x)", name_str, ret);
540         }
541         return ret;
542 }
543
544 static void _dbus_signal_callback (const char *signal_name, int value, void *user_data)
545 {
546         int ret = MM_ERROR_NONE;
547         mm_sound_signal_name_t signal;
548         subscribe_cb_t *subscribe_cb = (subscribe_cb_t*)user_data;
549
550         debug_fenter();
551
552         if (!subscribe_cb)
553                 return;
554
555         ret = _convert_signal_name_str_to_enum(signal_name, &signal);
556         if (ret)
557                 return;
558
559         debug_msg("signal: name[%s], value[0x%08x], user_data[%p], type[%d]",
560                         signal_name, value, user_data, subscribe_cb->signal_type);
561
562         if (subscribe_cb->signal_type == MM_SOUND_SIGNAL_RELEASE_INTERNAL_FOCUS) {
563                 /* Trigger the signal callback when it comes from the same process.
564                 * In this case, the second integer argument is consist of
565                 * |<-- pid (16bits) -->|<-- value (16bits) -->|,
566                 * FYI, #define PID_MAX_DEFAULT (CONFIG_BASE_SMALL ? 0x1000 : 0x8000).
567                 * In case of daemon usage, it uses the client_pid of subscribe_cb. */
568                 debug_msg ("client_pid[%d], getpid[%d], value>>16[%d], callback[%p]",
569                                 subscribe_cb->client_pid, getpid(), (value >> 16), subscribe_cb);
570                 if ((subscribe_cb->client_pid ? subscribe_cb->client_pid : getpid()) == (value >> 16))
571                         subscribe_cb->callback(signal, (value & 0x0000FFFF), subscribe_cb->user_data);
572         } else {
573                 debug_warning("not supported type[%d]", subscribe_cb->signal_type);
574         }
575
576         debug_fleave();
577
578         return;
579 }
580
581 static void signal_callback(GDBusConnection *conn,
582                                                            const gchar *sender_name,
583                                                            const gchar *object_path,
584                                                            const gchar *interface_name,
585                                                            const gchar *signal_name,
586                                                            GVariant *parameters,
587                                                            gpointer user_data)
588 {
589         int value=0;
590         const GVariantType* value_type;
591
592         debug_msg ("sender : %s, object : %s, interface : %s, signal : %s",
593                         sender_name, object_path, interface_name, signal_name);
594         if (g_variant_is_of_type(parameters, G_VARIANT_TYPE("(i)"))) {
595                 g_variant_get(parameters, "(i)",&value);
596                 debug_msg(" - value : 0x08%x", value);
597                 _dbus_signal_callback(signal_name, value, user_data);
598         } else  {
599                 value_type = g_variant_get_type(parameters);
600                 debug_warning("signal type is %s", value_type);
601         }
602 }
603
604 EXPORT_API
605 int mm_sound_subscribe_signal(mm_sound_signal_name_t signal_type, unsigned int *subscribe_id,
606                                                         mm_sound_signal_callback callback, void *user_data)
607 {
608         int ret = MM_ERROR_NONE;
609         GError *err = NULL;
610         guint subs_id;
611         subscribe_cb_t *subscribe_cb = NULL;
612
613         debug_fenter();
614
615         MMSOUND_ENTER_CRITICAL_SECTION_WITH_RETURN(&g_subscribe_cb_list_mutex, MM_ERROR_SOUND_INTERNAL);
616
617         if (signal_type < 0 || signal_type >= MM_SOUND_SIGNAL_MAX || !subscribe_id) {
618                 debug_error ("invalid argument, signal(%d), subscribe_id(%p)", signal_type, subscribe_id);
619                 ret = MM_ERROR_INVALID_ARGUMENT;
620                 goto error;
621         }
622
623         subscribe_cb = malloc(sizeof(subscribe_cb_t));
624         if (!subscribe_cb) {
625                 ret = MM_ERROR_SOUND_INTERNAL;
626                 goto error;
627         }
628         memset(subscribe_cb, 0, sizeof(subscribe_cb_t));
629         subscribe_cb->signal_type = signal_type;
630         subscribe_cb->callback = callback;
631         subscribe_cb->user_data = user_data;
632
633         g_dbus_conn_mmsound = g_bus_get_sync(G_BUS_TYPE_SYSTEM, NULL, &err);
634         if (!g_dbus_conn_mmsound && err) {
635                 debug_error ("g_bus_get_sync() error (%s) ", err->message);
636                 g_error_free (err);
637                 ret = MM_ERROR_SOUND_INTERNAL;
638                 goto error;
639         }
640         subs_id = g_dbus_connection_signal_subscribe(g_dbus_conn_mmsound, NULL, MM_SOUND_DBUS_INTERFACE,
641                                                                                                         dbus_signal_name_str[signal_type], MM_SOUND_DBUS_OBJECT_PATH,
642                                                                                                         NULL, G_DBUS_SIGNAL_FLAGS_NONE, signal_callback,
643                                                                                                         subscribe_cb, free);
644         if (subs_id == 0) {
645                 debug_error ("g_dbus_connection_signal_subscribe() error (%d)", subs_id);
646                 ret = MM_ERROR_SOUND_INTERNAL;
647                 g_object_unref(g_dbus_conn_mmsound);
648                 goto error;
649         }
650         subscribe_cb->id = subs_id;
651         *subscribe_id = subs_id;
652
653         MMSOUND_LEAVE_CRITICAL_SECTION(&g_subscribe_cb_list_mutex);
654
655         debug_fleave();
656
657         return ret;
658
659 error:
660         if (subscribe_cb)
661                 free(subscribe_cb);
662
663         MMSOUND_LEAVE_CRITICAL_SECTION(&g_subscribe_cb_list_mutex);
664
665         return ret;
666 }
667
668 /* ToDo : Almost same as mm_sound_subscribe_signal, need to be merged */
669 EXPORT_API
670 int mm_sound_subscribe_signal_for_daemon(mm_sound_signal_name_t signal_type, int client_pid, unsigned int *subscribe_id,
671                                                                                 mm_sound_signal_callback callback, void *user_data)
672 {
673         int ret = MM_ERROR_NONE;
674         GError *err = NULL;
675         guint subs_id;
676         subscribe_cb_t *subscribe_cb = NULL;
677
678         debug_fenter();
679
680         MMSOUND_ENTER_CRITICAL_SECTION_WITH_RETURN(&g_subscribe_cb_list_mutex, MM_ERROR_SOUND_INTERNAL);
681
682         if (signal_type < 0 || signal_type >= MM_SOUND_SIGNAL_MAX || !client_pid || !subscribe_id) {
683                 debug_error ("invalid argument, signal(%d), client_pid(%d), subscribe_id(%p)", signal_type, client_pid, subscribe_id);
684                 ret = MM_ERROR_INVALID_ARGUMENT;
685                 goto error;
686         }
687
688         subscribe_cb = malloc(sizeof(subscribe_cb_t));
689         if (!subscribe_cb) {
690                 ret = MM_ERROR_SOUND_INTERNAL;
691                 goto error;
692         }
693         memset(subscribe_cb, 0, sizeof(subscribe_cb_t));
694         subscribe_cb->signal_type = signal_type;
695         subscribe_cb->callback = callback;
696         subscribe_cb->user_data = user_data;
697         subscribe_cb->client_pid = client_pid;
698
699         g_dbus_conn_mmsound = g_bus_get_sync(G_BUS_TYPE_SYSTEM, NULL, &err);
700         if (!g_dbus_conn_mmsound && err) {
701                 debug_error ("g_bus_get_sync() error (%s) ", err->message);
702                 g_error_free (err);
703                 ret = MM_ERROR_SOUND_INTERNAL;
704                 goto error;
705         }
706         subs_id = g_dbus_connection_signal_subscribe(g_dbus_conn_mmsound, NULL, MM_SOUND_DBUS_INTERFACE,
707                                                                                                         dbus_signal_name_str[signal_type], MM_SOUND_DBUS_OBJECT_PATH,
708                                                                                                         NULL, G_DBUS_SIGNAL_FLAGS_NONE, signal_callback,
709                                                                                                         subscribe_cb, free);
710         if (subs_id == 0) {
711                 debug_error ("g_dbus_connection_signal_subscribe() error (%d)", subs_id);
712                 ret = MM_ERROR_SOUND_INTERNAL;
713                 g_object_unref(g_dbus_conn_mmsound);
714                 goto error;
715         }
716         subscribe_cb->id = subs_id;
717         *subscribe_id = subs_id;
718
719         MMSOUND_LEAVE_CRITICAL_SECTION(&g_subscribe_cb_list_mutex);
720
721         debug_fleave();
722
723         return ret;
724
725 error:
726         if (subscribe_cb)
727                 free(subscribe_cb);
728
729         MMSOUND_LEAVE_CRITICAL_SECTION(&g_subscribe_cb_list_mutex);
730
731         return ret;
732 }
733
734 EXPORT_API
735 void mm_sound_unsubscribe_signal(unsigned int subscribe_id)
736 {
737         debug_fenter();
738
739         MMSOUND_ENTER_CRITICAL_SECTION(&g_subscribe_cb_list_mutex);
740
741         if (g_dbus_conn_mmsound && subscribe_id) {
742                 g_dbus_connection_signal_unsubscribe(g_dbus_conn_mmsound, subscribe_id);
743                 g_object_unref(g_dbus_conn_mmsound);
744         }
745
746         MMSOUND_LEAVE_CRITICAL_SECTION(&g_subscribe_cb_list_mutex);
747
748         debug_fleave();
749 }
750
751 EXPORT_API
752 int mm_sound_send_signal(mm_sound_signal_name_t signal_type, int value)
753 {
754         int ret = MM_ERROR_NONE;
755         GError *err = NULL;
756         GDBusConnection *conn = NULL;
757         gboolean dbus_ret = TRUE;
758
759         debug_fenter();
760
761         MMSOUND_ENTER_CRITICAL_SECTION_WITH_RETURN(&g_subscribe_cb_list_mutex, MM_ERROR_SOUND_INTERNAL);
762
763         if (signal_type < 0 || signal_type >= MM_SOUND_SIGNAL_MAX) {
764                 debug_error ("invalid argument, signal(%d)", signal_type);
765                 ret = MM_ERROR_INVALID_ARGUMENT;
766                 goto error;
767         }
768
769         conn = g_bus_get_sync(G_BUS_TYPE_SYSTEM, NULL, &err);
770         if (!conn && err) {
771                 debug_error ("g_bus_get_sync() error (%s)", err->message);
772                 ret = MM_ERROR_SOUND_INTERNAL;
773                 goto error;
774         }
775
776         g_dbus_signal_values[signal_type] = value;
777         if (signal_type == MM_SOUND_SIGNAL_RELEASE_INTERNAL_FOCUS) {
778                 /* Trigger the signal callback when it comes from the same process.
779                 * |<-- pid (16bits) -->|<-- value (16bits) -->|,
780                 * FYI, #define PID_MAX_DEFAULT (CONFIG_BASE_SMALL ? 0x1000 : 0x8000). */
781                 value |= ((int)getpid() << 16);
782                 if ((_mm_session_util_write_information((int)getpid(), MM_SESSION_TYPE_REPLACED_BY_STREAM, 0)))
783                         debug_error ("failed to _mm_session_util_write_information for MM_SESSION_TYPE_REPLACED_BY_STREAM");
784         }
785         dbus_ret = g_dbus_connection_emit_signal (conn,
786                                 NULL, MM_SOUND_DBUS_OBJECT_PATH, MM_SOUND_DBUS_INTERFACE, dbus_signal_name_str[signal_type],
787                                 g_variant_new ("(i)", value),
788                                 &err);
789         if (!dbus_ret && err) {
790                 debug_error ("g_dbus_connection_emit_signal() error (%s)", err->message);
791                 ret = MM_ERROR_SOUND_INTERNAL;
792                 goto error;
793         }
794
795         dbus_ret = g_dbus_connection_flush_sync(conn, NULL, &err);
796         if (!dbus_ret && err) {
797                 debug_error ("g_dbus_connection_flush_sync() error (%s)", err->message);
798                 ret = MM_ERROR_SOUND_INTERNAL;
799                 goto error;
800         }
801
802         g_object_unref(conn);
803         debug_msg ("sending signal[%s], value[%d] success", dbus_signal_name_str[signal_type], value);
804
805         MMSOUND_LEAVE_CRITICAL_SECTION(&g_subscribe_cb_list_mutex);
806
807         debug_fleave();
808
809         return ret;
810
811 error:
812         if (err)
813                 g_error_free (err);
814         if (conn)
815                 g_object_unref(conn);
816
817         MMSOUND_LEAVE_CRITICAL_SECTION(&g_subscribe_cb_list_mutex);
818
819         return ret;
820 }
821
822 EXPORT_API
823 int mm_sound_get_signal_value(mm_sound_signal_name_t signal_type, int *value)
824 {
825         int ret = MM_ERROR_NONE;
826
827         debug_fenter();
828
829         MMSOUND_ENTER_CRITICAL_SECTION_WITH_RETURN(&g_subscribe_cb_list_mutex, MM_ERROR_SOUND_INTERNAL);
830
831         *value = g_dbus_signal_values[signal_type];
832
833         MMSOUND_LEAVE_CRITICAL_SECTION(&g_subscribe_cb_list_mutex);
834
835         debug_fleave();
836
837         return ret;
838 }
839
840 __attribute__ ((constructor))
841 static void _mm_sound_initialize(void)
842 {
843         mm_sound_client_initialize();
844         /* Will be Fixed */
845 }
846
847 __attribute__ ((destructor))
848 static void _mm_sound_finalize(void)
849 {
850         mm_sound_client_finalize();
851 }
852
853