veriblock-pop-cpp
C++11 Libraries for leveraging VeriBlock Proof-Of-Proof blockchain technology.
array.h
1
2// Copyright (c) 2019-2022 Xenios SEZC
3// https://www.veriblock.org
4// Distributed under the MIT software license, see the accompanying
5// file LICENSE or http://www.opensource.org/licenses/mit-license.php.
6
7#ifndef VERIBLOCK_POP_CPP_C_ENTITIES_ARRAY_H
8#define VERIBLOCK_POP_CPP_C_ENTITIES_ARRAY_H
9
10#include <assert.h>
11#include <stddef.h>
12#include <stdint.h>
13
14#ifdef __cplusplus
15extern "C" {
16#endif
17
18#define POP_DECLARE_ARRAY(type, suffix) \
19 struct __pop_array_##suffix { \
20 type* data; \
21 size_t size; \
22 }; \
23 typedef struct __pop_array_##suffix pop_array_##suffix##_t; \
24 inline type pop_array_##suffix##_at(pop_array_##suffix##_t* self, \
25 size_t i) { \
26 if (i > self->size) { \
27 assert(0 && "index our of range"); \
28 } \
29 return self->data[i]; \
30 } \
31 pop_array_##suffix##_t pop_array_##suffix##_new(size_t size); \
32 void pop_array_##suffix##_free(pop_array_##suffix##_t* self);
33
34#define POP_ARRAY_NAME(suffix) pop_array_##suffix##_t
35
36#define POP_ARRAY_FREE_SIGNATURE(suffix) \
37 void pop_array_##suffix##_free(pop_array_##suffix##_t* self)
38
39#define POP_ARRAY_NEW_SIGNATURE(suffix) \
40 pop_array_##suffix##_t pop_array_##suffix##_new(size_t size)
41
42// declare arrays of simple types here
43POP_DECLARE_ARRAY(uint8_t, u8);
44POP_DECLARE_ARRAY(uint32_t, u32);
45POP_DECLARE_ARRAY(double, double);
46POP_DECLARE_ARRAY(POP_ARRAY_NAME(u8), array_u8);
47POP_DECLARE_ARRAY(char, string);
48
49#ifdef __cplusplus
50}
51#endif
52
53#endif // VERIBLOCK_POP_CPP_ARRAY_H