TDengine/source/dnode/vnode/impl/inc/vnodeMemAllocator.h

55 lines
1.8 KiB
C
Raw Normal View History

2021-09-27 02:49:36 +00:00
/*
* Copyright (c) 2019 TAOS Data, Inc. <jhtao@taosdata.com>
*
* This program is free software: you can use, redistribute, and/or modify
* it under the terms of the GNU Affero General Public License, version 3
* or later ("AGPL"), as published by the Free Software Foundation.
*
* This program is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef _TD_VNODE_MEM_ALLOCATOR_H_
#define _TD_VNODE_MEM_ALLOCATOR_H_
2021-11-01 11:49:44 +00:00
#include "vnodeInt.h"
2021-09-27 03:42:12 +00:00
2021-09-27 02:49:36 +00:00
#ifdef __cplusplus
extern "C" {
#endif
2021-10-09 08:38:56 +00:00
typedef struct SVnodeMemAllocator SVnodeMemAllocator;
SVnodeMemAllocator *VMACreate(size_t size /* base size */, size_t ssize /* step size */,
size_t threshold /* threshold size when full*/);
void VMADestroy(SVnodeMemAllocator *pvma);
void VMAReset(SVnodeMemAllocator *pvma);
void * VMAMalloc(SVnodeMemAllocator *pvma, size_t size);
void VMAFree(SVnodeMemAllocator *pvma, void *ptr);
bool VMAIsFull(SVnodeMemAllocator *pvma);
// ------------------ FOR TEST ONLY ------------------
2021-10-09 08:42:44 +00:00
typedef struct SVMANode {
2021-10-09 08:38:56 +00:00
struct SVMANode *prev;
size_t tsize;
size_t used;
char data[];
2021-10-09 08:42:44 +00:00
} SVMANode;
2021-10-09 08:38:56 +00:00
struct SVnodeMemAllocator {
bool full; // if allocator is full
size_t threshold; // threshold;
size_t ssize; // step size to allocate
SVMANode *inuse; // inuse node to allocate
SVMANode node; // basic node to use
};
2021-09-27 02:49:36 +00:00
#ifdef __cplusplus
}
#endif
#endif /*_TD_VNODE_MEM_ALLOCATOR_H_*/