You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
AQuery/server/gc.h

72 lines
1.5 KiB

#ifndef __AQ_USE_THREADEDGC__
#include <atomic>
class GC {
private:;
2 years ago
size_t max_slots,
interval, forced_clean,
forceclean_timer = 0;
2 years ago
uint64_t max_size;
bool running, alive;
// ptr, dealloc, ref, sz
2 years ago
uint32_t threshould;
void *q, *q_back;
void* handle;
std::atomic<uint32_t> slot_pos;
std::atomic<uint32_t> alive_cnt;
std::atomic<uint64_t> current_size;
volatile bool lock;
2 years ago
using gc_deallocator_t = void (*)(void*);
// maybe use volatile std::thread::id instead
protected:
void acquire_lock();
void release_lock();
void gc();
void daemon();
void start_deamon();
void terminate_daemon();
public:
void reg(void* v, uint32_t sz = 1,
void(*f)(void*) = free
);
GC(
2 years ago
uint64_t max_size = 0xfffffff, uint32_t max_slots = 4096,
uint32_t interval = 10000, uint32_t forced_clean = 1000000,
uint32_t threshould = 64 //one seconds
) : max_size(max_size), max_slots(max_slots),
2 years ago
interval(interval), forced_clean(forced_clean),
threshould(threshould) {
start_deamon();
2 years ago
GC::gc_handle = this;
} // 256 MB
~GC(){
terminate_daemon();
}
2 years ago
static GC* gc_handle;
2 years ago
template <class T>
constexpr static inline gc_deallocator_t _delete(T*){
return [](void* v){
delete (T*)v;
};
}
constexpr static void(*_free) (void*) = free;
};
#else
class GC {
public:
GC(uint32_t) = default;
void reg(
void* v, uint32_t = 0,
void(*f)(void*) = free
) const { f(v); }
static GC* gc;
constexpr static void(*_free) (void*) = free;
}
#endif