blob: f2c10ff60ad8d0b673aed2ceff47d5aa99f498e9 [file] [log] [blame]
Neale Ranns9ef1c0a2017-11-03 04:39:05 -07001/*
2 * Copyright (c) 2017 Cisco and/or its affiliates.
3 * Licensed under the Apache License, Version 2.0 (the "License");
4 * you may not use this file except in compliance with the License.
5 * You may obtain a copy of the License at:
6 *
7 * http://www.apache.org/licenses/LICENSE-2.0
8 *
9 * Unless required by applicable law or agreed to in writing, software
10 * distributed under the License is distributed on an "AS IS" BASIS,
11 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 * See the License for the specific language governing permissions and
13 * limitations under the License.
14 */
15
16#ifndef __VOM_ROUTE_CMDS_H__
17#define __VOM_ROUTE_CMDS_H__
18
19#include "vom/dump_cmd.hpp"
20#include "vom/route.hpp"
21#include "vom/rpc_cmd.hpp"
22
23#include <vapi/ip.api.vapi.hpp>
24
25namespace VOM {
26namespace route {
27namespace ip_route_cmds {
28
29/**
30 * A command class that creates or updates the route
31 */
32class update_cmd : public rpc_cmd<HW::item<bool>, rc_t, vapi::Ip_add_del_route>
33{
34public:
35 /**
36 * Constructor
37 */
38 update_cmd(HW::item<bool>& item,
39 table_id_t id,
40 const prefix_t& prefix,
41 const path_list_t& paths);
42
43 /**
44 * Issue the command to VPP/HW
45 */
46 rc_t issue(connection& con);
47
48 /**
49 * convert to string format for debug purposes
50 */
51 std::string to_string() const;
52
53 /**
54 * Comparison operator - only used for UT
55 */
56 bool operator==(const update_cmd& i) const;
57
58private:
59 route::table_id_t m_id;
60 prefix_t m_prefix;
61 const path_list_t m_paths;
62};
63
64/**
65 * A cmd class that deletes a route
66 */
67class delete_cmd : public rpc_cmd<HW::item<bool>, rc_t, vapi::Ip_add_del_route>
68{
69public:
70 /**
71 * Constructor
72 */
73 delete_cmd(HW::item<bool>& item, table_id_t id, const prefix_t& prefix);
74
75 /**
76 * Issue the command to VPP/HW
77 */
78 rc_t issue(connection& con);
79
80 /**
81 * convert to string format for debug purposes
82 */
83 std::string to_string() const;
84
85 /**
86 * Comparison operator - only used for UT
87 */
88 bool operator==(const delete_cmd& i) const;
89
90private:
91 route::table_id_t m_id;
92 prefix_t m_prefix;
93};
94
95/**
96 * A cmd class that Dumps ipv4 fib
97 */
98class dump_v4_cmd : public VOM::dump_cmd<vapi::Ip_fib_dump>
99{
100public:
101 /**
102 * Constructor
103 */
104 dump_v4_cmd();
105 dump_v4_cmd(const dump_cmd& d);
106
107 /**
108 * Issue the command to VPP/HW
109 */
110 rc_t issue(connection& con);
111 /**
112 * convert to string format for debug purposes
113 */
114 std::string to_string() const;
115
116 /**
117 * Comparison operator - only used for UT
118 */
119 bool operator==(const dump_v4_cmd& i) const;
120
121private:
122 /**
123 * HW reutrn code
124 */
125 HW::item<bool> item;
126};
127
128/**
129 * A cmd class that Dumps ipv6 fib
130 */
131class dump_v6_cmd : public VOM::dump_cmd<vapi::Ip6_fib_dump>
132{
133public:
134 /**
135 * Constructor
136 */
137 dump_v6_cmd();
138 dump_v6_cmd(const dump_cmd& d);
139
140 /**
141 * Issue the command to VPP/HW
142 */
143 rc_t issue(connection& con);
144 /**
145 * convert to string format for debug purposes
146 */
147 std::string to_string() const;
148
149 /**
150 * Comparison operator - only used for UT
151 */
152 bool operator==(const dump_v6_cmd& i) const;
153
154private:
155 /**
156 * HW reutrn code
157 */
158 HW::item<bool> item;
159};
160
161}; // namespace ip_route_cmds
162}; // namespace route
163}; // namespace VOM
164
165/*
166 * fd.io coding-style-patch-verification: ON
167 *
168 * Local Variables:
169 * eval: (c-set-style "mozilla")
170 * End:
171 */
172
173#endif