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 44 45 46 47 48
|
/*
* Copyright 2022-2024 the Pacemaker project contributors
*
* The version control history for this file may have further details.
*
* This source code is licensed under the GNU Lesser General Public License
* version 2.1 or later (LGPLv2.1+) WITHOUT ANY WARRANTY.
*/
#ifndef PCMK__PCMKI_PCMKI_RULE__H
#define PCMK__PCMKI_PCMKI_RULE__H
#include <crm/crm.h>
#include <crm/common/iso8601.h>
#include <crm/common/output_internal.h>
#ifdef __cplusplus
extern "C" {
#endif
int pcmk__check_rules(pcmk__output_t *out, xmlNodePtr input,
const crm_time_t *date_time, const char **rule_ids);
/*!
* \internal
* \brief Check whether a given rule is in effect
*
* \param[in,out] out Output object
* \param[in] input The CIB XML to check (if \c NULL, use current CIB)
* \param[in] date Check whether the rule is in effect at this date and
* time (if \c NULL, use current date and time)
* \param[in] rule_ids The ID of the rule to check
*
* \return Standard Pacemaker return code
*/
static inline int
pcmk__check_rule(pcmk__output_t *out, xmlNodePtr input, const crm_time_t *date,
const char *rule_id)
{
const char *rule_ids[] = {rule_id, NULL};
return pcmk__check_rules(out, input, date, rule_ids);
}
#ifdef __cplusplus
}
#endif
#endif // PCMK__PCMKI_PCMKI_RULE__H
|