Merge "Add error type for converting string" into tizen
[platform/core/uifw/tts.git] / server / ttsd_server.c
1 /*
2 *  Copyright (c) 2011-2016 Samsung Electronics Co., Ltd All Rights Reserved
3 *  Licensed under the Apache License, Version 2.0 (the "License");
4 *  you may not use this file except in compliance with the License.
5 *  You may obtain a copy of the License at
6 *  http://www.apache.org/licenses/LICENSE-2.0
7 *  Unless required by applicable law or agreed to in writing, software
8 *  distributed under the License is distributed on an "AS IS" BASIS,
9 *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
10 *  See the License for the specific language governing permissions and
11 *  limitations under the License.
12 */
13
14 #include <app_manager.h>
15 #include <aul.h>
16 #include <Ecore.h>
17 #include <sys/time.h>
18
19 #include "ttsd_config.h"
20 #include "ttsd_data.h"
21 #include "ttsd_ipc.h"
22 #include "ttsd_engine_agent.h"
23 #include "ttsd_main.h"
24 #include "ttsd_player.h"
25 #include "ttsd_server.h"
26
27
28 #define CLIENT_CLEAN_UP_TIME 500
29
30 /* for checking time */
31 #define TIME_DIFF(start, end) \
32         ((uint64_t)((end).tv_sec - (start).tv_sec) * 1000000 + (((end).tv_nsec - (start).tv_nsec) / 1000)) / 1000
33
34 static struct timespec g_request_playing, g_start_playing;
35 static double g_avg_latency;
36 static double g_min_latency;
37 static double g_max_latency;
38 static int g_file_num;
39
40 typedef struct {
41         unsigned int uid;
42         int uttid;
43 } utterance_t;
44
45 /* If current engine exist */
46 //static bool   g_is_engine;
47
48 static Ecore_Timer* g_check_client_timer = NULL;
49 static Ecore_Timer* g_wait_timer = NULL;
50 static Ecore_Timer* g_quit_loop_timer = NULL;
51
52 static utterance_t g_utt;
53
54 static GList *g_proc_list = NULL;
55
56 static bool g_is_terminated = false;
57
58
59 /* Function definitions */
60 static int __stop_and_send_ready_state(unsigned int uid)
61 {
62         int ret = ttsd_server_stop(uid);
63         if (TTSD_ERROR_NONE != ret) {
64                 SLOG(LOG_WARN, tts_tag(), "[Server ERROR] Fail to ttsd_server_stop() : uid(%u). ret(%d)", uid, ret);
65                 return ret;
66         }
67
68         int pid = ttsd_data_get_pid(uid);
69         if (pid <= 0) {
70                 SLOG(LOG_ERROR, tts_tag(), "[Server ERROR] Fail to get pid. uid(%u)", uid);
71                 return TTSD_ERROR_OPERATION_FAILED;
72         } else {
73                 ttsdc_ipc_send_set_state_message(pid, uid, APP_STATE_READY);
74         }
75
76         return ret;
77 }
78
79 static void __synthesis(unsigned int uid);
80
81 static Eina_Bool __wait_synthesis(void *data)
82 {
83         /* get current play */
84         unsigned int uid = ttsd_data_get_current_playing();
85
86         if (uid > 0) {
87                 ttsd_synthesis_control_e synth_control = ttsd_data_get_synth_control();
88                 if (TTSD_SYNTHESIS_CONTROL_DOING == synth_control) {
89                         return EINA_TRUE;
90                 } else {
91                         SLOG(LOG_INFO, tts_tag(), "[Server] synth_control(%d)", synth_control);
92                         g_wait_timer = NULL;
93                         if (TTSD_SYNTHESIS_CONTROL_DONE == synth_control) {
94                                 /* Start next synthesis */
95                                 __synthesis(uid);
96                         }
97                 }
98         } else {
99                 g_wait_timer = NULL;
100         }
101
102         return EINA_FALSE;
103 }
104
105 static void __synthesis(unsigned int uid)
106 {
107         SLOG(LOG_DEBUG, tts_tag(), "@@@ SYNTHESIS  START");
108
109         speak_data_s* speak_data = NULL;
110         int ret = ttsd_data_get_speak_data(uid, &speak_data);
111         if (TTSD_ERROR_NONE != ret || NULL == speak_data) {
112                 SLOG(LOG_DEBUG, tts_tag(), "@@@ Fail to get speak data. ret(%d)", ret);
113                 SLOG(LOG_DEBUG, tts_tag(), "@@@ SYNTHESIS  END");
114                 return;
115         }
116
117         int pid = ttsd_data_get_pid(uid);
118         if (pid <= 0) {
119                 SLOG(LOG_ERROR, tts_tag(), "[Server ERROR] Fail to get pid. uid(%u)", uid);
120                 ttsd_data_destroy_speak_data(speak_data);
121                 speak_data = NULL;
122                 return;
123         }
124
125         char appid[1024] = {0, };
126         if (0 != aul_app_get_appid_bypid(pid, appid, sizeof(appid) - 1)) {
127                 SLOG(LOG_ERROR, tts_tag(), "[Server ERROR] Fail to get app id");
128         }
129
130         if (NULL == speak_data->lang || NULL == speak_data->text) {
131                 SLOG(LOG_ERROR, tts_tag(), "[Server ERROR] Current data is NOT valid");
132                 __stop_and_send_ready_state(uid);
133                 ttsd_data_destroy_speak_data(speak_data);
134                 speak_data = NULL;
135                 return;
136         }
137
138         g_utt.uid = uid;
139         g_utt.uttid = speak_data->utt_id;
140
141         char* credential = ttsd_data_get_credential(uid);
142
143         SLOG(LOG_INFO, tts_tag(), "-----------------------------------------------------------");
144         SLOG(LOG_INFO, tts_tag(), "ID : uid (%u), uttid(%d) ", g_utt.uid, g_utt.uttid);
145         SLOG(LOG_INFO, tts_tag(), "Voice : langauge(%s), type(%d), speed(%d)", speak_data->lang, speak_data->vctype, speak_data->speed);
146         SLOG(LOG_INFO, tts_tag(), "Text : %s", speak_data->text);
147         SLOG(LOG_INFO, tts_tag(), "Credential : %s", credential);
148         SLOG(LOG_INFO, tts_tag(), "-----------------------------------------------------------");
149
150         ttsd_data_set_synth_control(TTSD_SYNTHESIS_CONTROL_DOING);
151         ret = ttsd_engine_start_synthesis(speak_data->lang, speak_data->vctype, speak_data->text, speak_data->speed, appid, credential, NULL);
152         if (TTSD_ERROR_NONE != ret) {
153                 SLOG(LOG_ERROR, tts_tag(), "[Server ERROR] * FAIL to start SYNTHESIS !!!! * ");
154
155                 ttsd_data_set_synth_control(TTSD_SYNTHESIS_CONTROL_DONE);
156                 __stop_and_send_ready_state(uid);
157         } else {
158                 g_wait_timer = ecore_timer_add(0.05, __wait_synthesis, (void*)credential);
159         }
160
161         free(credential);
162         credential = NULL;
163         ttsd_data_destroy_speak_data(speak_data);
164         speak_data = NULL;
165         SLOG(LOG_DEBUG, tts_tag(), "@@@ SYNTHESIS  END");
166
167         return;
168 }
169
170 /*
171 * TTS Server Callback Functions
172 */
173 int ttsd_send_error(ttse_error_e error, const char* msg)
174 {
175         unsigned int uid = g_utt.uid;
176         int uttid = g_utt.uttid;
177         int tmp_pid = ttsd_data_get_pid(uid);
178
179         SLOG(LOG_ERROR, tts_tag(), "[SERVER ERROR] Error msg from engine, pid(%d), uid(%u), uttid(%d), error(%d), msg(%s)", tmp_pid, uid, uttid, error, (NULL == msg ? "NULL" : msg));
180
181         ttsd_data_set_synth_control(TTSD_SYNTHESIS_CONTROL_EXPIRED);
182
183         if (0 != ttsd_data_clear_data(uid))
184                 SLOG(LOG_WARN, tts_tag(), "[Server] Fail to ttsd_data_clear_data()");
185
186         if (tmp_pid > 0) {
187                 if (0 != ttsdc_ipc_send_error_message(tmp_pid, uid, uttid, error, (char*)msg))
188                         SLOG(LOG_WARN, tts_tag(), "[Server] Fail to ttsdc_ipc_send_error_message()");
189         }
190
191         if (0 != ttsd_data_set_client_state(uid, APP_STATE_READY))
192                 SLOG(LOG_WARN, tts_tag(), "[Server] Fail to ttsd_data_set_client_state()");
193
194         if (tmp_pid > 0) {
195                 if (0 != ttsdc_ipc_send_set_state_message(tmp_pid, uid, APP_STATE_READY))
196                         SLOG(LOG_WARN, tts_tag(), "[Server] Fail to ttsdc_ipc_send_set_state_message()");
197         }
198         return 0;
199 }
200
201 int ttsd_send_result(ttse_result_event_e event, const void* data, unsigned int data_size, ttse_audio_type_e audio_type, int rate, void* user_data)
202 {
203         SLOG(LOG_DEBUG, tts_tag(), "@@@ SEND SYNTHESIS RESULT START");
204
205         unsigned int uid = g_utt.uid;
206         int uttid = g_utt.uttid;
207
208         if (false == ttsd_data_is_uttid_valid(uid, uttid)) {
209                 ttsd_data_set_synth_control(TTSD_SYNTHESIS_CONTROL_DONE);
210                 SLOG(LOG_ERROR, tts_tag(), "[SERVER ERROR] uttid is NOT valid !!!! - uid(%u), uttid(%d)", uid, uttid);
211                 SLOG(LOG_DEBUG, tts_tag(), "@@@");
212                 return TTSD_ERROR_INVALID_PARAMETER;
213         }
214
215         if (TTSE_RESULT_EVENT_START > event || TTSE_RESULT_EVENT_FINISH < event) {
216                 SLOG(LOG_DEBUG, tts_tag(), "[SERVER] Event : TTSE_RESULT_EVENT_ERROR");
217                 ttsd_data_set_synth_control(TTSD_SYNTHESIS_CONTROL_EXPIRED);
218                 return TTSD_ERROR_INVALID_PARAMETER;
219         }
220
221         if (rate <= 0 || audio_type < 0 || audio_type > TTSE_AUDIO_TYPE_MAX) {
222                 ttsd_data_set_synth_control(TTSD_SYNTHESIS_CONTROL_DONE);
223                 SLOG(LOG_ERROR, tts_tag(), "[SERVER ERROR] audio data is invalid");
224                 SLOG(LOG_DEBUG, tts_tag(), "@@@");
225                 return TTSD_ERROR_INVALID_PARAMETER;
226         }
227
228         /* check the current state */
229         app_tts_state_e state = ttsd_data_get_client_state(uid);
230         if (APP_STATE_NONE == state) {
231                 ttsd_data_set_synth_control(TTSD_SYNTHESIS_CONTROL_DONE);
232                 SLOG(LOG_ERROR, tts_tag(), "[Server ERROR] uid is not valid");
233                 return TTSD_ERROR_INVALID_PARAMETER;
234         }
235
236         SLOG(LOG_INFO, tts_tag(), "[Server] uid(%u), current state(%d)", uid, state);
237         if (APP_STATE_CREATED == state || APP_STATE_READY == state) {
238                 ttsd_data_set_synth_control(TTSD_SYNTHESIS_CONTROL_DONE);
239                 SLOG(LOG_WARN, tts_tag(), "[SERVER WARNING] Current state is %d. The synthesized result is ignored.", state);
240                 return TTSD_ERROR_NONE;
241         }
242
243         /* Synthesis is success */
244         if (TTSE_RESULT_EVENT_START == event) {
245                 SLOG(LOG_INFO, tts_tag(), "[SERVER] Event : TTSE_RESULT_EVENT_START");
246                 SECURE_SLOG(LOG_DEBUG, tts_tag(), "[SERVER] Result Info : uid(%u), utt(%d), data(%p), data size(%d) audiotype(%d) rate(%d)",
247                         uid, uttid, data, data_size, audio_type, rate);
248
249                 clock_gettime(CLOCK_MONOTONIC_RAW, &g_start_playing);
250                 long long int latency = (uint64_t)TIME_DIFF(g_request_playing, g_start_playing);
251                 SLOG(LOG_INFO, tts_tag(), "[SERVER] Latency (Request playing ~ Get 1st synthesized results): %lld ms", latency);
252                 double d_latency = (double)latency;
253                 g_avg_latency += d_latency;
254                 g_min_latency = (d_latency < g_min_latency) ? d_latency : g_min_latency;
255                 g_max_latency = (d_latency > g_max_latency) ? d_latency : g_max_latency;
256                 g_file_num++;
257                 SLOG(LOG_INFO, tts_tag(), "[Server] File num(%d), Avg Latency(%lf), Min(%lf), Max(%lf)", g_file_num, (g_avg_latency / (double)g_file_num), g_min_latency, g_max_latency);
258         } else if (TTSE_RESULT_EVENT_FINISH == event) {
259                 SLOG(LOG_INFO, tts_tag(), "[SERVER] Event : TTSE_RESULT_EVENT_FINISH");
260                 SECURE_SLOG(LOG_DEBUG, tts_tag(), "[SERVER] Result Info : uid(%u), utt(%d), data(%p), data size(%d) audiotype(%d) rate(%d)",
261                         uid, uttid, data, data_size, audio_type, rate);
262         } else {
263                 /*if (TTSE_RESULT_EVENT_CONTINUE == event)  SLOG(LOG_DEBUG, tts_tag(), "[SERVER] Event : TTSE_RESULT_EVENT_CONTINUE");*/
264         }
265
266         /* add wav data */
267         sound_data_s* sound_data = ttsd_data_create_sound_data(uttid, data, data_size, event, audio_type, rate, 0);
268         if (NULL == sound_data) {
269                 SLOG(LOG_ERROR, tts_tag(), "[SERVER ERROR] Out of memory");
270                 return TTSD_ERROR_OUT_OF_MEMORY;
271         }
272
273         if (0 != ttsd_data_add_sound_data(uid, sound_data)) {
274                 SECURE_SLOG(LOG_ERROR, tts_tag(), "[SERVER ERROR] Fail to add sound data : uid(%u)", uid);
275                 ttsd_data_destroy_sound_data(sound_data);
276
277                 return TTSD_ERROR_OPERATION_FAILED;
278         }
279
280         if (event == TTSE_RESULT_EVENT_FINISH) {
281                 ttsd_data_set_synth_control(TTSD_SYNTHESIS_CONTROL_DONE);
282         }
283
284         return TTSD_ERROR_NONE;
285 }
286
287 static bool __get_client_cb(int pid, unsigned int uid, app_tts_state_e state, void* user_data)
288 {
289         if (0 > ttsd_data_is_client(uid)) {
290                 SLOG(LOG_ERROR, tts_tag(), "[Server] Client(%d) is not valid.", uid);
291                 ttsd_data_delete_client(uid);
292                 return true;
293         }
294
295         /* clear client data */
296         ttsd_data_clear_data(uid);
297
298         if (APP_STATE_READY != state) {
299                 ttsd_data_set_client_state(uid, APP_STATE_READY);
300                 ttsdc_ipc_send_set_state_message(pid, uid, APP_STATE_READY);
301         }
302
303         return true;
304 }
305
306 static void __stop_all_client()
307 {
308         SLOG(LOG_INFO, tts_tag(), "[Server] Send to stop all requests");
309
310         ttsd_engine_cancel_synthesis();
311         ttsd_data_set_synth_control(TTSD_SYNTHESIS_CONTROL_EXPIRED);
312
313         /* stop all player */
314         ttsd_player_all_stop();
315
316         /* send interrupt message to  all clients */
317         ttsd_data_foreach_clients(__get_client_cb, NULL);
318 }
319
320 static void __config_changed_cb(tts_config_type_e type, const char* str_param, int int_param, double double_param)
321 {
322         switch (type) {
323         case TTS_CONFIG_TYPE_ENGINE:
324         {
325                 /* TODO - Determine the policy when engine process get engine changed cb */
326                 if (NULL == str_param) {
327                         SLOG(LOG_ERROR, tts_tag(), "[Server] engine id from config is NULL");
328                         return;
329                 }
330
331                 int ret = 0;
332                 if (true == ttsd_engine_agent_is_same_engine(str_param)) {
333                         SLOG(LOG_DEBUG, tts_tag(), "[Server Setting] new engine is the same as current engine");
334                         ret = ttsd_engine_agent_unload_current_engine();
335                         if (0 != ret) {
336                                 SLOG(LOG_ERROR, tts_tag(), "[Server ERROR] Fail to unload current engine : result(%d)", ret);
337                         }
338
339                         ret = ttsd_engine_agent_load_current_engine();
340                         if (0 != ret) {
341                                 SLOG(LOG_ERROR, tts_tag(), "[Server ERROR] Fail to load current engine : result (%d)", ret);
342                         }
343                         return;
344                 }
345
346                 __stop_all_client();
347                 break;
348         }
349
350         case TTS_CONFIG_TYPE_VOICE:
351         {
352                 if (NULL == str_param) {
353                         SLOG(LOG_ERROR, tts_tag(), "[Server] language from config is NULL");
354                         return;
355                 }
356
357                 char* out_lang = NULL;
358                 int out_type;
359                 int ret = -1;
360
361                 if (true == ttsd_engine_select_valid_voice(str_param, int_param, &out_lang, &out_type)) {
362                         SLOG(LOG_ERROR, tts_tag(), "[Server] valid language : lang(%s), type(%d)", out_lang, out_type);
363                         ret = ttsd_engine_agent_set_default_voice(out_lang, out_type);
364                         if (0 != ret)
365                                 SLOG(LOG_ERROR, tts_tag(), "[Server ERROR] Fail to set valid language : lang(%s), type(%d)", out_lang, out_type);
366                 } else {
367                         /* Current language is not available */
368                         SLOG(LOG_WARN, tts_tag(), "[Server WARNING] Fail to set voice : lang(%s), type(%d)", str_param, int_param);
369                 }
370                 if (NULL != out_lang) {
371                         free(out_lang);
372                         out_lang = NULL;
373                 }
374                 break;
375         }
376
377         case TTS_CONFIG_TYPE_SPEED:
378         {
379                 if (TTS_SPEED_MIN <= int_param && int_param <= TTS_SPEED_MAX) {
380                         /* set default speed */
381                         int ret = 0;
382                         ret = ttsd_engine_agent_set_default_speed(int_param);
383                         if (0 != ret) {
384                                 SLOG(LOG_ERROR, tts_tag(), "[Server ERROR] Fail to set default speed : result(%d)", ret);
385                         }
386                 }
387                 break;
388         }
389
390         case TTS_CONFIG_TYPE_PITCH:
391         {
392                 if (TTS_PITCH_MIN <= int_param && int_param <= TTS_PITCH_MAX) {
393                         /* set default speed */
394                         int ret = 0;
395                         ret = ttsd_engine_agent_set_default_pitch(int_param);
396                         if (0 != ret) {
397                                 SLOG(LOG_ERROR, tts_tag(), "[Server ERROR] Fail to set default pitch : result(%d)", ret);
398                         }
399                 }
400                 break;
401         }
402
403         case TTS_CONFIG_TYPE_BACKGROUND_VOLUME_RATIO:
404         {
405                 if (0.0 <= double_param && double_param <= 1.0) {
406                         /* set default bg volume ratio */
407                         int ret = 0;
408                         ret = ttsd_player_set_background_volume_ratio(double_param);
409                         if (0 != ret) {
410                                 SLOG(LOG_ERROR, tts_tag(), "[Server ERROR] Fail to set default bg volume ratio : result(%d)", ret);
411                         }
412                 }
413                 break;
414         }
415         }
416
417         return;
418 }
419
420 bool __terminate_client(int pid, unsigned int uid, app_tts_state_e state, void* user_data)
421 {
422         SLOG(LOG_INFO, tts_tag(), "@@@ Start to terminate client [%d]", uid);
423         ttsd_server_finalize(uid);
424         return true;
425 }
426
427 static int __terminate_server()
428 {
429         if (g_is_terminated) {
430                 SLOG(LOG_INFO, tts_tag(), "[INFO] ttsd_terminate() is already invoked.");
431                 return TTSD_ERROR_NONE;
432         }
433
434         int ret = TTSD_ERROR_NONE;
435         ret = ttsd_ipc_close_connection();
436         if (TTSD_ERROR_NONE != ret) {
437                 SLOG(LOG_ERROR, tts_tag(), "[ERROR] Fail to ttsd_ipc_close_connection(). ret(%d)", ret);
438                 return TTSD_ERROR_OPERATION_FAILED;
439         }
440
441         ret = ttsd_finalize();
442         if (TTSD_ERROR_NONE != ret) {
443                 SLOG(LOG_ERROR, tts_tag(), "[ERROR] Fail to ttsd_finalize(). ret(%d)", ret);
444                 return TTSD_ERROR_OPERATION_FAILED;
445         }
446
447         g_is_terminated = true;
448         return TTSD_ERROR_NONE;
449 }
450
451 static Eina_Bool __quit_ecore_loop(void *data)
452 {
453         __terminate_server();
454         ecore_main_loop_quit();
455
456         return EINA_FALSE;
457 }
458
459 void __screen_reader_changed_cb(bool value)
460 {
461         SLOG(LOG_DEBUG, tts_tag(), "[Server] Screen reader is %s", value ? "ON" : "OFF");
462         return;
463 }
464
465 static void __read_proc()
466 {
467         DIR *dp = NULL;
468         struct dirent *dirp = NULL;
469         int tmp;
470
471         GList *iter = NULL;
472         if (0 < g_list_length(g_proc_list)) {
473                 iter = g_list_first(g_proc_list);
474                 while (NULL != iter) {
475                         g_proc_list = g_list_remove_link(g_proc_list, iter);
476                         g_list_free(iter);
477                         iter = g_list_first(g_proc_list);
478                 }
479         }
480
481         dp = opendir("/proc");
482         if (NULL == dp) {
483                 SLOG(LOG_ERROR, tts_tag(), "[ERROR] Fail to open proc");
484         } else {
485                 do {
486                         dirp = readdir(dp);
487
488                         if (NULL != dirp) {
489                                 tmp = atoi(dirp->d_name);
490                                 if (0 >= tmp)   continue;
491                                 g_proc_list = g_list_append(g_proc_list, GINT_TO_POINTER(tmp));
492                         }
493                 } while (NULL != dirp);
494                 closedir(dp);
495         }
496         return;
497 }
498
499 bool __get_client_for_clean_up(int pid, unsigned int uid, app_tts_state_e state, void* user_data)
500 {
501         bool exist = false;
502         int i = 0;
503
504         GList *iter = NULL;
505         for (i = 0; i < g_list_length(g_proc_list); i++) {
506                 iter = g_list_nth(g_proc_list, i);
507                 if (NULL != iter) {
508                         if (pid == GPOINTER_TO_INT(iter->data)) {
509                                 SLOG(LOG_DEBUG, tts_tag(), "uid (%u) is running", uid);
510                                 exist = true;
511                                 break;
512                         }
513                 }
514         }
515
516         if (false == exist) {
517                 SLOG(LOG_ERROR, tts_tag(), "uid (%u) should be removed", uid);
518                 ttsd_server_finalize(uid);
519         }
520
521         return true;
522 }
523
524 static Eina_Bool __cleanup_client(void *data)
525 {
526         SLOG(LOG_DEBUG, tts_tag(), "@@@ CLEAN UP CLIENT START");
527         __read_proc();
528
529         if (0 < ttsd_data_get_client_count()) {
530                 ttsd_data_foreach_clients(__get_client_for_clean_up, NULL);
531         } else {
532                 if (NULL == g_quit_loop_timer) {
533                         SLOG(LOG_INFO, tts_tag(), "[Server] Add a timer __quit_ecore_loop");
534                         g_quit_loop_timer = ecore_timer_add(0, __quit_ecore_loop, NULL);
535                 }
536                 SLOG(LOG_ERROR, tts_tag(), "[Server] Deleted timer");
537                 g_check_client_timer = NULL;
538                 return EINA_FALSE;
539         }
540
541         SLOG(LOG_DEBUG, tts_tag(), "@@@");
542
543         return EINA_TRUE;
544 }
545
546 /*
547 * Server APIs
548 */
549 int ttsd_initialize(ttse_request_callback_s *callback)
550 {
551         SLOG(LOG_INFO, tts_tag(), "[Server] Initialize");
552         g_is_terminated = false;
553
554         if (ttsd_config_initialize(__config_changed_cb)) {
555                 SLOG(LOG_ERROR, tts_tag(), "[Server WARNING] Fail to initialize config.");
556         }
557
558         /* player init */
559         if (ttsd_player_init()) {
560                 SLOG(LOG_ERROR, tts_tag(), "[Server ERROR] Fail to initialize player init.");
561                 return TTSD_ERROR_OPERATION_FAILED;
562         }
563
564         double ratio;
565         if (0 == ttsd_config_get_bg_volume_ratio(&ratio))
566         {
567                 SLOG(LOG_ERROR, tts_tag(), "[Server] get bg volume ratio is %lf", ratio);
568                 int ret = ttsd_player_set_background_volume_ratio(ratio);
569                 if (0 != ret)
570                         SLOG(LOG_ERROR, tts_tag(), "[Server ERROR] Fail to set bg volume ratio : result(%d)", ret);
571         } else {
572                 SLOG(LOG_ERROR, tts_tag(), "[Server WARNING] Fail to get bg volume ratio");
573         }
574
575         /* Engine Agent initialize */
576         if (0 != ttsd_engine_agent_init()) {
577                 SLOG(LOG_ERROR, tts_tag(), "[Server ERROR] Fail to engine agent initialize.");
578                 return TTSD_ERROR_OPERATION_FAILED;
579         }
580
581         if (0 != ttsd_engine_agent_load_current_engine(callback)) {
582                 SLOG(LOG_ERROR, tts_tag(), "[Server ERROR] Fail to load current engine");
583                 return TTSD_ERROR_OPERATION_FAILED;
584         }
585
586         ttsd_data_set_synth_control(TTSD_SYNTHESIS_CONTROL_EXPIRED);
587         ttsd_config_set_screen_reader_callback(__screen_reader_changed_cb);
588
589         g_check_client_timer = ecore_timer_add(CLIENT_CLEAN_UP_TIME, __cleanup_client, NULL);
590         if (NULL == g_check_client_timer) {
591                 SLOG(LOG_WARN, tts_tag(), "[WARNING] Fail to create timer");
592         }
593
594         return TTSD_ERROR_NONE;
595 }
596
597 int ttsd_finalize()
598 {
599         SLOG(LOG_INFO, tts_tag(), "[Server] Finalize");
600
601         GList *iter = NULL;
602         if (0 < g_list_length(g_proc_list)) {
603                 iter = g_list_first(g_proc_list);
604                 while (NULL != iter) {
605                         g_proc_list = g_list_remove_link(g_proc_list, iter);
606                         g_list_free(iter);
607                         iter = g_list_first(g_proc_list);
608                 }
609         }
610
611         if (g_wait_timer) {
612                 ecore_timer_del(g_wait_timer);
613                 g_wait_timer = NULL;
614                 SLOG(LOG_INFO, tts_tag(), "[INFO] Delete ecore waiting timer handle");
615         }
616
617         if (g_check_client_timer) {
618                 ecore_timer_del(g_check_client_timer);
619                 g_check_client_timer = NULL;
620                 SLOG(LOG_INFO, tts_tag(), "[INFO] Delete ecore checking client timer handle");
621         }
622
623         if (g_quit_loop_timer) {
624                 ecore_timer_del(g_quit_loop_timer);
625                 g_quit_loop_timer = NULL;
626                 SLOG(LOG_INFO, tts_tag(), "[INFO] Delete ecore quit loop timer handle");
627         }
628
629         ttsd_config_finalize();
630
631         int ret = TTSD_ERROR_NONE;
632         ret = ttsd_player_release();
633         if (TTSD_ERROR_NONE != ret) {
634                 SLOG(LOG_ERROR, tts_tag(), "[ERROR] Fail to ttsd_player_release(). ret(%d)", ret);
635                 return TTSD_ERROR_OPERATION_FAILED;
636         }
637
638         ret = ttsd_engine_agent_release();
639         if (TTSD_ERROR_NONE != ret) {
640                 SLOG(LOG_ERROR, tts_tag(), "[ERROR] Fail to ttsd_engine_agent_release(). ret(%d)", ret);
641                 return TTSD_ERROR_OPERATION_FAILED;
642         }
643
644         return TTSD_ERROR_NONE;
645 }
646
647 int ttsd_terminate()
648 {
649         SLOG(LOG_INFO, tts_tag(), "[Server] Terminate");
650         int ret = ttsd_data_foreach_clients(__terminate_client, NULL);
651         if (TTSD_ERROR_NONE != ret) {
652                 SLOG(LOG_ERROR, tts_tag(), "[ERROR] Fail to terminate all clients. ret(%d)", ret);
653                 return TTSD_ERROR_OPERATION_FAILED;
654         }
655
656         if (g_quit_loop_timer) {
657                 ecore_timer_del(g_quit_loop_timer);
658                 g_quit_loop_timer = NULL;
659                 SLOG(LOG_INFO, tts_tag(), "[INFO] Delete ecore quit loop timer handle");
660         }
661
662         return __terminate_server();
663 }
664
665 /*
666 * TTS Server Functions for Client
667 */
668
669 int ttsd_server_is_already_initialized(int pid, unsigned int uid, bool* is_initialized)
670 {
671         if (-1 != ttsd_data_is_client(uid))
672                 *is_initialized = true;
673         else
674                 *is_initialized = false;
675
676         SLOG(LOG_INFO, tts_tag(), "[Server INFO] Pid(%d), uid(%u) is %s", pid, uid, *is_initialized ? "already initialized" : "not initialized yet");
677         return TTSD_ERROR_NONE;
678 }
679
680 int ttsd_server_initialize(int pid, unsigned int uid, tts_ipc_method_e method, bool* credential_needed)
681 {
682         SLOG(LOG_INFO, tts_tag(), "[Server] Server initialize");
683
684         if (-1 != ttsd_data_is_client(uid)) {
685                 SLOG(LOG_WARN, tts_tag(), "[Server WARNING] Uid has already been registered");
686                 return TTSD_ERROR_NONE;
687         }
688
689         if (0 != ttsd_engine_agent_is_credential_needed(uid, credential_needed)) {
690                 SLOG(LOG_ERROR, tts_tag(), "[Server ERROR] Fail to get credential necessity");
691                 return TTSD_ERROR_OPERATION_FAILED;
692         }
693
694         if (true == *credential_needed) {
695                 char* appid = NULL;
696                 if (0 != app_manager_get_app_id(pid, &appid)) {
697                         SLOG(LOG_ERROR, tts_tag(), "[Server ERROR] Fail to get app id, pid(%d)", pid);
698                 }
699                 bool is_agreed = false;
700                 if (0 != ttsd_engine_check_app_agreed(appid, &is_agreed)) {
701                         SLOG(LOG_ERROR, tts_tag(), "Server ERROR] Fail to check app agreed");
702                         if (!appid)
703                                 free(appid);
704                         return TTSD_ERROR_OPERATION_FAILED;
705                 }
706                 if (!appid)
707                         free(appid);
708
709                 if (false == is_agreed) {
710                         SLOG(LOG_ERROR, tts_tag(), "[Server ERROR] App is not agreed");
711                         return TTSD_ERROR_PERMISSION_DENIED;
712                 }
713         }
714
715         if (0 != ttsd_data_new_client(pid, uid)) {
716                 SLOG(LOG_ERROR, tts_tag(), "[Server ERROR] Fail to add client info");
717                 return TTSD_ERROR_OPERATION_FAILED;
718         }
719
720         if (0 != ttsd_data_set_ipc_method(uid, method)) {
721                 SLOG(LOG_ERROR, tts_tag(), "[Server ERROR] Fail to set ipc method");
722                 return TTSD_ERROR_OPERATION_FAILED;
723         }
724
725         return TTSD_ERROR_NONE;
726 }
727
728 void __used_voice_cb(const char* lang, int type)
729 {
730         SLOG(LOG_DEBUG, tts_tag(), "[Server] Request to unload voice (%s,%d)", lang, type);
731         if (0 != ttsd_engine_unload_voice(lang, type)) {
732                 SLOG(LOG_ERROR, tts_tag(), "[Server ERROR] Fail to unload voice");
733         }
734 }
735
736 int ttsd_server_finalize(unsigned int uid)
737 {
738         SLOG(LOG_INFO, tts_tag(), "[Server] Server finalize");
739         SLOG(LOG_INFO, tts_tag(), "[Server] File num(%d), Avg Latency(%lf), Min(%lf), Max(%lf)", g_file_num, (g_avg_latency / (double)g_file_num), g_min_latency, g_max_latency);
740
741         if (0 > ttsd_data_is_client(uid)) {
742                 SLOG(LOG_ERROR, tts_tag(), "[Server ERROR] ttsd_server_finalize : uid is not valid");
743         }
744
745         int ret = ttsd_server_stop(uid);
746         if (TTSD_ERROR_NONE != ret) {
747                 SLOG(LOG_ERROR, tts_tag(), "[ERROR] TTS server top(%u) fail (%d/%s) <<<<<", uid, ret, get_error_message(ret));
748         }
749
750         /* Need to unload voice when used voice is unregistered */
751         if (0 != ttsd_data_reset_used_voice(uid, __used_voice_cb)) {
752                 SLOG(LOG_ERROR, tts_tag(), "[Server ERROR] Fail to set used voice");
753                 return TTSD_ERROR_OPERATION_FAILED;
754         }
755
756         ttsd_data_delete_client(uid);
757
758         /* unload engine, if ref count of client is 0 */
759         if (0 == ttsd_data_get_client_count()) {
760                 if (NULL == g_quit_loop_timer) {
761                         SLOG(LOG_DEBUG, tts_tag(), "[Server] Quit main loop");
762                         g_quit_loop_timer = ecore_timer_add(0, __quit_ecore_loop, NULL);
763                 } else {
764                         SLOG(LOG_WARN, tts_tag(), "[Server] Already called __quit_ecore_loop");
765                 }
766         }
767
768         return TTSD_ERROR_NONE;
769 }
770
771 int ttsd_server_set_mode(unsigned int uid, ttsd_mode_e mode)
772 {
773         app_tts_state_e state = ttsd_data_get_client_state(uid);
774         if (APP_STATE_NONE == state) {
775                 SLOG(LOG_ERROR, tts_tag(), "[Server ERROR] uid(%u) is NOT valid", uid);
776                 return TTSD_ERROR_INVALID_PARAMETER;
777         }
778
779         if (APP_STATE_READY != state) {
780                 SLOG(LOG_ERROR, tts_tag(), "[Server ERROR] Current state(%d) is NOT 'READY'", uid);
781                 return TTSD_ERROR_INVALID_STATE;
782         }
783
784         int ret = ttsd_data_set_mode(uid, mode);
785         if (0 != ret) {
786                 SLOG(LOG_ERROR, tts_tag(), "[Server ERROR] Fail to set mode : ret(%d)", ret);
787         } else {
788                 SLOG(LOG_DEBUG, tts_tag(), "[Server] Set mode. uid(%u), mode(%d)", uid, mode);
789         }
790
791         return ret;
792 }
793
794 static bool __is_connected_to_network()
795 {
796         /* Check network */
797         int network_status = 0;
798         int ret = vconf_get_int(VCONFKEY_NETWORK_STATUS, &network_status);
799         if (0 != ret) {
800                 SLOG(LOG_WARN, tts_tag(), "[Network] Fail to get network status, ret(%d)", ret);
801                 return false;
802         }
803
804         if (network_status == VCONFKEY_NETWORK_OFF) {
805                 SLOG(LOG_WARN, tts_tag(), "[Network] Current network connection is OFF.");
806                 return false;
807         }
808
809         SLOG(LOG_DEBUG, tts_tag(), "[Network] Network status is %d", network_status);
810
811         return true;
812 }
813
814 int ttsd_server_add_text(unsigned int uid, const char* text, const char* lang, int voice_type, int speed, int utt_id, const char* credential)
815 {
816         app_tts_state_e state = ttsd_data_get_client_state(uid);
817         if (APP_STATE_NONE == state) {
818                 SLOG(LOG_ERROR, tts_tag(), "[Server ERROR] ttsd_server_add_text : uid is not valid");
819                 return TTSD_ERROR_INVALID_PARAMETER;
820         }
821
822         /* check valid voice */
823         char* temp_lang = NULL;
824         int temp_type;
825         if (true != ttsd_engine_select_valid_voice((const char*)lang, voice_type, &temp_lang, &temp_type)) {
826                 SLOG(LOG_ERROR, tts_tag(), "[Server ERROR] Fail to select valid voice");
827                 if (NULL != temp_lang) {
828                         free(temp_lang);
829                         temp_lang = NULL;
830                 }
831                 return TTSD_ERROR_INVALID_VOICE;
832         }
833
834         if (NULL == temp_lang) {
835                 SLOG(LOG_ERROR, tts_tag(), "[Server ERROR] Fail to select valid voice : result lang is NULL");
836                 return TTSD_ERROR_INVALID_VOICE;
837         }
838
839         speak_data_s* speak_data = ttsd_data_create_speak_data(text, lang, voice_type, speed, utt_id);
840         if (NULL == speak_data) {
841                 SLOG(LOG_ERROR, tts_tag(), "[Server ERROR] Fail to allocate memory");
842                 if (NULL != temp_lang) {
843                         free(temp_lang);
844                         temp_lang = NULL;
845                 }
846
847                 return TTSD_ERROR_OPERATION_FAILED;
848         }
849
850         SLOG(LOG_INFO, tts_tag(), "[Server] Add queue, lang(%s), vctype(%d), speed(%d), uttid(%d), credential(%s)", lang, voice_type, speed, utt_id, credential);
851
852         /* if state is APP_STATE_READY , APP_STATE_PAUSED , only need to add speak data to queue*/
853         int ret = -1;
854         ret = ttsd_data_add_speak_data(uid, speak_data);
855         if (0 != ret) {
856                 SLOG(LOG_ERROR, tts_tag(), "[Server ERROR] Fail to add speak data");
857                 if (NULL != temp_lang) {
858                         free(temp_lang);
859                         temp_lang = NULL;
860                 }
861
862                 ttsd_data_destroy_speak_data(speak_data);
863                 speak_data = NULL;
864
865                 return ret;
866         }
867
868         if (0 != ttsd_data_set_used_voice(uid, temp_lang, temp_type)) {
869                 /* Request load voice */
870                 SLOG(LOG_DEBUG, tts_tag(), "[Server] Request to load voice");
871                 if (0 != ttsd_engine_load_voice(temp_lang, temp_type)) {
872                         SLOG(LOG_ERROR, tts_tag(), "[Server ERROR] Fail to load voice");
873                 }
874         }
875
876         if (NULL != temp_lang) {
877                 free(temp_lang);
878                 temp_lang = NULL;
879         }
880
881         if (APP_STATE_PLAYING == state) {
882                 /* check if engine use network */
883                 if (ttsd_engine_agent_need_network()) {
884                         if (false == __is_connected_to_network()) {
885                                 SLOG(LOG_ERROR, tts_tag(), "[Server ERROR] Disconnect network. Current engine needs network.");
886                                 return TTSD_ERROR_OPERATION_FAILED;
887                         }
888                 }
889
890                 ttsd_data_set_credential(uid, credential);
891
892                 /* Check whether tts-engine is running or not */
893                 ttsd_synthesis_control_e synth_control = ttsd_data_get_synth_control();
894                 SLOG(LOG_INFO, tts_tag(), "[Server INFO] synth_control(%d)", synth_control);
895                 if (TTSD_SYNTHESIS_CONTROL_DOING == synth_control) {
896                         SLOG(LOG_WARN, tts_tag(), "[Server WARNING] Engine has already been running.");
897                 } else {
898                         __synthesis(uid);
899                 }
900         }
901
902         return TTSD_ERROR_NONE;
903 }
904
905 static int __interrupt_player_by_policy(unsigned int request_app_uid)
906 {
907         unsigned int playing_app_uid = ttsd_data_get_current_playing();
908         if (0 > ttsd_data_is_client(playing_app_uid)) {
909                 SLOG(LOG_INFO, tts_tag(), "[Server] There is no app which is in 'Play' state");
910                 return TTSD_ERROR_NONE;
911         }
912
913         if (request_app_uid == playing_app_uid) {
914                 SLOG(LOG_WARN, tts_tag(), "[Server] This is played uid. Skip policy behavior");
915                 return TTSD_ERROR_NONE;
916         }
917
918         ttsd_mode_e request_app_mode = ttsd_data_get_mode(request_app_uid);
919         ttsd_mode_e playing_app_mode = ttsd_data_get_mode(playing_app_uid);
920         switch (playing_app_mode) {
921         case TTSD_MODE_DEFAULT:
922         case TTSD_MODE_NOTIFICATION:
923         case TTSD_MODE_SCREEN_READER:
924                 SLOG(LOG_DEBUG, tts_tag(), "[Server] Played client(%u) will be interrupted into 'Stop' state", playing_app_uid);
925                 __stop_and_send_ready_state(playing_app_uid);
926                 break;
927
928         case TTSD_MODE_INTERRUPT:
929                 if (TTSD_MODE_INTERRUPT != request_app_mode) {
930                         SLOG(LOG_WARN, tts_tag(), "[Server] Current play mode is Interrupt. Default, Screen reader, and Noti are prohibitted.");
931                         return TTSD_ERROR_AUDIO_POLICY_BLOCKED;
932                 }
933
934                 SLOG(LOG_DEBUG, tts_tag(), "[Server] Played client(%u) will be interrupted into 'Stop' state", playing_app_uid);
935                 __stop_and_send_ready_state(playing_app_uid);
936                 break;
937         }
938
939         return TTSD_ERROR_NONE;
940 }
941
942 int ttsd_server_play(unsigned int uid, const char* credential)
943 {
944         app_tts_state_e state = ttsd_data_get_client_state(uid);
945         if (APP_STATE_NONE == state) {
946                 SLOG(LOG_ERROR, tts_tag(), "[Server ERROR] uid(%u) is NOT valid", uid);
947                 return TTSD_ERROR_INVALID_PARAMETER;
948         }
949
950         if (APP_STATE_PLAYING == state) {
951                 SLOG(LOG_WARN, tts_tag(), "[Server WARNING] Current state of (%u) is 'PLAYING'", uid);
952                 return TTSD_ERROR_NONE;
953         }
954
955         /* check if engine use network */
956         if (ttsd_engine_agent_need_network()) {
957                 if (false == __is_connected_to_network()) {
958                         SLOG(LOG_ERROR, tts_tag(), "[Server ERROR] Disconnect network. Current engine needs network service!!!.");
959                         return TTSD_ERROR_OUT_OF_NETWORK;
960                 }
961         }
962
963         int ret = __interrupt_player_by_policy(uid);
964         if (TTSD_ERROR_NONE != ret) {
965                 SLOG(LOG_WARN, tts_tag(), "[Server] Current play mode is Interrupt. Cannot play default, screen reader, and noti modes.");
966                 return ret;
967         }
968
969         /* Change current play */
970         if (0 != ttsd_player_wait_to_play(uid)) {
971                 SLOG(LOG_WARN, tts_tag(), "[Server WARNING] Fail to set to wait for playing : uid(%u)", uid);
972         }
973
974         if (0 != ttsd_data_set_client_state(uid, APP_STATE_PLAYING)) {
975                 SLOG(LOG_ERROR, tts_tag(), "[Server ERROR] Fail to set state : uid(%u)", uid);
976                 return TTSD_ERROR_OPERATION_FAILED;
977         }
978
979         SLOG(LOG_DEBUG, tts_tag(), "[Server] Play player. uid(%u)", uid);
980         ret = ttsd_player_play(uid);
981         if (TTSD_ERROR_NONE != ret) {
982                 SLOG(LOG_ERROR, tts_tag(), "[Server ERROR] Fail to play sound : uid(%u)", uid);
983                 ttsd_data_set_client_state(uid, state);
984                 return TTSD_ERROR_OPERATION_FAILED;
985         }
986
987         ttsd_data_set_credential(uid, credential);
988
989         /* Check whether tts-engine is running or not */
990         clock_gettime(CLOCK_MONOTONIC_RAW, &g_request_playing);
991         ttsd_synthesis_control_e synth_control = ttsd_data_get_synth_control();
992         SLOG(LOG_INFO, tts_tag(), "[Server INFO] synth_control(%d)", synth_control);
993         if (TTSD_SYNTHESIS_CONTROL_DOING == synth_control) {
994                 SLOG(LOG_WARN, tts_tag(), "[Server WARNING] Engine has already been running.");
995         } else {
996                 __synthesis(uid);
997         }
998         ttsd_data_set_play_type(uid, TTS_APP_PLAY_TYPE_SYNTH);
999
1000         return TTSD_ERROR_NONE;
1001 }
1002
1003 static void __stop_engine_synthesis(unsigned int uid)
1004 {
1005         ttsd_synthesis_control_e synth_control = ttsd_data_get_synth_control();
1006         SLOG(LOG_INFO, tts_tag(), "[Server INFO] synth_control(%d)", synth_control);
1007
1008         if (TTSD_SYNTHESIS_CONTROL_DOING == synth_control && uid == ttsd_data_get_current_playing()) {
1009                 SLOG(LOG_DEBUG, tts_tag(), "[Server] TTS-engine is running");
1010
1011                 int ret = ttsd_engine_cancel_synthesis();
1012                 if (TTSD_ERROR_NONE != ret)
1013                         SLOG(LOG_ERROR, tts_tag(), "[Server ERROR] Fail to cancel synthesis : ret(%d)", ret);
1014         }
1015
1016         ttsd_data_set_synth_control(TTSD_SYNTHESIS_CONTROL_EXPIRED);
1017 }
1018
1019 int ttsd_server_stop(unsigned int uid)
1020 {
1021         app_tts_state_e state = ttsd_data_get_client_state(uid);
1022         if (APP_STATE_NONE == state) {
1023                 SLOG(LOG_ERROR, tts_tag(), "[Server ERROR] uid is not valid");
1024                 return TTSD_ERROR_INVALID_PARAMETER;
1025         }
1026
1027         SLOG(LOG_INFO, tts_tag(), "[Server] server stop, uid(%d), state(%d)", uid, state);
1028
1029         if (APP_STATE_PLAYING == state || APP_STATE_PAUSED == state) {
1030                 if (TTS_APP_PLAY_TYPE_SYNTH == ttsd_data_get_play_type(uid)) {
1031                         __stop_engine_synthesis(uid);
1032                 }
1033
1034                 /* stop player */
1035                 ttsd_data_set_client_state(uid, APP_STATE_READY);
1036                 if (TTSD_ERROR_NONE != ttsd_player_stop(uid)) {
1037                         SLOG(LOG_WARN, tts_tag(), "[Server] Fail to ttsd_player_stop()");
1038                 }
1039         }
1040
1041         /* Reset all data */
1042         ttsd_data_clear_data(uid);
1043
1044         return TTSD_ERROR_NONE;
1045 }
1046
1047 int ttsd_server_pause(unsigned int uid)
1048 {
1049         app_tts_state_e state = ttsd_data_get_client_state(uid);
1050         if (APP_STATE_NONE == state) {
1051                 SLOG(LOG_ERROR, tts_tag(), "[Server ERROR] ttsd_server_pause : uid is not valid");
1052                 return TTSD_ERROR_INVALID_PARAMETER;
1053         }
1054
1055         if (APP_STATE_PLAYING != state) {
1056                 SLOG(LOG_WARN, tts_tag(), "[Server WARNING] Current state is not 'play'");
1057                 return TTSD_ERROR_INVALID_STATE;
1058         }
1059
1060         int ret = ttsd_data_set_client_state(uid, APP_STATE_PAUSED);
1061         if (TTSD_ERROR_NONE != ret) {
1062                 SLOG(LOG_ERROR, tts_tag(), "[Server ERROR] Fail set pause state() : ret(%d)", ret);
1063                 return TTSD_ERROR_OPERATION_FAILED;
1064         }
1065
1066         ret = ttsd_player_pause(uid);
1067         if (TTSD_ERROR_NONE != ret) {
1068                 SLOG(LOG_ERROR, tts_tag(), "[Server ERROR] Fail player_pause() : ret(%d)", ret);
1069                 return TTSD_ERROR_OPERATION_FAILED;
1070         }
1071
1072         return TTSD_ERROR_NONE;
1073 }
1074
1075 int ttsd_server_get_support_voices(unsigned int uid, GList** voice_list)
1076 {
1077         if (0 > ttsd_data_is_client(uid)) {
1078                 SLOG(LOG_ERROR, tts_tag(), "[Server ERROR] uid is not valid");
1079                 return TTSD_ERROR_INVALID_PARAMETER;
1080         }
1081
1082         /* get voice list*/
1083         int ret = ttsd_engine_get_voice_list(voice_list);
1084         if (0 != ret) {
1085                 SLOG(LOG_ERROR, tts_tag(), "[Server ERROR] Fail ttsd_server_get_support_voices() : ret(%d)", ret);
1086                 return ret;
1087         }
1088
1089         SLOG(LOG_DEBUG, tts_tag(), "[Server SUCCESS] Get supported voices");
1090
1091         return TTSD_ERROR_NONE;
1092 }
1093
1094 int ttsd_server_get_current_voice(unsigned int uid, char** language, int* voice_type)
1095 {
1096         if (0 > ttsd_data_is_client(uid)) {
1097                 SLOG(LOG_ERROR, tts_tag(), "[Server ERROR] ttsd_server_get_current_voice : uid is not valid");
1098                 return TTSD_ERROR_INVALID_PARAMETER;
1099         }
1100
1101         /* get current voice */
1102         int ret = ttsd_engine_get_default_voice(language, voice_type);
1103         if (0 != ret) {
1104                 SLOG(LOG_ERROR, tts_tag(), "[Server ERROR] Fail ttsd_server_get_support_voices() : ret(%d)", ret);
1105                 return ret;
1106         }
1107
1108         SLOG(LOG_DEBUG, tts_tag(), "[Server] Get default language (%s), voice type(%d) ", *language, *voice_type);
1109
1110         return TTSD_ERROR_NONE;
1111 }
1112
1113 int ttsd_server_set_private_data(unsigned int uid, const char* key, const char* data)
1114 {
1115         app_tts_state_e state = ttsd_data_get_client_state(uid);
1116         if (APP_STATE_NONE == state) {
1117                 SLOG(LOG_ERROR, tts_tag(), "[Server ERROR] uid(%u) is NOT valid", uid);
1118                 return TTSD_ERROR_INVALID_PARAMETER;
1119         }
1120
1121         if (APP_STATE_READY != state) {
1122                 SLOG(LOG_ERROR, tts_tag(), "[Server ERROR] Current state of (%u) is NOT 'READY'", uid);
1123                 return TTSD_ERROR_INVALID_STATE;
1124         }
1125
1126         int ret = ttsd_engine_set_private_data(key, data);
1127         if (0 != ret) {
1128                 SLOG(LOG_ERROR, tts_tag(), "[Server ERROR] Fail to set private data : ret(%d)", ret);
1129         } else {
1130                 SLOG(LOG_DEBUG, tts_tag(), "[Server] Set private data, key(%s), data(%s)", key, data);
1131         }
1132
1133         return ret;
1134 }
1135
1136 int ttsd_server_get_private_data(unsigned int uid, const char* key, char** data)
1137 {
1138         app_tts_state_e state = ttsd_data_get_client_state(uid);
1139         if (APP_STATE_NONE == state) {
1140                 SLOG(LOG_ERROR, tts_tag(), "[Server ERROR] uid(%u) is NOT valid", uid);
1141                 return TTSD_ERROR_INVALID_PARAMETER;
1142         }
1143
1144         if (APP_STATE_READY != state) {
1145                 SLOG(LOG_WARN, tts_tag(), "[Server ERROR] Current state of (%u) is NOT 'READY'", uid);
1146                 return TTSD_ERROR_INVALID_STATE;
1147         }
1148
1149         char* temp_data = NULL;
1150         int ret = ttsd_engine_get_private_data(key, &temp_data);
1151         if (0 != ret) {
1152                 SLOG(LOG_ERROR, tts_tag(), "[Server ERROR] Fail to get private data : ret(%d)", ret);
1153         } else {
1154                 SLOG(LOG_DEBUG, tts_tag(), "[Server] Get private data, key(%s), data(%s)", key, *data);
1155         }
1156
1157         if (NULL == temp_data) {
1158                 temp_data = strdup("NULL");
1159         }
1160         *data = temp_data;
1161
1162         return ret;
1163 }
1164
1165 int ttsd_set_private_data_set_cb(ttse_private_data_set_cb callback)
1166 {
1167         SLOG(LOG_DEBUG, tts_tag(), "[Server] Set private data set cb");
1168
1169         int ret = 0;
1170         ret = ttsd_engine_agent_set_private_data_set_cb(callback);
1171         if (0 != ret) {
1172                 SLOG(LOG_ERROR, tts_tag(), "[Server ERROR] Fail to set private data set cb : ret(%d)", ret);
1173         }
1174
1175         return ret;
1176 }
1177
1178 int ttsd_set_private_data_requested_cb(ttse_private_data_requested_cb callback)
1179 {
1180         SLOG(LOG_DEBUG, tts_tag(), "[Server] Set private data requested cb");
1181
1182         int ret = 0;
1183         ret = ttsd_engine_agent_set_private_data_requested_cb(callback);
1184         if (0 != ret) {
1185                 SLOG(LOG_ERROR, tts_tag(), "[Server ERROR] Fail to set private data requested cb : ret(%d)", ret);
1186         }
1187
1188         return ret;
1189 }
1190
1191 int ttsd_server_play_pcm(unsigned int uid)
1192 {
1193         app_tts_state_e state = ttsd_data_get_client_state(uid);
1194         if (APP_STATE_NONE == state) {
1195                 SLOG(LOG_ERROR, tts_tag(), "[Server ERROR] uid(%u) is NOT valid", uid);
1196                 return TTSD_ERROR_INVALID_PARAMETER;
1197         }
1198
1199         if (APP_STATE_PLAYING == state) {
1200                 SLOG(LOG_WARN, tts_tag(), "[Server WARNING] Current state of (%u) is 'PLAYING'", uid);
1201                 return TTSD_ERROR_NONE;
1202         }
1203
1204         int ret = __interrupt_player_by_policy(uid);
1205         if (TTSD_ERROR_NONE != ret) {
1206                 SLOG(LOG_WARN, tts_tag(), "[Server] Current play mode is Interrupt. Cannot play default, screen reader, and noti modes.");
1207                 return ret;
1208         }
1209
1210         /* Change current play */
1211         if (0 != ttsd_data_set_client_state(uid, APP_STATE_PLAYING)) {
1212                 SLOG(LOG_ERROR, tts_tag(), "[Server ERROR] Fail to set state : uid(%u)", uid);
1213                 return TTSD_ERROR_OPERATION_FAILED;
1214         }
1215
1216         SLOG(LOG_DEBUG, tts_tag(), "[Server] Play player. uid(%u)", uid);
1217         ret = ttsd_player_play(uid);
1218         if (TTSD_ERROR_NONE != ret) {
1219                 SLOG(LOG_ERROR, tts_tag(), "[Server ERROR] Fail to play sound : uid(%u)", uid);
1220                 ttsd_data_set_client_state(uid, state);
1221                 return TTSD_ERROR_OPERATION_FAILED;
1222         }
1223
1224         ttsd_data_set_play_type(uid, TTS_APP_PLAY_TYPE_PCM);
1225
1226         return TTSD_ERROR_NONE;
1227 }
1228
1229 int ttsd_server_add_pcm(unsigned int uid, int event, void* data, int data_size, int audio_type, int rate)
1230 {
1231         SLOG(LOG_DEBUG, tts_tag(), "@@@ ADD PCM");
1232
1233         int uttid = -1;
1234
1235         /* Synthesis is success */
1236         if (TTSE_RESULT_EVENT_START == event || TTSE_RESULT_EVENT_CONTINUE == event || TTSE_RESULT_EVENT_FINISH == event) {
1237                 if (TTSE_RESULT_EVENT_START == event) {
1238                         SLOG(LOG_INFO, tts_tag(), "[SERVER] Event : TTSE_RESULT_EVENT_START");
1239                         SECURE_SLOG(LOG_DEBUG, tts_tag(), "[SERVER] PCM Info : uid(%u), utt(%d), data(%p), data size(%d) audiotype(%d) rate(%d)",
1240                                 uid, uttid, data, data_size, audio_type, rate);
1241                 } else if (TTSE_RESULT_EVENT_FINISH == event) {
1242                         SLOG(LOG_INFO, tts_tag(), "[SERVER] Event : TTSE_RESULT_EVENT_FINISH");
1243                         SECURE_SLOG(LOG_DEBUG, tts_tag(), "[SERVER] PCM Info : uid(%u), utt(%d), data(%p), data size(%d) audiotype(%d) rate(%d)",
1244                                 uid, uttid, data, data_size, audio_type, rate);
1245                 } else {
1246                         /*if (TTSE_RESULT_EVENT_CONTINUE == event)  SLOG(LOG_DEBUG, tts_tag(), "[SERVER] Event : TTSE_RESULT_EVENT_CONTINUE");*/
1247                 }
1248
1249                 if (rate <= 0 || audio_type < 0 || audio_type > TTSE_AUDIO_TYPE_MAX) {
1250                         SLOG(LOG_ERROR, tts_tag(), "[SERVER ERROR] audio data is invalid");
1251                         SLOG(LOG_DEBUG, tts_tag(), "@@@");
1252                         return TTSD_ERROR_INVALID_PARAMETER;
1253                 }
1254
1255                 sound_data_s* sound_data = ttsd_data_create_sound_data(uttid, data, data_size, event, audio_type, rate, 0);
1256                 if (NULL == sound_data) {
1257                         SLOG(LOG_ERROR, tts_tag(), "[SERVER ERROR] Out of memory");
1258                         return TTSD_ERROR_OUT_OF_MEMORY;
1259                 }
1260
1261                 if (0 != ttsd_data_add_sound_data(uid, sound_data)) {
1262                         SECURE_SLOG(LOG_ERROR, tts_tag(), "[SERVER ERROR] Fail to add sound data : uid(%u)", uid);
1263                         ttsd_data_destroy_sound_data(sound_data);
1264                 }
1265         } else {
1266                 SLOG(LOG_DEBUG, tts_tag(), "[SERVER] Event : TTSE_RESULT_EVENT_ERROR");
1267         }
1268
1269         SLOG(LOG_DEBUG, tts_tag(), "@@@");
1270
1271         return TTSD_ERROR_NONE;
1272 }