pacemaker 2.1.4-dc6eb4362e
Scalable High-Availability cluster resource manager
strings_internal.h
Go to the documentation of this file.
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
10#ifndef PCMK__STRINGS_INTERNAL__H
11#define PCMK__STRINGS_INTERNAL__H
12
13#include <stdbool.h> // bool
14
15#include <glib.h> // guint, GList, GHashTable
16
17/* internal constants for generic string functions (from strings.c) */
18
19#define PCMK__PARSE_INT_DEFAULT -1
20#define PCMK__PARSE_DBL_DEFAULT -1.0
21
22/* internal generic string functions (from strings.c) */
23
30};
31
32int pcmk__scan_double(const char *text, double *result,
33 const char *default_text, char **end_text);
34int pcmk__guint_from_hash(GHashTable *table, const char *key, guint default_val,
35 guint *result);
36bool pcmk__starts_with(const char *str, const char *prefix);
37bool pcmk__ends_with(const char *s, const char *match);
38bool pcmk__ends_with_ext(const char *s, const char *match);
39char *pcmk__trim(char *str);
40void pcmk__add_separated_word(char **list, size_t *len, const char *word,
41 const char *separator);
42int pcmk__compress(const char *data, unsigned int length, unsigned int max,
43 char **result, unsigned int *result_len);
44
45int pcmk__scan_ll(const char *text, long long *result, long long default_value);
46int pcmk__scan_min_int(const char *text, int *result, int minimum);
47int pcmk__scan_port(const char *text, int *port);
48int pcmk__parse_ll_range(const char *srcstring, long long *start, long long *end);
49
50GHashTable *pcmk__strkey_table(GDestroyNotify key_destroy_func,
51 GDestroyNotify value_destroy_func);
52GHashTable *pcmk__strikey_table(GDestroyNotify key_destroy_func,
53 GDestroyNotify value_destroy_func);
54GHashTable *pcmk__str_table_dup(GHashTable *old_table);
55
66static inline GHashTable *
67pcmk__intkey_table(GDestroyNotify value_destroy_func)
68{
69 return g_hash_table_new_full(g_direct_hash, g_direct_equal, NULL,
70 value_destroy_func);
71}
72
85static inline gboolean
86pcmk__intkey_table_insert(GHashTable *hash_table, int key, gpointer value)
87{
88 return g_hash_table_insert(hash_table, GINT_TO_POINTER(key), value);
89}
90
100static inline gpointer
101pcmk__intkey_table_lookup(GHashTable *hash_table, int key)
102{
103 return g_hash_table_lookup(hash_table, GINT_TO_POINTER(key));
104}
105
115static inline gboolean
116pcmk__intkey_table_remove(GHashTable *hash_table, int key)
117{
118 return g_hash_table_remove(hash_table, GINT_TO_POINTER(key));
119}
120
121gboolean pcmk__str_in_list(const gchar *s, GList *lst, uint32_t flags);
122
123bool pcmk__strcase_any_of(const char *s, ...) G_GNUC_NULL_TERMINATED;
124bool pcmk__str_any_of(const char *s, ...) G_GNUC_NULL_TERMINATED;
125bool pcmk__char_in_any_str(int ch, ...) G_GNUC_NULL_TERMINATED;
126
127int pcmk__strcmp(const char *s1, const char *s2, uint32_t flags);
128int pcmk__numeric_strcasecmp(const char *s1, const char *s2);
129void pcmk__str_update(char **str, const char *value);
130
131static inline bool
132pcmk__str_eq(const char *s1, const char *s2, uint32_t flags)
133{
134 return pcmk__strcmp(s1, s2, flags) == 0;
135}
136
137// Like pcmk__add_separated_word() but using a space as separator
138static inline void
139pcmk__add_word(char **list, size_t *len, const char *word)
140{
141 return pcmk__add_separated_word(list, len, word, " ");
142}
143
144/* Correctly displaying singular or plural is complicated; consider "1 node has"
145 * vs. "2 nodes have". A flexible solution is to pluralize entire strings, e.g.
146 *
147 * if (a == 1) {
148 * crm_info("singular message"):
149 * } else {
150 * crm_info("plural message");
151 * }
152 *
153 * though even that's not sufficient for all languages besides English (if we
154 * ever desire to do translations of output and log messages). But the following
155 * convenience macros are "good enough" and more concise for many cases.
156 */
157
158/* Example:
159 * crm_info("Found %d %s", nentries,
160 * pcmk__plural_alt(nentries, "entry", "entries"));
161 */
162#define pcmk__plural_alt(i, s1, s2) (((i) == 1)? (s1) : (s2))
163
164// Example: crm_info("Found %d node%s", nnodes, pcmk__plural_s(nnodes));
165#define pcmk__plural_s(i) pcmk__plural_alt(i, "", "s")
166
167static inline int
168pcmk__str_empty(const char *s)
169{
170 return (s == NULL) || (s[0] == '\0');
171}
172
173static inline char *
174pcmk__itoa(int an_int)
175{
176 return crm_strdup_printf("%d", an_int);
177}
178
179static inline char *
180pcmk__ftoa(double a_float)
181{
182 return crm_strdup_printf("%f", a_float);
183}
184
185static inline char *
186pcmk__ttoa(time_t epoch_time)
187{
188 return crm_strdup_printf("%lld", (long long) epoch_time);
189}
190
191// note this returns const not allocated
192static inline const char *
193pcmk__btoa(bool condition)
194{
195 return condition? "true" : "false";
196}
197
198#endif /* PCMK__STRINGS_INTERNAL__H */
uint64_t flags
Definition: remote.c:3
char * crm_strdup_printf(char const *format,...) G_GNUC_PRINTF(1
char data[0]
Definition: cpg.c:10
pcmk__action_result_t result
Definition: pcmk_fence.c:34
void pcmk__add_separated_word(char **list, size_t *len, const char *word, const char *separator)
Definition: strings.c:703
bool pcmk__char_in_any_str(int ch,...) G_GNUC_NULL_TERMINATED
Definition: strings.c:978
GHashTable * pcmk__str_table_dup(GHashTable *old_table)
Definition: strings.c:675
int pcmk__numeric_strcasecmp(const char *s1, const char *s2)
Definition: strings.c:1021
int pcmk__scan_min_int(const char *text, int *result, int minimum)
Definition: strings.c:127
int pcmk__scan_port(const char *text, int *port)
Definition: strings.c:161
GHashTable * pcmk__strkey_table(GDestroyNotify key_destroy_func, GDestroyNotify value_destroy_func)
Definition: strings.c:611
bool pcmk__ends_with_ext(const char *s, const char *match)
Definition: strings.c:563
char * pcmk__trim(char *str)
Definition: strings.c:456
int pcmk__scan_double(const char *text, double *result, const char *default_text, char **end_text)
Definition: strings.c:199
bool pcmk__starts_with(const char *str, const char *prefix)
Check whether a string starts with a certain sequence.
Definition: strings.c:484
int pcmk__compress(const char *data, unsigned int length, unsigned int max, char **result, unsigned int *result_len)
Definition: strings.c:749
int pcmk__scan_ll(const char *text, long long *result, long long default_value)
Definition: strings.c:97
void pcmk__str_update(char **str, const char *value)
Definition: strings.c:1188
bool pcmk__strcase_any_of(const char *s,...) G_GNUC_NULL_TERMINATED
Definition: strings.c:931
gboolean pcmk__str_in_list(const gchar *s, GList *lst, uint32_t flags)
Definition: strings.c:886
pcmk__str_flags
@ pcmk__str_regex
@ pcmk__str_none
@ pcmk__str_null_matches
@ pcmk__str_star_matches
@ pcmk__str_casei
bool pcmk__ends_with(const char *s, const char *match)
Definition: strings.c:536
int pcmk__guint_from_hash(GHashTable *table, const char *key, guint default_val, guint *result)
Definition: strings.c:311
bool pcmk__str_any_of(const char *s,...) G_GNUC_NULL_TERMINATED
Definition: strings.c:955
int pcmk__strcmp(const char *s1, const char *s2, uint32_t flags)
Definition: strings.c:1101
int pcmk__parse_ll_range(const char *srcstring, long long *start, long long *end)
Definition: strings.c:813
GHashTable * pcmk__strikey_table(GDestroyNotify key_destroy_func, GDestroyNotify value_destroy_func)
Definition: strings.c:649