Change internal function to static
[platform/core/uifw/tts.git] / server / ttsd_config.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 /* For multi-user support */
16 #include <tzplatform_config.h>
17
18 #include "tts_config_mgr.h"
19 #include "ttsd_config.h"
20 #include "ttsd_main.h"
21
22
23 static ttsd_config_changed_cb g_callback;
24
25 static ttsd_config_screen_reader_changed_cb g_sr_callback;
26
27 void __ttsd_config_engine_changed_cb(const char* engine_id, const char* setting, const char* language, int voice_type, bool auto_voice, bool need_credential, void* user_data)
28 {
29         /* Need to check engine is valid */
30         if (false == tts_config_check_default_engine_is_valid(engine_id)) {
31                 SLOG(LOG_ERROR, tts_tag(), "Engine id is NOT valid : %s", engine_id);
32                 return;
33         }
34
35         if (NULL != g_callback) {
36                 SECURE_SLOG(LOG_DEBUG, tts_tag(), "Call the engine reload callback : engine id(%s)", engine_id);
37                 g_callback(TTS_CONFIG_TYPE_ENGINE, engine_id, 0, 0);
38                 SECURE_SLOG(LOG_DEBUG, tts_tag(), "Call the voice changed callback : lang(%s), type(%d)", language, voice_type);
39                 g_callback(TTS_CONFIG_TYPE_VOICE, language, voice_type, 0);
40         } else {
41                 SLOG(LOG_ERROR, tts_tag(), "Config changed callback is NULL");
42         }
43 }
44
45 void __ttsd_config_voice_changed_cb(const char* before_language, int before_type, const char* language, int type, bool auto_voice, void* user_data)
46 {
47         /* Need to check voice is valid */
48         if (false == tts_config_check_default_voice_is_valid(language, type)) {
49                 SLOG(LOG_ERROR, tts_tag(), "Lang(%s) type(%d) is NOT valid", language, type);
50                 return;
51         }
52
53         if (NULL != g_callback) {
54                 g_callback(TTS_CONFIG_TYPE_VOICE, language, type, 0);
55         } else {
56                 SLOG(LOG_ERROR, tts_tag(), "Config changed callback is NULL");
57         }
58 }
59
60 void __ttsd_config_speech_rate_changed_cb(int value, void* user_data)
61 {
62         if (NULL != g_callback) {
63                 g_callback(TTS_CONFIG_TYPE_SPEED, NULL, value, 0);
64         } else {
65                 SLOG(LOG_ERROR, tts_tag(), "Config changed callback is NULL");
66         }
67 }
68
69 void __ttsd_config_pitch_changed_cb(int value, void* user_data)
70 {
71         if (NULL != g_callback) {
72                 g_callback(TTS_CONFIG_TYPE_PITCH, NULL, value, 0);
73         } else {
74                 SLOG(LOG_ERROR, tts_tag(), "Config changed callback is NULL");
75         }
76 }
77
78 void __ttsd_config_screen_reader_changed_cb(bool value)
79 {
80         if (NULL != g_sr_callback) {
81                 g_sr_callback(value);
82         }
83 }
84
85 void __ttsd_config_bg_volume_ratio_changed_cb(double value, void* user_data)
86 {
87         if (NULL != g_callback)
88                 g_callback(TTS_CONFIG_TYPE_BACKGROUND_VOLUME_RATIO, NULL, 0, value);
89         else
90                 SLOG(LOG_ERROR, tts_tag(), "Config changed callback is NULL");
91 }
92
93 int ttsd_config_initialize(ttsd_config_changed_cb config_cb)
94 {
95         if (NULL == config_cb) {
96                 SLOG(LOG_ERROR, tts_tag(), "[Config] Invalid parameter");
97                 return -1;
98         }
99
100         g_callback = config_cb;
101         g_sr_callback = NULL;
102
103         int ret = -1;
104         ret = tts_config_mgr_initialize(getpid());
105         if (0 != ret) {
106                 SLOG(LOG_ERROR, tts_tag(), "[Config] Fail to initialize config manager");
107                 return -1;
108         }
109
110         ret = tts_config_mgr_set_callback(getpid(), __ttsd_config_engine_changed_cb, __ttsd_config_voice_changed_cb, 
111                 __ttsd_config_speech_rate_changed_cb, __ttsd_config_pitch_changed_cb, __ttsd_config_bg_volume_ratio_changed_cb, NULL);
112         if (0 != ret) {
113                 SLOG(LOG_ERROR, tts_tag(), "[ERROR] Fail to set config changed : %d", ret);
114                 return -1;
115         }
116
117         return 0;
118 }
119
120 int ttsd_config_finalize()
121 {
122         tts_config_unset_screen_reader_callback(getpid());
123
124         tts_config_mgr_finalize(getpid());
125
126         return 0;
127 }
128
129 int ttsd_config_set_screen_reader_callback(ttsd_config_screen_reader_changed_cb sr_cb)
130 {
131         if (NULL == sr_cb) {
132                 SLOG(LOG_ERROR, tts_tag(), "[Config] Invalid parameter");
133                 return -1;
134         }
135
136         g_sr_callback = sr_cb;
137
138         int ret = tts_config_set_screen_reader_callback(getpid(), __ttsd_config_screen_reader_changed_cb) ;
139         if (0 != ret) {
140                 SLOG(LOG_ERROR, tts_tag(), "[Config] Fail to set screen reader callback");
141                 return -1;
142         }
143         return 0;
144 }
145
146 int ttsd_config_get_default_engine(char** engine_id)
147 {
148         if (NULL == engine_id)
149                 return -1;
150
151         if (0 != tts_config_mgr_get_engine(engine_id)) {
152                 SLOG(LOG_ERROR, tts_tag(), "[Config ERROR] Fail to get engine id");
153                 return TTSD_ERROR_OPERATION_FAILED;
154         }
155
156         return 0;
157 }
158
159 int ttsd_config_set_default_engine(const char* engine_id)
160 {
161         if (NULL == engine_id)
162                 return -1;
163
164         if (true == tts_config_check_default_engine_is_valid(engine_id)) {
165                 if (0 != tts_config_mgr_set_engine(engine_id)) {
166                         SLOG(LOG_ERROR, tts_tag(), "[Config ERROR] Fail to set engine id");
167                 }
168         }
169
170         return 0;
171 }
172
173 int ttsd_config_get_default_voice(char** language, int* type)
174 {
175         if (NULL == language || NULL == type)
176                 return -1;
177
178         if (0 != tts_config_mgr_get_voice(language, type)) {
179                 SLOG(LOG_ERROR, tts_tag(), "[Config ERROR] Fail to get default voice");
180                 return TTSD_ERROR_OPERATION_FAILED;
181         }
182
183         return 0;
184 }
185
186 int ttsd_config_get_default_speed(int* speed)
187 {
188         if (NULL == speed)
189                 return -1;
190
191         if (0 != tts_config_mgr_get_speech_rate(speed)) {
192                 SLOG(LOG_ERROR, tts_tag(), "[Config ERROR] Fail to get default speech rate");
193                 return TTSD_ERROR_OPERATION_FAILED;
194         }
195
196         return 0;
197 }
198
199 int ttsd_config_get_default_pitch(int* pitch)
200 {
201         if (NULL == pitch)
202                 return -1;
203
204         if (0 != tts_config_mgr_get_pitch(pitch)) {
205                 SLOG(LOG_ERROR, tts_tag(), "[Config ERROR] Fail to get default pitch");
206                 return TTSD_ERROR_OPERATION_FAILED;
207         }
208
209         return 0;
210 }
211
212 int ttsd_config_get_bg_volume_ratio(double* ratio)
213 {
214         if (NULL == ratio)
215                 return -1;
216
217         if (0 != tts_config_mgr_get_bg_volume_ratio(ratio)) {
218                 SLOG(LOG_ERROR, tts_tag(), "[Config ERROR] Fail to get default bg volume ratio");
219                 return TTSD_ERROR_OPERATION_FAILED;
220         }
221
222         return 0;
223 }
224
225 int ttsd_config_save_error(int uid, int uttid, const char* lang, int vctype, const char* text, 
226                            const char* func, int line, const char* message)
227 {
228         SLOG(LOG_DEBUG, tts_tag(), "@@@@@ TTS ERROR LOG @@@@@");
229
230         SLOG(LOG_DEBUG, tts_tag(), "uid(%d) uttid(%d)", uid, uttid);
231
232
233         SLOG(LOG_DEBUG, tts_tag(), "Function(%s) Line(%d)", (NULL == func) ? "NULL" : func, line);
234         SLOG(LOG_DEBUG, tts_tag(), "Message(%s)", (NULL == message) ? "NULL" : message);
235         SLOG(LOG_DEBUG, tts_tag(), "Lang(%s), type(%d)", (NULL == lang) ? "NULL" : lang, vctype);
236         SLOG(LOG_DEBUG, tts_tag(), "Text(%s)", (NULL == text) ? "NULL" : text);
237
238         SLOG(LOG_DEBUG, tts_tag(), "@@@@@");
239
240         return 0;
241 }