oss_define.h 8.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318
  1. #ifndef LIBOSS_DEFINE_H
  2. #define LIBOSS_DEFINE_H
  3. #include "aos_string.h"
  4. #include "aos_list.h"
  5. #include "aos_transport.h"
  6. #ifdef __cplusplus
  7. # define OSS_CPP_START extern "C" {
  8. # define OSS_CPP_END }
  9. #else
  10. # define OSS_CPP_START
  11. # define OSS_CPP_END
  12. #endif
  13. #define aos_xml_error_status_set(STATUS, RES) do { \
  14. aos_status_set(STATUS, RES, AOS_XML_PARSE_ERROR_CODE, NULL); \
  15. } while(0)
  16. #define aos_file_error_status_set(STATUS, RES) do { \
  17. aos_status_set(STATUS, RES, AOS_OPEN_FILE_ERROR_CODE, NULL); \
  18. } while(0)
  19. #define aos_inconsistent_error_status_set(STATUS, RES) do { \
  20. aos_status_set(STATUS, RES, AOS_INCONSISTENT_ERROR_CODE, NULL); \
  21. } while(0)
  22. extern const char OSS_CANNONICALIZED_HEADER_ACL[];
  23. extern const char OSS_CANNONICALIZED_HEADER_SOURCE[];
  24. extern const char OSS_CANNONICALIZED_HEADER_PREFIX[];
  25. extern const char OSS_CANNONICALIZED_HEADER_DATE[];
  26. extern const char OSS_CANNONICALIZED_HEADER_COPY_SOURCE[];
  27. extern const char OSS_CONTENT_MD5[];
  28. extern const char OSS_CONTENT_TYPE[];
  29. extern const char OSS_CONTENT_LENGTH[];
  30. extern const char OSS_DATE[];
  31. extern const char OSS_AUTHORIZATION[];
  32. extern const char OSS_ACCESSKEYID[];
  33. extern const char OSS_EXPECT[];
  34. extern const char OSS_EXPIRES[];
  35. extern const char OSS_SIGNATURE[];
  36. extern const char OSS_ACL[];
  37. extern const char OSS_PREFIX[];
  38. extern const char OSS_DELIMITER[];
  39. extern const char OSS_MARKER[];
  40. extern const char OSS_MAX_KEYS[];
  41. extern const char OSS_UPLOADS[];
  42. extern const char OSS_UPLOAD_ID[];
  43. extern const char OSS_MAX_PARTS[];
  44. extern const char OSS_KEY_MARKER[];
  45. extern const char OSS_UPLOAD_ID_MARKER[];
  46. extern const char OSS_MAX_UPLOADS[];
  47. extern const char OSS_PARTNUMBER[];
  48. extern const char OSS_PART_NUMBER_MARKER[];
  49. extern const char OSS_APPEND[];
  50. extern const char OSS_POSITION[];
  51. extern const char OSS_MULTIPART_CONTENT_TYPE[];
  52. extern const char OSS_COPY_SOURCE[];
  53. extern const char OSS_COPY_SOURCE_RANGE[];
  54. extern const char OSS_SECURITY_TOKEN[];
  55. extern const char OSS_STS_SECURITY_TOKEN[];
  56. extern const char OSS_OBJECT_TYPE[];
  57. extern const char OSS_NEXT_APPEND_POSITION[];
  58. extern const char OSS_HASH_CRC64_ECMA[];
  59. extern const char OSS_CALLBACK[];
  60. extern const char OSS_CALLBACK_VAR[];
  61. extern const char OSS_PROCESS[];
  62. extern const char OSS_LIFECYCLE[];
  63. extern const char OSS_DELETE[];
  64. extern const char OSS_YES[];
  65. extern const char OSS_OBJECT_TYPE_NORMAL[];
  66. extern const char OSS_OBJECT_TYPE_APPENDABLE[];
  67. extern const char OSS_LIVE_CHANNEL[];
  68. extern const char OSS_LIVE_CHANNEL_STATUS[];
  69. extern const char OSS_COMP[];
  70. extern const char OSS_LIVE_CHANNEL_STAT[];
  71. extern const char OSS_LIVE_CHANNEL_HISTORY[];
  72. extern const char OSS_LIVE_CHANNEL_VOD[];
  73. extern const char OSS_LIVE_CHANNEL_START_TIME[];
  74. extern const char OSS_LIVE_CHANNEL_END_TIME[];
  75. extern const char OSS_PLAY_LIST_NAME[];
  76. extern const char LIVE_CHANNEL_STATUS_DISABLED[];
  77. extern const char LIVE_CHANNEL_STATUS_ENABLED[];
  78. extern const char LIVE_CHANNEL_STATUS_IDLE[];
  79. extern const char LIVE_CHANNEL_STATUS_LIVE[];
  80. extern const char LIVE_CHANNEL_DEFAULT_TYPE[];
  81. extern const char LIVE_CHANNEL_DEFAULT_PLAYLIST[];
  82. extern const int LIVE_CHANNEL_DEFAULT_FRAG_DURATION;
  83. extern const int LIVE_CHANNEL_DEFAULT_FRAG_COUNT;
  84. extern const int OSS_MAX_PART_NUM;
  85. extern const int OSS_PER_RET_NUM;
  86. extern const int MAX_SUFFIX_LEN;
  87. typedef struct oss_lib_curl_initializer_s oss_lib_curl_initializer_t;
  88. /**
  89. * oss_acl is an ACL that can be specified when an object is created or
  90. * updated. Each canned ACL has a predefined value when expanded to a full
  91. * set of OSS ACL Grants.
  92. * Private canned ACL gives the owner FULL_CONTROL and no other permissions
  93. * are issued
  94. * Public Read canned ACL gives the owner FULL_CONTROL and all users Read
  95. * permission
  96. * Public Read Write canned ACL gives the owner FULL_CONTROL and all users
  97. * Read and Write permission
  98. **/
  99. typedef enum {
  100. OSS_ACL_PRIVATE = 0, /*< private */
  101. OSS_ACL_PUBLIC_READ = 1, /*< public read */
  102. OSS_ACL_PUBLIC_READ_WRITE = 2 /*< public read write */
  103. } oss_acl_e;
  104. typedef struct {
  105. aos_string_t endpoint;
  106. aos_string_t access_key_id;
  107. aos_string_t access_key_secret;
  108. aos_string_t sts_token;
  109. int is_cname;
  110. aos_string_t proxy_host;
  111. int proxy_port;
  112. aos_string_t proxy_user;
  113. aos_string_t proxy_passwd;
  114. } oss_config_t;
  115. typedef struct {
  116. oss_config_t *config;
  117. aos_http_controller_t *ctl; /*< aos http controller, more see aos_transport.h */
  118. aos_pool_t *pool;
  119. } oss_request_options_t;
  120. typedef struct {
  121. aos_list_t node;
  122. aos_string_t key;
  123. aos_string_t last_modified;
  124. aos_string_t etag;
  125. aos_string_t size;
  126. aos_string_t owner_id;
  127. aos_string_t owner_display_name;
  128. } oss_list_object_content_t;
  129. typedef struct {
  130. aos_list_t node;
  131. aos_string_t prefix;
  132. } oss_list_object_common_prefix_t;
  133. typedef struct {
  134. aos_list_t node;
  135. aos_string_t key;
  136. aos_string_t upload_id;
  137. aos_string_t initiated;
  138. } oss_list_multipart_upload_content_t;
  139. typedef struct {
  140. aos_list_t node;
  141. aos_string_t part_number;
  142. aos_string_t size;
  143. aos_string_t etag;
  144. aos_string_t last_modified;
  145. } oss_list_part_content_t;
  146. typedef struct {
  147. aos_list_t node;
  148. aos_string_t part_number;
  149. aos_string_t etag;
  150. } oss_complete_part_content_t;
  151. typedef struct {
  152. int part_num;
  153. char *etag;
  154. } oss_upload_part_t;
  155. typedef struct {
  156. aos_string_t prefix;
  157. aos_string_t marker;
  158. aos_string_t delimiter;
  159. int max_ret;
  160. int truncated;
  161. aos_string_t next_marker;
  162. aos_list_t object_list;
  163. aos_list_t common_prefix_list;
  164. } oss_list_object_params_t;
  165. typedef struct {
  166. aos_string_t part_number_marker;
  167. int max_ret;
  168. int truncated;
  169. aos_string_t next_part_number_marker;
  170. aos_list_t part_list;
  171. } oss_list_upload_part_params_t;
  172. typedef struct {
  173. aos_string_t prefix;
  174. aos_string_t key_marker;
  175. aos_string_t upload_id_marker;
  176. aos_string_t delimiter;
  177. int max_ret;
  178. int truncated;
  179. aos_string_t next_key_marker;
  180. aos_string_t next_upload_id_marker;
  181. aos_list_t upload_list;
  182. } oss_list_multipart_upload_params_t;
  183. typedef struct {
  184. aos_string_t source_bucket;
  185. aos_string_t source_object;
  186. aos_string_t dest_bucket;
  187. aos_string_t dest_object;
  188. aos_string_t upload_id;
  189. int part_num;
  190. int64_t range_start;
  191. int64_t range_end;
  192. } oss_upload_part_copy_params_t;
  193. typedef struct {
  194. aos_string_t filename; /**< file range read filename */
  195. int64_t file_pos; /**< file range read start position */
  196. int64_t file_last; /**< file range read last position */
  197. } oss_upload_file_t;
  198. typedef struct {
  199. aos_list_t node;
  200. aos_string_t id;
  201. aos_string_t prefix;
  202. aos_string_t status;
  203. int days;
  204. aos_string_t date;
  205. } oss_lifecycle_rule_content_t;
  206. typedef struct {
  207. aos_list_t node;
  208. aos_string_t key;
  209. } oss_object_key_t;
  210. typedef struct {
  211. char *suffix;
  212. char *type;
  213. } oss_content_type_t;
  214. typedef struct {
  215. int64_t part_size; // bytes, default 1MB
  216. int32_t thread_num; // default 1
  217. int enable_checkpoint; // default disable, false
  218. aos_string_t checkpoint_path; // dafault ./filepath.ucp or ./filepath.dcp
  219. } oss_resumable_clt_params_t;
  220. typedef struct {
  221. aos_string_t type;
  222. int32_t frag_duration;
  223. int32_t frag_count;
  224. aos_string_t play_list_name;
  225. }oss_live_channel_target_t;
  226. typedef struct {
  227. aos_string_t name;
  228. aos_string_t description;
  229. aos_string_t status;
  230. oss_live_channel_target_t target;
  231. } oss_live_channel_configuration_t;
  232. typedef struct {
  233. aos_list_t node;
  234. aos_string_t publish_url;
  235. } oss_live_channel_publish_url_t;
  236. typedef struct {
  237. aos_list_t node;
  238. aos_string_t play_url;
  239. } oss_live_channel_play_url_t;
  240. typedef struct {
  241. int32_t width;
  242. int32_t height;
  243. int32_t frame_rate;
  244. int32_t band_width;
  245. aos_string_t codec;
  246. } oss_video_stat_t;
  247. typedef struct {
  248. int32_t band_width;
  249. int32_t sample_rate;
  250. aos_string_t codec;
  251. } oss_audio_stat_t;
  252. typedef struct {
  253. aos_string_t pushflow_status;
  254. aos_string_t connected_time;
  255. aos_string_t remote_addr;
  256. oss_video_stat_t video_stat;
  257. oss_audio_stat_t audio_stat;
  258. } oss_live_channel_stat_t;
  259. typedef struct {
  260. aos_list_t node;
  261. aos_string_t name;
  262. aos_string_t description;
  263. aos_string_t status;
  264. aos_string_t last_modified;
  265. aos_list_t publish_url_list;
  266. aos_list_t play_url_list;
  267. } oss_live_channel_content_t;
  268. typedef struct {
  269. aos_string_t prefix;
  270. aos_string_t marker;
  271. int max_keys;
  272. int truncated;
  273. aos_string_t next_marker;
  274. aos_list_t live_channel_list;
  275. } oss_list_live_channel_params_t;
  276. typedef struct {
  277. aos_list_t node;
  278. aos_string_t start_time;
  279. aos_string_t end_time;
  280. aos_string_t remote_addr;
  281. } oss_live_record_content_t;
  282. #endif