aos_http_io.h 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. #ifndef LIBAOS_HTTP_IO_H
  2. #define LIBAOS_HTTP_IO_H
  3. #include "aos_transport.h"
  4. #include "oss_define.h"
  5. AOS_CPP_START
  6. aos_http_controller_t *aos_http_controller_create(aos_pool_t *p, int owner);
  7. /* http io error message*/
  8. static APR_INLINE const char *aos_http_controller_get_reason(aos_http_controller_t *ctl)
  9. {
  10. aos_http_controller_ex_t *ctle = (aos_http_controller_ex_t *)ctl;
  11. return ctle->reason;
  12. }
  13. CURL *aos_request_get();
  14. void request_release(CURL *request);
  15. int aos_http_io_initialize(const char *user_agent_info, int flag);
  16. void aos_http_io_deinitialize();
  17. int aos_http_send_request(aos_http_controller_t *ctl, aos_http_request_t *req, aos_http_response_t *resp);
  18. void aos_set_default_request_options(aos_http_request_options_t *op);
  19. void aos_set_default_transport_options(aos_http_transport_options_t *op);
  20. aos_http_request_options_t *aos_http_request_options_create(aos_pool_t *p);
  21. aos_http_request_t *aos_http_request_create(aos_pool_t *p);
  22. aos_http_response_t *aos_http_response_create(aos_pool_t *p);
  23. int aos_read_http_body_memory(aos_http_request_t *req, char *buffer, int len);
  24. int aos_write_http_body_memory(aos_http_response_t *resp, const char *buffer, int len);
  25. int aos_read_http_body_file(aos_http_request_t *req, char *buffer, int len);
  26. int aos_write_http_body_file(aos_http_response_t *resp, const char *buffer, int len);
  27. typedef aos_http_transport_t *(*aos_http_transport_create_pt)(aos_pool_t *p);
  28. typedef int (*aos_http_transport_perform_pt)(aos_http_transport_t *t);
  29. extern aos_pool_t *aos_global_pool;
  30. extern apr_file_t *aos_stderr_file;
  31. extern aos_http_request_options_t *aos_default_http_request_options;
  32. extern aos_http_transport_options_t *aos_default_http_transport_options;
  33. extern aos_http_transport_create_pt aos_http_transport_create;
  34. extern aos_http_transport_perform_pt aos_http_transport_perform;
  35. AOS_CPP_END
  36. #endif