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