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-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);
|
2022-10-07 14:48:53 +03:00
|
|
|
void *xs_realloc(void *ptr, size_t size);
|
2022-09-19 21:41:11 +03:00
|
|
|
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);
|
2022-09-19 21:41:11 +03:00
|
|
|
d_char *xs_crop(d_char *str, int start, int end);
|
|
|
|
d_char *xs_strip(d_char *str);
|
|
|
|
d_char *xs_tolower(d_char *str);
|
|
|
|
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);
|
|
|
|
int xs_list_in(char *list, char *val);
|
|
|
|
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);
|
|
|
|
#define xs_split(str, sep) xs_split_n(str, sep, 0xfffffff)
|
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
|
|
|
|
|
|
|
extern int _xs_debug;
|
|
|
|
|
|
|
|
|
|
|
|
#ifdef XS_IMPLEMENTATION
|
|
|
|
|
|
|
|
int _xs_debug = 0;
|
|
|
|
|
|
|
|
void _xs_destroy(char **var)
|
|
|
|
{
|
|
|
|
if (_xs_debug)
|
|
|
|
printf("_xs_destroy %p\n", var);
|
|
|
|
|
|
|
|
free(*var);
|
|
|
|
}
|
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int xs_size(const char *data)
|
|
|
|
/* returns the size of data in bytes */
|
|
|
|
{
|
|
|
|
int len = 0;
|
|
|
|
int c = 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-09-19 21:41:11 +03:00
|
|
|
/* look for a balanced EOL */
|
|
|
|
do {
|
2022-09-25 23:57:18 +03:00
|
|
|
c += data[len] == XSTYPE_LIST ? 1 : data[len] == XSTYPE_EOL ? -1 : 0;
|
2022-09-19 21:41:11 +03:00
|
|
|
len++;
|
|
|
|
} while (c);
|
|
|
|
|
|
|
|
break;
|
|
|
|
|
2022-09-25 23:57:18 +03:00
|
|
|
case XSTYPE_DICT:
|
2022-09-19 21:41:11 +03:00
|
|
|
/* look for a balanced EOD */
|
|
|
|
do {
|
2022-09-25 23:57:18 +03:00
|
|
|
c += data[len] == XSTYPE_DICT ? 1 : data[len] == XSTYPE_EOD ? -1 : 0;
|
2022-09-19 21:41:11 +03:00
|
|
|
len++;
|
|
|
|
} while (c);
|
|
|
|
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2022-10-07 14:48:53 +03:00
|
|
|
void *xs_realloc(void *ptr, size_t size)
|
|
|
|
{
|
|
|
|
d_char *ndata = realloc(ptr, size);
|
|
|
|
|
|
|
|
if (ndata == NULL) {
|
|
|
|
fprintf(stderr, "**OUT OF MEMORY**\n");
|
|
|
|
abort();
|
|
|
|
}
|
|
|
|
|
|
|
|
return ndata;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2022-09-19 21:41:11 +03:00
|
|
|
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
|
|
|
|
|
|
|
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-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) {
|
|
|
|
n = _xs_blk_size(n + 1);
|
|
|
|
s = calloc(n, 1);
|
|
|
|
|
|
|
|
va_start(ap, fmt);
|
2022-10-07 14:48:53 +03:00
|
|
|
vsnprintf(s, n, 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);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
d_char *xs_crop(d_char *str, int start, int end)
|
|
|
|
/* 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;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
d_char *xs_strip(d_char *str)
|
|
|
|
/* strips the string of blanks from the start and the end */
|
|
|
|
{
|
|
|
|
int s, e;
|
|
|
|
|
|
|
|
for (s = 0; isspace(str[s]); s++);
|
|
|
|
for (e = strlen(str); e > 0 && isspace(str[e - 1]); e--);
|
|
|
|
|
|
|
|
return xs_crop(str, s, e);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
d_char *xs_tolower(d_char *str)
|
|
|
|
/* convert to lowercase */
|
|
|
|
{
|
|
|
|
int n;
|
|
|
|
|
|
|
|
for (n = 0; str[n]; n++)
|
|
|
|
str[n] = tolower(str[n]);
|
|
|
|
|
|
|
|
return str;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/** lists **/
|
|
|
|
|
|
|
|
d_char *xs_list_new(void)
|
|
|
|
/* creates a new list */
|
|
|
|
{
|
|
|
|
d_char *list;
|
|
|
|
|
2022-10-07 14:48:53 +03:00
|
|
|
list = xs_realloc(NULL, _xs_blk_size(2));
|
2022-09-25 23:57:18 +03:00
|
|
|
list[0] = XSTYPE_LIST;
|
2022-09-19 21:41:11 +03:00
|
|
|
list[1] = XSTYPE_EOL;
|
|
|
|
|
|
|
|
return list;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
d_char *xs_list_append_m(d_char *list, const char *mem, int dsz)
|
|
|
|
/* adds a memory block to the list */
|
|
|
|
{
|
|
|
|
char c = XSTYPE_LITEM;
|
|
|
|
int lsz = xs_size(list);
|
|
|
|
|
|
|
|
list = xs_insert_m(list, lsz - 1, &c, 1);
|
|
|
|
list = xs_insert_m(list, lsz, mem, dsz);
|
|
|
|
|
|
|
|
return list;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
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;
|
|
|
|
|
|
|
|
/* skip a possible start of the list */
|
2022-09-25 23:57:18 +03:00
|
|
|
if (*p == XSTYPE_LIST)
|
2022-09-19 21:41:11 +03:00
|
|
|
p++;
|
|
|
|
|
|
|
|
/* 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
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int xs_list_in(char *list, char *val)
|
|
|
|
/* 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 */
|
|
|
|
{
|
|
|
|
d_char *s;
|
|
|
|
char *v;
|
|
|
|
int c = 0;
|
|
|
|
|
|
|
|
s = xs_str_new(NULL);
|
|
|
|
|
|
|
|
while (xs_list_iter(&list, &v)) {
|
|
|
|
/* refuse to join non-string values */
|
|
|
|
if (xs_type(v) == XSTYPE_STRING) {
|
|
|
|
/* add the separator */
|
|
|
|
if (c != 0)
|
|
|
|
s = xs_str_cat(s, sep);
|
|
|
|
|
|
|
|
/* add the element */
|
|
|
|
s = xs_str_cat(s, v);
|
|
|
|
|
|
|
|
c++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
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-10-07 14:48:53 +03:00
|
|
|
dict = xs_realloc(NULL, _xs_blk_size(2));
|
2022-09-25 23:57:18 +03:00
|
|
|
dict[0] = XSTYPE_DICT;
|
2022-09-19 21:41:11 +03:00
|
|
|
dict[1] = XSTYPE_EOD;
|
|
|
|
|
|
|
|
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;
|
|
|
|
|
|
|
|
/* skip a possible start of the list */
|
2022-09-25 23:57:18 +03:00
|
|
|
if (*p == XSTYPE_DICT)
|
2022-09-19 21:41:11 +03:00
|
|
|
p++;
|
|
|
|
|
|
|
|
/* 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-09-19 21:41:11 +03:00
|
|
|
#endif /* XS_IMPLEMENTATION */
|
|
|
|
|
|
|
|
#endif /* _XS_H */
|