]> git.proxmox.com Git - mirror_frr.git/blame - lib/command_graph.h
zebra, lib: fix the ZEBRA_INTERFACE_VRF_UPDATE zapi message
[mirror_frr.git] / lib / command_graph.h
CommitLineData
5894e76d
DL
1/*
2 * CLI graph handling
3 *
4 * --
5 * Copyright (C) 2016 Cumulus Networks, Inc.
6 * Copyright (C) 1997, 98, 99 Kunihiro Ishiguro
7 * Copyright (C) 2013 by Open Source Routing.
8 * Copyright (C) 2013 by Internet Systems Consortium, Inc. ("ISC")
9 *
10 * This program is free software; you can redistribute it and/or modify it
11 * under the terms of the GNU General Public License as published by the Free
12 * Software Foundation; either version 2 of the License, or (at your option)
13 * any later version.
14 *
15 * This program is distributed in the hope that it will be useful, but WITHOUT
16 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
17 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
18 * more details.
19 *
896014f4
DL
20 * You should have received a copy of the GNU General Public License along
21 * with this program; see the file COPYING; if not, write to the Free Software
22 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
5894e76d
DL
23 */
24
25#ifndef _FRR_COMMAND_GRAPH_H
26#define _FRR_COMMAND_GRAPH_H
27
28#include <stdbool.h>
29#include <stdint.h>
30
31#include "memory.h"
32#include "vector.h"
33#include "graph.h"
34
35DECLARE_MTYPE(CMD_ARG)
36
37struct vty;
38
39/**
40 * Types for tokens.
41 *
42 * The type determines what kind of data the token can match (in the
43 * matching use case) or hold (in the argv use case).
44 */
9779e3f1 45/* clang-format off */
d62a17ae 46enum cmd_token_type {
9779e3f1 47 WORD_TKN, // words
d62a17ae 48 VARIABLE_TKN, // almost anything
49 RANGE_TKN, // integer range
9779e3f1 50 IPV4_TKN, // IPV4 addresses
d62a17ae 51 IPV4_PREFIX_TKN, // IPV4 network prefixes
9779e3f1 52 IPV6_TKN, // IPV6 prefixes
d62a17ae 53 IPV6_PREFIX_TKN, // IPV6 network prefixes
9779e3f1
QY
54 MAC_TKN, // Ethernet address
55 MAC_PREFIX_TKN, // Ethernet address w/ CIDR mask
d62a17ae 56
57 /* plumbing types */
58 FORK_TKN, // marks subgraph beginning
59 JOIN_TKN, // marks subgraph end
60 START_TKN, // first token in line
61 END_TKN, // last token in line
62
63 SPECIAL_TKN = FORK_TKN,
5894e76d 64};
9779e3f1 65/* clang-format on */
5894e76d 66
70d44c5c
DL
67#define IS_VARYING_TOKEN(x) ((x) >= VARIABLE_TKN && (x) < FORK_TKN)
68
5894e76d 69/* Command attributes */
d62a17ae 70enum { CMD_ATTR_NORMAL,
71 CMD_ATTR_DEPRECATED,
72 CMD_ATTR_HIDDEN,
5894e76d
DL
73};
74
75/* Comamand token struct. */
d62a17ae 76struct cmd_token {
77 enum cmd_token_type type; // token type
78 uint8_t attr; // token attributes
79 bool allowrepeat; // matcher allowed to match token repetively?
80 uint32_t refcnt;
81
82 char *text; // token text
83 char *desc; // token description
84 long long min, max; // for ranges
85 char *arg; // user input that matches this token
86 char *varname;
87
88 struct graph_node *forkjoin; // paired FORK/JOIN for JOIN/FORK
5894e76d
DL
89};
90
91/* Structure of command element. */
d62a17ae 92struct cmd_element {
93 const char *string; /* Command specification by string. */
94 const char *doc; /* Documentation of this command. */
95 int daemon; /* Daemon to which this command belong. */
96 uint8_t attr; /* Command attributes */
5894e76d 97
d62a17ae 98 /* handler function for command */
99 int (*func)(const struct cmd_element *, struct vty *, int,
100 struct cmd_token *[]);
5894e76d 101
d62a17ae 102 const char *name; /* symbol name for debugging */
5894e76d
DL
103};
104
105/* text for <cr> command */
106#define CMD_CR_TEXT "<cr>"
107
108/* memory management for cmd_token */
d62a17ae 109extern struct cmd_token *cmd_token_new(enum cmd_token_type, uint8_t attr,
110 const char *text, const char *desc);
111extern struct cmd_token *cmd_token_dup(struct cmd_token *);
112extern void cmd_token_del(struct cmd_token *);
5894e76d
DL
113extern void cmd_token_varname_set(struct cmd_token *token, const char *varname);
114
d62a17ae 115extern void cmd_graph_parse(struct graph *graph, struct cmd_element *cmd);
116extern void cmd_graph_names(struct graph *graph);
117extern void cmd_graph_merge(struct graph *old, struct graph *new,
118 int direction);
26fbe472
QY
119/*
120 * Print callback for DOT dumping.
121 *
122 * See graph.h for more details.
123 */
124extern void cmd_graph_node_print_cb(struct graph_node *gn, struct buffer *buf);
125/*
126 * Dump command graph to DOT.
127 *
128 * cmdgraph
129 * A command graph to dump
130 *
131 * Returns:
132 * String allocated with MTYPE_TMP representing this graph
133 */
134char *cmd_graph_dump_dot(struct graph *cmdgraph);
5894e76d
DL
135
136#endif /* _FRR_COMMAND_GRAPH_H */