src/core/ngx_string.h - nginx-1.7.10

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. #define ngx_strchr(s1, c)   strchr((const char *) s1, (int) c)

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

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

  46.         p++;
  47.     }

  48.     return NULL;
  49. }


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


  57. #if (NGX_MEMCPY_LIMIT)

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

  60. #else

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

  68. #endif


  69. #if ( __INTEL_COMPILER >= 800 )

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

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

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

  82.         return dst;

  83.     } else {
  84.         return ngx_cpymem(dst, src, len);
  85.     }
  86. }

  87. #else

  88. #define ngx_copy                  ngx_cpymem

  89. #endif


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


  92. /* msvc and icc7 compile memcmp() to the inline loop */
  93. #define ngx_memcmp(s1, s2, n)  memcmp((const char *) s1, (const char *) s2, n)


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

  103. ngx_int_t ngx_strcasecmp(u_char *s1, u_char *s2);
  104. ngx_int_t ngx_strncasecmp(u_char *s1, u_char *s2, size_t n);

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

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

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

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

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


  121. #define ngx_base64_encoded_length(len)  (((len + 2) / 3) * 4)
  122. #define ngx_base64_decoded_length(len)  (((len + 3) / 4) * 3)

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

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


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

  137. #define NGX_UNESCAPE_URI       1
  138. #define NGX_UNESCAPE_REDIRECT  2

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


  144. typedef struct {
  145.     ngx_rbtree_node_t         node;
  146.     ngx_str_t                 str;
  147. } ngx_str_node_t;


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


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


  155. #define ngx_value_helper(n)   #n
  156. #define ngx_value(n)          ngx_value_helper(n)


  157. #endif /* _NGX_STRING_H_INCLUDED_ */