-
Notifications
You must be signed in to change notification settings - Fork 526
/
Copy pathshared_buffer.c
59 lines (51 loc) · 1.73 KB
/
shared_buffer.c
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
56
57
58
59
/*
* Copyright (c) 2020 YuQing <384681@qq.com>
*
* This program is free software: you can use, redistribute, and/or modify
* it under the terms of the Lesser GNU General Public License, version 3
* or later ("LGPL"), 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 Lesser GNU General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#include <inttypes.h>
#include <errno.h>
#include "shared_buffer.h"
static int shared_buffer_alloc_init(void *element, void *args)
{
SharedBuffer *buffer;
SharedBufferContext *ctx;
buffer = (SharedBuffer *)element;
ctx = (SharedBufferContext *)args;
buffer->ctx = ctx;
return shared_buffer_check_capacity(buffer,
ctx->buffer_init_capacity);
}
int shared_buffer_init_ex(SharedBufferContext *context,
const int alloc_elements_once, const int buffer_init_capacity,
const bool need_lock)
{
const int64_t alloc_elements_limit = 0;
int result;
context->buffer_init_capacity = buffer_init_capacity;
if ((result=fast_mblock_init_ex1(&context->allocator, "shared-buffer",
sizeof(SharedBuffer), alloc_elements_once,
alloc_elements_limit, shared_buffer_alloc_init,
context, need_lock)) != 0)
{
return result;
}
return 0;
}
void shared_buffer_destroy(SharedBufferContext *context)
{
fast_mblock_destroy(&context->allocator);
}