Break up vpe.api
[vpp.git] / src / vpp-api / vom / nat_static_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/nat_static_cmds.hpp"
17
18 DEFINE_VAPI_MSG_IDS_NAT_API_JSON;
19
20 namespace VOM {
21 namespace nat_static_cmds {
22
23 create_44_cmd::create_44_cmd(HW::item<bool>& item,
24                              route::table_id_t id,
25                              const boost::asio::ip::address_v4& inside,
26                              const boost::asio::ip::address_v4& outside)
27   : rpc_cmd(item)
28   , m_id(id)
29   , m_inside(inside)
30   , m_outside(outside)
31 {
32 }
33
34 bool
35 create_44_cmd::operator==(const create_44_cmd& other) const
36 {
37   return ((m_id == other.m_id) && (m_inside == other.m_inside) &&
38           (m_outside == other.m_outside));
39 }
40
41 rc_t
42 create_44_cmd::issue(connection& con)
43 {
44   msg_t req(con.ctx(), std::ref(*this));
45
46   auto& payload = req.get_request().get_payload();
47   payload.is_add = 1;
48   payload.addr_only = 1;
49   payload.local_port = 0;
50   payload.external_port = 0;
51   payload.vrf_id = m_id;
52   payload.external_sw_if_index = ~0;
53   to_bytes(m_inside, payload.local_ip_address);
54   to_bytes(m_outside, payload.external_ip_address);
55
56   VAPI_CALL(req.execute());
57
58   m_hw_item.set(wait());
59
60   return rc_t::OK;
61 }
62
63 std::string
64 create_44_cmd::to_string() const
65 {
66   std::ostringstream s;
67   s << "nat-44-static-create: " << m_hw_item.to_string() << " table:" << m_id
68     << " inside:" << m_inside.to_string()
69     << " outside:" << m_outside.to_string();
70
71   return (s.str());
72 }
73
74 delete_44_cmd::delete_44_cmd(HW::item<bool>& item,
75                              route::table_id_t id,
76                              const boost::asio::ip::address_v4& inside,
77                              const boost::asio::ip::address_v4& outside)
78   : rpc_cmd(item)
79   , m_id(id)
80   , m_inside(inside)
81   , m_outside(outside)
82 {
83 }
84
85 bool
86 delete_44_cmd::operator==(const delete_44_cmd& other) const
87 {
88   return ((m_id == other.m_id) && (m_inside == other.m_inside) &&
89           (m_outside == other.m_outside));
90 }
91
92 rc_t
93 delete_44_cmd::issue(connection& con)
94 {
95   msg_t req(con.ctx(), std::ref(*this));
96
97   auto& payload = req.get_request().get_payload();
98   payload.is_add = 0;
99   payload.addr_only = 1;
100   payload.local_port = 0;
101   payload.external_port = 0;
102   payload.vrf_id = m_id;
103   payload.external_sw_if_index = ~0;
104   to_bytes(m_inside, payload.local_ip_address);
105   to_bytes(m_outside, payload.external_ip_address);
106
107   VAPI_CALL(req.execute());
108
109   wait();
110   m_hw_item.set(rc_t::NOOP);
111
112   return rc_t::OK;
113 }
114
115 std::string
116 delete_44_cmd::to_string() const
117 {
118   std::ostringstream s;
119   s << "nat-44-static-delete: " << m_hw_item.to_string() << " table:" << m_id
120     << " inside:" << m_inside.to_string()
121     << " outside:" << m_outside.to_string();
122
123   return (s.str());
124 }
125
126 dump_44_cmd::dump_44_cmd()
127 {
128 }
129
130 dump_44_cmd::dump_44_cmd(const dump_44_cmd& d)
131 {
132 }
133
134 bool
135 dump_44_cmd::operator==(const dump_44_cmd& other) const
136 {
137   return (true);
138 }
139
140 rc_t
141 dump_44_cmd::issue(connection& con)
142 {
143   m_dump.reset(new msg_t(con.ctx(), std::ref(*this)));
144
145   VAPI_CALL(m_dump->execute());
146
147   wait();
148
149   return rc_t::OK;
150 }
151
152 std::string
153 dump_44_cmd::to_string() const
154 {
155   return ("nat-static-dump");
156 }
157 } // namespace nat_static_cmds
158 } // namespace VOM
159
160 /*
161  * fd.io coding-style-patch-verification: ON
162  *
163  * Local Variables:
164  * eval: (c-set-style "mozilla")
165  * End:
166  */