blob: 5834b8c277a45d4741579106c9e328749c1c1680 [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
18#ifdef __cplusplus
19extern "C" {
20#endif
21
22/**
23 * @defgroup lyset Generic sets
24 *
25 * Structure and functions to hold and manipulate with sets of nodes from schema or data trees.
26 *
27 * @{
28 */
29
30/**
31 * @brief Structure to hold a set of (not necessary somehow connected) objects. Usually used for ::lyd_node
32 * or ::lys_node objects, but it is not limited to them. Caller is supposed to not mix the type of objects
33 * added to the set and according to its knowledge about the set content, it can access objects via the members
34 * of the set union.
35 *
36 * Until ly_set_rm() or ly_set_rm_index() is used, the set keeps the order of the inserted items as they
37 * were added into the set, so the first added item is on array index 0.
38 *
39 * To free the structure, use ly_set_free() function, to manipulate with the structure, use other
40 * ly_set_* functions.
41 */
42struct ly_set
43{
44 unsigned int size; /**< allocated size of the set array */
Michal Vaskob34480a2018-09-17 10:34:45 +020045 unsigned int count; /**< number of elements in (used size of) the set array */
Radek Krejci5aeea3a2018-09-05 13:29:36 +020046 union
47 {
48 struct lys_node **schemas; /**< array of pointers to a ::lys_node objects */
49 struct lyd_node **data; /**< array of pointers to a ::lyd_node objects */
50 void **objs; /**< dummy array for generic work */
51 }; /**< set array - union to simplify access to the stored objects */
52};
53
54/**
55 * @brief Option for ly_set_add() to allow duplicities in the ly_set structure so the
56 * set is not used as a set, but as a list of (container for) items.
57 */
58#define LY_SET_OPT_USEASLIST 0x01
59
60/**
61 * @brief Create and initiate new ::ly_set structure.
62 *
63 * @return Created ::ly_set structure or NULL in case of error.
64 */
Michal Vaskob34480a2018-09-17 10:34:45 +020065struct ly_set *ly_set_new(void);
Radek Krejci5aeea3a2018-09-05 13:29:36 +020066
67/**
68 * @brief Duplicate the existing set.
69 *
70 * @param[in] set Original set to duplicate
Radek Krejci2f2bd902018-09-18 17:04:24 +020071 * @param[in] duplicator Optional pointer to function that duplicates the objects stored
72 * in the original set. If not provided, the new set points to the exact same objects as
73 * the original set.
Radek Krejci5aeea3a2018-09-05 13:29:36 +020074 * @return Duplication of the original set.
75 */
Radek Krejci2f2bd902018-09-18 17:04:24 +020076struct ly_set *ly_set_dup(const struct ly_set *set, void *(*duplicator)(void *obj));
Radek Krejci5aeea3a2018-09-05 13:29:36 +020077
78/**
79 * @brief Add a ::lyd_node or ::lys_node object into the set
80 *
81 * Since it is a set, the function checks for duplicity and if the
82 * node is already in the set, the index of the previously added
83 * node is returned.
84 *
85 * @param[in] set Set where the \p object will be added.
86 * @param[in] object Object to be added into the \p set;
87 * @param[in] options Options to change behavior of the function. Accepted options are:
88 * - #LY_SET_OPT_USEASLIST - do not check for duplicities
89 * @return -1 on failure, index of the \p node in the set on success
90 */
Michal Vaskob34480a2018-09-17 10:34:45 +020091int ly_set_add(struct ly_set *set, void *object, int options);
Radek Krejci5aeea3a2018-09-05 13:29:36 +020092
93/**
94 * @brief Add all objects from \p src to \p trg.
95 *
96 * Since it is a set, the function checks for duplicities.
Radek Krejci5aeea3a2018-09-05 13:29:36 +020097 *
98 * @param[in] trg Target (result) set.
99 * @param[in] src Source set.
100 * @param[in] options Options to change behavior of the function. Accepted options are:
Radek Krejci2f2bd902018-09-18 17:04:24 +0200101 * - #LY_SET_OPT_USEASLIST - add without checking for duplicities
102 * @param[in] duplicator Optional pointer to function that duplicates the objects being added
103 * from \p src into \p trg set. If not provided, the \p trg set will point to the exact same
104 * objects as the \p src set.
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200105 * @return -1 on failure, number of objects added into \p trg on success.
106 */
Radek Krejci2f2bd902018-09-18 17:04:24 +0200107int ly_set_merge(struct ly_set *trg, struct ly_set *src, int options, void *(*duplicator)(void *obj));
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200108
109/**
110 * @brief Get know if the set contains the specified object.
111 * @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.
132 * @param[in] obejct 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 */
Radek Krejci820d2262018-09-20 12:15:31 +0200149LY_ERR ly_set_rm_index(struct ly_set *set, unsigned int 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_ */