1
2
3
4
5
6
7
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