/* * Soft: Keepalived is a failover program for the LVS project * . It monitor & manipulate * a loadbalanced server pool using multi-layer checks. * * Part: vector.c include file. * * Author: Alexandre Cassen, * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. * See the GNU General Public License for more details. * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation; either version * 2 of the License, or (at your option) any later version. * * Copyright (C) 2001-2017 Alexandre Cassen, */ #ifndef _VECTOR_H #define _VECTOR_H #include #include /* vector definition */ typedef struct _vector { unsigned int active; unsigned int allocated; void **slot; } vector_t; typedef char *(*null_strvec_handler_t)(const vector_t *, size_t); /* Some defines */ #define VECTOR_DEFAULT_SIZE 1 /* Some useful macros */ #define vector_size(V) ((V)->allocated) #define vector_slot(V,E) ((V)->slot[(E)]) //#define vector_slot(V,E) (vector_lookup(V,E)) #define vector_active(V) ((V)->active) #define vector_foreach_slot(v,p,i) \ for (i = 0; i < (v)->allocated && ((p) = (v)->slot[i]); i++) #define FMT_STR_VSLOT(V,E) ((char*)strvec_slot(V,E)) #ifdef _MEM_CHECK_ #define vector_alloc() (memcheck_log("vector_alloc", NULL, (__FILE__), (char *)(__FUNCTION__), (__LINE__)), \ vector_alloc_r()) #define vector_alloc_slot(v) (memcheck_log("vector_alloc_slot", NULL, (__FILE__), (char *)(__FUNCTION__), (__LINE__)), \ vector_alloc_slot_r(v)) #define vector_free(v) (memcheck_log("vector_free", NULL, (__FILE__), (char *)(__FUNCTION__), (__LINE__)), \ vector_free_r(v)) #else #define vector_alloc() (vector_alloc_r()) #define vector_alloc_slot(v) (vector_alloc_slot_r(v)) #define vector_free(v) (vector_free_r(v)) #endif /* Prototypes */ extern null_strvec_handler_t register_null_strvec_handler(null_strvec_handler_t); extern null_strvec_handler_t unregister_null_strvec_handler(void); extern void *strvec_slot(const vector_t *strvec, size_t index); extern vector_t *vector_alloc_r(void); extern void vector_alloc_slot_r(vector_t *); extern void vector_set_slot(vector_t *, void *); extern void vector_unset(vector_t *, unsigned int); extern unsigned int vector_count(vector_t *); extern void vector_free_r(vector_t *); #ifdef _INCLUDE_UNUSED_CODE_ extern void vector_dump(FILE *fp, vector_t *); #endif extern void free_strvec(vector_t *); #endif