2020-10-14 18:21:09 +00:00
|
|
|
#ifndef HEADER_XUtils
|
|
|
|
#define HEADER_XUtils
|
2006-03-04 18:16:49 +00:00
|
|
|
/*
|
2015-08-19 16:58:29 +00:00
|
|
|
htop - StringUtils.h
|
2011-05-26 16:35:07 +00:00
|
|
|
(C) 2004-2011 Hisham H. Muhammad
|
2020-10-05 07:51:32 +00:00
|
|
|
Released under the GNU GPLv2, see the COPYING file
|
2006-03-04 18:16:49 +00:00
|
|
|
in the source distribution for its full text.
|
|
|
|
*/
|
|
|
|
|
2020-09-19 11:55:23 +00:00
|
|
|
#include "config.h" // IWYU pragma: keep
|
|
|
|
|
2020-10-03 19:20:43 +00:00
|
|
|
#include <stdbool.h>
|
2016-06-19 21:55:35 +00:00
|
|
|
#include <stdio.h>
|
2020-09-19 11:55:23 +00:00
|
|
|
#include <stdlib.h> // IWYU pragma: keep
|
|
|
|
#include <string.h> // IWYU pragma: keep
|
2020-12-06 14:22:41 +00:00
|
|
|
#include <sys/types.h>
|
2016-06-19 21:55:35 +00:00
|
|
|
|
2020-11-25 11:42:36 +00:00
|
|
|
#include "Compat.h"
|
2020-09-19 18:22:34 +00:00
|
|
|
#include "Macros.h"
|
|
|
|
|
|
|
|
|
2020-10-14 22:56:22 +00:00
|
|
|
void fail(void) ATTR_NORETURN;
|
|
|
|
|
2020-11-20 16:04:19 +00:00
|
|
|
void* xMalloc(size_t size) ATTR_ALLOC_SIZE1(1) ATTR_MALLOC;
|
2020-10-14 22:56:22 +00:00
|
|
|
|
2020-11-20 16:04:19 +00:00
|
|
|
void* xMallocArray(size_t nmemb, size_t size) ATTR_ALLOC_SIZE2(1, 2) ATTR_MALLOC;
|
2020-12-23 20:52:40 +00:00
|
|
|
|
2020-11-20 16:04:19 +00:00
|
|
|
void* xCalloc(size_t nmemb, size_t size) ATTR_ALLOC_SIZE2(1, 2) ATTR_MALLOC;
|
2020-10-14 22:56:22 +00:00
|
|
|
|
2020-11-20 16:04:19 +00:00
|
|
|
void* xRealloc(void* ptr, size_t size) ATTR_ALLOC_SIZE1(2);
|
2020-10-14 22:56:22 +00:00
|
|
|
|
2020-11-20 16:04:19 +00:00
|
|
|
void* xReallocArray(void* ptr, size_t nmemb, size_t size) ATTR_ALLOC_SIZE2(2, 3);
|
2020-12-23 20:52:40 +00:00
|
|
|
|
2016-08-11 02:49:35 +00:00
|
|
|
/*
|
|
|
|
* String_startsWith gives better performance if strlen(match) can be computed
|
|
|
|
* at compile time (e.g. when they are immutable string literals). :)
|
|
|
|
*/
|
2020-10-03 19:20:43 +00:00
|
|
|
static inline bool String_startsWith(const char* s, const char* match) {
|
|
|
|
return strncmp(s, match, strlen(match)) == 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline bool String_contains_i(const char* s1, const char* s2) {
|
|
|
|
return strcasestr(s1, s2) != NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline bool String_eq(const char* s1, const char* s2) {
|
|
|
|
return strcmp(s1, s2) == 0;
|
|
|
|
}
|
2016-08-11 02:49:35 +00:00
|
|
|
|
2020-11-20 16:04:19 +00:00
|
|
|
char* String_cat(const char* s1, const char* s2) ATTR_MALLOC;
|
2006-03-04 18:16:49 +00:00
|
|
|
|
2020-11-20 16:04:19 +00:00
|
|
|
char* String_trim(const char* in) ATTR_MALLOC;
|
2006-03-04 18:16:49 +00:00
|
|
|
|
2020-10-03 19:20:43 +00:00
|
|
|
char** String_split(const char* s, char sep, size_t* n);
|
2006-03-04 18:16:49 +00:00
|
|
|
|
2020-09-02 07:38:44 +00:00
|
|
|
void String_freeArray(char** s);
|
2006-03-04 18:16:49 +00:00
|
|
|
|
2020-11-20 16:04:19 +00:00
|
|
|
char* String_getToken(const char* line, unsigned short int numMatch) ATTR_MALLOC;
|
2008-09-23 06:21:28 +00:00
|
|
|
|
2020-11-20 16:04:19 +00:00
|
|
|
char* String_readLine(FILE* fd) ATTR_MALLOC;
|
2016-06-19 21:55:35 +00:00
|
|
|
|
2021-01-05 13:44:09 +00:00
|
|
|
/* Always null-terminates dest. Caller must pass a strictly positive size. */
|
2021-07-14 17:24:18 +00:00
|
|
|
size_t String_safeStrncpy(char* restrict dest, const char* restrict src, size_t size);
|
2021-01-05 13:44:09 +00:00
|
|
|
|
2020-09-19 18:22:34 +00:00
|
|
|
ATTR_FORMAT(printf, 2, 3)
|
2020-10-31 22:28:02 +00:00
|
|
|
int xAsprintf(char** strp, const char* fmt, ...);
|
2020-09-19 18:22:34 +00:00
|
|
|
|
|
|
|
ATTR_FORMAT(printf, 3, 4)
|
2020-11-24 17:14:56 +00:00
|
|
|
int xSnprintf(char* buf, size_t len, const char* fmt, ...);
|
2020-09-19 18:22:34 +00:00
|
|
|
|
2020-11-20 16:04:19 +00:00
|
|
|
char* xStrdup(const char* str) ATTR_NONNULL ATTR_MALLOC;
|
2021-01-05 13:47:49 +00:00
|
|
|
void free_and_xStrdup(char** ptr, const char* str);
|
2020-09-19 18:22:34 +00:00
|
|
|
|
2020-11-20 16:04:19 +00:00
|
|
|
char* xStrndup(const char* str, size_t len) ATTR_NONNULL ATTR_MALLOC;
|
2020-10-03 19:20:43 +00:00
|
|
|
|
2020-11-25 11:42:36 +00:00
|
|
|
ssize_t xReadfile(const char* pathname, void* buffer, size_t count);
|
|
|
|
ssize_t xReadfileat(openat_arg_t dirfd, const char* pathname, void* buffer, size_t count);
|
|
|
|
|
2006-03-04 18:16:49 +00:00
|
|
|
#endif
|