Radek Krejci | e9f13b1 | 2020-11-09 17:42:04 +0100 | [diff] [blame] | 1 | /** |
| 2 | * @file cmd_data.c |
| 3 | * @author Michal Vasko <mvasko@cesnet.cz> |
| 4 | * @author Radek Krejci <rkrejci@cesnet.cz> |
aPiecek | a83b8e0 | 2023-06-07 15:25:16 +0200 | [diff] [blame] | 5 | * @author Adam Piecek <piecek@cesnet.cz> |
Radek Krejci | e9f13b1 | 2020-11-09 17:42:04 +0100 | [diff] [blame] | 6 | * @brief 'data' command of the libyang's yanglint tool. |
| 7 | * |
aPiecek | a83b8e0 | 2023-06-07 15:25:16 +0200 | [diff] [blame] | 8 | * Copyright (c) 2015-2023 CESNET, z.s.p.o. |
Radek Krejci | e9f13b1 | 2020-11-09 17:42:04 +0100 | [diff] [blame] | 9 | * |
| 10 | * This source code is licensed under BSD 3-Clause License (the "License"). |
| 11 | * You may not use this file except in compliance with the License. |
| 12 | * You may obtain a copy of the License at |
| 13 | * |
| 14 | * https://opensource.org/licenses/BSD-3-Clause |
| 15 | */ |
| 16 | |
| 17 | #define _GNU_SOURCE |
| 18 | |
| 19 | #include "cmd.h" |
| 20 | |
aPiecek | a83b8e0 | 2023-06-07 15:25:16 +0200 | [diff] [blame] | 21 | #include <assert.h> |
Radek Krejci | e9f13b1 | 2020-11-09 17:42:04 +0100 | [diff] [blame] | 22 | #include <errno.h> |
| 23 | #include <getopt.h> |
| 24 | #include <stdint.h> |
| 25 | #include <stdio.h> |
| 26 | #include <string.h> |
| 27 | #include <strings.h> |
| 28 | |
| 29 | #include "libyang.h" |
| 30 | |
| 31 | #include "common.h" |
aPiecek | a83b8e0 | 2023-06-07 15:25:16 +0200 | [diff] [blame] | 32 | #include "yl_opt.h" |
Radek Krejci | e9f13b1 | 2020-11-09 17:42:04 +0100 | [diff] [blame] | 33 | |
aPiecek | b073f6a | 2023-04-28 15:23:25 +0200 | [diff] [blame] | 34 | static void |
| 35 | cmd_data_help_header(void) |
Radek Krejci | e9f13b1 | 2020-11-09 17:42:04 +0100 | [diff] [blame] | 36 | { |
Michal Vasko | d3b1054 | 2021-02-03 11:31:16 +0100 | [diff] [blame] | 37 | printf("Usage: data [-emn] [-t TYPE]\n" |
| 38 | " [-F FORMAT] [-f FORMAT] [-d DEFAULTS] [-o OUTFILE] <data1> ...\n" |
| 39 | " data [-n] -t (rpc | notif | reply) [-O FILE]\n" |
| 40 | " [-F FORMAT] [-f FORMAT] [-d DEFAULTS] [-o OUTFILE] <data1> ...\n" |
| 41 | " data [-en] [-t TYPE] [-F FORMAT] -x XPATH [-o OUTFILE] <data1> ...\n" |
aPiecek | b073f6a | 2023-04-28 15:23:25 +0200 | [diff] [blame] | 42 | " Parse, validate and optionally print data instances\n"); |
| 43 | } |
Radek Krejci | e9f13b1 | 2020-11-09 17:42:04 +0100 | [diff] [blame] | 44 | |
aPiecek | b073f6a | 2023-04-28 15:23:25 +0200 | [diff] [blame] | 45 | static void |
| 46 | cmd_data_help_type(void) |
| 47 | { |
| 48 | printf(" -t TYPE, --type=TYPE\n" |
Radek Krejci | e9f13b1 | 2020-11-09 17:42:04 +0100 | [diff] [blame] | 49 | " Specify data tree type in the input data file(s):\n" |
| 50 | " data - Complete datastore with status data (default type).\n" |
| 51 | " config - Configuration datastore (without status data).\n" |
| 52 | " get - Result of the NETCONF <get> operation.\n" |
| 53 | " getconfig - Result of the NETCONF <get-config> operation.\n" |
| 54 | " edit - Content of the NETCONF <edit-config> operation.\n" |
| 55 | " rpc - Content of the NETCONF <rpc> message, defined as YANG's\n" |
| 56 | " RPC/Action input statement.\n" |
aPiecek | 860e34f | 2023-04-28 10:01:32 +0200 | [diff] [blame] | 57 | " nc-rpc - Similar to 'rpc' but expect and check also the NETCONF\n" |
| 58 | " envelopes <rpc> or <action>.\n" |
Radek Krejci | 6784a4e | 2020-12-09 14:23:05 +0100 | [diff] [blame] | 59 | " reply - Reply to the RPC/Action. Note that the reply data are\n" |
| 60 | " expected inside a container representing the original\n" |
| 61 | " RPC/Action. This is necessary to identify appropriate\n" |
| 62 | " data definitions in the schema module.\n" |
aPiecek | 079bcde | 2023-05-05 11:48:25 +0200 | [diff] [blame] | 63 | " nc-reply - Similar to 'reply' but expect and check also the NETCONF\n" |
| 64 | " envelope <rpc-reply> with output data nodes as direct\n" |
| 65 | " descendants. The original RPC/action invocation is expected\n" |
| 66 | " in a separate parameter '-R' and is parsed as 'nc-rpc'.\n" |
Radek Krejci | e9f13b1 | 2020-11-09 17:42:04 +0100 | [diff] [blame] | 67 | " notif - Notification instance (content of the <notification>\n" |
aPiecek | 6d2c1e7 | 2023-04-28 15:54:48 +0200 | [diff] [blame] | 68 | " element without <eventTime>).\n" |
| 69 | " nc-notif - Similar to 'notif' but expect and check also the NETCONF\n" |
| 70 | " envelope <notification> with element <eventTime> and its\n" |
| 71 | " sibling as the actual notification.\n"); |
aPiecek | b073f6a | 2023-04-28 15:23:25 +0200 | [diff] [blame] | 72 | } |
Radek Krejci | e9f13b1 | 2020-11-09 17:42:04 +0100 | [diff] [blame] | 73 | |
aPiecek | b073f6a | 2023-04-28 15:23:25 +0200 | [diff] [blame] | 74 | static void |
| 75 | cmd_data_help_format(void) |
| 76 | { |
| 77 | printf(" -f FORMAT, --format=FORMAT\n" |
| 78 | " Print the data in one of the following formats:\n" |
| 79 | " xml, json, lyb\n" |
| 80 | " Note that the LYB format requires the -o option specified.\n"); |
| 81 | } |
| 82 | |
| 83 | static void |
| 84 | cmd_data_help_in_format(void) |
| 85 | { |
| 86 | printf(" -F FORMAT, --in-format=FORMAT\n" |
| 87 | " Load the data in one of the following formats:\n" |
| 88 | " xml, json, lyb\n" |
| 89 | " If input format not specified, it is detected from the file extension.\n"); |
| 90 | } |
| 91 | |
| 92 | static void |
| 93 | cmd_data_help_default(void) |
| 94 | { |
| 95 | printf(" -d MODE, --default=MODE\n" |
| 96 | " Print data with default values, according to the MODE\n" |
| 97 | " (to print attributes, ietf-netconf-with-defaults model\n" |
| 98 | " must be loaded):\n" |
| 99 | " all - Add missing default nodes.\n" |
| 100 | " all-tagged - Add missing default nodes and mark all the default\n" |
| 101 | " nodes with the attribute.\n" |
| 102 | " trim - Remove all nodes with a default value.\n" |
| 103 | " implicit-tagged - Add missing nodes and mark them with the attribute.\n"); |
| 104 | } |
| 105 | |
| 106 | static void |
| 107 | cmd_data_help_xpath(void) |
| 108 | { |
| 109 | printf(" -x XPATH, --xpath=XPATH\n" |
aPiecek | 4195527 | 2023-05-10 16:10:17 +0200 | [diff] [blame] | 110 | " Evaluate XPATH expression and print the nodes satisfying the\n" |
aPiecek | b073f6a | 2023-04-28 15:23:25 +0200 | [diff] [blame] | 111 | " expression. The output format is specific and the option cannot\n" |
| 112 | " be combined with the -f and -d options. Also all the data\n" |
| 113 | " inputs are merged into a single data tree where the expression\n" |
| 114 | " is evaluated, so the -m option is always set implicitly.\n"); |
| 115 | } |
| 116 | |
| 117 | void |
| 118 | cmd_data_help(void) |
| 119 | { |
| 120 | cmd_data_help_header(); |
| 121 | printf("\n"); |
| 122 | cmd_data_help_type(); |
| 123 | printf(" -e, --present Validate only with the schema modules whose data actually\n" |
Radek Krejci | e9f13b1 | 2020-11-09 17:42:04 +0100 | [diff] [blame] | 124 | " exist in the provided input data files. Takes effect only\n" |
| 125 | " with the 'data' or 'config' TYPEs. Used to avoid requiring\n" |
| 126 | " mandatory nodes from modules which data are not present in the\n" |
| 127 | " provided input data files.\n" |
| 128 | " -m, --merge Merge input data files into a single tree and validate at\n" |
| 129 | " once.The option has effect only for 'data' and 'config' TYPEs.\n" |
| 130 | " In case of using -x option, the data are always merged.\n" |
Michal Vasko | c431a0a | 2021-01-25 14:31:58 +0100 | [diff] [blame] | 131 | " -n, --not-strict\n" |
| 132 | " Do not require strict data parsing (silently skip unknown data),\n" |
aPiecek | b073f6a | 2023-04-28 15:23:25 +0200 | [diff] [blame] | 133 | " has no effect for schemas.\n" |
Radek Krejci | e9f13b1 | 2020-11-09 17:42:04 +0100 | [diff] [blame] | 134 | " -O FILE, --operational=FILE\n" |
| 135 | " Provide optional data to extend validation of the 'rpc',\n" |
| 136 | " 'reply' or 'notif' TYPEs. The FILE is supposed to contain\n" |
aPiecek | a40764b | 2023-04-27 15:34:56 +0200 | [diff] [blame] | 137 | " the operational datastore referenced from the operation.\n" |
| 138 | " In case of a nested notification or action, its parent\n" |
aPiecek | 079bcde | 2023-05-05 11:48:25 +0200 | [diff] [blame] | 139 | " existence is also checked in these operational data.\n" |
| 140 | " -R FILE, --reply-rpc=FILE\n" |
| 141 | " Provide source RPC for parsing of the 'nc-reply' TYPE. The FILE\n" |
| 142 | " is supposed to contain the source 'nc-rpc' operation of the reply.\n"); |
aPiecek | b073f6a | 2023-04-28 15:23:25 +0200 | [diff] [blame] | 143 | cmd_data_help_format(); |
| 144 | cmd_data_help_in_format(); |
| 145 | printf(" -o OUTFILE, --output=OUTFILE\n" |
| 146 | " Write the output to OUTFILE instead of stdout.\n"); |
| 147 | cmd_data_help_xpath(); |
| 148 | printf("\n"); |
Radek Krejci | e9f13b1 | 2020-11-09 17:42:04 +0100 | [diff] [blame] | 149 | } |
| 150 | |
aPiecek | a83b8e0 | 2023-06-07 15:25:16 +0200 | [diff] [blame] | 151 | int |
| 152 | cmd_data_opt(struct yl_opt *yo, const char *cmdline, char ***posv, int *posc) |
Radek Krejci | e9f13b1 | 2020-11-09 17:42:04 +0100 | [diff] [blame] | 153 | { |
aPiecek | a83b8e0 | 2023-06-07 15:25:16 +0200 | [diff] [blame] | 154 | int rc = 0, argc = 0; |
Radek Krejci | e9f13b1 | 2020-11-09 17:42:04 +0100 | [diff] [blame] | 155 | int opt, opt_index; |
| 156 | struct option options[] = { |
Michal Vasko | 667ce6b | 2021-01-25 15:00:27 +0100 | [diff] [blame] | 157 | {"defaults", required_argument, NULL, 'd'}, |
| 158 | {"present", no_argument, NULL, 'e'}, |
| 159 | {"format", required_argument, NULL, 'f'}, |
Michal Vasko | d3b1054 | 2021-02-03 11:31:16 +0100 | [diff] [blame] | 160 | {"in-format", required_argument, NULL, 'F'}, |
Michal Vasko | 667ce6b | 2021-01-25 15:00:27 +0100 | [diff] [blame] | 161 | {"help", no_argument, NULL, 'h'}, |
| 162 | {"merge", no_argument, NULL, 'm'}, |
| 163 | {"output", required_argument, NULL, 'o'}, |
Radek Krejci | e9f13b1 | 2020-11-09 17:42:04 +0100 | [diff] [blame] | 164 | {"operational", required_argument, NULL, 'O'}, |
aPiecek | 079bcde | 2023-05-05 11:48:25 +0200 | [diff] [blame] | 165 | {"reply-rpc", required_argument, NULL, 'R'}, |
Michal Vasko | 667ce6b | 2021-01-25 15:00:27 +0100 | [diff] [blame] | 166 | {"not-strict", no_argument, NULL, 'n'}, |
| 167 | {"type", required_argument, NULL, 't'}, |
| 168 | {"xpath", required_argument, NULL, 'x'}, |
Radek Krejci | e9f13b1 | 2020-11-09 17:42:04 +0100 | [diff] [blame] | 169 | {NULL, 0, NULL, 0} |
| 170 | }; |
| 171 | |
Radek Krejci | e9f13b1 | 2020-11-09 17:42:04 +0100 | [diff] [blame] | 172 | uint8_t data_type_set = 0; |
Radek Krejci | e9f13b1 | 2020-11-09 17:42:04 +0100 | [diff] [blame] | 173 | |
aPiecek | a83b8e0 | 2023-06-07 15:25:16 +0200 | [diff] [blame] | 174 | yo->data_parse_options = YL_DEFAULT_DATA_PARSE_OPTIONS; |
| 175 | yo->data_validate_options = YL_DEFAULT_DATA_VALIDATE_OPTIONS; |
| 176 | |
| 177 | if ((rc = parse_cmdline(cmdline, &argc, &yo->argv))) { |
| 178 | return rc; |
Radek Krejci | e9f13b1 | 2020-11-09 17:42:04 +0100 | [diff] [blame] | 179 | } |
| 180 | |
aPiecek | a83b8e0 | 2023-06-07 15:25:16 +0200 | [diff] [blame] | 181 | while ((opt = getopt_long(argc, yo->argv, commands[CMD_DATA].optstring, options, &opt_index)) != -1) { |
Radek Krejci | e9f13b1 | 2020-11-09 17:42:04 +0100 | [diff] [blame] | 182 | switch (opt) { |
| 183 | case 'd': /* --default */ |
| 184 | if (!strcasecmp(optarg, "all")) { |
aPiecek | a83b8e0 | 2023-06-07 15:25:16 +0200 | [diff] [blame] | 185 | yo->data_print_options = (yo->data_print_options & ~LYD_PRINT_WD_MASK) | LYD_PRINT_WD_ALL; |
Radek Krejci | e9f13b1 | 2020-11-09 17:42:04 +0100 | [diff] [blame] | 186 | } else if (!strcasecmp(optarg, "all-tagged")) { |
aPiecek | a83b8e0 | 2023-06-07 15:25:16 +0200 | [diff] [blame] | 187 | yo->data_print_options = (yo->data_print_options & ~LYD_PRINT_WD_MASK) | LYD_PRINT_WD_ALL_TAG; |
Radek Krejci | e9f13b1 | 2020-11-09 17:42:04 +0100 | [diff] [blame] | 188 | } else if (!strcasecmp(optarg, "trim")) { |
aPiecek | a83b8e0 | 2023-06-07 15:25:16 +0200 | [diff] [blame] | 189 | yo->data_print_options = (yo->data_print_options & ~LYD_PRINT_WD_MASK) | LYD_PRINT_WD_TRIM; |
Radek Krejci | e9f13b1 | 2020-11-09 17:42:04 +0100 | [diff] [blame] | 190 | } else if (!strcasecmp(optarg, "implicit-tagged")) { |
aPiecek | a83b8e0 | 2023-06-07 15:25:16 +0200 | [diff] [blame] | 191 | yo->data_print_options = (yo->data_print_options & ~LYD_PRINT_WD_MASK) | LYD_PRINT_WD_IMPL_TAG; |
Radek Krejci | e9f13b1 | 2020-11-09 17:42:04 +0100 | [diff] [blame] | 192 | } else { |
| 193 | YLMSG_E("Unknown default mode %s\n", optarg); |
aPiecek | b073f6a | 2023-04-28 15:23:25 +0200 | [diff] [blame] | 194 | cmd_data_help_default(); |
aPiecek | a83b8e0 | 2023-06-07 15:25:16 +0200 | [diff] [blame] | 195 | return 1; |
Radek Krejci | e9f13b1 | 2020-11-09 17:42:04 +0100 | [diff] [blame] | 196 | } |
| 197 | break; |
| 198 | case 'f': /* --format */ |
aPiecek | 113e0f0 | 2023-06-09 08:47:48 +0200 | [diff] [blame] | 199 | if (yl_opt_update_data_out_format(optarg, yo)) { |
aPiecek | b073f6a | 2023-04-28 15:23:25 +0200 | [diff] [blame] | 200 | cmd_data_help_format(); |
aPiecek | a83b8e0 | 2023-06-07 15:25:16 +0200 | [diff] [blame] | 201 | return 1; |
Radek Krejci | e9f13b1 | 2020-11-09 17:42:04 +0100 | [diff] [blame] | 202 | } |
| 203 | break; |
Michal Vasko | d3b1054 | 2021-02-03 11:31:16 +0100 | [diff] [blame] | 204 | case 'F': /* --in-format */ |
| 205 | if (!strcasecmp(optarg, "xml")) { |
aPiecek | a83b8e0 | 2023-06-07 15:25:16 +0200 | [diff] [blame] | 206 | yo->data_in_format = LYD_XML; |
Michal Vasko | d3b1054 | 2021-02-03 11:31:16 +0100 | [diff] [blame] | 207 | } else if (!strcasecmp(optarg, "json")) { |
aPiecek | a83b8e0 | 2023-06-07 15:25:16 +0200 | [diff] [blame] | 208 | yo->data_in_format = LYD_JSON; |
Michal Vasko | d3b1054 | 2021-02-03 11:31:16 +0100 | [diff] [blame] | 209 | } else if (!strcasecmp(optarg, "lyb")) { |
aPiecek | a83b8e0 | 2023-06-07 15:25:16 +0200 | [diff] [blame] | 210 | yo->data_in_format = LYD_LYB; |
Michal Vasko | d3b1054 | 2021-02-03 11:31:16 +0100 | [diff] [blame] | 211 | } else { |
| 212 | YLMSG_E("Unknown input format %s\n", optarg); |
aPiecek | b073f6a | 2023-04-28 15:23:25 +0200 | [diff] [blame] | 213 | cmd_data_help_in_format(); |
aPiecek | a83b8e0 | 2023-06-07 15:25:16 +0200 | [diff] [blame] | 214 | return 1; |
Michal Vasko | d3b1054 | 2021-02-03 11:31:16 +0100 | [diff] [blame] | 215 | } |
| 216 | break; |
Radek Krejci | e9f13b1 | 2020-11-09 17:42:04 +0100 | [diff] [blame] | 217 | case 'o': /* --output */ |
aPiecek | a83b8e0 | 2023-06-07 15:25:16 +0200 | [diff] [blame] | 218 | if (yo->out) { |
Radek Krejci | e9f13b1 | 2020-11-09 17:42:04 +0100 | [diff] [blame] | 219 | YLMSG_E("Only a single output can be specified.\n"); |
aPiecek | a83b8e0 | 2023-06-07 15:25:16 +0200 | [diff] [blame] | 220 | return 1; |
Radek Krejci | e9f13b1 | 2020-11-09 17:42:04 +0100 | [diff] [blame] | 221 | } else { |
aPiecek | a83b8e0 | 2023-06-07 15:25:16 +0200 | [diff] [blame] | 222 | if (ly_out_new_filepath(optarg, &yo->out)) { |
Radek Krejci | e9f13b1 | 2020-11-09 17:42:04 +0100 | [diff] [blame] | 223 | YLMSG_E("Unable open output file %s (%s)\n", optarg, strerror(errno)); |
aPiecek | a83b8e0 | 2023-06-07 15:25:16 +0200 | [diff] [blame] | 224 | return 1; |
Radek Krejci | e9f13b1 | 2020-11-09 17:42:04 +0100 | [diff] [blame] | 225 | } |
| 226 | } |
| 227 | break; |
aPiecek | a83b8e0 | 2023-06-07 15:25:16 +0200 | [diff] [blame] | 228 | case 'O': /* --operational */ |
| 229 | if (yo->data_operational.path) { |
Radek Krejci | e9f13b1 | 2020-11-09 17:42:04 +0100 | [diff] [blame] | 230 | YLMSG_E("The operational datastore (-O) cannot be set multiple times.\n"); |
aPiecek | a83b8e0 | 2023-06-07 15:25:16 +0200 | [diff] [blame] | 231 | return 1; |
Radek Krejci | e9f13b1 | 2020-11-09 17:42:04 +0100 | [diff] [blame] | 232 | } |
aPiecek | a83b8e0 | 2023-06-07 15:25:16 +0200 | [diff] [blame] | 233 | yo->data_operational.path = optarg; |
Radek Krejci | e9f13b1 | 2020-11-09 17:42:04 +0100 | [diff] [blame] | 234 | break; |
aPiecek | a83b8e0 | 2023-06-07 15:25:16 +0200 | [diff] [blame] | 235 | case 'R': /* --reply-rpc */ |
| 236 | if (yo->reply_rpc.path) { |
aPiecek | 079bcde | 2023-05-05 11:48:25 +0200 | [diff] [blame] | 237 | YLMSG_E("The PRC of the reply (-R) cannot be set multiple times.\n"); |
aPiecek | a83b8e0 | 2023-06-07 15:25:16 +0200 | [diff] [blame] | 238 | return 1; |
aPiecek | 079bcde | 2023-05-05 11:48:25 +0200 | [diff] [blame] | 239 | } |
aPiecek | a83b8e0 | 2023-06-07 15:25:16 +0200 | [diff] [blame] | 240 | yo->reply_rpc.path = optarg; |
aPiecek | 079bcde | 2023-05-05 11:48:25 +0200 | [diff] [blame] | 241 | break; |
Radek Krejci | e9f13b1 | 2020-11-09 17:42:04 +0100 | [diff] [blame] | 242 | case 'e': /* --present */ |
aPiecek | a83b8e0 | 2023-06-07 15:25:16 +0200 | [diff] [blame] | 243 | yo->data_validate_options |= LYD_VALIDATE_PRESENT; |
Radek Krejci | e9f13b1 | 2020-11-09 17:42:04 +0100 | [diff] [blame] | 244 | break; |
| 245 | case 'm': /* --merge */ |
aPiecek | a83b8e0 | 2023-06-07 15:25:16 +0200 | [diff] [blame] | 246 | yo->data_merge = 1; |
Radek Krejci | e9f13b1 | 2020-11-09 17:42:04 +0100 | [diff] [blame] | 247 | break; |
Michal Vasko | 667ce6b | 2021-01-25 15:00:27 +0100 | [diff] [blame] | 248 | case 'n': /* --not-strict */ |
aPiecek | a83b8e0 | 2023-06-07 15:25:16 +0200 | [diff] [blame] | 249 | yo->data_parse_options &= ~LYD_PARSE_STRICT; |
Radek Krejci | e9f13b1 | 2020-11-09 17:42:04 +0100 | [diff] [blame] | 250 | break; |
| 251 | case 't': /* --type */ |
| 252 | if (data_type_set) { |
| 253 | YLMSG_E("The data type (-t) cannot be set multiple times.\n"); |
aPiecek | a83b8e0 | 2023-06-07 15:25:16 +0200 | [diff] [blame] | 254 | return 1; |
Radek Krejci | e9f13b1 | 2020-11-09 17:42:04 +0100 | [diff] [blame] | 255 | } |
| 256 | |
aPiecek | 3167f38 | 2023-06-09 09:23:10 +0200 | [diff] [blame^] | 257 | if (yl_opt_update_data_type(optarg, yo)) { |
Radek Krejci | e9f13b1 | 2020-11-09 17:42:04 +0100 | [diff] [blame] | 258 | YLMSG_E("Unknown data tree type %s.\n", optarg); |
aPiecek | b073f6a | 2023-04-28 15:23:25 +0200 | [diff] [blame] | 259 | cmd_data_help_type(); |
aPiecek | a83b8e0 | 2023-06-07 15:25:16 +0200 | [diff] [blame] | 260 | return 1; |
Radek Krejci | e9f13b1 | 2020-11-09 17:42:04 +0100 | [diff] [blame] | 261 | } |
| 262 | |
| 263 | data_type_set = 1; |
| 264 | break; |
| 265 | |
| 266 | case 'x': /* --xpath */ |
aPiecek | a83b8e0 | 2023-06-07 15:25:16 +0200 | [diff] [blame] | 267 | if (ly_set_add(&yo->data_xpath, optarg, 0, NULL)) { |
Radek Krejci | e9f13b1 | 2020-11-09 17:42:04 +0100 | [diff] [blame] | 268 | YLMSG_E("Storing XPath \"%s\" failed.\n", optarg); |
aPiecek | a83b8e0 | 2023-06-07 15:25:16 +0200 | [diff] [blame] | 269 | return 1; |
Radek Krejci | e9f13b1 | 2020-11-09 17:42:04 +0100 | [diff] [blame] | 270 | } |
| 271 | break; |
| 272 | |
| 273 | case 'h': /* --help */ |
| 274 | cmd_data_help(); |
aPiecek | a83b8e0 | 2023-06-07 15:25:16 +0200 | [diff] [blame] | 275 | return 1; |
Radek Krejci | e9f13b1 | 2020-11-09 17:42:04 +0100 | [diff] [blame] | 276 | default: |
| 277 | YLMSG_E("Unknown option.\n"); |
aPiecek | a83b8e0 | 2023-06-07 15:25:16 +0200 | [diff] [blame] | 278 | return 1; |
Radek Krejci | e9f13b1 | 2020-11-09 17:42:04 +0100 | [diff] [blame] | 279 | } |
| 280 | } |
| 281 | |
aPiecek | a83b8e0 | 2023-06-07 15:25:16 +0200 | [diff] [blame] | 282 | *posv = &yo->argv[optind]; |
| 283 | *posc = argc - optind; |
| 284 | |
| 285 | return rc; |
| 286 | } |
| 287 | |
| 288 | int |
| 289 | cmd_data_dep(struct yl_opt *yo, int posc) |
| 290 | { |
| 291 | if (yo->interactive && !posc) { |
Radek Krejci | e9f13b1 | 2020-11-09 17:42:04 +0100 | [diff] [blame] | 292 | YLMSG_E("Missing the data file to process.\n"); |
aPiecek | a83b8e0 | 2023-06-07 15:25:16 +0200 | [diff] [blame] | 293 | return 1; |
Radek Krejci | e9f13b1 | 2020-11-09 17:42:04 +0100 | [diff] [blame] | 294 | } |
| 295 | |
aPiecek | a83b8e0 | 2023-06-07 15:25:16 +0200 | [diff] [blame] | 296 | if (yo->data_merge) { |
| 297 | if (yo->data_type || (yo->data_parse_options & LYD_PARSE_ONLY)) { |
Radek Krejci | e9f13b1 | 2020-11-09 17:42:04 +0100 | [diff] [blame] | 298 | /* switch off the option, incompatible input data type */ |
aPiecek | 3d46fa9 | 2023-05-10 08:30:39 +0200 | [diff] [blame] | 299 | YLMSG_W("The --merge option has effect only for 'data' and 'config' TYPEs\n"); |
aPiecek | a83b8e0 | 2023-06-07 15:25:16 +0200 | [diff] [blame] | 300 | yo->data_merge = 0; |
Radek Krejci | e9f13b1 | 2020-11-09 17:42:04 +0100 | [diff] [blame] | 301 | } else { |
| 302 | /* postpone validation after the merge of all the input data */ |
aPiecek | a83b8e0 | 2023-06-07 15:25:16 +0200 | [diff] [blame] | 303 | yo->data_parse_options |= LYD_PARSE_ONLY; |
Radek Krejci | e9f13b1 | 2020-11-09 17:42:04 +0100 | [diff] [blame] | 304 | } |
aPiecek | a83b8e0 | 2023-06-07 15:25:16 +0200 | [diff] [blame] | 305 | } else if (yo->data_xpath.count) { |
| 306 | yo->data_merge = 1; |
Radek Krejci | e9f13b1 | 2020-11-09 17:42:04 +0100 | [diff] [blame] | 307 | } |
| 308 | |
aPiecek | bc39de1 | 2023-06-08 08:10:29 +0200 | [diff] [blame] | 309 | if (yo->data_xpath.count && (yo->schema_out_format || yo->data_out_format)) { |
Radek Krejci | e9f13b1 | 2020-11-09 17:42:04 +0100 | [diff] [blame] | 310 | YLMSG_E("The --format option cannot be combined with --xpath option.\n"); |
aPiecek | a83b8e0 | 2023-06-07 15:25:16 +0200 | [diff] [blame] | 311 | if (yo->interactive) { |
| 312 | cmd_data_help_xpath(); |
| 313 | } |
| 314 | return 1; |
Radek Krejci | e9f13b1 | 2020-11-09 17:42:04 +0100 | [diff] [blame] | 315 | } |
aPiecek | a83b8e0 | 2023-06-07 15:25:16 +0200 | [diff] [blame] | 316 | if (yo->data_xpath.count && (yo->data_print_options & LYD_PRINT_WD_MASK)) { |
aPiecek | 72a24c9 | 2023-04-12 15:03:05 +0200 | [diff] [blame] | 317 | YLMSG_E("The --default option cannot be combined with --xpath option.\n"); |
aPiecek | a83b8e0 | 2023-06-07 15:25:16 +0200 | [diff] [blame] | 318 | if (yo->interactive) { |
| 319 | cmd_data_help_xpath(); |
| 320 | } |
| 321 | return 1; |
aPiecek | 72a24c9 | 2023-04-12 15:03:05 +0200 | [diff] [blame] | 322 | } |
Radek Krejci | e9f13b1 | 2020-11-09 17:42:04 +0100 | [diff] [blame] | 323 | |
aPiecek | a83b8e0 | 2023-06-07 15:25:16 +0200 | [diff] [blame] | 324 | if (yo->data_operational.path && !yo->data_type) { |
aPiecek | bc39de1 | 2023-06-08 08:10:29 +0200 | [diff] [blame] | 325 | YLMSG_W("Operational datastore takes effect only with RPCs/Actions/Replies/Notification input data types.\n"); |
aPiecek | a83b8e0 | 2023-06-07 15:25:16 +0200 | [diff] [blame] | 326 | yo->data_operational.path = NULL; |
Radek Krejci | e9f13b1 | 2020-11-09 17:42:04 +0100 | [diff] [blame] | 327 | } |
| 328 | |
aPiecek | a83b8e0 | 2023-06-07 15:25:16 +0200 | [diff] [blame] | 329 | if (yo->reply_rpc.path && (yo->data_type != LYD_TYPE_REPLY_NETCONF)) { |
aPiecek | 079bcde | 2023-05-05 11:48:25 +0200 | [diff] [blame] | 330 | YLMSG_W("Source RPC is needed only for NETCONF Reply input data type.\n"); |
aPiecek | a83b8e0 | 2023-06-07 15:25:16 +0200 | [diff] [blame] | 331 | yo->data_operational.path = NULL; |
| 332 | } else if (!yo->reply_rpc.path && (yo->data_type == LYD_TYPE_REPLY_NETCONF)) { |
aPiecek | 079bcde | 2023-05-05 11:48:25 +0200 | [diff] [blame] | 333 | YLMSG_E("Missing source RPC (-R) for NETCONF Reply input data type.\n"); |
aPiecek | a83b8e0 | 2023-06-07 15:25:16 +0200 | [diff] [blame] | 334 | return 1; |
aPiecek | 079bcde | 2023-05-05 11:48:25 +0200 | [diff] [blame] | 335 | } |
| 336 | |
aPiecek | a83b8e0 | 2023-06-07 15:25:16 +0200 | [diff] [blame] | 337 | if (!yo->out && (yo->data_out_format == LYD_LYB)) { |
aPiecek | a472348 | 2023-05-11 14:31:02 +0200 | [diff] [blame] | 338 | YLMSG_E("The LYB format requires the -o option specified.\n"); |
aPiecek | a83b8e0 | 2023-06-07 15:25:16 +0200 | [diff] [blame] | 339 | return 1; |
Radek Krejci | e9f13b1 | 2020-11-09 17:42:04 +0100 | [diff] [blame] | 340 | } |
| 341 | |
| 342 | /* default output stream */ |
aPiecek | a83b8e0 | 2023-06-07 15:25:16 +0200 | [diff] [blame] | 343 | if (!yo->out) { |
| 344 | if (ly_out_new_file(stdout, &yo->out)) { |
Radek Krejci | e9f13b1 | 2020-11-09 17:42:04 +0100 | [diff] [blame] | 345 | YLMSG_E("Unable to set stdout as output.\n"); |
aPiecek | a83b8e0 | 2023-06-07 15:25:16 +0200 | [diff] [blame] | 346 | return 1; |
| 347 | } |
| 348 | yo->out_stdout = 1; |
| 349 | } |
| 350 | |
| 351 | /* process the operational and/or reply RPC content if any */ |
| 352 | if (yo->data_operational.path) { |
| 353 | if (get_input(yo->data_operational.path, NULL, &yo->data_operational.format, &yo->data_operational.in)) { |
| 354 | return -1; |
| 355 | } |
| 356 | } |
| 357 | if (yo->reply_rpc.path) { |
| 358 | if (get_input(yo->reply_rpc.path, NULL, &yo->reply_rpc.format, &yo->reply_rpc.in)) { |
| 359 | return -1; |
Radek Krejci | e9f13b1 | 2020-11-09 17:42:04 +0100 | [diff] [blame] | 360 | } |
| 361 | } |
| 362 | |
aPiecek | a83b8e0 | 2023-06-07 15:25:16 +0200 | [diff] [blame] | 363 | return 0; |
| 364 | } |
| 365 | |
| 366 | int |
| 367 | cmd_data_exec(struct ly_ctx **ctx, struct yl_opt *yo, const char *posv) |
| 368 | { |
| 369 | (void) ctx; |
| 370 | struct ly_in *in; |
| 371 | LYD_FORMAT format_data; |
| 372 | |
| 373 | assert(posv); |
| 374 | |
| 375 | format_data = yo->data_in_format; |
| 376 | |
| 377 | /* process input data files provided as standalone command line arguments */ |
| 378 | if (get_input(posv, NULL, &format_data, &in)) { |
| 379 | return 1; |
Radek Krejci | e9f13b1 | 2020-11-09 17:42:04 +0100 | [diff] [blame] | 380 | } |
| 381 | |
aPiecek | a83b8e0 | 2023-06-07 15:25:16 +0200 | [diff] [blame] | 382 | if (!fill_cmdline_file(&yo->data_inputs, in, posv, format_data)) { |
| 383 | ly_in_free(in, 1); |
| 384 | return 1; |
| 385 | } |
| 386 | |
| 387 | return 0; |
| 388 | } |
| 389 | |
| 390 | int |
| 391 | cmd_data_fin(struct ly_ctx *ctx, struct yl_opt *yo) |
| 392 | { |
| 393 | /* parse, validate and print data */ |
| 394 | if (process_data(ctx, yo->data_type, yo->data_merge, yo->data_out_format, yo->out, yo->data_parse_options, |
| 395 | yo->data_validate_options, yo->data_print_options, &yo->data_operational, &yo->reply_rpc, |
| 396 | &yo->data_inputs, &yo->data_xpath)) { |
| 397 | return 1; |
| 398 | } |
| 399 | |
| 400 | return 0; |
Radek Krejci | e9f13b1 | 2020-11-09 17:42:04 +0100 | [diff] [blame] | 401 | } |