veriblock-pop-cpp
C++11 Libraries for leveraging VeriBlock Proof-Of-Proof blockchain technology.
type_helpers.h
1// Copyright (c) 2019-2022 Xenios SEZC
2// https://www.veriblock.org
3// Distributed under the MIT software license, see the accompanying
4// file LICENSE or http://www.opensource.org/licenses/mit-license.php.
5
6#ifndef VERIBLOCK_POP_CPP_C_TYPE_HELPERS_H
7#define VERIBLOCK_POP_CPP_C_TYPE_HELPERS_H
8
9#include "veriblock/pop/c/array.h"
10
11#ifdef __cplusplus
12extern "C" {
13#endif
14
15#define POP_DECLARE_ENTITY(entity) \
16 typedef struct __pop_##entity pop_##entity##_t; \
17 void pop_##entity##_free(pop_##entity##_t* self);
18
19#define POP_ENTITY_NAME(entity) pop_##entity##_t
20
21#define POP_ENTITY_FREE_SIGNATURE(entity) \
22 void pop_##entity##_free(pop_##entity##_t* self)
23
24#define POP_ENTITY_FREE(entity) pop_##entity##_free
25
26// signature of the new function of the pop entity. used for the declaration
27// and intialization.
28#define POP_ENTITY_NEW_FUNCTION(entity, ...) \
29 pop_##entity##_t* pop_##entity##_new(__VA_ARGS__)
30
31// signature of the getter method of the pop entity. used for the declaration
32// and intialization.
33#define POP_ENTITY_GETTER_FUNCTION(entity, fieldtype, fieldname) \
34 fieldtype pop_##entity##_get_##fieldname(const pop_##entity##_t* self)
35
36// signature of the setter method of the pop entity. used for the declaration
37// and intialization.
38#define POP_ENTITY_SETTER_FUNCTION(entity, fieldtype, fieldname) \
39 void pop_##entity##_set_##fieldname(const pop_##entity##_t* self, \
40 fieldtype val)
41
42// signature of the toJson method of the pop entity. used for the declaration
43// and intialization.
44#define POP_ENTITY_TO_JSON(entity, ...) \
45 POP_ARRAY_NAME(string) \
46 pop_##entity##_to_json(const pop_##entity##_t* self, ##__VA_ARGS__)
47
48// signature of the custom function of the pop entity. used for the declaration
49// and intialization.
50#define POP_ENTITY_CUSTOM_FUNCTION(entity, returntype, funcname, ...) \
51 returntype pop_##entity##_function_##funcname(pop_##entity##_t* self, \
52 ##__VA_ARGS__)
53
54// get the default value of the entity (test used only). used for the
55// declaration and intialization.
56#define POP_GENERATE_DEFAULT_VALUE(entity) \
57 POP_ENTITY_NAME(entity) * pop_##entity##_generate_default_value()
58
59#define POP_GENERATE_DEFAULT_VALUE_EXECUTE(entity) \
60 pop_##entity##_generate_default_value();
61
62#define POP_DECLARE_EXTERN_FUNCTION(funcname, returntype, ...) \
63 returntype pop_extern_function_##funcname(__VA_ARGS__)
64
65#define POP_EXTERN_FUNCTION_NAME(funcname) pop_extern_function_##funcname
66
67#ifdef __cplusplus
68}
69#endif
70
71#endif // VERIBLOCK_POP_CPP_TYPE_HELPERS_H