vxlan: vxlan/vxlan.api API cleanup
[vpp.git] / extras / vom / vom / gbp_vxlan_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/gbp_vxlan_cmds.hpp"
17 #include "vom/api_types.hpp"
18
19 namespace VOM {
20 namespace gbp_vxlan_cmds {
21 create_cmd::create_cmd(HW::item<handle_t>& item,
22                        const std::string& name,
23                        const boost::asio::ip::address_v4& src,
24                        uint32_t vni,
25                        bool is_l2,
26                        uint32_t bd_rd)
27   : interface::create_cmd<vapi::Gbp_vxlan_tunnel_add>(item, name)
28   , m_src(src)
29   , m_vni(vni)
30   , m_is_l2(is_l2)
31   , m_bd_rd(bd_rd)
32 {
33 }
34
35 rc_t
36 create_cmd::issue(connection& con)
37 {
38   msg_t req(con.ctx(), std::ref(*this));
39
40   auto& payload = req.get_request().get_payload();
41
42   payload.tunnel.vni = m_vni;
43   payload.tunnel.bd_rd_id = m_bd_rd;
44   if (m_is_l2)
45     payload.tunnel.mode = GBP_VXLAN_TUNNEL_MODE_L2;
46   else
47     payload.tunnel.mode = GBP_VXLAN_TUNNEL_MODE_L3;
48   to_api(m_src, payload.tunnel.src);
49
50   VAPI_CALL(req.execute());
51
52   wait();
53   if (m_hw_item.rc() == rc_t::OK) {
54     insert_interface();
55   }
56
57   return (m_hw_item.rc());
58 }
59
60 std::string
61 create_cmd::to_string() const
62 {
63   std::ostringstream s;
64   s << "gbp-vxlan-create: " << m_hw_item.to_string() << " vni:" << m_vni
65     << " bd/rd:" << m_bd_rd;
66
67   return (s.str());
68 }
69
70 delete_cmd::delete_cmd(HW::item<handle_t>& item, uint32_t vni)
71   : interface::delete_cmd<vapi::Gbp_vxlan_tunnel_del>(item)
72   , m_vni(vni)
73 {
74 }
75
76 rc_t
77 delete_cmd::issue(connection& con)
78 {
79   msg_t req(con.ctx(), std::ref(*this));
80
81   auto& payload = req.get_request().get_payload();
82   payload.vni = m_vni;
83
84   VAPI_CALL(req.execute());
85
86   wait();
87   m_hw_item.set(rc_t::NOOP);
88
89   remove_interface();
90   return rc_t::OK;
91 }
92
93 std::string
94 delete_cmd::to_string() const
95 {
96   std::ostringstream s;
97   s << "gbp-vxlan-delete: " << m_hw_item.to_string() << " vni:" << m_vni;
98
99   return (s.str());
100 }
101
102 dump_cmd::dump_cmd()
103 {
104 }
105
106 bool
107 dump_cmd::operator==(const dump_cmd& other) const
108 {
109   return (true);
110 }
111
112 rc_t
113 dump_cmd::issue(connection& con)
114 {
115   m_dump.reset(new msg_t(con.ctx(), std::ref(*this)));
116
117   VAPI_CALL(m_dump->execute());
118
119   wait();
120
121   return rc_t::OK;
122 }
123
124 std::string
125 dump_cmd::to_string() const
126 {
127   return ("gbp-vxlan-dump");
128 }
129
130 } // namespace gbp_vxlan_cmds
131 } // namespace VOM
132
133 /*
134  * fd.io coding-style-patch-verification: ON
135  *
136  * Local Variables:
137  * eval: (c-set-style "mozilla")
138  * End:
139  */