pacemaker  2.0.5-ba59be712
Scalable High-Availability cluster resource manager
Macros | Enumerations | Functions
strings_internal.h File Reference
#include <stdbool.h>
#include <glib.h>
Include dependency graph for strings_internal.h:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Macros

#define PCMK__PARSE_INT_DEFAULT   -1
 
#define PCMK__PARSE_DBL_DEFAULT   -1.0
 
#define pcmk__plural_alt(i, s1, s2)   (((i) == 1)? (s1) : (s2))
 
#define pcmk__plural_s(i)   pcmk__plural_alt(i, "", "s")
 

Enumerations

enum  pcmk__str_flags { pcmk__str_none = 0, pcmk__str_casei = 1 << 0, pcmk__str_null_matches = 1 << 1, pcmk__str_regex = 1 << 2 }
 

Functions

int pcmk__scan_double (const char *text, double *result, const char *default_text, char **end_text)
 
int pcmk__guint_from_hash (GHashTable *table, const char *key, guint default_val, guint *result)
 
bool pcmk__starts_with (const char *str, const char *prefix)
 Check whether a string starts with a certain sequence. More...
 
bool pcmk__ends_with (const char *s, const char *match)
 
bool pcmk__ends_with_ext (const char *s, const char *match)
 
void pcmk__add_separated_word (char **list, size_t *len, const char *word, const char *separator)
 
int pcmk__compress (const char *data, unsigned int length, unsigned int max, char **result, unsigned int *result_len)
 
int pcmk__parse_ll_range (const char *srcstring, long long *start, long long *end)
 
gboolean pcmk__str_in_list (GList *lst, const gchar *s)
 
bool pcmk__strcase_any_of (const char *s,...) G_GNUC_NULL_TERMINATED
 
bool pcmk__str_any_of (const char *s,...) G_GNUC_NULL_TERMINATED
 
bool pcmk__char_in_any_str (int ch,...) G_GNUC_NULL_TERMINATED
 
int pcmk__strcmp (const char *s1, const char *s2, uint32_t flags)
 

Macro Definition Documentation

◆ PCMK__PARSE_DBL_DEFAULT

#define PCMK__PARSE_DBL_DEFAULT   -1.0

Definition at line 20 of file strings_internal.h.

◆ PCMK__PARSE_INT_DEFAULT

#define PCMK__PARSE_INT_DEFAULT   -1

Definition at line 19 of file strings_internal.h.

◆ pcmk__plural_alt

#define pcmk__plural_alt (   i,
  s1,
  s2 
)    (((i) == 1)? (s1) : (s2))

Definition at line 83 of file strings_internal.h.

◆ pcmk__plural_s

#define pcmk__plural_s (   i)    pcmk__plural_alt(i, "", "s")

Definition at line 86 of file strings_internal.h.

Enumeration Type Documentation

◆ pcmk__str_flags

Enumerator
pcmk__str_none 
pcmk__str_casei 
pcmk__str_null_matches 
pcmk__str_regex 

Definition at line 24 of file strings_internal.h.

Function Documentation

◆ pcmk__add_separated_word()

void pcmk__add_separated_word ( char **  list,
size_t *  len,
const char *  word,
const char *  separator 
)

Definition at line 617 of file strings.c.

◆ pcmk__char_in_any_str()

bool pcmk__char_in_any_str ( int  ch,
  ... 
)

Definition at line 889 of file strings.c.

◆ pcmk__compress()

int pcmk__compress ( const char *  data,
unsigned int  length,
unsigned int  max,
char **  result,
unsigned int *  result_len 
)

Definition at line 663 of file strings.c.

◆ pcmk__ends_with()

bool pcmk__ends_with ( const char *  s,
const char *  match 
)

Definition at line 504 of file strings.c.

◆ pcmk__ends_with_ext()

bool pcmk__ends_with_ext ( const char *  s,
const char *  match 
)

Definition at line 531 of file strings.c.

◆ pcmk__guint_from_hash()

int pcmk__guint_from_hash ( GHashTable *  table,
const char *  key,
guint  default_val,
guint *  result 
)

Definition at line 290 of file strings.c.

◆ pcmk__parse_ll_range()

int pcmk__parse_ll_range ( const char *  srcstring,
long long *  start,
long long *  end 
)

Definition at line 727 of file strings.c.

◆ pcmk__scan_double()

int pcmk__scan_double ( const char *  text,
double *  result,
const char *  default_text,
char **  end_text 
)

Definition at line 178 of file strings.c.

◆ pcmk__starts_with()

bool pcmk__starts_with ( const char *  str,
const char *  prefix 
)

Check whether a string starts with a certain sequence.

Parameters
[in]strString to check
[in]prefixSequence to match against beginning of str
Returns
true if str begins with match, false otherwise
Note
This is equivalent to !strncmp(s, prefix, strlen(prefix)) but is likely less efficient when prefix is a string literal if the compiler optimizes away the strlen() at compile time, and more efficient otherwise.

Definition at line 452 of file strings.c.

◆ pcmk__str_any_of()

bool pcmk__str_any_of ( const char *  s,
  ... 
)

Definition at line 866 of file strings.c.

◆ pcmk__str_in_list()

gboolean pcmk__str_in_list ( GList *  lst,
const gchar *  s 
)

Definition at line 794 of file strings.c.

◆ pcmk__strcase_any_of()

bool pcmk__strcase_any_of ( const char *  s,
  ... 
)

Definition at line 842 of file strings.c.

◆ pcmk__strcmp()

int pcmk__strcmp ( const char *  s1,
const char *  s2,
uint32_t  flags 
)

Definition at line 1009 of file strings.c.