55afe0d38529448f5f974116fb413d60bd60dcea
[platform/core/uifw/tts.git] / client / tts_client.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
15 #include "tts_client.h"
16
17 /* Max number of handle */
18 static const int g_max_handle = 999;
19 /* allocated handle */
20 static int g_allocated_handle = 0;
21 /* client list */
22 static GList *g_client_list = NULL;
23
24 /* private functions */
25 static int __client_generate_uid(int pid)
26 {
27         g_allocated_handle++;
28
29         if (g_allocated_handle > g_max_handle) {
30                 g_allocated_handle = 1;
31         }
32
33         /* generate uid, handle number should be smaller than 1000 */
34         return pid * 1000 + g_allocated_handle;
35 }
36
37 int tts_client_new(tts_h* tts)
38 {
39         tts_client_s* client = NULL;
40         client = (tts_client_s*)calloc(1, sizeof(tts_client_s));
41         if (NULL == client) {
42                 SLOG(LOG_ERROR, TAG_TTSC, "[ERROR] Fail to allocate memory");
43                 return TTS_ERROR_OUT_OF_MEMORY;
44         }
45         tts_h temp = (tts_h)calloc(1, sizeof(struct tts_s));
46         if (NULL == temp) {
47                 SLOG(LOG_ERROR, TAG_TTSC, "[ERROR] Fail to allocate memory");
48                 free(client);
49                 return TTS_ERROR_OUT_OF_MEMORY;
50         }
51         temp->handle = __client_generate_uid(getpid()); 
52
53         /* initialize client data */
54         client->tts = temp;
55         client->pid = getpid(); 
56         client->uid = temp->handle;
57         client->current_utt_id = 0;
58
59         client->state_changed_cb = NULL;
60         client->state_changed_user_data = NULL;
61
62         client->utt_started_cb = NULL;
63         client->utt_started_user_data = NULL;
64         client->utt_completeted_cb = NULL;
65         client->utt_completed_user_data = NULL;
66
67         client->error_cb = NULL;
68         client->error_user_data = NULL;
69         client->default_voice_changed_cb = NULL;
70         client->default_voice_changed_user_data = NULL;
71         client->supported_voice_cb = NULL;
72         client->supported_voice_user_data = NULL;
73
74         client->mode = TTS_MODE_DEFAULT;
75         client->before_state = TTS_STATE_CREATED; 
76         client->current_state = TTS_STATE_CREATED; 
77
78         client->cb_ref_count = 0;
79
80         client->utt_id = 0;
81         client->reason = 0;
82         client->err_msg = NULL;
83
84         client->conn_timer = NULL;
85
86         client->credential = NULL;
87         client->credential_needed = false;
88
89         g_client_list = g_list_append(g_client_list, client);
90
91         *tts = temp;
92
93         SLOG(LOG_DEBUG, TAG_TTSC, "[Success] Create client object : uid(%d)", client->uid); 
94
95         return TTS_ERROR_NONE;
96 }
97
98 int tts_client_destroy(tts_h tts)
99 {
100         if (tts == NULL) {
101                 SLOG(LOG_ERROR, TAG_TTSC, "Input parameter is NULL");
102                 return TTS_ERROR_INVALID_PARAMETER;
103         }
104
105         GList *iter = NULL;
106         tts_client_s *data = NULL;
107
108         /* if list have item */
109         if (g_list_length(g_client_list) > 0) {
110                 /* Get a first item */
111                 iter = g_list_first(g_client_list);
112
113                 while (NULL != iter) {
114                         data = iter->data;
115                         if (tts->handle == data->tts->handle) {
116                                 g_client_list = g_list_remove_link(g_client_list, iter);
117
118                                 while (0 != data->cb_ref_count) {
119                                         /* wait for release callback function */
120                                 }
121
122                                 if (NULL != data->err_msg) {
123                                         free(data->err_msg);
124                                         data->err_msg = NULL;
125                                 }
126
127                                 if (NULL != data->credential) {
128                                         free(data->credential);
129                                         data->credential = NULL;
130                                 }
131
132                                 free(data);
133                                 free(tts);
134
135                                 data = NULL;
136                                 tts = NULL;
137
138                                 SLOG(LOG_DEBUG, TAG_TTSC, "Client destroy");
139                                 g_list_free(iter);
140
141                                 return TTS_ERROR_NONE;
142                         }
143
144                         /* Next item */
145                         iter = g_list_next(iter);
146                 }
147         }
148         SLOG(LOG_ERROR, TAG_TTSC, "Fail to destroy client : handle is not valid");
149
150         return TTS_ERROR_INVALID_PARAMETER;
151 }
152
153 tts_client_s* tts_client_get(tts_h tts)
154 {
155         if (tts == NULL) {
156                 SLOG(LOG_ERROR, TAG_TTSC, "Input parameter is NULL");
157                 return NULL;
158         }
159
160         GList *iter = NULL;
161         tts_client_s *data = NULL;
162
163         if (g_list_length(g_client_list) > 0) {
164                 /* Get a first item */
165                 iter = g_list_first(g_client_list);
166
167                 while (NULL != iter) {
168                         data = iter->data;
169
170                         if (tts->handle == data->tts->handle) 
171                                 return data;
172
173                         /* Next item */
174                         iter = g_list_next(iter);
175                 }
176         }
177
178         SLOG(LOG_ERROR, TAG_TTSC, "handle is not valid");
179
180         return NULL;
181 }
182
183 tts_client_s* tts_client_get_by_uid(const int uid)
184 {
185         if (uid < 0) {
186                 SLOG(LOG_ERROR, TAG_TTSC, "out of range : handle");
187                 return NULL;
188         }
189
190         GList *iter = NULL;
191         tts_client_s *data = NULL;
192
193         if (g_list_length(g_client_list) > 0) {
194                 /* Get a first item */
195                 iter = g_list_first(g_client_list);
196
197                 while (NULL != iter) {
198                         data = iter->data;
199                         if (uid == data->uid) {
200                                 return data;
201                         }
202
203                         /* Next item */
204                         iter = g_list_next(iter);
205                 }
206         }
207
208         SLOG(LOG_WARN, TAG_TTSC, "uid is not valid");
209
210         return NULL;
211 }
212
213 int tts_client_get_size()
214 {
215         return g_list_length(g_client_list);
216 }
217
218 int tts_client_use_callback(tts_client_s* client)
219 {
220         client->cb_ref_count++;
221         return 0;
222 }
223
224 int tts_client_not_use_callback(tts_client_s* client)
225 {
226         client->cb_ref_count--;
227         return 0;
228 }
229
230 int tts_client_get_use_callback(tts_client_s* client)
231 {
232         return client->cb_ref_count;
233 }
234
235 int tts_client_get_connected_client_count()
236 {
237         GList *iter = NULL;
238         tts_client_s *data = NULL;
239         int number = 0;
240
241         if (g_list_length(g_client_list) > 0) {
242                 /* Get a first item */
243                 iter = g_list_first(g_client_list);
244
245                 while (NULL != iter) {
246                         data = iter->data;
247                         if (0 < data->current_state) {
248                                 number++;
249                         }
250
251                         /* Next item */
252                         iter = g_list_next(iter);
253                 }
254         }
255         return number;
256 }
257
258 int tts_client_get_mode_client_count(tts_mode_e mode)
259 {
260         GList *iter = NULL;
261         tts_client_s *data = NULL;
262         int number = 0;
263
264         if (g_list_length(g_client_list) > 0) {
265                 /* Get a first item */
266                 iter = g_list_first(g_client_list);
267
268                 while (NULL != iter) {
269                         data = iter->data;
270                         if (0 < data->current_state && data->mode == mode) {
271                                 number++;
272                         }
273
274                         /* Next item */
275                         iter = g_list_next(iter);
276                 }
277         }
278         return number;
279 }
280
281 GList* tts_client_get_client_list()
282 {
283         return g_client_list;
284 }