** Copyright (C) 2001-2025 Zabbix SIA
** This program is free software: you can redistribute it and/or modify it under the terms of
** the GNU Affero General Public License as published by the Free Software Foundation, version 3.
** 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 Affero General Public License for more details.
** You should have received a copy of the GNU Affero General Public License along with this program.
** If not, see <https://www.gnu.org/licenses/>.
#cgo CFLAGS: -I${SRCDIR}/../../../../include
#cgo CFLAGS: -I${SRCDIR}/../../../../include/common
typedef int (*zbx_agent_check_t)(AGENT_REQUEST *request, AGENT_RESULT *result);
static int execute_check(const char *key, zbx_agent_check_t check_func, char **value, char **error)
zbx_init_agent_request(&request);
zbx_init_agent_result(&result);
if (SUCCEED != zbx_parse_item_key(key, &request))
*value = zbx_strdup(NULL, "Invalid item key format.");
if (SYSINFO_RET_OK != check_func(&request, &result))
if (0 != ZBX_ISSET_MSG(&result))
*error = zbx_strdup(NULL, result.msg);
*error = zbx_strdup(NULL, "Unknown error.");
if (NULL != (pvalue = ZBX_GET_TEXT_RESULT(&result)))
*value = zbx_strdup(NULL, *pvalue);
zbx_free_agent_result(&result);
zbx_free_agent_request(&request);