This repository has been archived on 2025-09-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
tango-maat/src/maat_table.cpp

759 lines
22 KiB
C++
Raw Normal View History

2023-01-30 21:59:35 +08:00
/*
**********************************************************************************************
* File: maat_table.cpp
* Description:
* Authors: Liu WenTan <liuwentan@geedgenetworks.com>
* Date: 2022-10-31
* Copyright: (c) 2018-2022 Geedge Networks, Inc. All rights reserved.
***********************************************************************************************
*/
#include <limits.h>
#include <assert.h>
#include "log/log.h"
#include "maat_utils.h"
#include "maat_table.h"
#include "maat_rule.h"
#include "maat_garbage_collection.h"
#include "maat_kv.h"
#include "maat_expr.h"
#include "maat_ip.h"
#include "maat_compile.h"
#include "maat_group.h"
#include "maat_plugin.h"
#include "maat_ip_plugin.h"
2023-01-31 20:39:53 +08:00
#include "maat_virtual.h"
2023-01-30 21:59:35 +08:00
2023-02-03 17:28:14 +08:00
#define MODULE_TABLE module_name_str("maat.table")
2023-01-30 21:59:35 +08:00
struct table_item {
enum table_type table_type;
void *custom_item;
};
struct maat_table {
int table_id;
char table_name[NAME_MAX];
enum table_type table_type;
int valid_column;
void *schema;
void *runtime;
};
struct table_manager {
struct maat_table *tbl[MAX_TABLE_NUM];
size_t n_table;
struct rule_tag *accept_tags;
2023-01-31 20:39:53 +08:00
size_t n_accept_tag;
2023-01-30 21:59:35 +08:00
2023-01-31 20:39:53 +08:00
int default_compile_table_id;
2023-02-03 17:28:14 +08:00
int g2g_table_id;
2023-01-30 21:59:35 +08:00
struct maat_kv_store *tablename2id_map;
2023-02-03 17:28:14 +08:00
struct maat_kv_store *district_map;
struct maat_kv_store *tmp_district_map;
struct maat_garbage_bin *ref_garbage_bin;
2023-01-30 21:59:35 +08:00
struct log_handle *logger;
};
struct table_operations {
enum table_type type;
2023-02-03 17:28:14 +08:00
void *(*new_schema)(cJSON *json, struct table_manager *tbl_mgr, const char *table_name,
struct log_handle *logger);
2023-01-30 21:59:35 +08:00
void (*free_schema)(void *schema);
2023-02-03 17:28:14 +08:00
void *(*new_runtime)(void *schema, int max_thread_num, struct maat_garbage_bin *garbage_bin,
struct log_handle *logger);
2023-01-30 21:59:35 +08:00
void (*free_runtime)(void *runtime);
int (*update_runtime)(void *runtime, void *schema, const char *line, int valid_column);
int (*commit_runtime)(void *runtime);
};
struct table_operations table_ops[TABLE_TYPE_MAX] = {
{
.type = TABLE_TYPE_EXPR,
.new_schema = expr_schema_new,
.free_schema = expr_schema_free,
.new_runtime = expr_runtime_new,
.free_runtime = expr_runtime_free,
.update_runtime = expr_runtime_update,
2023-02-03 17:28:14 +08:00
.commit_runtime = expr_runtime_commit
2023-01-30 21:59:35 +08:00
},
{
.type = TABLE_TYPE_EXPR_PLUS,
.new_schema = expr_schema_new,
.free_schema = expr_schema_free,
.new_runtime = expr_runtime_new,
.free_runtime = expr_runtime_free,
.update_runtime = expr_runtime_update,
2023-02-03 17:28:14 +08:00
.commit_runtime = expr_runtime_commit
2023-01-30 21:59:35 +08:00
},
{
.type = TABLE_TYPE_IP_PLUS,
2023-02-03 17:28:14 +08:00
.new_schema = ip_schema_new,
.free_schema = ip_schema_free,
.new_runtime = ip_runtime_new,
.free_runtime = ip_runtime_free,
.update_runtime = ip_runtime_update,
.commit_runtime = ip_runtime_commit
2023-01-30 21:59:35 +08:00
},
{
.type = TABLE_TYPE_INTERVAL,
.new_schema = NULL,
.free_schema = NULL,
.new_runtime = NULL,
.free_runtime = NULL,
.update_runtime = NULL,
2023-02-03 17:28:14 +08:00
.commit_runtime = NULL
2023-01-30 21:59:35 +08:00
},
{
.type = TABLE_TYPE_INTERVAL_PLUS,
.new_schema = NULL,
.free_schema = NULL,
.new_runtime = NULL,
.free_runtime = NULL,
.update_runtime = NULL,
2023-02-03 17:28:14 +08:00
.commit_runtime = NULL
2023-01-30 21:59:35 +08:00
},
{
.type = TABLE_TYPE_DIGEST,
.new_schema = NULL,
.free_schema = NULL,
.new_runtime = NULL,
.free_runtime = NULL,
.update_runtime = NULL,
2023-02-03 17:28:14 +08:00
.commit_runtime = NULL
2023-01-30 21:59:35 +08:00
},
{
.type = TABLE_TYPE_SIMILARITY,
.new_schema = NULL,
.free_schema = NULL,
.new_runtime = NULL,
.free_runtime = NULL,
.update_runtime = NULL,
2023-02-03 17:28:14 +08:00
.commit_runtime = NULL
2023-01-30 21:59:35 +08:00
},
{
.type = TABLE_TYPE_CONJUNCTION,
.new_schema = NULL,
.free_schema = NULL,
.new_runtime = NULL,
.free_runtime = NULL,
.update_runtime = NULL,
2023-02-03 17:28:14 +08:00
.commit_runtime = NULL
2023-01-30 21:59:35 +08:00
},
{
.type = TABLE_TYPE_PLUGIN,
.new_schema = plugin_schema_new,
2023-01-31 20:39:53 +08:00
.free_schema = plugin_schema_free,
.new_runtime = plugin_runtime_new,
.free_runtime = plugin_runtime_free,
.update_runtime = plugin_runtime_update,
2023-02-03 17:28:14 +08:00
.commit_runtime = plugin_runtime_commit
2023-01-30 21:59:35 +08:00
},
{
.type = TABLE_TYPE_IP_PLUGIN,
.new_schema = ip_plugin_schema_new,
.free_schema = ip_plugin_schema_free,
.new_runtime = ip_plugin_runtime_new,
.free_runtime = ip_plugin_runtime_free,
.update_runtime = ip_plugin_runtime_update,
2023-02-03 17:28:14 +08:00
.commit_runtime = ip_plugin_runtime_commit
2023-01-30 21:59:35 +08:00
},
{
.type = TABLE_TYPE_FQDN_PLUGIN,
.new_schema = NULL,
.free_schema = NULL,
.new_runtime = NULL,
.free_runtime = NULL,
.update_runtime = NULL,
.commit_runtime = NULL
},
{
.type = TABLE_TYPE_BOOL_PLUGIN,
.new_schema = NULL,
.free_schema = NULL,
.new_runtime = NULL,
.free_runtime = NULL,
.update_runtime = NULL,
.commit_runtime = NULL
},
{
.type = TABLE_TYPE_VIRTUAL,
2023-01-31 20:39:53 +08:00
.new_schema = virtual_schema_new,
.free_schema = virtual_schema_free,
2023-01-30 21:59:35 +08:00
.new_runtime = NULL,
.free_runtime = NULL,
.update_runtime = NULL,
.commit_runtime = NULL
},
{
.type = TABLE_TYPE_COMPILE,
.new_schema = compile_schema_new,
.free_schema = compile_schema_free,
.new_runtime = compile_runtime_new,
.free_runtime = compile_runtime_free,
.update_runtime = compile_runtime_update,
2023-02-03 17:28:14 +08:00
.commit_runtime = compile_runtime_commit
2023-01-30 21:59:35 +08:00
},
{
.type = TABLE_TYPE_GROUP2GROUP,
.new_schema = group2group_schema_new,
.free_schema = group2group_schema_free,
.new_runtime = group2group_runtime_new,
.free_runtime = group2group_runtime_free,
.update_runtime = group2group_runtime_update,
2023-02-03 17:28:14 +08:00
.commit_runtime = group2group_runtime_commit
2023-01-31 20:39:53 +08:00
},
{
.type = TABLE_TYPE_GROUP2COMPILE,
.new_schema = group2compile_schema_new,
.free_schema = group2compile_schema_free,
.new_runtime = group2compile_runtime_new,
.free_runtime = group2compile_runtime_free,
.update_runtime = group2compile_runtime_update,
2023-02-03 17:28:14 +08:00
.commit_runtime = NULL
2023-01-30 21:59:35 +08:00
}
};
2023-02-03 17:28:14 +08:00
void *maat_table_schema_new(cJSON *json, const char *table_name,
enum table_type table_type,
struct table_manager *tbl_mgr,
2023-01-31 20:39:53 +08:00
struct log_handle *logger)
2023-01-30 21:59:35 +08:00
{
void *schema = NULL;
if (table_ops[table_type].new_schema != NULL) {
2023-02-03 17:28:14 +08:00
schema = table_ops[table_type].new_schema(json, tbl_mgr, table_name, logger);
2023-01-30 21:59:35 +08:00
}
return schema;
}
void maat_table_schema_free(void *schema, enum table_type table_type)
{
if (NULL == schema) {
return;
}
if (table_ops[table_type].free_schema != NULL) {
table_ops[table_type].free_schema(schema);
}
}
static void register_reserved_word(struct maat_kv_store *reserved_word_map)
{
maat_kv_register(reserved_word_map, "compile", TABLE_TYPE_COMPILE);
maat_kv_register(reserved_word_map, "group2compile", TABLE_TYPE_GROUP2COMPILE);
maat_kv_register(reserved_word_map, "group2group", TABLE_TYPE_GROUP2GROUP);
maat_kv_register(reserved_word_map, "expr", TABLE_TYPE_EXPR);
maat_kv_register(reserved_word_map, "expr_plus", TABLE_TYPE_EXPR_PLUS);
maat_kv_register(reserved_word_map, "ip_plus", TABLE_TYPE_IP_PLUS);
maat_kv_register(reserved_word_map, "plugin", TABLE_TYPE_PLUGIN);
maat_kv_register(reserved_word_map, "ip_plugin", TABLE_TYPE_IP_PLUGIN);
maat_kv_register(reserved_word_map, "virtual", TABLE_TYPE_VIRTUAL);
}
static void register_tablename2id(cJSON *json, struct maat_kv_store *tablename2id_map,
struct log_handle *logger)
{
cJSON *item = cJSON_GetObjectItem(json, "table_id");
if (NULL == item || item->type != cJSON_Number) {
return;
}
int table_id = item->valueint;
item = cJSON_GetObjectItem(json, "table_name");
if (NULL == item || item->type != cJSON_String) {
log_error(logger, MODULE_TABLE,
"table(table_id:%d) has no table name", table_id);
return;
}
if (strlen(item->valuestring) >= NAME_MAX) {
2023-01-31 20:39:53 +08:00
log_error(logger, MODULE_TABLE,
"table(table_id:%d) name %s length too long",
table_id, item->valuestring);
2023-01-30 21:59:35 +08:00
return;
}
maat_kv_register(tablename2id_map, item->valuestring, table_id);
}
struct maat_table *maat_table_new(cJSON *json, struct maat_kv_store *reserved_word_map,
struct log_handle *logger)
{
struct maat_table *ptable = ALLOC(struct maat_table, 1);
int ret = -1;
cJSON *item = cJSON_GetObjectItem(json, "table_id");
if (NULL == item || item->type != cJSON_Number) {
goto error;
}
if (item->valueint >= MAX_TABLE_NUM) {
log_error(logger, MODULE_TABLE,
"table(table_id:%d) exceed maxium %d", MAX_TABLE_NUM);
goto error;
}
ptable->table_id = item->valueint;
item = cJSON_GetObjectItem(json, "table_name");
if (NULL == item || item->type != cJSON_String) {
log_error(logger, MODULE_TABLE,
"table(table_id:%d) has no table name", ptable->table_id);
goto error;
}
if (strlen(item->valuestring) >= NAME_MAX) {
log_error(logger, MODULE_TABLE,
"table(table_id:%d) name %s length too long",
ptable->table_id, item->valuestring);
goto error;
}
memcpy(ptable->table_name, item->valuestring, strlen(item->valuestring));
item = cJSON_GetObjectItem(json, "table_type");
if (NULL == item || item->type != cJSON_String) {
goto error;
}
ret = maat_kv_read(reserved_word_map, item->valuestring, (int*)&(ptable->table_type));
if (ret < 0) {
log_error(logger, MODULE_TABLE, "table_type %s is illegal", item->valuestring);
goto error;
}
item = cJSON_GetObjectItem(json, "valid_column");
2023-01-31 20:39:53 +08:00
if (NULL == item || item->type != cJSON_Number) {
if (ptable->table_type != TABLE_TYPE_VIRTUAL) {
goto error;
}
} else {
ptable->valid_column = item->valueint;
2023-01-30 21:59:35 +08:00
}
return ptable;
error:
FREE(ptable);
return NULL;
}
2023-01-31 20:39:53 +08:00
void maat_table_runtime_free(void *runtime, enum table_type table_type)
{
if (NULL == runtime) {
return;
}
if (table_ops[table_type].free_runtime != NULL) {
table_ops[table_type].free_runtime(runtime);
}
}
2023-01-30 21:59:35 +08:00
void maat_table_free(struct maat_table *maat_tbl)
{
if (NULL == maat_tbl) {
return;
}
if (maat_tbl->schema != NULL) {
2023-01-31 20:39:53 +08:00
maat_table_schema_free(maat_tbl->schema, maat_tbl->table_type);
2023-01-30 21:59:35 +08:00
maat_tbl->schema = NULL;
}
if (maat_tbl->runtime != NULL) {
2023-01-31 20:39:53 +08:00
maat_table_runtime_free(maat_tbl->runtime, maat_tbl->table_type);
2023-01-30 21:59:35 +08:00
maat_tbl->runtime = NULL;
}
FREE(maat_tbl);
}
2023-02-03 17:28:14 +08:00
struct table_manager *
table_manager_create(const char *table_info_path, const char *accept_tags,
struct maat_garbage_bin *garbage_bin, struct log_handle *logger)
2023-01-30 21:59:35 +08:00
{
if (NULL == table_info_path) {
return NULL;
}
unsigned char *json_buff = NULL;
size_t json_buff_sz = 0;
int ret = load_file_to_memory(table_info_path, &json_buff, &json_buff_sz);
if (ret < 0) {
2023-02-03 17:28:14 +08:00
log_error(logger, MODULE_TABLE,
"Maat read table info %s error.", table_info_path);
2023-01-30 21:59:35 +08:00
return NULL;
}
cJSON *root = NULL;
cJSON *json = NULL;
root = cJSON_Parse((const char *)json_buff);
if (!root) {
2023-02-03 17:28:14 +08:00
log_error(logger, MODULE_TABLE,
"Error before: %-200.200s", cJSON_GetErrorPtr());
2023-01-30 21:59:35 +08:00
FREE(json_buff);
return NULL;
}
int json_array_size = cJSON_GetArraySize(root);
if (json_array_size <= 0) {
2023-02-03 17:28:14 +08:00
log_error(logger, MODULE_TABLE,
"invalid json content in %s", table_info_path);
2023-01-30 21:59:35 +08:00
free(json_buff);
return NULL;
}
struct maat_kv_store *reserved_word_map = maat_kv_store_new();
register_reserved_word(reserved_word_map);
struct table_manager *tbl_mgr = ALLOC(struct table_manager, 1);
tbl_mgr->n_accept_tag = parse_accept_tag(accept_tags, &tbl_mgr->accept_tags, logger);
tbl_mgr->logger = logger;
tbl_mgr->tablename2id_map = maat_kv_store_new();
2023-02-03 17:28:14 +08:00
tbl_mgr->district_map = maat_kv_store_new();
tbl_mgr->ref_garbage_bin = garbage_bin;
2023-01-30 21:59:35 +08:00
int default_compile_table_id = MAX_TABLE_NUM;
2023-02-03 17:28:14 +08:00
int g2g_table_id = MAX_TABLE_NUM;
2023-01-30 21:59:35 +08:00
for (int i = 0; i < json_array_size; i++) {
json = cJSON_GetArrayItem(root, i);
if (json != NULL && json->type == cJSON_Object) {
register_tablename2id(json, tbl_mgr->tablename2id_map, logger);
}
}
for (int i = 0; i < json_array_size; i++) {
json = cJSON_GetArrayItem(root, i);
if (json != NULL && json->type == cJSON_Object) {
struct maat_table *maat_tbl = maat_table_new(json, reserved_word_map, logger);
if (NULL == maat_tbl) {
log_error(logger, MODULE_TABLE, "Maat table new failed.");
continue;
}
2023-02-03 17:28:14 +08:00
maat_tbl->schema = maat_table_schema_new(json, maat_tbl->table_name,
maat_tbl->table_type, tbl_mgr, logger);
2023-01-30 21:59:35 +08:00
if (NULL == maat_tbl->schema) {
2023-02-03 17:28:14 +08:00
log_error(logger, MODULE_TABLE,
"Maat table schema new failed, table_name:%s", maat_tbl->table_name);
2023-01-30 21:59:35 +08:00
maat_table_free(maat_tbl);
continue;
}
if (maat_tbl->table_type == TABLE_TYPE_COMPILE) {
if (maat_tbl->table_id < default_compile_table_id) {
default_compile_table_id = maat_tbl->table_id;
}
}
2023-02-03 17:28:14 +08:00
if (maat_tbl->table_type == TABLE_TYPE_GROUP2GROUP) {
g2g_table_id = maat_tbl->table_id;
}
2023-01-30 21:59:35 +08:00
tbl_mgr->tbl[maat_tbl->table_id] = maat_tbl;
tbl_mgr->n_table++;
}
}
assert(default_compile_table_id != MAX_TABLE_NUM);
2023-02-03 17:28:14 +08:00
assert(g2g_table_id != MAX_TABLE_NUM);
2023-01-30 21:59:35 +08:00
tbl_mgr->default_compile_table_id = default_compile_table_id;
2023-02-03 17:28:14 +08:00
tbl_mgr->g2g_table_id = g2g_table_id;
2023-01-30 21:59:35 +08:00
log_info(logger, MODULE_TABLE, "default compile table id: %d", default_compile_table_id);
2023-02-03 17:28:14 +08:00
log_info(logger, MODULE_TABLE, "group2group table id: %d", g2g_table_id);
2023-01-30 21:59:35 +08:00
maat_kv_store_free(reserved_word_map);
cJSON_Delete(root);
FREE(json_buff);
return tbl_mgr;
}
void *maat_table_runtime_new(void *schema, enum table_type table_type,
2023-01-31 20:39:53 +08:00
int max_thread_num, struct maat_garbage_bin *garbage_bin,
2023-01-30 21:59:35 +08:00
struct log_handle *logger)
{
void *runtime = NULL;
if (table_ops[table_type].new_runtime != NULL) {
2023-01-31 20:39:53 +08:00
runtime = table_ops[table_type].new_runtime(schema, max_thread_num, garbage_bin, logger);
2023-01-30 21:59:35 +08:00
}
return runtime;
}
2023-01-31 20:39:53 +08:00
int table_manager_runtime_create(struct table_manager *tbl_mgr, int max_thread_num,
struct maat_garbage_bin *garbage_bin)
2023-01-30 21:59:35 +08:00
{
if (NULL == tbl_mgr) {
return -1;
}
assert(tbl_mgr->n_table != 0);
size_t i = 0;
enum table_type table_type = TABLE_TYPE_MAX;
for (i = 0; i < MAX_TABLE_NUM; i++) {
void *schema = table_manager_get_schema(tbl_mgr, i);
if (NULL == schema) {
continue;
}
table_type = table_manager_get_table_type(tbl_mgr, i);
2023-01-31 20:39:53 +08:00
assert(NULL == tbl_mgr->tbl[i]->runtime);
tbl_mgr->tbl[i]->runtime = maat_table_runtime_new(schema, table_type, max_thread_num,
garbage_bin, tbl_mgr->logger);
2023-01-30 21:59:35 +08:00
}
/* group2compile runtime depends on associated compile runtime,
must make sure associated compile runtime already exist */
for (i = 0; i < MAX_TABLE_NUM; i++) {
2023-01-31 20:39:53 +08:00
void *runtime = table_manager_get_runtime(tbl_mgr, i);
2023-01-30 21:59:35 +08:00
if (NULL == runtime) {
continue;
}
table_type = table_manager_get_table_type(tbl_mgr, i);
if (table_type != TABLE_TYPE_GROUP2COMPILE) {
continue;
}
void *schema = table_manager_get_schema(tbl_mgr, i);
2023-01-31 20:39:53 +08:00
int associated_compile_table_id = group2compile_associated_compile_table_id(schema);
2023-01-30 21:59:35 +08:00
void *compile_rt = table_manager_get_runtime(tbl_mgr, associated_compile_table_id);
2023-02-03 17:28:14 +08:00
int g2g_group_id = table_manager_get_group2group_table_id(tbl_mgr);
2023-01-30 21:59:35 +08:00
void *g2g_rt = table_manager_get_runtime(tbl_mgr, g2g_group_id);
2023-01-31 20:39:53 +08:00
group2compile_runtime_init(runtime, compile_rt, g2g_rt);
2023-01-30 21:59:35 +08:00
}
2023-02-03 17:28:14 +08:00
/* new district map */
tbl_mgr->district_map = maat_kv_store_new();
2023-01-30 21:59:35 +08:00
return 0;
}
2023-01-31 20:39:53 +08:00
void table_manager_runtime_destroy(struct table_manager *tbl_mgr)
2023-01-30 21:59:35 +08:00
{
if (NULL == tbl_mgr) {
return;
}
for(size_t i = 0; i < MAX_TABLE_NUM; i++) {
2023-01-31 20:39:53 +08:00
void *runtime = table_manager_get_runtime(tbl_mgr, i);
if (NULL == runtime) {
continue;
}
enum table_type table_type = table_manager_get_table_type(tbl_mgr, i);
maat_table_runtime_free(runtime, table_type);
tbl_mgr->tbl[i]->runtime = NULL;
2023-01-30 21:59:35 +08:00
}
2023-02-03 17:28:14 +08:00
/* free district map */
maat_kv_store_free(tbl_mgr->district_map);
2023-01-30 21:59:35 +08:00
}
void table_manager_destroy(struct table_manager *tbl_mgr)
{
if (NULL == tbl_mgr) {
return;
}
for (size_t i = 0; i < MAX_TABLE_NUM; i++) {
2023-01-31 20:39:53 +08:00
void *runtime = table_manager_get_runtime(tbl_mgr, i);
assert(NULL == runtime);
2023-01-30 21:59:35 +08:00
2023-01-31 20:39:53 +08:00
void *schema = table_manager_get_schema(tbl_mgr, i);
if (NULL == schema) {
2023-01-30 21:59:35 +08:00
continue;
}
2023-01-31 20:39:53 +08:00
enum table_type table_type = table_manager_get_table_type(tbl_mgr, i);
maat_table_schema_free(schema, table_type);
tbl_mgr->tbl[i]->schema = NULL;
}
for (size_t i = 0; i < tbl_mgr->n_accept_tag; i++) {
FREE(tbl_mgr->accept_tags[i].tag_name);
FREE(tbl_mgr->accept_tags[i].tag_val);
2023-01-30 21:59:35 +08:00
}
2023-01-31 20:39:53 +08:00
FREE(tbl_mgr->accept_tags);
2023-01-30 21:59:35 +08:00
maat_kv_store_free(tbl_mgr->tablename2id_map);
2023-02-03 17:28:14 +08:00
2023-01-30 21:59:35 +08:00
FREE(tbl_mgr);
}
size_t table_manager_table_count(struct table_manager *tbl_mgr)
{
return MAX_TABLE_NUM;
}
int table_manager_get_table_id(struct table_manager *tbl_mgr, const char *name)
{
2023-01-31 20:39:53 +08:00
if (NULL == tbl_mgr || NULL == name) {
return -1;
}
int table_id = -1;
int ret = maat_kv_read(tbl_mgr->tablename2id_map, name, &table_id);
if (ret < 0) {
log_error(tbl_mgr->logger, MODULE_TABLE, "table:%s is not registered", name);
return -1;
}
2023-01-30 21:59:35 +08:00
2023-01-31 20:39:53 +08:00
return table_id;
2023-01-30 21:59:35 +08:00
}
enum table_type table_manager_get_table_type(struct table_manager *tbl_mgr, int table_id)
{
2023-01-31 20:39:53 +08:00
if (NULL == tbl_mgr || table_id < 0 || table_id >= MAX_TABLE_NUM) {
return TABLE_TYPE_MAX;
}
if (NULL == tbl_mgr->tbl[table_id]) {
return TABLE_TYPE_MAX;
}
2023-01-30 21:59:35 +08:00
2023-01-31 20:39:53 +08:00
return tbl_mgr->tbl[table_id]->table_type;
2023-01-30 21:59:35 +08:00
}
2023-01-31 20:39:53 +08:00
int table_manager_get_defaut_compile_table_id(struct table_manager *tbl_mgr)
2023-01-30 21:59:35 +08:00
{
2023-01-31 20:39:53 +08:00
return tbl_mgr->default_compile_table_id;
2023-01-30 21:59:35 +08:00
}
2023-02-03 17:28:14 +08:00
int table_manager_get_group2group_table_id(struct table_manager *tbl_mgr)
{
return tbl_mgr->g2g_table_id;
}
2023-01-30 21:59:35 +08:00
void *table_manager_get_schema(struct table_manager *tbl_mgr, int table_id)
{
if (NULL == tbl_mgr || table_id < 0 || table_id >= MAX_TABLE_NUM) {
return NULL;
}
if (NULL == tbl_mgr->tbl[table_id]) {
return NULL;
}
return tbl_mgr->tbl[table_id]->schema;
}
2023-02-03 17:28:14 +08:00
struct ex_data_schema *
table_manager_get_table_ex_data_schema(struct table_manager *tbl_mgr, int table_id)
2023-01-30 21:59:35 +08:00
{
2023-01-31 20:39:53 +08:00
return NULL;
2023-01-30 21:59:35 +08:00
}
int table_manager_get_valid_column(struct table_manager *tbl_mgr, int table_id)
{
if (NULL == tbl_mgr || table_id < 0 || table_id >= MAX_TABLE_NUM) {
return -1;
}
if (NULL == tbl_mgr->tbl[table_id]) {
return -1;
}
return tbl_mgr->tbl[table_id]->valid_column;
}
2023-02-03 17:28:14 +08:00
size_t table_manager_accept_tags_count(struct table_manager *tbl_mgr)
{
return tbl_mgr->n_accept_tag;
}
2023-01-30 21:59:35 +08:00
int table_manager_accept_tags_match(struct table_manager *tbl_mgr, const char *tags)
{
2023-02-03 17:28:14 +08:00
return compare_accept_tag(tags, tbl_mgr->accept_tags, tbl_mgr->n_accept_tag);
}
int table_manager_set_scan_district(struct table_manager *tbl_mgr, const char *district_str,
size_t district_str_len, int *district_id)
{
return maat_kv_read_unNull(tbl_mgr->district_map,
district_str, district_str_len, district_id);
2023-01-30 21:59:35 +08:00
}
void *table_manager_get_runtime(struct table_manager *tbl_mgr, int table_id)
{
if (NULL == tbl_mgr || (table_id < 0) || (table_id >= MAX_TABLE_NUM)) {
return NULL;
}
if (NULL == tbl_mgr->tbl[table_id]) {
return NULL;
}
return tbl_mgr->tbl[table_id]->runtime;
}
2023-02-03 17:28:14 +08:00
int table_manager_update_runtime(struct table_manager *tbl_mgr, int table_id,
const char *line)
2023-01-30 21:59:35 +08:00
{
void *schema = table_manager_get_schema(tbl_mgr, table_id);
if (NULL == schema) {
return -1;
}
void *runtime = table_manager_get_runtime(tbl_mgr, table_id);
if (NULL == runtime) {
return -1;
}
int valid_column = table_manager_get_valid_column(tbl_mgr, table_id);
if (valid_column < 0) {
return -1;
}
enum table_type table_type = table_manager_get_table_type(tbl_mgr, table_id);
if (table_type == TABLE_TYPE_MAX) {
return -1;
}
if (NULL == table_ops[table_type].update_runtime) {
return -1;
}
2023-02-03 17:28:14 +08:00
int ret = table_ops[table_type].update_runtime(runtime, schema, line, valid_column);
if (tbl_mgr->tmp_district_map != NULL) {
struct maat_kv_store *tmp_map = tbl_mgr->district_map;
tbl_mgr->district_map = tbl_mgr->tmp_district_map;
tbl_mgr->tmp_district_map = NULL;
maat_garbage_bagging(tbl_mgr->ref_garbage_bin, tmp_map, (void (*)(void *))maat_kv_store_free);
}
return ret;
2023-01-30 21:59:35 +08:00
}
void table_manager_commit_runtime(struct table_manager *tbl_mgr, int table_id)
{
enum table_type table_type = table_manager_get_table_type(tbl_mgr, table_id);
if (table_type == TABLE_TYPE_MAX) {
return;
}
void *runtime = table_manager_get_runtime(tbl_mgr, table_id);
if (NULL == runtime) {
return;
}
2023-01-31 20:39:53 +08:00
if ( table_ops[table_type].commit_runtime != NULL) {
table_ops[table_type].commit_runtime(runtime);
}
2023-01-30 21:59:35 +08:00
}