res_manager_api.h 8.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355
  1. #ifndef __RES_MANAGER_API_H__
  2. #define __RES_MANAGER_API_H__
  3. #ifndef CONFIG_SIMULATOR
  4. #include <fs/fs.h>
  5. #endif
  6. #include <os_common_api.h>
  7. typedef enum
  8. {
  9. RESOURCE_TYPE_GROUP=3,
  10. RESOURCE_TYPE_PICTURE=4,
  11. RESOURCE_TYPE_TEXT=2,
  12. RESOURCE_TYPE_PICREGION=1, //fixme
  13. } resource_type_e;
  14. typedef enum
  15. {
  16. RES_MEM_POOL_BMP=0,
  17. RES_MEM_POOL_TXT,
  18. RES_MEM_POOL_SCENE,
  19. RES_MEM_POOL_TYPE_MAX,
  20. }res_mem_pool_type_e;
  21. typedef enum
  22. {
  23. RES_MEM_SIMPLE_INNER=0,
  24. RES_MEM_SIMPLE_PRELOAD,
  25. RES_MEM_SIMPLE_COMPACT,
  26. RES_MEM_SIMPLE_TYPE_MAX,
  27. }res_mem_simple_type_e;
  28. typedef enum
  29. {
  30. RESOURCE_BITMAP_FORMAT_RGB565,
  31. RESOURCE_BITMAP_FORMAT_ARGB8565,
  32. RESOURCE_BITMAP_FORMAT_RGB888,
  33. RESOURCE_BITMAP_FORMAT_ARGB8888,
  34. RESOURCE_BITMAP_FORMAT_A8,
  35. RESOURCE_BITMAP_FORMAT_ARGB6666,
  36. RESOURCE_BITMAP_FORMAT_RAW,
  37. RESOURCE_BITMAP_FORMAT_JPEG,
  38. RESOURCE_BITMAP_FORMAT_ARGB1555,
  39. RESOURCE_BITMAP_FORMAT_INDEX8,
  40. RESOURCE_BITMAP_FORMAT_INDEX4,
  41. RESOURCE_BITMAP_FORMAT_ETC2_EAC,
  42. RESOURCE_BITMAP_FORMAT_LVGL_INDEX8,
  43. } resource_bitmap_format_e;
  44. typedef struct resource_s
  45. {
  46. uint32_t type;
  47. uint32_t id;
  48. uint32_t offset;
  49. }resource_t;
  50. typedef struct
  51. {
  52. int16_t x;
  53. int16_t y;
  54. int16_t width;
  55. int16_t height;
  56. uint32_t background;
  57. uint32_t transparence;
  58. uint32_t resource_sum;
  59. uint32_t child_offset;
  60. uint32_t scene_id;
  61. uint16_t direction;
  62. uint16_t visible;
  63. uint16_t opaque;
  64. } resource_scene_t;
  65. typedef struct
  66. {
  67. uint32_t type;
  68. uint32_t sty_id;
  69. uint32_t offset;
  70. int16_t x;
  71. int16_t y;
  72. uint16_t width;
  73. uint16_t height;
  74. uint32_t backgroud;
  75. uint32_t opaque;
  76. uint32_t resource_sum;
  77. uint32_t child_offset;
  78. } sty_group_t;
  79. typedef struct
  80. {
  81. uint32_t type;
  82. uint32_t sty_id;
  83. uint32_t offset;
  84. uint32_t id;
  85. int16_t x;
  86. int16_t y;
  87. uint16_t width;
  88. uint16_t height;
  89. uint16_t bytes_per_pixel;
  90. uint16_t format;
  91. uint32_t bmp_pos;
  92. uint32_t compress_size;
  93. uint32_t magic;
  94. } sty_picture_t;
  95. /*!
  96. *\brief
  97. data structure of string resource
  98. */
  99. typedef struct
  100. {
  101. /** resource type*/
  102. uint32_t type;
  103. /** hashed sty id*/
  104. uint32_t sty_id;
  105. /** offset to text content*/
  106. uint32_t offset;
  107. /** resource id*/
  108. uint32_t id;
  109. /** x coord to parent */
  110. int16_t x;
  111. /** y coord to parent */
  112. int16_t y;
  113. /** text area width */
  114. uint16_t width;
  115. /** text area height */
  116. uint16_t height;
  117. /** font size */
  118. uint16_t font_size;
  119. /** text algin mode */
  120. uint16_t align;
  121. /** text color */
  122. uint32_t color;
  123. /** string background color*/
  124. uint32_t bgcolor;
  125. } sty_string_t;
  126. typedef struct
  127. {
  128. uint32_t type;
  129. uint32_t sty_id;
  130. uint32_t offset;
  131. int16_t x;
  132. int16_t y;
  133. uint16_t width;
  134. uint16_t height;
  135. uint16_t format;
  136. uint16_t bytes_per_pixel;
  137. uint32_t frames;
  138. uint32_t id_offset;
  139. uint32_t magic;
  140. }sty_picregion_t;
  141. typedef struct _pic_search_param_s
  142. {
  143. #ifdef CONFIG_SIMULATOR
  144. void *res_fp;
  145. #else
  146. struct fs_file_t res_fp;
  147. #endif
  148. uint32_t id_start;
  149. uint32_t id_end;
  150. uint32_t* pic_offsets;
  151. uint32_t* compress_size;
  152. }pic_search_param_t;
  153. typedef struct style_s
  154. {
  155. #ifdef CONFIG_SIMULATOR
  156. void *style_fp;
  157. void *pic_fp;
  158. void *text_fp;
  159. #else
  160. struct fs_file_t style_fp;
  161. struct fs_file_t pic_fp;
  162. struct fs_file_t text_fp;
  163. #endif
  164. uint32_t sum;
  165. resource_scene_t* scenes;
  166. uint8_t* sty_data;
  167. uint8_t* sty_mem;
  168. uint8_t* sty_path;
  169. uint8_t* str_path;
  170. uint32_t reference;
  171. pic_search_param_t* pic_search_param;
  172. uint32_t pic_search_max_volume;
  173. #ifdef CONFIG_RES_MANAGER_USE_STYLE_MMAP
  174. uint8_t* pic_res_mmap_addr;
  175. #endif
  176. } resource_info_t;
  177. typedef struct
  178. {
  179. sty_group_t* sty_data;
  180. uint8_t reserve[8];
  181. } resource_group_t;
  182. typedef struct
  183. {
  184. sty_picture_t* sty_data;
  185. uint8_t* buffer;
  186. uint32_t regular_info;
  187. } resource_bitmap_t;
  188. typedef struct
  189. {
  190. sty_string_t* sty_data;
  191. uint8_t* buffer;
  192. uint8_t reserve[4];
  193. } resource_text_t;
  194. typedef struct
  195. {
  196. sty_picregion_t* sty_data;
  197. uint32_t regular_info;
  198. uint8_t reserve[4];
  199. }resource_picregion_t;
  200. typedef struct _compact_buffer_s
  201. {
  202. uint32_t scene_id;
  203. uint32_t free_size;
  204. uint32_t offset;
  205. uint8_t* addr;
  206. struct _compact_buffer_s* next;
  207. }compact_buffer_t;
  208. typedef struct _preload_param
  209. {
  210. uint32_t preload_type;
  211. resource_bitmap_t* bitmap;
  212. uint32_t scene_id;
  213. void (*callback)(int32_t , void*);
  214. void* param;
  215. resource_info_t* res_info;
  216. struct _preload_param* next;
  217. }preload_param_t;
  218. typedef struct
  219. {
  220. uint8_t res_path[256];
  221. #ifdef CONFIG_SIMULATOR
  222. void *pic_fp;
  223. #else
  224. struct fs_file_t pic_fp;
  225. #endif
  226. uint32_t inited;
  227. pic_search_param_t* pic_search_param;
  228. uint32_t pic_search_max_volume;
  229. #ifdef CONFIG_RES_MANAGER_USE_STYLE_MMAP
  230. uint8_t* pic_res_mmap_addr;
  231. #endif
  232. }res_bin_info_t;
  233. typedef struct
  234. {
  235. /* data */
  236. uint32_t type;
  237. uint32_t sty_id;
  238. uint32_t id;
  239. int16_t x;
  240. int16_t y;
  241. uint16_t width;
  242. uint16_t height;
  243. uint16_t bytes_per_pixel;
  244. uint16_t format;
  245. uint32_t bmp_pos;
  246. uint32_t compress_size;
  247. uint32_t magic;
  248. uint8_t* buffer;
  249. res_bin_info_t* res_info;
  250. }style_bitmap_t;
  251. typedef struct
  252. {
  253. const uint8_t* key;
  254. int value;
  255. }res_string_item_t;
  256. void res_manager_init(void);
  257. void res_manager_set_screen_size(uint32_t screen_w, uint32_t screen_h);
  258. void res_manager_clear_cache(uint32_t force_clear);
  259. resource_info_t* res_manager_open_resources( const char* style_path, const char* picture_path, const char* text_path );
  260. int32_t res_manager_set_str_file(resource_info_t* info, const char* text_path);
  261. void res_manager_close_resources( resource_info_t* res_info );
  262. resource_scene_t* res_manager_load_scene(resource_info_t* res_info, uint32_t scene_id);
  263. void res_manager_unload_scene(uint32_t scene_id, resource_scene_t* scene);
  264. void* res_manager_get_scene_child(resource_info_t*res_info, resource_scene_t* scene, uint32_t id);
  265. void* res_manager_get_group_child(resource_info_t*res_info, resource_group_t* resgroup, uint32_t id );
  266. void res_manager_release_resource(void* resource);
  267. void res_manager_free_resource_structure(void* resource);
  268. void res_manager_free_bitmap_data(void* data);
  269. void res_manager_free_text_data(void* data);
  270. void* res_manager_preload_from_scene(resource_info_t* res_info, resource_scene_t* scene, uint32_t id);
  271. resource_bitmap_t* res_manager_preload_from_group(resource_info_t* res_info, resource_group_t* group, uint32_t scene_id, uint32_t id);
  272. resource_bitmap_t* res_manager_preload_from_picregion(resource_info_t* res_info, resource_picregion_t* picreg, uint32_t frame);
  273. int res_manager_set_pictures_regular(resource_info_t* info, uint32_t scene_id, uint32_t group_id, uint32_t subgroup_id, uint32_t* id, uint32_t num);
  274. int32_t res_manager_clear_regular_pictures(const uint8_t* sty_path, uint32_t scene_id);
  275. int32_t res_manager_init_compact_buffer(uint32_t scene_id, size_t size);
  276. uint32_t res_manager_get_bitmap_buf_block_unit_size(void);
  277. int32_t res_manager_preload_bitmap(resource_info_t* res_info, resource_bitmap_t* bitmap);
  278. int32_t res_manager_preload_bitmap_compact(uint32_t scene_id, resource_info_t* res_info, resource_bitmap_t* bitmap);
  279. void* res_manager_preload_next_scene_child(resource_info_t* info, resource_scene_t* scene, uint32_t* count, uint32_t* offset);
  280. void* res_manager_preload_next_group_child(resource_info_t * info, resource_group_t* group, int* count, uint32_t* offset, uint32_t scene_id, uint32_t pargroup_id);
  281. void res_manager_preload_finish_check(uint32_t scene_id);
  282. uint32_t res_manager_scene_is_loaded(uint32_t scene_id);
  283. void res_manager_dump_info(void);
  284. resource_bitmap_t* res_manager_load_frame_from_picregion(resource_info_t* info, resource_picregion_t* picreg, uint32_t frame);
  285. #ifdef CONFIG_RES_MANAGER_IMG_DECODER
  286. int res_manager_load_bitmap_for_decoder(resource_bitmap_t* bitmap, int force);
  287. #else
  288. int res_manager_load_bitmap_for_decoder(resource_bitmap_t* bitmap);
  289. #endif
  290. void res_manager_free_bitmap_for_decoder(void* ptr);
  291. int res_manager_decode_bitmap_to_img_dsc(void* raw, void* decoded);
  292. int res_manager_set_current_string_res(const uint8_t** string_res, uint32_t string_cnt);
  293. uint8_t* res_manager_get_string(uint8_t* key);
  294. uint8_t* res_manager_get_string_from_id(int id);
  295. #ifdef CONFIG_RES_MANAGER_ENABLE_MEM_LEAK_DEBUG
  296. void res_manager_compact_buffer_check(uint32_t scene_id);
  297. #endif
  298. uint32_t res_mem_get_mem_peak(void);
  299. void res_manager_clear_decoder_cache(void);
  300. #endif /*__RES_MANAGER_API_H__*/