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.
|
|
|
|
|
***********************************************************************************************
|
|
|
|
|
*/
|
|
|
|
|
|
2023-02-21 11:27:18 +08:00
|
|
|
#include <linux/limits.h>
|
2023-01-30 21:59:35 +08:00
|
|
|
#include <assert.h>
|
|
|
|
|
|
|
|
|
|
#include "log/log.h"
|
|
|
|
|
#include "maat_utils.h"
|
|
|
|
|
#include "maat_table.h"
|
|
|
|
|
#include "maat_rule.h"
|
|
|
|
|
#include "maat_kv.h"
|
|
|
|
|
#include "maat_expr.h"
|
|
|
|
|
#include "maat_ip.h"
|
|
|
|
|
#include "maat_compile.h"
|
|
|
|
|
#include "maat_group.h"
|
2023-02-07 11:25:31 +08:00
|
|
|
#include "maat_flag.h"
|
2023-01-30 21:59:35 +08:00
|
|
|
#include "maat_plugin.h"
|
|
|
|
|
#include "maat_ip_plugin.h"
|
2023-02-09 22:13:15 +08:00
|
|
|
#include "maat_bool_plugin.h"
|
|
|
|
|
#include "maat_fqdn_plugin.h"
|
|
|
|
|
#include "maat_interval.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;
|
2023-02-06 08:14:25 +08:00
|
|
|
uint32_t district_num;
|
2023-02-03 17:28:14 +08:00
|
|
|
|
|
|
|
|
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-03-29 22:25: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-03-29 22:25:14 +08:00
|
|
|
void *(*new_runtime)(void *schema, int max_thread_num,
|
|
|
|
|
struct maat_garbage_bin *garbage_bin,
|
2023-02-03 17:28:14 +08:00
|
|
|
struct log_handle *logger);
|
2023-01-30 21:59:35 +08:00
|
|
|
void (*free_runtime)(void *runtime);
|
|
|
|
|
|
2023-03-29 22:25:14 +08:00
|
|
|
int (*update_runtime)(void *runtime, void *schema, const char *table_name,
|
|
|
|
|
const char *line, int valid_column);
|
2023-02-09 22:13:15 +08:00
|
|
|
int (*commit_runtime)(void *runtime, const char *table_name);
|
2023-01-30 21:59:35 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
struct table_operations table_ops[TABLE_TYPE_MAX] = {
|
2023-02-06 08:14:25 +08:00
|
|
|
{
|
2023-02-09 22:13:15 +08:00
|
|
|
.type = TABLE_TYPE_FLAG,
|
|
|
|
|
.new_schema = flag_schema_new,
|
|
|
|
|
.free_schema = flag_schema_free,
|
|
|
|
|
.new_runtime = flag_runtime_new,
|
|
|
|
|
.free_runtime = flag_runtime_free,
|
|
|
|
|
.update_runtime = flag_runtime_update,
|
|
|
|
|
.commit_runtime = flag_runtime_commit
|
2023-02-06 08:14:25 +08:00
|
|
|
},
|
2023-03-01 17:44:07 +08:00
|
|
|
{
|
|
|
|
|
.type = TABLE_TYPE_FLAG_PLUS,
|
|
|
|
|
.new_schema = flag_schema_new,
|
|
|
|
|
.free_schema = flag_schema_free,
|
|
|
|
|
.new_runtime = flag_runtime_new,
|
|
|
|
|
.free_runtime = flag_runtime_free,
|
|
|
|
|
.update_runtime = flag_runtime_update,
|
|
|
|
|
.commit_runtime = flag_runtime_commit
|
|
|
|
|
},
|
2023-01-30 21:59:35 +08:00
|
|
|
{
|
|
|
|
|
.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,
|
2023-02-09 22:13:15 +08:00
|
|
|
.new_schema = interval_schema_new,
|
|
|
|
|
.free_schema = interval_schema_free,
|
|
|
|
|
.new_runtime = interval_runtime_new,
|
|
|
|
|
.free_runtime = interval_runtime_free,
|
|
|
|
|
.update_runtime = interval_runtime_update,
|
|
|
|
|
.commit_runtime = interval_runtime_commit
|
2023-01-30 21:59:35 +08:00
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
.type = TABLE_TYPE_INTERVAL_PLUS,
|
2023-02-09 22:13:15 +08:00
|
|
|
.new_schema = interval_schema_new,
|
|
|
|
|
.free_schema = interval_schema_free,
|
|
|
|
|
.new_runtime = interval_runtime_new,
|
|
|
|
|
.free_runtime = interval_runtime_free,
|
|
|
|
|
.update_runtime = interval_runtime_update,
|
|
|
|
|
.commit_runtime = interval_runtime_commit
|
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,
|
2023-02-09 22:13:15 +08:00
|
|
|
.new_schema = fqdn_plugin_schema_new,
|
|
|
|
|
.free_schema = fqdn_plugin_schema_free,
|
|
|
|
|
.new_runtime = fqdn_plugin_runtime_new,
|
|
|
|
|
.free_runtime = fqdn_plugin_runtime_free,
|
|
|
|
|
.update_runtime = fqdn_plugin_runtime_update,
|
|
|
|
|
.commit_runtime = fqdn_plugin_runtime_commit
|
2023-01-30 21:59:35 +08:00
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
.type = TABLE_TYPE_BOOL_PLUGIN,
|
2023-02-09 22:13:15 +08:00
|
|
|
.new_schema = bool_plugin_schema_new,
|
|
|
|
|
.free_schema = bool_plugin_schema_free,
|
|
|
|
|
.new_runtime = bool_plugin_runtime_new,
|
|
|
|
|
.free_runtime = bool_plugin_runtime_free,
|
|
|
|
|
.update_runtime = bool_plugin_runtime_update,
|
|
|
|
|
.commit_runtime = bool_plugin_runtime_commit
|
2023-01-30 21:59:35 +08:00
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
.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
|
|
|
|
|
},
|
2023-03-01 17:44:07 +08:00
|
|
|
{
|
|
|
|
|
.type = TABLE_TYPE_COMPOSITION,
|
|
|
|
|
.new_schema = NULL,
|
|
|
|
|
.free_schema = NULL,
|
|
|
|
|
.new_runtime = NULL,
|
|
|
|
|
.free_runtime = NULL,
|
|
|
|
|
.update_runtime = NULL,
|
|
|
|
|
.commit_runtime = NULL
|
|
|
|
|
},
|
2023-01-30 21:59:35 +08:00
|
|
|
{
|
|
|
|
|
.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);
|
2023-02-09 22:13:15 +08:00
|
|
|
maat_kv_register(reserved_word_map, "flag", TABLE_TYPE_FLAG);
|
2023-03-01 17:44:07 +08:00
|
|
|
maat_kv_register(reserved_word_map, "flag_plus", TABLE_TYPE_FLAG_PLUS);
|
2023-01-30 21:59:35 +08:00
|
|
|
maat_kv_register(reserved_word_map, "expr", TABLE_TYPE_EXPR);
|
|
|
|
|
maat_kv_register(reserved_word_map, "expr_plus", TABLE_TYPE_EXPR_PLUS);
|
2023-02-07 11:25:31 +08:00
|
|
|
maat_kv_register(reserved_word_map, "intval", TABLE_TYPE_INTERVAL);
|
|
|
|
|
maat_kv_register(reserved_word_map, "intval_plus", TABLE_TYPE_INTERVAL_PLUS);
|
2023-01-30 21:59:35 +08:00
|
|
|
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);
|
2023-02-07 11:25:31 +08:00
|
|
|
maat_kv_register(reserved_word_map, "bool_plugin", TABLE_TYPE_BOOL_PLUGIN);
|
|
|
|
|
maat_kv_register(reserved_word_map, "fqdn_plugin", TABLE_TYPE_FQDN_PLUGIN);
|
2023-01-30 21:59:35 +08:00
|
|
|
maat_kv_register(reserved_word_map, "virtual", TABLE_TYPE_VIRTUAL);
|
2023-03-01 17:44:07 +08:00
|
|
|
maat_kv_register(reserved_word_map, "composition", TABLE_TYPE_COMPOSITION);
|
2023-01-30 21:59:35 +08:00
|
|
|
}
|
|
|
|
|
|
2023-03-02 14:52:31 +08:00
|
|
|
static int register_tablename2id(cJSON *json, struct maat_kv_store *tablename2id_map,
|
2023-01-30 21:59:35 +08:00
|
|
|
struct log_handle *logger)
|
|
|
|
|
{
|
|
|
|
|
cJSON *item = cJSON_GetObjectItem(json, "table_id");
|
|
|
|
|
if (NULL == item || item->type != cJSON_Number) {
|
2023-03-02 14:52:31 +08:00
|
|
|
return -1;
|
2023-01-30 21:59:35 +08:00
|
|
|
}
|
|
|
|
|
int table_id = item->valueint;
|
|
|
|
|
|
2023-03-22 20:40:36 +08:00
|
|
|
item = cJSON_GetObjectItem(json, "db_tables");
|
|
|
|
|
if (item != NULL && item->type != cJSON_Array) {
|
2023-01-30 21:59:35 +08:00
|
|
|
log_error(logger, MODULE_TABLE,
|
2023-03-22 20:40:36 +08:00
|
|
|
"[%s:%d] table(table_id:%d) has db_tables, but format is invalid, should be array",
|
2023-03-02 14:52:31 +08:00
|
|
|
__FUNCTION__, __LINE__, table_id);
|
|
|
|
|
return -1;
|
|
|
|
|
}
|
2023-03-22 20:40:36 +08:00
|
|
|
|
|
|
|
|
if (item != NULL) {
|
2023-03-02 14:52:31 +08:00
|
|
|
int n_table_name = cJSON_GetArraySize(item);
|
2023-03-22 20:40:36 +08:00
|
|
|
|
2023-03-02 14:52:31 +08:00
|
|
|
for (int i = 0; i < n_table_name; i++) {
|
2023-03-22 20:40:36 +08:00
|
|
|
cJSON *tmp_item = cJSON_GetArrayItem(item, i);
|
2023-03-02 14:52:31 +08:00
|
|
|
if (NULL == tmp_item || tmp_item->type != cJSON_String) {
|
|
|
|
|
log_error(logger, MODULE_TABLE,
|
2023-03-22 20:40:36 +08:00
|
|
|
"[%s:%d] table(table_id:%d) db_tables element format invalid, should be string",
|
2023-03-02 14:52:31 +08:00
|
|
|
__FUNCTION__, __LINE__, table_id);
|
|
|
|
|
return -1;
|
|
|
|
|
}
|
2023-03-06 10:45:36 +08:00
|
|
|
|
|
|
|
|
if (strlen(tmp_item->valuestring) >= NAME_MAX) {
|
|
|
|
|
log_error(logger, MODULE_TABLE,
|
2023-03-22 20:40:36 +08:00
|
|
|
"[%s:%d] table(table_id:%d) db_tables element string %s length too long",
|
2023-03-06 10:45:36 +08:00
|
|
|
__FUNCTION__, __LINE__, table_id, tmp_item->valuestring);
|
|
|
|
|
return -1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
maat_kv_register(tablename2id_map, tmp_item->valuestring, table_id);
|
|
|
|
|
log_info(logger, MODULE_TABLE, "tablename[%s] -> table_id:[%d]",
|
|
|
|
|
tmp_item->valuestring, table_id);
|
|
|
|
|
}
|
2023-03-22 20:40:36 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
item = cJSON_GetObjectItem(json, "table_name");
|
|
|
|
|
if (NULL == item || item->type != cJSON_String) {
|
|
|
|
|
log_error(logger, MODULE_TABLE,
|
|
|
|
|
"[%s:%d] table(table_id:%d) has no table_name",
|
|
|
|
|
__FUNCTION__, __LINE__, table_id);
|
|
|
|
|
return -1;
|
|
|
|
|
}
|
2023-01-30 21:59:35 +08:00
|
|
|
|
2023-03-22 20:40:36 +08:00
|
|
|
if (strlen(item->valuestring) >= NAME_MAX) {
|
|
|
|
|
log_error(logger, MODULE_TABLE,
|
|
|
|
|
"[%s:%d] table(table_id:%d) table_name %s length too long",
|
|
|
|
|
__FUNCTION__, __LINE__, table_id, item->valuestring);
|
|
|
|
|
return -1;
|
2023-01-30 21:59:35 +08:00
|
|
|
}
|
2023-03-02 14:52:31 +08:00
|
|
|
|
2023-03-22 20:40:36 +08:00
|
|
|
maat_kv_register(tablename2id_map, item->valuestring, table_id);
|
|
|
|
|
log_info(logger, MODULE_TABLE, "table_name[%s] -> table_id:[%d]",
|
|
|
|
|
item->valuestring, table_id);
|
|
|
|
|
|
2023-03-02 14:52:31 +08:00
|
|
|
return 0;
|
2023-01-30 21:59:35 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
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,
|
2023-03-02 14:52:31 +08:00
|
|
|
"[%s:%d] table(table_id:%d) exceed maxium %d",
|
|
|
|
|
__FUNCTION__, __LINE__, MAX_TABLE_NUM);
|
2023-01-30 21:59:35 +08:00
|
|
|
goto error;
|
|
|
|
|
}
|
|
|
|
|
ptable->table_id = item->valueint;
|
|
|
|
|
|
|
|
|
|
item = cJSON_GetObjectItem(json, "table_name");
|
2023-03-06 10:45:36 +08:00
|
|
|
// already validate in register_tablename2id
|
|
|
|
|
if (item->type == cJSON_Array) {
|
|
|
|
|
cJSON *tmp_item = cJSON_GetArrayItem(item, 0);
|
|
|
|
|
memcpy(ptable->table_name, tmp_item->valuestring, strlen(tmp_item->valuestring));
|
|
|
|
|
} else {
|
|
|
|
|
//cJSON_String
|
|
|
|
|
memcpy(ptable->table_name, item->valuestring, strlen(item->valuestring));
|
2023-01-30 21:59:35 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
item = cJSON_GetObjectItem(json, "table_type");
|
|
|
|
|
if (NULL == item || item->type != cJSON_String) {
|
2023-03-02 14:52:31 +08:00
|
|
|
log_error(logger, MODULE_TABLE,
|
|
|
|
|
"[%s:%d] table:%s has no table_type column",
|
|
|
|
|
__FUNCTION__, __LINE__, ptable->table_name);
|
2023-01-30 21:59:35 +08:00
|
|
|
goto error;
|
|
|
|
|
}
|
|
|
|
|
|
2023-03-15 11:36:54 +08:00
|
|
|
ret = maat_kv_read(reserved_word_map, item->valuestring, (long long *)&(ptable->table_type));
|
2023-01-30 21:59:35 +08:00
|
|
|
if (ret < 0) {
|
2023-03-02 14:52:31 +08:00
|
|
|
log_error(logger, MODULE_TABLE,
|
|
|
|
|
"[%s:%d] table:%s table_type %s is illegal",
|
|
|
|
|
__FUNCTION__, __LINE__, ptable->table_name, item->valuestring);
|
2023-01-30 21:59:35 +08:00
|
|
|
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) {
|
2023-03-02 14:52:31 +08:00
|
|
|
log_error(logger, MODULE_TABLE,
|
|
|
|
|
"[%s:%d] table:%s has no valid column",
|
|
|
|
|
__FUNCTION__, __LINE__, ptable->table_name);
|
2023-01-31 20:39:53 +08:00
|
|
|
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,
|
2023-03-02 14:52:31 +08:00
|
|
|
"[%s:%d] Maat read table info %s error.",
|
|
|
|
|
__FUNCTION__, __LINE__, 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,
|
2023-03-02 14:52:31 +08:00
|
|
|
"[%s:%d] error message: %-200.200s",
|
|
|
|
|
__FUNCTION__, __LINE__, 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,
|
2023-03-02 14:52:31 +08:00
|
|
|
"[%s:%d] invalid json content in %s",
|
|
|
|
|
__FUNCTION__, __LINE__, table_info_path);
|
2023-03-15 11:36:54 +08:00
|
|
|
FREE(json_buff);
|
|
|
|
|
cJSON_Delete(root);
|
2023-01-30 21:59:35 +08:00
|
|
|
return NULL;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
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->ref_garbage_bin = garbage_bin;
|
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) {
|
2023-03-02 14:52:31 +08:00
|
|
|
ret = register_tablename2id(json, tbl_mgr->tablename2id_map, logger);
|
|
|
|
|
if (ret < 0) {
|
|
|
|
|
log_error(logger, MODULE_TABLE,
|
2023-03-15 11:36:54 +08:00
|
|
|
"[%s:%d] register_tablename2id failed", __FUNCTION__, __LINE__);
|
|
|
|
|
FREE(json_buff);
|
|
|
|
|
cJSON_Delete(root);
|
2023-03-23 19:16:23 +08:00
|
|
|
table_manager_destroy(tbl_mgr);
|
2023-03-02 14:52:31 +08:00
|
|
|
return NULL;
|
|
|
|
|
}
|
2023-01-30 21:59:35 +08:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2023-03-30 20:49:59 +08:00
|
|
|
int default_compile_table_id = -1;
|
|
|
|
|
int g2g_table_id = -1;
|
2023-03-15 11:36:54 +08:00
|
|
|
struct maat_kv_store *reserved_word_map = maat_kv_store_new();
|
|
|
|
|
register_reserved_word(reserved_word_map);
|
|
|
|
|
|
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) {
|
|
|
|
|
struct maat_table *maat_tbl = maat_table_new(json, reserved_word_map, logger);
|
|
|
|
|
if (NULL == maat_tbl) {
|
2023-03-23 19:16:23 +08:00
|
|
|
ret = -1;
|
|
|
|
|
goto next;
|
2023-01-30 21:59:35 +08:00
|
|
|
}
|
|
|
|
|
|
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,
|
2023-03-02 14:52:31 +08:00
|
|
|
"[%s:%d] Maat table schema new failed, table_name:%s",
|
|
|
|
|
__FUNCTION__, __LINE__, maat_tbl->table_name);
|
2023-03-23 19:16:23 +08:00
|
|
|
ret = -1;
|
|
|
|
|
goto next;
|
2023-01-30 21:59:35 +08:00
|
|
|
}
|
2023-03-02 14:52:31 +08:00
|
|
|
log_info(logger, MODULE_TABLE, "successfully register table[%s]->table_id:%d",
|
2023-02-09 22:13:15 +08:00
|
|
|
maat_tbl->table_name, maat_tbl->table_id);
|
|
|
|
|
|
2023-01-30 21:59:35 +08:00
|
|
|
if (maat_tbl->table_type == TABLE_TYPE_COMPILE) {
|
2023-03-30 20:49:59 +08:00
|
|
|
if (default_compile_table_id < 0) {
|
|
|
|
|
default_compile_table_id = maat_tbl->table_id;
|
|
|
|
|
} else if (maat_tbl->table_id < default_compile_table_id) {
|
2023-01-30 21:59:35 +08:00
|
|
|
default_compile_table_id = maat_tbl->table_id;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2023-03-30 20:49:59 +08:00
|
|
|
if (maat_tbl->table_type == TABLE_TYPE_GROUP2GROUP) {
|
2023-02-03 17:28:14 +08:00
|
|
|
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++;
|
|
|
|
|
}
|
|
|
|
|
}
|
2023-02-03 17:28:14 +08:00
|
|
|
|
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-03-23 19:16:23 +08:00
|
|
|
next:
|
2023-03-15 11:36:54 +08:00
|
|
|
FREE(json_buff);
|
2023-01-30 21:59:35 +08:00
|
|
|
maat_kv_store_free(reserved_word_map);
|
|
|
|
|
cJSON_Delete(root);
|
|
|
|
|
|
2023-03-23 19:16:23 +08:00
|
|
|
if (ret < 0) {
|
|
|
|
|
table_manager_destroy(tbl_mgr);
|
|
|
|
|
return NULL;
|
|
|
|
|
}
|
|
|
|
|
|
2023-01-30 21:59:35 +08:00
|
|
|
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-03-29 22:25:14 +08:00
|
|
|
void garbage_maat_table_runtime_free(void *runtime, void *arg)
|
|
|
|
|
{
|
|
|
|
|
enum table_type type = *(enum table_type *)arg;
|
|
|
|
|
maat_table_runtime_free(runtime, type);
|
|
|
|
|
}
|
|
|
|
|
|
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;
|
2023-02-07 11:25:31 +08:00
|
|
|
enum table_type table_type = TABLE_TYPE_INVALID;
|
2023-01-30 21:59:35 +08:00
|
|
|
|
|
|
|
|
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-03-29 22:25:14 +08:00
|
|
|
void *runtime = table_manager_get_runtime(tbl_mgr, i);
|
2023-03-30 16:50:05 +08:00
|
|
|
tbl_mgr->tbl[i]->runtime = maat_table_runtime_new(schema, table_type, max_thread_num,
|
|
|
|
|
garbage_bin, tbl_mgr->logger);
|
2023-03-29 22:25:14 +08:00
|
|
|
if (runtime != NULL) {
|
|
|
|
|
enum table_type *arg = ALLOC(enum table_type, 1);
|
|
|
|
|
*arg = table_type;
|
|
|
|
|
maat_garbage_bagging(garbage_bin, runtime, arg, garbage_maat_table_runtime_free);
|
|
|
|
|
}
|
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);
|
2023-03-23 19:16:23 +08:00
|
|
|
if (runtime != NULL) {
|
|
|
|
|
enum table_type table_type = table_manager_get_table_type(tbl_mgr, i);
|
|
|
|
|
assert(table_type != TABLE_TYPE_INVALID);
|
|
|
|
|
maat_table_runtime_free(runtime, table_type);
|
|
|
|
|
tbl_mgr->tbl[i]->runtime = NULL;
|
2023-01-31 20:39:53 +08:00
|
|
|
}
|
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;
|
|
|
|
|
}
|
|
|
|
|
|
2023-03-23 19:16:23 +08:00
|
|
|
size_t i = 0;
|
2023-03-15 11:36:54 +08:00
|
|
|
|
2023-03-23 19:16:23 +08:00
|
|
|
for (i = 0; i < MAX_TABLE_NUM; i++) {
|
2023-03-15 11:36:54 +08:00
|
|
|
maat_table_free(tbl_mgr->tbl[i]);
|
|
|
|
|
tbl_mgr->tbl[i] = NULL;
|
2023-01-31 20:39:53 +08:00
|
|
|
}
|
|
|
|
|
|
2023-03-23 19:16:23 +08:00
|
|
|
if (tbl_mgr->accept_tags != NULL) {
|
|
|
|
|
for (i = 0; i < tbl_mgr->n_accept_tag; i++) {
|
|
|
|
|
if (tbl_mgr->accept_tags[i].tag_name != NULL) {
|
|
|
|
|
FREE(tbl_mgr->accept_tags[i].tag_name);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (tbl_mgr->accept_tags[i].tag_val != NULL) {
|
|
|
|
|
FREE(tbl_mgr->accept_tags[i].tag_val);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
FREE(tbl_mgr->accept_tags);
|
|
|
|
|
}
|
2023-01-30 21:59:35 +08:00
|
|
|
|
2023-03-23 19:16:23 +08:00
|
|
|
maat_kv_store_free(tbl_mgr->tablename2id_map);
|
|
|
|
|
tbl_mgr->tablename2id_map = NULL;
|
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;
|
|
|
|
|
}
|
|
|
|
|
|
2023-03-15 11:36:54 +08:00
|
|
|
long long table_id = -1;
|
2023-01-31 20:39:53 +08:00
|
|
|
int ret = maat_kv_read(tbl_mgr->tablename2id_map, name, &table_id);
|
|
|
|
|
if (ret < 0) {
|
2023-03-02 14:52:31 +08:00
|
|
|
log_error(tbl_mgr->logger, MODULE_TABLE,
|
|
|
|
|
"[%s:%d] table:%s is not registered",
|
|
|
|
|
__FUNCTION__, __LINE__, name);
|
2023-01-31 20:39:53 +08:00
|
|
|
return -1;
|
|
|
|
|
}
|
2023-01-30 21:59:35 +08:00
|
|
|
|
2023-03-15 11:36:54 +08:00
|
|
|
return (int)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) {
|
2023-02-07 11:25:31 +08:00
|
|
|
return TABLE_TYPE_INVALID;
|
2023-01-31 20:39:53 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (NULL == tbl_mgr->tbl[table_id]) {
|
2023-02-07 11:25:31 +08:00
|
|
|
return TABLE_TYPE_INVALID;
|
2023-01-31 20:39:53 +08:00
|
|
|
}
|
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);
|
|
|
|
|
}
|
|
|
|
|
|
2023-02-06 08:14:25 +08:00
|
|
|
int table_manager_set_scan_district(struct table_manager *tbl_mgr, const char *district,
|
2023-03-15 11:36:54 +08:00
|
|
|
size_t district_len, long long *district_id)
|
2023-02-06 08:14:25 +08:00
|
|
|
{
|
|
|
|
|
return maat_kv_read_unNull(tbl_mgr->district_map, district, district_len, district_id);
|
|
|
|
|
}
|
|
|
|
|
|
2023-03-15 11:36:54 +08:00
|
|
|
long long table_manager_get_district_id(struct table_manager *tbl_mgr, const char *district)
|
2023-02-03 17:28:14 +08:00
|
|
|
{
|
2023-03-15 11:36:54 +08:00
|
|
|
long long district_id = DISTRICT_ANY;
|
2023-02-06 08:14:25 +08:00
|
|
|
|
|
|
|
|
int map_ret = maat_kv_read(tbl_mgr->district_map, district, &district_id);
|
|
|
|
|
if (map_ret < 0) {
|
|
|
|
|
if (NULL == tbl_mgr->tmp_district_map) {
|
|
|
|
|
tbl_mgr->tmp_district_map = maat_kv_store_duplicate(tbl_mgr->district_map);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
map_ret = maat_kv_read(tbl_mgr->tmp_district_map, district, &district_id);
|
|
|
|
|
if (map_ret < 0) {
|
|
|
|
|
district_id = tbl_mgr->district_num;
|
|
|
|
|
maat_kv_register(tbl_mgr->tmp_district_map, district, district_id);
|
|
|
|
|
tbl_mgr->district_num++;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return 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-03-29 22:25:14 +08:00
|
|
|
void garbage_maat_kv_store_free(void *maat_kv_store, void *arg)
|
|
|
|
|
{
|
|
|
|
|
struct maat_kv_store *kv_store = (struct maat_kv_store *)maat_kv_store;
|
|
|
|
|
maat_kv_store_free(kv_store);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
int table_manager_update_runtime(struct table_manager *tbl_mgr, const char *table_name,
|
|
|
|
|
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);
|
2023-02-07 11:25:31 +08:00
|
|
|
if (table_type == TABLE_TYPE_INVALID) {
|
2023-01-30 21:59:35 +08:00
|
|
|
return -1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (NULL == table_ops[table_type].update_runtime) {
|
|
|
|
|
return -1;
|
|
|
|
|
}
|
2023-02-07 11:25:31 +08:00
|
|
|
|
2023-03-29 22:25:14 +08:00
|
|
|
int ret = table_ops[table_type].update_runtime(runtime, schema, table_name,
|
|
|
|
|
line, valid_column);
|
2023-02-03 17:28:14 +08:00
|
|
|
|
|
|
|
|
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;
|
2023-03-29 22:25:14 +08:00
|
|
|
maat_garbage_bagging(tbl_mgr->ref_garbage_bin, tmp_map, NULL, garbage_maat_kv_store_free);
|
2023-02-03 17:28:14 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
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);
|
2023-02-07 11:25:31 +08:00
|
|
|
if (table_type == TABLE_TYPE_INVALID) {
|
2023-01-30 21:59:35 +08:00
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void *runtime = table_manager_get_runtime(tbl_mgr, table_id);
|
|
|
|
|
if (NULL == runtime) {
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
2023-02-09 22:13:15 +08:00
|
|
|
struct maat_table *ptable = tbl_mgr->tbl[table_id];
|
2023-01-31 20:39:53 +08:00
|
|
|
if ( table_ops[table_type].commit_runtime != NULL) {
|
2023-02-09 22:13:15 +08:00
|
|
|
table_ops[table_type].commit_runtime(runtime, ptable->table_name);;
|
2023-01-31 20:39:53 +08:00
|
|
|
}
|
2023-01-30 21:59:35 +08:00
|
|
|
}
|