blob: dc46719ffdaec017d7a5981a4837b296643f7d6b [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_BRIDGE_DOMAIN_ENTRY_CMDS_H__
17#define __VOM_BRIDGE_DOMAIN_ENTRY_CMDS_H__
18
19#include "vom/bridge_domain_entry.hpp"
20#include "vom/dump_cmd.hpp"
21#include "vom/rpc_cmd.hpp"
22
23#include <vapi/l2.api.vapi.hpp>
24
25namespace VOM {
26namespace bridge_domain_entry_cmds {
27
28/**
29* A command class that creates or updates the bridge_domain
30*/
31class create_cmd : public rpc_cmd<HW::item<bool>, rc_t, vapi::L2fib_add_del>
32{
33public:
34 /**
35 * Constructor
36 */
37 create_cmd(HW::item<bool>& item,
38 const mac_address_t& mac,
39 uint32_t id,
Mohsin Kazmie2e9ce52017-12-01 15:12:57 +010040 handle_t tx_intf,
41 bool is_bvi);
Neale Ranns9ef1c0a2017-11-03 04:39:05 -070042
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 create_cmd& i) const;
57
58private:
59 mac_address_t m_mac;
60 uint32_t m_bd;
61 handle_t m_tx_itf;
Mohsin Kazmie2e9ce52017-12-01 15:12:57 +010062 bool m_is_bvi;
Neale Ranns9ef1c0a2017-11-03 04:39:05 -070063};
64
65/**
66 * A cmd class that deletes a bridge_domain
67 */
68class delete_cmd : public rpc_cmd<HW::item<bool>, rc_t, vapi::L2fib_add_del>
69{
70public:
71 /**
72 * Constructor
73 */
Mohsin Kazmie2e9ce52017-12-01 15:12:57 +010074 delete_cmd(HW::item<bool>& item,
75 const mac_address_t& mac,
76 uint32_t id,
77 bool is_bvi);
Neale Ranns9ef1c0a2017-11-03 04:39:05 -070078
79 /**
80 * Issue the command to VPP/HW
81 */
82 rc_t issue(connection& con);
83
84 /**
85 * convert to string format for debug purposes
86 */
87 std::string to_string() const;
88
89 /**
90 * Comparison operator - only used for UT
91 */
92 bool operator==(const delete_cmd& i) const;
93
94private:
95 mac_address_t m_mac;
96 uint32_t m_bd;
Mohsin Kazmie2e9ce52017-12-01 15:12:57 +010097 bool m_is_bvi;
Neale Ranns9ef1c0a2017-11-03 04:39:05 -070098};
99
100/**
101 * A cmd class that Dumps all the interface spans
102 */
103class dump_cmd : public VOM::dump_cmd<vapi::L2_fib_table_dump>
104{
105public:
106 /**
107 * Constructor
108 */
109 dump_cmd();
110 dump_cmd(const dump_cmd& d);
111
112 /**
113 * Issue the command to VPP/HW
114 */
115 rc_t issue(connection& con);
116 /**
117 * convert to string format for debug purposes
118 */
119 std::string to_string() const;
120
121 /**
122 * Comparison operator - only used for UT
123 */
124 bool operator==(const dump_cmd& i) const;
125
126private:
127 /**
128 * HW reutrn code
129 */
130 HW::item<bool> item;
131};
132};
133};
134
135/*
136 * fd.io coding-style-patch-verification: ON
137 *
138 * Local Variables:
139 * eval: (c-set-style "mozilla")
140 * End:
141 */
142
143#endif