Extensible Connection-oriented Messaging (XCM)
Loading...
Searching...
No Matches
xcm_attr_map.h
Go to the documentation of this file.
1/*
2 * SPDX-License-Identifier: BSD-3-Clause
3 * Copyright(c) 2021 Ericsson AB
4 */
5
6#ifndef XCM_ATTR_MAP_H
7#define XCM_ATTR_MAP_H
8#ifdef __cplusplus
9extern "C" {
10#endif
11
23#include <xcm_attr_types.h>
24
25#include <stdbool.h>
26#include <stddef.h>
27#include <stdint.h>
28
29struct xcm_attr_map;
30
31
37struct xcm_attr_map *xcm_attr_map_create(void);
38
39
47struct xcm_attr_map *xcm_attr_map_clone(const struct xcm_attr_map *original);
48
66void xcm_attr_map_add(struct xcm_attr_map *attr_map, const char *attr_name,
67 enum xcm_attr_type attr_type, const void *attr_value,
68 size_t attr_value_len);
69
70
80void xcm_attr_map_add_bool(struct xcm_attr_map *attr_map,
81 const char *attr_name, bool attr_value);
82
83
93void xcm_attr_map_add_int64(struct xcm_attr_map *attr_map,
94 const char *attr_name, int64_t attr_value);
95
96
106void xcm_attr_map_add_double(struct xcm_attr_map *attr_map,
107 const char *attr_name, double attr_value);
108
109
119void xcm_attr_map_add_str(struct xcm_attr_map *attr_map,
120 const char *attr_name, const char *attr_value);
121
122
132void xcm_attr_map_add_bin(struct xcm_attr_map *attr_map,
133 const char *attr_name, const void *attr_value,
134 size_t attr_value_len);
135
136
146void xcm_attr_map_add_all(struct xcm_attr_map *dst_map,
147 const struct xcm_attr_map *src_map);
148
149
166const void *xcm_attr_map_get(const struct xcm_attr_map *attr_map,
167 const char *attr_name,
168 enum xcm_attr_type *attr_type,
169 size_t *attr_value_len);
170
171
186const bool *xcm_attr_map_get_bool(const struct xcm_attr_map *attr_map,
187 const char *attr_name);
188
189
204const int64_t *xcm_attr_map_get_int64(const struct xcm_attr_map *attr_map,
205 const char *attr_name);
206
207
222const double *xcm_attr_map_get_double(const struct xcm_attr_map *attr_map,
223 const char *attr_name);
224
225
240const char *xcm_attr_map_get_str(const struct xcm_attr_map *attr_map,
241 const char *attr_name);
242
257const char *xcm_attr_map_get_bin(const struct xcm_attr_map *attr_map,
258 const char *attr_name);
259
268bool xcm_attr_map_exists(const struct xcm_attr_map *attr_map,
269 const char *attr_name);
270
271
280void xcm_attr_map_del(struct xcm_attr_map *attr_map, const char *attr_name);
281
282
290size_t xcm_attr_map_size(const struct xcm_attr_map *attr_map);
291
292
296typedef void (*xcm_attr_map_foreach_cb)(const char *attr_name,
297 enum xcm_attr_type attr_type,
298 const void *attr_value,
299 size_t attr_value_len,
300 void *user);
301
302
315void xcm_attr_map_foreach(const struct xcm_attr_map *attr_map,
316 xcm_attr_map_foreach_cb cb, void *user);
317
318
327bool xcm_attr_map_equal(const struct xcm_attr_map *attr_map_a,
328 const struct xcm_attr_map *attr_map_b);
329
338void xcm_attr_map_destroy(struct xcm_attr_map *attr_map);
339
340#ifdef __cplusplus
341}
342#endif
343#endif
const bool * xcm_attr_map_get_bool(const struct xcm_attr_map *attr_map, const char *attr_name)
const double * xcm_attr_map_get_double(const struct xcm_attr_map *attr_map, const char *attr_name)
const int64_t * xcm_attr_map_get_int64(const struct xcm_attr_map *attr_map, const char *attr_name)
struct xcm_attr_map * xcm_attr_map_create(void)
void xcm_attr_map_foreach(const struct xcm_attr_map *attr_map, xcm_attr_map_foreach_cb cb, void *user)
void xcm_attr_map_add(struct xcm_attr_map *attr_map, const char *attr_name, enum xcm_attr_type attr_type, const void *attr_value, size_t attr_value_len)
void xcm_attr_map_add_all(struct xcm_attr_map *dst_map, const struct xcm_attr_map *src_map)
struct xcm_attr_map * xcm_attr_map_clone(const struct xcm_attr_map *original)
void xcm_attr_map_add_str(struct xcm_attr_map *attr_map, const char *attr_name, const char *attr_value)
const char * xcm_attr_map_get_bin(const struct xcm_attr_map *attr_map, const char *attr_name)
void xcm_attr_map_add_int64(struct xcm_attr_map *attr_map, const char *attr_name, int64_t attr_value)
bool xcm_attr_map_equal(const struct xcm_attr_map *attr_map_a, const struct xcm_attr_map *attr_map_b)
void xcm_attr_map_del(struct xcm_attr_map *attr_map, const char *attr_name)
void xcm_attr_map_add_double(struct xcm_attr_map *attr_map, const char *attr_name, double attr_value)
const char * xcm_attr_map_get_str(const struct xcm_attr_map *attr_map, const char *attr_name)
void(* xcm_attr_map_foreach_cb)(const char *attr_name, enum xcm_attr_type attr_type, const void *attr_value, size_t attr_value_len, void *user)
Definition xcm_attr_map.h:296
size_t xcm_attr_map_size(const struct xcm_attr_map *attr_map)
void xcm_attr_map_add_bool(struct xcm_attr_map *attr_map, const char *attr_name, bool attr_value)
void xcm_attr_map_add_bin(struct xcm_attr_map *attr_map, const char *attr_name, const void *attr_value, size_t attr_value_len)
void xcm_attr_map_destroy(struct xcm_attr_map *attr_map)
bool xcm_attr_map_exists(const struct xcm_attr_map *attr_map, const char *attr_name)
const void * xcm_attr_map_get(const struct xcm_attr_map *attr_map, const char *attr_name, enum xcm_attr_type *attr_type, size_t *attr_value_len)
XCM attribute value type definitions.
xcm_attr_type
Definition xcm_attr_types.h:18