aos_transport.h 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152
  1. #ifndef LIBAOS_TRANSPORT_H
  2. #define LIBAOS_TRANSPORT_H
  3. #include "aos_define.h"
  4. #include "aos_buf.h"
  5. AOS_CPP_START
  6. typedef struct aos_http_request_s aos_http_request_t;
  7. typedef struct aos_http_response_s aos_http_response_t;
  8. typedef struct aos_http_transport_s aos_http_transport_t;
  9. typedef struct aos_http_controller_s aos_http_controller_t;
  10. typedef struct aos_http_request_options_s aos_http_request_options_t;
  11. typedef struct aos_http_transport_options_s aos_http_transport_options_t;
  12. typedef struct aos_curl_http_transport_s aos_curl_http_transport_t;
  13. typedef int (*aos_read_http_body_pt)(aos_http_request_t *req, char *buffer, int len);
  14. typedef int (*aos_write_http_body_pt)(aos_http_response_t *resp, const char *buffer, int len);
  15. typedef void (*oss_progress_callback)(int64_t consumed_bytes, int64_t total_bytes);
  16. void aos_curl_response_headers_parse(aos_pool_t *p, aos_table_t *headers, char *buffer, int len);
  17. aos_http_transport_t *aos_curl_http_transport_create(aos_pool_t *p);
  18. int aos_curl_http_transport_perform(aos_http_transport_t *t);
  19. struct aos_http_request_options_s {
  20. int speed_limit;
  21. int speed_time;
  22. int dns_cache_timeout;
  23. int connect_timeout;
  24. int64_t max_memory_size;
  25. int enable_crc;
  26. char *proxy_host;
  27. char *proxy_auth;
  28. };
  29. struct aos_http_transport_options_s {
  30. char *user_agent;
  31. char *cacerts_path;
  32. uint32_t ssl_verification_disabled:1;
  33. };
  34. #define AOS_HTTP_BASE_CONTROLLER_DEFINE \
  35. aos_http_request_options_t *options; \
  36. aos_pool_t *pool; \
  37. int64_t start_time; \
  38. int64_t first_byte_time; \
  39. int64_t finish_time; \
  40. uint32_t owner:1; \
  41. void *user_data;
  42. struct aos_http_controller_s {
  43. AOS_HTTP_BASE_CONTROLLER_DEFINE
  44. };
  45. typedef struct aos_http_controller_ex_s {
  46. AOS_HTTP_BASE_CONTROLLER_DEFINE
  47. // private
  48. int error_code;
  49. char *reason; // can't modify
  50. } aos_http_controller_ex_t;
  51. typedef enum {
  52. BODY_IN_MEMORY = 0,
  53. BODY_IN_FILE,
  54. BODY_IN_CALLBACK
  55. } aos_http_body_type_e;
  56. struct aos_http_request_s {
  57. char *host;
  58. char *proto;
  59. char *signed_url;
  60. http_method_e method;
  61. char *uri;
  62. char *resource;
  63. aos_table_t *headers;
  64. aos_table_t *query_params;
  65. aos_list_t body;
  66. int64_t body_len;
  67. char *file_path;
  68. aos_file_buf_t *file_buf;
  69. aos_pool_t *pool;
  70. void *user_data;
  71. aos_read_http_body_pt read_body;
  72. aos_http_body_type_e type;
  73. oss_progress_callback progress_callback;
  74. uint64_t crc64;
  75. int64_t consumed_bytes;
  76. };
  77. struct aos_http_response_s {
  78. int status;
  79. aos_table_t *headers;
  80. aos_list_t body;
  81. int64_t body_len;
  82. char *file_path;
  83. aos_file_buf_t* file_buf;
  84. int64_t content_length;
  85. aos_pool_t *pool;
  86. void *user_data;
  87. aos_write_http_body_pt write_body;
  88. aos_http_body_type_e type;
  89. oss_progress_callback progress_callback;
  90. uint64_t crc64;
  91. };
  92. typedef enum {
  93. TRANS_STATE_INIT,
  94. TRANS_STATE_HEADER,
  95. TRANS_STATE_BODY_IN,
  96. TRANS_STATE_BODY_OUT,
  97. TRANS_STATE_ABORT,
  98. TRANS_STATE_DONE
  99. } aos_transport_state_e;
  100. #define AOS_HTTP_BASE_TRANSPORT_DEFINE \
  101. aos_http_request_t *req; \
  102. aos_http_response_t *resp; \
  103. aos_pool_t *pool; \
  104. aos_transport_state_e state; \
  105. aos_array_header_t *cleanup; \
  106. aos_http_transport_options_t *options; \
  107. aos_http_controller_ex_t *controller;
  108. struct aos_http_transport_s {
  109. AOS_HTTP_BASE_TRANSPORT_DEFINE
  110. };
  111. struct aos_curl_http_transport_s {
  112. AOS_HTTP_BASE_TRANSPORT_DEFINE
  113. CURL *curl;
  114. char *url;
  115. struct curl_slist *headers;
  116. curl_read_callback header_callback;
  117. curl_read_callback read_callback;
  118. curl_write_callback write_callback;
  119. };
  120. AOS_CPP_END
  121. #endif