2 * Copyright (c) 2011-2015 Samsung Electronics Co., Ltd All Rights Reserved
4 * Licensed under the Apache License, Version 2.0 (the License);
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
8 * http://www.apache.org/licenses/LICENSE-2.0
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an AS IS BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
18 #include <app_manager.h>
20 #include <sound_manager.h>
22 #include "vc_cmd_db.h"
23 #include "vc_info_parser.h"
25 #include "vcd_server.h"
26 #include "vcd_client_data.h"
28 #include "vcd_engine_agent.h"
29 #include "vcd_config.h"
30 #include "vcd_recorder.h"
33 #include "voice_control_command_expand.h"
36 * VC Server static variable
38 static bool g_is_engine;
40 static GList *g_proc_list = NULL;
42 static Ecore_Timer *g_restart_timer = NULL;
45 * @brief Enumerations of send event type.
48 VCD_SEND_EVENT_TYPE_TEXT, /**< send text event to vc engine*/
49 VCD_SEND_EVENT_TYPE_LIST_EVENT, /**< send list event to vc engine */
50 VCD_SEND_EVENT_TYPE_HAPTIC_EVENT /**< send haptic event to vc engine */
51 } vcd_send_event_type_e;
54 * VC Server Internal Functions
56 static Eina_Bool __stop_by_silence(void *data)
58 SLOG(LOG_DEBUG, TAG_VCD, "===== Silence Detected ");
60 vcd_server_mgr_stop();
62 SLOG(LOG_DEBUG, TAG_VCD, "=====");
63 SLOG(LOG_DEBUG, TAG_VCD, " ");
67 static Eina_Bool __cancel_by_interrupt(void *data)
69 SLOG(LOG_DEBUG, TAG_VCD, "===== Cancel by interrupt");
71 vcd_server_mgr_cancel();
73 SLOG(LOG_DEBUG, TAG_VCD, "=====");
74 SLOG(LOG_DEBUG, TAG_VCD, " ");
78 static void __cancel_by_error(void *data)
80 SLOG(LOG_DEBUG, TAG_VCD, "===== Cancel by error");
82 vcd_server_mgr_cancel();
84 SLOG(LOG_DEBUG, TAG_VCD, "=====");
85 SLOG(LOG_DEBUG, TAG_VCD, " ");
89 static Eina_Bool __restart_engine(void *data)
91 SLOG(LOG_DEBUG, TAG_VCD, "===== Restart by no result");
93 g_restart_timer = NULL;
95 /* Restart recognition */
96 int ret = vcd_engine_recognize_start(true);
98 SLOG(LOG_ERROR, TAG_VCD, "[Server ERROR] Fail to restart recognition : result(%d)", ret);
102 SLOG(LOG_DEBUG, TAG_VCD, "[Server Success] Start engine");
104 if (VCD_RECOGNITION_MODE_RESTART_AFTER_REJECT == vcd_client_get_recognition_mode()) {
105 vcd_config_set_service_state(VCD_STATE_RECORDING);
106 vcdc_send_service_state(VCD_STATE_RECORDING);
109 SLOG(LOG_DEBUG, TAG_VCD, "[Server Success] Restart recognition");
111 SLOG(LOG_DEBUG, TAG_VCD, "=====");
112 SLOG(LOG_DEBUG, TAG_VCD, " ");
116 static int __server_recorder_callback(const void* data, const unsigned int length)
118 vcd_state_e state = vcd_config_get_service_state();
119 if (VCD_STATE_READY == state) {
120 SLOG(LOG_DEBUG, TAG_VCD, "[Server] Ready state, but recording");
121 } else if (VCD_STATE_PROCESSING == state) {
125 vcp_speech_detect_e speech_detected = VCP_SPEECH_DETECT_NONE;
128 ret = vcd_engine_recognize_audio(data, length, &speech_detected);
132 SLOG(LOG_ERROR, TAG_VCD, "[Server ERROR] Fail to set recording data to engine(%d)", ret);
133 ecore_timer_add(0, __cancel_by_interrupt, NULL);
134 /* Send error cb to manager */
135 if (VCP_ERROR_OUT_OF_NETWORK == ret) {
136 vcdc_send_error_signal_to_manager(vcd_client_manager_get_pid(), VCD_ERROR_TIMED_OUT, "Engine connection failed");
138 vcdc_send_error_signal_to_manager(vcd_client_manager_get_pid(), VCD_ERROR_OPERATION_FAILED, "Engine recognition failed");
143 if (VCP_SPEECH_DETECT_BEGIN == speech_detected) {
144 if (-1 != vcd_client_manager_get_pid()) {
145 /* Manager client is available */
146 if (0 != vcdc_send_speech_detected(vcd_client_manager_get_pid())) {
147 SLOG(LOG_WARN, TAG_VCD, "[Server WARNING] Fail to send speech detected");
150 } else if (VCP_SPEECH_DETECT_END == speech_detected) {
151 if (VCD_RECOGNITION_MODE_STOP_BY_SILENCE == vcd_client_get_recognition_mode()) {
152 /* silence detected */
153 ecore_timer_add(0, __stop_by_silence, NULL);
154 } else if (VCD_RECOGNITION_MODE_RESTART_AFTER_REJECT == vcd_client_get_recognition_mode()) {
155 /* Stop engine recognition */
156 int ret = vcd_engine_recognize_stop();
158 SLOG(LOG_ERROR, TAG_VCD, "[Server ERROR] Fail to stop recognition : %d", ret);
160 vcd_config_set_service_state(VCD_STATE_PROCESSING);
161 vcdc_send_service_state(VCD_STATE_PROCESSING);
163 SLOG(LOG_DEBUG, TAG_VCD, "[Server] Stop engine only by silence");
164 } else if (VCD_RECOGNITION_MODE_RESTART_CONTINUOUSLY == vcd_client_get_recognition_mode()) {
165 /* Stop engine recognition */
166 int ret = vcd_engine_recognize_stop();
168 SLOG(LOG_ERROR, TAG_VCD, "[Server ERROR] Fail to stop recognition : %d", ret);
176 void __server_recorder_interrupt_callback()
178 SLOG(LOG_DEBUG, TAG_VCD, "===== Cancel by sound interrupt");
180 ecore_timer_add(0, __cancel_by_interrupt, NULL);
182 SLOG(LOG_DEBUG, TAG_VCD, "=====");
183 SLOG(LOG_DEBUG, TAG_VCD, " ");
186 static void __config_lang_changed_cb(const char* current_lang, void* user_data)
188 SLOG(LOG_DEBUG, TAG_VCD, "===== Change language ");
190 /* Current state is recording */
191 vcd_state_e state = vcd_config_get_service_state();
192 if (VCD_STATE_RECORDING == state || VCD_STATE_PROCESSING == state) {
193 SLOG(LOG_DEBUG, TAG_VCD, "[Server] Current state is 'Recording'. Cancel recognition");
194 vcd_server_mgr_cancel();
198 ret = vcd_engine_set_current_language(current_lang);
200 SLOG(LOG_ERROR, TAG_VCD, "[Server ERROR] Fail to set language of engine : %d", ret);
203 SLOG(LOG_DEBUG, TAG_VCD, "=====");
204 SLOG(LOG_DEBUG, TAG_VCD, " ");
209 static void __config_foreground_changed_cb(int previous, int current, void* user_data)
211 SLOG(LOG_DEBUG, TAG_VCD, "===== Change foreground");
213 SLOG(LOG_DEBUG, TAG_VCD, "Foreground pid(%d)", current);
215 if (VC_NO_FOREGROUND_PID != current) {
216 /* Foreground app is changed */
217 vcd_state_e state = vcd_config_get_service_state();
218 if (VCD_STATE_RECORDING == state) {
219 SLOG(LOG_DEBUG, TAG_VCD, "[Server] Foreground pid(%d) is changed. Cancel recognition", current);
220 ecore_timer_add(0, __cancel_by_interrupt, NULL);
224 SLOG(LOG_DEBUG, TAG_VCD, "=====");
225 SLOG(LOG_DEBUG, TAG_VCD, " ");
230 static int __vcd_activate_app_by_appcontrol(const char* appid)
233 SLOG(LOG_ERROR, TAG_VCD, "[ERROR] Invalid parameter");
234 return VCD_ERROR_INVALID_PARAMETER;
238 app_control_h app_control = NULL;
239 ret = app_control_create(&app_control);
240 if (APP_CONTROL_ERROR_NONE == ret) {
242 ret = app_control_add_extra_data(app_control, "voice_launch", "get_result");
243 if (APP_CONTROL_ERROR_NONE != ret) {
244 SLOG(LOG_ERROR, TAG_VCD, "[ERROR] Fail to add extra data, ret(%d)", ret);
245 return VCD_ERROR_OPERATION_FAILED;
248 ret = app_control_set_app_id(app_control, appid);
249 if (APP_CONTROL_ERROR_NONE != ret) {
250 SLOG(LOG_ERROR, TAG_VCD, "[ERROR] Fail to set app id, ret(%d)", ret);
251 return VCD_ERROR_OPERATION_FAILED;
253 // Sent launch request
254 ret = app_control_send_launch_request(app_control, NULL, NULL);
255 if (APP_CONTROL_ERROR_NONE != ret) {
256 SLOG(LOG_ERROR, TAG_VCD, "[ERROR] Fail to send launch request, ret(%d)", ret);
257 return VCD_ERROR_OPERATION_FAILED;
259 // Destroy app control
260 ret = app_control_destroy(app_control);
261 if (APP_CONTROL_ERROR_NONE != ret) {
262 SLOG(LOG_ERROR, TAG_VCD, "[ERROR] Fail to destroy, ret(%d)", ret);
263 return VCD_ERROR_OPERATION_FAILED;
266 return VCD_ERROR_NONE;
269 static int __vcd_resume_app(const char* appid)
271 app_context_h app_context = NULL;
272 int ret = app_manager_get_app_context(appid, &app_context);
273 if (APP_MANAGER_ERROR_NONE != ret) {
274 SLOG(LOG_ERROR, TAG_VCD, "[ERROR] Fail to get app_context, ret(%d), appid(%s)", ret, appid);
275 return VCD_ERROR_OPERATION_FAILED;
278 ret = app_manager_resume_app(app_context);
279 if (APP_MANAGER_ERROR_NONE != ret) {
280 SLOG(LOG_ERROR, TAG_VCD, "[ERROR] Fail to resume app, ret(%d), appid(%s)", ret, appid);
281 return VCD_ERROR_OPERATION_FAILED;
283 return VCD_ERROR_NONE;
286 static bool __vcd_is_package_installed(const char* appid)
288 app_info_h app_info = NULL;
289 int ret = app_manager_get_app_info(appid, &app_info);
290 if (APP_MANAGER_ERROR_NONE != ret || NULL == app_info)
292 ret = app_info_destroy(app_info);
293 if (APP_MANAGER_ERROR_NONE != ret)
294 SLOG(LOG_ERROR, TAG_VCD, "[ERROR] Fail to destroy app_info, ret(%d)", ret);
298 static bool __vcd_launch_app(const char* result)
300 if (NULL == result) {
301 SLOG(LOG_ERROR, TAG_VCD, "[ERROR] Invalid parameter");
302 return VCD_ERROR_INVALID_PARAMETER;
305 GSList* app_list = NULL;
306 if (0 != vc_db_get_appid_list(result, &app_list)) {
307 SLOG(LOG_ERROR, TAG_VCD, "[ERROR] result text is NULL");
308 return VCD_ERROR_INVALID_PARAMETER;
311 if (0 != g_slist_length(app_list)) {
314 vc_deactivated_app_s* temp_app = NULL;
315 iter = g_slist_nth(app_list, 0);
317 while (NULL != iter) {
318 temp_app = iter->data;
320 if (NULL != temp_app) {
321 if (NULL != temp_app->appid) {
323 bool running = false;
324 ret = app_manager_is_running(temp_app->appid, &running);
325 if (APP_MANAGER_ERROR_NONE != ret) {
326 SLOG(LOG_ERROR, TAG_VCD, "[ERROR] Fail to check running with appid(%s)", temp_app->appid);
327 free(temp_app->appid);
328 temp_app->appid = NULL;
331 return VCD_ERROR_OPERATION_FAILED;
333 if (false == running) {
334 int tmp_ret = __vcd_is_package_installed(temp_app->appid);
335 if (false == tmp_ret) {
336 SLOG(LOG_WARN, TAG_VCD, "[WARNING] app is not installed, appid(%s)", temp_app->appid);
338 ret = __vcd_activate_app_by_appcontrol(temp_app->appid);
340 SLOG(LOG_ERROR, TAG_VCD, "[ERROR] Fail to activate app");
341 free(temp_app->appid);
342 temp_app->appid = NULL;
347 SLOG(LOG_ERROR, TAG_VCD, "Launch app: appid(%s) result(%s)", temp_app->appid, result);
350 ret = __vcd_resume_app(temp_app->appid);
352 SLOG(LOG_ERROR, TAG_VCD, "[ERROR] Fail to resume app");
353 free(temp_app->appid);
354 temp_app->appid = NULL;
359 SLOG(LOG_ERROR, TAG_VCD, "Resume app: appid(%s) result(%s)", temp_app->appid, result);
361 free(temp_app->appid);
362 temp_app->appid = NULL;
367 iter = g_slist_next(iter);
372 return VCD_ERROR_NONE;
375 static Eina_Bool __vcd_send_selected_result(void *data)
377 GSList* pid_list = NULL;
378 const char* result = vcd_client_manager_get_result_text();
380 if (0 != vc_info_parser_get_result_pid_list(&pid_list, result)) {
381 SLOG(LOG_WARN, TAG_VCD, "[Server WARNING] Fail to get pid list. No result");
383 if (0 < g_slist_length(pid_list)) {
385 vc_cmd_s* temp_cmd = NULL;
388 iter = g_slist_nth(pid_list, 0);
389 while (NULL != iter) {
390 temp_cmd = iter->data;
392 if (NULL != temp_cmd) {
393 /* Launch deactivated several apps that is matched with result */
394 ret = __vcd_launch_app(result);
396 SLOG(LOG_ERROR, TAG_VCD, "Fail to launch or resume app, ret(%d) result(%s)", ret, result);
398 /* send result noti */
399 ret = vcdc_send_result(temp_cmd->pid, vcd_client_manager_get_pid(), temp_cmd->type);
401 SLOG(LOG_WARN, TAG_VCD, "[Server WARNING] Fail to send result, ret(%d)", ret);
404 SLOG(LOG_DEBUG, TAG_VCD, "[Server] Send result : pid(%d) type(%d)", temp_cmd->pid, temp_cmd->type);
410 pid_list = g_slist_remove_link(pid_list, iter);
411 iter = g_slist_nth(pid_list, 0);
416 if (VCD_RECOGNITION_MODE_RESTART_CONTINUOUSLY != vcd_client_get_recognition_mode()) {
417 vcd_config_set_service_state(VCD_STATE_READY);
418 vcdc_send_service_state(VCD_STATE_READY);
424 //static void __vcd_server_pre_result_cb(vcp_pre_result_event_e event, const char* pre_result, void *user_data)
425 static void __vcd_server_asr_result_cb(vcp_asr_result_event_e event, const char* asr_result, void *user_data)
427 if (NULL != asr_result) {
428 SLOG(LOG_DEBUG, TAG_VCD, "[Server] ASR result - Event(%d), Text(%s)", event, asr_result);
429 vcdc_send_pre_result_to_manager(vcd_client_manager_get_pid(), event, asr_result);
435 static void* __recorder_stop(void *data)
441 static void __vcd_server_result_cb(vcp_result_event_e event, int* result_id, int count, const char* all_result,
442 const char* non_fixed_result, const char* nlu_result, const char* msg, void *user_data)
444 if (VCD_STATE_PROCESSING != vcd_config_get_service_state()) {
445 if (VCD_RECOGNITION_MODE_RESTART_CONTINUOUSLY != vcd_client_get_recognition_mode()) {
446 SLOG(LOG_ERROR, TAG_VCD, "[Server ERROR] Current state is not 'Processing' and mode is not 'Restart continuously'");
451 vc_info_parser_unset_result(vcd_client_manager_get_exclusive());
452 vcd_client_manager_set_result_text(all_result);
454 SLOG(LOG_DEBUG, TAG_VCD, "[Server] Event(%d), Text(%s) Nonfixed(%s) Msg(%s) Result count(%d)",
455 event, all_result, non_fixed_result, msg, count);
457 if (VCD_RECOGNITION_MODE_RESTART_AFTER_REJECT == vcd_client_get_recognition_mode()) {
458 if (VCP_RESULT_EVENT_REJECTED == event) {
459 SLOG(LOG_DEBUG, TAG_VCD, "[Server] Restart by no or rejected result");
460 /* If no result and restart option is ON */
461 /* Send reject message */
462 bool temp = vcd_client_manager_get_exclusive();
463 vc_info_parser_set_result(all_result, event, msg, NULL, temp);
464 if (0 != vcdc_send_result_to_manager(vcd_client_manager_get_pid(), VC_RESULT_TYPE_NOTIFICATION)) {
465 SLOG(LOG_WARN, TAG_VCD, "[Server WARNING] Fail to send result");
468 g_restart_timer = ecore_timer_add(0, __restart_engine, NULL);
471 SLOG(LOG_DEBUG, TAG_VCD, "[Server] Stop recorder due to success");
472 //vcd_recorder_stop();
473 ecore_main_loop_thread_safe_call_sync(__recorder_stop, NULL);
474 } else if (VCD_RECOGNITION_MODE_RESTART_CONTINUOUSLY == vcd_client_get_recognition_mode()) {
475 SLOG(LOG_DEBUG, TAG_VCD, "[Server] Restart continuously");
476 /* Restart option is ON */
477 g_restart_timer = ecore_timer_add(0, __restart_engine, NULL);
478 if (VCP_RESULT_EVENT_REJECTED == event) {
479 bool temp = vcd_client_manager_get_exclusive();
480 vc_info_parser_set_result(all_result, event, msg, NULL, temp);
481 if (0 != vcdc_send_result_to_manager(vcd_client_manager_get_pid(), VC_RESULT_TYPE_NOTIFICATION)) {
482 SLOG(LOG_WARN, TAG_VCD, "[Server WARNING] Fail to send result");
488 /* if nlu_result is exist, Add command handle(is_action) into result list */
490 SLOG(LOG_DEBUG, TAG_VCD, "[Server] === Get engine result ===");
493 vc_cmd_s* temp_cmd = NULL;
494 vc_cmd_list_h vc_cmd_list = NULL;
496 if (0 != vc_cmd_list_create(&vc_cmd_list)) {
497 SLOG(LOG_DEBUG, TAG_VCD, "[Server] Fail to create command list");
498 vcd_client_manager_set_exclusive(false);
499 vcd_config_set_service_state(VCD_STATE_READY);
500 vcdc_send_service_state(VCD_STATE_READY);
504 /* priority filter */
505 /* system > exclusive > foreground = widget > system_background > background */
507 int* filtered_id = (int*)calloc(count, sizeof(int));
508 int filtered_count = 0;
509 int top_priority = VC_COMMAND_PRIORITY_BACKGROUND;
510 for (i = 0; i < count; i++) {
511 SLOG(LOG_DEBUG, TAG_VCD, "[Server] [%d] Result id(%d)", i, result_id[i]);
513 if (0 > result_id[i]) {
514 SLOG(LOG_WARN, TAG_VCD, "[Server WARNING] Result ID(%d) is NOT valid", result_id[i]);
518 ret = vcd_client_get_cmd_from_result_id(result_id[i], &temp_cmd);
519 if (0 == ret && NULL != temp_cmd) {
520 if (top_priority == temp_cmd->priority) {
521 filtered_id[filtered_count] = result_id[i];
523 } else if (top_priority < temp_cmd->priority) {
526 filtered_id[0] = result_id[i];
528 top_priority = temp_cmd->priority;
534 for (i = 0; i < filtered_count; i++) {
535 SLOG(LOG_DEBUG, TAG_VCD, "[Server] [%d] Filtered Result id(%d)", i, filtered_id[i]);
537 if (filtered_id[i] < 0) {
538 SLOG(LOG_WARN, TAG_VCD, "[Server WARNING] Filtered ID(%d) is NOT valid", filtered_id[i]);
542 ret = vcd_client_get_cmd_from_result_id(filtered_id[i], &temp_cmd);
543 if (0 == ret && NULL != temp_cmd) {
544 switch (temp_cmd->format) {
545 case VC_CMD_FORMAT_FIXED:
546 case VC_CMD_FORMAT_FIXED_AND_VFIXED:
547 case VC_CMD_FORMAT_VFIXED_AND_FIXED:
548 case VC_CMD_FORMAT_PARTIAL:
549 case VC_CMD_FORMAT_FIXED_AND_NONFIXED:
550 case VC_CMD_FORMAT_NONFIXED_AND_FIXED:
552 case VC_CMD_FORMAT_ACTION:
556 SLOG(LOG_ERROR, TAG_VCD, "[Server ERROR] Unknown command type : %d", temp_cmd->type);
560 if (0 != vc_cmd_list_add(vc_cmd_list, (vc_cmd_h)temp_cmd)) {
561 SLOG(LOG_DEBUG, TAG_VCD, "Fail to add command to list");
562 vc_cmd_destroy((vc_cmd_h)temp_cmd);
565 SLOG(LOG_WARN, TAG_VCD, "[Server WARNING] NOT found matached result(%d)", filtered_id[i]);
569 if (NULL != filtered_id) {
574 if (NULL != nlu_result) {
575 SLOG(LOG_DEBUG, TAG_VCD, "[Server] NLU (%s)", nlu_result);
576 vc_info_parser_set_nlu_result(nlu_result);
577 if (0 == is_action) {
579 if (0 != vc_cmd_create(&nlu_cmd)) {
580 SLOG(LOG_ERROR, TAG_VCD, "Fail to nlu cmd create");
582 if (0 != vc_cmd_set_type(nlu_cmd, VC_COMMAND_TYPE_SYSTEM)) {
583 SLOG(LOG_ERROR, TAG_VCD, "Fail to set type");
585 if (0 != vc_cmd_set_pid(nlu_cmd, vcd_client_manager_get_pid())) {
586 SLOG(LOG_ERROR, TAG_VCD, "Fail to set pid");
588 if (0 != vc_cmd_set_format(nlu_cmd, VC_CMD_FORMAT_ACTION)) {
589 SLOG(LOG_ERROR, TAG_VCD, "Fail to set format");
591 if (0 != vc_cmd_list_add(vc_cmd_list, nlu_cmd)) {
592 SLOG(LOG_ERROR, TAG_VCD, "Fail to add nlu cmd to list");
593 vc_cmd_destroy(nlu_cmd);
599 vc_cmd_print_list(vc_cmd_list);
601 SLOG(LOG_DEBUG, TAG_VCD, "[Server] =========================");
603 int result_count = 0;
604 vc_cmd_list_get_count(vc_cmd_list, &result_count);
606 if (0 == result_count) {
608 if (NULL != all_result) {
609 SLOG(LOG_DEBUG, TAG_VCD, "[Server] Engine result is no command : %s", all_result);
610 bool temp = vcd_client_manager_get_exclusive();
611 vc_info_parser_set_result(all_result, event, msg, NULL, temp);
614 int pid = vcd_client_widget_get_foreground_pid();
616 if (NULL != all_result) {
617 /* Send result text to widget */
618 vcdc_send_result(pid, vcd_client_manager_get_pid(), VC_COMMAND_TYPE_WIDGET);
621 SLOG(LOG_DEBUG, TAG_VCD, "[Server] Request tooltip hide");
622 /* Send to hide tooltip */
623 vcdc_send_show_tooltip(pid, false);
626 if (-1 != vcd_client_manager_get_pid()) {
627 /* Manager client is available */
628 if (0 != vcdc_send_result_to_manager(vcd_client_manager_get_pid(), VC_RESULT_TYPE_NORMAL)) {
629 SLOG(LOG_WARN, TAG_VCD, "[Server WARNING] Fail to send result");
633 vcd_client_manager_set_exclusive(false);
637 if (false == vcd_client_manager_get_exclusive()) {
638 int pid = vcd_client_widget_get_foreground_pid();
640 SLOG(LOG_DEBUG, TAG_VCD, "[Server] Request tooltip hide");
641 vcdc_send_show_tooltip(pid, false);
644 vc_info_parser_set_result(all_result, event, msg, vc_cmd_list, false);
646 if (-1 != vcd_client_manager_get_pid()) {
647 /* Manager client is available */
648 if (0 != vcdc_send_result_to_manager(vcd_client_manager_get_pid(), VC_RESULT_TYPE_NORMAL)) {
649 SLOG(LOG_WARN, TAG_VCD, "[Server WARNING] Fail to send result");
652 SLOG(LOG_DEBUG, TAG_VCD, "[Server] Manager is NOT available. Send result to client directly");
653 /* Send result to client */
654 ecore_timer_add(0, __vcd_send_selected_result, NULL);
657 /* exclusive command */
658 vc_info_parser_set_result(all_result, event, msg, vc_cmd_list, true);
660 if (-1 != vcd_client_manager_get_pid()) {
661 /* Manager client is available */
662 if (0 != vcdc_send_result_to_manager(vcd_client_manager_get_pid(), VC_RESULT_TYPE_NORMAL)) {
663 SLOG(LOG_WARN, TAG_VCD, "[Server WARNING] Fail to send result");
666 SLOG(LOG_WARN, TAG_VCD, "[Server WARNING] Manager is NOT available");
669 vcd_client_manager_set_exclusive(false);
673 vc_cmd_list_destroy(vc_cmd_list, true);
679 if (NULL == result_id) {
681 if (NULL != all_result) {
682 SLOG(LOG_DEBUG, TAG_VCD, "[Server] Engine result is no command : %s", all_result);
683 bool temp = vcd_client_manager_get_exclusive();
684 vc_info_parser_set_result(all_result, event, msg, NULL, temp);
687 int pid = vcd_client_widget_get_foreground_pid();
689 if (NULL != all_result) {
690 /* Send result text to widget */
691 vcdc_send_result(pid, vcd_client_manager_get_pid(), VC_COMMAND_TYPE_WIDGET);
694 SLOG(LOG_DEBUG, TAG_VCD, "[Server] Request tooltip hide");
695 /* Send to hide tooltip */
696 vcdc_send_show_tooltip(pid, false);
699 if (-1 != vcd_client_manager_get_pid()) {
700 /* Manager client is available */
701 if (0 != vcdc_send_result_to_manager(vcd_client_manager_get_pid(), VC_RESULT_TYPE_NORMAL)) {
702 SLOG(LOG_WARN, TAG_VCD, "[Server WARNING] Fail to send result");
706 vcd_client_manager_set_exclusive(false);
712 SLOG(LOG_DEBUG, TAG_VCD, "[Server] === Get engine result ===");
715 vc_cmd_s* temp_cmd = NULL;
716 vc_cmd_list_h vc_cmd_list = NULL;
718 if (0 != vc_cmd_list_create(&vc_cmd_list)) {
719 SLOG(LOG_ERROR, TAG_VCD, "[Server] Fail to create command list");
720 vcd_client_manager_set_exclusive(false);
721 vcd_config_set_service_state(VCD_STATE_READY);
722 vcdc_send_service_state(VCD_STATE_READY);
727 for (i = 0; i < count; i++) {
728 SLOG(LOG_DEBUG, TAG_VCD, "[Server] [%d] Result ID(%d)", i, result_id[i]);
730 if (result_id[i] < 0) {
731 SLOG(LOG_WARN, TAG_VCD, "[Server WARNING] Result ID(%d) is NOT valid", result_id[i]);
735 ret = vcd_client_get_cmd_from_result_id(result_id[i], &temp_cmd);
736 if (0 == ret && NULL != temp_cmd) {
737 switch (temp_cmd->format) {
738 case VC_CMD_FORMAT_FIXED:
739 case VC_CMD_FORMAT_FIXED_AND_VFIXED:
740 case VC_CMD_FORMAT_VFIXED_AND_FIXED:
741 case VC_CMD_FORMAT_PARTIAL:
742 /* Nonfixed result is NOT valid */
744 case VC_CMD_FORMAT_FIXED_AND_NONFIXED:
745 if (NULL == temp_cmd->parameter) {
746 if (NULL != non_fixed_result) {
747 temp_cmd->parameter = strdup(non_fixed_result);
750 SLOG(LOG_WARN, TAG_VCD, "[Server WARNING] Command type is NOT vaild. Parameter (%s)", temp_cmd->parameter);
753 case VC_CMD_FORMAT_NONFIXED_AND_FIXED:
754 if (NULL == temp_cmd->command) {
755 if (NULL != non_fixed_result) {
756 temp_cmd->command = strdup(non_fixed_result);
759 SLOG(LOG_WARN, TAG_VCD, "[Server WARNING] Command type is NOT vaild. Command (%s)", temp_cmd->command);
764 SLOG(LOG_ERROR, TAG_VCD, "[Server ERROR] Unknown command type : %d", temp_cmd->type);
768 if (0 != vc_cmd_list_add(vc_cmd_list, (vc_cmd_h)temp_cmd)) {
769 SLOG(LOG_DEBUG, TAG_VCD, "Fail to add command to list");
770 vc_cmd_destroy((vc_cmd_h)temp_cmd);
773 SLOG(LOG_WARN, TAG_VCD, "[Server WARNING] NOT found matached result(%d)", result_id[i]);
777 vc_cmd_print_list(vc_cmd_list);
779 SLOG(LOG_DEBUG, TAG_VCD, "[Server] =========================");
781 int result_count = 0;
782 vc_cmd_list_get_count(vc_cmd_list, &result_count);
784 if (false == vcd_client_manager_get_exclusive()) {
785 int pid = vcd_client_widget_get_foreground_pid();
787 SLOG(LOG_DEBUG, TAG_VCD, "[Server] Request tooltip hide");
788 vcdc_send_show_tooltip(pid, false);
791 vc_info_parser_set_result(all_result, event, msg, vc_cmd_list, false);
793 if (-1 != vcd_client_manager_get_pid()) {
794 /* Manager client is available */
795 if (0 != vcdc_send_result_to_manager(vcd_client_manager_get_pid(), VC_RESULT_TYPE_NORMAL)) {
796 SLOG(LOG_WARN, TAG_VCD, "[Server WARNING] Fail to send result");
799 SLOG(LOG_DEBUG, TAG_VCD, "[Server] Manager is NOT available. Send result to client directly");
800 /* Send result to client */
801 ecore_timer_add(0, __vcd_send_selected_result, NULL);
804 /* exclusive command */
805 vc_info_parser_set_result(all_result, event, msg, vc_cmd_list, true);
807 if (-1 != vcd_client_manager_get_pid()) {
808 /* Manager client is available */
809 if (0 != vcdc_send_result_to_manager(vcd_client_manager_get_pid(), VC_RESULT_TYPE_NORMAL)) {
810 SLOG(LOG_WARN, TAG_VCD, "[Server WARNING] Fail to send result");
813 SLOG(LOG_WARN, TAG_VCD, "[Server WARNING] Manager is NOT available");
816 vcd_client_manager_set_exclusive(false);
819 vc_cmd_list_destroy(vc_cmd_list, true);
826 static void __vcd_server_nlu_result_cb(vcp_result_event_e event, const char* nlu_result, void *user_data)
828 SLOG(LOG_DEBUG, TAG_VCD, "[Server] NLU result cb - event(%d)", event);
829 SLOG(LOG_DEBUG, TAG_VCD, "[Server] result (%s)", nlu_result);
831 int ret = vc_info_parser_set_nlu_result(nlu_result);
833 SLOG(LOG_ERROR, TAG_VCD, "[Server ERROR] Fail to set nlu result (%d)", ret);
840 static void __vcd_server_error_cb(vcp_error_e error, const char* msg, void *user_data)
842 SLOG(LOG_ERROR, TAG_VCD, "[Server ERROR] Engine Error cb - reason(%d), msg(%s)", error, msg);
843 ecore_main_loop_thread_safe_call_async(__cancel_by_error, NULL);
845 char* error_msg = NULL;
846 error_msg = strdup(msg);
848 if (0 != vcdc_send_error_signal_to_manager(vcd_client_manager_get_pid(), error, error_msg)) {
849 SLOG(LOG_ERROR, TAG_VCD, "[Server ERROR] Fail to send error signal");
852 if (NULL != error_msg) {
861 * vcd server Interfaces
863 static void __vcd_file_clean_up()
865 SLOG(LOG_DEBUG, TAG_VCD, "== Old file clean up == ");
870 struct dirent *dirp = NULL;
872 dp = opendir(VC_RUNTIME_INFO_ROOT);
874 SLOG(LOG_ERROR, TAG_VCD, "[File message WARN] Fail to open path : %s", VC_RUNTIME_INFO_ROOT);
878 char remove_path[256] = {0, };
880 ret = readdir_r(dp, &entry, &dirp);
882 SLOG(LOG_ERROR, TAG_VCD, "[File ERROR] Fail to read directory");
887 if (!strncmp("vc_", dirp->d_name, strlen("vc_"))) {
888 memset(remove_path, 0, 256);
889 snprintf(remove_path, 256, "%s/%s", VC_RUNTIME_INFO_ROOT, dirp->d_name);
892 if (0 != remove(remove_path)) {
893 SLOG(LOG_WARN, TAG_VCD, "[File message WARN] Fail to remove file : %s", remove_path);
895 SLOG(LOG_DEBUG, TAG_VCD, "[File message] Remove file : %s", remove_path);
899 } while (NULL != dirp);
906 static int __vcd_db_clean_up()
909 int cnt = VC_COMMAND_TYPE_FOREGROUND;
911 if (VC_COMMAND_TYPE_BACKGROUND != cnt)
912 ret = vc_db_delete_commands(-1, cnt, NULL);
913 } while (VC_COMMAND_TYPE_EXCLUSIVE >= ++cnt);
918 static void __sig_handler(int signo)
920 /* restore signal handler */
921 signal(signo, SIG_DFL);
923 /* Send error signal for notifying that daemon is reset*/
924 vcdc_send_error_signal(VCD_ERROR_SERVICE_RESET, "Daemon reset");
926 /* invoke signal again */
930 static void __register_sig_handler()
932 signal(SIGSEGV, __sig_handler);
933 signal(SIGABRT, __sig_handler);
934 signal(SIGTERM, __sig_handler);
935 signal(SIGINT, __sig_handler);
936 signal(SIGQUIT, __sig_handler);
943 __register_sig_handler();
945 /* Remove old file */
946 __vcd_file_clean_up();
948 /* initialize modules */
949 ret = vcd_config_initialize(__config_lang_changed_cb, __config_foreground_changed_cb, NULL);
951 SLOG(LOG_ERROR, TAG_VCD, "[Server WARNING] Fail to initialize config.");
955 ret = __vcd_db_clean_up();
957 SLOG(LOG_ERROR, TAG_VCD, "[Server WARNING] Fail to remove db data");
960 vcd_config_set_service_state(VCD_STATE_NONE);
962 //ret = vcd_engine_agent_init(__vcd_server_pre_result_cb, __vcd_server_result_cb, __vcd_server_nlu_result_cb, __vcd_server_error_cb);
963 ret = vcd_engine_agent_init(__vcd_server_asr_result_cb, __vcd_server_result_cb, __vcd_server_error_cb);
965 SLOG(LOG_ERROR, TAG_VCD, "[Server ERROR] Fail to engine agent initialize : result(%d)", ret);
969 if (0 != vcd_recorder_create(__server_recorder_callback, __server_recorder_interrupt_callback)) {
970 SLOG(LOG_ERROR, TAG_VCD, "[Server ERROR] Fail to create recorder");
971 return VCD_ERROR_OPERATION_FAILED;
975 ret = vcd_engine_agent_initialize_current_engine();
977 if (VCD_ERROR_ENGINE_NOT_FOUND == ret)
978 SLOG(LOG_ERROR, TAG_VCD, "[Server ERROR] There is No Voice control engine");
980 SLOG(LOG_ERROR, TAG_VCD, "[Server ERROR] Fail to init engine");
988 if (0 != vcd_engine_agent_load_current_engine()) {
989 SLOG(LOG_ERROR, TAG_VCD, "[Server ERROR] Fail to load current engine");
990 return VCD_ERROR_OPERATION_FAILED;
993 /* Initialize manager info */
994 vcd_client_manager_unset();
996 vcd_config_set_service_state(VCD_STATE_READY);
997 vcdc_send_service_state(VCD_STATE_READY);
999 SLOG(LOG_DEBUG, TAG_VCD, "[Server SUCCESS] initialize");
1007 if (0 < g_list_length(g_proc_list)) {
1008 iter = g_list_first(g_proc_list);
1009 while (NULL != iter) {
1010 g_proc_list = g_list_remove_link(g_proc_list, iter);
1011 iter = g_list_first(g_proc_list);
1015 if (g_restart_timer != NULL) {
1016 ecore_timer_del(g_restart_timer);
1017 g_restart_timer = NULL;
1020 vcd_state_e state = vcd_config_get_service_state();
1021 if (VCD_STATE_READY != state) {
1022 if (VCD_STATE_RECORDING == state) {
1023 vcd_recorder_stop();
1025 vcd_engine_recognize_cancel();
1027 if (0 != vcd_recorder_destroy()) {
1028 SLOG(LOG_ERROR, TAG_VCD, "[Server ERROR] Fail to destroy recorder");
1030 SLOG(LOG_DEBUG, TAG_VCD, "[Server] destroy recorder");
1033 if (0 != vcd_engine_agent_release()) {
1034 SLOG(LOG_ERROR, TAG_VCD, "[Server ERROR] Fail to release engine");
1036 SLOG(LOG_DEBUG, TAG_VCD, "[Server] release engine");
1039 vcd_client_manager_unset_appid();
1041 vcd_config_set_service_state(VCD_STATE_NONE);
1042 vcdc_send_service_state(VCD_STATE_NONE);
1044 SLOG(LOG_DEBUG, TAG_VCD, "[Server] mode finalize");
1049 static Eina_Bool __finalize_quit_ecore_loop(void *data)
1051 SLOG(LOG_DEBUG, TAG_VCD, "[Server] quit ecore main loop");
1052 ecore_main_loop_quit();
1056 static void __read_proc()
1059 struct dirent entry;
1060 struct dirent *dirp = NULL;
1065 if (0 < g_list_length(g_proc_list)) {
1066 iter = g_list_first(g_proc_list);
1067 while (NULL != iter) {
1068 g_proc_list = g_list_remove_link(g_proc_list, iter);
1069 iter = g_list_first(g_proc_list);
1073 dp = opendir("/proc");
1075 SLOG(LOG_ERROR, TAG_VCD, "[ERROR] Fail to open proc");
1078 ret = readdir_r(dp, &entry, &dirp);
1080 SLOG(LOG_ERROR, TAG_VCD, "[ERROR] Fail to readdir");
1085 tmp = atoi(dirp->d_name);
1086 if (0 >= tmp) continue;
1087 g_proc_list = g_list_append(g_proc_list, GINT_TO_POINTER(tmp));
1089 } while (NULL != dirp);
1095 static void __vcd_cleanup_client(vcd_client_type_e type)
1097 int* client_list = NULL;
1098 int client_count = 0;
1105 if (VCD_CLIENT_TYPE_NORMAL == type) {
1106 ret = vcd_client_get_list(&client_list, &client_count);
1107 } else if (VCD_CLIENT_TYPE_WIDGET == type) {
1108 ret = vcd_client_widget_get_list(&client_list, &client_count);
1109 } else if (VCD_CLIENT_TYPE_MANAGER == type) {
1110 mgr_pid = vcd_client_manager_get_pid();
1111 client_list = &mgr_pid;
1113 if (-1 == mgr_pid) {
1114 SLOG(LOG_WARN, TAG_VCD, "[WARNING] Invalid Manager pid");
1119 if (0 == ret || mgr_pid > 0) {
1120 SLOG(LOG_DEBUG, TAG_VCD, "===== Clean up %s client ", type ? (type == 1) ? "Widget" : "Manager" : "Normal");
1121 if (NULL != client_list && client_count > 0) {
1122 for (i = 0; i < client_count; i++) {
1125 for (j = 0; j < g_list_length(g_proc_list); j++) {
1126 iter = g_list_nth(g_proc_list, j);
1128 if (client_list[i] == GPOINTER_TO_INT(iter->data)) {
1129 SLOG(LOG_DEBUG, TAG_VCD, "%s pid(%d) is running", type ? (type == 1) ? "Widget" : "Manager" : "Normal", client_list[i]);
1136 if (false == exist) {
1137 SLOG(LOG_ERROR, TAG_VCD, "%s pid(%d) should be removed", type ? (type == 1) ? "Widget" : "Manager" : "Normal", client_list[i]);
1138 if (VCD_CLIENT_TYPE_NORMAL == type)
1139 vcd_server_finalize(client_list[i]);
1140 else if (VCD_CLIENT_TYPE_WIDGET == type)
1141 vcd_server_widget_finalize(client_list[i]);
1143 vcd_server_mgr_finalize(mgr_pid);
1147 SLOG(LOG_DEBUG, TAG_VCD, "=====");
1148 SLOG(LOG_DEBUG, TAG_VCD, " ");
1150 if (NULL != client_list && -1 == mgr_pid) {
1157 Eina_Bool vcd_cleanup_client_all(void *data)
1161 __vcd_cleanup_client(VCD_CLIENT_TYPE_NORMAL);
1162 __vcd_cleanup_client(VCD_CLIENT_TYPE_WIDGET);
1163 __vcd_cleanup_client(VCD_CLIENT_TYPE_MANAGER);
1166 if (0 == vcd_client_get_list(&client_list, &client_count)) {
1167 SLOG(LOG_DEBUG, TAG_VCD, "===== Clean up client ");
1168 if (NULL != client_list && client_count > 0) {
1169 for (i = 0; i < client_count; i++) {
1172 for (j = 0; j < g_list_length(g_proc_list); j++) {
1173 iter = g_list_nth(g_proc_list, j);
1175 if (client_list[i] == GPOINTER_TO_INT(iter->data)) {
1176 SLOG(LOG_DEBUG, TAG_VCD, "pid(%d) is running", client_list[i]);
1183 if (false == exist) {
1184 SLOG(LOG_ERROR, TAG_VCD, "pid(%d) should be removed", client_list[i]);
1185 vcd_server_finalize(client_list[i]);
1188 result = vcdc_send_hello(client_list[i], VCD_CLIENT_TYPE_NORMAL);
1191 SLOG(LOG_DEBUG, TAG_VCD, "[Server] pid(%d) should be removed.", client_list[i]);
1192 vcd_server_finalize(client_list[i]);
1193 } else if (-1 == result) {
1194 SLOG(LOG_ERROR, TAG_VCD, "[Server ERROR] Hello result has error");
1199 SLOG(LOG_DEBUG, TAG_VCD, "=====");
1200 SLOG(LOG_DEBUG, TAG_VCD, " ");
1202 if (NULL != client_list) {
1207 /* If app is in background state, app cannot response message. */
1208 if (0 == vcd_client_widget_get_list(&client_list, &client_count)) {
1209 SLOG(LOG_DEBUG, TAG_VCD, "===== Clean up widget");
1210 if (NULL != client_list && client_count > 0) {
1211 for (i = 0; i < client_count; i++) {
1214 for (j = 0; j < g_list_length(g_proc_list); j++) {
1215 iter = g_list_nth(g_proc_list, j);
1217 if (client_list[i] == GPOINTER_TO_INT(iter->data)) {
1218 SLOG(LOG_DEBUG, TAG_VCD, "widget pid(%d) is running", client_list[i]);
1225 if (false == exist) {
1226 SLOG(LOG_ERROR, TAG_VCD, "widget pid(%d) should be removed", client_list[i]);
1227 vcd_server_widget_finalize(client_list[i]);
1230 result = vcdc_send_hello(client_list[i], VCD_CLIENT_TYPE_WIDGET);
1233 SLOG(LOG_DEBUG, TAG_VCD, "[Server] widget pid(%d) should be removed.", client_list[i]);
1234 vcd_server_widget_finalize(client_list[i]);
1235 } else if (-1 == result) {
1236 SLOG(LOG_ERROR, TAG_VCD, "[Server ERROR] Hello result has error");
1241 SLOG(LOG_DEBUG, TAG_VCD, "=====");
1242 SLOG(LOG_DEBUG, TAG_VCD, " ");
1245 if (NULL != client_list) {
1253 int mgr_pid = vcd_client_manager_get_pid();
1255 for (j = 0; j < g_list_length(g_proc_list); j++) {
1256 iter = g_list_nth(g_proc_list, j);
1258 if (mgr_pid == GPOINTER_TO_INT(iter->data)) {
1259 SLOG(LOG_DEBUG, TAG_VCD, "manager pid(%d) is running", mgr_pid);
1266 if (false == exist) {
1267 SLOG(LOG_ERROR, TAG_VCD, "manager pid (%d) should be removed", mgr_pid);
1268 vcd_server_mgr_finalize(mgr_pid);
1275 int vcd_server_get_service_state()
1277 return vcd_config_get_service_state();
1280 int vcd_server_get_foreground()
1283 vcd_config_get_foreground(&pid);
1291 int vcd_server_mgr_initialize(int pid)
1293 if (false == g_is_engine) {
1294 if (0 != vcd_engine_agent_initialize_current_engine()) {
1295 SLOG(LOG_ERROR, TAG_VCD, "[Server ERROR] No Engine");
1296 g_is_engine = false;
1297 return VCD_ERROR_ENGINE_NOT_FOUND;
1303 /* check if pid is valid */
1304 if (false == vcd_client_manager_is_valid(pid)) {
1305 SLOG(LOG_ERROR, TAG_VCD, "[Server] old manager pid(%d) be removed", vcd_client_manager_get_pid());
1306 vcd_server_mgr_cancel();
1307 vcd_client_manager_unset();
1310 /* Add client information to client manager */
1311 if (0 != vcd_client_manager_set(pid)) {
1312 SLOG(LOG_ERROR, TAG_VCD, "[Server ERROR] Fail to add manager");
1313 return VCD_ERROR_OPERATION_FAILED;
1316 if (0 != vcdc_send_manager_pid(pid))
1317 SLOG(LOG_WARN, TAG_VCD, "[Server WARNING] Fail to send manager pid");
1319 SLOG(LOG_DEBUG, TAG_VCD, "[Server Success] Manager initialize : pid(%d)", pid);
1321 return VCD_ERROR_NONE;
1324 int vcd_server_mgr_finalize(int pid)
1326 /* check if pid is valid */
1327 if (false == vcd_client_manager_is_valid(pid)) {
1328 SLOG(LOG_ERROR, TAG_VCD, "[Server ERROR] The manager pid(%d) is NOT valid", pid);
1329 return VCD_ERROR_INVALID_PARAMETER;
1332 /* Cancel recognition */
1333 vcd_server_mgr_cancel();
1335 if (0 != vcdc_send_manager_pid(-1))
1336 SLOG(LOG_WARN, TAG_VCD, "[Server WARNING] Fail to send manager pid");
1338 /* Remove manager information */
1339 if (0 != vcd_client_manager_unset()) {
1340 SLOG(LOG_WARN, TAG_VCD, "[Server WARNING] Fail to delete client");
1343 if (0 == vcd_client_get_ref_count()) {
1344 SLOG(LOG_DEBUG, TAG_VCD, "[Server] Connected client list is empty");
1345 ecore_timer_add(0, __finalize_quit_ecore_loop, NULL);
1348 SLOG(LOG_DEBUG, TAG_VCD, "[Server Success] Manager Finalize : pid(%d)", pid);
1350 return VCD_ERROR_NONE;
1353 int vcd_server_mgr_set_command(int pid)
1355 if (0 != vcd_client_manager_set_command(pid)) {
1356 SLOG(LOG_ERROR, TAG_VCD, "[Server ERROR] The manager pid(%d) is NOT valid", pid);
1357 return VCD_ERROR_INVALID_PARAMETER;
1359 return VCD_ERROR_NONE;
1362 int vcd_server_mgr_unset_command(int pid)
1364 if (0 != vcd_client_manager_unset_command(pid)) {
1365 SLOG(LOG_ERROR, TAG_VCD, "[Server ERROR] The manager pid(%d) is NOT valid", pid);
1366 return VCD_ERROR_INVALID_PARAMETER;
1368 return VCD_ERROR_NONE;
1371 int vcd_server_mgr_set_demandable_client(int pid)
1373 /* check if pid is valid */
1374 if (false == vcd_client_manager_is_valid(pid)) {
1375 SLOG(LOG_ERROR, TAG_VCD, "[Server ERROR] The manager pid(%d) is NOT valid", pid);
1376 return VCD_ERROR_INVALID_PARAMETER;
1379 GSList* client_list = NULL;
1380 if (0 != vc_info_parser_get_demandable_clients(&client_list)) {
1381 SLOG(LOG_ERROR, TAG_VCD, "[Server ERROR] Fail to get demandable client");
1382 return VCD_ERROR_OPERATION_FAILED;
1385 /* Save client list */
1386 if (0 != vcd_client_manager_set_demandable_client(pid, client_list)) {
1387 SLOG(LOG_ERROR, TAG_VCD, "[Server ERROR] Fail to set demandable client list");
1388 return VCD_ERROR_OPERATION_FAILED;
1391 return VCD_ERROR_NONE;
1394 int vcd_server_mgr_set_audio_type(int pid, const char* audio_type)
1396 /* check if pid is valid */
1397 if (false == vcd_client_manager_is_valid(pid)) {
1398 SLOG(LOG_ERROR, TAG_VCD, "[Server ERROR] The manager pid(%d) is NOT valid", pid);
1399 return VCD_ERROR_INVALID_PARAMETER;
1403 vcp_audio_type_e type = VCP_AUDIO_TYPE_PCM_S16_LE;
1407 ret = vcd_engine_get_audio_format(audio_type, &type, &rate, &channel);
1409 SLOG(LOG_ERROR, TAG_VCD, "[Server ERROR] Fail to get audio format : %d", ret);
1410 return VCD_ERROR_OPERATION_FAILED;
1413 ret = vcd_recorder_set(audio_type, type, rate, channel);
1415 SLOG(LOG_ERROR, TAG_VCD, "[Server ERROR] Fail to set audio in type : %d", ret);
1416 return VCD_ERROR_OPERATION_FAILED;
1419 return VCD_ERROR_NONE;
1422 int vcd_server_mgr_get_audio_type(int pid, char** audio_type)
1424 /* check if pid is valid */
1425 if (false == vcd_client_manager_is_valid(pid)) {
1426 SLOG(LOG_ERROR, TAG_VCD, "[Server ERROR] The manager pid(%d) is NOT valid", pid);
1427 return VCD_ERROR_INVALID_PARAMETER;
1430 int ret = vcd_recorder_get(audio_type);
1432 SLOG(LOG_ERROR, TAG_VCD, "[Server ERROR] Fail to get audio in type : %d", ret);
1433 return VCD_ERROR_OPERATION_FAILED;
1436 return VCD_ERROR_NONE;
1439 int vcd_server_mgr_set_client_info(int pid)
1441 /* check if pid is valid */
1442 if (false == vcd_client_manager_is_valid(pid)) {
1443 SLOG(LOG_ERROR, TAG_VCD, "[Server ERROR] The manager pid(%d) is NOT valid", pid);
1444 return VCD_ERROR_INVALID_PARAMETER;
1447 int ret = vcd_client_save_client_info();
1449 SLOG(LOG_ERROR, TAG_VCD, "[Server ERROR] Fail to save client info : %d", ret);
1450 return VCD_ERROR_OPERATION_FAILED;
1453 return VCD_ERROR_NONE;
1456 static int __start_internal_recognition()
1460 /* 2. Get commands */
1461 ret = vcd_client_command_collect_command();
1463 SLOG(LOG_ERROR, TAG_VCD, "[Server ERROR] Fail to collect command : %d", ret);
1464 return VCD_ERROR_OPERATION_FAILED;
1467 ret = vcd_client_get_length();
1469 SLOG(LOG_WARN, TAG_VCD, "[Server WARNIING] No current command : %d", ret);
1470 return VCD_ERROR_OPERATION_FAILED;
1473 /* 3. Set command to engine */
1474 ret = vcd_engine_set_commands();
1476 SLOG(LOG_ERROR, TAG_VCD, "[Server ERROR] Fail to collect command : %d", ret);
1477 return VCD_ERROR_OPERATION_FAILED;
1480 SLOG(LOG_DEBUG, TAG_VCD, "[Server Success] Set command");
1482 bool stop_by_silence = true;
1483 if (VCD_RECOGNITION_MODE_MANUAL == vcd_client_get_recognition_mode()) {
1484 stop_by_silence = false;
1487 vcd_client_manager_set_result_text(NULL);
1489 /* 4. start recognition */
1490 ret = vcd_engine_recognize_start(stop_by_silence);
1492 SLOG(LOG_ERROR, TAG_VCD, "[Server ERROR] Fail to start recognition : result(%d)", ret);
1493 return VCD_ERROR_OPERATION_FAILED;
1496 SLOG(LOG_DEBUG, TAG_VCD, "[Server Success] Start engine");
1498 /* 5. recorder start */
1499 ret = vcd_recorder_start();
1501 SLOG(LOG_ERROR, TAG_VCD, "[Server ERROR] Fail to start recorder : result(%d)", ret);
1502 vcd_engine_recognize_cancel();
1506 vcd_config_set_service_state(VCD_STATE_RECORDING);
1507 vcdc_send_service_state(VCD_STATE_RECORDING);
1509 SLOG(LOG_DEBUG, TAG_VCD, "[Server Success] Start recognition(%d)", stop_by_silence);
1514 static Eina_Bool __vcd_request_show_tooltip(void *data)
1516 int pid = vcd_client_widget_get_foreground_pid();
1518 SLOG(LOG_DEBUG, TAG_VCD, "[Server] Request tooltip show and widget command");
1519 vcdc_send_show_tooltip(pid, (bool)data);
1525 int vcd_server_mgr_start(vcd_recognition_mode_e recognition_mode, bool exclusive_cmd, bool start_by_client)
1527 /* 1. check current state */
1528 vcd_state_e state = vcd_config_get_service_state();
1530 if (VCD_STATE_READY != state) {
1531 SLOG(LOG_ERROR, TAG_VCD, "[Server ERROR] Current state is not ready");
1532 return VCD_ERROR_INVALID_STATE;
1534 if (-1 == vcd_client_manager_get_pid()) {
1535 SLOG(LOG_DEBUG, TAG_VCD, "[Server] Manager is NOT available.");
1536 return VCD_ERROR_OPERATION_FAILED;
1539 SLOG(LOG_DEBUG, TAG_VCD, "[Server] set recognition mode = %d", recognition_mode);
1540 vcd_client_set_recognition_mode(recognition_mode);
1542 if (false == exclusive_cmd) {
1543 /* Notify show tooltip */
1544 int pid = vcd_client_widget_get_foreground_pid();
1546 SLOG(LOG_DEBUG, TAG_VCD, "[Server] Request tooltip show and widget command");
1547 ecore_timer_add(0, __vcd_request_show_tooltip, (void*)true);
1551 vcd_client_manager_set_exclusive(exclusive_cmd);
1555 if (true == start_by_client) {
1556 /* Get foreground pid */
1557 if (0 != vcd_config_get_foreground(&fg_pid)) {
1558 SLOG(LOG_ERROR, TAG_VCD, "[Server ERROR] Fail to get foreground");
1561 /* Set client exclusive option */
1562 if (0 != vcd_client_set_exclusive_command(fg_pid)) {
1563 SLOG(LOG_ERROR, TAG_VCD, "[Server ERROR] Fail to set exclusive command");
1567 int ret = __start_internal_recognition();
1569 SLOG(LOG_ERROR, TAG_VCD, "[Server ERROR] Fail to start recongition : %d", ret);
1573 if (true == start_by_client) {
1574 vcd_client_unset_exclusive_command(fg_pid);
1577 return VCD_ERROR_NONE;
1580 int vcd_server_mgr_stop()
1582 /* 1. Check current state is recording */
1583 if (VCD_STATE_RECORDING != vcd_config_get_service_state()) {
1584 SLOG(LOG_ERROR, TAG_VCD, "[Server ERROR] Current state is not recording");
1585 return VCD_ERROR_INVALID_STATE;
1587 if (-1 == vcd_client_manager_get_pid()) {
1588 SLOG(LOG_DEBUG, TAG_VCD, "[Server] Manager is NOT available.");
1589 return VCD_ERROR_OPERATION_FAILED;
1592 /* 2. Stop recorder */
1593 vcd_recorder_stop();
1595 /* 3. Stop engine recognition */
1596 int ret = vcd_engine_recognize_stop();
1598 SLOG(LOG_ERROR, TAG_VCD, "[Server ERROR] Fail to stop recognition : %d", ret);
1601 /* 4. Set original mode */
1602 vcd_config_set_service_state(VCD_STATE_PROCESSING);
1603 vcdc_send_service_state(VCD_STATE_PROCESSING);
1605 return VCD_ERROR_NONE;
1608 int vcd_server_mgr_cancel()
1610 /* 1. Check current state */
1611 vcd_state_e state = vcd_config_get_service_state();
1612 if (VCD_STATE_RECORDING != state && VCD_STATE_PROCESSING != state) {
1613 SLOG(LOG_WARN, TAG_VCD, "[Server ERROR] Current state is not recording or processing");
1614 return VCD_ERROR_INVALID_STATE;
1616 if (-1 == vcd_client_manager_get_pid()) {
1617 SLOG(LOG_DEBUG, TAG_VCD, "[Server] Manager is NOT available.");
1618 return VCD_ERROR_OPERATION_FAILED;
1621 if (g_restart_timer != NULL) {
1622 SLOG(LOG_WARN, TAG_VCD, "[Server WARNING] Delete restart engine timer");
1623 ecore_timer_del(g_restart_timer);
1624 g_restart_timer = NULL;
1627 /* 2. Stop recorder */
1628 vcd_recorder_stop();
1629 /* 3. Cancel engine */
1630 int ret = vcd_engine_recognize_cancel();
1632 SLOG(LOG_WARN, TAG_VCD, "[Server WARNING] Fail to cancel : %d", ret);
1635 if (false == vcd_client_manager_get_exclusive()) {
1636 int pid = vcd_client_widget_get_foreground_pid();
1638 SLOG(LOG_DEBUG, TAG_VCD, "[Server] Request tooltip hide");
1639 ecore_timer_add(0, __vcd_request_show_tooltip, (void*)false);
1642 vcd_client_manager_set_exclusive(false);
1646 vcd_config_set_service_state(VCD_STATE_READY);
1647 vcdc_send_service_state(VCD_STATE_READY);
1649 return VCD_ERROR_NONE;
1653 int vcd_server_mgr_result_select()
1655 __vcd_send_selected_result(NULL);
1657 return VCD_ERROR_NONE;
1660 int vcd_server_mgr_set_domain(int pid, const char* domain)
1662 /* check if pid is valid */
1663 if (false == vcd_client_manager_is_valid(pid)) {
1664 SLOG(LOG_ERROR, TAG_VCD, "[Server ERROR] The manager pid(%d) is NOT valid", pid);
1665 return VCD_ERROR_INVALID_PARAMETER;
1668 vcd_state_e state = vcd_config_get_service_state();
1669 if (VCD_STATE_READY != state) {
1670 SLOG(LOG_ERROR, TAG_VCD, "[Server ERROR] Current state is not ready");
1671 return VCD_ERROR_INVALID_STATE;
1674 /* Set domain to engine */
1675 int ret = vcd_engine_set_domain(pid, domain);
1677 SLOG(LOG_ERROR, TAG_VCD, "[Server ERROR] Fail to set domain : %d", ret);
1679 SLOG(LOG_DEBUG, TAG_VCD, "[Server SUCCESS] Set domain");
1685 int vcd_server_mgr_set_private_data(int pid, const char* key, const char* data)
1687 /* check if pid is valid */
1688 if (false == vcd_client_manager_is_valid(pid)) {
1689 SLOG(LOG_ERROR, TAG_VCD, "[Server ERROR] The manager pid(%d) is NOT valid", pid);
1690 return VCD_ERROR_INVALID_PARAMETER;
1693 vcd_state_e state = vcd_config_get_service_state();
1694 if (VCD_STATE_READY != state) {
1695 SLOG(LOG_ERROR, TAG_VCD, "[Server ERROR] Current state is not ready");
1696 return VCD_ERROR_INVALID_STATE;
1699 /* Set private data to engine */
1700 int ret = vcd_engine_set_private_data(pid, key, data);
1702 SLOG(LOG_ERROR, TAG_VCD, "[Server ERROR] Fail to set private data : %d", ret);
1704 SLOG(LOG_DEBUG, TAG_VCD, "[Server SUCCESS] Set private data");
1710 int vcd_server_mgr_get_private_data(int pid, const char* key, char** data)
1712 /* check if pid is valid */
1713 if (false == vcd_client_manager_is_valid(pid)) {
1714 SLOG(LOG_ERROR, TAG_VCD, "[Server ERROR] The manager pid(%d) is NOT valid", pid);
1715 return VCD_ERROR_INVALID_PARAMETER;
1717 vcd_state_e state = vcd_config_get_service_state();
1718 if (VCD_STATE_READY != state) {
1719 SLOG(LOG_ERROR, TAG_VCD, "[Server ERROR] Current state is not ready");
1720 return VCD_ERROR_INVALID_STATE;
1723 /* Get private data to engine */
1724 int ret = vcd_engine_get_private_data(pid, key, data);
1726 SLOG(LOG_ERROR, TAG_VCD, "[Server ERROR] Fail to get private data : %d", ret);
1728 SLOG(LOG_DEBUG, TAG_VCD, "[Server SUCCESS] Set private data");
1734 int vcd_server_mgr_do_action(int pid, int type, const char* action)
1738 /* check if pid is valid */
1739 if (false == vcd_client_manager_is_valid(pid)) {
1740 SLOG(LOG_ERROR, TAG_VCD, "[Server ERROR] The manager pid(%d) is NOT valid", pid);
1741 return VCD_ERROR_INVALID_PARAMETER;
1744 vcd_state_e state = vcd_config_get_service_state();
1745 if (VCD_STATE_READY != state) {
1746 SLOG(LOG_ERROR, TAG_VCD, "[Server ERROR] Current state is not ready");
1747 return VCD_ERROR_INVALID_STATE;
1750 /* Reqeust do action to engine */
1751 if (VCD_SEND_EVENT_TYPE_TEXT == type)
1752 ret = vcd_engine_process_text(pid, action);
1753 else if (VCD_SEND_EVENT_TYPE_LIST_EVENT == type)
1754 ret = vcd_engine_process_list_event(pid, action);
1755 else if (VCD_SEND_EVENT_TYPE_HAPTIC_EVENT == type)
1756 ret = vcd_engine_process_haptic_event(pid, action);
1759 SLOG(LOG_ERROR, TAG_VCD, "[Server ERROR] Fail to process do action : %d", ret);
1761 SLOG(LOG_DEBUG, TAG_VCD, "[Server SUCCESS] Process do action");
1768 * VC Server Functions for Client
1770 int vcd_server_initialize(int pid)
1772 if (false == g_is_engine) {
1773 if (0 != vcd_engine_agent_initialize_current_engine()) {
1774 SLOG(LOG_ERROR, TAG_VCD, "[Server ERROR] No Engine");
1775 g_is_engine = false;
1776 return VCD_ERROR_ENGINE_NOT_FOUND;
1782 if (false == vcd_engine_is_available_engine()) {
1783 if (0 != vcd_engine_agent_initialize_current_engine()) {
1784 SLOG(LOG_ERROR, TAG_VCD, "[Server ERROR] No Engine");
1785 return VCD_ERROR_ENGINE_NOT_FOUND;
1789 /* check if pid is valid */
1790 if (true == vcd_client_is_available(pid)) {
1791 SLOG(LOG_ERROR, TAG_VCD, "[Server ERROR] The pid is already exist");
1792 return VCD_ERROR_INVALID_PARAMETER;
1795 /* Add client information to client manager */
1796 if (0 != vcd_client_add(pid)) {
1797 SLOG(LOG_ERROR, TAG_VCD, "[Server ERROR] Fail to add client info");
1798 return VCD_ERROR_OPERATION_FAILED;
1801 SLOG(LOG_DEBUG, TAG_VCD, "[Server Success] Client Initialize : pid(%d)", pid);
1803 return VCD_ERROR_NONE;
1806 int vcd_server_finalize(int pid)
1808 /* check if pid is valid */
1809 if (false == vcd_client_is_available(pid)) {
1810 SLOG(LOG_ERROR, TAG_VCD, "[Server ERROR] pid is NOT valid ");
1811 return VCD_ERROR_INVALID_PARAMETER;
1814 /* Remove client information */
1815 if (0 != vcd_client_delete(pid)) {
1816 SLOG(LOG_WARN, TAG_VCD, "[Server WARNING] Fail to delete client");
1819 if (0 == vcd_client_get_ref_count()) {
1820 SLOG(LOG_DEBUG, TAG_VCD, "[Server] Connected client list is empty");
1821 ecore_timer_add(0, __finalize_quit_ecore_loop, NULL);
1824 SLOG(LOG_DEBUG, TAG_VCD, "[Server Success] Client Finalize : pid(%d)", pid);
1826 return VCD_ERROR_NONE;
1829 int vcd_server_set_command(int pid, vc_cmd_type_e cmd_type)
1831 /* check if pid is valid */
1832 if (false == vcd_client_is_available(pid)) {
1833 SLOG(LOG_ERROR, TAG_VCD, "[Server ERROR] pid is NOT valid ");
1834 return VCD_ERROR_INVALID_PARAMETER;
1837 if (0 != vcd_client_set_command_type(pid, cmd_type)) {
1838 SLOG(LOG_ERROR, TAG_VCD, "[Server ERROR] Fail to set command type : pid(%d), cmd_type(%d)", pid, cmd_type);
1839 return VCD_ERROR_OPERATION_FAILED;
1845 int vcd_server_unset_command(int pid, vc_cmd_type_e cmd_type)
1847 /* check if pid is valid */
1848 if (false == vcd_client_is_available(pid)) {
1849 SLOG(LOG_ERROR, TAG_VCD, "[Server ERROR] pid is NOT valid ");
1850 return VCD_ERROR_INVALID_PARAMETER;
1853 if (0 != vcd_client_unset_command_type(pid, cmd_type)) {
1854 SLOG(LOG_ERROR, TAG_VCD, "[Server ERROR] Fail to unset command type : pid(%d), cmd_type(%d)", pid, cmd_type);
1855 return VCD_ERROR_OPERATION_FAILED;
1861 int vcd_server_set_foreground(int pid, bool value)
1863 /* check if pid is valid */
1864 if (false == vcd_client_is_available(pid) && false == vcd_client_widget_is_available(pid)) {
1865 SLOG(LOG_ERROR, TAG_VCD, "[Server ERROR] pid is NOT valid ");
1866 return VCD_ERROR_INVALID_PARAMETER;
1869 if (0 != vcd_config_set_foreground(pid, value)) {
1870 SLOG(LOG_ERROR, TAG_VCD, "[Server ERROR] Fail to set foreground : pid(%d), value(%d)", pid, value);
1871 return VCD_ERROR_OPERATION_FAILED;
1877 static int __vcd_server_launch_manager_app()
1880 bool running = false;
1883 ret = vcd_client_manager_get_appid(&appid);
1884 if (0 != ret || NULL == appid) {
1885 SLOG(LOG_ERROR, TAG_VCD, "[ERROR] Fail to get manager appid");
1886 return VCD_ERROR_OPERATION_FAILED;
1888 ret = app_manager_is_running(appid, &running);
1890 SLOG(LOG_ERROR, TAG_VCD, "[ERROR] Fail to check running with appid(%s)", appid);
1893 return VCD_ERROR_OPERATION_FAILED;
1895 if (false == running) {
1896 int tmp_ret = __vcd_is_package_installed(appid);
1897 if (false == tmp_ret) {
1898 SLOG(LOG_ERROR, TAG_VCD, "[ERROR] manager app is not installed, appid(%s)", appid);
1900 ret = __vcd_activate_app_by_appcontrol(appid);
1902 SLOG(LOG_ERROR, TAG_VCD, "[ERROR] Fail to activate app");
1907 SLOG(LOG_ERROR, TAG_VCD, "Launch vc manager app: appid(%s)", appid);
1910 ret = __vcd_resume_app(appid);
1912 SLOG(LOG_ERROR, TAG_VCD, "[ERROR] Fail to resume app");
1917 SLOG(LOG_ERROR, TAG_VCD, "Resume vc manager app: appid(%s)", appid);
1923 return VCD_ERROR_NONE;
1926 int vcd_server_dialog(int pid, const char* disp_text, const char* utt_text, int continuous)
1928 /* check if pid is valid */
1929 if (false == vcd_client_is_available(pid) && false == vcd_client_widget_is_available(pid)) {
1930 SLOG(LOG_ERROR, TAG_VCD, "[Server ERROR] pid is NOT valid ");
1931 return VCD_ERROR_INVALID_PARAMETER;
1934 int ret = __vcd_server_launch_manager_app();
1936 SLOG(LOG_ERROR, TAG_VCD, "[Server ERROR] Fail to send dialog : mgr_pid(%d), pid(%d), disp_text(%s), utt_text(%s), continue(%d)", vcd_client_manager_get_pid(), pid, disp_text, utt_text, continuous);
1940 ret = vcdc_send_dialog(vcd_client_manager_get_pid(), pid, disp_text, utt_text, continuous);
1942 SLOG(LOG_ERROR, TAG_VCD, "[Server ERROR] Fail to send dialog : mgr_pid(%d), pid(%d), disp_text(%s), utt_text(%s), continue(%d)", vcd_client_manager_get_pid(), pid, disp_text, utt_text, continuous);
1949 int vcd_server_is_system_command_valid(int pid, int* is_sys_cmd_valid)
1951 /* check if pid is valid */
1952 if (false == vcd_client_is_available(pid) && false == vcd_client_widget_is_available(pid)) {
1953 SLOG(LOG_ERROR, TAG_VCD, "[Server ERROR] pid is NOT valid ");
1954 return VCD_ERROR_INVALID_PARAMETER;
1957 /* check if system command is valid */
1958 if (true == vcd_client_manager_is_system_command_valid(vcd_client_manager_get_pid()))
1959 *is_sys_cmd_valid = true;
1961 *is_sys_cmd_valid = false;
1967 int vcd_server_set_exclusive_command(int pid, bool value)
1969 /* check if pid is valid */
1970 if (false == vcd_client_is_available(pid)) {
1971 SLOG(LOG_ERROR, TAG_VCD, "[Server ERROR] pid is NOT valid ");
1972 return VCD_ERROR_INVALID_PARAMETER;
1975 if (true == value) {
1976 if (0 != vcd_client_set_exclusive_command(pid)) {
1977 SLOG(LOG_ERROR, TAG_VCD, "[Server ERROR] Fail to set exclusive command : pid(%d)", pid);
1978 return VCD_ERROR_OPERATION_FAILED;
1981 if (0 != vcd_client_unset_exclusive_command(pid)) {
1982 SLOG(LOG_ERROR, TAG_VCD, "[Server ERROR] Fail to unset exclusive command : pid(%d)", pid);
1983 return VCD_ERROR_OPERATION_FAILED;
1990 int vcd_server_request_start(int pid, bool stop_by_silence)
1992 /* check if pid is valid */
1993 if (false == vcd_client_is_available(pid)) {
1994 SLOG(LOG_ERROR, TAG_VCD, "[Server ERROR] pid(%d) is NOT forground client", pid);
1995 return VCD_ERROR_INVALID_PARAMETER;
1999 /* Check current state */
2000 vcd_state_e state = vcd_config_get_service_state();
2002 /* Service state should be ready */
2003 if (VCD_STATE_READY != state) {
2004 SLOG(LOG_DEBUG, TAG_VCD, "[Server] Current state is not Ready : pid(%d)", pid);
2005 return VCD_ERROR_INVALID_STATE;
2008 if (-1 != vcd_client_manager_get_pid()) {
2009 /* Check current pid is valid */
2010 if (false == vcd_client_manager_check_demandable_client(pid)) {
2011 SLOG(LOG_DEBUG, TAG_VCD, "[Server] Current client is NOT available : pid(%d)", pid);
2012 return VCD_ERROR_INVALID_PARAMETER;
2016 ret = vcd_server_mgr_start(stop_by_silence, false);
2018 SLOG(LOG_DEBUG, TAG_VCD, "[Server] Fail to start recognition");
2019 return VCD_ERROR_INVALID_PARAMETER;
2025 int vcd_server_request_stop(int pid)
2028 /* Check current state */
2029 vcd_state_e state = vcd_config_get_service_state();
2031 /* Service state should be ready */
2032 if (VCD_STATE_RECORDING != state) {
2033 SLOG(LOG_DEBUG, TAG_VCD, "[Server] Current state is not Recording : pid(%d)", pid);
2034 return VCD_ERROR_INVALID_STATE;
2037 if (-1 != vcd_client_manager_get_pid()) {
2038 /* Check current pid is valid */
2039 if (false == vcd_client_manager_check_demandable_client(pid)) {
2040 SLOG(LOG_DEBUG, TAG_VCD, "[Server] Current client is NOT available : pid(%d)", pid);
2041 return VCD_ERROR_INVALID_PARAMETER;
2045 ret = vcd_server_mgr_stop();
2047 SLOG(LOG_DEBUG, TAG_VCD, "[Server] Fail to start recognition");
2048 return VCD_ERROR_OPERATION_FAILED;
2051 return VCD_ERROR_NONE;
2054 int vcd_server_request_cancel(int pid)
2057 /* Check current state */
2058 vcd_state_e state = vcd_config_get_service_state();
2060 /* Service state should be recording or processing */
2061 if (VCD_STATE_RECORDING != state && VCD_STATE_PROCESSING != state) {
2062 SLOG(LOG_DEBUG, TAG_VCD, "[Server] Current state is not Recording or Processing : pid(%d)", pid);
2063 return VCD_ERROR_INVALID_STATE;
2066 if (-1 != vcd_client_manager_get_pid()) {
2067 /* Check current pid is valid */
2068 if (false == vcd_client_manager_check_demandable_client(pid)) {
2069 SLOG(LOG_DEBUG, TAG_VCD, "[Server] Current client is NOT available : pid(%d)", pid);
2070 return VCD_ERROR_INVALID_PARAMETER;
2074 ret = vcd_server_mgr_cancel();
2076 SLOG(LOG_DEBUG, TAG_VCD, "[Server] Fail to start recognition");
2077 return VCD_ERROR_OPERATION_FAILED;
2080 return VCD_ERROR_NONE;
2085 * VC Server Functions for Widget lib
2087 int vcd_server_widget_initialize(int pid)
2089 if (false == g_is_engine) {
2090 if (0 != vcd_engine_agent_initialize_current_engine()) {
2091 SLOG(LOG_ERROR, TAG_VCD, "[Server ERROR] No Engine");
2092 g_is_engine = false;
2093 return VCD_ERROR_ENGINE_NOT_FOUND;
2099 if (false == vcd_engine_is_available_engine()) {
2100 if (0 != vcd_engine_agent_initialize_current_engine()) {
2101 SLOG(LOG_ERROR, TAG_VCD, "[Server ERROR] No Engine");
2102 return VCD_ERROR_ENGINE_NOT_FOUND;
2106 /* check if pid is valid */
2107 if (true == vcd_client_widget_is_available(pid)) {
2108 SLOG(LOG_ERROR, TAG_VCD, "[Server ERROR] The pid is already exist");
2109 return VCD_ERROR_INVALID_PARAMETER;
2112 /* Add client information to client manager */
2113 if (0 != vcd_client_widget_add(pid)) {
2114 SLOG(LOG_ERROR, TAG_VCD, "[Server ERROR] Fail to add client info");
2115 return VCD_ERROR_OPERATION_FAILED;
2118 SLOG(LOG_DEBUG, TAG_VCD, "[Server Success] Initialize widget : pid(%d)", pid);
2120 return VCD_ERROR_NONE;
2123 int vcd_server_widget_finalize(int pid)
2125 /* check if pid is valid */
2126 if (false == vcd_client_widget_is_available(pid)) {
2127 SLOG(LOG_ERROR, TAG_VCD, "[Server ERROR] pid is NOT valid ");
2128 return VCD_ERROR_INVALID_PARAMETER;
2131 /* Remove client information */
2132 if (0 != vcd_client_widget_delete(pid)) {
2133 SLOG(LOG_WARN, TAG_VCD, "[Server WARNING] Fail to delete client");
2136 if (0 == vcd_client_get_ref_count()) {
2137 SLOG(LOG_DEBUG, TAG_VCD, "[Server] connected client list is empty");
2138 ecore_timer_add(0, __finalize_quit_ecore_loop, NULL);
2141 return VCD_ERROR_NONE;
2144 int vcd_server_widget_start_recording(int pid, bool widget_command)
2146 /* check if pid is valid */
2147 if (false == vcd_client_widget_is_available(pid)) {
2148 SLOG(LOG_ERROR, TAG_VCD, "[Server ERROR] pid is NOT valid ");
2149 return VCD_ERROR_INVALID_PARAMETER;
2152 if (true == widget_command) {
2153 vcd_client_widget_set_command(pid);
2154 SLOG(LOG_DEBUG, TAG_VCD, "[Server] widget command is available");
2156 vcd_client_widget_unset_command(pid);
2157 SLOG(LOG_WARN, TAG_VCD, "[Server] widget command is NOT available");
2160 int ret = __start_internal_recognition();
2162 SLOG(LOG_ERROR, TAG_VCD, "[Server ERROR] Fail to start recongition : %d", ret);
2163 ecore_timer_add(0, __vcd_request_show_tooltip, (void*)false);
2169 int vcd_server_widget_start(int pid, bool stop_by_silence)
2171 /* check if pid is valid */
2172 int fore_pid = vcd_client_widget_get_foreground_pid();
2173 if (pid != fore_pid) {
2174 SLOG(LOG_ERROR, TAG_VCD, "[Server] pid is NOT foreground");
2175 return VCD_ERROR_INVALID_PARAMETER;
2178 /* Check current state */
2179 vcd_state_e state = vcd_config_get_service_state();
2181 /* Service state should be ready */
2182 if (VCD_STATE_READY != state) {
2183 SLOG(LOG_DEBUG, TAG_VCD, "[Server] Current state is not Ready : pid(%d)", pid);
2184 return VCD_ERROR_INVALID_STATE;
2187 vcd_client_set_slience_detection(stop_by_silence);
2189 /* Notify show tooltip */
2190 ecore_timer_add(0, __vcd_request_show_tooltip, (void*)true);
2195 int vcd_server_widget_stop(int pid)
2197 /* check if pid is valid */
2198 int fore_pid = vcd_client_widget_get_foreground_pid();
2199 if (pid != fore_pid) {
2200 SLOG(LOG_ERROR, TAG_VCD, "[Server] pid is NOT foreground");
2201 return VCD_ERROR_INVALID_PARAMETER;
2205 /* Check current state */
2206 vcd_state_e state = vcd_config_get_service_state();
2208 /* Service state should be recording */
2209 if (VCD_STATE_RECORDING != state) {
2210 SLOG(LOG_DEBUG, TAG_VCD, "[Server] Current service state is not Recording : pid(%d)", pid);
2211 return VCD_ERROR_INVALID_STATE;
2214 ret = vcd_server_mgr_stop();
2216 SLOG(LOG_DEBUG, TAG_VCD, "[Server] Fail to start recognition");
2217 return VCD_ERROR_OPERATION_FAILED;
2220 return VCD_ERROR_NONE;
2223 int vcd_server_widget_cancel(int pid)
2225 /* check if pid is valid */
2226 int fore_pid = vcd_client_widget_get_foreground_pid();
2227 if (pid != fore_pid) {
2228 SLOG(LOG_ERROR, TAG_VCD, "[Server] pid is NOT foreground");
2229 return VCD_ERROR_INVALID_PARAMETER;
2233 /* Check current state */
2234 vcd_state_e state = vcd_config_get_service_state();
2236 /* Service state should be recording or processing */
2237 if (VCD_STATE_RECORDING != state && VCD_STATE_PROCESSING != state) {
2238 SLOG(LOG_DEBUG, TAG_VCD, "[Server] Current state is not Recording or Processing : pid(%d)", pid);
2239 return VCD_ERROR_INVALID_STATE;
2242 ret = vcd_server_mgr_cancel();
2244 SLOG(LOG_DEBUG, TAG_VCD, "[Server] Fail to cancel recognition : %d", ret);
2248 return VCD_ERROR_NONE;