2022-09-19 21:41:11 +03:00
|
|
|
/* copyright (c) 2022 grunfink - MIT license */
|
|
|
|
|
|
|
|
#ifndef _XS_H
|
|
|
|
|
|
|
|
#define _XS_H
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <ctype.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <stdarg.h>
|
|
|
|
#include <signal.h>
|
|
|
|
#include <errno.h>
|
|
|
|
|
|
|
|
typedef enum {
|
|
|
|
XSTYPE_NULL = 0x18,
|
|
|
|
XSTYPE_TRUE = 0x06,
|
|
|
|
XSTYPE_FALSE = 0x15,
|
2022-09-25 23:57:18 +03:00
|
|
|
XSTYPE_LIST = 0x11,
|
2022-09-19 21:41:11 +03:00
|
|
|
XSTYPE_LITEM = 0x1f,
|
|
|
|
XSTYPE_EOL = 0x12,
|
2022-09-25 23:57:18 +03:00
|
|
|
XSTYPE_DICT = 0x13,
|
2022-09-19 21:41:11 +03:00
|
|
|
XSTYPE_DITEM = 0x1e,
|
|
|
|
XSTYPE_EOD = 0x14,
|
|
|
|
XSTYPE_NUMBER = 0x17,
|
|
|
|
XSTYPE_STRING = 0x02
|
|
|
|
} xstype;
|
|
|
|
|
|
|
|
|
|
|
|
/* dynamic strings */
|
|
|
|
typedef char d_char;
|
|
|
|
|
|
|
|
/* auto-destroyable strings */
|
|
|
|
#define xs __attribute__ ((__cleanup__ (_xs_destroy))) d_char
|
|
|
|
|
2022-11-24 10:47:02 +03:00
|
|
|
/* not really all, just very much */
|
|
|
|
#define XS_ALL 0xfffffff
|
|
|
|
|
2022-10-25 10:32:41 +03:00
|
|
|
void *xs_free(void *ptr);
|
2022-10-25 11:39:30 +03:00
|
|
|
void *_xs_realloc(void *ptr, size_t size, const char *file, int line, const char *func);
|
|
|
|
#define xs_realloc(ptr, size) _xs_realloc(ptr, size, __FILE__, __LINE__, __FUNCTION__)
|
2022-10-22 06:59:55 +03:00
|
|
|
int _xs_blk_size(int sz);
|
2022-09-19 23:41:30 +03:00
|
|
|
void _xs_destroy(char **var);
|
2022-09-29 13:52:57 +03:00
|
|
|
#define xs_debug() raise(SIGTRAP)
|
2022-09-19 21:41:11 +03:00
|
|
|
xstype xs_type(const char *data);
|
|
|
|
int xs_size(const char *data);
|
2022-10-08 08:00:05 +03:00
|
|
|
int xs_is_null(const char *data);
|
2022-09-19 21:41:11 +03:00
|
|
|
d_char *xs_dup(const char *data);
|
|
|
|
d_char *xs_expand(d_char *data, int offset, int size);
|
|
|
|
d_char *xs_collapse(d_char *data, int offset, int size);
|
|
|
|
d_char *xs_insert_m(d_char *data, int offset, const char *mem, int size);
|
|
|
|
#define xs_insert(data, offset, data2) xs_insert_m(data, offset, data2, xs_size(data2))
|
|
|
|
#define xs_append_m(data, mem, size) xs_insert_m(data, xs_size(data) - 1, mem, size)
|
|
|
|
d_char *xs_str_new(const char *str);
|
|
|
|
#define xs_str_cat(str1, str2) xs_insert(str1, xs_size(str1) - 1, str2)
|
2022-09-27 11:14:29 +03:00
|
|
|
d_char *xs_replace_i(d_char *str, const char *sfrom, const char *sto);
|
|
|
|
#define xs_replace(str, sfrom, sto) xs_replace_i(xs_dup(str), sfrom, sto)
|
2022-09-19 21:41:11 +03:00
|
|
|
d_char *xs_fmt(const char *fmt, ...);
|
2022-10-08 08:00:05 +03:00
|
|
|
int xs_str_in(const char *haystack, const char *needle);
|
|
|
|
int xs_startswith(const char *str, const char *prefix);
|
|
|
|
int xs_endswith(const char *str, const char *postfix);
|
2023-01-12 11:28:02 +03:00
|
|
|
d_char *xs_crop_i(d_char *str, int start, int end);
|
|
|
|
d_char *xs_strip_chars_i(d_char *str, const char *chars);
|
|
|
|
#define xs_strip_i(str) xs_strip_chars_i(str, " \r\n\t\v\f")
|
|
|
|
d_char *xs_tolower_i(d_char *str);
|
|
|
|
d_char *xs_str_prepend_i(d_char *str, const char *prefix);
|
2022-09-19 21:41:11 +03:00
|
|
|
d_char *xs_list_new(void);
|
|
|
|
d_char *xs_list_append_m(d_char *list, const char *mem, int dsz);
|
|
|
|
#define xs_list_append(list, data) xs_list_append_m(list, data, xs_size(data))
|
|
|
|
int xs_list_iter(char **list, char **value);
|
|
|
|
int xs_list_len(char *list);
|
|
|
|
char *xs_list_get(char *list, int num);
|
2022-11-20 12:57:05 +03:00
|
|
|
d_char *xs_list_del(d_char *list, int num);
|
|
|
|
d_char *xs_list_insert(d_char *list, int num, const char *data);
|
|
|
|
d_char *xs_list_insert_sorted(d_char *list, const char *str);
|
|
|
|
d_char *xs_list_set(d_char *list, int num, const char *data);
|
|
|
|
d_char *xs_list_pop(d_char *list, char **data);
|
2022-10-25 14:59:15 +03:00
|
|
|
int xs_list_in(char *list, const char *val);
|
2022-09-19 21:41:11 +03:00
|
|
|
d_char *xs_join(char *list, const char *sep);
|
2022-09-20 00:08:59 +03:00
|
|
|
d_char *xs_split_n(const char *str, const char *sep, int times);
|
2022-11-24 10:47:02 +03:00
|
|
|
#define xs_split(str, sep) xs_split_n(str, sep, XS_ALL)
|
2022-09-19 21:41:11 +03:00
|
|
|
d_char *xs_dict_new(void);
|
|
|
|
d_char *xs_dict_append_m(d_char *dict, const char *key, const char *mem, int dsz);
|
|
|
|
#define xs_dict_append(dict, key, data) xs_dict_append_m(dict, key, data, xs_size(data))
|
|
|
|
int xs_dict_iter(char **dict, char **key, char **value);
|
|
|
|
char *xs_dict_get(char *dict, const char *key);
|
|
|
|
d_char *xs_dict_del(d_char *dict, const char *key);
|
|
|
|
d_char *xs_dict_set(d_char *dict, const char *key, const char *data);
|
|
|
|
d_char *xs_val_new(xstype t);
|
2022-10-07 16:06:17 +03:00
|
|
|
d_char *xs_number_new(double f);
|
2022-10-08 08:00:05 +03:00
|
|
|
double xs_number_get(const char *v);
|
|
|
|
const char *xs_number_str(const char *v);
|
2022-09-19 21:41:11 +03:00
|
|
|
|
2022-12-11 11:46:27 +03:00
|
|
|
void *xs_memmem(const char *haystack, int h_size, const char *needle, int n_size);
|
2022-09-19 21:41:11 +03:00
|
|
|
|
|
|
|
#ifdef XS_IMPLEMENTATION
|
|
|
|
|
2022-10-25 11:39:30 +03:00
|
|
|
void *_xs_realloc(void *ptr, size_t size, const char *file, int line, const char *func)
|
2022-10-25 10:32:41 +03:00
|
|
|
{
|
|
|
|
d_char *ndata = realloc(ptr, size);
|
|
|
|
|
|
|
|
if (ndata == NULL) {
|
|
|
|
fprintf(stderr, "**OUT OF MEMORY**\n");
|
|
|
|
abort();
|
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef XS_DEBUG
|
|
|
|
if (ndata != ptr) {
|
2022-10-25 14:59:15 +03:00
|
|
|
int n;
|
2022-10-25 10:32:41 +03:00
|
|
|
FILE *f = fopen("xs_memory.out", "a");
|
|
|
|
|
|
|
|
if (ptr != NULL)
|
2022-10-25 11:39:30 +03:00
|
|
|
fprintf(f, "%p r\n", ptr);
|
2022-10-25 10:32:41 +03:00
|
|
|
|
2022-10-25 14:59:15 +03:00
|
|
|
fprintf(f, "%p a %ld %s:%d: %s", ndata, size, file, line, func);
|
|
|
|
|
|
|
|
if (ptr != NULL) {
|
|
|
|
fprintf(f, " [");
|
|
|
|
for (n = 0; n < 32 && ndata[n]; n++) {
|
|
|
|
if (ndata[n] >= 32 && ndata[n] <= 127)
|
|
|
|
fprintf(f, "%c", ndata[n]);
|
|
|
|
else
|
|
|
|
fprintf(f, "\\%02x", (unsigned char)ndata[n]);
|
|
|
|
}
|
|
|
|
fprintf(f, "]");
|
|
|
|
}
|
|
|
|
|
|
|
|
fprintf(f, "\n");
|
|
|
|
|
2022-10-25 10:32:41 +03:00
|
|
|
fclose(f);
|
|
|
|
}
|
2023-01-08 12:39:11 +03:00
|
|
|
#else
|
|
|
|
(void)file;
|
|
|
|
(void)line;
|
|
|
|
(void)func;
|
2022-10-25 10:32:41 +03:00
|
|
|
#endif
|
|
|
|
|
|
|
|
return ndata;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void *xs_free(void *ptr)
|
|
|
|
{
|
|
|
|
#ifdef XS_DEBUG
|
|
|
|
if (ptr != NULL) {
|
|
|
|
FILE *f = fopen("xs_memory.out", "a");
|
|
|
|
fprintf(f, "%p b\n", ptr);
|
|
|
|
fclose(f);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
free(ptr);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2022-09-19 21:41:11 +03:00
|
|
|
|
|
|
|
void _xs_destroy(char **var)
|
|
|
|
{
|
2022-10-25 10:32:41 +03:00
|
|
|
/*
|
2022-09-19 21:41:11 +03:00
|
|
|
if (_xs_debug)
|
|
|
|
printf("_xs_destroy %p\n", var);
|
2022-10-25 10:32:41 +03:00
|
|
|
*/
|
|
|
|
xs_free(*var);
|
2022-09-19 21:41:11 +03:00
|
|
|
}
|
|
|
|
|
2022-10-22 06:59:55 +03:00
|
|
|
|
|
|
|
int _xs_blk_size(int sz)
|
|
|
|
/* calculates the block size */
|
|
|
|
{
|
|
|
|
int blk_size = 4096;
|
|
|
|
|
|
|
|
if (sz < 256)
|
|
|
|
blk_size = 32;
|
|
|
|
else
|
|
|
|
if (sz < 4096)
|
|
|
|
blk_size = 256;
|
|
|
|
|
|
|
|
return ((((sz) + blk_size) / blk_size) * blk_size);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2022-09-19 21:41:11 +03:00
|
|
|
xstype xs_type(const char *data)
|
|
|
|
/* return the type of data */
|
|
|
|
{
|
|
|
|
xstype t;
|
|
|
|
|
|
|
|
switch (data[0]) {
|
|
|
|
case XSTYPE_NULL:
|
|
|
|
case XSTYPE_TRUE:
|
|
|
|
case XSTYPE_FALSE:
|
2022-09-25 23:57:18 +03:00
|
|
|
case XSTYPE_LIST:
|
2022-09-19 21:41:11 +03:00
|
|
|
case XSTYPE_EOL:
|
2022-09-25 23:57:18 +03:00
|
|
|
case XSTYPE_DICT:
|
2022-09-19 21:41:11 +03:00
|
|
|
case XSTYPE_EOD:
|
|
|
|
case XSTYPE_LITEM:
|
|
|
|
case XSTYPE_DITEM:
|
|
|
|
case XSTYPE_NUMBER:
|
|
|
|
t = data[0];
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
t = XSTYPE_STRING;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
return t;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2022-12-06 21:12:26 +03:00
|
|
|
void _xs_put_24b(char *ptr, int i)
|
|
|
|
/* writes i as a 24 bit value */
|
|
|
|
{
|
|
|
|
unsigned char *p = (unsigned char *)ptr;
|
|
|
|
|
|
|
|
p[0] = (i >> 16) & 0xff;
|
|
|
|
p[1] = (i >> 8) & 0xff;
|
|
|
|
p[2] = i & 0xff;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int _xs_get_24b(const char *ptr)
|
|
|
|
/* reads a 24 bit value */
|
|
|
|
{
|
|
|
|
unsigned char *p = (unsigned char *)ptr;
|
|
|
|
|
|
|
|
return (p[0] << 16) | (p[1] << 8) | p[2];
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2022-09-19 21:41:11 +03:00
|
|
|
int xs_size(const char *data)
|
|
|
|
/* returns the size of data in bytes */
|
|
|
|
{
|
|
|
|
int len = 0;
|
|
|
|
const char *p;
|
|
|
|
|
|
|
|
if (data == NULL)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
switch (xs_type(data)) {
|
|
|
|
case XSTYPE_STRING:
|
|
|
|
len = strlen(data) + 1;
|
|
|
|
break;
|
|
|
|
|
2022-09-25 23:57:18 +03:00
|
|
|
case XSTYPE_LIST:
|
2022-12-06 21:12:26 +03:00
|
|
|
len = _xs_get_24b(data + 1);
|
2022-09-19 21:41:11 +03:00
|
|
|
|
|
|
|
break;
|
|
|
|
|
2022-09-25 23:57:18 +03:00
|
|
|
case XSTYPE_DICT:
|
2022-12-06 21:12:26 +03:00
|
|
|
len = _xs_get_24b(data + 1);
|
2022-09-19 21:41:11 +03:00
|
|
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
case XSTYPE_DITEM:
|
|
|
|
/* calculate the size of the key and the value */
|
|
|
|
p = data + 1;
|
|
|
|
p += xs_size(p);
|
|
|
|
p += xs_size(p);
|
|
|
|
|
|
|
|
len = p - data;
|
|
|
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
case XSTYPE_LITEM:
|
|
|
|
/* it's the size of the item + 1 */
|
|
|
|
p = data + 1;
|
|
|
|
p += xs_size(p);
|
|
|
|
|
|
|
|
len = p - data;
|
|
|
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
case XSTYPE_NUMBER:
|
2022-10-07 16:06:17 +03:00
|
|
|
len = 1 + xs_size(data + 1);
|
2022-09-19 21:41:11 +03:00
|
|
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
len = 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
return len;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2022-10-08 08:00:05 +03:00
|
|
|
int xs_is_null(const char *data)
|
2022-09-25 10:07:43 +03:00
|
|
|
/* checks for null */
|
|
|
|
{
|
|
|
|
return !!(data == NULL || xs_type(data) == XSTYPE_NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2022-09-19 21:41:11 +03:00
|
|
|
d_char *xs_dup(const char *data)
|
|
|
|
/* creates a duplicate of data */
|
|
|
|
{
|
|
|
|
int sz = xs_size(data);
|
2022-10-07 14:48:53 +03:00
|
|
|
d_char *s = xs_realloc(NULL, _xs_blk_size(sz));
|
2022-09-19 21:41:11 +03:00
|
|
|
|
|
|
|
memcpy(s, data, sz);
|
|
|
|
|
|
|
|
return s;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
d_char *xs_expand(d_char *data, int offset, int size)
|
|
|
|
/* opens a hole in data */
|
|
|
|
{
|
|
|
|
int sz = xs_size(data);
|
|
|
|
|
|
|
|
/* open room */
|
2022-10-07 14:48:53 +03:00
|
|
|
if (sz == 0 || _xs_blk_size(sz) != _xs_blk_size(sz + size))
|
|
|
|
data = xs_realloc(data, _xs_blk_size(sz + size));
|
2022-09-19 21:41:11 +03:00
|
|
|
|
|
|
|
/* move up the rest of the data */
|
2022-10-07 14:48:53 +03:00
|
|
|
if (data != NULL)
|
|
|
|
memmove(data + offset + size, data + offset, sz - offset);
|
2022-09-19 21:41:11 +03:00
|
|
|
|
2022-12-06 21:12:26 +03:00
|
|
|
if (xs_type(data) == XSTYPE_LIST || xs_type(data) == XSTYPE_DICT)
|
|
|
|
_xs_put_24b(data + 1, sz + size);
|
|
|
|
|
2022-09-19 21:41:11 +03:00
|
|
|
return data;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
d_char *xs_collapse(d_char *data, int offset, int size)
|
|
|
|
/* shrinks data */
|
|
|
|
{
|
|
|
|
int sz = xs_size(data);
|
|
|
|
int n;
|
|
|
|
|
|
|
|
/* don't try to delete beyond the limit */
|
|
|
|
if (offset + size > sz)
|
|
|
|
size = sz - offset;
|
|
|
|
|
|
|
|
/* shrink total size */
|
|
|
|
sz -= size;
|
|
|
|
|
|
|
|
for (n = offset; n < sz; n++)
|
|
|
|
data[n] = data[n + size];
|
|
|
|
|
2022-12-06 21:12:26 +03:00
|
|
|
if (xs_type(data) == XSTYPE_LIST || xs_type(data) == XSTYPE_DICT)
|
|
|
|
_xs_put_24b(data + 1, sz);
|
|
|
|
|
2022-10-07 14:48:53 +03:00
|
|
|
return xs_realloc(data, _xs_blk_size(sz));
|
2022-09-19 21:41:11 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
d_char *xs_insert_m(d_char *data, int offset, const char *mem, int size)
|
|
|
|
/* inserts a memory block */
|
|
|
|
{
|
|
|
|
data = xs_expand(data, offset, size);
|
|
|
|
memcpy(data + offset, mem, size);
|
|
|
|
|
|
|
|
return data;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/** strings **/
|
|
|
|
|
|
|
|
d_char *xs_str_new(const char *str)
|
|
|
|
/* creates a new string */
|
|
|
|
{
|
|
|
|
return xs_insert(NULL, 0, str ? str : "");
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2022-09-27 11:14:29 +03:00
|
|
|
d_char *xs_replace_i(d_char *str, const char *sfrom, const char *sto)
|
|
|
|
/* replaces inline all sfrom with sto */
|
2022-09-19 21:41:11 +03:00
|
|
|
{
|
2022-09-27 11:14:29 +03:00
|
|
|
int sfsz = strlen(sfrom);
|
|
|
|
int stsz = strlen(sto);
|
2022-09-19 21:41:11 +03:00
|
|
|
char *ss;
|
2022-09-27 11:14:29 +03:00
|
|
|
int offset = 0;
|
2022-09-19 21:41:11 +03:00
|
|
|
|
2022-09-27 11:14:29 +03:00
|
|
|
while ((ss = strstr(str + offset, sfrom)) != NULL) {
|
|
|
|
int n_offset = ss - str;
|
2022-09-19 21:41:11 +03:00
|
|
|
|
2022-09-27 11:14:29 +03:00
|
|
|
str = xs_collapse(str, n_offset, sfsz);
|
|
|
|
str = xs_expand(str, n_offset, stsz);
|
|
|
|
memcpy(str + n_offset, sto, stsz);
|
2022-09-19 21:41:11 +03:00
|
|
|
|
2022-09-27 11:50:32 +03:00
|
|
|
offset = n_offset + stsz;
|
2022-09-19 21:41:11 +03:00
|
|
|
}
|
|
|
|
|
2022-09-27 11:14:29 +03:00
|
|
|
return str;
|
2022-09-19 21:41:11 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
d_char *xs_fmt(const char *fmt, ...)
|
|
|
|
/* formats a string with printf()-like marks */
|
|
|
|
{
|
|
|
|
int n;
|
|
|
|
d_char *s = NULL;
|
|
|
|
va_list ap;
|
|
|
|
|
|
|
|
va_start(ap, fmt);
|
|
|
|
n = vsnprintf(s, 0, fmt, ap);
|
|
|
|
va_end(ap);
|
|
|
|
|
|
|
|
if (n > 0) {
|
2022-10-25 10:32:41 +03:00
|
|
|
s = xs_realloc(NULL, _xs_blk_size(n + 1));
|
2022-09-19 21:41:11 +03:00
|
|
|
|
|
|
|
va_start(ap, fmt);
|
2022-10-25 10:32:41 +03:00
|
|
|
vsnprintf(s, n + 1, fmt, ap);
|
2022-09-19 21:41:11 +03:00
|
|
|
va_end(ap);
|
|
|
|
}
|
|
|
|
|
|
|
|
return s;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2022-10-08 08:00:05 +03:00
|
|
|
int xs_str_in(const char *haystack, const char *needle)
|
2022-09-19 21:41:11 +03:00
|
|
|
/* finds needle in haystack and returns the offset or -1 */
|
|
|
|
{
|
|
|
|
char *s;
|
|
|
|
int r = -1;
|
|
|
|
|
|
|
|
if ((s = strstr(haystack, needle)) != NULL)
|
|
|
|
r = s - haystack;
|
|
|
|
|
|
|
|
return r;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2022-10-08 08:00:05 +03:00
|
|
|
int xs_startswith(const char *str, const char *prefix)
|
2022-09-19 21:41:11 +03:00
|
|
|
/* returns true if str starts with prefix */
|
|
|
|
{
|
|
|
|
return !!(xs_str_in(str, prefix) == 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2022-10-08 08:00:05 +03:00
|
|
|
int xs_endswith(const char *str, const char *postfix)
|
2022-09-19 21:41:11 +03:00
|
|
|
/* returns true if str ends with postfix */
|
|
|
|
{
|
|
|
|
int ssz = strlen(str);
|
|
|
|
int psz = strlen(postfix);
|
|
|
|
|
|
|
|
return !!(ssz >= psz && memcmp(postfix, str + ssz - psz, psz) == 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2023-01-12 11:28:02 +03:00
|
|
|
d_char *xs_crop_i(d_char *str, int start, int end)
|
2022-09-19 21:41:11 +03:00
|
|
|
/* crops the d_char to be only from start to end */
|
|
|
|
{
|
|
|
|
int sz = strlen(str);
|
|
|
|
|
|
|
|
if (end <= 0)
|
|
|
|
end = sz + end;
|
|
|
|
|
|
|
|
/* crop from the top */
|
|
|
|
str[end] = '\0';
|
|
|
|
|
|
|
|
/* crop from the bottom */
|
|
|
|
str = xs_collapse(str, 0, start);
|
|
|
|
|
|
|
|
return str;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2023-01-12 11:28:02 +03:00
|
|
|
d_char *xs_strip_chars_i(d_char *str, const char *chars)
|
2023-01-08 20:50:37 +03:00
|
|
|
/* strips the string of chars from the start and the end */
|
2022-09-19 21:41:11 +03:00
|
|
|
{
|
2023-01-10 10:45:36 +03:00
|
|
|
int n;
|
|
|
|
|
|
|
|
/* strip first from the end */
|
|
|
|
for (n = strlen(str); n > 0 && strchr(chars, str[n - 1]); n--);
|
|
|
|
str[n] = '\0';
|
2022-09-19 21:41:11 +03:00
|
|
|
|
2023-01-10 10:45:36 +03:00
|
|
|
if (str[0]) {
|
|
|
|
/* now strip from the beginning */
|
|
|
|
for (n = 0; str[n] && strchr(chars, str[n]); n++);
|
2022-09-19 21:41:11 +03:00
|
|
|
|
2023-01-10 10:45:36 +03:00
|
|
|
if (n)
|
|
|
|
str = xs_collapse(str, 0, n);
|
|
|
|
}
|
|
|
|
|
|
|
|
return str;
|
2022-09-19 21:41:11 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2023-01-12 11:28:02 +03:00
|
|
|
d_char *xs_tolower_i(d_char *str)
|
2022-09-19 21:41:11 +03:00
|
|
|
/* convert to lowercase */
|
|
|
|
{
|
|
|
|
int n;
|
|
|
|
|
|
|
|
for (n = 0; str[n]; n++)
|
|
|
|
str[n] = tolower(str[n]);
|
|
|
|
|
|
|
|
return str;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2023-01-12 11:28:02 +03:00
|
|
|
d_char *xs_str_prepend_i(d_char *str, const char *prefix)
|
2023-01-10 10:57:31 +03:00
|
|
|
/* prepends prefix into string */
|
|
|
|
{
|
|
|
|
int sz = strlen(prefix);
|
|
|
|
|
|
|
|
str = xs_expand(str, 0, sz);
|
|
|
|
memcpy(str, prefix, sz);
|
|
|
|
|
|
|
|
return str;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2022-09-19 21:41:11 +03:00
|
|
|
/** lists **/
|
|
|
|
|
|
|
|
d_char *xs_list_new(void)
|
|
|
|
/* creates a new list */
|
|
|
|
{
|
|
|
|
d_char *list;
|
|
|
|
|
2022-12-06 21:12:26 +03:00
|
|
|
list = xs_realloc(NULL, _xs_blk_size(5));
|
2022-09-25 23:57:18 +03:00
|
|
|
list[0] = XSTYPE_LIST;
|
2022-12-06 21:12:26 +03:00
|
|
|
list[4] = XSTYPE_EOL;
|
|
|
|
|
|
|
|
_xs_put_24b(list + 1, 5);
|
2022-09-19 21:41:11 +03:00
|
|
|
|
|
|
|
return list;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2022-11-20 12:57:05 +03:00
|
|
|
d_char *_xs_list_write_litem(d_char *list, int offset, const char *mem, int dsz)
|
|
|
|
/* writes a list item */
|
2022-09-19 21:41:11 +03:00
|
|
|
{
|
|
|
|
char c = XSTYPE_LITEM;
|
|
|
|
|
2022-11-20 12:57:05 +03:00
|
|
|
list = xs_insert_m(list, offset, &c, 1);
|
|
|
|
list = xs_insert_m(list, offset + 1, mem, dsz);
|
2022-09-19 21:41:11 +03:00
|
|
|
|
|
|
|
return list;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2022-11-20 12:57:05 +03:00
|
|
|
d_char *xs_list_append_m(d_char *list, const char *mem, int dsz)
|
|
|
|
/* adds a memory block to the list */
|
|
|
|
{
|
|
|
|
return _xs_list_write_litem(list, xs_size(list) - 1, mem, dsz);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2022-09-19 21:41:11 +03:00
|
|
|
int xs_list_iter(char **list, char **value)
|
|
|
|
/* iterates a list value */
|
|
|
|
{
|
|
|
|
int goon = 1;
|
|
|
|
char *p;
|
|
|
|
|
|
|
|
if (list == NULL || *list == NULL)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
p = *list;
|
|
|
|
|
2022-12-06 21:12:26 +03:00
|
|
|
/* skip the start of the list */
|
2022-09-25 23:57:18 +03:00
|
|
|
if (*p == XSTYPE_LIST)
|
2022-12-06 21:12:26 +03:00
|
|
|
p += 4;
|
2022-09-19 21:41:11 +03:00
|
|
|
|
|
|
|
/* an element? */
|
|
|
|
if (*p == XSTYPE_LITEM) {
|
|
|
|
p++;
|
|
|
|
|
|
|
|
*value = p;
|
|
|
|
|
|
|
|
p += xs_size(*value);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
/* end of list */
|
|
|
|
p++;
|
|
|
|
goon = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* store back the pointer */
|
|
|
|
*list = p;
|
|
|
|
|
|
|
|
return goon;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int xs_list_len(char *list)
|
|
|
|
/* returns the number of elements in the list */
|
|
|
|
{
|
|
|
|
int c = 0;
|
|
|
|
char *v;
|
|
|
|
|
|
|
|
while (xs_list_iter(&list, &v))
|
|
|
|
c++;
|
|
|
|
|
|
|
|
return c;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
char *xs_list_get(char *list, int num)
|
|
|
|
/* returns the element #num */
|
|
|
|
{
|
2022-10-22 06:48:44 +03:00
|
|
|
char *v;
|
2022-09-19 21:41:11 +03:00
|
|
|
int c = 0;
|
|
|
|
|
|
|
|
if (num < 0)
|
|
|
|
num = xs_list_len(list) + num;
|
|
|
|
|
|
|
|
while (xs_list_iter(&list, &v)) {
|
2022-10-22 06:48:44 +03:00
|
|
|
if (c == num)
|
|
|
|
return v;
|
|
|
|
|
2022-09-19 21:41:11 +03:00
|
|
|
c++;
|
|
|
|
}
|
|
|
|
|
2022-10-22 06:48:44 +03:00
|
|
|
return NULL;
|
2022-09-19 21:41:11 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2022-11-20 12:57:05 +03:00
|
|
|
d_char *xs_list_del(d_char *list, int num)
|
|
|
|
/* deletes element #num */
|
|
|
|
{
|
|
|
|
char *v;
|
|
|
|
|
|
|
|
if ((v = xs_list_get(list, num)) != NULL)
|
|
|
|
list = xs_collapse(list, v - 1 - list, xs_size(v - 1));
|
|
|
|
|
|
|
|
return list;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
d_char *xs_list_insert(d_char *list, int num, const char *data)
|
|
|
|
/* inserts an element at #num position */
|
|
|
|
{
|
|
|
|
char *v;
|
|
|
|
int offset;
|
|
|
|
|
|
|
|
if ((v = xs_list_get(list, num)) != NULL)
|
|
|
|
offset = v - list;
|
|
|
|
else
|
|
|
|
offset = xs_size(list);
|
|
|
|
|
|
|
|
return _xs_list_write_litem(list, offset - 1, data, xs_size(data));
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
d_char *xs_list_insert_sorted(d_char *list, const char *str)
|
|
|
|
/* inserts a string in the list in its ordered position */
|
|
|
|
{
|
|
|
|
char *p, *v;
|
|
|
|
int offset = xs_size(list);
|
|
|
|
|
|
|
|
p = list;
|
|
|
|
while (xs_list_iter(&p, &v)) {
|
|
|
|
/* if this element is greater or equal, insert here */
|
|
|
|
if (strcmp(v, str) >= 0) {
|
|
|
|
offset = v - list;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return _xs_list_write_litem(list, offset - 1, str, xs_size(str));
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
d_char *xs_list_set(d_char *list, int num, const char *data)
|
|
|
|
/* sets the element at #num position */
|
|
|
|
{
|
|
|
|
list = xs_list_del(list, num);
|
|
|
|
list = xs_list_insert(list, num, data);
|
|
|
|
|
|
|
|
return list;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
d_char *xs_list_pop(d_char *list, char **data)
|
|
|
|
/* pops the last element from the list */
|
|
|
|
{
|
|
|
|
if ((*data = xs_list_get(list, -1)) != NULL) {
|
|
|
|
*data = xs_dup(*data);
|
|
|
|
list = xs_list_del(list, -1);
|
|
|
|
}
|
|
|
|
|
|
|
|
return list;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2022-10-25 14:59:15 +03:00
|
|
|
int xs_list_in(char *list, const char *val)
|
2022-09-19 21:41:11 +03:00
|
|
|
/* returns the position of val in list or -1 */
|
|
|
|
{
|
|
|
|
int n = 0;
|
|
|
|
char *v;
|
|
|
|
int sz = xs_size(val);
|
|
|
|
|
2022-10-22 06:48:44 +03:00
|
|
|
while (xs_list_iter(&list, &v)) {
|
|
|
|
if (sz == xs_size(v) && memcmp(val, v, sz) == 0)
|
|
|
|
return n;
|
2022-09-19 21:41:11 +03:00
|
|
|
|
|
|
|
n++;
|
|
|
|
}
|
|
|
|
|
2022-10-22 06:48:44 +03:00
|
|
|
return -1;
|
2022-09-19 21:41:11 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
d_char *xs_join(char *list, const char *sep)
|
|
|
|
/* joins a list into a string */
|
|
|
|
{
|
2023-01-08 12:39:11 +03:00
|
|
|
d_char *s = NULL;
|
2022-09-19 21:41:11 +03:00
|
|
|
char *v;
|
|
|
|
int c = 0;
|
2023-01-08 12:39:11 +03:00
|
|
|
int offset = 0;
|
|
|
|
int ssz = strlen(sep);
|
2022-09-19 21:41:11 +03:00
|
|
|
|
|
|
|
while (xs_list_iter(&list, &v)) {
|
|
|
|
/* refuse to join non-string values */
|
|
|
|
if (xs_type(v) == XSTYPE_STRING) {
|
2023-01-08 12:39:11 +03:00
|
|
|
int sz;
|
|
|
|
|
2022-09-19 21:41:11 +03:00
|
|
|
/* add the separator */
|
2023-01-08 12:39:11 +03:00
|
|
|
if (c != 0) {
|
|
|
|
s = xs_realloc(s, offset + ssz);
|
|
|
|
memcpy(s + offset, sep, ssz);
|
|
|
|
offset += ssz;
|
|
|
|
}
|
2022-09-19 21:41:11 +03:00
|
|
|
|
|
|
|
/* add the element */
|
2023-01-08 12:39:11 +03:00
|
|
|
sz = strlen(v);
|
|
|
|
s = xs_realloc(s, offset + sz);
|
|
|
|
memcpy(s + offset, v, sz);
|
|
|
|
offset += sz;
|
2022-09-19 21:41:11 +03:00
|
|
|
|
|
|
|
c++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-01-08 12:39:11 +03:00
|
|
|
/* null-terminate */
|
|
|
|
s = xs_realloc(s, _xs_blk_size(offset + 1));
|
|
|
|
s[offset] = '\0';
|
|
|
|
|
2022-09-19 21:41:11 +03:00
|
|
|
return s;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2022-09-20 00:08:59 +03:00
|
|
|
d_char *xs_split_n(const char *str, const char *sep, int times)
|
2022-09-19 21:41:11 +03:00
|
|
|
/* splits a string into a list upto n times */
|
|
|
|
{
|
|
|
|
int sz = strlen(sep);
|
|
|
|
char *ss;
|
|
|
|
d_char *list;
|
|
|
|
|
|
|
|
list = xs_list_new();
|
|
|
|
|
|
|
|
while (times > 0 && (ss = strstr(str, sep)) != NULL) {
|
|
|
|
/* add the first part (without the asciiz) */
|
|
|
|
list = xs_list_append_m(list, str, ss - str);
|
|
|
|
|
|
|
|
/* add the asciiz */
|
|
|
|
list = xs_str_cat(list, "");
|
|
|
|
|
|
|
|
/* skip past the separator */
|
|
|
|
str = ss + sz;
|
|
|
|
|
|
|
|
times--;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* add the rest of the string */
|
|
|
|
list = xs_list_append(list, str);
|
|
|
|
|
|
|
|
return list;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/** dicts **/
|
|
|
|
|
|
|
|
d_char *xs_dict_new(void)
|
|
|
|
/* creates a new dict */
|
|
|
|
{
|
|
|
|
d_char *dict;
|
|
|
|
|
2022-12-06 21:12:26 +03:00
|
|
|
dict = xs_realloc(NULL, _xs_blk_size(5));
|
2022-09-25 23:57:18 +03:00
|
|
|
dict[0] = XSTYPE_DICT;
|
2022-12-06 21:12:26 +03:00
|
|
|
dict[4] = XSTYPE_EOD;
|
|
|
|
|
|
|
|
_xs_put_24b(dict + 1, 5);
|
2022-09-19 21:41:11 +03:00
|
|
|
|
|
|
|
return dict;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
d_char *xs_dict_append_m(d_char *dict, const char *key, const char *mem, int dsz)
|
|
|
|
/* adds a memory block to the dict */
|
|
|
|
{
|
|
|
|
char c = XSTYPE_DITEM;
|
|
|
|
int sz = xs_size(dict);
|
|
|
|
int ksz = xs_size(key);
|
|
|
|
|
|
|
|
dict = xs_insert_m(dict, sz - 1, &c, 1);
|
|
|
|
dict = xs_insert_m(dict, sz, key, ksz);
|
|
|
|
dict = xs_insert_m(dict, sz + ksz, mem, dsz);
|
|
|
|
|
|
|
|
return dict;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int xs_dict_iter(char **dict, char **key, char **value)
|
|
|
|
/* iterates a dict value */
|
|
|
|
{
|
|
|
|
int goon = 1;
|
|
|
|
char *p;
|
|
|
|
|
|
|
|
if (dict == NULL || *dict == NULL)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
p = *dict;
|
|
|
|
|
2022-12-06 21:12:26 +03:00
|
|
|
/* skip the start of the list */
|
2022-09-25 23:57:18 +03:00
|
|
|
if (*p == XSTYPE_DICT)
|
2022-12-06 21:12:26 +03:00
|
|
|
p += 4;
|
2022-09-19 21:41:11 +03:00
|
|
|
|
|
|
|
/* an element? */
|
|
|
|
if (*p == XSTYPE_DITEM) {
|
|
|
|
p++;
|
|
|
|
|
|
|
|
*key = p;
|
|
|
|
p += xs_size(*key);
|
|
|
|
|
|
|
|
*value = p;
|
|
|
|
p += xs_size(*value);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
/* end of list */
|
|
|
|
p++;
|
|
|
|
goon = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* store back the pointer */
|
|
|
|
*dict = p;
|
|
|
|
|
|
|
|
return goon;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
char *xs_dict_get(char *dict, const char *key)
|
|
|
|
/* returns the value directed by key */
|
|
|
|
{
|
2022-10-22 06:48:44 +03:00
|
|
|
char *k, *v;
|
2022-09-19 21:41:11 +03:00
|
|
|
|
|
|
|
while (xs_dict_iter(&dict, &k, &v)) {
|
2022-10-22 06:48:44 +03:00
|
|
|
if (strcmp(k, key) == 0)
|
|
|
|
return v;
|
2022-09-19 21:41:11 +03:00
|
|
|
}
|
|
|
|
|
2022-10-22 06:48:44 +03:00
|
|
|
return NULL;
|
2022-09-19 21:41:11 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
d_char *xs_dict_del(d_char *dict, const char *key)
|
|
|
|
/* deletes a key */
|
|
|
|
{
|
|
|
|
char *k, *v;
|
|
|
|
char *p = dict;
|
|
|
|
|
|
|
|
while (xs_dict_iter(&p, &k, &v)) {
|
|
|
|
if (strcmp(k, key) == 0) {
|
|
|
|
/* the address of the item is just behind the key */
|
|
|
|
char *i = k - 1;
|
|
|
|
|
|
|
|
dict = xs_collapse(dict, i - dict, xs_size(i));
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return dict;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
d_char *xs_dict_set(d_char *dict, const char *key, const char *data)
|
|
|
|
/* sets (replaces) a key */
|
|
|
|
{
|
|
|
|
/* delete the possibly existing key */
|
|
|
|
dict = xs_dict_del(dict, key);
|
|
|
|
|
|
|
|
/* append the data */
|
|
|
|
dict = xs_dict_append(dict, key, data);
|
|
|
|
|
|
|
|
return dict;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/** other values **/
|
|
|
|
|
|
|
|
d_char *xs_val_new(xstype t)
|
|
|
|
/* adds a new special value */
|
|
|
|
{
|
2022-10-07 14:48:53 +03:00
|
|
|
d_char *v = xs_realloc(NULL, _xs_blk_size(1));
|
2022-09-19 21:41:11 +03:00
|
|
|
|
|
|
|
v[0] = t;
|
|
|
|
|
|
|
|
return v;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2022-10-07 16:06:17 +03:00
|
|
|
/** numbers */
|
|
|
|
|
|
|
|
d_char *xs_number_new(double f)
|
2022-09-19 21:41:11 +03:00
|
|
|
/* adds a new number value */
|
|
|
|
{
|
2022-10-07 16:06:17 +03:00
|
|
|
d_char *v;
|
|
|
|
char tmp[64];
|
|
|
|
|
|
|
|
snprintf(tmp, sizeof(tmp), "%.15lf", f);
|
|
|
|
|
|
|
|
/* strip useless zeros */
|
|
|
|
if (strchr(tmp, '.') != NULL) {
|
|
|
|
char *ptr;
|
|
|
|
|
|
|
|
for (ptr = tmp + strlen(tmp) - 1; *ptr == '0'; ptr--);
|
|
|
|
|
|
|
|
if (*ptr != '.')
|
|
|
|
ptr++;
|
|
|
|
|
|
|
|
*ptr = '\0';
|
|
|
|
}
|
|
|
|
|
|
|
|
/* alloc for the marker and the full string */
|
|
|
|
v = xs_realloc(NULL, _xs_blk_size(1 + xs_size(tmp)));
|
2022-09-19 21:41:11 +03:00
|
|
|
|
|
|
|
v[0] = XSTYPE_NUMBER;
|
2022-10-07 16:06:17 +03:00
|
|
|
memcpy(&v[1], tmp, xs_size(tmp));
|
2022-09-19 21:41:11 +03:00
|
|
|
|
|
|
|
return v;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2022-10-08 08:00:05 +03:00
|
|
|
double xs_number_get(const char *v)
|
2022-10-07 16:06:17 +03:00
|
|
|
/* gets the number as a double */
|
2022-09-19 21:41:11 +03:00
|
|
|
{
|
2022-10-07 16:06:17 +03:00
|
|
|
double f = 0.0;
|
2022-09-19 21:41:11 +03:00
|
|
|
|
2022-10-16 19:03:28 +03:00
|
|
|
if (v != NULL && v[0] == XSTYPE_NUMBER)
|
2022-10-07 16:06:17 +03:00
|
|
|
f = atof(&v[1]);
|
2022-09-19 21:41:11 +03:00
|
|
|
|
|
|
|
return f;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2022-10-08 08:00:05 +03:00
|
|
|
const char *xs_number_str(const char *v)
|
2022-10-07 16:06:17 +03:00
|
|
|
/* gets the number as a string */
|
|
|
|
{
|
2022-10-08 08:00:05 +03:00
|
|
|
const char *p = NULL;
|
2022-10-07 16:06:17 +03:00
|
|
|
|
2022-10-16 19:03:28 +03:00
|
|
|
if (v != NULL && v[0] == XSTYPE_NUMBER)
|
2022-10-07 16:06:17 +03:00
|
|
|
p = &v[1];
|
|
|
|
|
|
|
|
return p;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2022-12-11 11:46:27 +03:00
|
|
|
void *xs_memmem(const char *haystack, int h_size, const char *needle, int n_size)
|
|
|
|
/* clone of memmem */
|
|
|
|
{
|
|
|
|
char *p, *r = NULL;
|
|
|
|
int offset = 0;
|
|
|
|
|
2022-12-11 12:33:01 +03:00
|
|
|
while (!r && h_size - offset > n_size &&
|
|
|
|
(p = memchr(haystack + offset, *needle, h_size - offset))) {
|
2022-12-11 11:46:27 +03:00
|
|
|
if (memcmp(p, needle, n_size) == 0)
|
|
|
|
r = p;
|
|
|
|
else
|
|
|
|
offset = p - haystack + 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
return r;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2022-09-19 21:41:11 +03:00
|
|
|
#endif /* XS_IMPLEMENTATION */
|
|
|
|
|
|
|
|
#endif /* _XS_H */
|