vxlan: vxlan/vxlan.api API cleanup
[vpp.git] / extras / vom / vom / arp_proxy_config_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/arp_proxy_config_cmds.hpp"
17 #include "vom/api_types.hpp"
18
19 DEFINE_VAPI_MSG_IDS_ARP_API_JSON;
20
21 namespace VOM {
22 namespace arp_proxy_config_cmds {
23
24 config_cmd::config_cmd(HW::item<bool>& item,
25                        const boost::asio::ip::address_v4& low,
26                        const boost::asio::ip::address_v4& high)
27   : rpc_cmd(item)
28   , m_low(low)
29   , m_high(high)
30 {}
31
32 bool
33 config_cmd::operator==(const config_cmd& o) const
34 {
35   return ((m_low == o.m_low) && (m_high == o.m_high));
36 }
37
38 rc_t
39 config_cmd::issue(connection& con)
40 {
41   msg_t req(con.ctx(), std::ref(*this));
42
43   auto& payload = req.get_request().get_payload();
44   payload.is_add = 1;
45
46   to_api(m_low, payload.proxy.low);
47   to_api(m_high, payload.proxy.hi);
48
49   VAPI_CALL(req.execute());
50
51   wait();
52
53   return (rc_t::OK);
54 }
55
56 std::string
57 config_cmd::to_string() const
58 {
59   std::ostringstream s;
60   s << "ARP-proxy-config: " << m_hw_item.to_string()
61     << " low:" << m_low.to_string() << " high:" << m_high.to_string();
62
63   return (s.str());
64 }
65
66 unconfig_cmd::unconfig_cmd(HW::item<bool>& item,
67                            const boost::asio::ip::address_v4& low,
68                            const boost::asio::ip::address_v4& high)
69   : rpc_cmd(item)
70   , m_low(low)
71   , m_high(high)
72 {}
73
74 bool
75 unconfig_cmd::operator==(const unconfig_cmd& o) const
76 {
77   return ((m_low == o.m_low) && (m_high == o.m_high));
78 }
79
80 rc_t
81 unconfig_cmd::issue(connection& con)
82 {
83   msg_t req(con.ctx(), std::ref(*this));
84
85   auto& payload = req.get_request().get_payload();
86   payload.is_add = 0;
87
88   to_api(m_low, payload.proxy.low);
89   to_api(m_high, payload.proxy.hi);
90
91   VAPI_CALL(req.execute());
92
93   wait();
94   m_hw_item.set(rc_t::NOOP);
95
96   return (rc_t::OK);
97 }
98
99 std::string
100 unconfig_cmd::to_string() const
101 {
102   std::ostringstream s;
103   s << "ARP-proxy-unconfig: " << m_hw_item.to_string()
104     << " low:" << m_low.to_string() << " high:" << m_high.to_string();
105
106   return (s.str());
107 }
108
109 bool
110 dump_cmd::operator==(const dump_cmd& other) const
111 {
112   return (true);
113 }
114
115 rc_t
116 dump_cmd::issue(connection& con)
117 {
118   m_dump.reset(new msg_t(con.ctx(), std::ref(*this)));
119
120   VAPI_CALL(m_dump->execute());
121
122   wait();
123
124   return rc_t::OK;
125 }
126
127 std::string
128 dump_cmd::to_string() const
129 {
130   return ("ARP-proxy-dump");
131 }
132
133 }; // namesapce cmds
134 }; // namespace VOM
135
136 /*
137  * fd.io coding-style-patch-verification: ON
138  *
139  * Local Variables:
140  * eval: (c-set-style "mozilla")
141  * End:
142  */