1
0
mirror of https://github.com/fumiama/fumidb.git synced 2026-06-09 04:30:34 +08:00

finish type int8

This commit is contained in:
源文雨
2022-05-01 23:21:09 +08:00
parent 67b9176615
commit 6defee6974
5 changed files with 103 additions and 34 deletions

View File

@@ -2,34 +2,42 @@
#include "../include/types/int8.h"
// ptr = init(fd)
typedef uint64_t (*_type_init_t)(int);
typedef void* (*_type_init_t)(int);
// ptr = load(fd, ptr)
typedef void* (*_type_load_t)(int, uint64_t);
// ret = insert_item(fd, index, k, ptr)
typedef int (*_insert_item_t)(int, uint64_t, key_t, uint64_t);
typedef int (*_insert_item_t)(int, void*, key_t, uint64_t);
// ptr = find_by_key(fd, index, k)
typedef uint64_t (*_find_by_key_t)(int, uint64_t, key_t);
typedef uint64_t (*_find_by_key_t)(int, void*, key_t);
// ret = remove_by_key(fd, index, k)
typedef int (*_remove_by_key_t)(int, uint64_t, key_t);
typedef int (*_remove_by_key_t)(int, void*, key_t);
// Function not implemented
static uint64_t create_not_impl_index(int fd) {
static void* create_not_impl_index(int fd) {
errno = ENOSYS;
return 0;
}
// Function not implemented
static int insert_not_impl_item(int fd, uint64_t index, key_t k, uint64_t ptr) {
static void* load_not_impl_index(int fd, uint64_t ptr) {
errno = ENOSYS;
return 0;
}
// Function not implemented
static uint64_t find_item_by_not_impl_key(int fd, uint64_t index, key_t k) {
static int insert_not_impl_item(int fd, void* index, key_t k, uint64_t ptr) {
errno = ENOSYS;
return 0;
}
// Function not implemented
static int remove_item_by_not_impl_key(int fd, uint64_t index, key_t k) {
static uint64_t find_item_by_not_impl_key(int fd, void* index, key_t k) {
errno = ENOSYS;
return 0;
}
// Function not implemented
static int remove_item_by_not_impl_key(int fd, void* index, key_t k) {
errno = ENOSYS;
return 0;
}
@@ -44,6 +52,16 @@ static _type_init_t _types_init[] = {
create_not_impl_index
};
static _type_load_t _types_load[] = {
load_int8_index,
load_not_impl_index,
load_not_impl_index,
load_not_impl_index,
load_not_impl_index,
load_not_impl_index,
load_not_impl_index
};
static _insert_item_t _insert_item[] = {
insert_int8_item,
insert_not_impl_item,
@@ -74,18 +92,22 @@ static _remove_by_key_t _remove_item_by_key[] = {
remove_item_by_not_impl_key
};
uint64_t create_index(int fd, type_t t) {
void* create_index(int fd, type_t t) {
return _types_init[t&7](fd);
}
int insert_item(int fd, type_t t, uint64_t index, key_t k, uint64_t ptr) {
void* load_index(int fd, type_t t, uint64_t ptr) {
return _types_load[t&7](fd, ptr);
}
int insert_item(int fd, type_t t, void* index, key_t k, uint64_t ptr) {
return _insert_item[t&7](fd, index, k, ptr);
}
uint64_t find_item_by_key(int fd, type_t t, uint64_t index, key_t k) {
uint64_t find_item_by_key(int fd, type_t t, void* index, key_t k) {
return _find_item_by_key[t&7](fd, index, k);
}
int remove_item_by_key(int fd, type_t t, uint64_t index, key_t k) {
int remove_item_by_key(int fd, type_t t, void* index, key_t k) {
return _remove_item_by_key[t&7](fd, index, k);
}