FD.io VPP  v18.10-32-g1161dda
Vector Packet Processing
bridge_domain_cmds.hpp
Go to the documentation of this file.
1 /*
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_CMDS_H__
17 #define __VOM_BRIDGE_DOMAIN_CMDS_H__
18 
19 #include "vom/bridge_domain.hpp"
20 #include "vom/dump_cmd.hpp"
21 #include "vom/rpc_cmd.hpp"
22 
23 #include <vapi/l2.api.vapi.hpp>
24 
25 namespace VOM {
26 namespace bridge_domain_cmds {
27 /**
28  * A command class that creates an Bridge-Domain
29  */
31  : public rpc_cmd<HW::item<uint32_t>, vapi::Bridge_domain_add_del>
32 {
33 public:
34  /**
35  * Constructor
36  */
38  const bridge_domain::learning_mode_t& lmode,
39  const bridge_domain::arp_term_mode_t& amode,
40  const bridge_domain::flood_mode_t& fmode,
41  const bridge_domain::mac_age_mode_t& mmode);
42 
43  /**
44  * Issue the command to VPP/HW
45  */
46  rc_t issue(connection& con);
47  /**
48  * convert to string format for debug purposes
49  */
50  std::string to_string() const;
51 
52  /**
53  * Comparison operator - only used for UT
54  */
55  bool operator==(const create_cmd& i) const;
56 
57 private:
58  /**
59  * the learning mode for the bridge
60  */
61  bridge_domain::learning_mode_t m_learning_mode;
62  /**
63  * the learning mode for the bridge
64  */
65  bridge_domain::arp_term_mode_t m_arp_term_mode;
66  /**
67  * the flood mode for the bridge
68  */
69  bridge_domain::flood_mode_t m_flood_mode;
70  /**
71  * the flood mode for the bridge
72  */
73  bridge_domain::mac_age_mode_t m_mac_age_mode;
74 };
75 
76 /**
77  * A cmd class that Delete an Bridge-Domain
78  */
80  : public rpc_cmd<HW::item<uint32_t>, vapi::Bridge_domain_add_del>
81 {
82 public:
83  /**
84  * Constructor
85  */
87 
88  /**
89  * Issue the command to VPP/HW
90  */
91  rc_t issue(connection& con);
92  /**
93  * convert to string format for debug purposes
94  */
95  std::string to_string() const;
96 
97  /**
98  * Comparison operator - only used for UT
99  */
100  bool operator==(const delete_cmd& i) const;
101 };
102 
103 /**
104  * A cmd class that Dumps all the bridge domains
105  */
106 class dump_cmd : public VOM::dump_cmd<vapi::Bridge_domain_dump>
107 {
108 public:
109  /**
110  * Constructor
111  */
112  dump_cmd();
113  dump_cmd(const dump_cmd& d);
114 
115  /**
116  * Issue the command to VPP/HW
117  */
118  rc_t issue(connection& con);
119  /**
120  * convert to string format for debug purposes
121  */
122  std::string to_string() const;
123 
124  /**
125  * Comparison operator - only used for UT
126  */
127  bool operator==(const dump_cmd& i) const;
128 
129 private:
130  /**
131  * HW reutrn code
132  */
134 };
135 };
136 };
137 
138 /*
139  * fd.io coding-style-patch-verification: ON
140  *
141  * Local Variables:
142  * eval: (c-set-style "mozilla")
143  * End:
144  */
145 
146 #endif
Bridge Domain MAC aging mode.
rc_t issue(connection &con)
Issue the command to VPP/HW.
int i
Error codes that VPP will return during a HW write.
Definition: types.hpp:84
bool operator==(const create_cmd &i) const
Comparison operator - only used for UT.
A representation of the connection to VPP.
Definition: connection.hpp:33
A cmd class that Dumps all the bridge domains.
A base class for all RPC commands to VPP.
Definition: rpc_cmd.hpp:38
Bridge Domain ARP termination mode.
Bridge Domain Learning mode.
Bridge Domain Learning mode.
The VPP Object Model (VOM) library.
Definition: acl_binding.cpp:19
A command class that creates an Bridge-Domain.
std::string to_string() const
convert to string format for debug purposes
A base class for VPP dump commands.
Definition: dump_cmd.hpp:43
A cmd class that Delete an Bridge-Domain.
create_cmd(HW::item< uint32_t > &item, const bridge_domain::learning_mode_t &lmode, const bridge_domain::arp_term_mode_t &amode, const bridge_domain::flood_mode_t &fmode, const bridge_domain::mac_age_mode_t &mmode)
Constructor.
HW::item< uint32_t > & item()
return the HW item the command updates
Definition: rpc_cmd.hpp:64