blob: af28186399bf8e1686a57f12df1e9f4c52017cf1 [file] [log] [blame]
Igor Sysoevd90282d2004-09-28 08:34:51 +00001
2/*
Igor Sysoevff8da912004-09-29 16:00:49 +00003 * Copyright (C) Igor Sysoev
Igor Sysoevd90282d2004-09-28 08:34:51 +00004 */
5
6
Igor Sysoev6de5c2c2002-08-06 16:39:45 +00007#ifndef _NGX_STRING_H_INCLUDED_
8#define _NGX_STRING_H_INCLUDED_
9
10
11#include <ngx_config.h>
Igor Sysoev1c104622003-06-03 15:42:58 +000012#include <ngx_core.h>
Igor Sysoev6de5c2c2002-08-06 16:39:45 +000013
14
Igor Sysoeva0bb31f2002-12-02 16:09:40 +000015typedef struct {
Igor Sysoevf42ed052007-07-17 09:23:23 +000016 size_t len;
17 u_char *data;
Igor Sysoeva0bb31f2002-12-02 16:09:40 +000018} ngx_str_t;
19
Igor Sysoev6de5c2c2002-08-06 16:39:45 +000020
Igor Sysoev3338cfd2006-05-11 14:43:47 +000021typedef struct {
Igor Sysoevf42ed052007-07-17 09:23:23 +000022 ngx_str_t key;
23 ngx_str_t value;
Igor Sysoev3338cfd2006-05-11 14:43:47 +000024} ngx_keyval_t;
25
26
Igor Sysoevf42ed052007-07-17 09:23:23 +000027typedef struct {
Igor Sysoev5f3521c2008-05-15 15:09:39 +000028 unsigned len:28;
Igor Sysoevf42ed052007-07-17 09:23:23 +000029
30 unsigned valid:1;
Igor Sysoev2d3f3f62007-10-14 18:56:15 +000031 unsigned no_cacheable:1;
Igor Sysoevf42ed052007-07-17 09:23:23 +000032 unsigned not_found:1;
Igor Sysoev5f3521c2008-05-15 15:09:39 +000033 unsigned escape:1;
Igor Sysoevf42ed052007-07-17 09:23:23 +000034
35 u_char *data;
36} ngx_variable_value_t;
37
38
Igor Sysoev722231f2007-02-14 18:51:19 +000039#define ngx_string(str) { sizeof(str) - 1, (u_char *) str }
40#define ngx_null_string { 0, NULL }
Igor Sysoev960ffa42002-12-26 07:24:21 +000041
42
Igor Sysoev722231f2007-02-14 18:51:19 +000043#define ngx_tolower(c) (u_char) ((c >= 'A' && c <= 'Z') ? (c | 0x20) : c)
44#define ngx_toupper(c) (u_char) ((c >= 'a' && c <= 'z') ? (c & ~0x20) : c)
Igor Sysoev6de5c2c2002-08-06 16:39:45 +000045
Igor Sysoev777b0192008-08-04 10:07:00 +000046void ngx_strlow(u_char *dst, u_char *src, size_t n);
47
Igor Sysoev3646a162004-03-14 20:46:25 +000048
Igor Sysoev1b735832004-11-11 14:07:14 +000049#define ngx_strncmp(s1, s2, n) strncmp((const char *) s1, (const char *) s2, n)
50
Igor Sysoev3646a162004-03-14 20:46:25 +000051
Igor Sysoev09c684b2005-11-09 17:25:55 +000052/* msvc and icc7 compile strcmp() to inline loop */
Igor Sysoevd90282d2004-09-28 08:34:51 +000053#define ngx_strcmp(s1, s2) strcmp((const char *) s1, (const char *) s2)
Igor Sysoev3646a162004-03-14 20:46:25 +000054
Igor Sysoev1b735832004-11-11 14:07:14 +000055
Igor Sysoevd90282d2004-09-28 08:34:51 +000056#define ngx_strstr(s1, s2) strstr((const char *) s1, (const char *) s2)
57#define ngx_strlen(s) strlen((const char *) s)
Igor Sysoev3646a162004-03-14 20:46:25 +000058
Igor Sysoevcaa4a452008-08-26 14:16:36 +000059#define ngx_strchr(s1, c) strchr((const char *) s1, (int) c)
60
61static ngx_inline u_char *
62ngx_strlchr(u_char *p, u_char *last, u_char c)
63{
64 while (p < last) {
65
66 if (*p == c) {
67 return p;
68 }
69
70 p++;
71 }
72
73 return NULL;
74}
75
Igor Sysoev1b735832004-11-11 14:07:14 +000076
Igor Sysoev6abfde62003-07-01 15:00:03 +000077/*
Igor Sysoev09c684b2005-11-09 17:25:55 +000078 * msvc and icc7 compile memset() to the inline "rep stos"
Igor Sysoevd90282d2004-09-28 08:34:51 +000079 * while ZeroMemory() and bzero() are the calls.
Igor Sysoev09c684b2005-11-09 17:25:55 +000080 * icc7 may also inline several mov's of a zeroed register for small blocks.
Igor Sysoev6abfde62003-07-01 15:00:03 +000081 */
Igor Sysoeve31e90b2005-05-19 13:25:22 +000082#define ngx_memzero(buf, n) (void) memset(buf, 0, n)
83#define ngx_memset(buf, c, n) (void) memset(buf, c, n)
Igor Sysoev6abfde62003-07-01 15:00:03 +000084
Igor Sysoev1b735832004-11-11 14:07:14 +000085
Igor Sysoevd3283ff2005-12-05 13:18:09 +000086#if (NGX_MEMCPY_LIMIT)
87
88void *ngx_memcpy(void *dst, void *src, size_t n);
89#define ngx_cpymem(dst, src, n) ((u_char *) ngx_memcpy(dst, src, n)) + (n)
90
91#else
92
Igor Sysoev09c684b2005-11-09 17:25:55 +000093/*
94 * gcc3, msvc, and icc7 compile memcpy() to the inline "rep movs".
95 * gcc3 compiles memcpy(d, s, 4) to the inline "mov"es.
96 * icc8 compile memcpy(d, s, 4) to the inline "mov"es or XMM moves.
97 */
Igor Sysoeve31e90b2005-05-19 13:25:22 +000098#define ngx_memcpy(dst, src, n) (void) memcpy(dst, src, n)
Igor Sysoev02025fd2005-01-18 13:03:58 +000099#define ngx_cpymem(dst, src, n) ((u_char *) memcpy(dst, src, n)) + (n)
Igor Sysoev6de5c2c2002-08-06 16:39:45 +0000100
Igor Sysoevd3283ff2005-12-05 13:18:09 +0000101#endif
102
Igor Sysoev1b735832004-11-11 14:07:14 +0000103
Igor Sysoev09c684b2005-11-09 17:25:55 +0000104#if ( __INTEL_COMPILER >= 800 )
105
106/*
107 * the simple inline cycle copies the variable length strings up to 16
108 * bytes faster than icc8 autodetecting _intel_fast_memcpy()
109 */
110
111static ngx_inline u_char *
112ngx_copy(u_char *dst, u_char *src, size_t len)
113{
114 if (len < 17) {
115
116 while (len) {
117 *dst++ = *src++;
118 len--;
119 }
120
121 return dst;
122
123 } else {
124 return ngx_cpymem(dst, src, len);
125 }
126}
127
128#else
129
130#define ngx_copy ngx_cpymem
131
132#endif
133
134
135/* msvc and icc7 compile memcmp() to the inline loop */
Igor Sysoev2e8f0d02007-11-23 17:00:11 +0000136#define ngx_memcmp(s1, s2, n) memcmp((const char *) s1, (const char *) s2, n)
Igor Sysoev6abfde62003-07-01 15:00:03 +0000137
Igor Sysoev1b735832004-11-11 14:07:14 +0000138
Igor Sysoev10a543a2004-03-16 07:10:12 +0000139u_char *ngx_cpystrn(u_char *dst, u_char *src, size_t n);
Igor Sysoev805d9db2005-02-03 19:33:37 +0000140u_char *ngx_pstrdup(ngx_pool_t *pool, ngx_str_t *src);
Igor Sysoev4d656dc2005-03-22 16:02:46 +0000141u_char * ngx_cdecl ngx_sprintf(u_char *buf, const char *fmt, ...);
142u_char * ngx_cdecl ngx_snprintf(u_char *buf, size_t max, const char *fmt, ...);
Igor Sysoev1b735832004-11-11 14:07:14 +0000143u_char *ngx_vsnprintf(u_char *buf, size_t max, const char *fmt, va_list args);
Igor Sysoevc0edbcc2004-10-21 15:34:38 +0000144
Igor Sysoev722231f2007-02-14 18:51:19 +0000145ngx_int_t ngx_strcasecmp(u_char *s1, u_char *s2);
146ngx_int_t ngx_strncasecmp(u_char *s1, u_char *s2, size_t n);
147
Igor Sysoev35fe5fd2007-10-01 14:48:33 +0000148u_char *ngx_strnstr(u_char *s1, char *s2, size_t n);
149
Igor Sysoev1bd98702007-09-26 19:25:52 +0000150u_char *ngx_strstrn(u_char *s1, char *s2, size_t n);
151u_char *ngx_strcasestrn(u_char *s1, char *s2, size_t n);
152
Igor Sysoev10a543a2004-03-16 07:10:12 +0000153ngx_int_t ngx_rstrncmp(u_char *s1, u_char *s2, size_t n);
Igor Sysoevc0edbcc2004-10-21 15:34:38 +0000154ngx_int_t ngx_rstrncasecmp(u_char *s1, u_char *s2, size_t n);
Igor Sysoevec3cabd2007-01-12 21:58:02 +0000155ngx_int_t ngx_memn2cmp(u_char *s1, u_char *s2, size_t n1, size_t n2);
Igor Sysoev18684bd2004-05-20 17:33:52 +0000156
Igor Sysoev10a543a2004-03-16 07:10:12 +0000157ngx_int_t ngx_atoi(u_char *line, size_t n);
Igor Sysoevc1571722005-03-19 12:38:37 +0000158ssize_t ngx_atosz(u_char *line, size_t n);
159off_t ngx_atoof(u_char *line, size_t n);
160time_t ngx_atotm(u_char *line, size_t n);
Igor Sysoev18684bd2004-05-20 17:33:52 +0000161ngx_int_t ngx_hextoi(u_char *line, size_t n);
Igor Sysoev6de5c2c2002-08-06 16:39:45 +0000162
Igor Sysoeva03fa362007-12-17 21:06:17 +0000163u_char *ngx_hex_dump(u_char *dst, u_char *src, size_t len);
Igor Sysoev9cc1ace2003-11-04 22:12:39 +0000164
Igor Sysoeva7c4a2a2004-08-29 03:55:41 +0000165
166#define ngx_base64_encoded_length(len) (((len + 2) / 3) * 4)
167#define ngx_base64_decoded_length(len) (((len + 3) / 4) * 3)
168
Igor Sysoev924bd792004-10-11 15:07:03 +0000169void ngx_encode_base64(ngx_str_t *dst, ngx_str_t *src);
170ngx_int_t ngx_decode_base64(ngx_str_t *dst, ngx_str_t *src);
Igor Sysoev1b735832004-11-11 14:07:14 +0000171
Igor Sysoeva0898572008-07-29 14:41:34 +0000172uint32_t ngx_utf8_decode(u_char **p, size_t n);
173size_t ngx_utf8_length(u_char *p, size_t n);
174u_char *ngx_utf8_cpystrn(u_char *dst, u_char *src, size_t n, size_t len);
Igor Sysoev5192b362005-07-08 14:34:20 +0000175
Igor Sysoev1b735832004-11-11 14:07:14 +0000176
Igor Sysoevf0a51cf2007-10-22 10:19:17 +0000177#define NGX_ESCAPE_URI 0
178#define NGX_ESCAPE_ARGS 1
179#define NGX_ESCAPE_HTML 2
180#define NGX_ESCAPE_REFRESH 3
181#define NGX_ESCAPE_MEMCACHED 4
182#define NGX_ESCAPE_MAIL_AUTH 5
Igor Sysoevae33d012006-01-17 20:04:32 +0000183
Igor Sysoevf0a51cf2007-10-22 10:19:17 +0000184#define NGX_UNESCAPE_URI 1
185#define NGX_UNESCAPE_REDIRECT 2
Igor Sysoev1b735832004-11-11 14:07:14 +0000186
Igor Sysoev805d9db2005-02-03 19:33:37 +0000187uintptr_t ngx_escape_uri(u_char *dst, u_char *src, size_t size,
Igor Sysoevd039a2e2005-02-22 14:40:13 +0000188 ngx_uint_t type);
Igor Sysoevae33d012006-01-17 20:04:32 +0000189void ngx_unescape_uri(u_char **dst, u_char **src, size_t size, ngx_uint_t type);
Igor Sysoev1730c752007-09-27 09:36:50 +0000190uintptr_t ngx_escape_html(u_char *dst, u_char *src, size_t size);
191
Igor Sysoev967fd632004-08-27 15:40:59 +0000192
Igor Sysoev9cc1ace2003-11-04 22:12:39 +0000193
Igor Sysoev35921282007-05-21 14:05:23 +0000194void ngx_sort(void *base, size_t n, size_t size,
Igor Sysoevde8ec1e2008-03-24 13:04:02 +0000195 ngx_int_t (*cmp)(const void *, const void *));
Igor Sysoev3f707822007-07-22 19:18:59 +0000196#define ngx_qsort qsort
Igor Sysoev6de5c2c2002-08-06 16:39:45 +0000197
Igor Sysoev13933252003-05-29 13:02:09 +0000198
Igor Sysoev3f707822007-07-22 19:18:59 +0000199#define ngx_value_helper(n) #n
200#define ngx_value(n) ngx_value_helper(n)
Igor Sysoeva9830112003-05-19 16:39:14 +0000201
202
Igor Sysoev6de5c2c2002-08-06 16:39:45 +0000203#endif /* _NGX_STRING_H_INCLUDED_ */