[SCons] define with_krb5 for SCons build
[lighttpd.git] / src / array.h
blobc780ed9c5e4ad018d764fa3515d272f14f9f0952
1 #ifndef ARRAY_H
2 #define ARRAY_H
3 #include "first.h"
5 #ifdef HAVE_PCRE_H
6 # include <pcre.h>
7 #endif
9 #include "buffer.h"
10 #include "vector.h"
12 #include <stdlib.h>
14 #define DATA_IS_STRING(x) (x->type == TYPE_STRING)
16 typedef enum { TYPE_UNSET, TYPE_STRING, TYPE_OTHER, TYPE_ARRAY, TYPE_INTEGER, TYPE_FASTCGI, TYPE_CONFIG } data_type_t;
17 #define DATA_UNSET \
18 data_type_t type; \
19 buffer *key; \
20 int is_index_key; /* 1 if key is a array index (autogenerated keys) */ \
21 struct data_unset *(*copy)(const struct data_unset *src); \
22 void (* free)(struct data_unset *p); \
23 void (* reset)(struct data_unset *p); \
24 int (*insert_dup)(struct data_unset *dst, struct data_unset *src); \
25 void (*print)(const struct data_unset *p, int depth)
27 typedef struct data_unset {
28 DATA_UNSET;
29 } data_unset;
31 typedef struct {
32 data_unset **data;
34 size_t *sorted;
36 size_t used; /* <= SSIZE_MAX */
37 size_t size;
39 size_t unique_ndx;
40 } array;
42 typedef struct {
43 DATA_UNSET;
45 buffer *value;
46 } data_string;
48 data_string *data_string_init(void);
49 data_string *data_response_init(void);
51 typedef struct {
52 DATA_UNSET;
54 array *value;
55 } data_array;
57 data_array *data_array_init(void);
59 /**
60 * possible compare ops in the configfile parser
62 typedef enum {
63 CONFIG_COND_UNSET,
64 CONFIG_COND_EQ, /** == */
65 CONFIG_COND_MATCH, /** =~ */
66 CONFIG_COND_NE, /** != */
67 CONFIG_COND_NOMATCH /** !~ */
68 } config_cond_t;
70 /**
71 * possible fields to match against
73 typedef enum {
74 COMP_UNSET,
75 COMP_SERVER_SOCKET,
76 COMP_HTTP_URL,
77 COMP_HTTP_HOST,
78 COMP_HTTP_REFERER,
79 COMP_HTTP_USER_AGENT,
80 COMP_HTTP_LANGUAGE,
81 COMP_HTTP_COOKIE,
82 COMP_HTTP_REMOTE_IP,
83 COMP_HTTP_QUERY_STRING,
84 COMP_HTTP_SCHEME,
85 COMP_HTTP_REQUEST_METHOD,
87 COMP_LAST_ELEMENT
88 } comp_key_t;
90 /* $HTTP["host"] == "incremental.home.kneschke.de" { ... }
91 * for print: comp_key op string
92 * for compare: comp cond string/regex
95 typedef struct data_config data_config;
96 DEFINE_TYPED_VECTOR_NO_RELEASE(config_weak, data_config*);
98 struct data_config {
99 DATA_UNSET;
101 array *value;
103 buffer *comp_key;
104 comp_key_t comp;
106 config_cond_t cond;
107 buffer *op;
109 int context_ndx; /* more or less like an id */
110 vector_config_weak children;
111 /* nested */
112 data_config *parent;
113 /* for chaining only */
114 data_config *prev;
115 data_config *next;
117 buffer *string;
118 #ifdef HAVE_PCRE_H
119 pcre *regex;
120 pcre_extra *regex_study;
121 #endif
124 data_config *data_config_init(void);
126 typedef struct {
127 DATA_UNSET;
129 int value;
130 } data_integer;
132 data_integer *data_integer_init(void);
134 typedef struct {
135 DATA_UNSET;
137 buffer *host;
139 unsigned short port;
141 time_t disable_ts;
142 int is_disabled;
143 size_t balance;
145 int usage; /* fair-balancing needs the no. of connections active on this host */
146 int last_used_ndx; /* round robin */
147 } data_fastcgi;
149 data_fastcgi *data_fastcgi_init(void);
151 array *array_init(void);
152 array *array_init_array(array *a);
153 void array_free(array *a);
154 void array_reset(array *a);
155 void array_insert_unique(array *a, data_unset *entry);
156 data_unset *array_pop(array *a); /* only works on "simple" lists with autogenerated keys */
157 int array_print(array *a, int depth);
158 data_unset *array_get_unused_element(array *a, data_type_t t);
159 data_unset *array_get_element(array *a, const char *key);
160 data_unset *array_extract_element(array *a, const char *key); /* removes found entry from array */
161 void array_set_key_value(array *hdrs, const char *key, size_t key_len, const char *value, size_t val_len);
162 void array_replace(array *a, data_unset *entry);
163 int array_strcasecmp(const char *a, size_t a_len, const char *b, size_t b_len);
164 void array_print_indent(int depth);
165 size_t array_get_max_key_length(array *a);
167 #endif