aos_util.h 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  1. #ifndef LIBAOS_UTIL_H
  2. #define LIBAOS_UTIL_H
  3. #include "aos_buf.h"
  4. #include "aos_string.h"
  5. #include "aos_define.h"
  6. #include "aos_fstack.h"
  7. #include <mxml.h>
  8. #include <apr_md5.h>
  9. #include <apr_sha1.h>
  10. AOS_CPP_START
  11. int aos_parse_xml_body(aos_list_t *bc, mxml_node_t **root);
  12. void aos_gnome_sort(const char **headers, int size);
  13. int aos_convert_to_gmt_time(char* date, const char* format, apr_time_exp_t *tm);
  14. int aos_get_gmt_str_time(char datestr[AOS_MAX_GMT_TIME_LEN]);
  15. /**
  16. * URL-encodes a string from [src] into [dest]. [dest] must have at least
  17. * 3x the number of characters that [source] has. At most [maxSrcSize] bytes
  18. * from [src] are encoded; if more are present in [src], 0 is returned from
  19. * urlEncode, else nonzero is returned.
  20. */
  21. int aos_url_encode(char *dest, const char *src, int maxSrcSize);
  22. const char* aos_http_method_to_string(http_method_e method);
  23. /**
  24. * encode query string, check query args < AOS_MAX_QUERY_ARG_LEN
  25. * result string "?a&b=x"
  26. */
  27. int aos_query_params_to_string(aos_pool_t *p, aos_table_t *query_params, aos_string_t *querystr);
  28. /**
  29. * base64 encode bytes. The output buffer must have at least
  30. * ((4 * (inLen + 1)) / 3) bytes in it. Returns the number of bytes written
  31. * to [out].
  32. */
  33. int aos_base64_encode(const unsigned char *in, int inLen, char *out);
  34. /**
  35. * Compute HMAC-SHA-1 with key [key] and message [message], storing result
  36. * in [hmac]
  37. */
  38. void HMAC_SHA1(unsigned char hmac[20], const unsigned char *key, int key_len,
  39. const unsigned char *message, int message_len);
  40. unsigned char* aos_md5(aos_pool_t* pool, const char* in, apr_size_t in_len);
  41. int aos_url_decode(const char *in, char *out);
  42. /*
  43. * Convert a string to a long long integer.
  44. *
  45. * Ignores `locale' stuff. Assumes that the upper and lower case
  46. * alphabets and digits are each contiguous.
  47. */
  48. long long aos_strtoll(const char *nptr, char **endptr, int base);
  49. /*
  50. * @brief Convert a string to int64_t.
  51. **/
  52. int64_t aos_atoi64(const char *nptr);
  53. /*
  54. * @brief Convert a string to an unsigned long long integer.
  55. *
  56. * Ignores `locale' stuff. Assumes that the upper and lower case
  57. * alphabets and digits are each contiguous.
  58. **/
  59. unsigned long long aos_strtoull(const char *nptr, char **endptr, int base);
  60. /*
  61. * @brief Convert a string to uint64_t.
  62. **/
  63. uint64_t aos_atoui64(const char *nptr);
  64. AOS_CPP_END
  65. #endif