blob: 2f09f2f3225a27079d652c37919db9c4360644c9 [file] [log] [blame]
Radek Krejci5aeea3a2018-09-05 13:29:36 +02001/**
2 * @file set.h
3 * @author Radek Krejci <rkrejci@cesnet.cz>
4 * @brief Generic set structure and manipulation routines.
5 *
6 * Copyright (c) 2015 - 2018 CESNET, z.s.p.o.
7 *
8 * This source code is licensed under BSD 3-Clause License (the "License").
9 * You may not use this file except in compliance with the License.
10 * You may obtain a copy of the License at
11 *
12 * https://opensource.org/licenses/BSD-3-Clause
13 */
14
15#ifndef LY_SET_H_
16#define LY_SET_H_
17
Michal Vasko52927e22020-03-16 17:26:14 +010018#include <stdint.h>
19
Radek Krejcie7b95092019-05-15 11:03:07 +020020#include "log.h"
21
Radek Krejci5aeea3a2018-09-05 13:29:36 +020022#ifdef __cplusplus
23extern "C" {
24#endif
25
26/**
27 * @defgroup lyset Generic sets
28 *
29 * Structure and functions to hold and manipulate with sets of nodes from schema or data trees.
30 *
31 * @{
32 */
33
34/**
Radek Krejci59583bb2019-09-11 12:57:55 +020035 * @brief Structure to hold a set of (not necessary somehow connected) objects. Usually used for lyd_node,
Radek Krejcie53a8dc2018-10-17 12:52:40 +020036 * ::lysp_node or ::lysc_node objects, but it is not limited to them. Caller is supposed to not mix the type of objects
Radek Krejci5aeea3a2018-09-05 13:29:36 +020037 * added to the set and according to its knowledge about the set content, it can access objects via the members
38 * of the set union.
39 *
40 * Until ly_set_rm() or ly_set_rm_index() is used, the set keeps the order of the inserted items as they
41 * were added into the set, so the first added item is on array index 0.
42 *
43 * To free the structure, use ly_set_free() function, to manipulate with the structure, use other
44 * ly_set_* functions.
45 */
46struct ly_set
47{
Michal Vasko52927e22020-03-16 17:26:14 +010048 uint32_t size; /**< allocated size of the set array */
49 uint32_t count; /**< number of elements in (used size of) the set array */
Radek Krejcie53a8dc2018-10-17 12:52:40 +020050 void **objs; /**< set array of generic object pointers */
Radek Krejci5aeea3a2018-09-05 13:29:36 +020051};
52
53/**
54 * @brief Option for ly_set_add() to allow duplicities in the ly_set structure so the
55 * set is not used as a set, but as a list of (container for) items.
56 */
57#define LY_SET_OPT_USEASLIST 0x01
58
59/**
60 * @brief Create and initiate new ::ly_set structure.
61 *
62 * @return Created ::ly_set structure or NULL in case of error.
63 */
Michal Vaskob34480a2018-09-17 10:34:45 +020064struct ly_set *ly_set_new(void);
Radek Krejci5aeea3a2018-09-05 13:29:36 +020065
66/**
67 * @brief Duplicate the existing set.
68 *
69 * @param[in] set Original set to duplicate
Radek Krejci2f2bd902018-09-18 17:04:24 +020070 * @param[in] duplicator Optional pointer to function that duplicates the objects stored
71 * in the original set. If not provided, the new set points to the exact same objects as
72 * the original set.
Radek Krejci5aeea3a2018-09-05 13:29:36 +020073 * @return Duplication of the original set.
74 */
Radek Krejci2f2bd902018-09-18 17:04:24 +020075struct ly_set *ly_set_dup(const struct ly_set *set, void *(*duplicator)(void *obj));
Radek Krejci5aeea3a2018-09-05 13:29:36 +020076
77/**
Radek Krejcie53a8dc2018-10-17 12:52:40 +020078 * @brief Add an object into the set
Radek Krejci5aeea3a2018-09-05 13:29:36 +020079 *
80 * Since it is a set, the function checks for duplicity and if the
81 * node is already in the set, the index of the previously added
82 * node is returned.
83 *
84 * @param[in] set Set where the \p object will be added.
85 * @param[in] object Object to be added into the \p set;
86 * @param[in] options Options to change behavior of the function. Accepted options are:
87 * - #LY_SET_OPT_USEASLIST - do not check for duplicities
88 * @return -1 on failure, index of the \p node in the set on success
89 */
Michal Vaskob34480a2018-09-17 10:34:45 +020090int ly_set_add(struct ly_set *set, void *object, int options);
Radek Krejci5aeea3a2018-09-05 13:29:36 +020091
92/**
93 * @brief Add all objects from \p src to \p trg.
94 *
95 * Since it is a set, the function checks for duplicities.
Radek Krejci5aeea3a2018-09-05 13:29:36 +020096 *
97 * @param[in] trg Target (result) set.
98 * @param[in] src Source set.
99 * @param[in] options Options to change behavior of the function. Accepted options are:
Radek Krejci2f2bd902018-09-18 17:04:24 +0200100 * - #LY_SET_OPT_USEASLIST - add without checking for duplicities
101 * @param[in] duplicator Optional pointer to function that duplicates the objects being added
102 * from \p src into \p trg set. If not provided, the \p trg set will point to the exact same
103 * objects as the \p src set.
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200104 * @return -1 on failure, number of objects added into \p trg on success.
105 */
Radek Krejci2f2bd902018-09-18 17:04:24 +0200106int ly_set_merge(struct ly_set *trg, struct ly_set *src, int options, void *(*duplicator)(void *obj));
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200107
108/**
Michal Vasko52927e22020-03-16 17:26:14 +0100109 * @brief Learn whether the set contains the specified object.
110 *
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200111 * @param[in] set Set to explore.
112 * @param[in] object Object to be found in the set.
113 * @return Index of the object in the set or -1 if the object is not present in the set.
114 */
Michal Vaskob34480a2018-09-17 10:34:45 +0200115int ly_set_contains(const struct ly_set *set, void *object);
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200116
117/**
118 * @brief Remove all objects from the set, but keep the set container for further use.
119 *
120 * @param[in] set Set to clean.
Radek Krejcia40f21b2018-09-18 10:42:08 +0200121 * @param[in] destructor Optional function to free the objects in the set.
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200122 */
Radek Krejcia40f21b2018-09-18 10:42:08 +0200123void ly_set_clean(struct ly_set *set, void (*destructor)(void *obj));
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200124
125/**
126 * @brief Remove an object from the set.
127 *
128 * Note that after removing the object from a set, indexes of other objects in the set can change
129 * (the last object is placed instead of the removed object).
130 *
131 * @param[in] set Set from which the \p node will be removed.
Radek Krejcie53a8dc2018-10-17 12:52:40 +0200132 * @param[in] object The object to be removed from the \p set.
Radek Krejci820d2262018-09-20 12:15:31 +0200133 * @param[in] destructor Optional function to free the objects being removed.
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200134 * @return LY_ERR return value.
135 */
Radek Krejci820d2262018-09-20 12:15:31 +0200136LY_ERR ly_set_rm(struct ly_set *set, void *object, void (*destructor)(void *obj));
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200137
138/**
139 * @brief Remove an object on the specific set index.
140 *
141 * Note that after removing the object from a set, indexes of other nodes in the set can change
142 * (the last object is placed instead of the removed object).
143 *
144 * @param[in] set Set from which a node will be removed.
145 * @param[in] index Index of the object to remove in the \p set.
Radek Krejci820d2262018-09-20 12:15:31 +0200146 * @param[in] destructor Optional function to free the objects being removed.
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200147 * @return LY_ERR return value.
148 */
Michal Vasko52927e22020-03-16 17:26:14 +0100149LY_ERR ly_set_rm_index(struct ly_set *set, uint32_t index, void (*destructor)(void *obj));
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200150
151/**
Radek Krejcia40f21b2018-09-18 10:42:08 +0200152 * @brief Free the ::ly_set data. If the destructor is not provided, it frees only the set structure
153 * content, not the referred data.
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200154 *
155 * @param[in] set The set to be freed.
Radek Krejcia40f21b2018-09-18 10:42:08 +0200156 * @param[in] destructor Optional function to free the objects in the set.
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200157 */
Radek Krejcia40f21b2018-09-18 10:42:08 +0200158void ly_set_free(struct ly_set *set, void (*destructor)(void *obj));
159
160/**
161 * @brief Alternative to the ly_set_free() for static ::ly_set objects - in contrast to ly_set_free()
162 * it does not free the provided ::ly_set object.
163 *
164 * @param[in] set The set to be erased.
165 * @param[in] destructor Optional function to free the objects in the set.
166 */
167void ly_set_erase(struct ly_set *set, void (*destructor)(void *obj));
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200168
169/** @} lyset */
170
171#ifdef __cplusplus
172}
173#endif
174
175#endif /* LY_SET_H_ */