call.c 9.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273
  1. /******************************************************************************/
  2. /* */
  3. /* Copyright 2023 by AICXTEK TECHNOLOGIES CO.,LTD. All rights reserved. */
  4. /* */
  5. /******************************************************************************/
  6. /**
  7. * DESCRIPTION
  8. *
  9. * This file is enter of call
  10. */
  11. /*********************
  12. * INCLUDES
  13. *********************/
  14. #include "aic_type.h"
  15. #include "aic_srv_tele.h"
  16. /**********************
  17. * STATIC VARIABLES
  18. **********************/
  19. static ts_call_info_list_t s_call_info_list = {0};
  20. /**********************
  21. * STATIC FUNCTIONS
  22. **********************/
  23. static int32_t handleReleaseResp(void *p_param, uint32_t size)
  24. {
  25. ts_call_release_resp_t *p_release_resp = NULL;
  26. if(NULL == p_param) {
  27. alog_error("handleReleaseResp: param is null");
  28. return -1;
  29. }
  30. p_release_resp = (ts_call_release_resp_t *)(p_param);
  31. if(0 != p_release_resp->ret_value) {
  32. /* release fail:
  33. popup prompt message */
  34. } else {
  35. /* release success:
  36. to ui task:to display disconnected win */
  37. }
  38. return 0;
  39. }
  40. static int32_t handleAnswerResp(void *p_param, uint32_t size)
  41. {
  42. ts_call_answer_resp_t *p_answer_resp = NULL;
  43. if(NULL == p_param) {
  44. alog_error("handleAnswerResp: param is null");
  45. return -1;
  46. }
  47. p_answer_resp = (ts_call_answer_resp_t *)(p_param);
  48. if(0 != p_answer_resp->ret_value) {
  49. /* anwser fail:
  50. to ui task:popup prompt message "auwser fail" */
  51. } else {
  52. /* anwser success:
  53. to ui task:to display connected call win */
  54. }
  55. return 0;
  56. }
  57. static int32_t handleRejectResp(void *p_param, uint32_t size)
  58. {
  59. ts_call_reject_resp_t *p_reject_resp = NULL;
  60. if(NULL == p_param) {
  61. alog_error("handleRejectResp: param is null");
  62. return -1;
  63. }
  64. p_reject_resp = (ts_call_reject_resp_t *)(p_param);
  65. if(0 != p_reject_resp->ret_value) {
  66. /* Reject fail:
  67. to ui task:popup prompt message */
  68. } else {
  69. /* Reject fail:
  70. to ui task::close incoming call win */
  71. }
  72. return 0;
  73. }
  74. static int32_t handleDialResp(void *p_param, uint32_t size)
  75. {
  76. ts_call_dial_resp_t *p_dial_resp = NULL;
  77. if(NULL == p_param) {
  78. alog_error("handleDialResp: param is null");
  79. return -1;
  80. }
  81. p_dial_resp = (ts_call_dial_resp_t *)(p_param);
  82. alog_info("[%s], dial resp val = %d,", __func__, p_dial_resp->ret_value);
  83. if(0 != p_dial_resp->ret_value) {
  84. /* dial fail:
  85. to ui task:popup prompt message */
  86. return -1;
  87. } else {
  88. /* dial success:
  89. to ui task:enter outgoing call win */
  90. }
  91. return 0;
  92. }
  93. static int32_t handleCallCallback(void *p_param, uint32_t size)
  94. {
  95. ts_event_call_t *p_call_event = NULL;
  96. int ret_audio = 0;
  97. if(NULL == p_param) {
  98. alog_error("handleCallCallback,p_param is null");
  99. return -1;
  100. }
  101. p_call_event = (ts_event_call_t *)p_param;
  102. switch (p_call_event->event_id) {
  103. case TS_EVENT_CALL_STATUS_UPDATED: {
  104. ts_call_status_updated_t *p_call_status = {0};
  105. ts_call_info_list_t call_info_list = {0};
  106. p_call_status = (ts_call_status_updated_t *)p_param;
  107. //alog_info("handleCallCallback,p_call_status status = %d", p_call_status->call_status);
  108. aic_srv_tele_call_get_call_info_list(0, &call_info_list);
  109. memcpy(&s_call_info_list, &call_info_list, sizeof(ts_call_info_list_t));
  110. switch(p_call_status->call_status) {
  111. case TS_CALL_STATUS_ACTIVE:/* remote accept call,setup call success,display connected call win(include,phone number and call duration) */
  112. /* 1.stop play local ring */
  113. /* 2.stop play local ringback */
  114. /* 3.start voice */
  115. /* 4.enter connected win and display call time*/
  116. break;
  117. case TS_CALL_STATUS_INCOMING: {/* incoming a call,phone recieve a call */
  118. alog_info("handleCallCallback,call_active: = %4 call_number = %4", call_info_list.call_number);
  119. if (1 < call_info_list.call_number) {
  120. int ret = -1;
  121. uint8_t cur_card_id = TS_CARD_ID_MAX;
  122. aic_srv_tele_sim_get_current_card(&cur_card_id);
  123. ret = aic_srv_tele_call_release(cur_card_id, p_call_status->call_idx, NULL);
  124. alog_info("handleCallCallback,aic_srv_tele_call_release return,ret = %d.\r\n", ret);
  125. return -1;
  126. } else {
  127. /* play local ring */
  128. }
  129. /* 2. to ui task,display incoming call win */
  130. break;
  131. }
  132. case TS_CALL_STATUS_RELEASED: {/*hung up call,user hungup and remote hungup,this message is coming */
  133. /* if there is other call index, do not need to stop voice */
  134. alog_info("handleCallCallback,TS_CALL_STATUS_RELEASED call_number = %d.\r\n", call_info_list.call_number);
  135. if (0 == call_info_list.call_number) {
  136. /* 1. stop voice */
  137. } else {
  138. alog_info("handleCallCallback,Release the second call, do nothing and return only.\r\n");
  139. return -1;
  140. }
  141. /* 2.release call,
  142. ui task:close call win */
  143. break;
  144. }
  145. default:
  146. break;
  147. }
  148. break;
  149. }
  150. case TS_EVENT_CALL_VOLTE_REG_STATUS_UPDATED:/* ims register state*/
  151. {
  152. ts_call_volte_reg_status_updated_t *p_volte_status = NULL;
  153. alog_info("handleCallCallback,TS_EVENT_CALL_VOLTE_REG_STATUS_UPDATED");
  154. p_volte_status = (ts_call_volte_reg_status_updated_t *)p_param;
  155. alog_info("handleCallCallback,volte status = %d", p_volte_status->volte_reg_status);
  156. if(true == p_volte_status->volte_reg_status) {
  157. /* 1.ims register success
  158. UI task:refresh volte icon. */
  159. } else {
  160. /* 1.ims register fail
  161. UI task:refresh volte icon. */
  162. }
  163. break;
  164. }
  165. case TS_EVENT_CALL_RINGBACK_VOICE: {/* play tone,maybe customed ringback by operator from network,maybe play local ringback settinged by user*/
  166. ts_call_ringback_voice_t *p_ringback_voice = NULL;
  167. p_ringback_voice = (ts_call_ringback_voice_t *)p_param;
  168. /* voice_type: 2-network ringback voice, 0-local ringback voice */
  169. /* voice_state: 1-start play, 0-stop play */
  170. alog_info("handleCallCallback,TS_EVENT_CALL_RINGBACK_VOICE arrived(voice_type = %d, voice_state = %d).\r\n",
  171. p_ringback_voice->voice_type,
  172. p_ringback_voice->voice_state);
  173. if (1 == p_ringback_voice->voice_state) {/* if voice_state is 1, start play ringback voice */
  174. /* TODO: open audio codec and start transform audio data to play ringback voice */
  175. } else {/* if voice_state is 0, no need to do things currently */
  176. alog_info("handleCallCallback,currently no need to do things for stop play ringback voice.\r\n");
  177. }
  178. break;
  179. }
  180. case TS_EVENT_CALL_SEND_DTMF_RESP: {
  181. ts_call_send_dtmf_resp_t *p_send_dtmf_resp = NULL;
  182. p_send_dtmf_resp = (ts_call_send_dtmf_resp_t *)p_param;
  183. alog_info("[%s][Info]p_send_dtmf_resp->ret_value = %d.", __func__, p_send_dtmf_resp->ret_value);
  184. break;
  185. }
  186. default:
  187. break;
  188. }
  189. return 0;
  190. }
  191. /**********************
  192. * GLOBAL FUNCTIONS
  193. **********************/
  194. void call_send_dtmf_single_char(char dtmf_char)
  195. {
  196. int32_t ret = -1;
  197. ts_call_send_dtmf_info_t send_dtmf_info = {0};
  198. uint32_t dtmf_len = 1;
  199. char dtmf[2] = {0};
  200. /* send single char */
  201. alog_info("[%s][Info]dtmf_char: %c, dtmf_len: %d.", __func__, dtmf_char, dtmf_len);
  202. sprintf(dtmf, "%c", dtmf_char);
  203. send_dtmf_info.p_dtmf_str = dtmf;
  204. send_dtmf_info.str_length = dtmf_len;
  205. send_dtmf_info.duration = 300;
  206. alog_info("[%s][Info]p_dtmf_str: %s, str_length: %d.", __func__, send_dtmf_info.p_dtmf_str, send_dtmf_info.str_length);
  207. ret = aic_srv_tele_call_send_dtmf(0, &send_dtmf_info, NULL);
  208. }
  209. void call_send_dtmf_string(char *p_dtmf_str, uint32_t dtmf_str_len)
  210. {
  211. int32_t ret = -1;
  212. ts_call_send_dtmf_info_t send_dtmf_info = {0};
  213. /* send single char */
  214. send_dtmf_info.p_dtmf_str = p_dtmf_str;
  215. send_dtmf_info.str_length = dtmf_str_len;
  216. send_dtmf_info.duration = 300;
  217. ret = aic_srv_tele_call_send_dtmf(0, &send_dtmf_info, NULL);
  218. }
  219. /* power on and call init */
  220. void app_call_init(void)
  221. {
  222. int32_t call_handle = 0;
  223. /* register service callback,receive call message(eg.incoming call) */
  224. call_handle = aic_srv_tele_call_register(NULL, handleCallCallback);
  225. }