bt_manager_map.c 7.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342
  1. /*
  2. * Copyright (c) 2019 Actions Semi Co., Inc.
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. /**
  7. * @file
  8. * @brief bt manager PBAP profile.
  9. */
  10. #define SYS_LOG_DOMAIN "bt manager"
  11. #include <os_common_api.h>
  12. #include <zephyr.h>
  13. #include <stdlib.h>
  14. #include <stdio.h>
  15. #include <string.h>
  16. #include <stream.h>
  17. #include <sys_event.h>
  18. #include <bt_manager.h>
  19. #include "bt_manager_inner.h"
  20. #include "btservice_api.h"
  21. #include <shell/shell.h>
  22. #ifdef CONFIG_ALARM_MANAGER
  23. #include <alarm_manager.h>
  24. #endif
  25. #define BTMGR_MAX_MAP_NUM 2
  26. #define MGR_MAP_INDEX_TO_APPID(x) ((x)|0x80)
  27. #define MGR_MAP_APPID_TO_INDEX(x) ((x)&(~0x80))
  28. struct btmgr_map_info {
  29. uint8_t app_id;
  30. struct btmgr_map_cb *cb;
  31. };
  32. static struct btmgr_map_info mgr_map_info[BTMGR_MAX_MAP_NUM];
  33. static struct btmgr_map_time map_tm;
  34. extern void *app_manager_get_current_app(void);
  35. static void *btmgr_map_find_free_info(void)
  36. {
  37. uint8_t i;
  38. for (i = 0; i < BTMGR_MAX_MAP_NUM; i++) {
  39. if (mgr_map_info[i].app_id == 0) {
  40. mgr_map_info[i].app_id = MGR_MAP_INDEX_TO_APPID(i);
  41. return &mgr_map_info[i];
  42. }
  43. }
  44. return NULL;
  45. }
  46. static void btmgr_map_free_info(struct btmgr_map_info *info)
  47. {
  48. memset(info, 0, sizeof(struct btmgr_map_info));
  49. }
  50. static void *btmgr_map_find_info_by_app_id(uint8_t app_id)
  51. {
  52. uint8_t i;
  53. for (i = 0; i < BTMGR_MAX_MAP_NUM; i++) {
  54. if (mgr_map_info[i].app_id == app_id) {
  55. return &mgr_map_info[i];
  56. }
  57. }
  58. return NULL;
  59. }
  60. static void btmgr_map_callback(btsrv_map_event_e event, uint8_t app_id, void *data, uint8_t size)
  61. {
  62. struct btmgr_map_info *info = btmgr_map_find_info_by_app_id(app_id);
  63. if (!info) {
  64. return;
  65. }
  66. switch (event) {
  67. case BTSRV_MAP_CONNECT_FAILED:
  68. if (info->cb->connect_failed) {
  69. info->cb->connect_failed(app_id);
  70. }
  71. btmgr_map_free_info(info);
  72. break;
  73. case BTSRV_MAP_CONNECTED:
  74. if (info->cb->connected) {
  75. info->cb->connected(app_id);
  76. }
  77. break;
  78. case BTSRV_MAP_DISCONNECTED:
  79. if (info->cb->disconnected) {
  80. info->cb->disconnected(app_id);
  81. }
  82. btmgr_map_free_info(info);
  83. break;
  84. case BTSRV_MAP_SET_PATH_FINISHED:
  85. if (info->cb->set_path_finished) {
  86. info->cb->set_path_finished(app_id);
  87. }
  88. break;
  89. case BTSRV_MAP_MESSAGES_RESULT:
  90. if (info->cb->result) {
  91. info->cb->result(app_id, data, size);
  92. }
  93. break;
  94. }
  95. }
  96. uint8_t btmgr_map_client_connect(bd_address_t *bd, char *path, struct btmgr_map_cb *cb)
  97. {
  98. int ret;
  99. struct btmgr_map_info *info;
  100. struct bt_map_connect_param param;
  101. if (!path || !cb) {
  102. return 0;
  103. }
  104. info = btmgr_map_find_free_info();
  105. if (!info) {
  106. return 0;
  107. }
  108. info->cb = cb;
  109. memcpy(&param.bd, bd, sizeof(bd_address_t));
  110. param.app_id = info->app_id;
  111. param.map_path = path;
  112. param.cb = &btmgr_map_callback;
  113. ret = btif_map_client_connect(&param);
  114. if (ret) {
  115. btmgr_map_free_info(info);
  116. return 0;
  117. }
  118. return info->app_id;
  119. }
  120. uint8_t btmgr_map_client_set_folder(uint8_t app_id,char *path, uint8_t flags)
  121. {
  122. struct bt_map_set_folder_param param;
  123. struct btmgr_map_info *info = btmgr_map_find_info_by_app_id(app_id);
  124. if (!info) {
  125. return -EIO;
  126. }
  127. param.app_id = info->app_id;
  128. param.map_path = path;
  129. param.flags = flags;
  130. return btif_map_client_set_folder(&param);
  131. }
  132. uint8_t btmgr_map_get_messsage(bd_address_t *bd, char *path, struct btmgr_map_cb *cb)
  133. {
  134. int ret;
  135. struct btmgr_map_info *info;
  136. struct bt_map_get_param param;
  137. if (!path || !cb) {
  138. return 0;
  139. }
  140. info = btmgr_map_find_free_info();
  141. if (!info) {
  142. return 0;
  143. }
  144. info->cb = cb;
  145. memcpy(&param.bd, bd, sizeof(bd_address_t));
  146. param.app_id = info->app_id;
  147. param.map_path = path;
  148. param.cb = &btmgr_map_callback;
  149. ret = btif_map_get_message(&param);
  150. if (ret) {
  151. btmgr_map_free_info(info);
  152. return 0;
  153. }
  154. return info->app_id;
  155. }
  156. int btmgr_map_get_folder_listing(uint8_t app_id)
  157. {
  158. struct btmgr_map_info *info = btmgr_map_find_info_by_app_id(app_id);
  159. if (!info) {
  160. return -EIO;
  161. }
  162. return btif_map_get_folder_listing(info->app_id);
  163. }
  164. int btmgr_map_get_messages_listing(uint8_t app_id,uint16_t max_cn,uint32_t mask)
  165. {
  166. struct btmgr_map_info *info = btmgr_map_find_info_by_app_id(app_id);
  167. struct bt_map_get_messages_listing_param param;
  168. if (!info) {
  169. return -EIO;
  170. }
  171. param.app_id = info->app_id;
  172. param.max_list_count = max_cn;
  173. param.parameter_mask = mask;
  174. return btif_map_get_messages_listing(&param);
  175. }
  176. int btmgr_map_abort_get(uint8_t app_id)
  177. {
  178. struct btmgr_map_info *info = btmgr_map_find_info_by_app_id(app_id);
  179. if (!info) {
  180. return -EIO;
  181. }
  182. return btif_map_abort_get(info->app_id);
  183. }
  184. int btmgr_map_client_disconnect(uint8_t app_id)
  185. {
  186. struct btmgr_map_info *info = btmgr_map_find_info_by_app_id(app_id);
  187. if (!info) {
  188. return -EIO;
  189. }
  190. return btif_map_client_disconnect(info->app_id);
  191. }
  192. #define BT_MAP_TIME_PATH "telecom/msg/inbox"
  193. #define MAP_APP_PARAMETER_DATETIME 1
  194. static void time_map_connect_failed_cb(uint8_t app_id)
  195. {
  196. SYS_LOG_INF("%d\n", app_id);
  197. }
  198. static void time_map_connected_cb(uint8_t app_id)
  199. {
  200. SYS_LOG_INF("%d\n", app_id);
  201. }
  202. static void time_map_disconnected_cb(uint8_t app_id)
  203. {
  204. SYS_LOG_INF("%d\n", app_id);
  205. }
  206. static void time_map_set_path_finished(uint8_t app_id)
  207. {
  208. SYS_LOG_INF("%d\n", app_id);
  209. btmgr_map_get_messages_listing(app_id, 1, 0x0A);
  210. }
  211. //20210112T200327+0800
  212. static int _bt_map_set_time(uint8_t *time)
  213. {
  214. uint8_t tmp_buf[5];
  215. memset(&map_tm, 0, sizeof(map_tm));
  216. /**year*/
  217. memset(tmp_buf, 0 , sizeof(tmp_buf));
  218. memcpy( tmp_buf, time, 4);
  219. map_tm.tm_year = atoi(tmp_buf);
  220. /**month*/
  221. memset(tmp_buf, 0 , sizeof(tmp_buf));
  222. memcpy(tmp_buf, time + 4, 2);
  223. map_tm.tm_mon = atoi(tmp_buf);
  224. /**data*/
  225. memset(tmp_buf, 0 , sizeof(tmp_buf));
  226. memcpy(tmp_buf, time + 6, 2);
  227. map_tm.tm_mday = atoi(tmp_buf);
  228. /**hour*/
  229. memset(tmp_buf, 0 , sizeof(tmp_buf));
  230. memcpy(tmp_buf, time + 9, 2);
  231. map_tm.tm_hour = atoi(tmp_buf);
  232. /**min*/
  233. memset(tmp_buf, 0 , sizeof(tmp_buf));
  234. memcpy(tmp_buf, time + 11, 2);
  235. map_tm.tm_min = atoi(tmp_buf);
  236. /**sec*/
  237. memset(tmp_buf, 0 , sizeof(tmp_buf));
  238. memcpy(tmp_buf, time + 13, 2);
  239. map_tm.tm_sec = atoi(tmp_buf);
  240. SYS_LOG_INF("time %s year %d mon %d dat %d hour %d min %d sec %d \n",time,
  241. map_tm.tm_year, map_tm.tm_mon, map_tm.tm_mday,
  242. map_tm.tm_hour,map_tm.tm_min,map_tm.tm_sec);
  243. struct app_msg msg = {0};
  244. msg.type = MSG_BT_MGR_EVENT;
  245. msg.cmd = BT_MAP_SET_TIME_EVENT;
  246. msg.ptr = &map_tm;
  247. send_async_msg(app_manager_get_current_app(), &msg);
  248. return 0;
  249. }
  250. static void time_map_result_cb(uint8_t app_id, struct mgr_map_result *result, uint8_t size)
  251. {
  252. int i;
  253. uint8_t datetime_buf[24];
  254. if(size > 0){
  255. for (i = 0; i < size; i++) {
  256. if((result[i].type == MAP_APP_PARAMETER_DATETIME) && (result[i].len < 24)){
  257. memcpy(datetime_buf,result[i].data,result[i].len);
  258. datetime_buf[result[i].len] = 0;
  259. _bt_map_set_time(datetime_buf);
  260. }
  261. }
  262. }
  263. }
  264. static const struct btmgr_map_cb time_map_cb = {
  265. .connect_failed = time_map_connect_failed_cb,
  266. .connected = time_map_connected_cb,
  267. .disconnected = time_map_disconnected_cb,
  268. .set_path_finished = time_map_set_path_finished,
  269. .result = time_map_result_cb,
  270. };
  271. int btmgr_map_time_client_connect(bd_address_t *bd)
  272. {
  273. return btmgr_map_client_connect(bd, BT_MAP_TIME_PATH, (struct btmgr_map_cb *)&time_map_cb);
  274. }