ui_manager.c 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778
  1. /*
  2. * Copyright (c) 2019 Actions Semiconductor Co., Ltd
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. /**
  7. * @file ui manager interface
  8. */
  9. #define SYS_LOG_NO_NEWLINE
  10. #ifdef SYS_LOG_DOMAIN
  11. #undef SYS_LOG_DOMAIN
  12. #endif
  13. #define SYS_LOG_DOMAIN "ui_manager"
  14. #include <os_common_api.h>
  15. #include <msg_manager.h>
  16. #include <mem_manager.h>
  17. #include <srv_manager.h>
  18. #include <ui_mem.h>
  19. #include <string.h>
  20. #ifdef CONFIG_UI_MANAGER
  21. #include <ui_manager.h>
  22. #endif
  23. #ifdef CONFIG_UI_SERVICE
  24. #include <ui_service.h>
  25. #endif
  26. #ifdef CONFIG_SEG_LED_MANAGER
  27. #include <seg_led_manager.h>
  28. #endif
  29. #ifdef CONFIG_ESD_MANAGER
  30. #include <esd_manager.h>
  31. #endif
  32. #ifdef CONFIG_LED_MANAGER
  33. #include <led_manager.h>
  34. #endif
  35. #ifdef CONFIG_PLAYTTS
  36. #include <tts_manager.h>
  37. #endif
  38. typedef struct {
  39. sys_slist_t view_list;
  40. } ui_manager_context_t;
  41. static ui_manager_context_t global_ui_manager;
  42. static ui_manager_context_t *_ui_manager_get_context(void)
  43. {
  44. return &global_ui_manager;
  45. }
  46. #ifndef CONFIG_UI_SERVICE
  47. static void _ui_manager_add_view(ui_view_context_t *view)
  48. {
  49. ui_view_context_t *cur_view;
  50. ui_view_context_t *pre_view = NULL;
  51. ui_manager_context_t *ui_manager = _ui_manager_get_context();
  52. SYS_SLIST_FOR_EACH_CONTAINER(&ui_manager->view_list, cur_view, node) {
  53. if (view->info.order > cur_view->info.order) {
  54. sys_slist_insert(&ui_manager->view_list, &pre_view->node, &view->node);
  55. goto end;
  56. }
  57. pre_view = cur_view;
  58. }
  59. sys_slist_append(&ui_manager->view_list, (sys_snode_t *)view);
  60. end:
  61. return;
  62. }
  63. static ui_view_context_t *_ui_manager_get_view_context(uint16_t view_id)
  64. {
  65. ui_view_context_t *view;
  66. ui_manager_context_t *ui_manager = _ui_manager_get_context();
  67. SYS_SLIST_FOR_EACH_CONTAINER(&ui_manager->view_list, view, node) {
  68. if (view->view_id == view_id)
  69. return view;
  70. }
  71. return NULL;
  72. }
  73. static int _ui_manager_get_view_index(uint16_t view_id)
  74. {
  75. ui_manager_context_t *ui_manager = _ui_manager_get_context();
  76. ui_view_context_t *view;
  77. int index = 0;
  78. SYS_SLIST_FOR_EACH_CONTAINER(&ui_manager->view_list, view, node) {
  79. if (view->view_id == view_id) {
  80. break;
  81. }
  82. index += 1;
  83. }
  84. return index;
  85. }
  86. int ui_message_dispatch(uint16_t view_id, uint8_t msg_id, uint32_t msg_data)
  87. {
  88. ui_view_context_t *view = _ui_manager_get_view_context(view_id);
  89. if (!view) {
  90. return -ESRCH;
  91. }
  92. return view->info.view_proc(view->view_id, msg_id, (void *)msg_data);
  93. }
  94. static bool _ui_manager_key_event_match(uint32_t current_state, uint32_t match_state)
  95. {
  96. return ((current_state & match_state) != 0);
  97. }
  98. int ui_manager_dispatch_key_event(uint32_t key_event)
  99. {
  100. ui_manager_context_t *ui_manager = _ui_manager_get_context();
  101. ui_view_context_t *view = NULL;
  102. uint8_t index = 0;
  103. int result = 0;
  104. uint32_t current_state = 0xffffffff;
  105. uint32_t key_type = key_event & 0xffff0000;
  106. uint16_t key_val = key_event & 0xffff;
  107. struct app_msg new_msg = { 0 };
  108. SYS_SLIST_FOR_EACH_CONTAINER(&ui_manager->view_list, view, node) {
  109. const ui_key_map_t *view_key_map = view->info.view_key_map;
  110. index = 0;
  111. current_state = 0xffffffff;
  112. if (view->info.view_get_state)
  113. current_state = view->info.view_get_state();
  114. while (view_key_map[index].key_val != KEY_RESERVED) {
  115. /* support customed sequence key for earphone, key_type could be (MULTI_CLICK + LONG_PRESS) */
  116. if (key_val == view_key_map[index].key_val &&
  117. key_type == view_key_map[index].key_type)
  118. {
  119. ui_state_match_t state_match = view->info.view_state_match;
  120. if (!state_match) {
  121. state_match = _ui_manager_key_event_match;
  122. }
  123. if (view_key_map[index].app_state == TRANSMIT_ALL_KEY_EVENT) {
  124. new_msg.type = MSG_INPUT_EVENT;
  125. new_msg.value = key_event;
  126. result = send_async_msg(view->app_id, &new_msg);
  127. return result;
  128. }
  129. if (state_match(current_state, view_key_map[index].app_state)) {
  130. new_msg.type = MSG_INPUT_EVENT;
  131. new_msg.cmd = view_key_map[index].app_msg;
  132. result = send_async_msg(view->app_id, &new_msg);
  133. return result;
  134. }
  135. }
  136. index++;
  137. }
  138. }
  139. return result;
  140. }
  141. #else
  142. int ui_manager_dispatch_key_event(uint32_t key_event)
  143. {
  144. struct app_msg msg = {
  145. .type = MSG_KEY_INPUT,
  146. .value = key_event,
  147. };
  148. return !send_async_msg(UI_SERVICE_NAME, &msg);
  149. }
  150. static int _ui_service_send_async_ext(uint16_t view_id, uint8_t msg_id,
  151. uint32_t msg_data, uint32_t msg_data2, MSG_CALLBAK msg_cb)
  152. {
  153. struct app_msg msg = {
  154. .type = MSG_UI_EVENT,
  155. .sender = view_id,
  156. .cmd = msg_id,
  157. .reserve = msg_data2 & 0xff,
  158. .__pad[0] = (msg_data2 >> 8) & 0xff,
  159. .__pad[1] = (msg_data2 >> 16) & 0xff,
  160. .__pad[2] = (msg_data2 >> 24) & 0xff,
  161. .value = msg_data,
  162. .callback = msg_cb,
  163. };
  164. return !send_async_msg(UI_SERVICE_NAME, &msg);
  165. }
  166. static int _ui_service_send_async(uint16_t view_id, uint8_t msg_id,
  167. uint32_t msg_data, uint32_t msg_data2)
  168. {
  169. return _ui_service_send_async_ext(view_id, msg_id, msg_data, msg_data2, NULL);
  170. }
  171. typedef struct {
  172. os_sem sem;
  173. MSG_CALLBAK cb;
  174. } uisrv_msg_notify_t;
  175. static void _uisrv_msg_sync_callback(struct app_msg * msg, int result, void *data)
  176. {
  177. if (msg->sync_sem) {
  178. uisrv_msg_notify_t *msg_notify =
  179. CONTAINER_OF(msg->sync_sem, uisrv_msg_notify_t, sem);
  180. if (msg_notify->cb)
  181. msg_notify->cb(msg, result, data);
  182. /* FIXME: workaround for simulator, since os_sem_give() not implemented yet */
  183. #ifndef CONFIG_SIMULATOR
  184. os_sem_give(&msg_notify->sem);
  185. #else
  186. msg_notify->cb = (void *)0xFFFFFFFF;
  187. #endif
  188. }
  189. }
  190. static int _ui_service_send_sync(uint16_t view_id, uint8_t msg_id,
  191. uint32_t msg_data, uint16_t msg_data2, MSG_CALLBAK msg_cb)
  192. {
  193. uisrv_msg_notify_t msg_notify;
  194. struct app_msg msg = {
  195. .type = MSG_UI_EVENT,
  196. .sender = view_id,
  197. .cmd = msg_id,
  198. .reserve = msg_data2 & 0xff,
  199. .__pad[0] = (msg_data2 >> 8) & 0xff,
  200. .__pad[1] = (msg_data2 >> 16) & 0xff,
  201. .__pad[2] = (msg_data2 >> 24) & 0xff,
  202. .value = msg_data,
  203. .sync_sem = &msg_notify.sem,
  204. .callback = _uisrv_msg_sync_callback,
  205. };
  206. os_sem_init(&msg_notify.sem, 0, 1);
  207. msg_notify.cb = msg_cb;
  208. if (send_async_msg(UI_SERVICE_NAME, &msg) == false) {
  209. return -ENOBUFS;
  210. }
  211. /* FIXME: workaround for simulator, since os_sem_take() not implemented yet */
  212. #ifndef CONFIG_SIMULATOR
  213. if (os_sem_take(&msg_notify.sem, OS_FOREVER)) {
  214. return -ETIME;
  215. }
  216. #else
  217. while (msg_notify.cb != (void *)0xFFFFFFFF) {
  218. os_sleep(10);
  219. }
  220. #endif
  221. return 0;
  222. }
  223. #endif /* CONFIG_UI_SERVICE */
  224. int ui_message_send_async(uint16_t view_id, uint8_t msg_id, uint32_t msg_data)
  225. {
  226. #ifdef CONFIG_UI_SERVICE
  227. SYS_LOG_DBG("view_id %d, msg_id %d, msg_data 0x%x\n", view_id, msg_id, msg_data);
  228. return _ui_service_send_async(view_id, msg_id, msg_data, 0);
  229. #else
  230. struct app_msg msg = {0};
  231. ui_view_context_t *view = _ui_manager_get_view_context(view_id);
  232. if (!view) {
  233. return -ESRCH;
  234. }
  235. msg.type = MSG_UI_EVENT;
  236. msg.sender = view_id;
  237. msg.cmd = msg_id;
  238. msg.value = msg_data;
  239. SYS_LOG_INF("view_id %d msg_id %d msg_data 0x%x\n", view_id, msg_id, msg_data);
  240. return send_async_msg("main"/*view->app_id*/, &msg);
  241. #endif /* CONFIG_UI_SERVICE */
  242. }
  243. int ui_message_send_async2(uint16_t view_id, uint8_t msg_id, uint32_t msg_data, MSG_CALLBAK msg_cb)
  244. {
  245. #ifdef CONFIG_UI_SERVICE
  246. SYS_LOG_DBG("view_id %d, msg_id %d, msg_data 0x%x, msg_cb %p\n",
  247. view_id, msg_id, msg_data, msg_cb);
  248. return _ui_service_send_async_ext(view_id, msg_id, msg_data, 0, msg_cb);
  249. #else
  250. return -ENOSYS;
  251. #endif
  252. }
  253. int ui_message_send_sync(uint16_t view_id, uint8_t msg_id, uint32_t msg_data)
  254. {
  255. #ifdef CONFIG_UI_SERVICE
  256. SYS_LOG_DBG("view_id %d, msg_id %d, msg_data 0x%x\n", view_id, msg_id, msg_data);
  257. return _ui_service_send_sync(view_id, msg_id, msg_data, 0, NULL);
  258. #else
  259. return -ENOSYS;
  260. #endif
  261. }
  262. int ui_message_send_sync2(uint16_t view_id, uint8_t msg_id, uint32_t msg_data, MSG_CALLBAK msg_cb)
  263. {
  264. #ifdef CONFIG_UI_SERVICE
  265. SYS_LOG_DBG("view_id %d, msg_id %d, msg_data 0x%x, msg_cb %p\n",
  266. view_id, msg_id, msg_data, msg_cb);
  267. return _ui_service_send_sync(view_id, msg_id, msg_data, 0, msg_cb);
  268. #else
  269. return -ENOSYS;
  270. #endif
  271. }
  272. #ifdef CONFIG_UI_SERVICE
  273. int ui_view_create(uint16_t view_id, const void *presenter, uint8_t flags)
  274. #else
  275. int ui_view_create(uint16_t view_id, ui_view_info_t *info)
  276. #endif
  277. {
  278. #ifdef CONFIG_UI_SERVICE
  279. return _ui_service_send_async(view_id, MSG_VIEW_CREATE, (uintptr_t)presenter, flags);
  280. #else
  281. ui_view_context_t *view;
  282. view = _ui_manager_get_view_context(view_id);
  283. if (view != NULL)
  284. return false;
  285. view = mem_malloc(sizeof(ui_view_context_t));
  286. if (!view)
  287. return false;
  288. memset(view, 0, sizeof(ui_view_context_t));
  289. view->view_id = view_id;
  290. view->app_id = info->app_id;
  291. memcpy(&view->info, info, sizeof(ui_view_info_t));
  292. _ui_manager_add_view(view);
  293. #ifdef CONFIG_SEG_LED_MANAGER
  294. /* unlock seg led */
  295. seg_led_manager_set_timeout_event(0, NULL);
  296. #endif
  297. ui_message_send_async(view_id, MSG_VIEW_CREATE, 0);
  298. return 0;
  299. #endif
  300. }
  301. int ui_view_layout(uint16_t view_id)
  302. {
  303. #ifdef CONFIG_UI_SERVICE
  304. return _ui_service_send_async(view_id, MSG_VIEW_LAYOUT, 0, 0);
  305. #else
  306. return 0;
  307. #endif
  308. }
  309. int ui_view_update(uint16_t view_id)
  310. {
  311. #ifdef CONFIG_UI_SERVICE
  312. return _ui_service_send_async(view_id, MSG_VIEW_UPDATE, 0, 0);
  313. #else
  314. return 0;
  315. #endif
  316. }
  317. int ui_view_delete(uint16_t view_id)
  318. {
  319. #ifdef CONFIG_UI_SERVICE
  320. return _ui_service_send_async(view_id, MSG_VIEW_DELETE, 0, 0);
  321. #else
  322. ui_manager_context_t *ui_manager = _ui_manager_get_context();
  323. ui_view_context_t *view = _ui_manager_get_view_context(view_id);
  324. if (!view)
  325. return false;
  326. SYS_LOG_INF("view_id %d\n", view_id);
  327. view->info.view_proc(view->view_id, MSG_VIEW_DELETE, 0);
  328. sys_slist_find_and_remove(&ui_manager->view_list, &view->node);
  329. mem_free(view);
  330. return true;
  331. #endif
  332. }
  333. int ui_view_show(uint16_t view_id)
  334. {
  335. #ifdef CONFIG_UI_SERVICE
  336. return _ui_service_send_async(view_id, MSG_VIEW_SET_HIDDEN, 0, 0);
  337. #else
  338. return 0;
  339. #endif
  340. }
  341. int ui_view_hide(uint16_t view_id)
  342. {
  343. #ifdef CONFIG_UI_SERVICE
  344. return _ui_service_send_async(view_id, MSG_VIEW_SET_HIDDEN, 1, 0);
  345. #else
  346. return 0;
  347. #endif
  348. }
  349. int ui_view_set_order(uint16_t view_id, uint16_t order)
  350. {
  351. #ifdef CONFIG_UI_SERVICE
  352. return _ui_service_send_async(view_id, MSG_VIEW_SET_ORDER, order, 0);
  353. #else
  354. ui_manager_context_t *ui_manager = _ui_manager_get_context();
  355. ui_view_context_t *view = _ui_manager_get_view_context(view_id);
  356. int old_index;
  357. if (!view)
  358. return false;
  359. old_index = _ui_manager_get_view_index(view_id);
  360. sys_slist_find_and_remove(&ui_manager->view_list, &view->node);
  361. view->info.order = order;
  362. _ui_manager_add_view(view);
  363. return 0;
  364. #endif
  365. }
  366. int ui_view_set_pos(uint16_t view_id, int16_t x, int16_t y)
  367. {
  368. #ifdef CONFIG_UI_SERVICE
  369. union {
  370. uint32_t val_32;
  371. int16_t val_16[2];
  372. } value;
  373. value.val_16[0] = x;
  374. value.val_16[1] = y;
  375. return _ui_service_send_async(view_id, MSG_VIEW_SET_POS, value.val_32, 0);
  376. #else
  377. return 0;
  378. #endif
  379. }
  380. int ui_view_set_drag_attribute(uint16_t view_id, uint8_t drag_attribute, bool keep_pos)
  381. {
  382. #ifdef CONFIG_UI_SERVICE
  383. return _ui_service_send_async(view_id, MSG_VIEW_SET_DRAG_ATTRIBUTE, drag_attribute, keep_pos);
  384. #else
  385. return 0;
  386. #endif
  387. }
  388. int ui_view_paint2(uint16_t view_id, uint16_t user_id, void *user_data)
  389. {
  390. #ifdef CONFIG_UI_SERVICE
  391. return _ui_service_send_async(view_id, MSG_VIEW_PAINT, (uintptr_t)user_data, user_id);
  392. #else
  393. return 0;
  394. #endif
  395. }
  396. int ui_view_refresh(uint16_t view_id)
  397. {
  398. #ifdef CONFIG_UI_SERVICE
  399. return _ui_service_send_async(view_id, MSG_VIEW_REFRESH, 0, 0);
  400. #else
  401. return 0;
  402. #endif
  403. }
  404. int ui_view_pause(uint16_t view_id)
  405. {
  406. #ifdef CONFIG_UI_SERVICE
  407. return _ui_service_send_async(view_id, MSG_VIEW_PAUSE, 0, 0);
  408. #else
  409. return 0;
  410. #endif
  411. }
  412. int ui_view_resume(uint16_t view_id)
  413. {
  414. #ifdef CONFIG_UI_SERVICE
  415. return _ui_service_send_async(view_id, MSG_VIEW_RESUME, 0, 0);
  416. #else
  417. return 0;
  418. #endif
  419. }
  420. int ui_view_send_user_msg2(uint16_t view_id, uint8_t msg_id, uint16_t user_id, void * user_data)
  421. {
  422. #ifdef CONFIG_UI_SERVICE
  423. if (msg_id >= MSG_VIEW_USER_OFFSET) {
  424. return _ui_service_send_async(view_id, msg_id, (uintptr_t)user_data, user_id);
  425. }
  426. return -EINVAL;
  427. #else
  428. return 0;
  429. #endif
  430. }
  431. int ui_msgbox_popup(uint16_t msgbox_id, void *user_data)
  432. {
  433. #ifdef CONFIG_UI_SERVICE
  434. return _ui_service_send_async(msgbox_id, MSG_MSGBOX_POPUP, (uintptr_t)user_data, 0);
  435. #else
  436. return 0;
  437. #endif
  438. }
  439. int ui_msgbox_close(uint16_t msgbox_id, bool bsync)
  440. {
  441. #ifdef CONFIG_UI_SERVICE
  442. if (bsync) {
  443. return _ui_service_send_sync(msgbox_id, MSG_MSGBOX_CLOSE, 0, 0, NULL);
  444. } else {
  445. return _ui_service_send_async(msgbox_id, MSG_MSGBOX_CLOSE, 0, 0);
  446. }
  447. #else
  448. return 0;
  449. #endif
  450. }
  451. int ui_msgbox_paint(uint16_t msgbox_id, void * user_data)
  452. {
  453. #ifdef CONFIG_UI_SERVICE
  454. return _ui_service_send_async(msgbox_id, MSG_MSGBOX_PAINT, (uintptr_t)user_data, 0);
  455. #else
  456. return 0;
  457. #endif
  458. }
  459. #ifdef CONFIG_UI_SERVICE
  460. #ifndef CONFIG_SIMULATOR
  461. __aligned(ARCH_STACK_PTR_ALIGN) __in_section_unique(uisrv.noinit.stack)
  462. static char uisrv_stack_area[CONFIG_UISRV_STACKSIZE];
  463. extern void _ui_service_main_loop(void *parama1, void *parama2, void *parama3);
  464. SERVICE_DEFINE(ui_service, uisrv_stack_area, sizeof(uisrv_stack_area), \
  465. CONFIG_UISRV_PRIORITY, BACKGROUND_APP, NULL, NULL, NULL, \
  466. _ui_service_main_loop);
  467. #endif /* CONFIG_SIMULATOR */
  468. static void *uisrv_tid;
  469. bool is_in_ui_thread(void)
  470. {
  471. return os_current_get() == uisrv_tid;
  472. }
  473. static int _ui_service_start(void)
  474. {
  475. static const ui_srv_init_param_t init_param = {
  476. #if defined(CONFIG_VIEW_SCROLL_MEM_SAVE)
  477. .scrl_mem_mode = VIEW_SCROLL_MEM_SAVE,
  478. #elif defined(CONFIG_VIEW_SCROLL_MEM_LOWEST)
  479. .scrl_mem_mode = VIEW_SCROLL_MEM_LOWEST,
  480. #else
  481. .scrl_mem_mode = VIEW_SCROLL_MEM_DEF,
  482. #endif
  483. .view_ovl_opa = CONFIG_UI_VIEW_OVERLAY_OPA,
  484. .trans_buf_cnt = CONFIG_UI_EFFECT_TRANSFORM_BUFFER_COUNT,
  485. };
  486. struct app_msg msg = {0};
  487. if (!srv_manager_check_service_is_actived(UI_SERVICE_NAME)) {
  488. if (srv_manager_active_service(UI_SERVICE_NAME)) {
  489. uisrv_tid = srv_manager_get_servicetid(UI_SERVICE_NAME);
  490. SYS_LOG_DBG("ui service start ok\n");
  491. } else {
  492. SYS_LOG_ERR("ui service start failed\n");
  493. return -ESRCH;
  494. }
  495. }
  496. msg.type = MSG_INIT_APP;
  497. msg.ptr = (void *)&init_param;
  498. return !send_async_msg(UI_SERVICE_NAME, &msg);
  499. }
  500. static int _ui_service_stop(void)
  501. {
  502. int ret = 0;
  503. if (!srv_manager_check_service_is_actived(UI_SERVICE_NAME)) {
  504. SYS_LOG_ERR("ui service_stop failed\n");
  505. ret = -ESRCH;
  506. goto exit;
  507. }
  508. if (!srv_manager_exit_service(UI_SERVICE_NAME)) {
  509. ret = -ETIMEDOUT;
  510. goto exit;
  511. }
  512. SYS_LOG_DBG("ui service_stop success!\n");
  513. exit:
  514. return ret;
  515. }
  516. #endif /* CONFIG_UI_SERVICE */
  517. int ui_manager_init(void)
  518. {
  519. ui_manager_context_t *ui_manager = _ui_manager_get_context();
  520. memset(ui_manager, 0, sizeof(ui_manager_context_t));
  521. #ifdef CONFIG_UI_MEMORY_MANAGER
  522. ui_mem_init();
  523. #endif
  524. #ifdef CONFIG_UI_SERVICE
  525. _ui_service_start();
  526. #else
  527. sys_slist_init(&ui_manager->view_list);
  528. #endif
  529. #ifdef CONFIG_LED_MANAGER
  530. led_manager_init();
  531. #endif
  532. #ifdef CONFIG_SEG_LED_MANAGER
  533. seg_led_manager_init();
  534. #endif
  535. return 0;
  536. }
  537. int ui_manager_exit(void)
  538. {
  539. ui_manager_context_t *ui_manager = _ui_manager_get_context();
  540. if (!ui_manager)
  541. return -ESRCH;
  542. #ifdef CONFIG_LED_MANAGER
  543. led_manager_deinit();
  544. #endif
  545. #ifdef CONFIG_SEG_LED_MANAGER
  546. seg_led_manager_deinit();
  547. #endif
  548. #ifdef CONFIG_UI_SERVICE
  549. _ui_service_stop();
  550. #endif
  551. return 0;
  552. }
  553. int ui_manager_lock_display(void)
  554. {
  555. #ifdef CONFIG_UI_SERVICE
  556. return _ui_service_send_async(0, MSG_DISPLAY_LOCK, 1, 0);
  557. #else
  558. return 0;
  559. #endif
  560. }
  561. int ui_manager_unlock_display(void)
  562. {
  563. #ifdef CONFIG_UI_SERVICE
  564. return _ui_service_send_async(0, MSG_DISPLAY_LOCK, 0, 0);
  565. #else
  566. return 0;
  567. #endif
  568. }
  569. int ui_manager_register_callback(uint8_t cb_id, void * cb_func)
  570. {
  571. #ifdef CONFIG_UI_SERVICE
  572. return _ui_service_send_async(0, MSG_VIEW_SET_CALLBACK, (uintptr_t)cb_func, cb_id);
  573. #else
  574. return 0;
  575. #endif
  576. }
  577. int ui_manager_set_max_buffer_count(uint8_t buf_count)
  578. {
  579. #ifdef CONFIG_UI_SERVICE
  580. return _ui_service_send_async(0, MSG_VIEW_SET_BUF_COUNT, buf_count, 0);
  581. #else
  582. return -ENOSYS;
  583. #endif
  584. }
  585. int ui_gesture_set_scroll_dir(uint8_t dir)
  586. {
  587. #ifdef CONFIG_UI_SERVICE
  588. if (is_in_ui_thread()) {
  589. extern void gesture_manager_set_scroll_dir(uint8_t dir);
  590. gesture_manager_set_scroll_dir(dir);
  591. return 0;
  592. } else {
  593. return _ui_service_send_async(0, MSG_GESTURE_SET_SCROLL_DIR, dir, 0);
  594. }
  595. #else
  596. return -ENOSYS;
  597. #endif
  598. }
  599. int ui_gesture_lock_scroll(void)
  600. {
  601. #ifdef CONFIG_UI_SERVICE
  602. if (is_in_ui_thread()) {
  603. extern void gesture_manager_lock_scroll(void);
  604. gesture_manager_lock_scroll();
  605. return 0;
  606. } else {
  607. return _ui_service_send_sync(0, MSG_GESTURE_LOCK_SCROLL, 1, 0, NULL);
  608. }
  609. #else
  610. return -ENOSYS;
  611. #endif
  612. }
  613. int ui_gesture_unlock_scroll(void)
  614. {
  615. #ifdef CONFIG_UI_SERVICE
  616. if (is_in_ui_thread()) {
  617. extern void gesture_manager_unlock_scroll(void);
  618. gesture_manager_unlock_scroll();
  619. return 0;
  620. } else {
  621. return _ui_service_send_async(0, MSG_GESTURE_LOCK_SCROLL, 0, 0);
  622. }
  623. #else
  624. return -ENOSYS;
  625. #endif
  626. }
  627. int ui_gesture_wait_release(void)
  628. {
  629. #ifdef CONFIG_UI_SERVICE
  630. if (is_in_ui_thread()) {
  631. extern void gesture_manager_wait_release(void);
  632. gesture_manager_wait_release();
  633. return 0;
  634. } else {
  635. return _ui_service_send_async(0, MSG_GESTURE_WAIT_RELEASE, 0, 0);
  636. }
  637. #else
  638. return -ENOSYS;
  639. #endif
  640. }