Rearrange code to stop all client
[platform/core/uifw/tts.git] / server / ttsd_data.h
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
15 #ifndef __TTSD_DATA_H_
16 #define __TTSD_DATA_H_
17
18 #include "ttse.h"
19 #include "tts_ipc_method.h"
20 #include "ttsd_main.h"
21
22 #ifdef __cplusplus
23 extern "C" {
24 #endif
25
26
27 typedef enum {
28         APP_STATE_NONE = -1,
29         APP_STATE_CREATED = 0,
30         APP_STATE_READY,
31         APP_STATE_PLAYING,
32         APP_STATE_PAUSED
33 } app_tts_state_e;
34
35 typedef enum {
36         TTS_APP_PLAY_TYPE_SYNTH = 0,
37         TTS_APP_PLAY_TYPE_PCM = 1
38 } tts_app_play_type_e;
39
40 typedef enum {
41         TTSD_SYNTHESIS_CONTROL_DOING    = 0,
42         TTSD_SYNTHESIS_CONTROL_DONE     = 1,
43         TTSD_SYNTHESIS_CONTROL_EXPIRED  = 2
44 } ttsd_synthesis_control_e;
45
46 typedef struct {
47         int utt_id;
48         char* text;
49         char* lang;
50         int vctype;
51         int speed;
52 } speak_data_s;
53
54 typedef struct {
55         int utt_id;
56         char* data;
57         unsigned int data_size;
58         unsigned int played_data_size;
59
60         ttse_result_event_e event;
61         ttse_audio_type_e audio_type;
62         int rate;
63         int channels;
64 } sound_data_s;
65
66 int ttsd_set_synth_control(ttsd_synthesis_control_e control);
67
68 ttsd_synthesis_control_e ttsd_get_synth_control();
69
70 typedef void (* ttsd_used_voice_cb)(const char* lang, int type);
71
72 int ttsd_data_new_client(int pid, unsigned int uid);
73
74 int ttsd_data_delete_client(unsigned int uid);
75
76 int ttsd_data_is_client(unsigned int uid);
77
78 int ttsd_data_get_client_count();
79
80 int ttsd_data_get_pid(unsigned int uid);
81
82 int ttsd_data_set_ipc_method(unsigned int uid, tts_ipc_method_e method);
83
84 tts_ipc_method_e ttsd_data_get_ipc_method(unsigned int uid);
85
86 int ttsd_data_set_mode(unsigned int uid, ttsd_mode_e mode);
87
88 ttsd_mode_e ttsd_data_get_mode(unsigned int uid);
89
90 int ttsd_data_set_credential(unsigned int uid, const char* credential);
91
92 char* ttsd_data_get_credential(unsigned int uid);
93
94 /* speak data */
95 speak_data_s* ttsd_data_create_speak_data(const char* text, const char* language, int voice_type, int speed, int utt_id);
96
97 void ttsd_data_destroy_speak_data(speak_data_s* speak_data);
98
99 int ttsd_data_add_speak_data(unsigned int uid, speak_data_s* data);
100
101 int ttsd_data_get_speak_data(unsigned int uid, speak_data_s** data);
102
103 int ttsd_data_get_speak_data_size(unsigned int uid);
104
105 /* sound data */
106 sound_data_s* ttsd_data_create_sound_data(int utt_id, const void* data, unsigned int data_size, ttse_result_event_e event,
107                 ttse_audio_type_e audio_type, int rate, int channels);
108
109 void ttsd_data_destroy_sound_data(sound_data_s* sound_data);
110
111 int ttsd_data_add_sound_data(unsigned int uid, sound_data_s* data);
112
113 sound_data_s* ttsd_data_get_first_sound_data(unsigned int uid);
114
115 int ttsd_data_pop_sound_data(unsigned int uid);
116
117 int ttsd_data_get_sound_data_size(unsigned int uid);
118
119 int ttsd_data_set_last_sound_result_event(unsigned int uid, ttse_result_event_e event);
120
121 ttse_result_event_e ttsd_data_get_last_sound_result_event(unsigned int uid);
122
123 int ttsd_data_clear_data(unsigned int uid);
124
125
126 int ttsd_data_set_used_voice(unsigned int uid, const char* lang, int type);
127
128 int ttsd_data_reset_used_voice(unsigned int uid, ttsd_used_voice_cb callback);
129
130 app_tts_state_e ttsd_data_get_client_state(unsigned int uid);
131
132 int ttsd_data_set_client_state(unsigned int uid, app_tts_state_e state);
133
134 tts_app_play_type_e ttsd_data_get_play_type(unsigned int uid);
135
136 int ttsd_data_set_play_type(unsigned int uid, tts_app_play_type_e type);
137
138 int ttsd_data_set_paused_data_existing(unsigned int uid, bool is_paused_data_existing);
139
140 bool ttsd_data_is_paused_data_existing(unsigned int uid);
141
142
143 unsigned int ttsd_data_get_current_playing();
144
145 typedef bool(*ttsd_data_get_client_cb)(int pid, unsigned int uid, app_tts_state_e state, void* user_data);
146
147 int ttsd_data_foreach_clients(ttsd_data_get_client_cb callback, void* user_data);
148
149 bool ttsd_data_is_uttid_valid(unsigned int uid, int uttid);
150
151 int ttsd_data_get_same_pid_client_count(int pid);
152
153 /* For error handing */
154 int ttsd_data_save_error_log(unsigned int uid, FILE* fp);
155
156
157 #ifdef __cplusplus
158 }
159 #endif
160
161 #endif /* __TTSD_DATA_H_ */