fe9cef3867cae48ab46331acae093c718d131a73
[platform/core/multimedia/libmm-sound.git] / mm_sound_client.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 <stdio.h>
23 #include <stdlib.h>
24 #include <string.h>
25 #include <poll.h>
26 #include <sys/stat.h>
27 #include <fcntl.h>
28 #include <unistd.h>
29 #include <errno.h>
30 #include <signal.h>
31
32 #include <pthread.h>
33 #include <semaphore.h>
34
35 #include <mm_error.h>
36 #include <mm_debug.h>
37
38 #include "include/mm_sound.h"
39 #include "include/mm_sound_client.h"
40 #include "include/mm_sound_proxy.h"
41 #include "include/mm_sound_common.h"
42 #include "include/mm_sound_device.h"
43 #include "include/mm_sound_stream.h"
44
45 #include <mm_session.h>
46 #include <mm_session_private.h>
47
48 #include <glib.h>
49 #if defined(__GSOURCE_CALLBACK__)
50 #include <sys/poll.h>
51 #endif
52
53 #define CLIENT_HANDLE_MAX 256
54
55 #define FOCUS_HANDLE_MAX 512
56 #define FOCUS_HANDLE_INIT_VAL -1
57 #define CONFIG_ENABLE_RETCB
58
59 #define VOLUME_TYPE_LEN 64
60
61 struct sigaction system_int_old_action;
62 struct sigaction system_abrt_old_action;
63 struct sigaction system_segv_old_action;
64 struct sigaction system_term_old_action;
65 struct sigaction system_sys_old_action;
66 struct sigaction system_xcpu_old_action;
67
68 struct callback_data {
69         void *user_cb;
70         void *user_data;
71         void *extra_data;
72         guint subs_id;
73 };
74
75 #define GET_CB_DATA(_cb_data, _func, _userdata, _extradata) \
76         do { \
77                 _cb_data = (struct callback_data*) g_malloc0(sizeof(struct callback_data)); \
78                 _cb_data->user_cb = _func; \
79                 _cb_data->user_data = _userdata; \
80                 _cb_data->extra_data = _extradata; \
81         } while (0)
82
83 #ifdef USE_FOCUS
84 typedef struct {
85         int focus_tid;
86         int handle;
87         int focus_fd;
88         GSourceFuncs* g_src_funcs;
89         GPollFD* g_poll_fd;
90         GSource* focus_src;
91         bool is_used;
92         bool auto_reacquire;
93         GMutex focus_lock;
94         mm_sound_focus_changed_cb focus_callback;
95         mm_sound_focus_changed_watch_cb watch_callback;
96         void* user_data;
97
98         bool is_for_session;    /* will be removed when the session concept is completely left out*/
99 } focus_sound_info_t;
100
101 typedef struct {
102         int pid;
103         int handle;
104         int type;
105         int state;
106         char stream_type[MAX_STREAM_TYPE_LEN];
107         char ext_info[MM_SOUND_NAME_NUM];
108         int option;
109 } focus_cb_data_lib;
110
111 typedef struct {
112         mm_sound_focus_session_interrupt_cb user_cb;
113         void* user_data;
114 } focus_session_interrupt_info_t;
115
116 typedef gboolean (*focus_gLoopPollHandler_t)(gpointer d);
117
118 GThread *g_focus_thread;
119 GMainLoop *g_focus_loop;
120 focus_sound_info_t g_focus_sound_handle[FOCUS_HANDLE_MAX];
121 focus_session_interrupt_info_t g_focus_session_interrupt_info = {NULL, NULL};
122 static pthread_mutex_t g_index_mutex = PTHREAD_MUTEX_INITIALIZER;
123 guint g_focus_signal_handle = 0;
124 #endif
125
126 gboolean g_need_emergent_exit = FALSE;
127
128 typedef struct {
129         /* handle to watch end of playing */
130         int watching_handle;
131         /* subscription id to unsubscribe when handle ended */
132         unsigned subs_id;
133 } play_sound_end_callback_data_t;
134
135 void _system_signal_handler(int signo)
136 {
137         int ret = MM_ERROR_NONE;
138         sigset_t old_mask, all_mask;
139
140         debug_warning("Got signal : signo(%d)", signo);
141
142         /* signal block */
143
144         sigfillset(&all_mask);
145         sigprocmask(SIG_BLOCK, &all_mask, &old_mask);
146
147         if (g_need_emergent_exit) {
148                 ret = mm_sound_proxy_emergent_exit(getpid());
149                 if (ret == MM_ERROR_NONE)
150                         debug_msg("[Client] Success to emergnet_exit\n");
151                 else
152                         debug_error("[Client] Error occurred : 0x%x \n",ret);
153         }
154
155         sigprocmask(SIG_SETMASK, &old_mask, NULL);
156         /* signal unblock */
157
158         switch (signo) {
159         case SIGINT:
160                 sigaction(SIGINT, &system_int_old_action, NULL);
161                 raise( signo);
162                 break;
163         case SIGABRT:
164                 sigaction(SIGABRT, &system_abrt_old_action, NULL);
165                 raise( signo);
166                 break;
167         case SIGSEGV:
168                 sigaction(SIGSEGV, &system_segv_old_action, NULL);
169                 raise( signo);
170                 break;
171         case SIGTERM:
172                 sigaction(SIGTERM, &system_term_old_action, NULL);
173                 raise( signo);
174                 break;
175         case SIGSYS:
176                 sigaction(SIGSYS, &system_sys_old_action, NULL);
177                 raise( signo);
178                 break;
179         case SIGXCPU:
180                 sigaction(SIGXCPU, &system_xcpu_old_action, NULL);
181                 raise( signo);
182                 break;
183         default:
184                 break;
185         }
186
187         debug_warning("signal handling end");
188 }
189
190 int mm_sound_client_initialize(void)
191 {
192         int ret = MM_ERROR_NONE;
193         debug_fenter();
194
195         mm_sound_proxy_initialize();
196
197
198         struct sigaction system_action;
199         system_action.sa_handler = _system_signal_handler;
200         system_action.sa_flags = SA_NOCLDSTOP;
201
202         sigemptyset(&system_action.sa_mask);
203
204         sigaction(SIGINT, &system_action, &system_int_old_action);
205         sigaction(SIGABRT, &system_action, &system_abrt_old_action);
206         sigaction(SIGSEGV, &system_action, &system_segv_old_action);
207         sigaction(SIGTERM, &system_action, &system_term_old_action);
208         sigaction(SIGSYS, &system_action, &system_sys_old_action);
209         sigaction(SIGXCPU, &system_action, &system_xcpu_old_action);
210
211         debug_fleave();
212         return ret;
213 }
214
215 int mm_sound_client_finalize(void)
216 {
217         int ret = MM_ERROR_NONE;
218
219         debug_fenter();
220
221         if (g_need_emergent_exit) {
222                 ret = mm_sound_proxy_emergent_exit(getpid());
223                 if (ret == MM_ERROR_NONE)
224                         debug_msg("[Client] Success to emergnet_exit\n");
225                 else
226                         debug_error("[Client] Error occurred : 0x%x \n",ret);
227         }
228
229         sigaction(SIGINT, &system_int_old_action, NULL);
230         sigaction(SIGABRT, &system_abrt_old_action, NULL);
231         sigaction(SIGSEGV, &system_segv_old_action, NULL);
232         sigaction(SIGTERM, &system_term_old_action, NULL);
233         sigaction(SIGSYS, &system_sys_old_action, NULL);
234         sigaction(SIGXCPU, &system_xcpu_old_action, NULL);
235
236         ret = mm_sound_proxy_finalize();
237
238
239 #ifdef USE_FOCUS
240
241         if (g_focus_thread) {
242                 g_main_loop_quit(g_focus_loop);
243                 g_thread_join(g_focus_thread);
244                 debug_log("after thread join");
245                 g_main_loop_unref(g_focus_loop);
246                 g_focus_thread = NULL;
247         }
248
249 #endif
250
251         debug_fleave();
252         return ret;
253 }
254
255 void mm_sound_convert_volume_type_to_stream_type(int volume_type, char *stream_type)
256 {
257         switch (volume_type) {
258         case VOLUME_TYPE_SYSTEM:
259                 MMSOUND_STRNCPY(stream_type, "system", MM_SOUND_STREAM_TYPE_LEN);
260                 break;
261         case VOLUME_TYPE_NOTIFICATION:
262                 MMSOUND_STRNCPY(stream_type, "notification", MM_SOUND_STREAM_TYPE_LEN);
263                 break;
264         case VOLUME_TYPE_ALARM:
265                 MMSOUND_STRNCPY(stream_type, "alarm", MM_SOUND_STREAM_TYPE_LEN);
266                 break;
267         case VOLUME_TYPE_RINGTONE:
268                 MMSOUND_STRNCPY(stream_type, "ringtone-voip", MM_SOUND_STREAM_TYPE_LEN);
269                 break;
270         case VOLUME_TYPE_MEDIA:
271                 MMSOUND_STRNCPY(stream_type, "media", MM_SOUND_STREAM_TYPE_LEN);
272                 break;
273         case VOLUME_TYPE_CALL:
274                 MMSOUND_STRNCPY(stream_type, "call-voice", MM_SOUND_STREAM_TYPE_LEN);
275                 break;
276         case VOLUME_TYPE_VOIP:
277                 MMSOUND_STRNCPY(stream_type, "voip", MM_SOUND_STREAM_TYPE_LEN);
278                 break;
279         case VOLUME_TYPE_VOICE:
280                 MMSOUND_STRNCPY(stream_type, "voice-recognition", MM_SOUND_STREAM_TYPE_LEN);
281                 break;
282         default:
283                 MMSOUND_STRNCPY(stream_type, "media", MM_SOUND_STREAM_TYPE_LEN);
284                 break;
285         }
286
287         debug_msg("volume type (%d) converted to stream type (%s)", volume_type, stream_type);
288
289 }
290
291 /*****************************************************************************************
292                             DBUS SUPPORTED FUNCTIONS
293 ******************************************************************************************/
294 #ifdef USE_FOCUS
295 void _mm_sound_client_focus_signal_callback(mm_sound_signal_name_t signal, int value, void *user_data)
296 {
297         int ret = MM_ERROR_NONE;
298
299         debug_fenter();
300         debug_msg("focus signal received, value = %d", value);
301
302         if (value == 1) {
303                 ret = mm_sound_proxy_clear_focus(getpid());
304                 if (ret)
305                         debug_error("clear focus failed ret = 0x%x", ret);
306                 mm_sound_unsubscribe_signal(g_focus_signal_handle);
307                 g_focus_signal_handle = 0;
308         }
309 }
310 #endif
311
312 int mm_sound_client_play_tone(int number, int volume_config, double volume, int time, int *handle, bool enable_session)
313 {
314         int ret = MM_ERROR_NONE;
315 //       int instance = -1;     /* instance is unique to communicate with server : client message queue filter type */
316         int volume_type = MM_SOUND_VOLUME_CONFIG_TYPE(volume_config);
317         char stream_type[MM_SOUND_STREAM_TYPE_LEN] = {0, };
318
319          debug_fenter();
320
321         /* read session information */
322         int session_type = MM_SESSION_TYPE_MEDIA;
323         int session_options = 0;
324         int is_focus_registered = 0;
325
326         ret = mm_sound_get_signal_value(MM_SOUND_SIGNAL_RELEASE_INTERNAL_FOCUS, &is_focus_registered);
327         if (ret) {
328                 debug_error("mm_sound_get_signal_value failed [0x%x]", ret);
329                 return MM_ERROR_POLICY_INTERNAL;
330         }
331
332         if (is_focus_registered)
333                 enable_session = false;
334
335         if (enable_session) {
336                 if (MM_ERROR_NONE != _mm_session_util_read_information(-1, &session_type, &session_options)) {
337                         debug_warning("[Client] Read Session Information failed. use default \"media\" type\n");
338                         session_type = MM_SESSION_TYPE_MEDIA;
339
340                         if(MM_ERROR_NONE != mm_session_init(session_type)) {
341                                 debug_critical("[Client] MMSessionInit() failed\n");
342                                 return MM_ERROR_POLICY_INTERNAL;
343                         }
344                 }
345         }
346
347          // instance = getpid();
348          //debug_log("[Client] pid for client ::: [%d]\n", instance);
349
350          /* Send msg */
351          debug_msg("[Client] Input number : %d\n", number);
352          /* Send req memory */
353
354         mm_sound_convert_volume_type_to_stream_type(volume_type, stream_type);
355         ret = mm_sound_proxy_play_tone(number, time, volume, volume_config,
356                                         session_type, session_options, getpid(), enable_session, handle, stream_type, -1);
357 #ifdef USE_FOCUS
358         if (enable_session && !g_focus_signal_handle) {
359                 ret = mm_sound_subscribe_signal(MM_SOUND_SIGNAL_RELEASE_INTERNAL_FOCUS, &g_focus_signal_handle, _mm_sound_client_focus_signal_callback, NULL);
360                 if (ret) {
361                         debug_error("mm_sound_subscribe_signal failed [0x%x]", ret);
362                         return MM_ERROR_POLICY_INTERNAL;
363                 }
364         }
365 #endif
366
367         debug_fleave();
368         return ret;
369 }
370
371 int mm_sound_client_play_tone_with_stream_info(int tone, char *stream_type, int stream_id, double volume, int duration, int *handle)
372 {
373         int ret = MM_ERROR_NONE;
374
375         debug_fenter();
376
377         ret = mm_sound_proxy_play_tone_with_stream_info(getpid(), tone, stream_type, stream_id, volume, duration, handle);
378
379         debug_fleave();
380         return ret;
381 }
382
383 static void _mm_sound_stop_callback_wrapper_func(int ended_handle, void *userdata)
384 {
385         struct callback_data *cb_data = (struct callback_data*) userdata;
386         play_sound_end_callback_data_t *end_cb_data;
387
388         debug_log("[Wrapper CB][Play Stop] ended_handle : %d", ended_handle);
389
390         if (cb_data == NULL) {
391                 debug_warning("stop callback data null");
392                 return;
393         }
394
395         end_cb_data = (play_sound_end_callback_data_t*) cb_data->extra_data;
396
397         if (ended_handle == end_cb_data->watching_handle) {
398                 debug_log("Interested playing handle end : %d", ended_handle);
399                 ((mm_sound_stop_callback_func)(cb_data->user_cb))(cb_data->user_data, ended_handle);
400                 if (mm_sound_proxy_remove_play_sound_end_callback(end_cb_data->subs_id) != MM_ERROR_NONE)
401                         debug_error("mm_sound_client_dbus_remove_play_file_end_callback failed");
402         } else {
403                 debug_log("Not interested playing handle : %d", ended_handle);
404         }
405 }
406
407 static void play_end_callback_data_free_func(void *data)
408 {
409         struct callback_data *cb_data = (struct callback_data*) data;
410
411         if (cb_data) {
412                 if (cb_data->extra_data)
413                         g_free(cb_data->extra_data);
414                 g_free(cb_data);
415         }
416 }
417
418 int mm_sound_client_play_sound(MMSoundPlayParam *param, int tone, int *handle)
419 {
420         int ret = MM_ERROR_NONE;
421         int session_type = MM_SESSION_TYPE_MEDIA;
422         int session_options = 0;
423         int is_focus_registered = 0;
424 //      int instance = -1;      /* instance is unique to communicate with server : client message queue filter type */
425         int volume_type = MM_SOUND_VOLUME_CONFIG_TYPE(param->volume_config);
426         char stream_type[MM_SOUND_STREAM_TYPE_LEN] = {0, };
427         struct callback_data *cb_data = NULL;
428         play_sound_end_callback_data_t *end_cb_data;
429
430         debug_fenter();
431
432         /* read session information */
433
434         ret = mm_sound_get_signal_value(MM_SOUND_SIGNAL_RELEASE_INTERNAL_FOCUS, &is_focus_registered);
435         if (ret) {
436                 debug_error("mm_sound_get_signal_value failed [0x%x]", ret);
437                 return MM_ERROR_POLICY_INTERNAL;
438         }
439
440         if (is_focus_registered)
441                 param->skip_session = true;
442
443         if (param->skip_session == false) {
444                 if(MM_ERROR_NONE != _mm_session_util_read_information(-1, &session_type, &session_options)) {
445                         debug_warning("[Client] Read MMSession Type failed. use default \"media\" type\n");
446                         session_type = MM_SESSION_TYPE_MEDIA;
447
448                         if(MM_ERROR_NONE != mm_session_init(session_type)) {
449                                 debug_critical("[Client] MMSessionInit() failed\n");
450                                 return MM_ERROR_POLICY_INTERNAL;
451                         }
452                 }
453         }
454
455         /* Send msg */
456         if ((param->mem_ptr && param->mem_size)) {
457                 // Play memory, deprecated
458                 return MM_ERROR_INVALID_ARGUMENT;
459         }
460
461         mm_sound_convert_volume_type_to_stream_type(volume_type, stream_type);
462         ret = mm_sound_proxy_play_sound(param->filename, tone, param->loop, param->volume, param->volume_config,
463                                          param->priority, session_type, session_options, getpid(), param->handle_route,
464                                          !param->skip_session, handle, stream_type, -1);
465         if (ret != MM_ERROR_NONE) {
466                 debug_error("Play Sound Failed");
467                 goto failed;
468         }
469         if (param->callback) {
470                 end_cb_data = (play_sound_end_callback_data_t *) g_malloc0(sizeof(play_sound_end_callback_data_t));
471                 end_cb_data->watching_handle = *handle;
472                 GET_CB_DATA(cb_data, param->callback, param->data, end_cb_data);
473
474                 ret = mm_sound_proxy_add_play_sound_end_callback(_mm_sound_stop_callback_wrapper_func, cb_data, play_end_callback_data_free_func, &end_cb_data->subs_id);
475                 if (ret != MM_ERROR_NONE) {
476                         debug_error("Add callback for play sound(%d) Failed", *handle);
477                 }
478         }
479 #ifdef USE_FOCUS
480         if (!param->skip_session && !g_focus_signal_handle) {
481                 ret = mm_sound_subscribe_signal(MM_SOUND_SIGNAL_RELEASE_INTERNAL_FOCUS, &g_focus_signal_handle, _mm_sound_client_focus_signal_callback, NULL);
482                 if (ret) {
483                         debug_error("mm_sound_subscribe_signal failed [0x%x]", ret);
484                         return MM_ERROR_POLICY_INTERNAL;
485                 }
486         }
487 #endif
488
489 failed:
490
491         debug_fleave();
492         return ret;
493 }
494
495 int mm_sound_client_play_sound_with_stream_info(MMSoundPlayParam *param, int *handle, char* stream_type, int stream_id)
496 {
497         int ret = MM_ERROR_NONE;
498         struct callback_data *cb_data = NULL;
499         play_sound_end_callback_data_t *end_cb_data;
500
501         ret = mm_sound_proxy_play_sound_with_stream_info(param->filename, param->loop, param->volume,
502                                          param->priority, getpid(), param->handle_route, handle, stream_type, stream_id);
503         if (ret != MM_ERROR_NONE) {
504                 debug_error("Play Sound Failed");
505                 goto failed;
506         }
507         if (param->callback) {
508                 end_cb_data = (play_sound_end_callback_data_t *) g_malloc0(sizeof(play_sound_end_callback_data_t));
509                 end_cb_data->watching_handle = *handle;
510                 GET_CB_DATA(cb_data, param->callback, param->data, end_cb_data);
511
512                 ret = mm_sound_proxy_add_play_sound_end_callback(_mm_sound_stop_callback_wrapper_func, cb_data, play_end_callback_data_free_func, &end_cb_data->subs_id);
513                 if (ret != MM_ERROR_NONE) {
514                         debug_error("Add callback for play sound(%d) Failed", *handle);
515                 }
516         }
517
518 failed:
519
520         debug_fleave();
521         return ret;
522
523 }
524
525 int mm_sound_client_stop_sound(int handle)
526 {
527         int ret = MM_ERROR_NONE;
528         debug_fenter();
529
530         if (handle < 0 || handle > CLIENT_HANDLE_MAX) {
531                 ret = MM_ERROR_INVALID_ARGUMENT;
532                 return ret;
533         }
534
535         ret = mm_sound_proxy_stop_sound(handle);
536
537         debug_fleave();
538         return ret;
539 }
540
541 static int _mm_sound_client_device_list_dump (GList *device_list)
542 {
543         int ret = MM_ERROR_NONE;
544         GList *list = NULL;
545         mm_sound_device_t *device_node = NULL;
546         int count = 0;
547         if (!device_list) {
548                 debug_error("Device list NULL, cannot dump list");
549                 return MM_ERROR_SOUND_INTERNAL;
550         }
551
552         debug_log("======================== device list : start ==========================\n");
553         for (list = device_list; list != NULL; list = list->next) {
554                 device_node = (mm_sound_device_t *)list->data;
555                 if (device_node) {
556                         debug_log(" list idx[%d]: type[%17s], id[%02d], io_direction[%d], state[%d], name[%s]\n",
557                                                 count++, device_node->type, device_node->id, device_node->io_direction, device_node->state, device_node->name);
558                 }
559         }
560         debug_log("======================== device list : end ============================\n");
561
562         return ret;
563 }
564
565 int mm_sound_client_get_current_connected_device_list(int device_flags, mm_sound_device_list_t *device_list)
566 {
567         int ret = MM_ERROR_NONE;
568         debug_fenter();
569
570         if (!device_list) {
571                 debug_error("Device list NULL");
572                 ret = MM_ERROR_COMMON_INVALID_ARGUMENT;
573                 goto failed;
574         }
575
576         if ((ret = mm_sound_proxy_get_current_connected_device_list(device_flags, &device_list->list)) != MM_ERROR_NONE) {
577                 debug_error("[Client] failed to get current connected device list with dbus, ret[0x%x]", ret);
578                 goto failed;
579         }
580         if (!device_list->list) {
581                 debug_error("Got device list null");
582                 ret = MM_ERROR_SOUND_NO_DATA;
583                 goto failed;
584         }
585         _mm_sound_client_device_list_dump(device_list->list);
586
587 failed:
588         debug_fleave();
589         return ret;
590 }
591
592 static bool device_is_match_direction(int direction, int mask)
593 {
594         if (mask == DEVICE_IO_DIRECTION_FLAGS || mask == 0)
595                 return true;
596
597         if ((mask & MM_SOUND_DEVICE_IO_DIRECTION_IN_FLAG) && (direction & MM_SOUND_DEVICE_IO_DIRECTION_IN))
598                 return true;
599         if ((mask & MM_SOUND_DEVICE_IO_DIRECTION_OUT_FLAG) && (direction & MM_SOUND_DEVICE_IO_DIRECTION_OUT))
600                 return true;
601         if ((mask & MM_SOUND_DEVICE_IO_DIRECTION_BOTH_FLAG) && (direction & MM_SOUND_DEVICE_IO_DIRECTION_BOTH))
602                 return true;
603
604         return false;
605 }
606
607 static bool device_is_match_state(int state, int mask)
608 {
609         if (mask == DEVICE_STATE_FLAGS || mask == 0)
610                 return true;
611
612         if ((mask & MM_SOUND_DEVICE_STATE_DEACTIVATED_FLAG) && (state == MM_SOUND_DEVICE_STATE_DEACTIVATED))
613                 return true;
614         if ((mask & MM_SOUND_DEVICE_STATE_ACTIVATED_FLAG) && (state == MM_SOUND_DEVICE_STATE_ACTIVATED))
615                 return true;
616
617         return false;
618 }
619
620 static bool device_is_match_type(const char *type, int mask)
621 {
622         bool is_builtin;
623         const char *builtin_prefix = "builtin";
624
625         if (mask == DEVICE_TYPE_FLAGS || mask == 0)
626                 return true;
627
628         is_builtin = !strncmp(type, builtin_prefix, strlen(builtin_prefix));
629
630         if ((mask & MM_SOUND_DEVICE_TYPE_INTERNAL_FLAG) && (is_builtin))
631                 return true;
632         if ((mask & MM_SOUND_DEVICE_TYPE_EXTERNAL_FLAG) && (!is_builtin))
633                 return true;
634
635         return false;
636 }
637
638 static bool device_is_match_with_mask(const char *type, int direction, int state, int mask)
639 {
640         if (mask == DEVICE_ALL_FLAG)
641                 return true;
642
643         return (device_is_match_direction(direction, mask & DEVICE_IO_DIRECTION_FLAGS) &&
644                         device_is_match_state(state, mask & DEVICE_STATE_FLAGS) &&
645                         device_is_match_type(type, mask & DEVICE_TYPE_FLAGS));
646 }
647
648 static int _fill_sound_device(mm_sound_device_t *device_h, int device_id, const char *device_type,
649                 int direction, int state, const char *name, int *stream_id, int stream_num)
650 {
651         int i;
652
653         if (stream_num > 0 && stream_id == NULL) {
654                 debug_error("stream_num is %d, but stream_id is NULL", stream_num);
655                 return -1;
656         }
657
658         if (stream_num > MAX_STREAM_ON_DEVICE) {
659                 debug_error("too many streams on this device");
660                 return -1;
661         }
662
663         device_h->id = device_id;
664         device_h->io_direction = direction;
665         device_h->state = state;
666         MMSOUND_STRNCPY(device_h->name, name, MAX_DEVICE_NAME_NUM);
667         MMSOUND_STRNCPY(device_h->type, device_type, MAX_DEVICE_TYPE_STR_LEN);
668
669         if (stream_num > 0) {
670                 device_h->stream_num = stream_num;
671                 debug_log("%d streams on this device", stream_num);
672                 for (i = 0; i < stream_num; i++) {
673                         debug_log("  stream_id : %d", stream_id[i]);
674                         device_h->stream_id[i] = stream_id[i];
675                 }
676         } else {
677                 device_h->stream_num = 0;
678                 debug_log("There is no stream on this device");
679         }
680
681         return 0;
682 }
683
684 static void _mm_sound_device_connected_callback_wrapper_func(int device_id, const char *device_type, int io_direction,
685                 int state, const char *name, int *stream_id, int stream_num, gboolean is_connected, void *userdata)
686 {
687         mm_sound_device_t device_h;
688         struct callback_data *cb_data = (struct callback_data*) userdata;
689         int device_flags;
690
691         debug_log("[Device %s] id(%d) type(%s) direction(%d) state(%d) name(%s)",
692                           is_connected ? "Connected" : "Disconnected", device_id, device_type, io_direction,
693                           state, name, is_connected);
694
695         if (cb_data == NULL) {
696                 debug_warning("device connected changed callback data null");
697                 return;
698         }
699
700         device_flags = (int) cb_data->extra_data;
701         if (!device_is_match_with_mask(device_type, io_direction, state, device_flags))
702                 return;
703
704         if (_fill_sound_device(&device_h, device_id, device_type, io_direction, state, name, stream_id, stream_num) < 0) {
705                 debug_error("Failed to fill sound device");
706                 return;
707         }
708
709         ((mm_sound_device_connected_cb)(cb_data->user_cb))(&device_h, is_connected, cb_data->user_data);
710 }
711
712 int mm_sound_client_add_device_connected_callback(int device_flags, mm_sound_device_connected_cb func, void* userdata, unsigned int *subs_id)
713 {
714         int ret = MM_ERROR_NONE;
715         struct callback_data *cb_data = NULL;
716
717         debug_fenter();
718
719         GET_CB_DATA(cb_data, func, userdata, (void*) device_flags);
720
721         ret = mm_sound_proxy_add_device_connected_callback(device_flags, _mm_sound_device_connected_callback_wrapper_func, cb_data, g_free, subs_id);
722         if (ret == MM_ERROR_NONE)
723                 g_need_emergent_exit = TRUE;
724
725         debug_fleave();
726         return ret;
727 }
728
729 int mm_sound_client_remove_device_connected_callback(unsigned int subs_id)
730 {
731         int ret = MM_ERROR_NONE;
732         debug_fenter();
733
734         ret = mm_sound_proxy_remove_device_connected_callback(subs_id);
735
736         debug_fleave();
737         return ret;
738 }
739
740 static void _mm_sound_device_info_changed_callback_wrapper_func(int device_id, const char *device_type, int io_direction,
741                 int state, const char *name, int *stream_id, int stream_num, int changed_device_info_type, void *userdata)
742 {
743         mm_sound_device_t device_h;
744         struct callback_data *cb_data = (struct callback_data*) userdata;
745         int device_flags;
746
747         debug_log("[Device Info Changed] id(%d) type(%s) direction(%d) state(%d) name(%s) changed_info_type(%d)",
748                           device_id, device_type, io_direction, state, name, changed_device_info_type);
749
750         if (cb_data == NULL) {
751                 debug_warning("device info changed callback data null");
752                 return;
753         }
754
755         device_flags = (int) cb_data->extra_data;
756         if (!device_is_match_with_mask(device_type, io_direction, state, device_flags))
757                 return;
758
759         if (_fill_sound_device(&device_h, device_id, device_type, io_direction, state, name, stream_id, stream_num) < 0) {
760                 debug_error("Failed to fill sound device");
761                 return;
762         }
763
764         ((mm_sound_device_info_changed_cb)(cb_data->user_cb))(&device_h, changed_device_info_type, cb_data->user_data);
765 }
766
767 int mm_sound_client_add_device_info_changed_callback(int device_flags, mm_sound_device_info_changed_cb func, void *userdata, unsigned int *subs_id)
768 {
769         int ret = MM_ERROR_NONE;
770         struct callback_data *cb_data = (struct callback_data*) userdata;
771
772         debug_fenter();
773
774         GET_CB_DATA(cb_data, func, userdata, (void *) device_flags);
775
776         ret = mm_sound_proxy_add_device_info_changed_callback(device_flags, _mm_sound_device_info_changed_callback_wrapper_func, cb_data, g_free, subs_id);
777
778         debug_fleave();
779         return ret;
780 }
781
782 int mm_sound_client_remove_device_info_changed_callback(unsigned int subs_id)
783 {
784         int ret = MM_ERROR_NONE;
785         debug_fenter();
786
787         ret =  mm_sound_proxy_remove_device_info_changed_callback(subs_id);
788
789         debug_fleave();
790         return ret;
791
792 }
793
794 static void _mm_sound_device_state_changed_callback_wrapper_func(int device_id, const char *device_type, int io_direction,
795                 int state, const char *name, int *stream_id, int stream_num, void *userdata)
796 {
797         mm_sound_device_t device_h;
798         struct callback_data *cb_data = (struct callback_data*) userdata;
799         int device_flags;
800
801         debug_log("[Device State Changed] id(%d) type(%s) direction(%d) state(%d) name(%s)",
802                           device_id, device_type, io_direction, state, name);
803
804         if (cb_data == NULL) {
805                 debug_warning("device state changed callback data null");
806                 return;
807         }
808
809         device_flags = (int) cb_data->extra_data;
810
811         if (!device_is_match_with_mask(device_type, io_direction, state, device_flags))
812                 return;
813
814         if (_fill_sound_device(&device_h, device_id, device_type, io_direction, state, name, stream_id, stream_num) < 0) {
815                 debug_error("Failed to fill sound device");
816                 return;
817         }
818
819         ((mm_sound_device_state_changed_cb)(cb_data->user_cb))(&device_h, state, cb_data->user_data);
820 }
821
822 int mm_sound_client_add_device_state_changed_callback(int device_flags, mm_sound_device_state_changed_cb func, void *userdata, unsigned int *id)
823 {
824         int ret = MM_ERROR_NONE;
825         struct callback_data *cb_data = (struct callback_data*) userdata;
826
827         debug_fenter();
828
829         GET_CB_DATA(cb_data, func, userdata, (void *) device_flags);
830
831         ret = mm_sound_proxy_add_device_state_changed_callback(device_flags, _mm_sound_device_state_changed_callback_wrapper_func, cb_data, g_free, id);
832
833         debug_fleave();
834         return ret;
835 }
836
837 int mm_sound_client_remove_device_state_changed_callback(unsigned int id)
838 {
839         int ret = MM_ERROR_NONE;
840         debug_fenter();
841
842         ret =  mm_sound_proxy_remove_device_state_changed_callback(id);
843
844         debug_fleave();
845         return ret;
846 }
847
848 int mm_sound_client_is_stream_on_device(int stream_id, int device_id, bool *is_on)
849 {
850         int ret = MM_ERROR_NONE;
851         debug_fenter();
852
853         if (!is_on) {
854                 debug_error("Invalid Parameter");
855                 ret = MM_ERROR_COMMON_INVALID_ARGUMENT;
856                 goto failed;
857         }
858
859         if ((ret = mm_sound_proxy_is_stream_on_device(stream_id, device_id, is_on)) != MM_ERROR_NONE) {
860                 debug_error("[Client] failed to query is stream on device, ret[0x%x]", ret);
861                 goto failed;
862         }
863
864 failed:
865         debug_fleave();
866         return ret;
867 }
868
869 int __convert_volume_type_to_str(int volume_type, char **volume_type_str)
870 {
871         int ret = MM_ERROR_NONE;
872
873         if (!volume_type_str) {
874                 return MM_ERROR_COMMON_INVALID_ARGUMENT;
875         }
876
877         switch (volume_type) {
878         case VOLUME_TYPE_SYSTEM:
879                 *volume_type_str = "system";
880                 break;
881         case VOLUME_TYPE_NOTIFICATION:
882                 *volume_type_str = "notification";
883                 break;
884         case VOLUME_TYPE_ALARM:
885                 *volume_type_str = "alarm";
886                 break;
887         case VOLUME_TYPE_RINGTONE:
888                 *volume_type_str = "ringtone";
889                 break;
890         case VOLUME_TYPE_MEDIA:
891                 *volume_type_str = "media";
892                 break;
893         case VOLUME_TYPE_CALL:
894                 *volume_type_str = "call";
895                 break;
896         case VOLUME_TYPE_VOIP:
897                 *volume_type_str = "voip";
898                 break;
899         case VOLUME_TYPE_VOICE:
900                 *volume_type_str = "voice";
901                 break;
902         }
903         if (!strncmp(*volume_type_str,"", VOLUME_TYPE_LEN)) {
904                 debug_error("could not find the volume_type[%d] in this switch case statement", volume_type);
905                 ret = MM_ERROR_SOUND_INTERNAL;
906         } else {
907                 debug_log("volume_type[%s]", *volume_type_str);
908         }
909         return ret;
910 }
911
912 static int __convert_volume_type_to_int(const char *volume_type_str, volume_type_t *volume_type)
913 {
914         int ret = MM_ERROR_NONE;
915
916         if (!volume_type || !volume_type_str) {
917                 return MM_ERROR_COMMON_INVALID_ARGUMENT;
918         }
919
920         if (!strncmp(volume_type_str, "system", VOLUME_TYPE_LEN)) {
921                 *volume_type = VOLUME_TYPE_SYSTEM;
922         } else if (!strncmp(volume_type_str, "notification", VOLUME_TYPE_LEN)) {
923                 *volume_type = VOLUME_TYPE_NOTIFICATION;
924         } else if (!strncmp(volume_type_str, "alarm", VOLUME_TYPE_LEN)) {
925                 *volume_type = VOLUME_TYPE_ALARM;
926         } else if (!strncmp(volume_type_str, "ringtone", VOLUME_TYPE_LEN)) {
927                 *volume_type = VOLUME_TYPE_RINGTONE;
928         } else if (!strncmp(volume_type_str, "media", VOLUME_TYPE_LEN)) {
929                 *volume_type = VOLUME_TYPE_MEDIA;
930         } else if (!strncmp(volume_type_str, "call", VOLUME_TYPE_LEN)) {
931                 *volume_type = VOLUME_TYPE_CALL;
932         } else if (!strncmp(volume_type_str, "voip", VOLUME_TYPE_LEN)) {
933                 *volume_type = VOLUME_TYPE_VOIP;
934         } else if (!strncmp(volume_type_str, "voice", VOLUME_TYPE_LEN)) {
935                 *volume_type = VOLUME_TYPE_VOICE;
936         } else {
937                 debug_log("Invalid volume type : [%s]", volume_type_str);
938                 ret = MM_ERROR_SOUND_INTERNAL;
939         }
940
941         return ret;
942 }
943
944 int mm_sound_client_set_volume_by_type(const int volume_type, const unsigned int volume_level)
945 {
946         int ret = MM_ERROR_NONE;
947         char *type_str = NULL;
948         debug_fenter();
949
950         if ((ret = __convert_volume_type_to_str(volume_type, &type_str)) != MM_ERROR_NONE) {
951                 debug_error("volume type convert failed");
952                 goto failed;
953         }
954
955         ret = mm_sound_proxy_set_volume_by_type(type_str, volume_level);
956
957 failed:
958         debug_fleave();
959         return ret;
960 }
961
962 static void _mm_sound_volume_changed_callback_wrapper_func(const char *direction, const char *volume_type_str, int volume_level, void *userdata)
963 {
964         volume_type_t volume_type = 0;
965         struct callback_data *cb_data = (struct callback_data *) userdata;
966
967         debug_log("[Wrapper CB][Volume Changed] direction : %s, volume_type : %s, volume_level : %d", direction, volume_type_str, volume_level);
968
969         if (cb_data == NULL) {
970                 debug_warning("volume changed callback data null");
971                 return;
972         }
973
974         if (__convert_volume_type_to_int(volume_type_str, &volume_type) != MM_ERROR_NONE) {
975                 debug_error("volume type convert failed");
976                 return;
977         }
978         debug_log("Call volume changed user cb, direction : %s, vol_type : %s(%d), level : %u", direction, volume_type_str, volume_type, volume_level);
979         ((mm_sound_volume_changed_cb)(cb_data->user_cb))(volume_type, volume_level, cb_data->user_data);
980 }
981
982 int mm_sound_client_add_volume_changed_callback(mm_sound_volume_changed_cb func, void* userdata, unsigned int *subs_id)
983 {
984         int ret = MM_ERROR_NONE;
985         struct callback_data *cb_data = NULL;
986
987         debug_fenter();
988
989         GET_CB_DATA(cb_data, func, userdata, NULL);
990
991         ret = mm_sound_proxy_add_volume_changed_callback(_mm_sound_volume_changed_callback_wrapper_func, cb_data, g_free, subs_id);
992
993         debug_fleave();
994
995         return ret;
996 }
997
998 int mm_sound_client_remove_volume_changed_callback(unsigned int subs_id)
999 {
1000         int ret = MM_ERROR_NONE;
1001         debug_fenter();
1002
1003         ret = mm_sound_proxy_remove_volume_changed_callback(subs_id);
1004
1005         debug_fleave();
1006         return ret;
1007 }
1008
1009 #ifdef USE_FOCUS
1010 int mm_sound_client_set_session_interrupt_callback(mm_sound_focus_session_interrupt_cb callback, void* user_data)
1011 {
1012         int ret = MM_ERROR_NONE;
1013
1014         debug_fenter();
1015
1016         if (!callback)
1017                 return MM_ERROR_INVALID_ARGUMENT;
1018
1019         g_focus_session_interrupt_info.user_cb = callback;
1020         g_focus_session_interrupt_info.user_data = user_data;
1021
1022         debug_fleave();
1023         return ret;
1024 }
1025
1026 int mm_sound_client_unset_session_interrupt_callback(void)
1027 {
1028         int ret = MM_ERROR_NONE;
1029
1030         debug_fenter();
1031
1032         if (!g_focus_session_interrupt_info.user_cb) {
1033                 debug_error("no callback to unset");
1034                 return MM_ERROR_SOUND_INTERNAL;
1035         }
1036
1037         g_focus_session_interrupt_info.user_cb = NULL;
1038         g_focus_session_interrupt_info.user_data = NULL;
1039
1040         debug_fleave();
1041         return ret;
1042 }
1043
1044 static gpointer _focus_thread_func(gpointer data)
1045 {
1046         debug_log(">>> thread func..ID of this thread(%u)\n", (unsigned int)pthread_self());
1047         g_main_loop_run(g_focus_loop);
1048         debug_log("<<< quit thread func..\n");
1049         return NULL;
1050 }
1051
1052 static gboolean _focus_fd_check(GSource * source)
1053 {
1054         GSList *fd_list;
1055         GPollFD *temp;
1056
1057         if (!source) {
1058                 debug_error("GSource is null");
1059                 return FALSE;
1060         }
1061         fd_list = source->poll_fds;
1062         if (!fd_list) {
1063                 debug_error("fd_list is null");
1064                 return FALSE;
1065         }
1066         do {
1067                 temp = (GPollFD*)fd_list->data;
1068                 if (!temp) {
1069                         debug_error("fd_list->data is null");
1070                         return FALSE;
1071                 }
1072                 if (temp->revents & (POLLIN | POLLPRI)) {
1073                         return TRUE;
1074                 }
1075                 fd_list = fd_list->next;
1076         } while (fd_list);
1077
1078         return FALSE; /* there is no change in any fd state */
1079 }
1080
1081 static gboolean _focus_fd_prepare(GSource *source, gint *timeout)
1082 {
1083         return FALSE;
1084 }
1085
1086 static gboolean _focus_fd_dispatch(GSource *source,     GSourceFunc callback, gpointer user_data)
1087 {
1088         callback(user_data);
1089         return TRUE;
1090 }
1091
1092 static int _focus_find_index_by_handle(int handle)
1093 {
1094         int i = 0;
1095         for (i = 0; i < FOCUS_HANDLE_MAX; i++) {
1096                 if (g_focus_sound_handle[i].focus_callback && handle == g_focus_sound_handle[i].handle) {
1097                         /* debug_msg("found index(%d) for handle(%d)", i, handle);*/
1098                         return (handle == FOCUS_HANDLE_INIT_VAL)? -1 : i;
1099                 }
1100         }
1101         return -1;
1102 }
1103
1104 static int _focus_watch_find_index_by_handle(int handle)
1105 {
1106         int i = 0;
1107         for (i = 0; i < FOCUS_HANDLE_MAX; i++) {
1108                 if (g_focus_sound_handle[i].watch_callback && handle == g_focus_sound_handle[i].handle) {
1109                         /* debug_msg("found index(%d) for watch handle(%d)", i, handle);*/
1110                         return (handle == FOCUS_HANDLE_INIT_VAL)? -1 : i;
1111                 }
1112         }
1113         return -1;
1114 }
1115
1116 static gboolean _focus_callback_handler(gpointer d)
1117 {
1118         GPollFD *data = (GPollFD*)d;
1119         int count;
1120         int tid = 0;
1121         int focus_index = 0;
1122         focus_cb_data_lib cb_data;
1123         debug_log(">>> focus_callback_handler()..ID of this thread(%u)\n", (unsigned int)pthread_self());
1124
1125         memset(&cb_data, 0, sizeof(focus_cb_data_lib));
1126
1127         if (!data) {
1128                 debug_error("GPollFd is null");
1129                 return FALSE;
1130         }
1131         if (data->revents & (POLLIN | POLLPRI)) {
1132                 int changed_state = -1;
1133
1134                 count = read(data->fd, &cb_data, sizeof(cb_data));
1135                 if (count < 0){
1136                         char str_error[256];
1137                         strerror_r(errno, str_error, sizeof(str_error));
1138                         debug_error("GpollFD read fail, errno=%d(%s)",errno, str_error);
1139                         return FALSE;
1140                 }
1141                 changed_state = cb_data.state;
1142                 focus_index = _focus_find_index_by_handle(cb_data.handle);
1143                 if (focus_index == -1) {
1144                         debug_error("Could not find index");
1145                         return FALSE;
1146                 }
1147
1148                 g_mutex_lock(&g_focus_sound_handle[focus_index].focus_lock);
1149
1150                 tid = g_focus_sound_handle[focus_index].focus_tid;
1151
1152                 if (changed_state != -1) {
1153                         debug_msg("Got and start CB : TID(%d), handle(%d), type(%d), state(%d,(DEACTIVATED(0)/ACTIVATED(1)), trigger(%s)", tid, cb_data.handle, cb_data.type, cb_data.state, cb_data.stream_type);
1154                         if (g_focus_sound_handle[focus_index].focus_callback == NULL) {
1155                                         debug_error("callback is null..");
1156                                         g_mutex_unlock(&g_focus_sound_handle[focus_index].focus_lock);
1157                                         return FALSE;
1158                         }
1159                         debug_msg("[CALLBACK(%p) START]",g_focus_sound_handle[focus_index].focus_callback);
1160                         (g_focus_sound_handle[focus_index].focus_callback)(cb_data.handle, cb_data.type, cb_data.state, cb_data.stream_type, cb_data.option, cb_data.ext_info, g_focus_sound_handle[focus_index].user_data);
1161                         debug_msg("[CALLBACK END]");
1162                         if (g_focus_session_interrupt_info.user_cb) {
1163                                 debug_msg("sending session interrupt callback(%p)", g_focus_session_interrupt_info.user_cb);
1164                                 (g_focus_session_interrupt_info.user_cb)(cb_data.state, cb_data.stream_type, false, g_focus_session_interrupt_info.user_data);
1165                         }
1166                 }
1167 #ifdef CONFIG_ENABLE_RETCB
1168                 {
1169                         int rett = 0;
1170                         int tmpfd = -1;
1171                         unsigned int buf = 0;
1172                         char *filename2 = g_strdup_printf("/tmp/FOCUS.%d.%dr", g_focus_sound_handle[focus_index].focus_tid, cb_data.handle);
1173                         tmpfd = open(filename2, O_WRONLY | O_NONBLOCK);
1174                         if (tmpfd < 0) {
1175                                 char str_error[256];
1176                                 strerror_r(errno, str_error, sizeof(str_error));
1177                                 debug_warning("[RETCB][Failed(May Server Close First)]tid(%d) fd(%d) %s errno=%d(%s)\n", tid, tmpfd, filename2, errno, str_error);
1178                                 g_free(filename2);
1179                                 g_mutex_unlock(&g_focus_sound_handle[focus_index].focus_lock);
1180                                 return FALSE;
1181                         }
1182                         /* buf contains data as below,
1183                          * |<--12bits--><--4bits (reacquisition)--><--16bits (handle)-->| */
1184                         buf = (unsigned int)((0x0000ffff & cb_data.handle) | (g_focus_sound_handle[focus_index].auto_reacquire << 16));
1185                         rett = write(tmpfd, &buf, sizeof(buf));
1186                         close(tmpfd);
1187                         g_free(filename2);
1188                         debug_msg("[RETCB] tid(%d) finishing CB (write=%d)\n", tid, rett);
1189                 }
1190 #endif
1191         }
1192
1193         g_mutex_unlock(&g_focus_sound_handle[focus_index].focus_lock);
1194
1195         return TRUE;
1196 }
1197
1198 static gboolean _focus_watch_callback_handler(gpointer d)
1199 {
1200         GPollFD *data = (GPollFD*)d;
1201         int count;
1202         int tid = 0;
1203         int focus_index = 0;
1204         focus_cb_data_lib cb_data;
1205
1206         debug_fenter();
1207
1208         memset(&cb_data, 0, sizeof(focus_cb_data_lib));
1209
1210         if (!data) {
1211                 debug_error("GPollFd is null");
1212                 return FALSE;
1213         }
1214         if (data->revents & (POLLIN | POLLPRI)) {
1215                 count = read(data->fd, &cb_data, sizeof(cb_data));
1216                 if (count < 0){
1217                         char str_error[256];
1218                         strerror_r(errno, str_error, sizeof(str_error));
1219                         debug_error("GpollFD read fail, errno=%d(%s)",errno, str_error);
1220                         return FALSE;
1221                 }
1222
1223                 focus_index = _focus_watch_find_index_by_handle(cb_data.handle);
1224                 if (focus_index == -1) {
1225                         debug_error("Could not find index");
1226                         return FALSE;
1227                 }
1228
1229                 debug_msg("lock focus_lock = %p", &g_focus_sound_handle[focus_index].focus_lock);
1230                 g_mutex_lock(&g_focus_sound_handle[focus_index].focus_lock);
1231
1232                 tid = g_focus_sound_handle[focus_index].focus_tid;
1233
1234                 debug_msg("Got and start CB : TID(%d), handle(%d), type(%d), state(%d,(DEACTIVATED(0)/ACTIVATED(1)), trigger(%s)", tid, cb_data.handle,  cb_data.type, cb_data.state, cb_data.stream_type);
1235
1236                 if (g_focus_sound_handle[focus_index].watch_callback == NULL) {
1237                         debug_msg("callback is null..");
1238                 } else {
1239                         debug_msg("[CALLBACK(%p) START]",g_focus_sound_handle[focus_index].watch_callback);
1240                         (g_focus_sound_handle[focus_index].watch_callback)(cb_data.handle, cb_data.type, cb_data.state, cb_data.stream_type, cb_data.ext_info, g_focus_sound_handle[focus_index].user_data);
1241                         debug_msg("[CALLBACK END]");
1242                         if (g_focus_session_interrupt_info.user_cb) {
1243                                 debug_msg("sending session interrupt callback(%p)", g_focus_session_interrupt_info.user_cb);
1244                                 (g_focus_session_interrupt_info.user_cb)(cb_data.state, cb_data.stream_type, true, g_focus_session_interrupt_info.user_data);
1245                         }
1246                 }
1247
1248 #ifdef CONFIG_ENABLE_RETCB
1249                 {
1250                         int rett = 0;
1251                         int tmpfd = -1;
1252                         int buf = -1;
1253                         char *filename2 = g_strdup_printf("/tmp/FOCUS.%d.%d.wchr", g_focus_sound_handle[focus_index].focus_tid, cb_data.handle);
1254                         tmpfd = open(filename2, O_WRONLY | O_NONBLOCK);
1255                         if (tmpfd < 0) {
1256                                 char str_error[256];
1257                                 strerror_r(errno, str_error, sizeof(str_error));
1258                                 debug_warning("[RETCB][Failed(May Server Close First)]tid(%d) fd(%d) %s errno=%d(%s)\n", tid, tmpfd, filename2, errno, str_error);
1259                                 g_free(filename2);
1260                                 g_mutex_unlock(&g_focus_sound_handle[focus_index].focus_lock);
1261                                 return FALSE;
1262                         }
1263                         buf = cb_data.handle;
1264                         rett = write(tmpfd, &buf, sizeof(buf));
1265                         close(tmpfd);
1266                         g_free(filename2);
1267                         debug_msg("[RETCB] tid(%d) finishing CB (write=%d)\n", tid, rett);
1268                 }
1269 #endif
1270         }
1271
1272         debug_msg("unlock focus_lock = %p", &g_focus_sound_handle[focus_index].focus_lock);
1273         g_mutex_unlock(&g_focus_sound_handle[focus_index].focus_lock);
1274
1275         debug_fleave();
1276
1277
1278         return TRUE;
1279 }
1280
1281 static void _focus_open_callback(int index, bool is_for_watching)
1282 {
1283         mode_t pre_mask;
1284         char *filename;
1285
1286         debug_fenter();
1287
1288         if (is_for_watching) {
1289                 filename = g_strdup_printf("/tmp/FOCUS.%d.%d.wch", g_focus_sound_handle[index].focus_tid, g_focus_sound_handle[index].handle);
1290         } else {
1291                 filename = g_strdup_printf("/tmp/FOCUS.%d.%d", g_focus_sound_handle[index].focus_tid, g_focus_sound_handle[index].handle);
1292         }
1293         pre_mask = umask(0);
1294         if (mknod(filename, S_IFIFO|0666, 0)) {
1295                 debug_error("mknod() failure, errno(%d)", errno);
1296         }
1297         umask(pre_mask);
1298         g_focus_sound_handle[index].focus_fd = open(filename, O_RDWR|O_NONBLOCK);
1299         if (g_focus_sound_handle[index].focus_fd == -1) {
1300                 debug_error("Open fail : index(%d), file open error(%d)", index, errno);
1301         } else {
1302                 debug_log("Open success : index(%d), filename(%s), fd(%d)", index, filename, g_focus_sound_handle[index].focus_fd);
1303         }
1304         g_free(filename);
1305         filename = NULL;
1306
1307 #ifdef CONFIG_ENABLE_RETCB
1308         char *filename2;
1309
1310         if (is_for_watching) {
1311                 filename2 = g_strdup_printf("/tmp/FOCUS.%d.%d.wchr", g_focus_sound_handle[index].focus_tid, g_focus_sound_handle[index].handle);
1312         } else {
1313                 filename2 = g_strdup_printf("/tmp/FOCUS.%d.%dr", g_focus_sound_handle[index].focus_tid, g_focus_sound_handle[index].handle);
1314         }
1315         pre_mask = umask(0);
1316         if (mknod(filename2, S_IFIFO | 0666, 0)) {
1317                 debug_error("mknod() failure, errno(%d)", errno);
1318         }
1319         umask(pre_mask);
1320         g_free(filename2);
1321         filename2 = NULL;
1322 #endif
1323         debug_fleave();
1324
1325 }
1326
1327 void _focus_close_callback(int index, bool is_for_watching)
1328 {
1329         char *filename = NULL;
1330
1331         debug_fenter();
1332
1333         if (g_focus_sound_handle[index].focus_fd < 0) {
1334                 debug_error("Close fail : index(%d)", index);
1335         } else {
1336                 close(g_focus_sound_handle[index].focus_fd);
1337                 debug_log("Close Success : index(%d)", index);
1338         }
1339
1340         if (is_for_watching) {
1341                 filename = g_strdup_printf("/tmp/FOCUS.%d.%d.wch", g_focus_sound_handle[index].focus_tid, g_focus_sound_handle[index].handle);
1342         } else {
1343                 filename = g_strdup_printf("/tmp/FOCUS.%d.%d", g_focus_sound_handle[index].focus_tid, g_focus_sound_handle[index].handle);
1344         }
1345         if (remove(filename)) {
1346                 debug_warning("remove(%s) failure (focus_server probably removed it in advance), errno(%d)", filename, errno);
1347         }
1348         g_free(filename);
1349         filename = NULL;
1350
1351 #ifdef CONFIG_ENABLE_RETCB
1352         char *filename2;
1353
1354         if (is_for_watching) {
1355                 filename2 = g_strdup_printf("/tmp/FOCUS.%d.%d.wchr", g_focus_sound_handle[index].focus_tid, g_focus_sound_handle[index].handle);
1356         } else {
1357                 filename2 = g_strdup_printf("/tmp/FOCUS.%d.%dr", g_focus_sound_handle[index].focus_tid, g_focus_sound_handle[index].handle);
1358         }
1359         if (remove(filename2)) {
1360                 debug_warning("remove(%s) failure (focus_server probably removed it in advance), errno(%d)", filename2, errno);
1361         }
1362         g_free(filename2);
1363         filename2 = NULL;
1364
1365         debug_fleave();
1366 #endif
1367
1368 }
1369
1370 static bool _focus_add_sound_callback(int index, int fd, gushort events, focus_gLoopPollHandler_t p_gloop_poll_handler )
1371 {
1372         GSource* g_src = NULL;
1373         GSourceFuncs *g_src_funcs = NULL;               /* handler function */
1374         guint g_src_id = 0;
1375         GPollFD *g_poll_fd = NULL;                      /* file descriptor */
1376
1377         debug_fenter();
1378
1379         g_mutex_init(&g_focus_sound_handle[index].focus_lock);
1380
1381         /* 1. make GSource Object */
1382         g_src_funcs = (GSourceFuncs *)g_malloc(sizeof(GSourceFuncs));
1383         if (!g_src_funcs) {
1384                 debug_error("failed to g_malloc for g_src_funcs");
1385                 goto ERROR;
1386         }
1387
1388         g_src_funcs->prepare = _focus_fd_prepare;
1389         g_src_funcs->check = _focus_fd_check;
1390         g_src_funcs->dispatch = _focus_fd_dispatch;
1391         g_src_funcs->finalize = NULL;
1392         g_src = g_source_new(g_src_funcs, sizeof(GSource));
1393         if (!g_src) {
1394                 debug_error("failed to g_source_new for g_src");
1395                 goto ERROR;
1396         }
1397
1398         /* 2. add file description which used in g_loop() */
1399         g_poll_fd = (GPollFD *)g_malloc(sizeof(GPollFD));
1400         if (!g_poll_fd) {
1401                 debug_error("failed to g_malloc for g_poll_fd");
1402                 goto ERROR;
1403         }
1404         g_poll_fd->fd = fd;
1405         g_poll_fd->events = events;
1406
1407         /* 3. combine g_source object and file descriptor */
1408         g_source_add_poll(g_src, g_poll_fd);
1409         g_src_id = g_source_attach(g_src, g_main_loop_get_context(g_focus_loop));
1410         if (!g_src_id) {
1411                 debug_error("failed to attach the source to context");
1412                 goto ERROR;
1413         }
1414
1415         /* 4. set callback */
1416         g_source_set_callback(g_src, p_gloop_poll_handler,(gpointer)g_poll_fd, NULL);
1417
1418         debug_log("g_malloc : g_src_funcs(%p), g_poll_fd(%p)", g_src_funcs, g_poll_fd);
1419
1420         /* 5. store to global handle */
1421         g_focus_sound_handle[index].focus_src = g_src;
1422         g_focus_sound_handle[index].g_src_funcs = g_src_funcs;
1423         g_focus_sound_handle[index].g_poll_fd = g_poll_fd;
1424
1425         debug_fleave();
1426         return true;
1427
1428 ERROR:
1429         if (g_src_funcs)
1430                 g_free(g_src_funcs);
1431         if (g_poll_fd)
1432                 g_free(g_poll_fd);
1433         if (g_src)
1434                 g_source_unref(g_src);
1435
1436         return false;
1437 }
1438
1439 static bool _focus_remove_sound_callback(int index, gushort events)
1440 {
1441         bool ret = true;
1442
1443         debug_fenter();
1444
1445         g_mutex_clear(&g_focus_sound_handle[index].focus_lock);
1446
1447         GSourceFuncs *g_src_funcs = g_focus_sound_handle[index].g_src_funcs;
1448         GPollFD *g_poll_fd = g_focus_sound_handle[index].g_poll_fd;     /* store file descriptor */
1449         if (!g_poll_fd) {
1450                 debug_error("g_poll_fd is null..");
1451                 ret = false;
1452                 goto RELEASE;
1453         }
1454         g_poll_fd->fd = g_focus_sound_handle[index].focus_fd;
1455         g_poll_fd->events = events;
1456
1457         if (!g_focus_sound_handle[index].focus_src) {
1458                 debug_error("g_focus_sound_handle[%d].focus_src is null..", index);
1459                 ret = false;
1460                 goto RELEASE;
1461         }
1462         g_source_remove_poll(g_focus_sound_handle[index].focus_src, g_poll_fd);
1463         debug_log("g_source_remove_poll : fd(%d), event(%x)", g_poll_fd->fd, g_poll_fd->events);
1464
1465 RELEASE:
1466         if (g_focus_sound_handle[index].focus_src)
1467                 g_source_destroy(g_focus_sound_handle[index].focus_src);
1468
1469         debug_log("g_free : g_src_funcs(%x), g_poll_fd(%x)", g_src_funcs, g_poll_fd);
1470         if (g_src_funcs) {
1471                 g_free(g_src_funcs);
1472                 g_src_funcs = NULL;
1473         }
1474         if (g_poll_fd) {
1475                 g_free(g_poll_fd);
1476                 g_poll_fd = NULL;
1477         }
1478
1479         g_focus_sound_handle[index].g_src_funcs = NULL;
1480         g_focus_sound_handle[index].g_poll_fd = NULL;
1481         g_focus_sound_handle[index].focus_src = NULL;
1482         g_focus_sound_handle[index].focus_callback = NULL;
1483         g_focus_sound_handle[index].watch_callback = NULL;
1484
1485         debug_fleave();
1486         return ret;
1487 }
1488
1489
1490 static void _focus_add_callback(int index, bool is_for_watching)
1491 {
1492         debug_fenter();
1493         if (!is_for_watching) {
1494                 if (!_focus_add_sound_callback(index, g_focus_sound_handle[index].focus_fd, (gushort)POLLIN | POLLPRI, _focus_callback_handler)) {
1495                         debug_error("failed to _focus_add_sound_callback()");
1496                         //return false;
1497                 }
1498         } else { // need to check if it's necessary
1499                 if (!_focus_add_sound_callback(index, g_focus_sound_handle[index].focus_fd, (gushort)POLLIN | POLLPRI, _focus_watch_callback_handler)) {
1500                         debug_error("failed to _focus_add_sound_callback()");
1501                         //return false;
1502                 }
1503         }
1504         debug_fleave();
1505 }
1506
1507 static void _focus_remove_callback(int index)
1508 {
1509         debug_fenter();
1510         if (!_focus_remove_sound_callback(index, (gushort)POLLIN | POLLPRI)) {
1511                 debug_error("failed to __focus_remove_sound_callback()");
1512                 //return false;
1513         }
1514         debug_fleave();
1515 }
1516
1517 static void _focus_init_callback(int index, bool is_for_watching)
1518 {
1519         debug_fenter();
1520         _focus_open_callback(index, is_for_watching);
1521         _focus_add_callback(index, is_for_watching);
1522         debug_fleave();
1523 }
1524
1525 static void _focus_destroy_callback(int index, bool is_for_watching)
1526 {
1527         debug_fenter();
1528         _focus_remove_callback(index);
1529         _focus_close_callback(index, is_for_watching);
1530         debug_fleave();
1531 }
1532
1533 int mm_sound_client_get_unique_id(int *id)
1534 {
1535         int ret = MM_ERROR_NONE;
1536
1537         debug_fenter();
1538
1539         if (!id)
1540                 ret = MM_ERROR_INVALID_ARGUMENT;
1541         else
1542                 ret = mm_sound_proxy_get_unique_id(id);
1543
1544         debug_fleave();
1545
1546         return ret;
1547 }
1548
1549 int mm_sound_client_is_focus_cb_thread(GThread *mine, bool *result)
1550 {
1551         int ret = MM_ERROR_NONE;
1552
1553         if (!mine || !result)
1554                 ret = MM_ERROR_INVALID_ARGUMENT;
1555         else {
1556                 if (mine == g_focus_thread)
1557                         *result = true;
1558                 else
1559                         *result = false;
1560         }
1561
1562         return ret;
1563 }
1564
1565 int mm_sound_client_register_focus(int id, int pid, const char *stream_type, mm_sound_focus_changed_cb callback, bool is_for_session, void* user_data)
1566 {
1567         int ret = MM_ERROR_NONE;
1568         int instance;
1569         int index = 0;
1570
1571         debug_fenter();
1572         MMSOUND_ENTER_CRITICAL_SECTION_WITH_RETURN(&g_index_mutex, MM_ERROR_SOUND_INTERNAL);
1573
1574         instance = pid;
1575
1576         for (index = 0; index < FOCUS_HANDLE_MAX - 1; index++) {
1577                 if (g_focus_sound_handle[index].is_used == false) {
1578                         g_focus_sound_handle[index].is_used = true;
1579                         break;
1580                 }
1581         }
1582
1583         g_focus_sound_handle[index].focus_tid = instance;
1584         g_focus_sound_handle[index].handle = id;
1585         g_focus_sound_handle[index].focus_callback = callback;
1586         g_focus_sound_handle[index].user_data = user_data;
1587         g_focus_sound_handle[index].is_for_session = is_for_session;
1588         g_focus_sound_handle[index].auto_reacquire = true;
1589
1590         ret = mm_sound_proxy_register_focus(id, pid, stream_type, callback, is_for_session, user_data);
1591
1592         if (ret == MM_ERROR_NONE) {
1593                 debug_msg("[Client] Success to register focus\n");
1594                 g_need_emergent_exit = TRUE;
1595                 if (!g_focus_thread) {
1596                         GMainContext* focus_context = g_main_context_new ();
1597                         g_focus_loop = g_main_loop_new (focus_context, FALSE);
1598                         g_main_context_unref(focus_context);
1599                         g_focus_thread = g_thread_new("focus-callback-thread", _focus_thread_func, NULL);
1600                         if (g_focus_thread == NULL) {
1601                                 debug_error ("could not create thread..");
1602                                 g_main_loop_unref(g_focus_loop);
1603                                 g_focus_sound_handle[index].is_used = false;
1604                                 ret = MM_ERROR_SOUND_INTERNAL;
1605                                 goto cleanup;
1606                         }
1607                 }
1608         } else {
1609                 debug_error("[Client] Error occurred : 0x%x \n",ret);
1610                 g_focus_sound_handle[index].is_used = false;
1611                 goto cleanup;
1612         }
1613
1614         _focus_init_callback(index, false);
1615
1616 cleanup:
1617         MMSOUND_LEAVE_CRITICAL_SECTION(&g_index_mutex);
1618         debug_fleave();
1619
1620         return ret;
1621 }
1622
1623 int mm_sound_client_unregister_focus(int id)
1624 {
1625         int ret = MM_ERROR_NONE;
1626         int instance;
1627         int index = -1;
1628
1629         debug_fenter();
1630         MMSOUND_ENTER_CRITICAL_SECTION_WITH_RETURN(&g_index_mutex, MM_ERROR_SOUND_INTERNAL);
1631
1632         index = _focus_find_index_by_handle(id);
1633         if (index == -1) {
1634                 debug_error("Could not find index");
1635                 ret = MM_ERROR_INVALID_ARGUMENT;
1636                 goto cleanup;
1637         }
1638         instance = g_focus_sound_handle[index].focus_tid;
1639
1640         if (!g_mutex_trylock(&g_focus_sound_handle[index].focus_lock)) {
1641                 debug_warning("maybe focus_callback is being called, try one more time..");
1642                 usleep(2500000); // 2.5 sec
1643                 if (g_mutex_trylock(&g_focus_sound_handle[index].focus_lock)) {
1644                         debug_msg("finally got focus_lock");
1645                 }
1646         }
1647
1648         ret = mm_sound_proxy_unregister_focus(instance, id, g_focus_sound_handle[index].is_for_session);
1649
1650         if (ret == MM_ERROR_NONE)
1651                 debug_msg("[Client] Success to unregister focus\n");
1652         else
1653                 debug_error("[Client] Error occurred : 0x%x \n",ret);
1654
1655         g_mutex_unlock(&g_focus_sound_handle[index].focus_lock);
1656
1657         _focus_destroy_callback(index, false);
1658         g_focus_sound_handle[index].focus_fd = 0;
1659         g_focus_sound_handle[index].focus_tid = 0;
1660         g_focus_sound_handle[index].handle = 0;
1661         g_focus_sound_handle[index].is_used = false;
1662 cleanup:
1663         MMSOUND_LEAVE_CRITICAL_SECTION(&g_index_mutex);
1664         debug_fleave();
1665         return ret;
1666 }
1667
1668 int mm_sound_client_set_focus_reacquisition(int id, bool reacquisition)
1669 {
1670         int ret = MM_ERROR_NONE;
1671         int instance;
1672         int index = -1;
1673         bool result;
1674
1675         debug_fenter();
1676         MMSOUND_ENTER_CRITICAL_SECTION_WITH_RETURN(&g_index_mutex, MM_ERROR_SOUND_INTERNAL);
1677
1678         index = _focus_find_index_by_handle(id);
1679         if (index == -1) {
1680                 debug_error("Could not find index");
1681                 ret = MM_ERROR_INVALID_ARGUMENT;
1682                 goto cleanup;
1683         }
1684         instance = g_focus_sound_handle[index].focus_tid;
1685
1686         ret = mm_sound_client_is_focus_cb_thread(g_thread_self(), &result);
1687         if (ret) {
1688                 debug_error("[Client] mm_sound_client_is_focus_cb_thread failed");
1689                 goto cleanup;
1690         } else if (!result) {
1691                 ret = mm_sound_proxy_set_foucs_reacquisition(instance, id, reacquisition);
1692                 if (ret == MM_ERROR_NONE) {
1693                         debug_msg("[Client] Success to set focus reacquisition\n");
1694                 } else {
1695                         debug_error("[Client] Error occurred : 0x%x \n",ret);
1696                         goto cleanup;
1697                 }
1698         } else {
1699                 debug_warning("[Client] Inside the focus cb thread, bypassing dbus method call");
1700         }
1701
1702         g_focus_sound_handle[index].auto_reacquire = reacquisition;
1703
1704 cleanup:
1705         MMSOUND_LEAVE_CRITICAL_SECTION(&g_index_mutex);
1706         debug_fleave();
1707         return ret;
1708 }
1709
1710 int mm_sound_client_get_focus_reacquisition(int id, bool *reacquisition)
1711 {
1712         int ret = MM_ERROR_NONE;
1713         int index = -1;
1714
1715         debug_fenter();
1716
1717         if (!reacquisition) {
1718                 debug_error("Invalid parameter");
1719                 return MM_ERROR_INVALID_ARGUMENT;
1720         }
1721
1722         MMSOUND_ENTER_CRITICAL_SECTION_WITH_RETURN(&g_index_mutex, MM_ERROR_SOUND_INTERNAL);
1723
1724         index = _focus_find_index_by_handle(id);
1725         if (index == -1) {
1726                 debug_error("Could not find index");
1727                 ret = MM_ERROR_INVALID_ARGUMENT;
1728                 goto cleanup;
1729         }
1730
1731         *reacquisition = g_focus_sound_handle[index].auto_reacquire;
1732
1733 cleanup:
1734         MMSOUND_LEAVE_CRITICAL_SECTION(&g_index_mutex);
1735         debug_fleave();
1736         return ret;
1737 }
1738
1739 int mm_sound_client_get_acquired_focus_stream_type(int focus_type, char **stream_type, int *option, char **ext_info)
1740 {
1741         int ret = MM_ERROR_NONE;
1742         char *ext_str = NULL;
1743
1744         debug_fenter();
1745
1746         ret = mm_sound_proxy_get_acquired_focus_stream_type(focus_type, stream_type, option, &ext_str);
1747         if (ret == MM_ERROR_NONE) {
1748                 debug_msg("[Client] Success to get stream type of acquired focus, stream_type(%s), ext_info(%s)\n", *stream_type, ext_str);
1749                 *ext_info = strdup(ext_str);
1750                 g_free(ext_str);
1751         } else {
1752                 debug_error("[Client] Error occurred : 0x%x \n",ret);
1753         }
1754
1755         debug_fleave();
1756         return ret;
1757 }
1758
1759 int mm_sound_client_acquire_focus(int id, mm_sound_focus_type_e type, int option, const char *ext_info)
1760 {
1761         int ret = MM_ERROR_NONE;
1762         int instance;
1763         int index = -1;
1764
1765         debug_fenter();
1766         MMSOUND_ENTER_CRITICAL_SECTION_WITH_RETURN(&g_index_mutex, MM_ERROR_SOUND_INTERNAL);
1767
1768         index = _focus_find_index_by_handle(id);
1769         if (index == -1) {
1770                 debug_error("Could not find index");
1771                 ret = MM_ERROR_INVALID_ARGUMENT;
1772                 goto cleanup;
1773         }
1774         instance = g_focus_sound_handle[index].focus_tid;
1775
1776         ret = mm_sound_proxy_acquire_focus(instance, id, type, option, ext_info, g_focus_sound_handle[index].is_for_session);
1777         if (ret == MM_ERROR_NONE)
1778                 debug_msg("[Client] Success to acquire focus\n");
1779         else
1780                 debug_error("[Client] Error occurred : 0x%x \n",ret);
1781
1782 cleanup:
1783         MMSOUND_LEAVE_CRITICAL_SECTION(&g_index_mutex);
1784         debug_fleave();
1785         return ret;
1786 }
1787
1788 int mm_sound_client_release_focus(int id, mm_sound_focus_type_e type, int option, const char *ext_info)
1789 {
1790         int ret = MM_ERROR_NONE;
1791         int instance;
1792         int index = -1;
1793
1794         debug_fenter();
1795         MMSOUND_ENTER_CRITICAL_SECTION_WITH_RETURN(&g_index_mutex, MM_ERROR_SOUND_INTERNAL);
1796
1797         index = _focus_find_index_by_handle(id);
1798         if (index == -1) {
1799                 debug_error("Could not find index");
1800                 ret = MM_ERROR_INVALID_ARGUMENT;
1801                 goto cleanup;
1802         }
1803         instance = g_focus_sound_handle[index].focus_tid;
1804
1805         ret = mm_sound_proxy_release_focus(instance, id, type, option, ext_info, g_focus_sound_handle[index].is_for_session);
1806         if (ret == MM_ERROR_NONE)
1807                 debug_msg("[Client] Success to release focus\n");
1808         else
1809                 debug_error("[Client] Error occurred : 0x%x \n",ret);
1810
1811 cleanup:
1812         MMSOUND_LEAVE_CRITICAL_SECTION(&g_index_mutex);
1813         debug_fleave();
1814         return ret;
1815 }
1816
1817 int mm_sound_client_set_focus_watch_callback(int pid, mm_sound_focus_type_e focus_type, mm_sound_focus_changed_watch_cb callback, bool is_for_session, void* user_data, int *id)
1818 {
1819         int ret = MM_ERROR_NONE;
1820         int instance;
1821         int index = 0;
1822
1823         debug_fenter();
1824
1825         if (!id)
1826                 return MM_ERROR_INVALID_ARGUMENT;
1827
1828         //pthread_mutex_lock(&g_thread_mutex2);
1829
1830         instance = pid;
1831
1832         ret = mm_sound_proxy_get_unique_id(id);
1833         if (ret)
1834                 return ret;
1835
1836         MMSOUND_ENTER_CRITICAL_SECTION_WITH_RETURN(&g_index_mutex, MM_ERROR_SOUND_INTERNAL);
1837
1838         for (index = 0; index < FOCUS_HANDLE_MAX - 1; index++) {
1839                 if (g_focus_sound_handle[index].is_used == false) {
1840                         g_focus_sound_handle[index].is_used = true;
1841                         break;
1842                 }
1843         }
1844
1845         g_focus_sound_handle[index].focus_tid = instance;
1846         g_focus_sound_handle[index].handle = *id;
1847         g_focus_sound_handle[index].watch_callback = callback;
1848         g_focus_sound_handle[index].user_data = user_data;
1849         g_focus_sound_handle[index].is_for_session = is_for_session;
1850
1851         ret = mm_sound_proxy_set_focus_watch_callback(pid, g_focus_sound_handle[index].handle, focus_type, callback, is_for_session, user_data);
1852
1853         if (ret == MM_ERROR_NONE) {
1854                 debug_msg("[Client] Success to watch focus");
1855                 g_need_emergent_exit = TRUE;
1856                 if (!g_focus_thread) {
1857                         GMainContext* focus_context = g_main_context_new ();
1858                         g_focus_loop = g_main_loop_new (focus_context, FALSE);
1859                         g_main_context_unref(focus_context);
1860                         g_focus_thread = g_thread_new("focus-callback-thread", _focus_thread_func, NULL);
1861                         if (g_focus_thread == NULL) {
1862                                 debug_error ("could not create thread..");
1863                                 g_main_loop_unref(g_focus_loop);
1864                                 ret = MM_ERROR_SOUND_INTERNAL;
1865                                 goto cleanup;
1866                         }
1867                 }
1868         } else {
1869                 debug_error("[Client] Error occurred : 0x%x",ret);
1870                 goto cleanup;
1871         }
1872
1873         _focus_init_callback(index, true);
1874
1875 cleanup:
1876
1877         if (ret) {
1878                 g_focus_sound_handle[index].is_used = false;
1879         }
1880
1881         MMSOUND_LEAVE_CRITICAL_SECTION(&g_index_mutex);
1882         debug_fleave();
1883         return ret;
1884 }
1885
1886 int mm_sound_client_unset_focus_watch_callback(int id)
1887 {
1888         int ret = MM_ERROR_NONE;
1889         int index = -1;
1890         debug_fenter();
1891         MMSOUND_ENTER_CRITICAL_SECTION_WITH_RETURN(&g_index_mutex, MM_ERROR_SOUND_INTERNAL);
1892
1893         index = _focus_watch_find_index_by_handle(id);
1894         if (index == -1) {
1895                 debug_error("Could not find index");
1896                 ret = MM_ERROR_INVALID_ARGUMENT;
1897                 goto cleanup;
1898         }
1899
1900         g_mutex_lock(&g_focus_sound_handle[index].focus_lock);
1901
1902         ret = mm_sound_proxy_unset_focus_watch_callback(g_focus_sound_handle[index].focus_tid, g_focus_sound_handle[index].handle, g_focus_sound_handle[index].is_for_session);
1903
1904         if (ret == MM_ERROR_NONE)
1905                 debug_msg("[Client] Success to unwatch focus\n");
1906         else
1907                 debug_error("[Client] Error occurred : 0x%x \n",ret);
1908
1909
1910         g_mutex_unlock(&g_focus_sound_handle[index].focus_lock);
1911
1912         _focus_destroy_callback(index, true);
1913         g_focus_sound_handle[index].focus_fd = 0;
1914         g_focus_sound_handle[index].focus_tid = 0;
1915         g_focus_sound_handle[index].handle = 0;
1916         g_focus_sound_handle[index].is_used = false;
1917 cleanup:
1918         MMSOUND_LEAVE_CRITICAL_SECTION(&g_index_mutex);
1919         debug_fleave();
1920         return ret;
1921 }
1922 #endif
1923
1924
1925 int mm_sound_client_add_test_callback(mm_sound_test_cb func, void* user_data, unsigned int *subs_id)
1926 {
1927         int ret = MM_ERROR_NONE;
1928
1929         debug_fenter();
1930
1931         ret = mm_sound_proxy_add_test_callback(func, user_data, g_free, subs_id);
1932
1933         debug_fleave();
1934         return ret;
1935 }
1936
1937 int mm_sound_client_remove_test_callback(unsigned int subs_id)
1938 {
1939         int ret = MM_ERROR_NONE;
1940         debug_fenter();
1941
1942         ret = mm_sound_proxy_remove_test_callback(subs_id);
1943
1944         debug_fleave();
1945         return ret;
1946 }
1947
1948
1949 int mm_sound_client_test(int a, int b, int* getv)
1950 {
1951         int ret = MM_ERROR_NONE;
1952
1953         debug_fenter();
1954
1955         ret = mm_sound_proxy_test(a, b, getv);
1956         debug_log("%d * %d -> result : %d", a, b, *getv);
1957
1958         debug_fleave();
1959
1960         return ret;
1961 }