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