forked from naver/arcus-memcached
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcluster_config.h
43 lines (36 loc) · 1.72 KB
/
cluster_config.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
/* -*- Mode: C; tab-width: 4; c-basic-offset: 4; indent-tabs-mode: nil -*- */
/*
* arcus-memcached - Arcus memory cache server
* Copyright 2010-2014 NAVER Corp.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#ifndef MEMCACHED_CLUSTER_CONFIG_H
#define MEMCACHED_CLUSTER_CONFIG_H
#include <stdint.h>
#include <sys/types.h>
#include <stdio.h>
#include <pthread.h>
#include "memcached/extension_loggers.h"
#define MAX_SERVER_ITEM_COUNT 100
struct cluster_config;
struct cluster_config *cluster_config_init(EXTENSION_LOGGER_DESCRIPTOR *logger, int verbose);
void cluster_config_free(struct cluster_config *h);
uint32_t cluster_config_self_id (struct cluster_config *h);
int cluster_config_num_servers (struct cluster_config *h);
int cluster_config_num_continuum (struct cluster_config *h);
bool cluster_config_is_valid (struct cluster_config *config);
void cluster_config_set_hostport (struct cluster_config *config, const char *hostport, size_t hostport_len);
bool cluster_config_reconfigure(struct cluster_config *h, char **server_list, size_t num_servers);
bool cluster_config_key_is_mine(struct cluster_config *h, const char *key, size_t key_len, uint32_t *key_id, uint32_t *self_id);
#endif