Add function to set/get private data
[platform/core/uifw/tts.git] / include / tts.h
1 /*
2  * Copyright (c) 2011-2014 Samsung Electronics Co., Ltd All Rights Reserved
3  *
4  * Licensed under the Apache License, Version 2.0 (the License);
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  * http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an AS IS BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License. 
15  */
16
17
18 #ifndef __TTS_H__
19 #define __TTS_H__
20
21 #include <tizen.h>
22
23 /**
24 * @file tts.h
25 */
26
27 /**
28 * @addtogroup CAPI_UIX_TTS_MODULE
29 * @{
30 */
31
32 #ifdef __cplusplus
33 extern "C" {
34 #endif
35
36 /** 
37  * @brief Enumeration for error code.
38  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
39 */
40 typedef enum {
41         TTS_ERROR_NONE                  = TIZEN_ERROR_NONE,             /**< Successful */
42         TTS_ERROR_OUT_OF_MEMORY         = TIZEN_ERROR_OUT_OF_MEMORY,    /**< Out of Memory */
43         TTS_ERROR_IO_ERROR              = TIZEN_ERROR_IO_ERROR,         /**< I/O error */
44         TTS_ERROR_INVALID_PARAMETER     = TIZEN_ERROR_INVALID_PARAMETER,/**< Invalid parameter */
45         TTS_ERROR_OUT_OF_NETWORK        = TIZEN_ERROR_NETWORK_DOWN,     /**< Network is down */
46         TTS_ERROR_TIMED_OUT             = TIZEN_ERROR_TIMED_OUT,        /**< No answer from the daemon */
47         TTS_ERROR_PERMISSION_DENIED     = TIZEN_ERROR_PERMISSION_DENIED,/**< Permission denied */
48         TTS_ERROR_NOT_SUPPORTED         = TIZEN_ERROR_NOT_SUPPORTED,    /**< TTS NOT supported */
49         TTS_ERROR_INVALID_STATE         = TIZEN_ERROR_TTS | 0x01,       /**< Invalid state */
50         TTS_ERROR_INVALID_VOICE         = TIZEN_ERROR_TTS | 0x02,       /**< Invalid voice */
51         TTS_ERROR_ENGINE_NOT_FOUND      = TIZEN_ERROR_TTS | 0x03,       /**< No available engine */
52         TTS_ERROR_OPERATION_FAILED      = TIZEN_ERROR_TTS | 0x04,       /**< Operation failed */
53         TTS_ERROR_AUDIO_POLICY_BLOCKED  = TIZEN_ERROR_TTS | 0x05        /**< Audio policy blocked */
54 } tts_error_e;
55
56 /** 
57  * @brief Enumeration for TTS mode.
58  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
59 */
60 typedef enum {
61         TTS_MODE_DEFAULT        = 0,    /**< Default mode for normal application */
62         TTS_MODE_NOTIFICATION   = 1,    /**< Notification mode */
63         TTS_MODE_SCREEN_READER  = 2     /**< Accessibiliity mode */
64 } tts_mode_e;
65
66 /** 
67  * @brief Enumerations for state.
68  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
69 */
70 typedef enum {
71         TTS_STATE_CREATED       = 0,    /**< 'CREATED' state */
72         TTS_STATE_READY         = 1,    /**< 'READY' state */
73         TTS_STATE_PLAYING       = 2,    /**< 'PLAYING' state */
74         TTS_STATE_PAUSED        = 3     /**< 'PAUSED' state*/
75 } tts_state_e;
76
77 /** 
78  * @brief Definitions for automatic speaking speed.
79  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
80 */
81 #define TTS_SPEED_AUTO          0
82
83 /** 
84  * @brief Definitions for automatic voice type.
85  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
86 */
87 #define TTS_VOICE_TYPE_AUTO     0
88
89 /** 
90  * @brief Definitions for male voice type.
91  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
92 */
93 #define TTS_VOICE_TYPE_MALE     1
94
95 /** 
96  * @brief Definitions for female voice type.
97  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
98 */
99 #define TTS_VOICE_TYPE_FEMALE   2
100
101 /** 
102  * @brief Definitions for child voice type.
103  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
104 */
105 #define TTS_VOICE_TYPE_CHILD    3
106
107 /** 
108  * @brief The TTS handle.
109  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
110 */
111 typedef struct tts_s *tts_h;
112
113
114 /**
115  * @brief Called when the state of TTS is changed.
116  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
117  *
118  * @details If the daemon must stop player because of changing engine and
119  *      the daemon must pause player because of other requests, this callback function is called.
120  *
121  * @param[in] tts The TTS handle
122  * @param[in] previous The previous state
123  * @param[in] current The current state
124  * @param[in] user_data The user data passed from the callback registration function
125  *
126  * @pre An application registers this callback using tts_set_state_changed_cb() to detect changing state.
127  *
128  * @see tts_set_state_changed_cb()
129  * @see tts_unset_state_changed_cb()
130 */
131 typedef void (*tts_state_changed_cb)(tts_h tts, tts_state_e previous, tts_state_e current, void* user_data);
132
133 /**
134  * @brief Called when utterance has started.
135  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
136  *
137  * @param[in] tts The TTS handle
138  * @param[in] utt_id The utterance ID passed from the add text function
139  * @param[in] user_data The user data passed from the callback registration function
140  *
141  * @pre An application registers this callback using tts_set_utterance_started_cb() to detect utterance started.
142  *
143  * @see tts_add_text()
144  * @see tts_set_utterance_started_cb()
145  * @see tts_unset_utterance_started_cb()
146 */
147 typedef void (*tts_utterance_started_cb)(tts_h tts, int utt_id, void* user_data);
148
149 /**
150  * @brief Called when utterance is finished.
151  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
152  *
153  * @param[in] tts The TTS handle
154  * @param[in] utt_id The utterance ID passed from the add text function
155  * @param[in] user_data The user data passed from the callback registration function
156  *
157  * @pre An application registers this callback using tts_set_utterance_completed_cb() to detect utterance completed.
158  *
159  * @see tts_add_text()
160  * @see tts_set_utterance_completed_cb()
161  * @see tts_unset_utterance_completed_cb()
162 */
163 typedef void (*tts_utterance_completed_cb)(tts_h tts, int utt_id, void *user_data);
164
165 /**
166  * @brief Called when an error occurs.
167  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
168  *
169  * @param[in] tts The TTS handle
170  * @param[in] utt_id The utterance ID passed from the add text function
171  * @param[in] reason The error code
172  * @param[in] user_data The user data passed from the callback registration function
173  *
174  * @pre An application registers this callback using tts_set_error_cb() to detect error.
175  *
176  * @see tts_play()
177  * @see tts_pause()
178  * @see tts_stop()
179  * @see tts_set_error_cb()
180  * @see tts_unset_error_cb()
181 */
182 typedef void (*tts_error_cb)(tts_h tts, int utt_id, tts_error_e reason, void* user_data);
183
184 /**
185  * @brief Called to retrieve the supported voice.
186  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
187  *
188  * @param[in] tts The TTS handle
189  * @param[in] language Language specified as an ISO 3166 alpha-2 two letter country-code followed by ISO 639-1 for the two-letter language code (for example, "ko_KR" for Korean, "en_US" for American English)
190  * @param[in] voice_type A voice type (e.g. #TTS_VOICE_TYPE_MALE, #TTS_VOICE_TYPE_FEMALE)
191  * @param[in] user_data The user data passed from the foreach function
192  *
193  * @return @c true to continue with the next iteration of the loop, \n @c false to break out of the loop
194  * @pre tts_foreach_supported_voices() will invoke this callback function.
195  *
196  * @see tts_foreach_supported_voices()
197 */
198 typedef bool(*tts_supported_voice_cb)(tts_h tts, const char* language, int voice_type, void* user_data);
199
200 /**
201  * @brief Called when the default voice is changed.
202  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
203  *
204  * @param[in] tts The TTS handle
205  * @param[in] previous_language The previous language
206  * @param[in] previous_voice_type The previous voice type
207  * @param[in] current_language The current language
208  * @param[in] current_voice_type The current voice type
209  * @param[in] user_data The user data passed from the callback registration function
210  *
211  * @see tts_set_default_voice_changed_cb()
212 */
213 typedef void (*tts_default_voice_changed_cb)(tts_h tts, const char* previous_language, int previous_voice_type,
214                                 const char* current_language, int current_voice_type, void* user_data);
215
216
217 /**
218  * @brief Creates a handle for TTS.
219  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
220  *
221  * @remarks If the function succeeds, @a tts handle must be released with tts_destroy().
222  *
223  * @param[out] tts The TTS handle
224  *
225  * @return 0 on success, otherwise a negative error value
226  * @retval #TTS_ERROR_NONE Successful
227  * @retval #TTS_ERROR_OUT_OF_MEMORY Out of memory
228  * @retval #TTS_ERROR_INVALID_PARAMETER Invalid parameter
229  * @retval #TTS_ERROR_ENGINE_NOT_FOUND Engine not found
230  * @retval #TTS_ERROR_OPERATION_FAILED Operation failure
231  * @retval #TTS_ERROR_NOT_SUPPORTED TTS NOT supported
232  *
233  * @post If this function is called, the TTS state will be #TTS_STATE_CREATED.
234  *
235  * @see tts_destroy()
236 */
237 int tts_create(tts_h* tts);
238
239 /**
240  * @brief Destroys the handle and disconnects the daemon.
241  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
242  *
243  * @param[in] tts The TTS handle
244  *
245  * @return 0 on success, otherwise a negative error value
246  * @retval #TTS_ERROR_NONE Successful
247  * @retval #TTS_ERROR_INVALID_PARAMETER Invalid parameter
248  * @retval #TTS_ERROR_OPERATION_FAILED Operation failure
249  * @retval #TTS_ERROR_NOT_SUPPORTED TTS NOT supported
250  *
251  * @see tts_create()
252 */
253 int tts_destroy(tts_h tts);
254
255 /**
256  * @brief Sets the TTS mode.
257  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
258  *
259  * @param[in] tts The TTS handle
260  * @param[in] mode The mode
261  *
262  * @return 0 on success, otherwise a negative error value
263  * @retval #TTS_ERROR_NONE Successful
264  * @retval #TTS_ERROR_INVALID_PARAMETER Invalid parameter
265  * @retval #TTS_ERROR_INVALID_STATE Invalid state
266  * @retval #TTS_ERROR_OPERATION_FAILED Operation failure
267  * @retval #TTS_ERROR_NOT_SUPPORTED TTS NOT supported
268  *
269  * @pre The state should be #TTS_STATE_CREATED.
270  *
271  * @see tts_get_mode()
272 */
273 int tts_set_mode(tts_h tts, tts_mode_e mode);
274
275 /**
276  * @brief Gets the TTS mode.
277  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
278  *
279  * @param[in] tts The TTS handle
280  * @param[out] mode The mode
281  *
282  * @return 0 on success, otherwise a negative error value
283  * @retval #TTS_ERROR_NONE Successful
284  * @retval #TTS_ERROR_INVALID_PARAMETER Invalid parameter
285  * @retval #TTS_ERROR_INVALID_STATE Invalid state
286  * @retval #TTS_ERROR_NOT_SUPPORTED TTS NOT supported
287  *
288  * @pre The state should be #TTS_STATE_CREATED.
289  *
290  * @see tts_set_mode()
291 */
292 int tts_get_mode(tts_h tts, tts_mode_e* mode);
293
294 /**
295  * @brief Connects the daemon asynchronously.
296  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
297  *
298  * @param[in] tts The TTS handle
299  *
300  * @return 0 on success, otherwise a negative error value
301  * @retval #TTS_ERROR_NONE Successful
302  * @retval #TTS_ERROR_INVALID_PARAMETER Invalid parameter
303  * @retval #TTS_ERROR_INVALID_STATE Invalid state
304  * @retval #TTS_ERROR_NOT_SUPPORTED TTS NOT supported
305  *
306  * @pre The state should be #TTS_STATE_CREATED.
307  * @post If this function is successful, the TTS state will be #TTS_STATE_READY. \n
308  *      If this function is failed, the error callback is called. (e.g. #TTS_ERROR_ENGINE_NOT_FOUND)
309  *
310  * @see tts_unprepare()
311 */
312 int tts_prepare(tts_h tts);
313
314 /**
315  * @brief Disconnects the daemon.
316  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
317  *
318  * @param[in] tts The TTS handle
319  *
320  * @return 0 on success, otherwise a negative error value
321  * @retval #TTS_ERROR_NONE Successful
322  * @retval #TTS_ERROR_INVALID_PARAMETER Invalid parameter
323  * @retval #TTS_ERROR_INVALID_STATE Invalid state
324  * @retval #TTS_ERROR_NOT_SUPPORTED TTS NOT supported
325  *
326  * @pre The state should be #TTS_STATE_READY.
327  * @post If this function is called, the TTS state will be #TTS_STATE_CREATED.
328  *
329  * @see tts_prepare()
330 */
331 int tts_unprepare(tts_h tts);
332
333 /**
334  * @brief Retrieves all supported voices of the current engine using callback function.
335  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
336  *
337  * @param[in] tts The TTS handle
338  * @param[in] callback The callback function to invoke
339  * @param[in] user_data The user data to be passed to the callback function
340  *
341  * @return 0 on success, otherwise a negative error value
342  * @retval #TTS_ERROR_NONE Successful
343  * @retval #TTS_ERROR_INVALID_PARAMETER Invalid parameter
344  * @retval #TTS_ERROR_ENGINE_NOT_FOUND Engine not found
345  * @retval #TTS_ERROR_OPERATION_FAILED Operation failure
346  * @retval #TTS_ERROR_NOT_SUPPORTED TTS NOT supported
347  *
348  * @post This function invokes tts_supported_voice_cb() repeatedly for getting voices.
349  *
350  * @see tts_get_default_voice()
351 */
352 int tts_foreach_supported_voices(tts_h tts, tts_supported_voice_cb callback, void* user_data);
353
354 /**
355  * @brief Gets the default voice set by the user.
356  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
357  *
358  * @remarks If the function succeeds, @a language must be released with free().
359  *
360  * @param[in] tts The TTS handle
361  * @param[out] language Language specified as an ISO 3166 alpha-2 two letter country-code followed by ISO 639-1 for the two-letter language code (for example, "ko_KR" for Korean, "en_US" for American English)
362  * @param[out] voice_type The voice type
363  *
364  * @return 0 on success, otherwise a negative error value
365  * @retval #TTS_ERROR_NONE Successful
366  * @retval #TTS_ERROR_INVALID_PARAMETER Invalid parameter
367  * @retval #TTS_ERROR_ENGINE_NOT_FOUND Engine not found
368  * @retval #TTS_ERROR_OPERATION_FAILED Operation failure
369  * @retval #TTS_ERROR_NOT_SUPPORTED TTS NOT supported
370  *
371  * @see tts_foreach_supported_voices()
372 */
373 int tts_get_default_voice(tts_h tts, char** language, int* voice_type);
374
375 /**
376  * @brief Sets the private data to tts engine.
377  * @since_tizen 3.0
378  *
379  * @param[in] tts The TTS handle
380  * @param[in] key The field name of private data
381  * @param[in] data The data for set
382  *
383  * @return 0 on success, otherwise a negative error value
384  * @retval #TTS_ERROR_NONE Successful
385  * @retval #TTS_ERROR_INVALID_PARAMETER Invalid parameter
386  * @retval #TTS_ERROR_INVALID_STATE Invalid state
387  * @retval #TTS_ERROR_ENGINE_NOT_FOUND Engine not found
388  * @retval #TTS_ERROR_OPERATION_FAILED Operation failure
389  * @retval #TTS_ERROR_NOT_SUPPORTED TTS NOT supported
390  *
391  * @pre The state should be #TTS_STATE_READY.
392  *
393  * @see tts_get_private_data()
394 */
395 int tts_set_private_data(tts_h tts, const char* key, const char* data);
396
397 /**
398  * @brief Gets the private data from tts engine.
399  * @since_tizen 3.0
400  *
401  * @param[in] tts The TTS handle
402  * @param[in] key The field name of private data
403  * @param[out] data The data
404  *
405  * @return 0 on success, otherwise a negative error value
406  * @retval #TTS_ERROR_NONE Successful
407  * @retval #TTS_ERROR_INVALID_STATE Invalid state
408  * @retval #TTS_ERROR_INVALID_PARAMETER Invalid parameter
409  * @retval #TTS_ERROR_ENGINE_NOT_FOUND Engine not found
410  * @retval #TTS_ERROR_OPERATION_FAILED Operation failure
411  * @retval #TTS_ERROR_NOT_SUPPORTED TTS NOT supported
412  *
413  * @pre The state should be #TTS_STATE_READY.
414  *
415  * @see tts_set_private_data()
416 */
417 int tts_get_private_data(tts_h tts, const char* key, char** data);
418
419 /**
420  * @brief Gets the maximum byte size for text.
421  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
422  *
423  * @param[in] tts The TTS handle
424  * @param[out] size The maximum byte size for text
425  *
426  * @return 0 on success, otherwise a negative error value
427  * @retval #TTS_ERROR_NONE Successful
428  * @retval #TTS_ERROR_INVALID_PARAMETER Invalid parameter
429  * @retval #TTS_ERROR_INVALID_STATE Invalid state
430  * @retval #TTS_ERROR_NOT_SUPPORTED TTS NOT supported
431  *
432  * @pre The state should be #TTS_STATE_READY.
433  *
434  * @see tts_add_text()
435 */
436 int tts_get_max_text_size(tts_h tts, unsigned int* size);
437
438 /**
439  * @brief Gets the current state of TTS.
440  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
441  *
442  * @param[in] tts The TTS handle
443  * @param[out] state The current state of TTS
444  *
445  * @return 0 on success, otherwise a negative error value
446  * @retval #TTS_ERROR_NONE Successful
447  * @retval #TTS_ERROR_INVALID_PARAMETER Invalid parameter
448  * @retval #TTS_ERROR_NOT_SUPPORTED TTS NOT supported
449  *
450  * @see tts_play()
451  * @see tts_stop()
452  * @see tts_pause()
453 */
454 int tts_get_state(tts_h tts, tts_state_e* state);
455
456 /**
457  * @brief Gets the speed range.
458  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
459  *
460  * @param[in] tts The TTS handle
461  * @param[out] min The minimun speed value
462  * @param[out] normal The normal speed value
463  * @param[out] max The maximum speed value
464  *
465  * @return 0 on success, otherwise a negative error value
466  * @retval #TTS_ERROR_NONE Successful
467  * @retval #TTS_ERROR_INVALID_PARAMETER Invalid parameter
468  * @retval #TTS_ERROR_INVALID_STATE Invalid state
469  * @retval #TTS_ERROR_OPERATION_FAILED Operation failure
470  * @retval #TTS_ERROR_NOT_SUPPORTED TTS NOT supported
471  *
472  * @pre The state should be #TTS_STATE_CREATED.
473  *
474  * @see tts_add_text()
475 */
476 int tts_get_speed_range(tts_h tts, int* min, int* normal, int* max);
477
478 /**
479  * @brief Gets the current error message.
480  * @since_tizen 3.0
481  * @privlevel public
482  * @remarks This function should be called during an tts error callback. If not, the error as operation failure will be returned. \n
483  * If the function succeeds, @a err_msg must be released using free() when it is no longer required.
484  *
485  * @param[in] tts The TTS handle
486  * @param[out] err_msg The current error message
487  *
488  * @return 0 on success, otherwise a negative error value
489  * @retval #TTS_ERROR_NONE Successful
490  * @retval #TTS_ERROR_INVALID_PARAMETER Invalid parameter
491  * @retval #TTS_ERROR_NOT_SUPPORTED TTS NOT supported
492  * @retval #TTS_ERROR_OPERATION_FAILED Operation failure
493  *
494  * @see tts_set_error_cb()
495  * @see tts_unset_error_cb()
496 */
497 int tts_get_error_message(tts_h tts, char** err_msg);
498
499 /**
500  * @brief Adds a text to the queue.
501  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
502  *
503  * @remarks Locale(e.g. setlocale()) MUST be set for utf8 text validation check.
504  *
505  * @param[in] tts The TTS handle
506  * @param[in] text An input text based utf8
507  * @param[in] language The language selected from the tts_foreach_supported_voices() (e.g. 'NULL'(Automatic), 'en_US')
508  * @param[in] voice_type The voice type selected from the tts_foreach_supported_voices() (e.g. #TTS_VOICE_TYPE_AUTO, #TTS_VOICE_TYPE_FEMALE)
509  * @param[in] speed A speaking speed (e.g. #TTS_SPEED_AUTO or the value from tts_get_speed_range())
510  * @param[out] utt_id The utterance ID passed to the callback function
511  *
512  * @return 0 on success, otherwise a negative error value
513  * @retval #TTS_ERROR_NONE Successful
514  * @retval #TTS_ERROR_INVALID_PARAMETER Invalid parameter
515  * @retval #TTS_ERROR_INVALID_STATE Invalid state
516  * @retval #TTS_ERROR_INVALID_VOICE Invalid voice about language, voice type
517  * @retval #TTS_ERROR_OPERATION_FAILED Operation failure
518  * @retval #TTS_ERROR_NOT_SUPPORTED TTS NOT supported
519  *
520  * @pre The state should be #TTS_STATE_READY, #TTS_STATE_PLAYING or #TTS_STATE_PAUSED.
521  * @see tts_get_max_text_size()
522 */
523 int tts_add_text(tts_h tts, const char* text, const char* language, int voice_type, int speed, int* utt_id);
524
525 /**
526  * @brief Starts synthesizing voice from the text and plays the synthesized audio data.
527  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
528  *
529  * @param[in] tts The TTS handle
530  *
531  * @return 0 on success, otherwise a negative error value
532  * @retval #TTS_ERROR_NONE Successful
533  * @retval #TTS_ERROR_INVALID_PARAMETER Invalid parameter
534  * @retval #TTS_ERROR_OUT_OF_NETWORK Out of network
535  * @retval #TTS_ERROR_INVALID_STATE Invalid state
536  * @retval #TTS_ERROR_OPERATION_FAILED Operation failure
537  * @retval #TTS_ERROR_NOT_SUPPORTED TTS NOT supported
538  *
539  * @pre The current state should be #TTS_STATE_READY or #TTS_STATE_PAUSED.
540  * @post If this function succeeds, the TTS state will be #TTS_STATE_PLAYING.
541  *
542  * @see tts_add_text()
543  * @see tts_pause()
544  * @see tts_stop()
545  * @see tts_utterance_started_cb()
546  * @see tts_utterance_completed_cb()
547  * @see tts_error_cb()
548 */
549 int tts_play(tts_h tts);
550
551 /**
552  * @brief Stops playing the utterance and clears the queue.
553  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
554  *
555  * @param[in] tts The TTS handle
556  *
557  * @return 0 on success, otherwise a negative error value
558  * @retval #TTS_ERROR_NONE Successful
559  * @retval #TTS_ERROR_INVALID_PARAMETER Invalid parameter
560  * @retval #TTS_ERROR_INVALID_STATE Invalid state
561  * @retval #TTS_ERROR_OPERATION_FAILED Operation failure
562  * @retval #TTS_ERROR_NOT_SUPPORTED TTS NOT supported
563  *
564  * @pre The TTS state should be #TTS_STATE_READY or #TTS_STATE_PLAYING or #TTS_STATE_PAUSED.
565  * @post If this function succeeds, the TTS state will be #TTS_STATE_READY.
566  *      This function will remove all text via tts_add_text() and synthesized sound data.
567  *
568  * @see tts_play()
569  * @see tts_pause()
570 */
571 int tts_stop(tts_h tts);
572
573 /**
574  * @brief Pauses the currently playing utterance.
575  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
576  *
577  * @param[in] tts The TTS handle
578  *
579  * @return 0 on success, otherwise a negative error value
580  * @retval #TTS_ERROR_NONE Successful
581  * @retval #TTS_ERROR_INVALID_PARAMETER Invalid parameter
582  * @retval #TTS_ERROR_INVALID_STATE Invalid state
583  * @retval #TTS_ERROR_OPERATION_FAILED Operation failure
584  * @retval #TTS_ERROR_NOT_SUPPORTED TTS NOT supported
585  *
586  * @pre The TTS state should be #TTS_STATE_PLAYING.
587  * @post If this function succeeds, the TTS state will be #TTS_STATE_PAUSED.
588  *
589  * @see tts_play()
590  * @see tts_stop()
591  * @see tts_error_cb()
592  * @see tts_interrupted_cb()
593 */
594 int tts_pause(tts_h tts);
595
596 /**
597  * @brief Registers a callback function to be called when the TTS state changes.
598  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
599  *
600  * @param[in] tts The TTS handle
601  * @param[in] callback The callback function to register
602  * @param[in] user_data The user data to be passed to the callback function
603  *
604  * @return 0 on success, otherwise a negative error value
605  * @retval #TTS_ERROR_NONE Successful
606  * @retval #TTS_ERROR_INVALID_PARAMETER Invalid parameter
607  * @retval #TTS_ERROR_INVALID_STATE Invalid state
608  * @retval #TTS_ERROR_NOT_SUPPORTED TTS NOT supported
609  *
610  * @pre The state should be #TTS_STATE_CREATED.
611  *
612  * @see tts_state_changed_cb()
613  * @see tts_unset_state_changed_cb()
614 */
615 int tts_set_state_changed_cb(tts_h tts, tts_state_changed_cb callback, void* user_data);
616
617 /**
618  * @brief Unregisters the callback function.
619  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
620  *
621  * @param[in] tts The TTS handle
622  *
623  * @return 0 on success, otherwise a negative error value
624  * @retval #TTS_ERROR_NONE Successful
625  * @retval #TTS_ERROR_INVALID_PARAMETER Invalid parameter
626  * @retval #TTS_ERROR_INVALID_STATE Invalid state
627  * @retval #TTS_ERROR_NOT_SUPPORTED TTS NOT supported
628  *
629  * @pre The state should be #TTS_STATE_CREATED.
630  *
631  * @see tts_set_state_changed_cb()
632 */
633 int tts_unset_state_changed_cb(tts_h tts);
634
635 /**
636  * @brief Registers a callback function to detect utterance start.
637  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
638  *
639  * @param[in] tts The TTS handle
640  * @param[in] callback The callback function to register
641  * @param[in] user_data The user data to be passed to the callback function
642  *
643  * @return 0 on success, otherwise a negative error value
644  * @retval #TTS_ERROR_NONE Successful
645  * @retval #TTS_ERROR_INVALID_PARAMETER Invalid parameter
646  * @retval #TTS_ERROR_INVALID_STATE Invalid state
647  * @retval #TTS_ERROR_NOT_SUPPORTED TTS NOT supported
648  *
649  * @pre The state should be #TTS_STATE_CREATED.
650  *
651  * @see tts_utterance_started_cb()
652  * @see tts_unset_utterance_started_cb()
653 */
654 int tts_set_utterance_started_cb(tts_h tts, tts_utterance_started_cb callback, void* user_data);
655
656 /**
657  * @brief Unregisters the callback function.
658  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
659  *
660  * @param[in] tts The TTS handle
661  *
662  * @return 0 on success, otherwise a negative error value
663  * @retval #TTS_ERROR_NONE Successful
664  * @retval #TTS_ERROR_INVALID_PARAMETER Invalid parameter
665  * @retval #TTS_ERROR_INVALID_STATE Invalid state
666  * @retval #TTS_ERROR_NOT_SUPPORTED TTS NOT supported
667  *
668  * @pre The state should be #TTS_STATE_CREATED.
669  *
670  * @see tts_set_utterance_started_cb()
671 */
672 int tts_unset_utterance_started_cb(tts_h tts);
673
674 /**
675  * @brief Registers a callback function to detect utterance completion.
676  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
677  *
678  * @param[in] tts The TTS handle
679  * @param[in] callback The callback function to register
680  * @param[in] user_data The user data to be passed to the callback function
681  *
682  * @return 0 on success, otherwise a negative error value
683  * @retval #TTS_ERROR_NONE Successful
684  * @retval #TTS_ERROR_INVALID_PARAMETER Invalid parameter
685  * @retval #TTS_ERROR_INVALID_STATE Invalid state
686  * @retval #TTS_ERROR_NOT_SUPPORTED TTS NOT supported
687  *
688  * @pre The state should be #TTS_STATE_CREATED.
689  *
690  * @see tts_utterance_completed_cb()
691  * @see tts_unset_utterance_completed_cb()
692 */
693 int tts_set_utterance_completed_cb(tts_h tts, tts_utterance_completed_cb callback, void* user_data);
694
695 /**
696  * @brief Unregisters the callback function.
697  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
698  *
699  * @param[in] tts The TTS handle
700  *
701  * @return 0 on success, otherwise a negative error value
702  * @retval #TTS_ERROR_NONE Successful
703  * @retval #TTS_ERROR_INVALID_PARAMETER Invalid parameter
704  * @retval #TTS_ERROR_INVALID_STATE Invalid state
705  * @retval #TTS_ERROR_NOT_SUPPORTED TTS NOT supported
706  *
707  * @pre The state should be #TTS_STATE_CREATED.
708  *
709  * @see tts_set_utterance_completed_cb()
710 */
711 int tts_unset_utterance_completed_cb(tts_h tts);
712
713 /**
714  * @brief Registers a callback function to detect errors.
715  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
716  *
717  * @param[in] tts The TTS handle
718  * @param[in] callback The callback function to register
719  * @param[in] user_data The user data to be passed to the callback function
720  *
721  * @return 0 on success, otherwise a negative error value
722  * @retval #TTS_ERROR_NONE Successful
723  * @retval #TTS_ERROR_INVALID_PARAMETER Invalid parameter
724  * @retval #TTS_ERROR_INVALID_STATE Invalid state
725  * @retval #TTS_ERROR_NOT_SUPPORTED TTS NOT supported
726  *
727  * @pre The state should be #TTS_STATE_CREATED.
728  *
729  * @see tts_error_cb()
730  * @see tts_unset_error_cb()
731 */
732 int tts_set_error_cb(tts_h tts, tts_error_cb callback, void* user_data);
733
734 /**
735  * @brief Unregisters the callback function.
736  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
737  *
738  * @param[in] tts The TTS handle
739  *
740  * @return 0 on success, otherwise a negative error value
741  * @retval #TTS_ERROR_NONE Successful
742  * @retval #TTS_ERROR_INVALID_PARAMETER Invalid parameter
743  * @retval #TTS_ERROR_INVALID_STATE Invalid state
744  * @retval #TTS_ERROR_NOT_SUPPORTED TTS NOT supported
745  *
746  * @pre The state should be #TTS_STATE_CREATED.
747  *
748  * @see tts_set_error_cb()
749 */
750 int tts_unset_error_cb(tts_h tts);
751
752 /**
753  * @brief Registers a callback function to detect default voice change.
754  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
755  *
756  * @param[in] tts The TTS handle
757  * @param[in] callback The callback function to register
758  * @param[in] user_data The user data to be passed to the callback function
759  *
760  * @return 0 on success, otherwise a negative error value
761  * @retval #TTS_ERROR_NONE Successful
762  * @retval #TTS_ERROR_INVALID_PARAMETER Invalid parameter
763  * @retval #TTS_ERROR_INVALID_STATE Invalid state
764  * @retval #TTS_ERROR_NOT_SUPPORTED TTS NOT supported
765  *
766  * @pre The state should be #TTS_STATE_CREATED.
767  *
768  * @see tts_default_voice_changed_cb()
769  * @see tts_unset_default_voice_changed_cb()
770 */
771 int tts_set_default_voice_changed_cb(tts_h tts, tts_default_voice_changed_cb callback, void* user_data);
772
773 /**
774  * @brief Unregisters the callback function.
775  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
776  *
777  * @param[in] tts The TTS handle
778  *
779  * @return 0 on success, otherwise a negative error value
780  * @retval #TTS_ERROR_NONE Successful
781  * @retval #TTS_ERROR_INVALID_PARAMETER Invalid parameter
782  * @retval #TTS_ERROR_INVALID_STATE Invalid state
783  * @retval #TTS_ERROR_NOT_SUPPORTED TTS NOT supported
784  *
785  * @pre The state should be #TTS_STATE_CREATED.
786  *
787  * @see tts_set_default_voice_changed_cb()
788 */
789 int tts_unset_default_voice_changed_cb(tts_h tts);
790
791
792 #ifdef __cplusplus
793 }
794 #endif
795
796 /**
797 * @}
798 */
799
800 #endif  /* __TTS_H__ */