Sturk 1.1.0
Publish-subscribe C implementation.
Loading...
Searching...
No Matches
graph.h
Go to the documentation of this file.
1/*
2BSD 3-Clause License
3
4Copyright (c) 2025, Szymon Turno
5
6Redistribution and use in source and binary forms, with or without
7modification, are permitted provided that the following conditions are met:
8
91. Redistributions of source code must retain the above copyright notice, this
10 list of conditions and the following disclaimer.
11
122. Redistributions in binary form must reproduce the above copyright notice,
13 this list of conditions and the following disclaimer in the documentation
14 and/or other materials provided with the distribution.
15
163. Neither the name of the copyright holder nor the names of its
17 contributors may be used to endorse or promote products derived from
18 this software without specific prior written permission.
19
20THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
21AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
22IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
23DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
24FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
25DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
26SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
27CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
28OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
29OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
30*/
31
38#ifndef VERTEGS_GRAPH_H
39#define VERTEGS_GRAPH_H
40
41#include "vertegs/vertex.h"
42
43#ifdef __STRICT_ANSI__
44
45#define VX_TYPEOF(var) void*
46
47#else
48
56#define VX_TYPEOF(var) __typeof__(var)
57
58#endif
59
72#define VX_GRAPH(name, deg, type) \
73 name \
74 { \
75 struct Vertegs* vx_graph_nbor[deg]; \
76 type vx_graph_data; \
77 }
78
88#define vx_graph_2vx(graph) \
89 (0 ? (struct Vertegs*)(graph)->vx_graph_nbor : (struct Vertegs*)(graph))
90
101#define vx_graph_4vx(v, graph) \
102 (0 ? (VX_TYPEOF(graph))((graph)->vx_graph_nbor[0] = (v)->nbor[0]) \
103 : ((VX_TYPEOF(graph))(v)))
104
114#define vx_graphp_2vxp(graphp) \
115 (0 ? (*(graphp))->vx_graph_nbor : (struct Vertegs**)(graphp))
116
126#define vx_graph_datap(graph) (&(graph)->vx_graph_data)
127
136#define vx_graph_foredge(type, i, graphp, edge) \
137 for (type** i = graphp; *i; i = (type**)&(*i)->vx_graph_nbor[edge])
138
151};
152
154static const struct VxGraphEmpty* VX_GRAPH_EMPTY;
155
163static inline const struct VxGraphEmpty* vx_graph_empty(void)
164{
165 return VX_GRAPH_EMPTY;
166}
167
168#endif /* VERTEGS_GRAPH_H */
The data type for a graph vertex.
Definition vertex.h:80
Vtable for message construction.
Definition graph.h:144
struct Vertegs * vx_graph_nbor[1]
The neighbourhood of the vertex - an array of neighbours.
Definition graph.h:150
static const struct VxGraphEmpty * vx_graph_empty(void)
Return an empty graph.
Definition graph.h:163
static const struct VxGraphEmpty * VX_GRAPH_EMPTY
Empty graph - null pointer.
Definition graph.h:154
Vertex.