API: Add service definitions for events and singleton messages (second attempt)
[vpp.git] / src / vpp-api / vom / acl_ethertype_cmds.cpp
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 #include "vom/acl_ethertype_cmds.hpp"
17
18 namespace VOM {
19 namespace ACL {
20 namespace acl_ethertype_cmds {
21
22 bind_cmd::bind_cmd(HW::item<bool>& item,
23                    const handle_t& itf,
24                    const acl_ethertype::ethertype_rules_t& le)
25   : rpc_cmd(item)
26   , m_itf(itf)
27   , m_le(le)
28 {
29 }
30
31 bool
32 bind_cmd::operator==(const bind_cmd& other) const
33 {
34   return (m_itf == other.m_itf && m_le == other.m_le);
35 }
36
37 rc_t
38 bind_cmd::issue(connection& con)
39 {
40   msg_t req(con.ctx(), m_le.size(), std::ref(*this));
41   uint32_t i = 0;
42   uint8_t n_input = 0;
43
44   auto& payload = req.get_request().get_payload();
45   payload.sw_if_index = m_itf.value();
46   payload.count = m_le.size();
47
48   auto it = m_le.cbegin();
49   while (it != m_le.cend()) {
50     payload.whitelist[i] = it->getEthertype();
51     if (it->getDirection() == direction_t::INPUT)
52       n_input++;
53     ++it;
54     ++i;
55   }
56
57   payload.n_input = n_input;
58
59   VAPI_CALL(req.execute());
60
61   m_hw_item.set(wait());
62
63   return rc_t::OK;
64 }
65
66 std::string
67 bind_cmd::to_string() const
68 {
69   std::ostringstream s;
70   s << "ACL-Ethertype: " << m_hw_item.to_string()
71     << " itf:" << m_itf.to_string() << " ethertype-rules:";
72   auto it = m_le.cbegin();
73   while (it != m_le.cend()) {
74     s << it->to_string();
75     ++it;
76   }
77
78   s << " rules-size:" << m_le.size();
79
80   return (s.str());
81 }
82
83 }; // namespace acl_ethertype_cmds
84 }; // namespace ACL
85 }; // namespace VOM
86
87 /*
88  * fd.io coding-style-patch-verification: ON
89  *
90  * Local Variables:
91  * eval: (c-set-style "mozilla")
92  * End:
93  */