This source file includes following definitions.
- pe_rsc_is_clone
- pe_rsc_is_unique_clone
- pe_rsc_is_anon_clone
- pe_rsc_is_bundled
1
2
3
4
5
6
7
8
9
10 #ifndef PCMK__CRM_PENGINE_STATUS__H
11 # define PCMK__CRM_PENGINE_STATUS__H
12
13 # include <glib.h>
14 # include <stdbool.h>
15 # include <crm/common/util.h>
16 # include <crm/common/iso8601.h>
17 # include <crm/pengine/common.h>
18 # include <crm/pengine/pe_types.h>
19 # include <crm/pengine/complex.h>
20
21 #ifdef __cplusplus
22 extern "C" {
23 #endif
24
25
26
27
28
29
30
31 const char *rsc_printable_id(const pe_resource_t *rsc);
32 gboolean cluster_status(pe_working_set_t * data_set);
33 pe_working_set_t *pe_new_working_set(void);
34 void pe_free_working_set(pe_working_set_t *data_set);
35 void set_working_set_defaults(pe_working_set_t * data_set);
36 void cleanup_calculations(pe_working_set_t * data_set);
37 void pe_reset_working_set(pe_working_set_t *data_set);
38 pe_resource_t *pe_find_resource(GList *rsc_list, const char *id_rh);
39 pe_resource_t *pe_find_resource_with_flags(GList *rsc_list, const char *id, enum pe_find flags);
40 pe_node_t *pe_find_node(const GList *node_list, const char *node_name);
41 pe_node_t *pe_find_node_id(const GList *node_list, const char *id);
42 pe_node_t *pe_find_node_any(const GList *node_list, const char *id,
43 const char *node_name);
44 GList *find_operations(const char *rsc, const char *node, gboolean active_filter,
45 pe_working_set_t * data_set);
46 void calculate_active_ops(const GList *sorted_op_list, int *start_index,
47 int *stop_index);
48 int pe_bundle_replicas(const pe_resource_t *rsc);
49
50
51
52
53
54
55
56
57 static inline bool
58 pe_rsc_is_clone(const pe_resource_t *rsc)
59 {
60 return rsc && (rsc->variant == pe_clone);
61 }
62
63
64
65
66
67
68
69
70 static inline bool
71 pe_rsc_is_unique_clone(const pe_resource_t *rsc)
72 {
73 return pe_rsc_is_clone(rsc) && pcmk_is_set(rsc->flags, pe_rsc_unique);
74 }
75
76
77
78
79
80
81
82
83 static inline bool
84 pe_rsc_is_anon_clone(const pe_resource_t *rsc)
85 {
86 return pe_rsc_is_clone(rsc) && !pcmk_is_set(rsc->flags, pe_rsc_unique);
87 }
88
89
90
91
92
93
94
95
96 static inline bool
97 pe_rsc_is_bundled(const pe_resource_t *rsc)
98 {
99 if (rsc == NULL) {
100 return false;
101 }
102 while (rsc->parent != NULL) {
103 rsc = rsc->parent;
104 }
105 return rsc->variant == pe_container;
106 }
107
108 #ifdef __cplusplus
109 }
110 #endif
111
112 #endif