src/core/ngx_string.h - nginx source code

Data types defined

Functions defined

Macros defined

Source code


  1. /*
  2. * Copyright (C) Igor Sysoev
  3. * Copyright (C) Nginx, Inc.
  4. */


  5. #ifndef _NGX_STRING_H_INCLUDED_
  6. #define _NGX_STRING_H_INCLUDED_


  7. #include <ngx_config.h>
  8. #include <ngx_core.h>


  9. typedef struct {
  10.     size_t      len;
  11.     u_char     *data;
  12. } ngx_str_t;


  13. typedef struct {
  14.     ngx_str_t   key;
  15.     ngx_str_t   value;
  16. } ngx_keyval_t;


  17. typedef struct {
  18.     unsigned    len:28;

  19.     unsigned    valid:1;
  20.     unsigned    no_cacheable:1;
  21.     unsigned    not_found:1;
  22.     unsigned    escape:1;

  23.     u_char     *data;
  24. } ngx_variable_value_t;


  25. #define ngx_string(str)     { sizeof(str) - 1, (u_char *) str }
  26. #define ngx_null_string     { 0, NULL }
  27. #define ngx_str_set(str, text)                                               \
  28.     (str)->len = sizeof(text) - 1; (str)->data = (u_char *) text
  29. #define ngx_str_null(str)   (str)->len = 0; (str)->data = NULL


  30. #define ngx_tolower(c)      (u_char) ((c >= 'A' && c <= 'Z') ? (c | 0x20) : c)
  31. #define ngx_toupper(c)      (u_char) ((c >= 'a' && c <= 'z') ? (c & ~0x20) : c)

  32. void ngx_strlow(u_char *dst, u_char *src, size_t n);


  33. #define ngx_strncmp(s1, s2, n)  strncmp((const char *) s1, (const char *) s2, n)


  34. /* msvc and icc7 compile strcmp() to inline loop */
  35. #define ngx_strcmp(s1, s2)  strcmp((const char *) s1, (const char *) s2)


  36. #define ngx_strstr(s1, s2)  strstr((const char *) s1, (const char *) s2)
  37. #define ngx_strlen(s)       strlen((const char *) s)

  38. size_t ngx_strnlen(u_char *p, size_t n);

  39. #define ngx_strchr(s1, c)   strchr((const char *) s1, (int) c)

  40. static ngx_inline u_char *
  41. ngx_strlchr(u_char *p, u_char *last, u_char c)
  42. {
  43.     while (p < last) {

  44.         if (*p == c) {
  45.             return p;
  46.         }

  47.         p++;
  48.     }

  49.     return NULL;
  50. }


  51. /*
  52. * msvc and icc7 compile memset() to the inline "rep stos"
  53. * while ZeroMemory() and bzero() are the calls.
  54. * icc7 may also inline several mov's of a zeroed register for small blocks.
  55. */
  56. #define ngx_memzero(buf, n)       (void) memset(buf, 0, n)
  57. #define ngx_memset(buf, c, n)     (void) memset(buf, c, n)

  58. void ngx_explicit_memzero(void *buf, size_t n);


  59. #if (NGX_MEMCPY_LIMIT)

  60. void *ngx_memcpy(void *dst, const void *src, size_t n);
  61. #define ngx_cpymem(dst, src, n)   (((u_char *) ngx_memcpy(dst, src, n)) + (n))

  62. #else

  63. /*
  64. * gcc3, msvc, and icc7 compile memcpy() to the inline "rep movs".
  65. * gcc3 compiles memcpy(d, s, 4) to the inline "mov"es.
  66. * icc8 compile memcpy(d, s, 4) to the inline "mov"es or XMM moves.
  67. */
  68. #define ngx_memcpy(dst, src, n)   (void) memcpy(dst, src, n)
  69. #define ngx_cpymem(dst, src, n)   (((u_char *) memcpy(dst, src, n)) + (n))

  70. #endif


  71. #if ( __INTEL_COMPILER >= 800 )

  72. /*
  73. * the simple inline cycle copies the variable length strings up to 16
  74. * bytes faster than icc8 autodetecting _intel_fast_memcpy()
  75. */

  76. static ngx_inline u_char *
  77. ngx_copy(u_char *dst, u_char *src, size_t len)
  78. {
  79.     if (len < 17) {

  80.         while (len) {
  81.             *dst++ = *src++;
  82.             len--;
  83.         }

  84.         return dst;

  85.     } else {
  86.         return ngx_cpymem(dst, src, len);
  87.     }
  88. }

  89. #else

  90. #define ngx_copy                  ngx_cpymem

  91. #endif


  92. #define ngx_memmove(dst, src, n)  (void) memmove(dst, src, n)
  93. #define ngx_movemem(dst, src, n)  (((u_char *) memmove(dst, src, n)) + (n))


  94. /* msvc and icc7 compile memcmp() to the inline loop */
  95. #define ngx_memcmp(s1, s2, n)     memcmp(s1, s2, n)


  96. u_char *ngx_cpystrn(u_char *dst, u_char *src, size_t n);
  97. u_char *ngx_pstrdup(ngx_pool_t *pool, ngx_str_t *src);
  98. u_char * ngx_cdecl ngx_sprintf(u_char *buf, const char *fmt, ...);
  99. u_char * ngx_cdecl ngx_snprintf(u_char *buf, size_t max, const char *fmt, ...);
  100. u_char * ngx_cdecl ngx_slprintf(u_char *buf, u_char *last, const char *fmt,
  101.     ...);
  102. u_char *ngx_vslprintf(u_char *buf, u_char *last, const char *fmt, va_list args);
  103. #define ngx_vsnprintf(buf, max, fmt, args)                                   \
  104.     ngx_vslprintf(buf, buf + (max), fmt, args)

  105. ngx_int_t ngx_strcasecmp(u_char *s1, u_char *s2);
  106. ngx_int_t ngx_strncasecmp(u_char *s1, u_char *s2, size_t n);

  107. u_char *ngx_strnstr(u_char *s1, char *s2, size_t n);

  108. u_char *ngx_strstrn(u_char *s1, char *s2, size_t n);
  109. u_char *ngx_strcasestrn(u_char *s1, char *s2, size_t n);
  110. u_char *ngx_strlcasestrn(u_char *s1, u_char *last, u_char *s2, size_t n);

  111. ngx_int_t ngx_rstrncmp(u_char *s1, u_char *s2, size_t n);
  112. ngx_int_t ngx_rstrncasecmp(u_char *s1, u_char *s2, size_t n);
  113. ngx_int_t ngx_memn2cmp(u_char *s1, u_char *s2, size_t n1, size_t n2);
  114. ngx_int_t ngx_dns_strcmp(u_char *s1, u_char *s2);
  115. ngx_int_t ngx_filename_cmp(u_char *s1, u_char *s2, size_t n);

  116. ngx_int_t ngx_atoi(u_char *line, size_t n);
  117. ngx_int_t ngx_atofp(u_char *line, size_t n, size_t point);
  118. ssize_t ngx_atosz(u_char *line, size_t n);
  119. off_t ngx_atoof(u_char *line, size_t n);
  120. time_t ngx_atotm(u_char *line, size_t n);
  121. ngx_int_t ngx_hextoi(u_char *line, size_t n);

  122. u_char *ngx_hex_dump(u_char *dst, u_char *src, size_t len);


  123. #define ngx_base64_encoded_length(len)  (((len + 2) / 3) * 4)
  124. #define ngx_base64_decoded_length(len)  (((len + 3) / 4) * 3)

  125. void ngx_encode_base64(ngx_str_t *dst, ngx_str_t *src);
  126. void ngx_encode_base64url(ngx_str_t *dst, ngx_str_t *src);
  127. ngx_int_t ngx_decode_base64(ngx_str_t *dst, ngx_str_t *src);
  128. ngx_int_t ngx_decode_base64url(ngx_str_t *dst, ngx_str_t *src);

  129. uint32_t ngx_utf8_decode(u_char **p, size_t n);
  130. size_t ngx_utf8_length(u_char *p, size_t n);
  131. u_char *ngx_utf8_cpystrn(u_char *dst, u_char *src, size_t n, size_t len);


  132. #define NGX_ESCAPE_URI            0
  133. #define NGX_ESCAPE_ARGS           1
  134. #define NGX_ESCAPE_URI_COMPONENT  2
  135. #define NGX_ESCAPE_HTML           3
  136. #define NGX_ESCAPE_REFRESH        4
  137. #define NGX_ESCAPE_MEMCACHED      5
  138. #define NGX_ESCAPE_MAIL_AUTH      6

  139. #define NGX_UNESCAPE_URI       1
  140. #define NGX_UNESCAPE_REDIRECT  2

  141. uintptr_t ngx_escape_uri(u_char *dst, u_char *src, size_t size,
  142.     ngx_uint_t type);
  143. void ngx_unescape_uri(u_char **dst, u_char **src, size_t size, ngx_uint_t type);
  144. uintptr_t ngx_escape_html(u_char *dst, u_char *src, size_t size);
  145. uintptr_t ngx_escape_json(u_char *dst, u_char *src, size_t size);


  146. typedef struct {
  147.     ngx_rbtree_node_t         node;
  148.     ngx_str_t                 str;
  149. } ngx_str_node_t;


  150. void ngx_str_rbtree_insert_value(ngx_rbtree_node_t *temp,
  151.     ngx_rbtree_node_t *node, ngx_rbtree_node_t *sentinel);
  152. ngx_str_node_t *ngx_str_rbtree_lookup(ngx_rbtree_t *rbtree, ngx_str_t *name,
  153.     uint32_t hash);


  154. void ngx_sort(void *base, size_t n, size_t size,
  155.     ngx_int_t (*cmp)(const void *, const void *));
  156. #define ngx_qsort             qsort


  157. #define ngx_value_helper(n)   #n
  158. #define ngx_value(n)          ngx_value_helper(n)


  159. #endif /* _NGX_STRING_H_INCLUDED_ */