/* ** Zabbix ** Copyright (C) 2001-2023 Zabbix SIA ** ** 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. ** ** 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. ** ** You should have received a copy of the GNU General Public License ** along with this program; if not, write to the Free Software ** Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. **/ #include "zbxalgo.h" #include "zbxcommon.h" ZBX_VECTOR_IMPL(uint64, zbx_uint64_t) ZBX_VECTOR_IMPL(uint32, zbx_uint32_t) ZBX_PTR_VECTOR_IMPL(str, char *) ZBX_PTR_VECTOR_IMPL(ptr, void *) ZBX_VECTOR_IMPL(ptr_pair, zbx_ptr_pair_t) ZBX_VECTOR_IMPL(uint64_pair, zbx_uint64_pair_t) ZBX_VECTOR_IMPL(dbl, double) ZBX_PTR_VECTOR_IMPL(tags, zbx_tag_t*) void zbx_ptr_free(void *data) { zbx_free(data); } void zbx_str_free(char *data) { zbx_free(data); } void zbx_free_tag(zbx_tag_t *tag) { zbx_free(tag->tag); zbx_free(tag->value); zbx_free(tag); } int zbx_compare_tags(const void *d1, const void *d2) { const zbx_tag_t *tag1 = *(const zbx_tag_t * const *)d1; const zbx_tag_t *tag2 = *(const zbx_tag_t * const *)d2; return strcmp(tag1->tag, tag2->tag); } int zbx_compare_tags_and_values(const void *d1, const void *d2) { int ret; const zbx_tag_t *tag1 = *(const zbx_tag_t * const *)d1; const zbx_tag_t *tag2 = *(const zbx_tag_t * const *)d2; if (0 == (ret = strcmp(tag1->tag, tag2->tag))) ret = strcmp(tag1->value, tag2->value); return ret; }