1 /* vim:expandtab:shiftwidth=2:tabstop=2:smarttab:
3 * Libmemcached Scanner and Parser
5 * Copyright (C) 2011 DataDifferental, http://datadifferential.com
7 * This program is free software: you can redistribute it and/or modify
8 * it under the terms of the GNU Affero General Public License as
9 * published by the Free Software Foundation, either version 3 of the
10 * License, or (at your option) any later version.
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU Affero General Public License for more details.
17 * You should have received a copy of the GNU Affero General Public License
18 * along with this program. If not, see <http://www.gnu.org/licenses/>.
25 %output "libmemcached/options/parser.cc"
26 %defines "libmemcached/options/parser.h"
27 %lex-param { yyscan_t *scanner }
28 %name-prefix="config_"
29 %parse-param { Context *context }
30 %parse-param { yyscan_t *scanner }
42 #include <libmemcached/common.h>
43 #include <libmemcached/options/context.h>
44 #include <libmemcached/options/symbol.h>
45 #include <libmemcached/options/scanner.h>
47 #pragma GCC diagnostic ignored "-Wold-style-cast"
49 int conf_lex(YYSTYPE* lvalp, void* scanner);
51 #define parser_abort(A, B) do { (A)->abort((B)); YYABORT; } while (0)
53 inline void config_error(Context *context, yyscan_t *scanner, const char *error)
55 if (not context->end())
56 context->abort(error);
75 /* All behavior options */
76 %token BINARY_PROTOCOL
77 %token BUFFER_REQUESTS
78 %token CONNECT_TIMEOUT
81 %token HASH_WITH_NAMESPACE
82 %token IO_BYTES_WATERMARK
83 %token IO_KEY_PREFETCH
84 %token IO_MSG_WATERMARK
86 %token KETAMA_WEIGHTED
88 %token NUMBER_OF_REPLICAS
90 %token RANDOMIZE_REPLICA_READ
92 %token REMOVE_FAILED_SERVERS
95 %token SOCKET_RECV_SIZE
96 %token SOCKET_SEND_SIZE
102 %token _TCP_KEEPALIVE
130 %token <boolean> TRUE
131 %token <boolean> FALSE
136 %token <number> FLOAT
137 %token <number> NUMBER
139 %token <number> WEIGHT_START
140 %token <server> IPADDRESS
141 %token <server> HOSTNAME
142 %token <string> STRING
143 %token <string> QUOTED_STRING
144 %token <string> FILE_PATH
146 %type <behavior> behavior_boolean
147 %type <behavior> behavior_number
148 %type <distribution> distribution
150 %type <number> optional_port
151 %type <number> optional_weight
152 %type <string> string
158 | begin ' ' statement
175 context->rc= MEMCACHED_PARSE_USER_ERROR;
176 parser_abort(context, NULL);
180 memcached_reset(context->memc);
188 if ((context->rc= memcached_parse_configure_file(context->memc, $3.c_str, $3.size)) != MEMCACHED_SUCCESS)
190 parser_abort(context, NULL);
197 SERVER HOSTNAME optional_port optional_weight
199 if (memcached_failed(context->rc= memcached_server_add_with_weight(context->memc, $2.c_str, $3, $4)))
201 parser_abort(context, NULL);
203 context->unset_server();
205 | SERVER IPADDRESS optional_port optional_weight
207 if (memcached_failed(context->rc= memcached_server_add_with_weight(context->memc, $2.c_str, $3, $4)))
209 parser_abort(context, NULL);
211 context->unset_server();
213 | CONFIGURE_FILE string
215 memcached_set_configuration_file(context->memc, $2.c_str, $2.size);
219 context->memc->configure.initial_pool_size= $2;
223 context->memc->configure.max_pool_size= $2;
231 if ((context->rc= memcached_set_prefix_key(context->memc, $2.c_str, $2.size)) != MEMCACHED_SUCCESS)
233 parser_abort(context, NULL);;
236 | DISTRIBUTION distribution
238 if ((context->rc= memcached_behavior_set(context->memc, MEMCACHED_BEHAVIOR_DISTRIBUTION, $2)) != MEMCACHED_SUCCESS)
240 parser_abort(context, NULL);;
243 | DISTRIBUTION distribution ',' hash
245 if ((context->rc= memcached_behavior_set(context->memc, MEMCACHED_BEHAVIOR_DISTRIBUTION, $2)) != MEMCACHED_SUCCESS)
247 parser_abort(context, NULL);;
249 if ((context->rc= memcached_behavior_set_distribution_hash(context->memc, $4)) != MEMCACHED_SUCCESS)
251 parser_abort(context, NULL);;
256 if ((context->rc= memcached_behavior_set(context->memc, MEMCACHED_BEHAVIOR_HASH, $2)) != MEMCACHED_SUCCESS)
258 parser_abort(context, NULL);;
261 | behavior_number NUMBER
263 if ((context->rc= memcached_behavior_set(context->memc, $1, $2)) != MEMCACHED_SUCCESS)
265 parser_abort(context, NULL);;
270 if ((context->rc= memcached_behavior_set(context->memc, $1, true)) != MEMCACHED_SUCCESS)
272 parser_abort(context, NULL);;
281 REMOVE_FAILED_SERVERS
283 $$= MEMCACHED_BEHAVIOR_REMOVE_FAILED_SERVERS;
287 $$= MEMCACHED_BEHAVIOR_CONNECT_TIMEOUT;
291 $$= MEMCACHED_BEHAVIOR_IO_MSG_WATERMARK;
295 $$= MEMCACHED_BEHAVIOR_IO_BYTES_WATERMARK;
299 $$= MEMCACHED_BEHAVIOR_IO_KEY_PREFETCH;
303 $$= MEMCACHED_BEHAVIOR_NUMBER_OF_REPLICAS;
307 $$= MEMCACHED_BEHAVIOR_POLL_TIMEOUT;
311 $$= MEMCACHED_BEHAVIOR_RCV_TIMEOUT;
315 $$= MEMCACHED_BEHAVIOR_RETRY_TIMEOUT;
319 $$= MEMCACHED_BEHAVIOR_SND_TIMEOUT;
323 $$= MEMCACHED_BEHAVIOR_SOCKET_RECV_SIZE;
327 $$= MEMCACHED_BEHAVIOR_SOCKET_SEND_SIZE;
334 $$= MEMCACHED_BEHAVIOR_BINARY_PROTOCOL;
338 $$= MEMCACHED_BEHAVIOR_BUFFER_REQUESTS;
340 | HASH_WITH_NAMESPACE
342 $$= MEMCACHED_BEHAVIOR_HASH_WITH_PREFIX_KEY;
346 $$= MEMCACHED_BEHAVIOR_NOREPLY;
348 | RANDOMIZE_REPLICA_READ
350 $$= MEMCACHED_BEHAVIOR_RANDOMIZE_REPLICA_READ;
354 $$= MEMCACHED_BEHAVIOR_SORT_HOSTS;
358 $$= MEMCACHED_BEHAVIOR_SUPPORT_CAS;
362 $$= MEMCACHED_BEHAVIOR_TCP_NODELAY;
366 $$= MEMCACHED_BEHAVIOR_TCP_KEEPALIVE;
370 $$= MEMCACHED_BEHAVIOR_TCP_KEEPIDLE;
374 $$= MEMCACHED_BEHAVIOR_USE_UDP;
378 $$= MEMCACHED_BEHAVIOR_VERIFY_KEY;
383 { $$= MEMCACHED_DEFAULT_PORT;}
397 $$= MEMCACHED_HASH_MD5;
401 $$= MEMCACHED_HASH_CRC;
405 $$= MEMCACHED_HASH_FNV1_64;
409 $$= MEMCACHED_HASH_FNV1A_64;
413 $$= MEMCACHED_HASH_FNV1_32;
417 $$= MEMCACHED_HASH_FNV1A_32;
421 $$= MEMCACHED_HASH_HSIEH;
425 $$= MEMCACHED_HASH_MURMUR;
429 $$= MEMCACHED_HASH_JENKINS;
440 $$.c_str= $1.c_str +1; // +1 to move use passed the initial quote
441 $$.size= $1.size -2; // -2 removes the begin and end quote
448 $$= MEMCACHED_DISTRIBUTION_CONSISTENT;
452 $$= MEMCACHED_DISTRIBUTION_MODULA;
456 $$= MEMCACHED_DISTRIBUTION_RANDOM;
462 void Context::start()
464 config_parse(this, (void **)scanner);