lvgl_res_loader.h 21 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628
  1. /*
  2. * Copyright (c) 2021 Actions Semiconductor Co., Ltd
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. /**
  7. * @file resource loader interface
  8. */
  9. #ifndef _LVGL_RES_LOADER_H
  10. #define _LVGL_RES_LOADER_H
  11. #ifdef __cplusplus
  12. extern "C" {
  13. #endif
  14. /*********************
  15. * INCLUDES
  16. *********************/
  17. #include <lvgl/lvgl.h>
  18. #include <res_manager_api.h>
  19. /*********************
  20. * DEFINES
  21. *********************/
  22. /**********************
  23. * TYPEDEFS
  24. **********************/
  25. /** Possible resources preload states*/
  26. typedef enum
  27. {
  28. /**< Loading state*/
  29. LVGL_RES_PRELOAD_STATUS_LOADING = 0,
  30. /**< Finished state*/
  31. LVGL_RES_PRELOAD_STATUS_FINISHED,
  32. /**< Canceled state*/
  33. LVGL_RES_PRELOAD_STATUS_CANCELED,
  34. }lvgl_res_preload_status_e;
  35. /** Data structure of scene data, inited by 'lvgl_res_load_scene()' */
  36. typedef struct
  37. {
  38. /**< scene id*/
  39. uint32_t id;
  40. /**< horizontal coordinate*/
  41. lv_coord_t x;
  42. /**< vertical coordinate*/
  43. lv_coord_t y;
  44. /**< scene width*/
  45. uint16_t width;
  46. /**< scene height*/
  47. uint16_t height;
  48. /**< background color*/
  49. lv_color_t background;
  50. /**< scene opacity*/
  51. uint32_t transparence;
  52. /**< internal pointer to scene data*/
  53. resource_scene_t* scene_data;
  54. /**< internal pointer to resource global info*/
  55. resource_info_t* res_info;
  56. } lvgl_res_scene_t;
  57. /** Data structure of resource group data*/
  58. typedef struct
  59. {
  60. /**< group id*/
  61. uint32_t id;
  62. /**< horizontal coordinate, relative to parent resource */
  63. lv_coord_t x;
  64. /**< vertical coordinate, relative to parent resource*/
  65. lv_coord_t y;
  66. /**< group width */
  67. uint16_t width;
  68. /**< group height */
  69. uint16_t height;
  70. /**< internal pointer to group data*/
  71. resource_group_t* group_data;
  72. /**< internal pointer to resource global info*/
  73. resource_info_t* res_info;
  74. } lvgl_res_group_t;
  75. /** Data structure of picture region data*/
  76. typedef struct
  77. {
  78. /**< horizontal coordinate, relative to parent resource */
  79. lv_coord_t x;
  80. /**< vertical coordinate, relative to parent resource*/
  81. lv_coord_t y;
  82. /**< region width */
  83. uint16_t width;
  84. /**< region height */
  85. uint16_t height;
  86. /**< frame number of picture region*/
  87. uint32_t frames;
  88. /**< internal pointer to pic region data*/
  89. resource_picregion_t* picreg_data;
  90. /**< internal pointer to resource global info*/
  91. resource_info_t* res_info;
  92. }lvgl_res_picregion_t;
  93. /** Data structure of string resource data*/
  94. typedef struct
  95. {
  96. /**< horizontal coordinate, relative to parent resource */
  97. lv_coord_t x;
  98. /**< vertical coordinate, relative to parent resource*/
  99. lv_coord_t y;
  100. /**< text area width */
  101. uint16_t width;
  102. /**< text area height */
  103. uint16_t height;
  104. /**< text color */
  105. lv_color_t color;
  106. /** text background color*/
  107. lv_color_t bgcolor;
  108. /** text align */
  109. uint16_t align;
  110. /**< text content */
  111. uint8_t* txt;
  112. /**< internal pointer to resource global info*/
  113. resource_info_t* res_info;
  114. } lvgl_res_string_t;
  115. /**********************
  116. * GLOBAL PROTOTYPES
  117. **********************/
  118. /**
  119. * @brief resource cache clearing function
  120. *
  121. * This routine release all cached bitmaps in resource cache system ,called by user view
  122. *
  123. * @param force_clear whether free memory occupied forcefully
  124. *
  125. */
  126. void lvgl_res_cache_clear(uint32_t force_clear);
  127. /**
  128. * @brief resource loader init function
  129. *
  130. * This routine init resource loader, called after system boot only once
  131. *
  132. * @return 0 if invoked succsess.
  133. * @return -1 if invoked failed.
  134. */
  135. int lvgl_res_loader_init(uint32_t screen_w, uint32_t screen_h);
  136. /**
  137. * @brief resource loader deinit function
  138. *
  139. * This routine deinit resource loader, called before system down
  140. *
  141. */
  142. void lvgl_res_loader_deinit(void);
  143. /**
  144. * @brief force close resource files
  145. *
  146. * @param sty_file file path of .sty file
  147. * @param pic_file file path of .res file
  148. * @param str_file file path of .str file
  149. *
  150. * @return 0 if invoked succsess.
  151. * @return -1 if invoked failed.
  152. */
  153. int lvgl_res_close_resources(const char* style_path, const char* picture_path, const char* text_path);
  154. /**
  155. * @brief resource scene loading funcion
  156. *
  157. * This routine load scene data into memory for later use.
  158. *
  159. * @param scene_id hashed scene identifier
  160. * @param scene pointer to data structure to store scene data
  161. * @param language language id
  162. * @param sty_file file path of .sty file
  163. * @param pic_file file path of .res file
  164. * @param str_file file path of .str file
  165. *
  166. * @return 0 if invoked succsess.
  167. * @return -1 if invoked failed.
  168. */
  169. int lvgl_res_load_scene(uint32_t scene_id, lvgl_res_scene_t* scene, const char* sty_file, const char* pic_file, const char* str_file);
  170. /**
  171. * @brief resource group loading funcion
  172. *
  173. * This routine load resource group data from parent scene into memory for later use.
  174. *
  175. * @param scene pointer to parent scene data
  176. * @param id hashed resource group identifier
  177. * @param group pointer to data structure to store group data
  178. *
  179. * @return 0 if invoked succsess.
  180. * @return -1 if invoked failed.
  181. */
  182. int lvgl_res_load_group_from_scene(lvgl_res_scene_t* scene, uint32_t id, lvgl_res_group_t* group);
  183. /**
  184. * @brief resource group loading funcion
  185. *
  186. * This routine load resource group data from parent group into memory for later use.
  187. *
  188. * @param group pointer to parent group data
  189. * @param id hashed resource sub group identifier
  190. * @param subgroup pointer to data structure to store sub group data
  191. *
  192. * @return 0 if invoked succsess.
  193. * @return -1 if invoked failed.
  194. */
  195. int lvgl_res_load_group_from_group(lvgl_res_group_t* group, uint32_t id, lvgl_res_group_t* subgroup);
  196. /**
  197. * @brief resource pictures loading funcion
  198. *
  199. * This routine load resource pictures from parent scene into memory for later use.
  200. * picture data include bitmap data and image descriptions for lvgl to paint.
  201. *
  202. * @param scene pointer to parent scene data
  203. * @param id pointer to array of hashed resource picture identifiers
  204. * @param img pointer to image description array
  205. * @param pt pointer to point array of image positions.
  206. * @param num number of pictures to be loaded.
  207. *
  208. * @return 0 if invoked succsess.
  209. * @return -1 if invoked failed.
  210. */
  211. int lvgl_res_load_pictures_from_scene(lvgl_res_scene_t* scene, const uint32_t* id, lv_img_dsc_t* img, lv_point_t* pt, uint32_t num);
  212. /**
  213. * @brief resource strings loading funcion
  214. *
  215. * This routine load resource string from parent scene into memory for later use.
  216. *
  217. * @param scene pointer to parent scene data
  218. * @param id pointer to array of hashed resource string identifiers
  219. * @param str pointer to array for storing resource string data
  220. * @param num number of strings to be loaded.
  221. *
  222. * @return 0 if invoked succsess.
  223. * @return -1 if invoked failed.
  224. */
  225. int lvgl_res_load_strings_from_scene(lvgl_res_scene_t* scene, const uint32_t* id, lvgl_res_string_t* str, uint32_t num);
  226. /**
  227. * @brief resource pictures loading funcion
  228. *
  229. * This routine load resource pictures from parent group into memory for later use.
  230. * picture data include bitmap data and image descriptions for lvgl to paint.
  231. *
  232. * @param group pointer to parent group data
  233. * @param id pointer to array of hashed resource picture identifiers
  234. * @param img pointer to image description array
  235. * @param pt pointer to point array of image positions.
  236. * @param num number of pictures to be loaded.
  237. *
  238. * @return 0 if invoked succsess.
  239. * @return -1 if invoked failed.
  240. */
  241. int lvgl_res_load_pictures_from_group(lvgl_res_group_t* group, const uint32_t* id, lv_img_dsc_t* img, lv_point_t* pt, uint32_t num);
  242. /**
  243. * @brief resource strings loading funcion
  244. *
  245. * This routine load resource string from parent group into memory for later use.
  246. *
  247. * @param group pointer to parent group data
  248. * @param id pointer to array of hashed resource string identifiers
  249. * @param str pointer to array for storing resource string data
  250. * @param num number of strings to be loaded.
  251. *
  252. * @return 0 if invoked succsess.
  253. * @return -1 if invoked failed.
  254. */
  255. int lvgl_res_load_strings_from_group(lvgl_res_group_t* group, const uint32_t* id, lvgl_res_string_t* str, uint32_t num);
  256. /**
  257. * @brief pictures unloading funcion
  258. *
  259. * This routine unload resource pictures from resource cache system.
  260. *
  261. * @param img pointer to image description array
  262. * @param num number of pictures to be unloaded.
  263. *
  264. */
  265. void lvgl_res_unload_pictures(lv_img_dsc_t* img, uint32_t num);
  266. /**
  267. * @brief resource strings unloading funcion
  268. *
  269. * This routine unload resource strings from resource cache system.
  270. *
  271. * @param str pointer to resource string array
  272. * @param num number of strings to be unloaded.
  273. *
  274. */
  275. void lvgl_res_unload_strings(lvgl_res_string_t* str, uint32_t num);
  276. /**
  277. * @brief resource group unloading funcion
  278. *
  279. * This routine unload resource group from resource cache system.
  280. *
  281. * @param group pointer to resource group data structure to be unloaded.
  282. *
  283. */
  284. void lvgl_res_unload_group(lvgl_res_group_t* group);
  285. /**
  286. * @brief resource scene unloading funcion
  287. *
  288. * This routine unload scene data structure from resource cache system.
  289. *
  290. * @param scene pointer to resource scene data structure to be unloaded.
  291. *
  292. */
  293. void lvgl_res_unload_scene(lvgl_res_scene_t* scene);
  294. /**
  295. * @brief picregion unloading funcion
  296. *
  297. * This routine unload picregion data structure from resource cache system.
  298. *
  299. * @param picreg pointer to picregion data structure to be unloaded.
  300. *
  301. */
  302. void lvgl_res_unload_picregion(lvgl_res_picregion_t* picreg);
  303. /**
  304. * @brief picregion loading funcion
  305. *
  306. * This routine load picregion data from parent group into memory for later use.
  307. *
  308. * @param group pointer to parent group data
  309. * @param id resource identifier of the picregion
  310. * @param res_picreg pointer to picregion data structure
  311. *
  312. * @return 0 if invoked succsess.
  313. * @return -1 if invoked failed.
  314. */
  315. int lvgl_res_load_picregion_from_group(lvgl_res_group_t* group, const uint32_t id, lvgl_res_picregion_t* res_picreg);
  316. /************************************************************************************/
  317. /*!
  318. * \par Description:
  319. * 从场景中加载图片区域
  320. * \param[in] scene 场景数据指针
  321. * \param[in] id 图片区域id
  322. * \param[in] res_picreg 图片资源数据结构指针
  323. * \return 成功返回0,失败返回-1
  324. ************************************************************************************/
  325. int lvgl_res_load_picregion_from_scene(lvgl_res_scene_t* scene, const uint32_t id, lvgl_res_picregion_t* res_picreg);
  326. /************************************************************************************/
  327. /*!
  328. * \par Description:
  329. * 从图片区域中加载图片
  330. * \param[in] picreg 图片区域数据指针
  331. * \param[in] start 要加载的起始帧数
  332. * \param[in] end 要加载的结束帧数
  333. * \param[out] img 存放lvgl图片数据的数组指针
  334. * \return 成功返回0,失败返回-1
  335. ************************************************************************************/
  336. int lvgl_res_load_pictures_from_picregion(lvgl_res_picregion_t* picreg, uint32_t start, uint32_t end, lv_img_dsc_t* img);
  337. /************************************************************************************/
  338. /*!
  339. * \par Description:
  340. * 从默认路径加载图片
  341. * \param[in] group_id 第一级资源组id,为可选项,不存在时填0
  342. * \param[in] subgroup_id 第二级资源组id,为可选项,不存在时填0
  343. * \param[in] id 存放图片资源id的数组指针,为必填项
  344. * \param[out] img 存放lvgl图片数据的数组指针
  345. * \param[out] pt 存放图片坐标的数组指针
  346. * \param[in] num 数组元素个数
  347. * \return 成功返回0,失败返回-1
  348. * \note 默认路径从场景id起始,具体资源id结束,最多支持中间两级资源组
  349. ************************************************************************************/
  350. int lvgl_res_load_pictures(uint32_t group_id, uint32_t subgroup_id, uint32_t* id, lv_img_dsc_t* img, lv_point_t* pt, uint32_t num);
  351. /************************************************************************************/
  352. /*!
  353. * \par Description:
  354. * 从默认路径加载字符串
  355. * \param[in] group_id 第一级资源组id,为可选项,不存在时填0
  356. * \param[in] subgroup_id 第二级资源组id,为可选项,不存在时填0
  357. * \param[in] id 存放字符串资源id的数组指针,为必填项
  358. * \param[out] str 存放用于lvgl显示的字符串数据的数组指针
  359. * \param[in] num 数组元素个数
  360. * \return 成功返回0,失败返回-1
  361. * \note 默认路径从场景id起始,具体资源id结束,最多支持中间两级资源组
  362. ************************************************************************************/
  363. int lvgl_res_load_strings(uint32_t group_id, uint32_t subgroup_id, uint32_t* id, lvgl_res_string_t* str, uint32_t num);
  364. /************************************************************************************/
  365. /*!
  366. * \par Description:
  367. * 使用默认路径加载图片区域
  368. * \param[in] group_id 第一级资源组id,为可选项,不存在时填0
  369. * \param[in] subgroup_id 第二级资源组id,为可选项,不存在时填0
  370. * \param[in] id 图片区域id,为必填项
  371. * \param[in] res_picreg 图片资源数据结构指针
  372. * \return 成功返回0,失败返回-1
  373. * \note 默认路径从场景id起始,具体资源id结束,最多支持中间两级资源组
  374. ************************************************************************************/
  375. int lvgl_res_load_picregion(uint32_t group_id, uint32_t subgroup_id, uint32_t picreg_id, lvgl_res_picregion_t* res_picreg);
  376. /**
  377. * @brief pictures preload initiating funcion
  378. *
  379. * This routine add all or ceratin picture resources in a scene to preload list.
  380. *
  381. * @param scene_id hashed scene identifier of the scene to operate on. All picture resources would be added to preload list if resource_id is NULL.
  382. * @param resource_id list of id to add to preload list. if a group id is specified, all pictures in the group are added to preload list.
  383. * @param resource_num number of ids in id list
  384. * @param callback callback function to notify status change
  385. * @param user_data param passes to callback function
  386. * @param sty_file file path of .sty file
  387. * @param pic_file file path of .res file
  388. * @param str_file file path of .str file
  389. *
  390. * @return 0 if invoked succsess.
  391. * @return -1 if invoked failed.
  392. */
  393. int lvgl_res_preload_scene_compact(uint32_t scene_id, const uint32_t* resource_id, uint32_t resource_num, void (*callback)(int32_t, void *), void* user_data,
  394. const char* style_path, const char* picture_path, const char* text_path);
  395. /**
  396. * @brief pictures preload initiating funcion
  397. *
  398. * This routine add picture resources in a scene to preload list.
  399. *
  400. * @param scene_id hashed scene identifier of the scene to operate on
  401. * @param scene pointer to the scene data structure
  402. * @param id pointer to the array of ids of picture resources to preload
  403. * @param number picture number of the array
  404. *
  405. * @return 0 if invoked succsess.
  406. * @return -1 if invoked failed.
  407. */
  408. int lvgl_res_preload_pictures_from_scene(uint32_t scene_id, lvgl_res_scene_t* scene, const uint32_t* id, uint32_t num);
  409. /**
  410. * @brief pictures preload initiating funcion
  411. *
  412. * This routine add picture resources in a group to preload list.
  413. *
  414. * @param scene_id hashed scene identifier of the scene to operate on
  415. * @param group pointer to the group data structure
  416. * @param id pointer to the array of ids of picture resources to preload
  417. * @param number picture number of the array
  418. *
  419. * @return 0 if invoked succsess.
  420. * @return -1 if invoked failed.
  421. */
  422. int lvgl_res_preload_pictures_from_group(uint32_t scene_id, lvgl_res_group_t* group, const uint32_t* id, uint32_t num);
  423. /**
  424. * @brief picregion preload initiating funcion
  425. *
  426. * This routine add picregion frames to preload list.
  427. *
  428. * @param scene_id hashed scene identifier of the scene to operate on
  429. * @param picreg pointer to the picregion data structure
  430. * @param start start frame to preload
  431. * @param end end frame to preload
  432. *
  433. * @return 0 if invoked succsess.
  434. * @return -1 if invoked failed.
  435. */
  436. int lvgl_res_preload_pictures_from_picregion(uint32_t scene_id, lvgl_res_picregion_t* picreg, uint32_t start, uint32_t end);
  437. /**
  438. * @brief resource preload canceling funcion
  439. *
  440. * This routine cancel all preloads, and release memory already used
  441. *
  442. *
  443. * @return 0 if invoked succsess.
  444. * @return -1 if invoked failed.
  445. */
  446. int lvgl_res_preload_cancel(void);
  447. /**
  448. * @brief resource preload canceling funcion
  449. *
  450. * This routine cancel preloading of specific scene, and release memory already used
  451. *
  452. * @param scene_id hashed scene identifier of the scene to operate on
  453. *
  454. * @return 0 if invoked succsess.
  455. * @return -1 if invoked failed.
  456. */
  457. int lvgl_res_preload_cancel_scene(uint32_t scene_id);
  458. /**
  459. * @brief scene resource release funcion
  460. *
  461. * This routine releases all memory used by resources preloaded in compact form in specific scene.
  462. *
  463. * @param scene_id hashed scene identifier of the scene to operate on
  464. *
  465. */
  466. void lvgl_res_unload_scene_compact(uint32_t scene_id);
  467. /**
  468. * @brief default resource preload callback funcion
  469. *
  470. * This routine is the default callback function of resource preload thread.
  471. *
  472. * @param status current preload status
  473. * @param view_id view id to notify.(view id is cast from void* to int)
  474. *
  475. */
  476. void lvgl_res_scene_preload_default_cb_for_view(int32_t status, void *view_id);
  477. /**
  478. * @brief regular resources setting funcion
  479. *
  480. * This routine flag certain picture resources as regular,
  481. * regular pictures will remain in memory no matter the scene resources be unloaded or not
  482. *
  483. * @param scene_id hashed scene identifier of the scene to operate on
  484. * @param group_id hashed scene identifier of the group where regular resources belong to (can be NULL).
  485. * @param subgroup_id hashed scene identifier of the subgroup where regular resources belong to (can be NULL).
  486. * @param id list of ids of picture resources
  487. * @param num number of picture resources
  488. * @param style_path file path of .sty file where the scene is defined
  489. * @param picture_path file path of .res file
  490. * @param texxt_path file path of string file
  491. *
  492. * @return 0 if invoked succsess.
  493. * @return -1 if invoked failed.
  494. */
  495. int32_t lvgl_res_set_pictures_regular(uint32_t scene_id, uint32_t group_id, uint32_t subgroup_id, uint32_t* id, uint32_t num,
  496. const uint8_t* style_path, const char* picture_path, const char* text_path);
  497. /**
  498. * @brief regular resources clearing funcion
  499. *
  500. * This routine release memory of loaded regular resources in specific scene
  501. *
  502. * @param scene_id hashed scene identifier of the scene to operate on
  503. * @param style_path file path of .sty file where the scene is defined
  504. *
  505. * @return 0 if invoked succsess.
  506. * @return -1 if invoked failed.
  507. */
  508. int32_t lvgl_res_clear_regular_pictures(uint32_t scene_id, const uint8_t* style_path);
  509. /**
  510. * @brief resource loading check funcion
  511. *
  512. * This routine check whether resources of the scene loaded or not.
  513. *
  514. * @param scene_id hashed scene identifier of the scene to operate on
  515. *
  516. * @return 1 if scene is loaded.
  517. * @return 0 if scene isn't loaded.
  518. */
  519. int lvgl_res_scene_is_loaded(uint32_t scene_id);
  520. /**
  521. * @brief default resources preload setting funcion
  522. *
  523. * This routine set all or ceratin picture resources in a scene to be preload later.
  524. *
  525. * @param scene_id hashed scene identifier of the scene to operate on. All picture resources would be added to preload list if resource_id is NULL.
  526. * @param resource_id list of id to add to preload list. if a group id is specified, all pictures in the group are added to preload list.
  527. * @param resource_num number of ids in id list
  528. * @param callback callback function after preload finished, set it to NULL if there's no special need.
  529. * @param sty_file file path of .sty file
  530. * @param pic_file file path of .res file
  531. * @param str_file file path of .str file
  532. *
  533. * @return 0 if invoked succsess.
  534. * @return -1 if invoked failed.
  535. */
  536. int lvgl_res_preload_scene_compact_default_init(uint32_t scene_id, const uint32_t* resource_id, uint32_t resource_num, void (*callback)(int32_t, void *),
  537. const char* style_path, const char* picture_path, const char* text_path);
  538. /**
  539. * @brief scene default preload funcion
  540. *
  541. * This routine preload a preset scene resources, only can be used if lvgl_res_preload_scene_compact_default_init()
  542. * has been called of the same scene.
  543. *
  544. * @param scene_id hashed scene identifier of the scene to operate on
  545. * @param view_id param to be passed to callback function
  546. * @param reload_update flag of whether it's first layout or focus update, true for focus upload, false for first layout
  547. * @param load_serial flag of whethr it's a async load, true for sync serial loading, false for async loading.
  548. *
  549. * @return 0 if invoked succsess.
  550. * @return -1 if invoked failed.
  551. */
  552. int lvgl_res_preload_scene_compact_default(uint32_t scene_id, uint32_t view_id, bool reload_update, bool load_serial);
  553. int lvgl_res_set_current_string_res(const uint8_t** string_res, uint32_t string_cnt);
  554. uint8_t* lvgl_res_get_string(uint8_t* key);
  555. uint8_t* lvgl_res_get_string_from_id(int str_id);
  556. void lvgl_res_clear_decoder_cache(void);
  557. /**********************
  558. * MACROS
  559. **********************/
  560. #ifdef __cplusplus
  561. } /* extern "C" */
  562. #endif
  563. #endif /*_LVGL_RES_LOADER_H*/