blob: 52bac6a094b8942fc56a6e019cd82884b2084b70 [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 Sysoev10a543a2004-03-16 07:10:12 +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 Sysoev10a543a2004-03-16 07:10:12 +000021#define ngx_string(str) { sizeof(str) - 1, (u_char *) str }
Igor Sysoevb7387572003-03-11 20:38:13 +000022#define ngx_null_string { 0, NULL }
Igor Sysoev960ffa42002-12-26 07:24:21 +000023
24
Igor Sysoevb1dfe472004-12-21 12:30:30 +000025#define ngx_tolower(c) (u_char) ((c >= 'A' && c <= 'Z') ? (c | 0x20) : c)
26
27
Igor Sysoev1b735832004-11-11 14:07:14 +000028#if (NGX_WIN32)
Igor Sysoev42feecb2002-12-15 06:25:09 +000029
Igor Sysoevda85f7f2004-03-16 21:26:01 +000030#define ngx_strncasecmp(s1, s2, n) \
Igor Sysoevd90282d2004-09-28 08:34:51 +000031 strnicmp((const char *) s1, (const char *) s2, n)
Igor Sysoevda85f7f2004-03-16 21:26:01 +000032#define ngx_strcasecmp(s1, s2) \
Igor Sysoevd90282d2004-09-28 08:34:51 +000033 stricmp((const char *) s1, (const char *) s2)
Igor Sysoevad22e012003-01-15 07:02:27 +000034
Igor Sysoev6de5c2c2002-08-06 16:39:45 +000035#else
36
Igor Sysoev10a543a2004-03-16 07:10:12 +000037#define ngx_strncasecmp(s1, s2, n) \
Igor Sysoevd90282d2004-09-28 08:34:51 +000038 strncasecmp((const char *) s1, (const char *) s2, n)
Igor Sysoev10a543a2004-03-16 07:10:12 +000039#define ngx_strcasecmp(s1, s2) \
Igor Sysoevd90282d2004-09-28 08:34:51 +000040 strcasecmp((const char *) s1, (const char *) s2)
Igor Sysoevad22e012003-01-15 07:02:27 +000041
Igor Sysoev6de5c2c2002-08-06 16:39:45 +000042#endif
43
Igor Sysoev3646a162004-03-14 20:46:25 +000044
Igor Sysoev1b735832004-11-11 14:07:14 +000045#define ngx_strncmp(s1, s2, n) strncmp((const char *) s1, (const char *) s2, n)
46
Igor Sysoev3646a162004-03-14 20:46:25 +000047
48/* msvc and icc compile strcmp() to inline loop */
Igor Sysoevd90282d2004-09-28 08:34:51 +000049#define ngx_strcmp(s1, s2) strcmp((const char *) s1, (const char *) s2)
Igor Sysoev3646a162004-03-14 20:46:25 +000050
Igor Sysoev1b735832004-11-11 14:07:14 +000051
Igor Sysoevd90282d2004-09-28 08:34:51 +000052#define ngx_strstr(s1, s2) strstr((const char *) s1, (const char *) s2)
53#define ngx_strlen(s) strlen((const char *) s)
Igor Sysoev3646a162004-03-14 20:46:25 +000054
Igor Sysoev1b735832004-11-11 14:07:14 +000055
Igor Sysoev6abfde62003-07-01 15:00:03 +000056/*
Igor Sysoevd90282d2004-09-28 08:34:51 +000057 * msvc and icc compile memset() to the inline "rep stos"
58 * while ZeroMemory() and bzero() are the calls.
59 * icc may also inline several mov's of a zeroed register for small blocks.
Igor Sysoev6abfde62003-07-01 15:00:03 +000060 */
Igor Sysoev9d9f58f2003-07-02 18:51:41 +000061#define ngx_memzero(buf, n) memset(buf, 0, n)
Igor Sysoev924bd792004-10-11 15:07:03 +000062#define ngx_memset(buf, c, n) memset(buf, c, n)
Igor Sysoev6abfde62003-07-01 15:00:03 +000063
Igor Sysoev1b735832004-11-11 14:07:14 +000064
Igor Sysoevd90282d2004-09-28 08:34:51 +000065/* msvc and icc compile memcpy() to the inline "rep movs" */
Igor Sysoev6de5c2c2002-08-06 16:39:45 +000066#define ngx_memcpy(dst, src, n) memcpy(dst, src, n)
Igor Sysoev02025fd2005-01-18 13:03:58 +000067#define ngx_cpymem(dst, src, n) ((u_char *) memcpy(dst, src, n)) + (n)
Igor Sysoev6de5c2c2002-08-06 16:39:45 +000068
Igor Sysoev1b735832004-11-11 14:07:14 +000069
Igor Sysoevd90282d2004-09-28 08:34:51 +000070/* msvc and icc compile memcmp() to the inline loop */
Igor Sysoev6abfde62003-07-01 15:00:03 +000071#define ngx_memcmp memcmp
72
Igor Sysoev1b735832004-11-11 14:07:14 +000073
Igor Sysoev10a543a2004-03-16 07:10:12 +000074u_char *ngx_cpystrn(u_char *dst, u_char *src, size_t n);
Igor Sysoev805d9db2005-02-03 19:33:37 +000075u_char *ngx_pstrdup(ngx_pool_t *pool, ngx_str_t *src);
Igor Sysoev1b735832004-11-11 14:07:14 +000076u_char *ngx_sprintf(u_char *buf, const char *fmt, ...);
77u_char *ngx_snprintf(u_char *buf, size_t max, const char *fmt, ...);
78u_char *ngx_vsnprintf(u_char *buf, size_t max, const char *fmt, va_list args);
Igor Sysoevc0edbcc2004-10-21 15:34:38 +000079
Igor Sysoev10a543a2004-03-16 07:10:12 +000080ngx_int_t ngx_rstrncmp(u_char *s1, u_char *s2, size_t n);
Igor Sysoevc0edbcc2004-10-21 15:34:38 +000081ngx_int_t ngx_rstrncasecmp(u_char *s1, u_char *s2, size_t n);
Igor Sysoev18684bd2004-05-20 17:33:52 +000082
Igor Sysoev10a543a2004-03-16 07:10:12 +000083ngx_int_t ngx_atoi(u_char *line, size_t n);
Igor Sysoev18684bd2004-05-20 17:33:52 +000084ngx_int_t ngx_hextoi(u_char *line, size_t n);
Igor Sysoev6de5c2c2002-08-06 16:39:45 +000085
Igor Sysoev10a543a2004-03-16 07:10:12 +000086void ngx_md5_text(u_char *text, u_char *md5);
Igor Sysoev9cc1ace2003-11-04 22:12:39 +000087
Igor Sysoeva7c4a2a2004-08-29 03:55:41 +000088
89#define ngx_base64_encoded_length(len) (((len + 2) / 3) * 4)
90#define ngx_base64_decoded_length(len) (((len + 3) / 4) * 3)
91
Igor Sysoev924bd792004-10-11 15:07:03 +000092void ngx_encode_base64(ngx_str_t *dst, ngx_str_t *src);
93ngx_int_t ngx_decode_base64(ngx_str_t *dst, ngx_str_t *src);
Igor Sysoev1b735832004-11-11 14:07:14 +000094
95
96#define NGX_ESCAPE_URI 0
Igor Sysoev805d9db2005-02-03 19:33:37 +000097#define NGX_ESCAPE_ARGS 1
98#define NGX_ESCAPE_HTML 2
Igor Sysoev1b735832004-11-11 14:07:14 +000099
Igor Sysoev805d9db2005-02-03 19:33:37 +0000100uintptr_t ngx_escape_uri(u_char *dst, u_char *src, size_t size,
Igor Sysoevd039a2e2005-02-22 14:40:13 +0000101 ngx_uint_t type);
Igor Sysoev967fd632004-08-27 15:40:59 +0000102
Igor Sysoev9cc1ace2003-11-04 22:12:39 +0000103
Igor Sysoev13933252003-05-29 13:02:09 +0000104#define ngx_qsort qsort
Igor Sysoev6de5c2c2002-08-06 16:39:45 +0000105
Igor Sysoev13933252003-05-29 13:02:09 +0000106
107#define ngx_value_helper(n) #n
108#define ngx_value(n) ngx_value_helper(n)
Igor Sysoeva9830112003-05-19 16:39:14 +0000109
110
Igor Sysoev6de5c2c2002-08-06 16:39:45 +0000111#endif /* _NGX_STRING_H_INCLUDED_ */