root/include/crm/pengine/rules_internal.h

/* [previous][next][first][last][top][bottom][index][help] */

INCLUDED FROM


   1 /*
   2  * Copyright 2015-2022 the Pacemaker project contributors
   3  *
   4  * The version control history for this file may have further details.
   5  *
   6  * This source code is licensed under the GNU Lesser General Public License
   7  * version 2.1 or later (LGPLv2.1+) WITHOUT ANY WARRANTY.
   8  */
   9 #ifndef RULES_INTERNAL_H
  10 #define RULES_INTERNAL_H
  11 
  12 #include <glib.h>
  13 #include <libxml/tree.h>
  14 
  15 #include <crm/common/iso8601.h>
  16 #include <crm/pengine/common.h>
  17 #include <crm/pengine/rules.h>
  18 
  19 GList *pe_unpack_alerts(const xmlNode *alerts);
  20 void pe_free_alert_list(GList *alert_list);
  21 
  22 gboolean pe__eval_attr_expr(const xmlNode *expr,
  23                             const pe_rule_eval_data_t *rule_data);
  24 int pe__eval_date_expr(const xmlNode *expr,
  25                        const pe_rule_eval_data_t *rule_data,
  26                        crm_time_t *next_change);
  27 gboolean pe__eval_op_expr(const xmlNode *expr,
  28                           const pe_rule_eval_data_t *rule_data);
  29 gboolean pe__eval_role_expr(const xmlNode *expr,
  30                             const pe_rule_eval_data_t *rule_data);
  31 gboolean pe__eval_rsc_expr(const xmlNode *expr,
  32                            const pe_rule_eval_data_t *rule_data);
  33 
  34 int pe_cron_range_satisfied(const crm_time_t *now, const xmlNode *cron_spec);
  35 
  36 #endif

/* [previous][next][first][last][top][bottom][index][help] */