-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathwsrep_membership_service.h
219 lines (200 loc) · 5.96 KB
/
wsrep_membership_service.h
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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
/*
* Copyright (C) 2020-2025 Codership Oy <[email protected]>
*
* This file is part of wsrep-API.
*
* Wsrep-API is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 2 of the License, or
* (at your option) any later version.
*
* Wsrep-API is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with wsrep-API. If not, see <https://www.gnu.org/licenses/>.
*/
/** @file wsrep_membership_service.h
*
* This file defines interface for quering the immediate membership and
* members' states of the current configuration. The information is provided
* OUT OF ORDER to facilitate administrative tasks.
*
* The provider which is capable of using the service interface v1 must
* export the following functions.
*
* int wsrep_init_membership_service_v1(struct wsrep_membership_service_v1*)
* void wsrep_deinit_membership_service_v1()
*
* which can be probed by the application.
*
* The application must initialize the service via above init function
* before the provider is initialized via wsrep->init(). The deinit
* function must be called after the provider side resources have been
* released via wsrep->free().
*/
#ifndef WSREP_MEMBERSHIP_SERVICE_H
#define WSREP_MEMBERSHIP_SERVICE_H
#include "wsrep_api.h"
#ifdef __cplusplus
extern "C"
{
#endif /* __cplusplus */
/**
* Member info structure extended to contain member state
*/
struct wsrep_member_info_ext
{
struct wsrep_member_info base;
wsrep_seqno_t last_committed;
enum wsrep_member_status status;
};
/**
* Extended membership structure
*/
struct wsrep_membership
{
/**
* Epoch of the membership data (last time it was updated)
*/
wsrep_uuid_t group_uuid;
/**
* Sequence number of the last received (not processed) action
*/
wsrep_seqno_t last_received;
/**
* When the members' data was last updated
*/
wsrep_seqno_t updated;
/**
* Current group state
*/
enum wsrep_view_status state;
/**
* Number of members in the array
*/
size_t num;
/**
* Membership array
*/
struct wsrep_member_info_ext members[1];
};
/**
* Member info structure extended to contain member state and flags
*/
struct wsrep_member_info_ext_v2
{
struct wsrep_member_info base;
wsrep_seqno_t last_committed;
enum wsrep_member_status status;
uint8_t flags;
};
/* Member flags */
#define WSREP_MEMBER_FLAGS_REP 0x01 // group representative
#define WSREP_MEMBER_FLAGS_CLA 0x02 // count last applied (for JOINED node)
#define WSREP_MEMBER_FLAGS_BOOTSTRAP 0x04 // part of prim bootstrap process
#define WSREP_MEMBER_FLAGS_STATELESS 0x08 // arbitrator or otherwise stateless node
/**
* Extended membership structure v2
*/
struct wsrep_membership_v2
{
/**
* Epoch of the membership data (last time it was updated)
*/
wsrep_uuid_t group_uuid;
/**
* Sequence number of the last received (not processed) action
*/
wsrep_seqno_t last_received;
/**
* When the members' data was last updated
*/
wsrep_seqno_t updated;
/**
* Current group state
*/
enum wsrep_view_status state;
/**
* Number of members in the array
*/
size_t num;
/**
* Membership array
*/
struct wsrep_member_info_ext_v2 members[1];
};
/**
* Memory allocation callback for wsrep_get_mmebership_fn() below
*
* @param size of buffer to allocate
* @return allocated buffer pointer or NULL in case of error
*/
typedef void* (*wsrep_allocator_cb) (size_t size);
/**
* Query membership
*
* @param wsrep provider handle
* @param allocator to use for wsrep_membership struct allocation
* @param membership pointer to pointer to the memebrship structure.
* The structure is allocated by provider and must be freed
* by the caller.
* @return error code of the call
*/
typedef wsrep_status_t (*wsrep_get_membership_fn) (
wsrep_t* wsrep,
wsrep_allocator_cb allocator,
struct wsrep_membership** membership);
/**
* Query membership v2
*
* @param wsrep provider handle
* @param allocator to use for wsrep_membership struct allocation
* @param membership pointer to pointer to the memebrship structure.
* The structure is allocated by provider and must be freed
* by the caller.
* @return error code of the call
*/
typedef wsrep_status_t (*wsrep_get_membership_v2_fn) (
wsrep_t* wsrep,
wsrep_allocator_cb allocator,
struct wsrep_membership_v2** membership);
/**
* Membership service struct.
* Returned by WSREP_MEMBERSHIP_SERVICE_INIT_FUNC_V1
*/
struct wsrep_membership_service_v1
{
wsrep_get_membership_fn get_membership;
};
/**
* Membership service struct.
* Returned by WSREP_MEMBERSHIP_SERVICE_INIT_FUNC_V2
*/
struct wsrep_membership_service_v2
{
wsrep_get_membership_v2_fn get_membership;
};
#ifdef __cplusplus
}
#endif /* __cplusplus */
typedef
wsrep_status_t
(*wsrep_membership_service_v1_init_fn) (struct wsrep_membership_service_v1*);
typedef
void
(*wsrep_membership_service_v1_deinit_fn)(void);
typedef
wsrep_status_t
(*wsrep_membership_service_v2_init_fn) (struct wsrep_membership_service_v2*);
typedef
void
(*wsrep_membership_service_v2_deinit_fn)(void);
/** must be exported by the provider */
#define WSREP_MEMBERSHIP_SERVICE_V1_INIT_FN "wsrep_init_membership_service_v1"
#define WSREP_MEMBERSHIP_SERVICE_V1_DEINIT_FN "wsrep_deinit_membership_service_v1"
#define WSREP_MEMBERSHIP_SERVICE_V2_INIT_FN "wsrep_init_membership_service_v2"
#define WSREP_MEMBERSHIP_SERVICE_V2_DEINIT_FN "wsrep_deinit_membership_service_v2"
#endif /* WSREP_MEMBERSHIP_SERVICE_H */