tomo/stdlib/c_strings.c

66 lines
1.6 KiB
C

// Type info and methods for CString datatype (char*)
#include <ctype.h>
#include <err.h>
#include <gc.h>
#include <stdbool.h>
#include <stdint.h>
#include <stdlib.h>
#include "text.h"
#include "siphash.h"
#include "util.h"
public Text_t CString$as_text(const void *c_string, bool colorize, const TypeInfo_t *info)
{
(void)info;
if (!c_string) return Text("CString");
Text_t text = Text$from_str(*(char**)c_string);
return Text$concat(colorize ? Text("\x1b[34mCString\x1b[m(") : Text("CString("), Text$quoted(text, colorize), Text(")"));
}
public Text_t CString$as_text_simple(const char *str)
{
return Text$format("%s", str);
}
PUREFUNC public int32_t CString$compare(const void *x, const void *y, const TypeInfo_t*)
{
if (x == y)
return 0;
if (!*(char**)x != !*(char**)y)
return (!*(char**)y) - (!*(char**)x);
return strcmp(*(char**)x, *(char**)y);
}
PUREFUNC public bool CString$equal(const void *x, const void *y, const TypeInfo_t *type)
{
return CString$compare(x, y, type) == 0;
}
PUREFUNC public uint64_t CString$hash(const void *c_str, const TypeInfo_t*)
{
if (!*(char**)c_str) return 0;
return siphash24(*(void**)c_str, strlen(*(char**)c_str));
}
PUREFUNC public bool CString$is_none(const void *c_str, const TypeInfo_t*)
{
return *(char**)c_str == NULL;
}
public const TypeInfo_t CString$info = {
.size=sizeof(char*),
.align=__alignof__(char*),
.metamethods={
.hash=CString$hash,
.compare=CString$compare,
.equal=CString$equal,
.as_text=CString$as_text,
.is_none=CString$is_none,
},
};
// vim: ts=4 sw=0 et cino=L2,l1,(0,W4,m1,\:0