2020-08-04 23:28:16 +01:00
|
|
|
#include <errno.h>
|
|
|
|
|
#include <stdio.h>
|
|
|
|
|
#include <stdlib.h>
|
|
|
|
|
#include "xmalloc.h"
|
2021-01-15 20:39:45 +00:00
|
|
|
#include "debug.h"
|
2020-08-04 23:28:16 +01:00
|
|
|
|
|
|
|
|
static void *
|
|
|
|
|
check_alloc(void *alloc)
|
|
|
|
|
{
|
|
|
|
|
if (unlikely(alloc == NULL)) {
|
2021-02-09 12:32:33 +00:00
|
|
|
FATAL_ERROR(__func__, ENOMEM);
|
2020-08-04 23:28:16 +01:00
|
|
|
}
|
|
|
|
|
return alloc;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void *
|
|
|
|
|
xmalloc(size_t size)
|
|
|
|
|
{
|
|
|
|
|
if (unlikely(size == 0)) {
|
|
|
|
|
size = 1;
|
|
|
|
|
}
|
|
|
|
|
return check_alloc(malloc(size));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void *
|
|
|
|
|
xcalloc(size_t nmemb, size_t size)
|
|
|
|
|
{
|
2021-01-16 20:16:00 +00:00
|
|
|
xassert(size != 0);
|
2020-08-25 20:49:24 +01:00
|
|
|
return check_alloc(calloc(likely(nmemb) ? nmemb : 1, size));
|
2020-08-04 23:28:16 +01:00
|
|
|
}
|
|
|
|
|
|
2020-08-07 01:05:04 +01:00
|
|
|
void *
|
|
|
|
|
xrealloc(void *ptr, size_t size)
|
|
|
|
|
{
|
2025-02-03 08:31:31 +01:00
|
|
|
xassert(size != 0);
|
2020-08-07 01:05:04 +01:00
|
|
|
void *alloc = realloc(ptr, size);
|
2025-02-03 08:31:31 +01:00
|
|
|
return check_alloc(alloc);
|
2020-08-07 01:05:04 +01:00
|
|
|
}
|
|
|
|
|
|
2025-01-30 09:06:24 +01:00
|
|
|
void *
|
|
|
|
|
xreallocarray(void *ptr, size_t n, size_t size)
|
|
|
|
|
{
|
2025-02-03 08:31:31 +01:00
|
|
|
xassert(n != 0 && size != 0);
|
2025-01-30 09:06:24 +01:00
|
|
|
void *alloc = reallocarray(ptr, n, size);
|
2025-02-03 08:31:31 +01:00
|
|
|
return check_alloc(alloc);
|
2025-01-30 09:06:24 +01:00
|
|
|
}
|
|
|
|
|
|
2020-08-04 23:28:16 +01:00
|
|
|
char *
|
|
|
|
|
xstrdup(const char *str)
|
|
|
|
|
{
|
|
|
|
|
return check_alloc(strdup(str));
|
|
|
|
|
}
|
|
|
|
|
|
2020-08-07 01:05:04 +01:00
|
|
|
char *
|
|
|
|
|
xstrndup(const char *str, size_t n)
|
|
|
|
|
{
|
|
|
|
|
return check_alloc(strndup(str, n));
|
|
|
|
|
}
|
|
|
|
|
|
fcft: adapt to API changes in fcft-3.x
Fcft no longer uses wchar_t, but plain uint32_t to represent
codepoints.
Since we do a fair amount of string operations in foot, it still makes
sense to use something that actually _is_ a string (or character),
rather than an array of uint32_t.
For this reason, we switch out all wchar_t usage in foot to
char32_t. We also verify, at compile-time, that char32_t used
UTF-32 (which is what fcft expects).
Unfortunately, there are no string functions for char32_t. To avoid
having to re-implement all wcs*() functions, we add a small wrapper
layer of c32*() functions.
These wrapper functions take char32_t arguments, but then simply call
the corresponding wcs*() function.
For this to work, wcs*() must _also_ be UTF-32 compatible. We can
check for the presence of the __STDC_ISO_10646__ macro. If set,
wchar_t is at least 4 bytes and its internal representation is UTF-32.
FreeBSD does *not* define this macro, because its internal wchar_t
representation depends on the current locale. It _does_ use UTF-32
_if_ the current locale is UTF-8.
Since foot enforces UTF-8, we simply need to check if __FreeBSD__ is
defined.
Other fcft API changes:
* fcft_glyph_rasterize() -> fcft_codepoint_rasterize()
* font.space_advance has been removed
* ‘tags’ have been removed from fcft_grapheme_rasterize()
* ‘fcft_log_init()’ removed
* ‘fcft_init()’ and ‘fcft_fini()’ must be explicitly called
2021-08-21 14:50:42 +02:00
|
|
|
char32_t *
|
|
|
|
|
xc32dup(const char32_t *str)
|
|
|
|
|
{
|
|
|
|
|
return check_alloc(c32dup(str));
|
|
|
|
|
}
|
|
|
|
|
|
2020-08-04 23:28:16 +01:00
|
|
|
static VPRINTF(2) int
|
|
|
|
|
xvasprintf_(char **strp, const char *format, va_list ap)
|
|
|
|
|
{
|
|
|
|
|
va_list ap2;
|
|
|
|
|
va_copy(ap2, ap);
|
|
|
|
|
int n = vsnprintf(NULL, 0, format, ap2);
|
|
|
|
|
if (unlikely(n < 0)) {
|
2021-02-09 12:32:33 +00:00
|
|
|
FATAL_ERROR("vsnprintf", EILSEQ);
|
2020-08-04 23:28:16 +01:00
|
|
|
}
|
|
|
|
|
va_end(ap2);
|
|
|
|
|
*strp = xmalloc(n + 1);
|
|
|
|
|
return vsnprintf(*strp, n + 1, format, ap);
|
|
|
|
|
}
|
|
|
|
|
|
2021-05-07 16:41:02 +02:00
|
|
|
char *
|
2020-08-04 23:28:16 +01:00
|
|
|
xvasprintf(const char *format, va_list ap)
|
|
|
|
|
{
|
|
|
|
|
char *str;
|
|
|
|
|
xvasprintf_(&str, format, ap);
|
|
|
|
|
return str;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
char *
|
|
|
|
|
xasprintf(const char *format, ...)
|
|
|
|
|
{
|
|
|
|
|
va_list ap;
|
|
|
|
|
va_start(ap, format);
|
|
|
|
|
char *str = xvasprintf(format, ap);
|
|
|
|
|
va_end(ap);
|
|
|
|
|
return str;
|
|
|
|
|
}
|