libcdsb/src/map/base.c

92 lines
2.6 KiB
C
Raw Normal View History

2022-06-08 09:56:14 +03:00
/* This software is licensed by the MIT License, see LICENSE file */
/* Copyright © 2022 Gregory Lirent */
#include "include.h"
2022-08-14 18:24:16 +03:00
#define mtree_duplicate(s, t) rbtree_duplicate((rbnode_t*)s, (void*)mnode_duplicate, t)
#define mtree_compare(s0, s1, t) rbtree_compare((void*)s0, (void*)s1, (void*)mnode_compare, (void*)t)
static mnode_t* mnode_duplicate(const mnode_t* s, mnode_t* p, const vtype* t) {
mnode_t* x;
x = mnode_create(vnode_duplicate(&s->key, *t), p, s->colored);
x->type = s->type;
x->value = vnode_duplicate(&s->value, s->type);
return x;
}
static int mnode_compare(const mnode_t* s0, const mnode_t* s1, vtype* t) {
int c = vnode_compare_eq(&s0->key, &s1->key, *t);
return !c ? vnode_compare(&s0->value, s0->type, &s1->value, s1->type) : c;
}
static hash_t mnode_hash(const mnode_t* s, vtype* tp) {
vtype t = (!is_null(tp)) ? *tp : VTYPE_POINTER;
return vnode_hash(s->key, t) + vnode_hash(s->value, s->type) + t;
}
void libcdsb_mnode_free(mnode_t* x, vtype* t) {
vnode_free(&x->key, *t);
vnode_free(&x->value, x->type);
}
/*#####################################################################################################################*/
hash_t map_hash(const map_t* s) {
return rbtree_hash(s->root, (void*)mnode_hash, (void*)&s->type) + VTYPE_MAP;
}
2022-06-08 09:56:14 +03:00
void map_init(map_t* x, vtype t) {
x->root = mnode_empty;
x->type = t;
}
void map_free(map_t* x) {
2022-08-14 18:24:16 +03:00
rbtree_free(x->root, (void*)mnode_free, &x->type);
2022-06-08 09:56:14 +03:00
2022-08-14 18:24:16 +03:00
x->root = mnode_empty;
2022-06-08 09:56:14 +03:00
x->type = 0;
}
2022-08-14 18:24:16 +03:00
/*#####################################################################################################################*/
2022-06-08 09:56:14 +03:00
size_t map_size(const map_t* x) {
2022-08-14 18:24:16 +03:00
return rbtree_size(x->root);
2022-06-08 09:56:14 +03:00
}
2022-08-14 18:24:16 +03:00
/*#####################################################################################################################*/
2022-06-08 09:56:14 +03:00
int map_compare(const map_t* s0, const map_t* s1) {
2022-08-14 18:24:16 +03:00
if (s0 == s1) return 0;
if (s0->type != s1->type) return s0->type - s1->type;
2022-06-08 09:56:14 +03:00
2022-08-14 18:24:16 +03:00
return mtree_compare(s0->root, s1->root, &s0->type);
}
2022-06-08 09:56:14 +03:00
2022-08-14 18:24:16 +03:00
/*#####################################################################################################################*/
map_t map_copy(const map_t* s) {
map_t x;
x.type = s->type;
x.root = mtree_duplicate(s->root, &x.type);
return x;
}
map_t* map_duplicate(const map_t* s) {
map_t *x = malloc(sizeof(*x));
x->type = s->type;
x->root = mtree_duplicate(s->root, &x->type);
return x;
}
2022-06-08 09:56:14 +03:00
2022-08-14 18:24:16 +03:00
void map_copy_init(map_t* x, const map_t* s) {
x->type = s->type;
x->root = mtree_duplicate(s->root, &x->type);
2022-06-08 09:56:14 +03:00
}