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
stellar-stellar/src/session/session_table.cpp

245 lines
5.8 KiB
C++
Raw Normal View History

2023-12-11 16:35:26 +08:00
#include <assert.h>
#define HASH_INITIAL_NUM_BUCKETS 32768U // initial number of buckets
#define HASH_FUNCTION(keyptr, keylen, hashv) HASH_FUNCTION_OVERWRITE(keyptr, keylen, &hashv)
#define HASH_KEYCMP(a, b, len) HASH_KEYCMP_OVERWRITE(a, b, len)
#include "session_def.h"
2023-12-11 16:35:26 +08:00
#include "session_table.h"
struct session_table
{
struct session *root_tuple6;
struct session *root_tuple4;
struct session *root_sessid;
2023-12-11 16:35:26 +08:00
session_free_cb free_cb;
void *arg;
uint64_t count;
2024-03-29 17:45:41 +08:00
struct list_head lru_queue;
2023-12-11 16:35:26 +08:00
};
/******************************************************************************
* Private API
******************************************************************************/
static void HASH_FUNCTION_OVERWRITE(const void *keyptr, unsigned int keylen, uint32_t *hashv)
{
switch (keylen)
{
case sizeof(struct tuple6):
*hashv = tuple6_hash((const struct tuple6 *)keyptr);
break;
case sizeof(struct tuple4):
*hashv = tuple4_hash((const struct tuple4 *)keyptr);
break;
case sizeof(uint64_t):
HASH_JEN(keyptr, keylen, *hashv);
break;
default:
assert(0);
break;
}
}
2023-12-15 16:34:53 +08:00
static int HASH_KEYCMP_OVERWRITE(const void *key_a, const void *key_b, size_t len)
{
if (len == sizeof(struct tuple6))
{
if (tuple6_cmp((const struct tuple6 *)key_a, (const struct tuple6 *)key_b) == -1)
{
struct tuple6 rev;
tuple6_reverse((const struct tuple6 *)key_b, &rev);
return tuple6_cmp((const struct tuple6 *)key_a, &rev);
}
else
{
return 0;
}
}
else if (len == sizeof(struct tuple4))
{
if (tuple4_cmp((const struct tuple4 *)key_a, (const struct tuple4 *)key_b) == -1)
{
struct tuple4 rev;
tuple4_reverse((const struct tuple4 *)key_b, &rev);
return tuple4_cmp((const struct tuple4 *)key_a, &rev);
}
else
{
return 0;
}
}
else if (len == sizeof(uint64_t))
{
return memcmp(key_a, key_b, len);
}
else
{
assert(0);
return -1;
}
}
/******************************************************************************
* Public API
******************************************************************************/
struct session_table *session_table_new()
2023-12-11 16:35:26 +08:00
{
struct session_table *table = (struct session_table *)calloc(1, sizeof(struct session_table));
2024-03-29 17:45:41 +08:00
if (table == NULL)
{
return NULL;
}
2023-12-11 16:35:26 +08:00
table->count = 0;
2024-03-29 17:45:41 +08:00
INIT_LIST_HEAD(&table->lru_queue);
2023-12-11 16:35:26 +08:00
return table;
}
void session_table_free(struct session_table *table)
2023-12-11 16:35:26 +08:00
{
if (table)
{
struct session *node = NULL;
struct session *tmp = NULL;
HASH_ITER(hh1, table->root_tuple6, node, tmp)
2023-12-11 16:35:26 +08:00
{
2024-03-29 17:45:41 +08:00
list_del(&node->lru);
HASH_DELETE(hh1, table->root_tuple6, node);
HASH_DELETE(hh2, table->root_tuple4, node);
HASH_DELETE(hh3, table->root_sessid, node);
2023-12-11 16:35:26 +08:00
if (table->free_cb && node)
{
table->free_cb(node, table->arg);
}
}
table->count--;
free(table);
table = NULL;
}
}
uint64_t session_table_get_count(struct session_table *table)
{
if (table == NULL)
{
return 0;
}
return table->count;
}
void session_table_set_freecb(struct session_table *table, session_free_cb free_cb, void *arg)
{
if (table)
{
table->free_cb = free_cb;
table->arg = arg;
}
}
2024-04-30 15:29:31 +08:00
void session_table_add(struct session_table *table, struct session *sess)
2023-12-11 16:35:26 +08:00
{
if (table == NULL || sess == NULL)
{
2024-04-30 15:29:31 +08:00
return;
2023-12-11 16:35:26 +08:00
}
HASH_ADD(hh1, table->root_tuple6, tuple, sizeof(struct tuple6), sess);
HASH_ADD(hh2, table->root_tuple4, tuple, sizeof(struct tuple4), sess);
HASH_ADD(hh3, table->root_sessid, id, sizeof(uint64_t), sess);
2024-03-29 17:45:41 +08:00
list_add_tail(&sess->lru, &table->lru_queue);
2023-12-11 16:35:26 +08:00
table->count++;
}
2024-04-30 15:29:31 +08:00
void session_table_del(struct session_table *table, struct session *sess)
2023-12-11 16:35:26 +08:00
{
2024-04-30 15:29:31 +08:00
if (table == NULL || sess == NULL)
2023-12-11 16:35:26 +08:00
{
return;
}
2024-03-29 17:45:41 +08:00
list_del(&sess->lru);
HASH_DELETE(hh1, table->root_tuple6, sess);
HASH_DELETE(hh2, table->root_tuple4, sess);
HASH_DELETE(hh3, table->root_sessid, sess);
if (table->free_cb)
2023-12-11 16:35:26 +08:00
{
table->free_cb(sess, table->arg);
}
table->count--;
}
struct session *session_table_find_sessid(struct session_table *table, uint64_t id, uint8_t quiet)
2023-12-11 16:35:26 +08:00
{
if (table == NULL)
{
return NULL;
}
struct session *sess = NULL;
HASH_FIND(hh3, table->root_sessid, &id, sizeof(uint64_t), sess);
if (sess && !quiet)
{
list_del(&sess->lru);
list_add_tail(&sess->lru, &table->lru_queue);
}
2023-12-11 16:35:26 +08:00
return sess;
}
struct session *session_table_find_tuple6(struct session_table *table, const struct tuple6 *tuple, uint8_t quiet)
{
if (table == NULL)
{
return NULL;
}
struct session *sess = NULL;
HASH_FIND(hh1, table->root_tuple6, tuple, sizeof(struct tuple6), sess);
if (sess && !quiet)
{
list_del(&sess->lru);
list_add_tail(&sess->lru, &table->lru_queue);
}
return sess;
}
struct session *session_table_find_tuple4(struct session_table *table, const struct tuple4 *tuple, uint8_t quiet)
{
if (table == NULL)
{
return NULL;
}
struct session *sess = NULL;
HASH_FIND(hh2, table->root_tuple4, tuple, sizeof(struct tuple4), sess);
if (sess && !quiet)
2023-12-19 10:47:26 +08:00
{
2024-03-29 17:45:41 +08:00
list_del(&sess->lru);
list_add_tail(&sess->lru, &table->lru_queue);
2023-12-19 10:47:26 +08:00
}
2023-12-11 16:35:26 +08:00
return sess;
}
struct session *session_table_find_lru(struct session_table *table)
{
if (table == NULL)
{
return NULL;
}
2024-03-29 17:45:41 +08:00
if (list_empty(&table->lru_queue))
{
return NULL;
}
2024-03-29 17:45:41 +08:00
else
{
return list_first_entry(&table->lru_queue, struct session, lru);
}
}