forked from grishka/libtgvoip
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBufferPool.cpp
More file actions
56 lines (50 loc) · 1.12 KB
/
BufferPool.cpp
File metadata and controls
56 lines (50 loc) · 1.12 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
//
// 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.
//
#include "BufferPool.h"
#include "logging.h"
#include <stdlib.h>
#include <assert.h>
CBufferPool::CBufferPool(unsigned int size, unsigned int count){
assert(count<=64);
init_mutex(mutex);
buffers[0]=(unsigned char*) malloc(size*count);
bufferCount=count;
int i;
for(i=1;i<count;i++){
buffers[i]=buffers[0]+i*size;
}
usedBuffers=0;
}
CBufferPool::~CBufferPool(){
free_mutex(mutex);
free(buffers[0]);
}
unsigned char* CBufferPool::Get(){
lock_mutex(mutex);
int i;
for(i=0;i<bufferCount;i++){
if(!((usedBuffers >> i) & 1)){
usedBuffers|=(1LL << i);
unlock_mutex(mutex);
return buffers[i];
}
}
unlock_mutex(mutex);
return NULL;
}
void CBufferPool::Reuse(unsigned char* buffer){
lock_mutex(mutex);
int i;
for(i=0;i<bufferCount;i++){
if(buffers[i]==buffer){
usedBuffers&= ~(1LL << i);
unlock_mutex(mutex);
return;
}
}
LOGE("pointer passed isn't a valid buffer from this pool");
abort();
}