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