aos_string.h 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. #ifndef LIBAOS_STRING_H
  2. #define LIBAOS_STRING_H
  3. #include "aos_define.h"
  4. AOS_CPP_START
  5. typedef struct {
  6. int len;
  7. char *data;
  8. } aos_string_t;
  9. #define aos_string(str) { sizeof(str) - 1, (char *) str }
  10. #define aos_null_string { 0, NULL }
  11. #define aos_str_set(str, text) \
  12. (str)->len = strlen(text); (str)->data = (char *) text
  13. #define aos_str_null(str) (str)->len = 0; (str)->data = NULL
  14. #define aos_tolower(c) (char) ((c >= 'A' && c <= 'Z') ? (c | 0x20) : c)
  15. #define aos_toupper(c) (char) ((c >= 'a' && c <= 'z') ? (c & ~0x20) : c)
  16. static APR_INLINE void aos_string_tolower(aos_string_t *str)
  17. {
  18. int i = 0;
  19. while (i < str->len) {
  20. str->data[i] = aos_tolower(str->data[i]);
  21. ++i;
  22. }
  23. }
  24. static APR_INLINE char *aos_strlchr(char *p, char *last, char c)
  25. {
  26. while (p < last) {
  27. if (*p == c) {
  28. return p;
  29. }
  30. p++;
  31. }
  32. return NULL;
  33. }
  34. static APR_INLINE int aos_is_quote(char c)
  35. {
  36. return c == '\"';
  37. }
  38. static APR_INLINE int aos_is_space(char c)
  39. {
  40. return ((c == ' ') || (c == '\t'));
  41. }
  42. static APR_INLINE int aos_is_space_or_cntrl(char c)
  43. {
  44. return c <= ' ';
  45. }
  46. static APR_INLINE int aos_is_null_string(aos_string_t *str)
  47. {
  48. if (str == NULL || str->data == NULL || str->len == 0) {
  49. return AOS_TRUE;
  50. }
  51. return AOS_FALSE;
  52. }
  53. void aos_strip_space(aos_string_t *str);
  54. void aos_trip_space_and_cntrl(aos_string_t *str);
  55. void aos_unquote_str(aos_string_t *str);
  56. char *aos_pstrdup(aos_pool_t *p, const aos_string_t *s);
  57. int aos_ends_with(const aos_string_t *str, const aos_string_t *suffix);
  58. AOS_CPP_END
  59. #endif