This source file includes following definitions.
- log_resource_details
- pcmk__schedule_actions
1
2
3
4
5
6
7
8
9
10 #include <crm_internal.h>
11
12 #include <sys/param.h>
13
14 #include <crm/crm.h>
15 #include <crm/cib.h>
16 #include <crm/msg_xml.h>
17 #include <crm/common/xml.h>
18
19 #include <glib.h>
20
21 #include <crm/pengine/status.h>
22 #include <pacemaker-internal.h>
23 #include <crm/common/ipc_internal.h>
24
25 extern bool pcmk__is_daemon;
26
27 static void
28 log_resource_details(pe_working_set_t *data_set)
29 {
30 pcmk__output_t *out = data_set->priv;
31 GList *all = NULL;
32
33
34
35
36
37
38 all = g_list_prepend(all, (gpointer) "*");
39
40 for (GList *item = data_set->resources; item != NULL; item = item->next) {
41 pe_resource_t *rsc = (pe_resource_t *) item->data;
42
43
44 if (!pcmk_is_set(rsc->flags, pe_rsc_orphan)
45 || (rsc->role != RSC_ROLE_STOPPED)) {
46 out->message(out, crm_map_element_name(rsc->xml), 0, rsc, all, all);
47 }
48 }
49
50 g_list_free(all);
51 }
52
53
54
55
56
57
58
59
60
61 xmlNode *
62 pcmk__schedule_actions(pe_working_set_t *data_set, xmlNode *xml_input,
63 crm_time_t *now)
64 {
65 GList *gIter = NULL;
66
67 CRM_ASSERT(xml_input || pcmk_is_set(data_set->flags, pe_flag_have_status));
68
69 if (!pcmk_is_set(data_set->flags, pe_flag_have_status)) {
70 set_working_set_defaults(data_set);
71 data_set->input = xml_input;
72 data_set->now = now;
73
74 } else {
75 crm_trace("Already have status - reusing");
76 }
77
78 if (data_set->now == NULL) {
79 data_set->now = crm_time_new(NULL);
80 }
81
82 crm_trace("Calculate cluster status");
83 stage0(data_set);
84 if (!pcmk_is_set(data_set->flags, pe_flag_quick_location) &&
85 pcmk__is_daemon) {
86 log_resource_details(data_set);
87 }
88
89 crm_trace("Applying location constraints");
90 stage2(data_set);
91
92 if (pcmk_is_set(data_set->flags, pe_flag_quick_location)) {
93 return NULL;
94 }
95
96 crm_trace("Create internal constraints");
97 stage3(data_set);
98
99 crm_trace("Check actions");
100 stage4(data_set);
101
102 crm_trace("Allocate resources");
103 stage5(data_set);
104
105 crm_trace("Processing fencing and shutdown cases");
106 stage6(data_set);
107
108 crm_trace("Applying ordering constraints");
109 stage7(data_set);
110
111 crm_trace("Create transition graph");
112 stage8(data_set);
113
114 crm_trace("=#=#=#=#= Summary =#=#=#=#=");
115 crm_trace("\t========= Set %d (Un-runnable) =========", -1);
116 if (get_crm_log_level() == LOG_TRACE) {
117 gIter = data_set->actions;
118 for (; gIter != NULL; gIter = gIter->next) {
119 pe_action_t *action = (pe_action_t *) gIter->data;
120
121 if (!pcmk_any_flags_set(action->flags,
122 pe_action_optional
123 |pe_action_runnable
124 |pe_action_pseudo)) {
125 log_action(LOG_TRACE, "\t", action, TRUE);
126 }
127 }
128 }
129
130 return data_set->graph;
131 }