added a newly data class that it's DataChain

This commit is contained in:
2024-03-24 02:40:08 +08:00
parent 182f307541
commit acd28db2b8
3 changed files with 321 additions and 5 deletions

93
inc/hgl/type/DataChain.h Normal file
View File

@@ -0,0 +1,93 @@
#pragma once
#include<hgl/type/DataStackPool.h>
#include<hgl/type/SortedSets.h>
namespace hgl
{
/**
* 数据链管理器(注:它只管理这个链,并不管理数据)<br>
* 它的思想是将空间分配成一个个固定长度的单位,然后通过链表来管理这些单位的使用情况。
* 当用户释放一个空间时,会自动合并相邻的空间节点。如果没有相邻的空间节点,会自动创建一个新的空间节点。
* 当用户申请一个新的空间时,会自动查找最适合的空间节点。
*/
class DataChain
{
SeriesInt series; ///<序号池
int max_count; ///<最大数量
public:
/**
* 用户数据节点信息
*/
struct UserNode
{
private:
int start; ///<起始数据块
int count; ///<占用数据块数量
friend class DataChain;
public:
const int GetStart()const{return start;}
const int GetCount()const{return count;}
const int GetEnd()const{return start+count;}
};//struct UserNode
protected:
DataStackPool<UserNode> ud_pool; ///<用户数据占用信息池
SortedSets<UserNode *> ud_set; ///<用户数据占用合集
#ifdef _DEBUG
public:
#else
protected:
#endif//
/**
* 数据块链表节点
*/
struct ChainNode
{
ChainNode *prev;
ChainNode *next;
int start; ///<起始数据块
int count; ///<数据块数量
public:
const int GetEnd()const{return start+count;}
};//struct ChainNode
DataStackPool<ChainNode> node_pool; ///<链表节点池
int free_count; ///<空闲数据块数量
ChainNode *start,*end;
public:
const int GetMaxCount ()const{return max_count;}
const int GetFreeCount ()const{return free_count;}
#ifdef _DEBUG
ChainNode *GetStartNode()const{return start;}
ChainNode *GetEndNode ()const{return end;}
#endif//
public:
DataChain(const int mc);
virtual ~DataChain()=default;
UserNode *Acquire(const int acquire_count); ///<请求一个数据区块
bool Release(UserNode *ud); ///<释放一个数据区块
};//class DataChain
}//namespace hgl