aos_status.c 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104
  1. #include "aos_log.h"
  2. #include "aos_util.h"
  3. #include "aos_status.h"
  4. const char AOS_XML_PARSE_ERROR_CODE[] = "ParseXmlError";
  5. const char AOS_OPEN_FILE_ERROR_CODE[] = "OpenFileFail";
  6. const char AOS_WRITE_FILE_ERROR_CODE[] = "WriteFileFail";
  7. const char AOS_HTTP_IO_ERROR_CODE[] = "HttpIoError";
  8. const char AOS_UNKNOWN_ERROR_CODE[] = "UnknownError";
  9. const char AOS_CLIENT_ERROR_CODE[] = "ClientError";
  10. const char AOS_UTF8_ENCODE_ERROR_CODE[] = "Utf8EncodeFail";
  11. const char AOS_URL_ENCODE_ERROR_CODE[] = "UrlEncodeFail";
  12. const char AOS_INCONSISTENT_ERROR_CODE[] = "InconsistentError";
  13. const char AOS_CREATE_QUEUE_ERROR_CODE[] = "CreateQueueFail";
  14. const char AOS_CREATE_THREAD_POOL_ERROR_CODE[] = "CreateThreadPoolFail";
  15. aos_status_t *aos_status_create(aos_pool_t *p)
  16. {
  17. return (aos_status_t *)aos_pcalloc(p, sizeof(aos_status_t));
  18. }
  19. aos_status_t *aos_status_dup(aos_pool_t *p, aos_status_t *src)
  20. {
  21. aos_status_t *dst = aos_status_create(p);
  22. dst->code = src->code;
  23. dst->error_code = apr_pstrdup(p, src->error_code);
  24. dst->error_msg = apr_pstrdup(p, src->error_msg);
  25. return dst;
  26. }
  27. int aos_should_retry(aos_status_t *s) {
  28. int aos_error_code = 0;
  29. if (s == NULL || s->code / 100 == 2) {
  30. return AOS_FALSE;
  31. }
  32. if (s->code / 100 == 5) {
  33. return AOS_TRUE;
  34. }
  35. if (s->error_code != NULL) {
  36. aos_error_code = atoi(s->error_code);
  37. if (aos_error_code == AOSE_CONNECTION_FAILED || aos_error_code == AOSE_REQUEST_TIMEOUT ||
  38. aos_error_code == AOSE_FAILED_CONNECT || aos_error_code == AOSE_SERVICE_ERROR) {
  39. return AOS_TRUE;
  40. }
  41. }
  42. return AOS_FALSE;
  43. }
  44. aos_status_t *aos_status_parse_from_body(aos_pool_t *p, aos_list_t *bc, int code, aos_status_t *s)
  45. {
  46. int res;
  47. mxml_node_t *root, *node;
  48. mxml_node_t *code_node, *message_node;
  49. char *node_content;
  50. if (s == NULL) {
  51. s = aos_status_create(p);
  52. }
  53. s->code = code;
  54. if (aos_http_is_ok(code)) {
  55. return s;
  56. }
  57. if (aos_list_empty(bc)) {
  58. s->error_code = (char *)AOS_UNKNOWN_ERROR_CODE;
  59. return s;
  60. }
  61. if ((res = aos_parse_xml_body(bc, &root)) != AOSE_OK) {
  62. s->error_code = (char *)AOS_UNKNOWN_ERROR_CODE;
  63. return s;
  64. }
  65. node = mxmlFindElement(root, root, "Error",NULL, NULL,MXML_DESCEND);
  66. if (NULL == node) {
  67. char *xml_content = aos_buf_list_content(p, bc);
  68. aos_error_log("Xml format invalid, root node name is not Error.\n");
  69. aos_error_log("Xml Content:%s\n", xml_content);
  70. s->error_code = (char *)AOS_UNKNOWN_ERROR_CODE;
  71. mxmlDelete(root);
  72. return s;
  73. }
  74. code_node = mxmlFindElement(node, root, "Code",NULL, NULL,MXML_DESCEND);
  75. if (NULL != code_node) {
  76. node_content = code_node->child->value.opaque;
  77. s->error_code = apr_pstrdup(p, (char *)node_content);
  78. }
  79. message_node = mxmlFindElement(node, root, "Message",NULL, NULL,MXML_DESCEND);
  80. if (NULL != message_node) {
  81. node_content = message_node->child->value.opaque;
  82. s->error_msg = apr_pstrdup(p, (char *)node_content);
  83. }
  84. mxmlDelete(root);
  85. return s;
  86. }