blob: 340cecdbab8c168bd6a45820d00bd2f44357982d [file] [log] [blame]
Radek Krejcie9f13b12020-11-09 17:42:04 +01001/**
2 * @file common.h
3 * @author Radek Krejci <rkrejci@cesnet.cz>
aPieceka83b8e02023-06-07 15:25:16 +02004 * @author Adam Piecek <piecek@cesnet.cz>
Radek Krejcie9f13b12020-11-09 17:42:04 +01005 * @brief libyang's yanglint tool - common functions and definitions for both interactive and non-interactive mode.
6 *
aPieceka83b8e02023-06-07 15:25:16 +02007 * Copyright (c) 2023 CESNET, z.s.p.o.
Radek Krejcie9f13b12020-11-09 17:42:04 +01008 *
9 * This source code is licensed under BSD 3-Clause License (the "License").
10 * You may not use this file except in compliance with the License.
11 * You may obtain a copy of the License at
12 *
13 * https://opensource.org/licenses/BSD-3-Clause
14 */
15
16#ifndef COMMON_H_
17#define COMMON_H_
18
19#include <stdint.h>
20#include <stdio.h>
21
22#include "libyang.h"
23
24#define PROMPT "> "
25
26/**
Michal Vaskoc431a0a2021-01-25 14:31:58 +010027 * @brief Default context creation options.
28 */
29#define YL_DEFAULT_CTX_OPTIONS LY_CTX_NO_YANGLIBRARY
30
31/**
Michal Vasko667ce6b2021-01-25 15:00:27 +010032 * @brief Default data parsing flags.
33 */
34#define YL_DEFAULT_DATA_PARSE_OPTIONS LYD_PARSE_STRICT
35
36/**
Michal Vasko05eaf832023-02-10 09:21:46 +010037 * @brief Default data validation flags.
38 */
39#define YL_DEFAULT_DATA_VALIDATE_OPTIONS LYD_VALIDATE_MULTI_ERROR
40
41/**
Radek Krejcie9f13b12020-11-09 17:42:04 +010042 * @brief log error message
43 */
Michal Vasko151ae6c2021-09-23 08:23:51 +020044#define YLMSG_E(...) \
45 fprintf(stderr, "YANGLINT[E]: " __VA_ARGS__)
Radek Krejcie9f13b12020-11-09 17:42:04 +010046
47/**
48 * @brief log warning message
49 */
Michal Vasko151ae6c2021-09-23 08:23:51 +020050#define YLMSG_W(...) \
51 fprintf(stderr, "YANGLINT[W]: " __VA_ARGS__)
Radek Krejcie9f13b12020-11-09 17:42:04 +010052
aPiecek912f3d52022-10-12 10:02:33 +020053#ifndef _WIN32
54# define PATH_SEPARATOR ":"
55#else
56# define PATH_SEPARATOR ";"
57#endif
58
aPieceka83b8e02023-06-07 15:25:16 +020059struct cmdline_file;
60
Radek Krejcie9f13b12020-11-09 17:42:04 +010061/**
Radek Krejcie9f13b12020-11-09 17:42:04 +010062 * @brief Parse path of a schema module file into the directory and module name.
63 *
64 * @param[in] path Schema module file path to be parsed.
65 * @param[out] dir Pointer to the directory path where the file resides. Caller is expected to free the returned string.
66 * @param[out] module Pointer to the name of the module (without file suffixes or revision information) specified by the
aPiecek27337da2023-06-19 14:49:29 +020067 * @p path. Caller is expected to free the returned string.
Radek Krejcie9f13b12020-11-09 17:42:04 +010068 * @return 0 on success
69 * @return -1 on error
70 */
71int parse_schema_path(const char *path, char **dir, char **module);
72
73/**
74 * @brief Get input handler for the specified path.
75 *
76 * Using the @p format_schema and @p format_data the type of the file can be limited (by providing NULL) or it can be
77 * got known if both types are possible.
78 *
79 * @param[in] filepath Path of the file to open.
80 * @param[out] format_schema Format of the schema detected from the file name. If NULL specified, the schema formats are
81 * prohibited and such files are refused.
82 * @param[out] format_data Format of the data detected from the file name. If NULL specified, the data formats are
83 * prohibited and such files are refused.
aPiecek2457b5e2023-06-12 11:40:14 +020084 * @param[out] in Created input handler referring the file behind the @p filepath. Can be NULL.
Radek Krejcie9f13b12020-11-09 17:42:04 +010085 * @return 0 on success.
86 * @return -1 on failure.
87 */
88int get_input(const char *filepath, LYS_INFORMAT *format_schema, LYD_FORMAT *format_data, struct ly_in **in);
89
90/**
aPiecekef0a3392023-05-16 10:34:32 +020091 * @brief Get schema format of the @p filename's content according to the @p filename's suffix.
92 *
Radek Krejcie9f13b12020-11-09 17:42:04 +010093 * @param[in] filename Name of the file to examine.
aPiecekef0a3392023-05-16 10:34:32 +020094 * @return Detected schema input format.
95 */
96LYS_INFORMAT get_schema_format(const char *filename);
97
98/**
99 * @brief Get data format of the @p filename's content according to the @p filename's suffix.
100 *
101 * @param[in] filename Name of the file to examine.
102 * @return Detected data input format.
103 */
104LYD_FORMAT get_data_format(const char *filename);
105
106/**
107 * @brief Get format of the @p filename's content according to the @p filename's suffix.
108 *
109 * Either the @p schema or @p data parameter is set.
110 *
aPiecek27337da2023-06-19 14:49:29 +0200111 * @param[in] filepath Name of the file to examine.
aPiecekef0a3392023-05-16 10:34:32 +0200112 * @param[out] schema_form Pointer to a variable to store the input schema format.
113 * @param[out] data_form Pointer to a variable to store the expected input data format.
Radek Krejcie9f13b12020-11-09 17:42:04 +0100114 * @return zero in case a format was successfully detected.
115 * @return nonzero in case it is not possible to get valid format from the @p filename.
116 */
aPiecekef0a3392023-05-16 10:34:32 +0200117int get_format(const char *filepath, LYS_INFORMAT *schema_form, LYD_FORMAT *data_form);
Radek Krejcie9f13b12020-11-09 17:42:04 +0100118
119/**
romanf00089c2022-10-06 16:01:31 +0200120 * @brief Get the node specified by the path.
121 *
122 * @param[in] ctx libyang context with schema.
123 * @param[in] schema_path Path to the wanted node.
124 * @return Pointer to the schema node specified by the path on success, NULL otherwise.
125 */
stewegd8e2fc92023-05-31 09:52:56 +0200126const struct lysc_node *find_schema_path(const struct ly_ctx *ctx, const char *schema_path);
romanf00089c2022-10-06 16:01:31 +0200127
aPiecek647f62e2023-05-18 10:55:58 +0200128/**
129 * @brief General callback providing run-time extension instance data.
130 *
131 * @param[in] ext Compiled extension instance.
132 * @param[in] user_data User-supplied callback data.
133 * @param[out] ext_data Provided extension instance data.
134 * @param[out] ext_data_free Whether the extension instance should free @p ext_data or not.
135 * @return LY_ERR value.
136 */
137LY_ERR ext_data_clb(const struct lysc_ext_instance *ext, void *user_data, void **ext_data, ly_bool *ext_data_free);
138
aPiecek21c1bc82023-05-18 15:38:31 +0200139/**
140 * @brief Concatenation of paths into one string.
141 *
142 * @param[in,out] searchpaths Collection of paths in the single string. Paths are delimited by colon ":"
143 * (on Windows, used semicolon ";" instead).
144 * @param[in] path Path to add.
145 * @return LY_ERR value.
146 */
147LY_ERR searchpath_strcat(char **searchpaths, const char *path);
148
Radek Krejcie9f13b12020-11-09 17:42:04 +0100149#endif /* COMMON_H_ */