Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
fix leak of memory caused to some Events
[simgrid.git] / include / xbt / str.h
1 /* str.h - XBT string related functions.                                    */
2
3 /* Copyright (c) 2007-2015. The SimGrid Team.
4  * All rights reserved.                                                     */
5
6 /* This program is free software; you can redistribute it and/or modify it
7  * under the terms of the license (GNU LGPL) which comes with this package. */
8
9 #ifndef XBT_STR_H
10 #define XBT_STR_H
11
12 #include "xbt/misc.h"
13 #include "xbt/dynar.h"
14 #include "xbt/dict.h"
15
16 #include <stdarg.h>             /* va_* */
17 #include <stdio.h>  /* FILE */
18
19 SG_BEGIN_DECL()
20
21 /** @addtogroup XBT_str
22  *  @brief String manipulation functions
23  *
24  * This module defines several string related functions. Looking at the diversity of string manipulation functions that
25  * are provided, you can see that several SimGrid core developers actually like Perl.
26  * @{
27  */
28
29 /* Trim related functions */
30 XBT_PUBLIC(void) xbt_str_rtrim(char *s, const char *char_list);
31 XBT_PUBLIC(void) xbt_str_ltrim(char *s, const char *char_list);
32 XBT_PUBLIC(void) xbt_str_trim(char *s, const char *char_list);
33
34 XBT_PUBLIC(xbt_dynar_t) xbt_str_split(const char *s, const char *sep);
35 XBT_PUBLIC(xbt_dynar_t) xbt_str_split_quoted(const char *s);
36 XBT_PUBLIC(xbt_dynar_t) xbt_str_split_quoted_in_place(char *s);
37
38 XBT_PUBLIC(xbt_dynar_t) xbt_str_split_str(const char *s, const char *sep);
39
40 XBT_PUBLIC(char *) xbt_str_join(xbt_dynar_t dynar, const char *sep);
41 XBT_PUBLIC(char *) xbt_str_join_array(const char *const *strs, const char *sep);
42
43 XBT_PUBLIC(void) xbt_str_subst(char *str, char from, char to, int amount);
44
45 XBT_PUBLIC(long int) xbt_str_parse_int(const char* str, const char* error_msg);
46 XBT_PUBLIC(double) xbt_str_parse_double(const char* str, const char* error_msg);
47
48 #define XBT_DJB2_HASH_FUNCTION
49 //#define XBT_FNV_HASH_FUNCTION
50
51 /**
52  * @brief Returns the hash code of a string.
53  */
54 static inline unsigned int xbt_str_hash_ext(const char *str, int str_len)
55 {
56 #ifdef XBT_DJB2_HASH_FUNCTION
57   /* fast implementation of djb2 algorithm */
58   int c;
59   unsigned int hash = 5381;
60
61   while (str_len--) {
62     c = *str++;
63     hash = ((hash << 5) + hash) + c;    /* hash * 33 + c */
64   }
65 # elif defined(XBT_FNV_HASH_FUNCTION)
66   unsigned int hash = 0x811c9dc5;
67   unsigned char *bp = (unsigned char *) str;    /* start of buffer */
68   unsigned char *be = bp + str_len;     /* beyond end of buffer */
69
70   while (bp < be) {
71     /* multiply by the 32 bit FNV magic prime mod 2^32 */
72     hash +=
73         (hash << 1) + (hash << 4) + (hash << 7) + (hash << 8) +
74         (hash << 24);
75
76     /* xor the bottom with the current octet */
77     hash ^= (unsigned int) *bp++;
78   }
79
80 # else
81   unsigned int hash = 0;
82
83   while (str_len--) {
84     hash += (*str) * (*str);
85     str++;
86   }
87 #endif
88
89   return hash;
90 }
91
92 /**
93  * @brief Returns the hash code of a string.
94  */
95 static inline unsigned int xbt_str_hash(const char *str)
96 {
97 #ifdef XBT_DJB2_HASH_FUNCTION
98   /* fast implementation of djb2 algorithm */
99   int c;
100   unsigned int hash = 5381;
101
102   while ((c = *str++)) {
103     hash = ((hash << 5) + hash) + c;    /* hash * 33 + c */
104   }
105
106 # elif defined(XBT_FNV_HASH_FUNCTION)
107   unsigned int hash = 0x811c9dc5;
108
109   while (*str) {
110     /* multiply by the 32 bit FNV magic prime mod 2^32 */
111     hash += (hash << 1) + (hash << 4) + (hash << 7) + (hash << 8) + (hash << 24);
112
113     /* xor the bottom with the current byte */
114     hash ^= (unsigned int) *str++;
115   }
116
117 # else
118   unsigned int hash = 0;
119
120   while (*str) {
121     hash += (*str) * (*str);
122     str++;
123   }
124 #endif
125   return hash;
126 }
127
128 /**@}*/
129 SG_END_DECL()
130 #endif                          /* XBT_STR_H */