FD.io VPP  v18.04-17-g3a0d853
Vector Packet Processing
acl_ethertype_cmds.hpp
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2018 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_ACL_ETHERTYPE_CMDS_H__
17 #define __VOM_ACL_ETHERTYPE_CMDS_H__
18 
19 #include "vom/acl_ethertype.hpp"
20 #include "vom/dump_cmd.hpp"
21 #include "vom/rpc_cmd.hpp"
22 
23 #include <vapi/acl.api.vapi.hpp>
24 
25 namespace VOM {
26 namespace ACL {
27 namespace acl_ethertype_cmds {
28 /**
29  * A command class that binds the ethertype list to the interface
30  */
31 class bind_cmd : public rpc_cmd<HW::item<bool>,
32  rc_t,
33  vapi::Acl_interface_set_etype_whitelist>
34 {
35 public:
36  /**
37  * Constructor
38  */
40  const handle_t& itf,
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 bind_cmd& i) const;
56 
57 private:
58  /**
59  * Reference to the HW::item of the interface to bind
60  */
61  const handle_t& m_itf;
62 
63  /**
64  * Ethertype list applied to interface
65  */
67 };
68 
69 /**
70  * A command class that unbinds the ethertype list to the interface
71  */
72 class unbind_cmd : public rpc_cmd<HW::item<bool>,
73  rc_t,
74  vapi::Acl_interface_set_etype_whitelist>
75 {
76 public:
77  /**
78  * Constructor
79  */
80  unbind_cmd(HW::item<bool>& item, const handle_t& itf);
81 
82  /**
83  * Issue the command to VPP/HW
84  */
85  rc_t issue(connection& con);
86  /**
87  * convert to string format for debug purposes
88  */
89  std::string to_string() const;
90 
91  /**
92  * Comparison operator - only used for UT
93  */
94  bool operator==(const unbind_cmd& i) const;
95 
96 private:
97  /**
98  * Reference to the HW::item of the interface to bind
99  */
100  const handle_t m_itf;
101 };
102 
103 /**
104  * A cmd class that Dumps all the acl ethertypes on given interface
105  */
106 class dump_cmd : public VOM::dump_cmd<vapi::Acl_interface_etype_whitelist_dump>
107 {
108 public:
109  /**
110  * Constructor
111  */
112  dump_cmd(const handle_t& itf);
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  * The interface to get the addresses for
132  */
133  const handle_t m_itf;
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
std::string to_string() const
convert to string format for debug purposes
int i
Error codes that VPP will return during a HW write.
Definition: types.hpp:90
A command class that binds the ethertype list to the interface.
A cmd class that Dumps all the acl ethertypes on given interface.
A representation of the connection to VPP.
Definition: connection.hpp:33
HW::item< bool > & item()
return the HW item the command updates
Definition: rpc_cmd.hpp:64
A base class for all RPC commands to VPP.
Definition: rpc_cmd.hpp:38
A command class that unbinds the ethertype list to the interface.
std::multiset< ethertype_rule_t > ethertype_rules_t
The ethertype container.
rc_t issue(connection &con)
Issue the command to VPP/HW.
A type declaration of an interface handle in VPP.
Definition: types.hpp:236
bind_cmd(HW::item< bool > &item, const handle_t &itf, const acl_ethertype::ethertype_rules_t &le)
Constructor.
The VPP Object Model (VOM) library.
Definition: acl_binding.cpp:19
bool operator==(const bind_cmd &i) const
Comparison operator - only used for UT.
A base class for VPP dump commands.
Definition: dump_cmd.hpp:43