Extensible Connection-oriented Messaging (XCM)
All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Macros Modules Pages
xcm_attr.h
Go to the documentation of this file.
1/*
2 * SPDX-License-Identifier: BSD-3-Clause
3 * Copyright(c) 2020 Ericsson AB
4 */
5
6#ifndef XCM_ATTR_H
7#define XCM_ATTR_H
8#ifdef __cplusplus
9extern "C" {
10#endif
11
20#include <stdbool.h>
21#include <stdarg.h>
22#include <xcm.h>
23#include <xcm_attr_types.h>
24
47int xcm_attr_set(struct xcm_socket *socket, const char *name,
48 enum xcm_attr_type type, const void *value, size_t len);
49
62int xcm_attr_set_bool(struct xcm_socket *socket, const char *name, bool value);
63
76int xcm_attr_set_int64(struct xcm_socket *socket, const char *name,
77 int64_t value);
78
91int xcm_attr_set_double(struct xcm_socket *socket, const char *name,
92 double value);
93
106int xcm_attr_set_str(struct xcm_socket *socket, const char *name,
107 const char *value);
108
135int xcm_attr_get(struct xcm_socket *socket, const char *name,
136 enum xcm_attr_type *type, void *value, size_t capacity);
137
153int xcm_attr_get_bool(struct xcm_socket *socket, const char *name,
154 bool *value);
155
172int xcm_attr_get_int64(struct xcm_socket *socket, const char *name,
173 int64_t *value);
174
191int xcm_attr_get_double(struct xcm_socket *socket, const char *name,
192 double *value);
193
212int xcm_attr_get_str(struct xcm_socket *socket, const char *name,
213 char *value, size_t capacity);
214
232int xcm_attr_get_bin(struct xcm_socket *socket, const char *name,
233 void *value, size_t capacity);
234
257int xcm_attr_getf(struct xcm_socket *socket, enum xcm_attr_type *type,
258 void *value, size_t capacity, const char *fmt, ...)
259#ifndef __DOXYGEN__
260 __attribute__((format (printf, 5, 6)))
261#endif
262 ;
263
279int xcm_attr_getf_bool(struct xcm_socket *socket, bool *value,
280 const char *name_fmt, ...)
281#ifndef __DOXYGEN__
282 __attribute__((format (printf, 3, 4)))
283#endif
284 ;
285
302int xcm_attr_getf_int64(struct xcm_socket *socket, int64_t *value,
303 const char *name_fmt, ...)
304#ifndef __DOXYGEN__
305 __attribute__((format (printf, 3, 4)))
306#endif
307 ;
308
325int xcm_attr_getf_double(struct xcm_socket *socket, double *value,
326 const char *name_fmt, ...)
327#ifndef __DOXYGEN__
328 __attribute__((format (printf, 3, 4)))
329#endif
330 ;
331
350int xcm_attr_getf_str(struct xcm_socket *socket, char *value, size_t capacity,
351 const char *name_fmt, ...)
352#ifndef __DOXYGEN__
353 __attribute__((format (printf, 4, 5)))
354#endif
355 ;
356
374int xcm_attr_getf_bin(struct xcm_socket *socket, void *value, size_t capacity,
375 const char *name_fmt, ...)
376#ifndef __DOXYGEN__
377 __attribute__((format (printf, 4, 5)))
378#endif
379 ;
380
399int xcm_attr_get_list_len(struct xcm_socket *socket, const char *list_name);
400
402typedef void (*xcm_attr_cb)(const char *attr_name, enum xcm_attr_type type,
403 void *value, size_t value_len, void *cb_data);
404
419void xcm_attr_get_all(struct xcm_socket *socket, xcm_attr_cb cb,
420 void *cb_data);
421
422#ifdef __cplusplus
423}
424#endif
425#endif
Core XCM API.
int xcm_attr_set_double(struct xcm_socket *socket, const char *name, double value)
int xcm_attr_set(struct xcm_socket *socket, const char *name, enum xcm_attr_type type, const void *value, size_t len)
int xcm_attr_get_int64(struct xcm_socket *socket, const char *name, int64_t *value)
int xcm_attr_get_list_len(struct xcm_socket *socket, const char *list_name)
int xcm_attr_get_bin(struct xcm_socket *socket, const char *name, void *value, size_t capacity)
int xcm_attr_get_str(struct xcm_socket *socket, const char *name, char *value, size_t capacity)
int xcm_attr_getf_double(struct xcm_socket *socket, double *value, const char *name_fmt,...)
int xcm_attr_getf_bool(struct xcm_socket *socket, bool *value, const char *name_fmt,...)
int xcm_attr_set_int64(struct xcm_socket *socket, const char *name, int64_t value)
void xcm_attr_get_all(struct xcm_socket *socket, xcm_attr_cb cb, void *cb_data)
int xcm_attr_getf_bin(struct xcm_socket *socket, void *value, size_t capacity, const char *name_fmt,...)
int xcm_attr_set_str(struct xcm_socket *socket, const char *name, const char *value)
int xcm_attr_set_bool(struct xcm_socket *socket, const char *name, bool value)
int xcm_attr_getf(struct xcm_socket *socket, enum xcm_attr_type *type, void *value, size_t capacity, const char *fmt,...)
int xcm_attr_get(struct xcm_socket *socket, const char *name, enum xcm_attr_type *type, void *value, size_t capacity)
int xcm_attr_get_bool(struct xcm_socket *socket, const char *name, bool *value)
int xcm_attr_get_double(struct xcm_socket *socket, const char *name, double *value)
int xcm_attr_getf_str(struct xcm_socket *socket, char *value, size_t capacity, const char *name_fmt,...)
int xcm_attr_getf_int64(struct xcm_socket *socket, int64_t *value, const char *name_fmt,...)
void(* xcm_attr_cb)(const char *attr_name, enum xcm_attr_type type, void *value, size_t value_len, void *cb_data)
Definition xcm_attr.h:402
XCM attribute value type definitions.
xcm_attr_type
Definition xcm_attr_types.h:18