oss_util.h 9.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287
  1. #ifndef LIBOSS_UTIL_H
  2. #define LIBOSS_UTIL_H
  3. #include "aos_string.h"
  4. #include "aos_transport.h"
  5. #include "aos_status.h"
  6. #include "oss_define.h"
  7. #include "oss_resumable.h"
  8. OSS_CPP_START
  9. #define init_sts_token_header() do { \
  10. if (options->config->sts_token.data != NULL) {\
  11. apr_table_set(headers, OSS_STS_SECURITY_TOKEN, options->config->sts_token.data);\
  12. }\
  13. } while(0)
  14. /**
  15. * @brief check hostname ends with specific oss domain suffix.
  16. **/
  17. int is_oss_domain(const aos_string_t *str);
  18. /**
  19. * @brief check hostname is ip.
  20. **/
  21. int is_valid_ip(const char *str);
  22. /**
  23. * @brief get oss acl str according oss_acl
  24. * @param[in] oss_acl the oss bucket acl
  25. * @return oss acl str
  26. **/
  27. const char *get_oss_acl_str(oss_acl_e oss_acl);
  28. /**
  29. * @brief create oss config including host, port, access_key_id, access_key_secret, is_oss_domain
  30. **/
  31. oss_config_t *oss_config_create(aos_pool_t *p);
  32. /**
  33. * @brief evaluate config to curl
  34. **/
  35. void oss_config_resolve(aos_pool_t *pool, oss_config_t *config, aos_http_controller_t *ctl);
  36. /**
  37. * @brief create oss request options
  38. * @return oss request options
  39. **/
  40. oss_request_options_t *oss_request_options_create(aos_pool_t *p);
  41. /**
  42. * @brief init oss request
  43. **/
  44. void oss_init_request(const oss_request_options_t *options, http_method_e method,
  45. aos_http_request_t **req, aos_table_t *params, aos_table_t *headers, aos_http_response_t **resp);
  46. /**
  47. * @brief init oss bucket request
  48. **/
  49. void oss_init_bucket_request(const oss_request_options_t *options, const aos_string_t *bucket,
  50. http_method_e method, aos_http_request_t **req, aos_table_t *params, aos_table_t *headers,
  51. aos_http_response_t **resp);
  52. /**
  53. * @brief init oss object request
  54. **/
  55. void oss_init_object_request(const oss_request_options_t *options, const aos_string_t *bucket,
  56. const aos_string_t *object, http_method_e method, aos_http_request_t **req,
  57. aos_table_t *params, aos_table_t *headers, oss_progress_callback cb, uint64_t initcrc,
  58. aos_http_response_t **resp);
  59. /**
  60. * @brief init oss live channel request
  61. **/
  62. void oss_init_live_channel_request(const oss_request_options_t *options,
  63. const aos_string_t *bucket, const aos_string_t *live_channel,
  64. http_method_e method, aos_http_request_t **req, aos_table_t *params,
  65. aos_table_t *headers, aos_http_response_t **resp);
  66. /**
  67. * @brief init oss request with signed_url
  68. **/
  69. void oss_init_signed_url_request(const oss_request_options_t *options, const aos_string_t *signed_url,
  70. http_method_e method, aos_http_request_t **req,
  71. aos_table_t *params, aos_table_t *headers, aos_http_response_t **resp);
  72. /**
  73. * @brief oss send request
  74. **/
  75. aos_status_t *oss_send_request(aos_http_controller_t *ctl, aos_http_request_t *req,
  76. aos_http_response_t *resp);
  77. /**
  78. * @brief process oss request including sign request, send request, get response
  79. **/
  80. aos_status_t *oss_process_request(const oss_request_options_t *options,
  81. aos_http_request_t *req, aos_http_response_t *resp);
  82. /**
  83. * @brief process oss request with signed_url including send request, get response
  84. **/
  85. aos_status_t *oss_process_signed_request(const oss_request_options_t *options,
  86. aos_http_request_t *req, aos_http_response_t *resp);
  87. /**
  88. * @brief get object uri using third-level domain if hostname is oss domain, otherwise second-level domain
  89. **/
  90. void oss_get_object_uri(const oss_request_options_t *options,
  91. const aos_string_t *bucket,
  92. const aos_string_t *object,
  93. aos_http_request_t *req);
  94. /**
  95. * @brief bucket uri using third-level domain if hostname is oss domain, otherwise second-level domain
  96. **/
  97. void oss_get_bucket_uri(const oss_request_options_t *options,
  98. const aos_string_t *bucket,
  99. aos_http_request_t *req);
  100. /**
  101. * @brief get rtmp uri using third-level domain if hostname is oss domain, otherwise second-level domain
  102. **/
  103. void oss_get_rtmp_uri(const oss_request_options_t *options,
  104. const aos_string_t *bucket,
  105. const aos_string_t *live_channel_id,
  106. aos_http_request_t *req);
  107. /**
  108. * @brief write body content into oss request body from buffer
  109. **/
  110. void oss_write_request_body_from_buffer(aos_list_t *buffer, aos_http_request_t *req);
  111. /**
  112. * @brief write body content into oss request body from file
  113. **/
  114. int oss_write_request_body_from_file(aos_pool_t *p, const aos_string_t *filename, aos_http_request_t *req);
  115. /**
  116. * @brief write body content into oss request body from multipart upload file
  117. **/
  118. int oss_write_request_body_from_upload_file(aos_pool_t *p, oss_upload_file_t *upload_file, aos_http_request_t *req);
  119. /**
  120. * @brief read body content from oss response body to buffer
  121. **/
  122. void oss_fill_read_response_body(aos_http_response_t *resp, aos_list_t *buffer);
  123. /**
  124. * @brief read body content from oss response body to file
  125. **/
  126. int oss_init_read_response_body_to_file(aos_pool_t *p, const aos_string_t *filename, aos_http_response_t *resp);
  127. /**
  128. * @brief read response header if headers is not null
  129. **/
  130. void oss_fill_read_response_header(aos_http_response_t *resp, aos_table_t **headers);
  131. /**
  132. * @brief create oss api result content
  133. * @return oss api result content
  134. **/
  135. void *oss_create_api_result_content(aos_pool_t *p, size_t size);
  136. oss_list_object_content_t *oss_create_list_object_content(aos_pool_t *p);
  137. oss_list_object_common_prefix_t *oss_create_list_object_common_prefix(aos_pool_t *p);
  138. oss_list_part_content_t *oss_create_list_part_content(aos_pool_t *p);
  139. oss_list_multipart_upload_content_t *oss_create_list_multipart_upload_content(aos_pool_t *p);
  140. oss_complete_part_content_t *oss_create_complete_part_content(aos_pool_t *p);
  141. /**
  142. * @brief create oss api list parameters
  143. * @return oss api list parameters
  144. **/
  145. oss_list_object_params_t *oss_create_list_object_params(aos_pool_t *p);
  146. oss_list_upload_part_params_t *oss_create_list_upload_part_params(aos_pool_t *p);
  147. oss_list_multipart_upload_params_t *oss_create_list_multipart_upload_params(aos_pool_t *p);
  148. oss_list_live_channel_params_t *oss_create_list_live_channel_params(aos_pool_t *p);
  149. /**
  150. * @brief create upload part copy params
  151. * @return upload part copy params struct for upload part copy
  152. **/
  153. oss_upload_part_copy_params_t *oss_create_upload_part_copy_params(aos_pool_t *p);
  154. /**
  155. * @brief create upload file struct for range multipart upload
  156. * @return upload file struct for range multipart upload
  157. **/
  158. oss_upload_file_t *oss_create_upload_file(aos_pool_t *p);
  159. /**
  160. * @brief create lifecycle rule content
  161. * @return lifecycle rule content
  162. **/
  163. oss_lifecycle_rule_content_t *oss_create_lifecycle_rule_content(aos_pool_t *p);
  164. /**
  165. * @brief create oss object content for delete objects
  166. * @return oss object content
  167. **/
  168. oss_object_key_t *oss_create_oss_object_key(aos_pool_t *p);
  169. /**
  170. * @brief create oss live channel publish url content for delete objects
  171. * @return oss live channel publish url content
  172. **/
  173. oss_live_channel_publish_url_t *oss_create_live_channel_publish_url(aos_pool_t *p);
  174. /**
  175. * @brief create oss live channel play url content for delete objects
  176. * @return oss live channel play url content
  177. **/
  178. oss_live_channel_play_url_t *oss_create_live_channel_play_url(aos_pool_t *p);
  179. /**
  180. * @brief create oss list live channel content for delete objects
  181. * @return oss list live channel content
  182. **/
  183. oss_live_channel_content_t *oss_create_list_live_channel_content(aos_pool_t *p);
  184. /**
  185. * @brief create oss live recored content for delete objects
  186. * @return oss live record content
  187. **/
  188. oss_live_record_content_t *oss_create_live_record_content(aos_pool_t *p);
  189. /**
  190. * @brief create live channel configuration content
  191. * @return live channel configuration content
  192. **/
  193. oss_live_channel_configuration_t *oss_create_live_channel_configuration_content(aos_pool_t *p);
  194. /**
  195. * @brief create oss checkpoint content
  196. * @return oss checkpoint content
  197. **/
  198. oss_checkpoint_t *oss_create_checkpoint_content(aos_pool_t *p);
  199. /**
  200. * @brief create oss resumable clt params content
  201. * @return oss checkpoint content
  202. **/
  203. oss_resumable_clt_params_t *oss_create_resumable_clt_params_content(aos_pool_t *p, int64_t part_size, int32_t thread_num,
  204. int enable_checkpoint, const char *checkpoint_path);
  205. /**
  206. * @brief get part size for multipart upload
  207. **/
  208. void oss_get_part_size(int64_t filesize, int64_t *part_size);
  209. /**
  210. * @brief compare function for part sort
  211. **/
  212. int part_sort_cmp(const void *a, const void *b);
  213. /**
  214. * @brief set content type for object according to objectname
  215. * @return oss content type
  216. **/
  217. char *get_content_type(const char *name);
  218. char *get_content_type_by_suffix(const char *suffix);
  219. /**
  220. * @brief set content type for object according to filename
  221. **/
  222. void set_content_type(const char* filename, const char* key, aos_table_t *headers);
  223. aos_table_t* aos_table_create_if_null(const oss_request_options_t *options,
  224. aos_table_t *table, int table_size);
  225. int is_enable_crc(const oss_request_options_t *options);
  226. int has_crc_in_response(const aos_http_response_t *resp);
  227. int has_range_or_process_in_request(const aos_http_request_t *req) ;
  228. /**
  229. * @brief check crc consistent between client and server
  230. **/
  231. int oss_check_crc_consistent(uint64_t crc, const apr_table_t *resp_headers, aos_status_t *s);
  232. int oss_get_temporary_file_name(aos_pool_t *p, const aos_string_t *filename, aos_string_t *temp_file_name);
  233. int oss_temp_file_rename(aos_status_t *s, const char *from_path, const char *to_path, apr_pool_t *pool);
  234. OSS_CPP_END
  235. #endif