PostGIS 3.7.0dev-r@@SVN_REVISION@@
Loading...
Searching...
No Matches
bytebuffer.h
Go to the documentation of this file.
1/**********************************************************************
2 *
3 * PostGIS - Spatial Types for PostgreSQL
4 * http://postgis.net
5 *
6 * PostGIS is free software: you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation, either version 2 of the License, or
9 * (at your option) any later version.
10 *
11 * PostGIS is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with PostGIS. If not, see <http://www.gnu.org/licenses/>.
18 *
19 **********************************************************************
20 *
21 * Copyright 2015 Nicklas Avén <nicklas.aven@jordogskog.no>
22 *
23 **********************************************************************/
24
25
26#ifndef _BYTEBUFFER_H
27#define _BYTEBUFFER_H 1
28
29#include <stdlib.h>
30#include <stdarg.h>
31#include <stdint.h>
32#include "varint.h"
33
34#include "liblwgeom_internal.h"
35#include "lwgeom_log.h"
36
37#define BYTEBUFFER_STARTSIZE 512
38#define BYTEBUFFER_STATICSIZE 1024
39
40typedef struct
41{
42 size_t capacity;
43 uint8_t *buf_start;
44 uint8_t *writecursor;
45 uint8_t *readcursor;
46 uint8_t buf_static[BYTEBUFFER_STATICSIZE];
47}
49
50void bytebuffer_init_with_size(bytebuffer_t *b, size_t size);
52void bytebuffer_append_byte(bytebuffer_t *s, const uint8_t val);
53void bytebuffer_append_bytebuffer(bytebuffer_t *write_to, bytebuffer_t *write_from);
54void bytebuffer_append_varint(bytebuffer_t *s, const int64_t val);
55void bytebuffer_append_uvarint(bytebuffer_t *s, const uint64_t val);
58const uint8_t* bytebuffer_get_buffer(const bytebuffer_t *s, size_t *buffer_length);
59
60/* Unused functions */
61#if 0
62void bytebuffer_destroy(bytebuffer_t *s);
63bytebuffer_t *bytebuffer_create_with_size(size_t size);
64bytebuffer_t *bytebuffer_create(void);
65void bytebuffer_clear(bytebuffer_t *s);
66uint8_t* bytebuffer_get_buffer_copy(const bytebuffer_t *s, size_t *buffer_length);
67uint64_t bytebuffer_read_uvarint(bytebuffer_t *s);
68int64_t bytebuffer_read_varint(bytebuffer_t *s);
69bytebuffer_t* bytebuffer_merge(bytebuffer_t **buff_array, int nbuffers);
70void bytebuffer_reset_reading(bytebuffer_t *s);
72void bytebuffer_append_bulk(bytebuffer_t *s, void * start, size_t size);
73void bytebuffer_append_int(bytebuffer_t *buf, const int val, int swap);
74void bytebuffer_append_double(bytebuffer_t *buf, const double val, int swap);
75#endif
76
77#endif /* _BYTEBUFFER_H */
const uint8_t * bytebuffer_get_buffer(const bytebuffer_t *s, size_t *buffer_length)
Returns a read-only reference to the internal buffer.
Definition bytebuffer.c:116
void bytebuffer_destroy_buffer(bytebuffer_t *s)
Free the bytebuffer_t and all memory managed within it.
Definition bytebuffer.c:56
lwvarlena_t * bytebuffer_get_buffer_varlena(const bytebuffer_t *s)
Returns a copy of the internal buffer.
Definition bytebuffer.c:105
void bytebuffer_append_varint(bytebuffer_t *s, const int64_t val)
Writes a signed varInt to the buffer.
Definition bytebuffer.c:154
#define BYTEBUFFER_STATICSIZE
Definition bytebuffer.h:38
void bytebuffer_append_bytebuffer(bytebuffer_t *write_to, bytebuffer_t *write_from)
Writes a uint8_t value to the buffer.
Definition bytebuffer.c:140
void bytebuffer_init_with_size(bytebuffer_t *b, size_t size)
Allocate just the internal buffer of an existing bytebuffer_t struct.
Definition bytebuffer.c:36
size_t bytebuffer_getlength(const bytebuffer_t *s)
Returns the length of the current buffer.
Definition bytebuffer.c:176
void bytebuffer_append_byte(bytebuffer_t *s, const uint8_t val)
Writes a uint8_t value to the buffer.
Definition bytebuffer.c:127
void bytebuffer_append_uvarint(bytebuffer_t *s, const uint64_t val)
Writes a unsigned varInt to the buffer.
Definition bytebuffer.c:165
char * s
Definition cu_in_wkt.c:23
size_t capacity
Definition bytebuffer.h:42
uint8_t * readcursor
Definition bytebuffer.h:45
uint8_t * writecursor
Definition bytebuffer.h:44
uint8_t * buf_start
Definition bytebuffer.h:43