tts_manager.h 6.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286
  1. /*
  2. * Copyright (c) 2018 Actions Semiconductor Co., Ltd
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. /**
  7. * @file tts manager interface
  8. */
  9. #ifndef __TTS_MANAGER_H__
  10. #define __TTS_MANAGER_H__
  11. /**
  12. * @defgroup tts_manager_apis App tts Manager APIs
  13. * @ingroup system_apis
  14. * @{
  15. */
  16. /** tts mode */
  17. enum tts_mode_e
  18. {
  19. BLOCK_INTERRUPTABLE = 0x1,
  20. BLOCK_UNINTERRUPTABLE = 0x2,
  21. UNBLOCK_UNINTERRUPTABLE = 0x4,
  22. UNBLOCK_INTERRUPTABLE = 0x8,
  23. PLAY_IMMEDIATELY = 0x10,
  24. TTS_MODE_TELE_NUM = 0x20, //telephone number
  25. };
  26. /** tts file storage medium */
  27. enum tts_storage_medium_e
  28. {
  29. /** tts file storage in sdfs on nor*/
  30. TTS_SOTRAGE_SDFS = 1,
  31. /** tts file storage in fatfs on sdcard*/
  32. TTS_SOTRAGE_SDCARD = 2,
  33. };
  34. /** tts event */
  35. enum tts_event_e
  36. {
  37. /** tts event start play */
  38. TTS_EVENT_START_PLAY = 1,
  39. /** tts event stop play */
  40. TTS_EVENT_STOP_PLAY = 2,
  41. /** tts event stop play */
  42. TTS_EVENT_NEXT_PLAY = 3,
  43. };
  44. /** tts ui event map */
  45. typedef struct
  46. {
  47. /** ui event */
  48. uint16_t ui_event;
  49. /** tts mode */
  50. uint16_t mode;
  51. /** name of tts file*/
  52. const uint8_t *tts_file_name;
  53. }tts_ui_event_map_t;
  54. /** tts config */
  55. struct tts_config_t
  56. {
  57. /** tts media storage type link:tts_storage_medium_e */
  58. uint32_t tts_storage_media;
  59. /** tts and ui event map*/
  60. const tts_ui_event_map_t *tts_map;
  61. /** tts and ui event map size*/
  62. uint32_t tts_map_size;
  63. /** default path of tts file*/
  64. const uint8_t *tts_def_path;
  65. };
  66. /**
  67. * @brief lock tts manager
  68. *
  69. * This routine calls to lock tts manager, tts will drop when if tts manager locked
  70. * If the user does not want to play TTS for a period of time, then can used this interface to lock tts mangaer.
  71. *
  72. * @return N/A
  73. */
  74. typedef void (*tts_event_nodify)(uint8_t *, uint32_t);
  75. /**
  76. * @brief tts manager init funcion
  77. *
  78. * This routine calls init tts manager ,called by main
  79. *
  80. * @return 0 if invoked succsess.
  81. * @return others if invoked failed.
  82. */
  83. int tts_manager_init(void);
  84. /**
  85. * @brief tts manager deinit funcion
  86. *
  87. * This routine calls deinit tts manager ,called by main ,release all tts manager resource.
  88. *
  89. * @return 0 if invoked succsess.
  90. * @return others if invoked failed.
  91. */
  92. int tts_manager_deinit(void);
  93. /**
  94. * @brief lock tts manager
  95. *
  96. * This routine calls to lock tts manager, tts will drop when if tts manager locked
  97. * If the user does not want to play TTS for a period of time, then can used this interface to lock tts mangaer.
  98. *
  99. * @return N/A
  100. */
  101. void tts_manager_lock(void);
  102. /**
  103. * @brief unlock tts manager
  104. *
  105. * This routine calls to unlock tts manager
  106. *
  107. * @return N/A
  108. */
  109. void tts_manager_unlock(void);
  110. /**
  111. * @brief get tts manager state
  112. *
  113. * This routine calls to unlock tts manager,
  114. *
  115. * @return true tts manager is locked
  116. * @return false tts manager is unlocked
  117. */
  118. bool tts_manager_is_locked(void);
  119. /**
  120. * @brief start to play tts
  121. *
  122. * This routine calls to play tts
  123. *
  124. * @param tts_name url for tts witch tts user want to play
  125. * @param mode tts_mode_e
  126. * @param bt_clk time to start play in bt clock, set to UINT64_MAX if no need sync
  127. * @param pattern if mode == TTS_MODE_TELE_NUM, tts_name should be phone num, pattern is the phone num pattern, example: V_NO_%c.act
  128. *
  129. * @return 0 if invoked succsess.
  130. * @return others if invoked failed.
  131. */
  132. int tts_manager_play_with_time(uint8_t *tts_name, uint32_t mode, uint64_t bt_clk, char *pattern);
  133. #define tts_manager_play(tts_name, mode) tts_manager_play_with_time(tts_name, mode, UINT64_MAX, NULL)
  134. /**
  135. * @brief start to play tts
  136. *
  137. * This routine calls to play tts blocked
  138. *
  139. * @param tts_name url for tts witch tts user want to play, this blocked caller thread
  140. *
  141. * @return 0 if invoked succsess.
  142. * @return others if invoked failed.
  143. */
  144. int tts_manager_play_block(uint8_t *tts_name);
  145. int tts_manager_play_process(void);
  146. /**
  147. * @brief stop to play tts
  148. *
  149. * This routine calls to interrupt to stop tts
  150. *
  151. * @param tts_name url for tts witch want to stop
  152. *
  153. * @return 0 if invoked succsess.
  154. * @return others if invoked failed.
  155. */
  156. int tts_manager_stop(uint8_t *tts_name);
  157. /**
  158. * @brief wait tts finised
  159. *
  160. * This routine calls to wait tts fininsed
  161. *
  162. * @param clean_all true clean all tts ,false not clean all tts
  163. *
  164. * @return N/A
  165. */
  166. void tts_manager_wait_finished(bool clean_all);
  167. /**
  168. * @brief tts manager process ui event
  169. *
  170. * This routine calls tts manager procees ui event,
  171. * find tts according tts config map id and tts file name
  172. *
  173. * @param ui_event ui event id
  174. *
  175. * @return 0 if invoked succsess.
  176. * @return others if invoked failed.
  177. */
  178. int tts_manager_process_ui_event(int ui_event);
  179. /**
  180. * @brief tts manager register tts config
  181. *
  182. * tts config map id and tts file name , and config tts mode
  183. * tts manager receive tts id and find tts information according tts config
  184. *
  185. * @return 0 if invoked succsess.
  186. * @return others if invoked failed.
  187. */
  188. int tts_manager_register_tts_config(const struct tts_config_t *config);
  189. /**
  190. * @cond INTERNAL_HIDDEN
  191. */
  192. /**
  193. * @brief tts manager add event lisener
  194. *
  195. * This routine calls add event lisener to tts manager lisener list
  196. * tts manager will notify lisener when tts is start and tts is stop
  197. *
  198. * @return 0 if invoked succsess.
  199. * @return others if invoked failed.
  200. */
  201. int tts_manager_add_event_lisener(tts_event_nodify lisener);
  202. /**
  203. * @brief tts manager remove event lisener
  204. *
  205. * This routine calls remove event lisener from tts manager lisener list
  206. *
  207. * @return 0 if invoked succsess.
  208. * @return others if invoked failed.
  209. */
  210. int tts_manager_remove_event_lisener(tts_event_nodify lisener);
  211. int key_tone_manager_init(void);
  212. int key_tone_play(const char *file_name);
  213. /**
  214. * @brief start to play tip tone
  215. *
  216. * This routine calls to play tip tone and stop the last one
  217. *
  218. * @param tip_name url for tip tone which tip user want to play
  219. * @param bt_clk time to start play in bt clock, set to UINT64_MAX if no need sync
  220. *
  221. * @return 0 if invoked succsess.
  222. * @return others if invoked failed.
  223. */
  224. int tip_manager_play(uint8_t *tip_name, uint64_t bt_clk);
  225. /**
  226. * @brief stop to play tip tone
  227. *
  228. * This routine calls to interrupt to stop tip tone
  229. *
  230. * @return 0 if invoked succsess.
  231. * @return others if invoked failed.
  232. */
  233. int tip_manager_stop(void);
  234. /**
  235. * @brief get the playing tip tone file name
  236. *
  237. * This routine calls to get the playing tip tone file name
  238. *
  239. * @return file name or null string if nothing playing
  240. */
  241. const char* tip_manager_get_playing_filename(void);
  242. /**
  243. * INTERNAL_HIDDEN @endcond
  244. */
  245. /**
  246. * @} end defgroup tts_manager_apis
  247. */
  248. #endif