f72a3fb97b5531420288aec4cd4266640f2c64cc
[vpp.git] / extras / vom / vom / acl_ethertype_cmds.hpp
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    */
39   bind_cmd(HW::item<bool>& item,
40            const handle_t& itf,
41            const acl_ethertype::ethertype_rules_t& le);
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    */
66   const acl_ethertype::ethertype_rules_t& m_le;
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