blob: 4d044d771d56c333dde3bc8bb79895bdb17082e0 [file] [log] [blame]
Radek Krejci5aeea3a2018-09-05 13:29:36 +02001/**
2 * @file common.h
3 * @author Radek Krejci <rkrejci@cesnet.cz>
4 * @brief common internal definitions for libyang
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_COMMON_H_
16#define LY_COMMON_H_
17
Radek Krejcib7db73a2018-10-24 14:18:40 +020018#define _DEFAULT_SOURCE
19#define _GNU_SOURCE
20#define _XOPEN_SOURCE
21
Radek Krejci151a5b72018-10-19 14:21:44 +020022#include <assert.h>
Radek Krejci6caa6ab2018-10-24 10:04:48 +020023#include <pthread.h>
Radek Krejci5aeea3a2018-09-05 13:29:36 +020024#include <stdint.h>
25#include <stdlib.h>
Radek Krejcicad716e2018-11-26 15:18:27 +010026#include <unistd.h>
Radek Krejci5aeea3a2018-09-05 13:29:36 +020027
Radek Krejci2c22f122018-09-05 15:08:03 +020028#include "config.h"
Radek Krejciad573502018-09-07 15:26:55 +020029#include "log.h"
Radek Krejcid33273d2018-10-25 14:55:52 +020030#include "context.h"
Radek Krejcic59bc972018-09-17 16:13:06 +020031#include "tree_schema.h"
Radek Krejci6caa6ab2018-10-24 10:04:48 +020032#include "set.h"
33#include "hash_table.h"
Radek Krejci5aeea3a2018-09-05 13:29:36 +020034
35#if __STDC_VERSION__ >= 201112 && !defined __STDC_NO_THREADS__
36# define THREAD_LOCAL _Thread_local
37#elif defined __GNUC__ || \
38 defined __SUNPRO_C || \
39 defined __xlC__
40# define THREAD_LOCAL __thread
41#else
42# error "Cannot define THREAD_LOCAL"
43#endif
44
Radek Krejcic59bc972018-09-17 16:13:06 +020045#define GETMACRO1(_1, NAME, ...) NAME
Radek Krejci5aeea3a2018-09-05 13:29:36 +020046#define GETMACRO2(_1, _2, NAME, ...) NAME
47#define GETMACRO3(_1, _2, _3, NAME, ...) NAME
48#define GETMACRO4(_1, _2, _3, _4, NAME, ...) NAME
49
50/*
Radek Krejcic59bc972018-09-17 16:13:06 +020051 * If the compiler supports attribute to mark objects as hidden, mark all
52 * objects as hidden and export only objects explicitly marked to be part of
53 * the public API.
Radek Krejci5aeea3a2018-09-05 13:29:36 +020054 */
Radek Krejcic59bc972018-09-17 16:13:06 +020055#define API __attribute__((visibility("default")))
56
Radek Krejcicad716e2018-11-26 15:18:27 +010057#ifndef __USE_GNU
58/*
59 * If we don't have GNU extension, implement these function on your own
60 */
61char *get_current_dir_name(void);
62#endif
63
Radek Krejcic59bc972018-09-17 16:13:06 +020064/******************************************************************************
65 * Logger
66 *****************************************************************************/
Radek Krejci5aeea3a2018-09-05 13:29:36 +020067
68/* internal logging options */
69enum int_log_opts {
70 ILO_LOG = 0, /* log normally */
71 ILO_STORE, /* only store any messages, they will be processed higher on stack */
72 ILO_IGNORE, /* completely ignore messages */
73 ILO_ERR2WRN, /* change errors to warnings */
74};
75
Radek Krejci94aa9942018-09-07 17:12:17 +020076enum LY_VLOG_ELEM {
77 LY_VLOG_NONE = 0,
78 LY_VLOG_LINE,/* line number */
79 LY_VLOG_LYS, /* struct lysc_node* */
80 LY_VLOG_LYD, /* struct lyd_node* */
81 LY_VLOG_STR, /* const char* */
82 LY_VLOG_PREV /* use exact same previous path */
83};
84
Radek Krejci5aeea3a2018-09-05 13:29:36 +020085extern THREAD_LOCAL enum int_log_opts log_opt;
86extern volatile uint8_t ly_log_level;
87extern volatile uint8_t ly_log_opts;
88
Radek Krejciad573502018-09-07 15:26:55 +020089void ly_err_free(void *ptr);
Radek Krejci5aeea3a2018-09-05 13:29:36 +020090void ly_log(const struct ly_ctx *ctx, LY_LOG_LEVEL level, LY_ERR no, const char *format, ...);
Radek Krejci94aa9942018-09-07 17:12:17 +020091void ly_vlog(const struct ly_ctx *ctx, enum LY_VLOG_ELEM elem_type, const void *elem, LY_VECODE code, const char *format, ...);
Radek Krejci5aeea3a2018-09-05 13:29:36 +020092
93#define LOGERR(ctx, errno, str, args...) ly_log(ctx, LY_LLERR, errno, str, ##args)
Radek Krejcif3f47842018-11-15 11:22:15 +010094#define LOGWRN(ctx, str, ...) ly_log(ctx, LY_LLWRN, 0, str, ##__VA_ARGS__)
Radek Krejci5aeea3a2018-09-05 13:29:36 +020095#define LOGVRB(str, args...) ly_log(NULL, LY_LLVRB, 0, str, ##args)
96
Radek Krejci4ab61562018-09-05 15:00:37 +020097#ifdef NDEBUG
98# define LOGDBG(dbg_group, str, args...)
99#else
100 void ly_log_dbg(int group, const char *format, ...);
101# define LOGDBG(dbg_group, str, args...) ly_log_dbg(dbg_group, str, ##args);
102#endif
103
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200104#define LOGMEM(CTX) LOGERR(CTX, LY_EMEM, "Memory allocation failed (%s()).", __func__)
105#define LOGINT(CTX) LOGERR(CTX, LY_EINT, "Internal error (%s:%d).", __FILE__, __LINE__)
106#define LOGARG(CTX, ARG) LOGERR(CTX, LY_EINVAL, "Invalid argument %s (%s()).", #ARG, __func__)
Radek Krejcic07921a2018-09-17 11:40:15 +0200107#define LOGVAL(CTX, ELEM_TYPE, ELEM, CODE, FORMAT...) ly_vlog(CTX, ELEM_TYPE, ELEM, CODE, ##FORMAT)
Radek Krejci94aa9942018-09-07 17:12:17 +0200108
109#define LOGMEM_RET(CTX) LOGMEM(CTX); return LY_EMEM
110#define LOGINT_RET(CTX) LOGINT(CTX); return LY_EINT
111#define LOGARG_RET(CTX) LOGARG(CTX); return LY_EINVAL
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200112
113/*
114 * Common code to check return value and perform appropriate action.
115 */
116#define LY_CHECK_GOTO(COND, GOTO) if (COND) {goto GOTO;}
117#define LY_CHECK_ERR_GOTO(COND, ERR, GOTO) if (COND) {ERR; goto GOTO;}
Radek Krejci6d9b9b52018-11-02 12:43:39 +0100118#define LY_CHECK_RET1(RETVAL) {LY_ERR ret__ = RETVAL;if (ret__ != LY_SUCCESS) {return ret__;}}
Radek Krejcic59bc972018-09-17 16:13:06 +0200119#define LY_CHECK_RET2(COND, RETVAL) if (COND) {return RETVAL;}
120#define LY_CHECK_RET(...) GETMACRO2(__VA_ARGS__, LY_CHECK_RET2, LY_CHECK_RET1)(__VA_ARGS__)
Michal Vaskob3d0d6b2018-09-07 10:17:33 +0200121#define LY_CHECK_ERR_RET(COND, ERR, RETVAL) if (COND) {ERR; return RETVAL;}
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200122
Radek Krejcia3045382018-11-22 14:30:31 +0100123#define LY_CHECK_ARG_GOTO1(CTX, ARG, GOTO) if (!(ARG)) {LOGARG(CTX, ARG);goto GOTO;}
Michal Vaskob3d0d6b2018-09-07 10:17:33 +0200124#define LY_CHECK_ARG_GOTO2(CTX, ARG1, ARG2, GOTO) LY_CHECK_ARG_GOTO1(CTX, ARG1, GOTO);LY_CHECK_ARG_GOTO1(CTX, ARG2, GOTO)
125#define LY_CHECK_ARG_GOTO3(CTX, ARG1, ARG2, ARG3, GOTO) LY_CHECK_ARG_GOTO2(CTX, ARG1, ARG2, GOTO);LY_CHECK_ARG_GOTO1(CTX, ARG3, GOTO)
126#define LY_CHECK_ARG_GOTO(CTX, ...) GETMACRO4(__VA_ARGS__, LY_CHECK_ARG_GOTO3, LY_CHECK_ARG_GOTO2, LY_CHECK_ARG_GOTO1)(CTX, __VA_ARGS__)
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200127
Radek Krejcia3045382018-11-22 14:30:31 +0100128#define LY_CHECK_ARG_RET1(CTX, ARG, RETVAL) if (!(ARG)) {LOGARG(CTX, ARG);return RETVAL;}
Michal Vaskob3d0d6b2018-09-07 10:17:33 +0200129#define LY_CHECK_ARG_RET2(CTX, ARG1, ARG2, RETVAL) LY_CHECK_ARG_RET1(CTX, ARG1, RETVAL);LY_CHECK_ARG_RET1(CTX, ARG2, RETVAL)
130#define LY_CHECK_ARG_RET3(CTX, ARG1, ARG2, ARG3, RETVAL) LY_CHECK_ARG_RET2(CTX, ARG1, ARG2, RETVAL);LY_CHECK_ARG_RET1(CTX, ARG3, RETVAL)
131#define LY_CHECK_ARG_RET(CTX, ...) GETMACRO4(__VA_ARGS__, LY_CHECK_ARG_RET3, LY_CHECK_ARG_RET2, LY_CHECK_ARG_RET1)(CTX, __VA_ARGS__)
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200132
Radek Krejcid972c252018-09-25 13:23:39 +0200133/* count sequence size for LY_VCODE_INCHILDSTMT validation error code */
134size_t LY_VCODE_INSTREXP_len(const char *str);
135/* default maximum characters to print in LY_VCODE_INCHILDSTMT */
136#define LY_VCODE_INSTREXP_MAXLEN 20
137
Michal Vasko58257712018-09-12 11:11:38 +0200138#define LY_VCODE_INCHAR LYVE_SYNTAX, "Invalid character 0x%x."
Michal Vasko37d705c2018-09-12 15:31:26 +0200139#define LY_VCODE_INSTREXP LYVE_SYNTAX, "Invalid character sequence \"%.*s\", expected %s."
Michal Vasko58257712018-09-12 11:11:38 +0200140#define LY_VCODE_EOF LYVE_SYNTAX, "Unexpected end-of-file."
Radek Krejcid91dbaf2018-09-21 15:51:39 +0200141#define LY_VCODE_NTERM LYVE_SYNTAX, "%s not terminated."
142#define LY_VCODE_NSUPP LYVE_SYNTAX, "%s not supported."
Radek Krejci94aa9942018-09-07 17:12:17 +0200143#define LY_VCODE_INSTMT LYVE_SYNTAX_YANG, "Invalid keyword \"%s\"."
Michal Vasko58257712018-09-12 11:11:38 +0200144#define LY_VCODE_INCHILDSTMT LYVE_SYNTAX_YANG, "Invalid keyword \"%s\" as a child of \"%s\"."
Radek Krejci10113652018-11-14 16:56:50 +0100145#define LY_VCODE_INCHILDSTMT2 LYVE_SYNTAX_YANG, "Invalid keyword \"%s\" as a child of \"%s\" - the statement is allowed only in YANG 1.1 modules."
Radek Krejcib1a5dcc2018-11-26 14:50:05 +0100146#define LY_VCODE_INCHILDSTMSCOMB LYVE_SYNTAX_YANG, "Invalid combination of keywords \"%s\" and \"%s\" as children of \"%s\"."
Michal Vasko58257712018-09-12 11:11:38 +0200147#define LY_VCODE_DUPSTMT LYVE_SYNTAX_YANG, "Duplicate keyword \"%s\"."
Radek Krejcifaa1eac2018-10-30 14:34:55 +0100148#define LY_VCODE_DUPIDENT LYVE_SYNTAX_YANG, "Duplicate identifier \"%s\" of %s statement."
Michal Vasko37d705c2018-09-12 15:31:26 +0200149#define LY_VCODE_INVAL LYVE_SYNTAX_YANG, "Invalid value \"%.*s\" of \"%s\"."
Michal Vasko58257712018-09-12 11:11:38 +0200150#define LY_VCODE_MISSTMT LYVE_SYNTAX_YANG, "Missing mandatory keyword \"%s\" as a child of \"%s\"."
Radek Krejci555cb5b2018-11-16 14:54:33 +0100151#define LY_VCODE_MISSCHILDSTMT LYVE_SYNTAX_YANG, "Missing %s substatement for %s%s."
Michal Vasko58257712018-09-12 11:11:38 +0200152#define LY_VCODE_INORD LYVE_SYNTAX_YANG, "Invalid keyword \"%s\", it cannot appear after \"%s\"."
Michal Vasko37d705c2018-09-12 15:31:26 +0200153#define LY_VCODE_OOB LYVE_SYNTAX_YANG, "Value \"%.*s\" is out of \"%s\" bounds."
Michal Vasko58257712018-09-12 11:11:38 +0200154#define LY_VCODE_INDEV LYVE_SYNTAX_YANG, "Deviate \"%s\" does not support keyword \"%s\"."
Radek Krejci4586a022018-11-13 11:29:26 +0100155#define LY_VCODE_INREGEXP LYVE_SYNTAX_YANG, "Regular expression \"%s\" is not valid (\"%s\": %s)."
Radek Krejcib1646a92018-11-02 16:08:26 +0100156#define LY_VCODE_XP_EOE LYVE_XPATH, "Unterminated string delimited with %c (%.15s)."
157#define LY_VCODE_XP_INEXPR LYVE_XPATH, "Invalid expression 0x%x."
Radek Krejci94aa9942018-09-07 17:12:17 +0200158
Radek Krejcic59bc972018-09-17 16:13:06 +0200159/******************************************************************************
Radek Krejci6caa6ab2018-10-24 10:04:48 +0200160 * Context
161 *****************************************************************************/
162
163/**
164 * @brief Context of the YANG schemas
165 */
166struct ly_ctx {
167 struct dict_table dict; /**< dictionary to effectively store strings used in the context related structures */
168 struct ly_set search_paths; /**< set of directories where to search for schema's imports/includes */
169 struct ly_set list; /**< set of YANG schemas */
Radek Krejcid33273d2018-10-25 14:55:52 +0200170 ly_module_imp_clb imp_clb; /**< Optional callback for retrieving missing included or imported models in a custom way. */
171 void *imp_clb_data; /**< Optional private data for imp_clb() */
Radek Krejci6caa6ab2018-10-24 10:04:48 +0200172 uint16_t module_set_id; /**< ID of the current set of schemas */
173 uint16_t flags; /**< context settings, see @ref contextoptions. */
174 pthread_key_t errlist_key; /**< key for the thread-specific list of errors related to the context */
175};
176
Radek Krejcid33273d2018-10-25 14:55:52 +0200177/**
178 * @brief Try to find submodule in the context. Submodules are present only in the parsed (lysp_) schema trees, if only
179 * the compiled versions of the schemas are present, the submodule cannot be returned even if it was used to compile
180 * some of the currently present schemas.
181 *
182 * @param[in] ctx Context where to search
Radek Krejcifaa1eac2018-10-30 14:34:55 +0100183 * @param[in] module Name of the module where the submodule is supposed to belongs-to. If NULL, the module name is not checked.
Radek Krejcid33273d2018-10-25 14:55:52 +0200184 * @param[in] submodule Name of the submodule to find.
185 * @param[in] revision Optional revision of the submodule to find. If not specified, the latest revision is returned.
186 * @return Pointer to the specified submodule if it is present in the context.
187 */
188struct lysp_module *ly_ctx_get_submodule(const struct ly_ctx *ctx, const char *module, const char *submodule, const char *revision);
189
Radek Krejci6caa6ab2018-10-24 10:04:48 +0200190/******************************************************************************
Radek Krejcic59bc972018-09-17 16:13:06 +0200191 * Parsers
192 *****************************************************************************/
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200193
Radek Krejcic59bc972018-09-17 16:13:06 +0200194enum yang_keyword {
195 YANG_NONE = 0,
196 YANG_ACTION,
197 YANG_ANYDATA,
198 YANG_ANYXML,
199 YANG_ARGUMENT,
200 YANG_AUGMENT,
201 YANG_BASE,
202 YANG_BELONGS_TO,
203 YANG_BIT,
204 YANG_CASE,
205 YANG_CHOICE,
206 YANG_CONFIG,
207 YANG_CONTACT,
208 YANG_CONTAINER,
209 YANG_DEFAULT,
210 YANG_DESCRIPTION,
211 YANG_DEVIATE,
212 YANG_DEVIATION,
213 YANG_ENUM,
214 YANG_ERROR_APP_TAG,
215 YANG_ERROR_MESSAGE,
216 YANG_EXTENSION,
217 YANG_FEATURE,
218 YANG_FRACTION_DIGITS,
219 YANG_GROUPING,
220 YANG_IDENTITY,
221 YANG_IF_FEATURE,
222 YANG_IMPORT,
223 YANG_INCLUDE,
224 YANG_INPUT,
225 YANG_KEY,
226 YANG_LEAF,
227 YANG_LEAF_LIST,
228 YANG_LENGTH,
229 YANG_LIST,
230 YANG_MANDATORY,
231 YANG_MAX_ELEMENTS,
232 YANG_MIN_ELEMENTS,
233 YANG_MODIFIER,
234 YANG_MODULE,
235 YANG_MUST,
236 YANG_NAMESPACE,
237 YANG_NOTIFICATION,
238 YANG_ORDERED_BY,
239 YANG_ORGANIZATION,
240 YANG_OUTPUT,
241 YANG_PATH,
242 YANG_PATTERN,
243 YANG_POSITION,
244 YANG_PREFIX,
245 YANG_PRESENCE,
246 YANG_RANGE,
247 YANG_REFERENCE,
248 YANG_REFINE,
249 YANG_REQUIRE_INSTANCE,
250 YANG_REVISION,
251 YANG_REVISION_DATE,
252 YANG_RPC,
253 YANG_STATUS,
254 YANG_SUBMODULE,
255 YANG_TYPE,
256 YANG_TYPEDEF,
257 YANG_UNIQUE,
258 YANG_UNITS,
259 YANG_USES,
260 YANG_VALUE,
261 YANG_WHEN,
262 YANG_YANG_VERSION,
263 YANG_YIN_ELEMENT,
264
265 YANG_SEMICOLON,
266 YANG_LEFT_BRACE,
267 YANG_RIGHT_BRACE,
268 YANG_CUSTOM
269};
270
271/* list of the YANG statements strings */
272extern const char *const ly_stmt_list[];
273#define ly_stmt2str(STMT) ly_stmt_list[STMT]
274
275/* list of the extensions' substatements strings */
276extern const char *const lyext_substmt_list[];
277#define lyext_substmt2str(STMT) lyext_substmt_list[STMT]
278
279/* list of the deviate modifications strings */
280extern const char *const ly_devmod_list[];
281#define ly_devmod2str(TYPE) ly_devmod_list[TYPE]
282
283/******************************************************************************
Michal Vasko1324b6c2018-09-07 11:16:23 +0200284 * Generic useful functions.
Radek Krejcic59bc972018-09-17 16:13:06 +0200285 *****************************************************************************/
Michal Vasko1324b6c2018-09-07 11:16:23 +0200286
287/**
288 * @brief Wrapper for realloc() call. The only difference is that if it fails to
289 * allocate the requested memory, the original memory is freed as well.
290 *
291 * @param[in] ptr Memory to reallocate.
292 * @param[in] size New size of the memory block.
293 *
294 * @return Pointer to the new memory, NULL on error.
295 */
296void *ly_realloc(void *ptr, size_t size);
297
Radek Krejcif345c012018-09-19 11:12:59 +0200298/**
Radek Krejcib416be62018-10-01 14:51:45 +0200299 * @brief Get UTF8 code point of the next character in the input string.
300 *
301 * @param[in,out] input Input string to process, updated according to the processed/read data.
302 * @param[out] utf8_char UTF8 code point of the next character.
303 * @param[out] bytes_read Number of bytes used to encode the read utf8_char.
304 * @return LY_ERR value
305 */
306LY_ERR ly_getutf8(const char **input, unsigned int *utf8_char, size_t *bytes_read);
307
308/**
Radek Krejci4f28eda2018-11-12 11:46:16 +0100309 * @brief Parse signed integer with possible limitation.
310 * @param[in] val_str String value containing signed integer, note that
311 * nothing else than whitespaces are expected after the value itself.
312 * @param[in] min Limitation for the value which must not be lower than min.
313 * @param[in] max Limitation for the value which must not be higher than max.
314 * @param[in] base Numeric base for parsing:
315 * 0 - to accept decimal, octal, hexadecimal (e.g. in default value)
316 * 10 - to accept only decimal (e.g. data instance value)
317 * @param[out] ret Resulting value.
318 * @return LY_ERR value:
319 * LY_EDENIED - the value breaks the limits,
320 * LY_EVALID - string contains invalid value,
321 * LY_SUCCESS - successful parsing.
322 */
323LY_ERR ly_parse_int(const char *val_str, int64_t min, int64_t max, int base, int64_t *ret);
324
325/**
326 * @brief Parse unsigned integer with possible limitation.
327 * @param[in] val_str String value containing unsigned integer, note that
328 * nothing else than whitespaces are expected after the value itself.
329 * @param[in] max Limitation for the value which must not be higher than max.
330 * @param[in] base Numeric base for parsing:
331 * 0 - to accept decimal, octal, hexadecimal (e.g. in default value)
332 * 10 - to accept only decimal (e.g. data instance value)
333 * @param[out] ret Resulting value.
334 * @return LY_ERR value:
335 * LY_EDENIED - the value breaks the limits,
336 * LY_EVALID - string contains invalid value,
337 * LY_SUCCESS - successful parsing.
338 */
339LY_ERR ly_parse_uint(const char *val_str, uint64_t max, int base, uint64_t *ret);
340
341/**
Radek Krejci86d106e2018-10-18 09:53:19 +0200342 * @brief mmap(2) wrapper to map input files into memory to unify parsing.
Radek Krejcif345c012018-09-19 11:12:59 +0200343 *
Radek Krejci86d106e2018-10-18 09:53:19 +0200344 * The address space is allocate only for reading.
345 *
346 * @param[in] ctx libyang context for logging
347 * @param[in] fd Open file descriptor of a file to map.
348 * @param[out] length Allocated size.
349 * @param[out] addr Address where the file is mapped.
Radek Krejcif345c012018-09-19 11:12:59 +0200350 * @return LY_ERR value.
351 */
Radek Krejci86d106e2018-10-18 09:53:19 +0200352LY_ERR ly_mmap(struct ly_ctx *ctx, int fd, size_t *length, void **addr);
Michal Vasko841d1a92018-09-07 15:40:31 +0200353
Radek Krejci86d106e2018-10-18 09:53:19 +0200354/**
355 * @brief munmap(2) wrapper to free the memory mapped by ly_mmap()
Michal Vasko1324b6c2018-09-07 11:16:23 +0200356 *
Radek Krejci86d106e2018-10-18 09:53:19 +0200357 * @param[in] addr Address where the input file is mapped.
358 * @param[in] length Allocated size of the address space.
359 * @return LY_ERR value.
360 */
361LY_ERR ly_munmap(void *addr, size_t length);
362
363/**
364 * @brief (Re-)Allocation of a ([sized array](@ref sizedarrays)).
Radek Krejcie53a8dc2018-10-17 12:52:40 +0200365 *
Radek Krejci2c4e7172018-10-19 15:56:26 +0200366 * Increases the size information.
367 *
Radek Krejci86d106e2018-10-18 09:53:19 +0200368 * @param[in] CTX libyang context for logging.
Radek Krejci2c4e7172018-10-19 15:56:26 +0200369 * @param[in,out] ARRAY Pointer to the array to allocate/resize. The size of the allocated
370 * space is counted from the type of the ARRAY, so do not provide placeholder void pointers.
Radek Krejci86d106e2018-10-18 09:53:19 +0200371 * @param[out] NEW_ITEM Returning pointer to the newly allocated record in the ARRAY.
372 * @param[in] RETVAL Return value for the case of error (memory allocation failure).
Michal Vasko1324b6c2018-09-07 11:16:23 +0200373 */
Radek Krejci2c4e7172018-10-19 15:56:26 +0200374#define LY_ARRAY_NEW_RET(CTX, ARRAY, NEW_ITEM, RETVAL) \
Radek Krejcie53a8dc2018-10-17 12:52:40 +0200375 if (!(ARRAY)) { \
376 ARRAY = malloc(sizeof(uint32_t) + sizeof *(ARRAY)); \
377 *((uint32_t*)(ARRAY)) = 1; \
378 } else { \
Radek Krejci2c4e7172018-10-19 15:56:26 +0200379 ++(*((uint32_t*)(ARRAY) - 1)); \
380 ARRAY = ly_realloc(((uint32_t*)(ARRAY) - 1), sizeof(uint32_t) + (*((uint32_t*)(ARRAY) - 1) * sizeof *(ARRAY))); \
Radek Krejcie53a8dc2018-10-17 12:52:40 +0200381 LY_CHECK_ERR_RET(!(ARRAY), LOGMEM(CTX), RETVAL); \
382 } \
Radek Krejci2c4e7172018-10-19 15:56:26 +0200383 ARRAY = (void*)((uint32_t*)(ARRAY) + 1); \
384 (NEW_ITEM) = &(ARRAY)[*((uint32_t*)(ARRAY) - 1) - 1]; \
385 memset(NEW_ITEM, 0, sizeof *(NEW_ITEM))
Michal Vasko1324b6c2018-09-07 11:16:23 +0200386
Radek Krejci2c4e7172018-10-19 15:56:26 +0200387/**
Radek Krejci4f28eda2018-11-12 11:46:16 +0100388 * @brief (Re-)Allocation of a ([sized array](@ref sizedarrays)).
389 *
390 * Increases the size information.
391 *
392 * @param[in] CTX libyang context for logging.
393 * @param[in,out] ARRAY Pointer to the array to allocate/resize. The size of the allocated
394 * space is counted from the type of the ARRAY, so do not provide placeholder void pointers.
395 * @param[out] NEW_ITEM Returning pointer to the newly allocated record in the ARRAY.
396 * @param[out] RET Variable to store error code.
397 * @param[in] GOTO Label to go in case of error (memory allocation failure).
398 */
399#define LY_ARRAY_NEW_GOTO(CTX, ARRAY, NEW_ITEM, RET, GOTO) \
400 if (!(ARRAY)) { \
401 ARRAY = malloc(sizeof(uint32_t) + sizeof *(ARRAY)); \
402 *((uint32_t*)(ARRAY)) = 1; \
403 } else { \
404 ++(*((uint32_t*)(ARRAY) - 1)); \
405 ARRAY = ly_realloc(((uint32_t*)(ARRAY) - 1), sizeof(uint32_t) + (*((uint32_t*)(ARRAY) - 1) * sizeof *(ARRAY))); \
406 LY_CHECK_ERR_GOTO(!(ARRAY), LOGMEM(CTX); RET = LY_EMEM, GOTO); \
407 } \
408 ARRAY = (void*)((uint32_t*)(ARRAY) + 1); \
409 (NEW_ITEM) = &(ARRAY)[*((uint32_t*)(ARRAY) - 1) - 1]; \
410 memset(NEW_ITEM, 0, sizeof *(NEW_ITEM))
411
412/**
Radek Krejci2c4e7172018-10-19 15:56:26 +0200413 * @brief Allocate a ([sized array](@ref sizedarrays)) for the specified number of items.
414 *
415 * Does not set the size information, it is supposed to be incremented via ::LY_ARRAY_INCREMENT
416 * when the items are filled.
417 *
418 * @param[in] CTX libyang context for logging.
419 * @param[in,out] ARRAY Pointer to the array to create.
420 * @param[in] SIZE Number of items the array is supposed to hold. The size of the allocated
421 * space is then counted from the type of the ARRAY, so do not provide placeholder void pointers.
422 * @param[in] RETVAL Return value for the case of error (memory allocation failure).
423 */
424#define LY_ARRAY_CREATE_RET(CTX, ARRAY, SIZE, RETVAL) \
425 ARRAY = calloc(1, sizeof(uint32_t) + SIZE * sizeof *(ARRAY)); \
426 LY_CHECK_ERR_RET(!(ARRAY), LOGMEM(CTX), RETVAL); \
427 ARRAY = (void*)((uint32_t*)(ARRAY) + 1)
428
Radek Krejci6d6e4e42018-10-29 13:28:19 +0100429/**
430 * @brief Allocate a ([sized array](@ref sizedarrays)) for the specified number of items.
431 *
432 * Does not set the size information, it is supposed to be incremented via ::LY_ARRAY_INCREMENT
433 * when the items are filled.
434 *
435 * @param[in] CTX libyang context for logging.
436 * @param[in,out] ARRAY Pointer to the array to create.
437 * @param[in] SIZE Number of items the array is supposed to hold. The size of the allocated
438 * space is then counted from the type of the ARRAY, so do not provide placeholder void pointers.
439 * @param[out] RET Variable to store error code.
440 * @param[in] GOTO Label to go in case of error (memory allocation failure).
441 */
442#define LY_ARRAY_CREATE_GOTO(CTX, ARRAY, SIZE, RET, GOTO) \
443 ARRAY = calloc(1, sizeof(uint32_t) + SIZE * sizeof *(ARRAY)); \
444 LY_CHECK_ERR_GOTO(!(ARRAY), LOGMEM(CTX); RET = LY_EMEM, GOTO); \
445 ARRAY = (void*)((uint32_t*)(ARRAY) + 1)
446
Radek Krejci2c4e7172018-10-19 15:56:26 +0200447#define LY_ARRAY_INCREMENT(ARRAY) \
448 ++(*((uint32_t*)(ARRAY) - 1))
449/**
450 * @brief Free the space allocated for the ([sized array](@ref sizedarrays)).
451 *
452 * The items inside the array are not freed.
453 *
454 * @param[in] ARRAY A ([sized array](@ref sizedarrays)) to be freed.
455 */
456#define LY_ARRAY_FREE(ARRAY) \
457 if (ARRAY){free((uint32_t*)(ARRAY) - 1);}
Radek Krejci5aeea3a2018-09-05 13:29:36 +0200458#endif /* LY_COMMON_H_ */