Cthulhu  0.2.10
Cthulhu compiler collection
util.c
Go to the documentation of this file.
1 // SPDX-License-Identifier: LGPL-3.0-only
2 
3 #include "base/util.h"
4 #include "base/panic.h"
5 
6 #include <stdint.h>
7 #include <string.h>
8 
10 bool is_path_special(const char *path)
11 {
12  return path == NULL || str_equal(path, ".") || str_equal(path, "..");
13 }
14 
16 ctu_hash_t ctu_ptrhash(const void *ptr)
17 {
18  uintptr_t key = (uintptr_t)ptr;
19  key = (~key) + (key << 18);
20  key ^= key >> 31;
21  key *= 21;
22  key ^= key >> 11;
23  key += key << 6;
24  key ^= key >> 22;
25  return key & SIZE_MAX;
26 }
27 
29 ctu_hash_t str_hash(const char *str)
30 {
31  CTASSERT(str != NULL);
32 
33  size_t hash = 0;
34 
35  while (*str)
36  {
37  hash = (hash << 5) - hash + *str++;
38  }
39 
40  return hash;
41 }
42 
45 {
46  CTASSERT(text.text != NULL);
47 
48  ctu_hash_t hash = 0;
49  for (size_t i = 0; i < text.length; i++)
50  {
51  hash = (hash << 5) - hash + text.text[i];
52  }
53 
54  return hash;
55 }
56 
58 bool ctu_isalpha(int c)
59 {
60  return (c >= 'a' && c <= 'z') || (c >= 'A' && c <= 'Z');
61 }
62 
64 bool ctu_isdigit(int c)
65 {
66  return c >= '0' && c <= '9';
67 }
68 
70 bool ctu_isalnum(int c)
71 {
72  return ctu_isalpha(c) || ctu_isdigit(c);
73 }
74 
76 bool str_equal(const char *lhs, const char *rhs)
77 {
78  CTASSERT(lhs != NULL);
79  CTASSERT(rhs != NULL);
80 
81  /* compare pointers as well for better perf
82  with interned strings */
83  return lhs == rhs || strcmp(lhs, rhs) == 0;
84 }
85 
87 size_t ctu_strlen(const char *str)
88 {
89  CTASSERT(str != NULL);
90 
91  return strlen(str);
92 }
93 
95 bool ctu_string_empty(const char *str)
96 {
97  CTASSERT(str != NULL);
98 
99  return *str == '\0';
100 }
101 
102 STA_DECL
103 int ctu_strncmp(const char *lhs, const char *rhs, size_t length)
104 {
105  CTASSERT(lhs != NULL);
106  CTASSERT(rhs != NULL);
107 
108  return strncmp(lhs, rhs, length);
109 }
110 
111 STA_DECL
112 int ctu_strcmp(const char *lhs, const char *rhs)
113 {
114  CTASSERT(lhs != NULL);
115  CTASSERT(rhs != NULL);
116 
117  return strcmp(lhs, rhs);
118 }
119 
120 STA_DECL
121 char *ctu_strcpy(char *dst, const char *src, size_t size)
122 {
123  CTASSERT(dst != NULL);
124  CTASSERT(src != NULL);
125 
126  return strncpy(dst, src, size);
127 }
128 
130 void *ctu_memcpy(void *restrict dst, const void *restrict src, size_t size)
131 {
132  CTASSERT(dst != NULL);
133  CTASSERT(src != NULL);
134 
135  return memcpy(dst, src, size);
136 }
137 
138 STA_DECL
139 void *ctu_memmove(void *dst, const void *src, size_t size)
140 {
141  CTASSERT(dst != NULL);
142  CTASSERT(src != NULL);
143 
144  return memmove(dst, src, size);
145 }
146 
148 void ctu_memset(void *dst, int value, size_t size)
149 {
150  CTASSERT(dst != NULL);
151 
152  memset(dst, value, size);
153 }
154 
155 STA_DECL
156 char *ctu_strstr(IN_STRING const char *haystack, IN_STRING const char *needle)
157 {
158  CTASSERT(haystack != NULL);
159  CTASSERT(needle != NULL);
160 
161  return strstr(haystack, needle);
162 }
163 
164 STA_DECL
165 text_t text_make(char *text, size_t length)
166 {
167  CTASSERT(text != NULL);
168 
169  text_t result = { text, length };
170 
171  return result;
172 }
173 
174 STA_DECL
175 text_t text_from(char *text)
176 {
177  return text_make(text, ctu_strlen(text));
178 }
179 
180 STA_DECL
181 text_view_t text_view_make(const char *text, size_t length)
182 {
183  CTASSERT(text != NULL);
184 
185  text_view_t result = { text, length };
186 
187  return result;
188 }
189 
190 STA_DECL
191 text_view_t text_view_from(const char *text)
192 {
193  return text_view_make(text, ctu_strlen(text));
194 }
195 
197 {
198  if (lhs.length != rhs.length)
199  {
200  return false;
201  }
202 
203  return ctu_strncmp(lhs.text, rhs.text, lhs.length) == 0;
204 }
STA_DECL int ctu_strcmp(const char *lhs, const char *rhs)
compare two strings equivalent to strcmp but with safety checks
Definition: util.c:112
STA_DECL bool ctu_isalnum(int c)
check if a character is alphanumeric
Definition: util.c:70
STA_DECL CT_NOALIAS void * ctu_memcpy(void *restrict dst, const void *restrict src, size_t size)
Definition: util.c:130
STA_DECL bool ctu_isdigit(int c)
check if a character is a digit
Definition: util.c:64
STA_DECL void * ctu_memmove(void *dst, const void *src, size_t size)
Definition: util.c:139
STA_DECL bool ctu_string_empty(const char *str)
check if a string is empty equivalent to strlen(str) == 0
Definition: util.c:95
STA_DECL char * ctu_strstr(const char *haystack, const char *needle)
find a substring in a string equivalent to strstr but with safety checks
Definition: util.c:156
STA_DECL ctu_hash_t text_hash(text_view_t text)
hash a string with a provided length
Definition: util.c:44
STA_DECL text_view_t text_view_from(const char *text)
create a new non-owning text array this is a shortcut for
Definition: util.c:191
STA_DECL int ctu_strncmp(const char *lhs, const char *rhs, size_t length)
compare two strings equivalent to strncmp but with safety checks
Definition: util.c:103
STA_DECL bool str_equal(const char *lhs, const char *rhs)
compare strings equality
Definition: util.c:76
STA_DECL ctu_hash_t str_hash(const char *str)
hash a string
Definition: util.c:29
STA_DECL CT_NOALIAS void ctu_memset(void *dst, int value, size_t size)
Definition: util.c:148
STA_DECL size_t ctu_strlen(const char *str)
get the length of a string not including the null terminator equivalent to strlen but with safety che...
Definition: util.c:87
STA_DECL char * ctu_strcpy(char *dst, const char *src, size_t size)
Definition: util.c:121
STA_DECL text_view_t text_view_make(const char *text, size_t length)
Definition: util.c:181
STA_DECL text_t text_make(char *text, size_t length)
Definition: util.c:165
STA_DECL bool ctu_isalpha(int c)
check if a character is a letter
Definition: util.c:58
bool text_equal(text_view_t lhs, text_view_t rhs)
check if two text objects are equal
Definition: util.c:196
STA_DECL text_t text_from(char *text)
create a new owning text array this is a shortcut for
Definition: util.c:175
STA_DECL ctu_hash_t ctu_ptrhash(const void *ptr)
hash a pointer value
Definition: util.c:16
CT_NODISCARD size_t size
Definition: scan.h:128
#define STA_DECL
sal2 annotation on function implementations to copy annotations from the declaration
#define IN_STRING
annotate a parameter as being a null terminated string
#define CT_NOALIAS
mark a function as only modifying pointers passed to it the same as CT_CONSTFN but allowed to modify/...
Definition: analyze.h:226
STA_DECL bool is_path_special(const char *path)
check if a path is special special paths are paths such as "." and ".." that are not valid for most o...
Definition: util.c:10
size_t ctu_hash_t
Definition: types.h:8
#define CTASSERT(expr)
assert a condition, prints the condition as a message
Definition: panic.h:130
a range of text
Definition: text.h:14
a non-owning view of text
Definition: text.h:24
size_t length
the number of characters in the text
Definition: text.h:30