2017-02-02 17:24:40 +01:00
|
|
|
//
|
|
|
|
// libtgvoip is free and unencumbered public domain software.
|
|
|
|
// For more information, see http://unlicense.org or the UNLICENSE file
|
|
|
|
// you should have received with this source code distribution.
|
|
|
|
//
|
|
|
|
|
|
|
|
#ifndef LIBTGVOIP_BUFFERPOOL_H
|
|
|
|
#define LIBTGVOIP_BUFFERPOOL_H
|
|
|
|
|
|
|
|
#include <stdint.h>
|
|
|
|
#include "threading.h"
|
|
|
|
|
2017-04-28 13:17:56 +02:00
|
|
|
namespace tgvoip{
|
|
|
|
class BufferPool{
|
2017-02-02 17:24:40 +01:00
|
|
|
public:
|
2017-04-28 13:17:56 +02:00
|
|
|
BufferPool(unsigned int size, unsigned int count);
|
|
|
|
~BufferPool();
|
2017-02-02 17:24:40 +01:00
|
|
|
unsigned char* Get();
|
|
|
|
void Reuse(unsigned char* buffer);
|
2017-07-03 03:42:49 +02:00
|
|
|
size_t GetSingleBufferSize();
|
|
|
|
size_t GetBufferCount();
|
2017-02-02 17:24:40 +01:00
|
|
|
|
|
|
|
private:
|
|
|
|
uint64_t usedBuffers;
|
|
|
|
int bufferCount;
|
2017-07-03 03:42:49 +02:00
|
|
|
size_t size;
|
2017-02-02 17:24:40 +01:00
|
|
|
unsigned char* buffers[64];
|
2018-05-15 20:23:46 +02:00
|
|
|
Mutex mutex;
|
2017-02-02 17:24:40 +01:00
|
|
|
};
|
2017-04-28 13:17:56 +02:00
|
|
|
}
|
2017-02-02 17:24:40 +01:00
|
|
|
|
|
|
|
#endif //LIBTGVOIP_BUFFERPOOL_H
|