aboutsummaryrefslogtreecommitdiffstats
path: root/proto/bmp/buffer.c
blob: be9dd6985aa2865587c6d4919dd73dd1780ca498 (plain)
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
60
61
62
63
64
65
/*
 *	BIRD -- The BGP Monitoring Protocol (BMP)
 *
 *	(c) 2020 Akamai Technologies, Inc. (Pawel Maslanka, pmaslank@akamai.com)
 *
 *	Can be freely distributed and used under the terms of the GNU GPL.
 */

#include "proto/bmp/buffer.h"

buffer
bmp_buffer_alloc(pool *ppool, const size_t n)
{
  buffer buf;
  buf.start = mb_alloc(ppool, n);
  buf.pos = buf.start;
  buf.end = buf.start + n;
  return buf;
}

void
bmp_buffer_free(buffer *buf)
{
  mb_free(buf->start);
  buf->start = buf->pos = buf->end = NULL;
}

/**
 * @brief bmp_buffer_grow
 * @param buf - buffer to grow
 * @param n   - required amount of available space
 * Resize buffer in a way that there is at least @n bytes of available space.
 */
static void
bmp_buffer_grow(buffer *buf, const size_t n)
{
  size_t pos = bmp_buffer_pos(buf);
  size_t size = bmp_buffer_size(buf);
  size_t req = pos + n;

  while (size < req)
    size = size * 3 / 2;

  buf->start = mb_realloc(buf->start, size);
  buf->pos = buf->start + pos;
  buf->end = buf->start + size;
}

void
bmp_buffer_need(buffer *buf, const size_t n)
{
  if (bmp_buffer_avail(buf) < n)
    bmp_buffer_grow(buf, n);
}

void
bmp_put_data(buffer *buf, const void *src, const size_t n)
{
  if (!n)
    return;

  bmp_buffer_need(buf, n);
  memcpy(buf->pos, src, n);
  buf->pos += n;
}