This source file includes following definitions.
- pcmk_parse_score
- pcmk_readable_score
- pcmk_str_is_infinity
- pcmk_str_is_minus_infinity
- pcmk__add_scores
- char2score
1
2
3
4
5
6
7
8
9
10 #include <crm_internal.h>
11
12 #include <stdio.h>
13 #include <string.h>
14 #include <sys/types.h>
15
16 int pcmk__score_red = 0;
17 int pcmk__score_green = 0;
18 int pcmk__score_yellow = 0;
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33 int
34 pcmk_parse_score(const char *score_s, int *score, int default_score)
35 {
36 int rc = pcmk_rc_ok;
37 int local_score = 0;
38
39
40 default_score = QB_MIN(default_score, PCMK_SCORE_INFINITY);
41 default_score = QB_MAX(default_score, -PCMK_SCORE_INFINITY);
42 local_score = default_score;
43
44 if (score_s == NULL) {
45
46 } else if (pcmk_str_is_minus_infinity(score_s)) {
47 local_score = -PCMK_SCORE_INFINITY;
48
49 } else if (pcmk_str_is_infinity(score_s)) {
50 local_score = PCMK_SCORE_INFINITY;
51
52 } else if (pcmk__str_eq(score_s, PCMK_VALUE_RED, pcmk__str_casei)) {
53 local_score = pcmk__score_red;
54
55 } else if (pcmk__str_eq(score_s, PCMK_VALUE_YELLOW, pcmk__str_casei)) {
56 local_score = pcmk__score_yellow;
57
58 } else if (pcmk__str_eq(score_s, PCMK_VALUE_GREEN, pcmk__str_casei)) {
59 local_score = pcmk__score_green;
60
61 } else {
62 long long score_ll = 0LL;
63
64 rc = pcmk__scan_ll(score_s, &score_ll, default_score);
65 if (rc == ERANGE) {
66 rc = pcmk_rc_ok;
67 }
68 if (rc != pcmk_rc_ok) {
69 local_score = default_score;
70
71 } else if (score_ll > PCMK_SCORE_INFINITY) {
72 local_score = PCMK_SCORE_INFINITY;
73
74 } else if (score_ll < -PCMK_SCORE_INFINITY) {
75 local_score = -PCMK_SCORE_INFINITY;
76
77 } else {
78 local_score = (int) score_ll;
79 }
80 }
81
82 if (score != NULL) {
83 *score = local_score;
84 }
85 return rc;
86 }
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101 const char *
102 pcmk_readable_score(int score)
103 {
104
105 static char score_s[sizeof(PCMK_VALUE_MINUS_INFINITY)];
106
107 if (score >= PCMK_SCORE_INFINITY) {
108 strcpy(score_s, PCMK_VALUE_INFINITY);
109
110 } else if (score <= -PCMK_SCORE_INFINITY) {
111 strcpy(score_s, PCMK_VALUE_MINUS_INFINITY);
112
113 } else {
114
115 snprintf(score_s, sizeof(score_s), "%d", score);
116 }
117
118 return score_s;
119 }
120
121
122
123
124
125
126
127
128
129 bool
130 pcmk_str_is_infinity(const char *s) {
131 return pcmk__str_any_of(s, PCMK_VALUE_INFINITY, PCMK_VALUE_PLUS_INFINITY,
132 NULL);
133 }
134
135
136
137
138
139
140
141
142
143 bool
144 pcmk_str_is_minus_infinity(const char *s) {
145 return pcmk__str_eq(s, PCMK_VALUE_MINUS_INFINITY, pcmk__str_none);
146 }
147
148
149
150
151
152
153
154
155
156
157
158 int
159 pcmk__add_scores(int score1, int score2)
160 {
161
162
163
164 int result = score1 + score2;
165
166
167 if ((score1 <= -PCMK_SCORE_INFINITY) || (score2 <= -PCMK_SCORE_INFINITY)) {
168 return -PCMK_SCORE_INFINITY;
169 }
170 if ((score1 >= PCMK_SCORE_INFINITY) || (score2 >= PCMK_SCORE_INFINITY)) {
171 return PCMK_SCORE_INFINITY;
172 }
173
174
175 if (result >= PCMK_SCORE_INFINITY) {
176 return PCMK_SCORE_INFINITY;
177 }
178 if (result <= -PCMK_SCORE_INFINITY) {
179 return -PCMK_SCORE_INFINITY;
180 }
181
182 return result;
183 }
184
185
186
187
188 #include <crm/common/scores_compat.h>
189
190 int
191 char2score(const char *score)
192 {
193 int result = 0;
194
195 (void) pcmk_parse_score(score, &result, 0);
196 return result;
197 }
198
199
200