Improve high CPU share
[platform/core/uifw/tts.git] / server / ttsd_data.h
1 /*
2 *  Copyright (c) 2012, 2013 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 "ttsp.h"
19
20 #ifdef __cplusplus
21 extern "C" {
22 #endif
23
24 typedef enum {
25         APP_STATE_CREATED = 0,
26         APP_STATE_READY,
27         APP_STATE_PLAYING,
28         APP_STATE_PAUSED
29 }app_state_e;
30
31 typedef struct 
32 {
33         int                     utt_id; 
34         char*                   text;
35         char*                   lang;
36         ttsp_voice_type_e       vctype;
37         ttsp_speed_e            speed;
38 }speak_data_s;
39
40 typedef struct 
41 {
42         int             utt_id;
43         void*           data;
44         unsigned int    data_size;
45
46         ttsp_result_event_e     event;
47         ttsp_audio_type_e       audio_type;
48         int                     rate;
49         int                     channels;
50 }sound_data_s;
51
52 int ttsd_data_new_client(int pid, int uid);
53
54 int ttsd_data_delete_client(int uid);
55
56 int ttsd_data_is_client(int uid);
57
58 int ttsd_data_get_client_count();
59
60 int ttsd_data_get_pid(int uid);
61
62 int ttsd_data_add_speak_data(int uid, speak_data_s data);
63
64 int ttsd_data_get_speak_data(int uid, speak_data_s* data);
65
66 int ttsd_data_get_speak_data_size(int uid);
67
68 int ttsd_data_add_sound_data(int uid, sound_data_s data);
69
70 int ttsd_data_get_sound_data(int uid, sound_data_s* data);
71
72 int ttsd_data_get_sound_data_size(int uid);
73
74 int ttsd_data_clear_data(int uid);
75
76 int ttsd_data_get_client_state(int pid, app_state_e* state);
77
78 int ttsd_data_set_client_state(int pid, app_state_e state);
79
80 int ttsd_data_get_current_playing();
81
82 typedef bool(*ttsd_data_get_client_cb)(int pid, int uid, app_state_e state, void* user_data);
83
84 int ttsd_data_foreach_clients(ttsd_data_get_client_cb callback, void* user_data);
85
86 bool ttsd_data_is_uttid_valid(int uid, int uttid);
87
88 int ttsd_data_is_current_playing();
89
90
91 int ttsd_setting_data_add(int pid);
92
93 int ttsd_setting_data_delete(int pid);
94
95 int ttsd_setting_data_is_setting(int pid);
96
97 /* for error log */
98 int ttsd_data_save_error_log(int uid, FILE* fp);
99
100 #ifdef __cplusplus
101 }
102 #endif
103
104 #endif /* __TTSD_DATA_H_ */