vxlan: vxlan/vxlan.api API cleanup
[vpp.git] / extras / vom / vom / neighbour_cmds.cpp
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 #include "vom/neighbour_cmds.hpp"
17 #include "vom/api_types.hpp"
18
19 DEFINE_VAPI_MSG_IDS_IP_NEIGHBOR_API_JSON;
20
21 namespace VOM {
22 namespace neighbour_cmds {
23 create_cmd::create_cmd(HW::item<handle_t>& item,
24                        handle_t itf,
25                        const mac_address_t& mac,
26                        const boost::asio::ip::address& ip_addr,
27                        const neighbour::flags_t& flags)
28   : srpc_cmd(item)
29   , m_itf(itf)
30   , m_mac(mac)
31   , m_ip_addr(ip_addr)
32   , m_flags(flags)
33 {}
34
35 bool
36 create_cmd::operator==(const create_cmd& other) const
37 {
38   return ((m_mac == other.m_mac) && (m_ip_addr == other.m_ip_addr) &&
39           (m_itf == other.m_itf) && (m_flags == other.m_flags));
40 }
41
42 rc_t
43 create_cmd::issue(connection& con)
44 {
45   msg_t req(con.ctx(), std::ref(*this));
46
47   auto& payload = req.get_request().get_payload();
48   payload.is_add = 1;
49   payload.neighbor.sw_if_index = m_itf.value();
50
51   to_api(m_mac, payload.neighbor.mac_address);
52   to_api(m_ip_addr, payload.neighbor.ip_address);
53   payload.neighbor.flags = to_api(m_flags);
54
55   VAPI_CALL(req.execute());
56
57   return (wait());
58 }
59
60 std::string
61 create_cmd::to_string() const
62 {
63   std::ostringstream s;
64   s << "nieghbour-create: " << m_hw_item.to_string()
65     << " itf:" << m_itf.to_string() << " mac:" << m_mac.to_string()
66     << " ip:" << m_ip_addr.to_string();
67
68   return (s.str());
69 }
70
71 delete_cmd::delete_cmd(HW::item<handle_t>& item,
72                        handle_t itf,
73                        const mac_address_t& mac,
74                        const boost::asio::ip::address& ip_addr,
75                        const neighbour::flags_t& flags)
76   : srpc_cmd(item)
77   , m_itf(itf)
78   , m_mac(mac)
79   , m_ip_addr(ip_addr)
80   , m_flags(flags)
81 {}
82
83 bool
84 delete_cmd::operator==(const delete_cmd& other) const
85 {
86   return ((m_mac == other.m_mac) && (m_ip_addr == other.m_ip_addr) &&
87           (m_itf == other.m_itf));
88 }
89
90 rc_t
91 delete_cmd::issue(connection& con)
92 {
93   msg_t req(con.ctx(), std::ref(*this));
94
95   auto& payload = req.get_request().get_payload();
96   payload.is_add = 0;
97   payload.neighbor.sw_if_index = m_itf.value();
98
99   to_api(m_mac, payload.neighbor.mac_address);
100   to_api(m_ip_addr, payload.neighbor.ip_address);
101   payload.neighbor.flags = to_api(m_flags);
102
103   VAPI_CALL(req.execute());
104
105   wait();
106   m_hw_item.set(rc_t::NOOP);
107
108   return rc_t::OK;
109 }
110
111 std::string
112 delete_cmd::to_string() const
113 {
114   std::ostringstream s;
115   s << "neighbour-delete: " << m_hw_item.to_string()
116     << " itf:" << m_itf.to_string() << " mac:" << m_mac.to_string()
117     << " ip:" << m_ip_addr.to_string();
118
119   return (s.str());
120 }
121
122 dump_cmd::dump_cmd(const handle_t& hdl, const l3_proto_t& proto)
123   : m_itf(hdl)
124   , m_proto(proto)
125 {}
126
127 dump_cmd::dump_cmd(const dump_cmd& d)
128   : m_itf(d.m_itf)
129   , m_proto(d.m_proto)
130 {}
131
132 bool
133 dump_cmd::operator==(const dump_cmd& other) const
134 {
135   return (true);
136 }
137
138 rc_t
139 dump_cmd::issue(connection& con)
140 {
141   m_dump.reset(new msg_t(con.ctx(), std::ref(*this)));
142
143   auto& payload = m_dump->get_request().get_payload();
144   payload.sw_if_index = m_itf.value();
145   payload.af = to_api(m_proto);
146
147   VAPI_CALL(m_dump->execute());
148
149   wait();
150
151   return rc_t::OK;
152 }
153
154 std::string
155 dump_cmd::to_string() const
156 {
157   std::ostringstream s;
158
159   s << "neighbour-dump: " << m_itf.to_string() << " " << m_proto.to_string();
160
161   return (s.str());
162 }
163 } // namespace neighbour_cmds
164 } // namespace vom
165
166 /*
167  * fd.io coding-style-patch-verification: ON
168  *
169  * Local Variables:
170  * eval: (c-set-style "mozilla")
171  * End:
172  */