forked from linux-nvme/nvme-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathaccessors-fabrics.h
More file actions
227 lines (197 loc) · 7.27 KB
/
accessors-fabrics.h
File metadata and controls
227 lines (197 loc) · 7.27 KB
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
220
221
222
223
224
225
226
227
/* SPDX-License-Identifier: LGPL-2.1-or-later */
/*
* This file is part of libnvme.
*
* Copyright (c) 2025, Dell Technologies Inc. or its subsidiaries.
* Authors: Martin Belanger <[email protected]>
*
* ____ _ _ ____ _
* / ___| ___ _ __ ___ _ __ __ _| |_ ___ __| | / ___|___ __| | ___
* | | _ / _ \ '_ \ / _ \ '__/ _` | __/ _ \/ _` | | | / _ \ / _` |/ _ \
* | |_| | __/ | | | __/ | | (_| | || __/ (_| | | |__| (_) | (_| | __/
* \____|\___|_| |_|\___|_| \__,_|\__\___|\__,_| \____\___/ \__,_|\___|
*
* Auto-generated struct member accessors (setter/getter)
*
* To update run: meson compile -C [BUILD-DIR] update-accessors
* Or: make update-accessors
*/
#ifndef _ACCESSORS_FABRICS_H_
#define _ACCESSORS_FABRICS_H_
#include <stdlib.h>
#include <string.h>
#include <stdbool.h>
#include <stdint.h>
#include <nvme/types.h>
/* Forward declarations. These are internal (opaque) structs. */
struct libnvmf_discovery_args;
struct libnvmf_uri;
/****************************************************************************
* Accessors for: struct libnvmf_discovery_args
****************************************************************************/
/**
* libnvmf_discovery_args_new() - Allocate and initialise a new instance.
* @pp: On success, *pp is set to the newly allocated object.
*
* Allocates a zeroed &struct libnvmf_discovery_args on the heap.
* The caller must release it with libnvmf_discovery_args_free().
*
* Return: 0 on success, -EINVAL if @pp is NULL,
* -ENOMEM if allocation fails.
*/
int libnvmf_discovery_args_new(struct libnvmf_discovery_args **pp);
/**
* libnvmf_discovery_args_free() - Release a libnvmf_discovery_args object.
* @p: Object previously returned by libnvmf_discovery_args_new().
* A NULL pointer is silently ignored.
*/
void libnvmf_discovery_args_free(struct libnvmf_discovery_args *p);
/**
* libnvmf_discovery_args_init_defaults() - Set fields to their defaults.
* @p: The &struct libnvmf_discovery_args instance to initialise.
*
* Sets each field that carries a default annotation to its
* compile-time default value. Called automatically by
* libnvmf_discovery_args_new() but may also be called directly to reset an
* instance to its defaults without reallocating it.
*/
void libnvmf_discovery_args_init_defaults(struct libnvmf_discovery_args *p);
/**
* libnvmf_discovery_args_set_max_retries() - Set max_retries.
* @p: The &struct libnvmf_discovery_args instance to update.
* @max_retries: Value to assign to the max_retries field.
*/
void libnvmf_discovery_args_set_max_retries(
struct libnvmf_discovery_args *p,
int max_retries);
/**
* libnvmf_discovery_args_get_max_retries() - Get max_retries.
* @p: The &struct libnvmf_discovery_args instance to query.
*
* Return: The value of the max_retries field.
*/
int libnvmf_discovery_args_get_max_retries(
const struct libnvmf_discovery_args *p);
/**
* libnvmf_discovery_args_set_lsp() - Set lsp.
* @p: The &struct libnvmf_discovery_args instance to update.
* @lsp: Value to assign to the lsp field.
*/
void libnvmf_discovery_args_set_lsp(struct libnvmf_discovery_args *p, __u8 lsp);
/**
* libnvmf_discovery_args_get_lsp() - Get lsp.
* @p: The &struct libnvmf_discovery_args instance to query.
*
* Return: The value of the lsp field.
*/
__u8 libnvmf_discovery_args_get_lsp(const struct libnvmf_discovery_args *p);
/****************************************************************************
* Accessors for: struct libnvmf_uri
****************************************************************************/
/**
* libnvmf_uri_set_scheme() - Set scheme.
* @p: The &struct libnvmf_uri instance to update.
* @scheme: New string; a copy is stored. Pass NULL to clear.
*/
void libnvmf_uri_set_scheme(struct libnvmf_uri *p, const char *scheme);
/**
* libnvmf_uri_get_scheme() - Get scheme.
* @p: The &struct libnvmf_uri instance to query.
*
* Return: The value of the scheme field, or NULL if not set.
*/
const char *libnvmf_uri_get_scheme(const struct libnvmf_uri *p);
/**
* libnvmf_uri_set_protocol() - Set protocol.
* @p: The &struct libnvmf_uri instance to update.
* @protocol: New string; a copy is stored. Pass NULL to clear.
*/
void libnvmf_uri_set_protocol(struct libnvmf_uri *p, const char *protocol);
/**
* libnvmf_uri_get_protocol() - Get protocol.
* @p: The &struct libnvmf_uri instance to query.
*
* Return: The value of the protocol field, or NULL if not set.
*/
const char *libnvmf_uri_get_protocol(const struct libnvmf_uri *p);
/**
* libnvmf_uri_set_userinfo() - Set userinfo.
* @p: The &struct libnvmf_uri instance to update.
* @userinfo: New string; a copy is stored. Pass NULL to clear.
*/
void libnvmf_uri_set_userinfo(struct libnvmf_uri *p, const char *userinfo);
/**
* libnvmf_uri_get_userinfo() - Get userinfo.
* @p: The &struct libnvmf_uri instance to query.
*
* Return: The value of the userinfo field, or NULL if not set.
*/
const char *libnvmf_uri_get_userinfo(const struct libnvmf_uri *p);
/**
* libnvmf_uri_set_host() - Set host.
* @p: The &struct libnvmf_uri instance to update.
* @host: New string; a copy is stored. Pass NULL to clear.
*/
void libnvmf_uri_set_host(struct libnvmf_uri *p, const char *host);
/**
* libnvmf_uri_get_host() - Get host.
* @p: The &struct libnvmf_uri instance to query.
*
* Return: The value of the host field, or NULL if not set.
*/
const char *libnvmf_uri_get_host(const struct libnvmf_uri *p);
/**
* libnvmf_uri_set_port() - Set port.
* @p: The &struct libnvmf_uri instance to update.
* @port: Value to assign to the port field.
*/
void libnvmf_uri_set_port(struct libnvmf_uri *p, int port);
/**
* libnvmf_uri_get_port() - Get port.
* @p: The &struct libnvmf_uri instance to query.
*
* Return: The value of the port field.
*/
int libnvmf_uri_get_port(const struct libnvmf_uri *p);
/**
* libnvmf_uri_set_path_segments() - Set path_segments.
* @p: The &struct libnvmf_uri instance to update.
* @path_segments: New NULL-terminated string array; deep-copied.
*/
void libnvmf_uri_set_path_segments(
struct libnvmf_uri *p,
const char *const *path_segments);
/**
* libnvmf_uri_get_path_segments() - Get path_segments.
* @p: The &struct libnvmf_uri instance to query.
*
* Return: The value of the path_segments field.
*/
const char *const *libnvmf_uri_get_path_segments(const struct libnvmf_uri *p);
/**
* libnvmf_uri_set_query() - Set query.
* @p: The &struct libnvmf_uri instance to update.
* @query: New string; a copy is stored. Pass NULL to clear.
*/
void libnvmf_uri_set_query(struct libnvmf_uri *p, const char *query);
/**
* libnvmf_uri_get_query() - Get query.
* @p: The &struct libnvmf_uri instance to query.
*
* Return: The value of the query field, or NULL if not set.
*/
const char *libnvmf_uri_get_query(const struct libnvmf_uri *p);
/**
* libnvmf_uri_set_fragment() - Set fragment.
* @p: The &struct libnvmf_uri instance to update.
* @fragment: New string; a copy is stored. Pass NULL to clear.
*/
void libnvmf_uri_set_fragment(struct libnvmf_uri *p, const char *fragment);
/**
* libnvmf_uri_get_fragment() - Get fragment.
* @p: The &struct libnvmf_uri instance to query.
*
* Return: The value of the fragment field, or NULL if not set.
*/
const char *libnvmf_uri_get_fragment(const struct libnvmf_uri *p);
#endif /* _ACCESSORS_FABRICS_H_ */