focus_server: Fix bug regarding update of reacquisition information within focus...
[platform/core/multimedia/libmm-sound.git] / mm_sound_client.c
index 3df3767..4ba6246 100644 (file)
@@ -146,7 +146,7 @@ typedef struct _focus_idle_event {
        int data;
 } focus_idle_event_t;
 
-void _system_signal_handler(int signo)
+void _system_signal_handler(int signo, siginfo_t *siginfo, void *context)
 {
        int ret = MM_ERROR_NONE;
        sigset_t old_mask, all_mask;
@@ -161,9 +161,9 @@ void _system_signal_handler(int signo)
        if (g_need_emergent_exit) {
                ret = mm_sound_proxy_emergent_exit(getpid());
                if (ret == MM_ERROR_NONE)
-                       debug_msg("[Client] Success to emergnet_exit\n");
+                       debug_msg("Success to emergnet_exit");
                else
-                       debug_error("[Client] Error occurred : 0x%x \n",ret);
+                       debug_error("Error occurred : 0x%x", ret);
        }
 
        sigprocmask(SIG_SETMASK, &old_mask, NULL);
@@ -171,28 +171,40 @@ void _system_signal_handler(int signo)
 
        switch (signo) {
        case SIGINT:
-               sigaction(SIGINT, &system_int_old_action, NULL);
-               raise( signo);
+               if (system_int_old_action.sa_sigaction)
+                       system_int_old_action.sa_sigaction(signo, siginfo, context);
+               else
+                       sigaction(signo, &system_int_old_action, NULL);
                break;
        case SIGABRT:
-               sigaction(SIGABRT, &system_abrt_old_action, NULL);
-               raise( signo);
+               if (system_abrt_old_action.sa_sigaction)
+                       system_abrt_old_action.sa_sigaction(signo, siginfo, context);
+               else
+                       sigaction(signo, &system_abrt_old_action, NULL);
                break;
        case SIGSEGV:
-               sigaction(SIGSEGV, &system_segv_old_action, NULL);
-               raise( signo);
+               if (system_segv_old_action.sa_sigaction)
+                       system_segv_old_action.sa_sigaction(signo, siginfo, context);
+               else
+                       sigaction(signo, &system_segv_old_action, NULL);
                break;
        case SIGTERM:
-               sigaction(SIGTERM, &system_term_old_action, NULL);
-               raise( signo);
+               if (system_term_old_action.sa_sigaction)
+                       system_term_old_action.sa_sigaction(signo, siginfo, context);
+               else
+                       sigaction(signo, &system_term_old_action, NULL);
                break;
        case SIGSYS:
-               sigaction(SIGSYS, &system_sys_old_action, NULL);
-               raise( signo);
+               if (system_sys_old_action.sa_sigaction)
+                       system_sys_old_action.sa_sigaction(signo, siginfo, context);
+               else
+                       sigaction(signo, &system_sys_old_action, NULL);
                break;
        case SIGXCPU:
-               sigaction(SIGXCPU, &system_xcpu_old_action, NULL);
-               raise( signo);
+               if (system_xcpu_old_action.sa_sigaction)
+                       system_xcpu_old_action.sa_sigaction(signo, siginfo, context);
+               else
+                       sigaction(signo, &system_xcpu_old_action, NULL);
                break;
        default:
                break;
@@ -211,8 +223,8 @@ int mm_sound_client_initialize(void)
 
 
        struct sigaction system_action;
-       system_action.sa_handler = _system_signal_handler;
-       system_action.sa_flags = SA_NOCLDSTOP;
+       system_action.sa_sigaction = _system_signal_handler;
+       system_action.sa_flags = SA_NOCLDSTOP | SA_SIGINFO;
 
        sigemptyset(&system_action.sa_mask);
 
@@ -236,9 +248,9 @@ int mm_sound_client_finalize(void)
        if (g_need_emergent_exit) {
                ret = mm_sound_proxy_emergent_exit(getpid());
                if (ret == MM_ERROR_NONE)
-                       debug_msg("[Client] Success to emergnet_exit\n");
+                       debug_msg("Success to emergent_exit");
                else
-                       debug_error("[Client] Error occurred : 0x%x \n",ret);
+                       debug_error("Error occurred : 0x%x", ret);
        }
 
        sigaction(SIGINT, &system_int_old_action, NULL);
@@ -345,21 +357,21 @@ int mm_sound_client_play_tone(int number, int volume_config, double volume,
 
        if (enable_session) {
                if (MM_ERROR_NONE != _mm_session_util_read_information(-1, &session_type, &session_options)) {
-                       debug_warning("[Client] Read Session Information failed. use default \"media\" type\n");
+                       debug_warning("Read Session Information failed. use default \"media\" type");
                        session_type = MM_SESSION_TYPE_MEDIA;
 
                        if(MM_ERROR_NONE != mm_session_init(session_type)) {
-                               debug_critical("[Client] MMSessionInit() failed\n");
+                               debug_critical("MMSessionInit() failed");
                                return MM_ERROR_POLICY_INTERNAL;
                        }
                }
        }
 
         // instance = getpid();
-        //debug_log("[Client] pid for client ::: [%d]\n", instance);
+        //debug_log("pid for client ::: [%d]", instance);
 
         /* Send msg */
-        debug_msg("[Client] Input number : %d\n", number);
+        debug_msg("Input number : %d", number);
         /* Send req memory */
 
        mm_sound_convert_volume_type_to_stream_type(volume_type, stream_type);
@@ -398,7 +410,7 @@ static void _mm_sound_stop_callback_wrapper_func(int ended_handle, void *userdat
        struct callback_data *cb_data = (struct callback_data*) userdata;
        play_sound_end_callback_data_t *end_cb_data;
 
-       debug_log("[Wrapper CB][Play Stop] ended_handle : %d", ended_handle);
+       debug_log("ended_handle : %d", ended_handle);
 
        if (cb_data == NULL) {
                debug_warning("stop callback data null");
@@ -454,11 +466,11 @@ int mm_sound_client_play_sound(MMSoundPlayParam *param, int tone, int *handle)
 
        if (param->skip_session == false) {
                if(MM_ERROR_NONE != _mm_session_util_read_information(-1, &session_type, &session_options)) {
-                       debug_warning("[Client] Read MMSession Type failed. use default \"media\" type\n");
+                       debug_warning("Read MMSession Type failed. use default \"media\" type");
                        session_type = MM_SESSION_TYPE_MEDIA;
 
                        if(MM_ERROR_NONE != mm_session_init(session_type)) {
-                               debug_critical("[Client] MMSessionInit() failed\n");
+                               debug_critical("MMSessionInit() failed");
                                return MM_ERROR_POLICY_INTERNAL;
                        }
                }
@@ -563,16 +575,16 @@ static int _mm_sound_client_device_list_dump (GList *device_list)
                return MM_ERROR_SOUND_INTERNAL;
        }
 
-       debug_log("======================== device list : start ==========================\n");
+       debug_log("======================== device list : start ==========================");
        for (list = device_list; list != NULL; list = list->next) {
                device_node = (mm_sound_device_t *)list->data;
                if (device_node) {
-                       debug_log(" list idx[%d]: type[%17s], id[%02d], io_direction[%d], state[%d], name[%s]\n",
+                       debug_log(" list idx[%d]: type[%17s], id[%02d], io_direction[%d], state[%d], name[%s]",
                                                count++, device_node->type, device_node->id, device_node->io_direction,
                                                device_node->state, device_node->name);
                }
        }
-       debug_log("======================== device list : end ============================\n");
+       debug_log("======================== device list : end ============================");
 
        return ret;
 }
@@ -589,7 +601,7 @@ int mm_sound_client_get_current_connected_device_list(int device_flags, mm_sound
        }
 
        if ((ret = mm_sound_proxy_get_current_connected_device_list(device_flags, &device_list->list)) != MM_ERROR_NONE) {
-               debug_error("[Client] failed to get current connected device list with dbus, ret[0x%x]", ret);
+               debug_error("failed to get current connected device list with dbus, ret[0x%x]", ret);
                goto failed;
        }
        if (!device_list->list) {
@@ -611,7 +623,7 @@ int mm_sound_client_get_device_by_id(int device_id, mm_sound_device_t **device)
        debug_fenter();
 
        if ((ret = mm_sound_proxy_get_device_by_id(device_id, device)) != MM_ERROR_NONE)
-               debug_error("[Client] failed to get device by id");
+               debug_error("failed to get device by id");
 
        debug_fleave();
 
@@ -906,7 +918,7 @@ int mm_sound_client_is_stream_on_device(int stream_id, int device_id, bool *is_o
        }
 
        if ((ret = mm_sound_proxy_is_stream_on_device(stream_id, device_id, is_on)) != MM_ERROR_NONE) {
-               debug_error("[Client] failed to query is stream on device, ret[0x%x]", ret);
+               debug_error("failed to query is stream on device, ret[0x%x]", ret);
                goto failed;
        }
 
@@ -1014,7 +1026,7 @@ static void _mm_sound_volume_changed_callback_wrapper_func(const char *direction
        volume_type_t volume_type = 0;
        struct callback_data *cb_data = (struct callback_data *) userdata;
 
-       debug_log("[Wrapper CB][Volume Changed] direction : %s, volume_type : %s, volume_level : %d",
+       debug_log("direction : %s, volume_type : %s, volume_level : %d",
                        direction, volume_type_str, volume_level);
 
        if (cb_data == NULL) {
@@ -1115,7 +1127,7 @@ static gboolean _interrupted_completed(gpointer *data)
 static void _session_interrupted_cb(int id, mm_sound_focus_type_e focus_type, mm_sound_focus_state_e state,
                                     const char *reason_for_change, const char *ext_info, void *user_data)
 {
-       debug_msg("SESSION INTERRUPTED CB is called : id(%d), focus_type(%d), state(%d), reason(%s)", id, focus_type, state, reason_for_change);
+       debug_msg("id(%d), focus_type(%d), state(%d), reason(%s)", id, focus_type, state, reason_for_change);
 
        if (id != g_focus_session_interrupt_info.watch_cb_id) {
                debug_error("id is not valid(param id:%d, g_focus_session_interrupt_watch_cb_id:%d)",
@@ -1191,10 +1203,10 @@ static gpointer _focus_thread_func(gpointer data)
        unsigned int thread_id = (unsigned int)pthread_self();
        GMainLoop *focus_loop = (GMainLoop*)data;
 
-       debug_warning(">>> thread func : thread id(%u), mainloop[%p]", thread_id, focus_loop);
+       debug_warning(">>> thread id(%u), mainloop[%p]", thread_id, focus_loop);
        if (focus_loop)
                g_main_loop_run(focus_loop);
-       debug_warning("<<< quit thread func : thread id(%u), mainloop[%p]", thread_id, focus_loop);
+       debug_warning("<<< quit : thread id(%u), mainloop[%p]", thread_id, focus_loop);
 
        return NULL;
 }
@@ -1267,7 +1279,7 @@ static gboolean _focus_callback_handler(gpointer user_data)
        int tid = 0;
        focus_cb_data_lib cb_data;
 
-       debug_log(">>> _focus_callback_handler(), this thread id(%u)\n", (unsigned int)pthread_self());
+       debug_log(">>> thread id(%u)", (unsigned int)pthread_self());
 
        if (!focus_handle) {
                debug_error("focus_handle is null");
@@ -1317,7 +1329,7 @@ static gboolean _focus_callback_handler(gpointer user_data)
                        if (tmpfd < 0) {
                                char str_error[256];
                                strerror_r(errno, str_error, sizeof(str_error));
-                               debug_warning("[RETCB][Failed(May Server Close First)]tid(%d) fd(%d) %s errno=%d(%s)\n",
+                               debug_warning("[RETCB][Failed(May Server Close First)]tid(%d) fd(%d) %s errno=%d(%s)",
                                                        tid, tmpfd, filename2, errno, str_error);
                                g_free(filename2);
                                g_mutex_unlock(&focus_handle->focus_lock);
@@ -1329,7 +1341,7 @@ static gboolean _focus_callback_handler(gpointer user_data)
                        rett = write(tmpfd, &buf, sizeof(buf));
                        close(tmpfd);
                        g_free(filename2);
-                       debug_msg("[RETCB] tid(%d) finishing CB (write=%d)\n", tid, rett);
+                       debug_msg("[RETCB] tid(%d) finishing CB (write=%d)", tid, rett);
                }
 #endif
        }
@@ -1349,7 +1361,7 @@ static gboolean _focus_watch_callback_handler(gpointer user_data)
        int tid = 0;
        focus_cb_data_lib cb_data;
 
-       debug_log(">>> _focus_watch_callback_handler(), this thread id(%u)\n", (unsigned int)pthread_self());
+       debug_log(">>> thread id(%u)", (unsigned int)pthread_self());
 
        if (!focus_handle) {
                debug_error("focus_handle is null");
@@ -1406,7 +1418,7 @@ SKIP_CB_AND_RET:
                        if (tmpfd < 0) {
                                char str_error[256];
                                strerror_r(errno, str_error, sizeof(str_error));
-                               debug_warning("[RETCB][Failed(May Server Close First)]tid(%d) fd(%d) %s errno=%d(%s)\n",
+                               debug_warning("[RETCB][Failed(May Server Close First)]tid(%d) fd(%d) %s errno=%d(%s)",
                                                        tid, tmpfd, filename2, errno, str_error);
                                g_free(filename2);
                                g_mutex_unlock(&focus_handle->focus_lock);
@@ -1416,7 +1428,7 @@ SKIP_CB_AND_RET:
                        rett = write(tmpfd, &buf, sizeof(buf));
                        close(tmpfd);
                        g_free(filename2);
-                       debug_msg("[RETCB] tid(%d) finishing CB (write=%d)\n", tid, rett);
+                       debug_msg("[RETCB] tid(%d) finishing CB (write=%d)", tid, rett);
                }
 #endif
        }
@@ -1836,14 +1848,14 @@ int mm_sound_client_register_focus(int id, int pid, const char *stream_type, boo
 
        ret = mm_sound_proxy_register_focus(id, pid, stream_type, callback, is_for_session, user_data);
        if (ret == MM_ERROR_NONE) {
-               debug_msg("[Client] Success to register focus\n");
+               debug_msg("Success to register focus");
                g_need_emergent_exit = TRUE;
                if (_focus_init_context(index)) {
                        ret = MM_ERROR_SOUND_INTERNAL;
                        goto cleanup;
                }
        } else {
-               debug_error("[Client] Error occurred : 0x%x \n",ret);
+               debug_error("Error occurred : 0x%x",ret);
                goto cleanup;
        }
 
@@ -1887,9 +1899,9 @@ int mm_sound_client_unregister_focus(int id)
 
        ret = mm_sound_proxy_unregister_focus(instance, id, g_focus_sound_handle[index].is_for_session);
        if (ret == MM_ERROR_NONE)
-               debug_msg("[Client] Success to unregister focus\n");
+               debug_msg("Success to unregister focus");
        else
-               debug_error("[Client] Error occurred : 0x%x \n",ret);
+               debug_error("Error occurred : 0x%x", ret);
 
        g_mutex_unlock(&g_focus_sound_handle[index].focus_lock);
 
@@ -1915,7 +1927,11 @@ int mm_sound_client_set_focus_reacquisition(int id, bool reacquisition, bool is_
        bool result;
 
        debug_fenter();
-       MMSOUND_ENTER_CRITICAL_SECTION_WITH_RETURN(&g_index_mutex, MM_ERROR_SOUND_INTERNAL);
+
+       /* Since the muse server which uses this library for multiple handles executes requests from clients serially,
+        * we can skip locking/unlocking the mutex for this case. */
+       if (!is_for_session)
+               MMSOUND_ENTER_CRITICAL_SECTION_WITH_RETURN(&g_index_mutex, MM_ERROR_SOUND_INTERNAL);
 
        index = _focus_find_index_by_handle(id);
        if (index == -1) {
@@ -1927,25 +1943,26 @@ int mm_sound_client_set_focus_reacquisition(int id, bool reacquisition, bool is_
 
        ret = mm_sound_client_is_focus_cb_thread(g_thread_self(), &result);
        if (ret) {
-               debug_error("[Client] mm_sound_client_is_focus_cb_thread failed");
+               debug_error("mm_sound_client_is_focus_cb_thread failed");
                goto cleanup;
        } else if (!result) {
                ret = mm_sound_proxy_set_focus_reacquisition(instance, id, reacquisition, is_for_session);
                if (ret == MM_ERROR_NONE) {
-                       debug_msg("[Client] Success to set focus reacquisition to [%d]\n", reacquisition);
+                       debug_msg("Success to set focus reacquisition to [%d]", reacquisition);
                } else {
-                       debug_error("[Client] Error occurred : 0x%x \n",ret);
+                       debug_error("Error occurred : 0x%x",ret);
                        goto cleanup;
                }
        } else {
-               debug_warning("[Client] Inside the focus cb thread, set focus reacquisition to [%d]\n", reacquisition);
+               debug_warning("Inside the focus cb thread, set focus reacquisition to [%d]", reacquisition);
        }
 
        g_focus_sound_handle[index].auto_reacquire = reacquisition;
-       debug_msg("[Client] set focus reacquisition(%d) for id(%d)\n", reacquisition, id);
+       debug_msg("set focus reacquisition(%d) for id(%d)", reacquisition, id);
 
 cleanup:
-       MMSOUND_LEAVE_CRITICAL_SECTION(&g_index_mutex);
+       if (!is_for_session)
+               MMSOUND_LEAVE_CRITICAL_SECTION(&g_index_mutex);
        debug_fleave();
        return ret;
 }
@@ -1972,7 +1989,7 @@ int mm_sound_client_get_focus_reacquisition(int id, bool *reacquisition)
        }
 
        *reacquisition = g_focus_sound_handle[index].auto_reacquire;
-       debug_msg("[Client] get focus reacquisition(%d) for id(%d)\n", *reacquisition, id);
+       debug_msg("get focus reacquisition(%d) for id(%d)", *reacquisition, id);
 
 cleanup:
        MMSOUND_LEAVE_CRITICAL_SECTION(&g_index_mutex);
@@ -1990,14 +2007,14 @@ int mm_sound_client_get_acquired_focus_stream_type(int focus_type, char **stream
 
        ret = mm_sound_proxy_get_acquired_focus_stream_type(focus_type, &stream_type_str, option, &ext_info_str);
        if (ret == MM_ERROR_NONE) {
-               debug_msg("[Client] Success to get stream type of acquired focus, stream_type(%s), ext_info(%s)\n",
+               debug_msg("Success to get stream type of acquired focus, stream_type(%s), ext_info(%s)",
                          stream_type_str, ext_info_str);
                *stream_type = strdup(stream_type_str);
                *ext_info = strdup(ext_info_str);
                g_free(stream_type_str);
                g_free(ext_info_str);
        } else {
-               debug_error("[Client] Error occurred : 0x%x \n",ret);
+               debug_error("Error occurred : 0x%x",ret);
        }
 
        debug_fleave();
@@ -2023,9 +2040,9 @@ int mm_sound_client_acquire_focus(int id, mm_sound_focus_type_e type, int option
 
        ret = mm_sound_proxy_acquire_focus(instance, id, type, option, ext_info, g_focus_sound_handle[index].is_for_session);
        if (ret == MM_ERROR_NONE)
-               debug_msg("[Client] Success to acquire focus\n");
+               debug_msg("Success to acquire focus");
        else
-               debug_error("[Client] Error occurred : 0x%x \n",ret);
+               debug_error("Error occurred : 0x%x", ret);
 
 cleanup:
        MMSOUND_LEAVE_CRITICAL_SECTION(&g_index_mutex);
@@ -2052,9 +2069,9 @@ int mm_sound_client_release_focus(int id, mm_sound_focus_type_e type, int option
 
        ret = mm_sound_proxy_release_focus(instance, id, type, option, ext_info, g_focus_sound_handle[index].is_for_session);
        if (ret == MM_ERROR_NONE)
-               debug_msg("[Client] Success to release focus\n");
+               debug_msg("Success to release focus");
        else
-               debug_error("[Client] Error occurred : 0x%x \n",ret);
+               debug_error("Error occurred : 0x%x",ret);
 
 cleanup:
        MMSOUND_LEAVE_CRITICAL_SECTION(&g_index_mutex);
@@ -2068,7 +2085,19 @@ int mm_sound_client_update_stream_focus_status(int id, unsigned int status)
        debug_fenter();
 
        if ((ret = mm_sound_proxy_update_stream_focus_status(id, status)) != MM_ERROR_NONE)
-               debug_error("[Client] failed to update stream focus status, ret[0x%x]", ret);
+               debug_error("failed to update stream focus status, ret[0x%x]", ret);
+
+       debug_fleave();
+       return ret;
+}
+
+int mm_sound_client_deliver_focus(int pid, int src_id, int dst_id, mm_sound_focus_type_e focus_type)
+{
+       int ret = MM_ERROR_NONE;
+       debug_fenter();
+
+       if ((ret = mm_sound_proxy_deliver_focus(pid, src_id, dst_id, focus_type)) != MM_ERROR_NONE)
+               debug_error("failed to deliver focus, ret[0x%x]", ret);
 
        debug_fleave();
        return ret;
@@ -2115,14 +2144,14 @@ int mm_sound_client_set_focus_watch_callback(int pid, mm_sound_focus_type_e focu
                                                      is_for_session, is_for_monitor, callback, user_data);
 
        if (ret == MM_ERROR_NONE) {
-               debug_msg("[Client] Success to watch focus");
+               debug_msg("Success to watch focus");
                g_need_emergent_exit = TRUE;
                if (_focus_init_context(index)) {
                        ret = MM_ERROR_SOUND_INTERNAL;
                        goto cleanup;
                }
        } else {
-               debug_error("[Client] Error occurred : 0x%x",ret);
+               debug_error("Error occurred : 0x%x",ret);
                goto cleanup;
        }
 
@@ -2184,9 +2213,9 @@ int mm_sound_client_unset_focus_watch_callback(int id)
                                                        g_focus_sound_handle[index].is_for_session);
 
        if (ret == MM_ERROR_NONE)
-               debug_msg("[Client] Success to unwatch focus\n");
+               debug_msg("Success to unwatch focus");
        else
-               debug_error("[Client] Error occurred : 0x%x \n",ret);
+               debug_error("Error occurred : 0x%x",ret);
 
 
        g_mutex_unlock(&g_focus_sound_handle[index].focus_lock);
@@ -2219,11 +2248,11 @@ static gboolean _idle_event_callback(void *data)
        switch (idle_event_data->type) {
        case IDLE_EVENT_TYPE_UNSET_FOCUS_WATCH_CB:
                if ((ret = mm_sound_client_unset_focus_watch_callback(idle_event_data->data)))
-                       debug_error("Could not unset focus watch callback, id(%d), ret = %x\n", idle_event_data->data, ret);
+                       debug_error("Could not unset focus watch callback, id(%d), ret = %x", idle_event_data->data, ret);
                break;
        case IDLE_EVENT_TYPE_UNREGISTER_FOCUS:
                if ((ret = mm_sound_client_unregister_focus(idle_event_data->data)))
-                       debug_error("Could not unregister focus, id(%d), ret = %x\n", idle_event_data->data, ret);
+                       debug_error("Could not unregister focus, id(%d), ret = %x", idle_event_data->data, ret);
                break;
        default:
                debug_warning("invalid type(%d)", idle_event_data->type);
@@ -2243,7 +2272,7 @@ int mm_sound_client_execute_focus_func_in_main_context(focus_idle_event_type_e t
 {
        focus_idle_event_t *idle_event_data = NULL;
 
-       if (IDLE_EVENT_TYPE_UNSET_FOCUS_WATCH_CB > type || IDLE_EVENT_TYPE_MAX < type)
+       if (IDLE_EVENT_TYPE_MAX < type)
                return MM_ERROR_INVALID_ARGUMENT;
 
        MMSOUND_ENTER_CRITICAL_SECTION_WITH_RETURN(&g_event_mutex, MM_ERROR_SOUND_INTERNAL);