aos_status.h 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. #ifndef LIBAOS_STATUS_H
  2. #define LIBAOS_STATUS_H
  3. #include "aos_define.h"
  4. #include "aos_list.h"
  5. AOS_CPP_START
  6. typedef struct aos_status_s aos_status_t;
  7. struct aos_status_s {
  8. int code; // > 0 http code
  9. char *error_code; // can't modify
  10. char *error_msg; // can't modify
  11. char *req_id; // can't modify
  12. };
  13. static APR_INLINE int aos_status_is_ok(aos_status_t *s)
  14. {
  15. return s->code > 0 && s->code / 100 == 2;
  16. }
  17. static APR_INLINE int aos_http_is_ok(int st)
  18. {
  19. return st / 100 == 2;
  20. }
  21. #define aos_status_set(s, c, ec, es) \
  22. (s)->code = c; (s)->error_code = (char *)ec; (s)->error_msg = (char *)es
  23. /**
  24. * @brief determine whether the request should be retried
  25. * @param[in] s the return status of api, such as oss_put_object_from_buffer
  26. * @return int AOS_FALSE indicates no retries, AOS_TRUE retry
  27. */
  28. int aos_should_retry(aos_status_t *s);
  29. aos_status_t *aos_status_create(aos_pool_t *p);
  30. aos_status_t *aos_status_dup(aos_pool_t *p, aos_status_t *src);
  31. aos_status_t *aos_status_parse_from_body(aos_pool_t *p, aos_list_t *bc, int code, aos_status_t *s);
  32. extern const char AOS_XML_PARSE_ERROR_CODE[];
  33. extern const char AOS_OPEN_FILE_ERROR_CODE[];
  34. extern const char AOS_WRITE_FILE_ERROR_CODE[];
  35. extern const char AOS_HTTP_IO_ERROR_CODE[];
  36. extern const char AOS_UNKNOWN_ERROR_CODE[];
  37. extern const char AOS_CLIENT_ERROR_CODE[];
  38. extern const char AOS_UTF8_ENCODE_ERROR_CODE[];
  39. extern const char AOS_URL_ENCODE_ERROR_CODE[];
  40. extern const char AOS_INCONSISTENT_ERROR_CODE[];
  41. extern const char AOS_CREATE_QUEUE_ERROR_CODE[];
  42. extern const char AOS_CREATE_THREAD_POOL_ERROR_CODE[];
  43. AOS_CPP_END
  44. #endif