blob: 4f85b7eff4ec857d42c17b834591e79b0b970c3f [file] [log] [blame]
Neale Rannsbc27d1b2018-02-05 01:13:38 -08001/*
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_endpoint_cmds.hpp"
17
18DEFINE_VAPI_MSG_IDS_GBP_API_JSON;
19
20namespace VOM {
21namespace gbp_endpoint_cmds {
22
23create_cmd::create_cmd(HW::item<bool>& item,
24 const handle_t& itf,
25 const boost::asio::ip::address& ip_addr,
26 epg_id_t epg_id)
27 : rpc_cmd(item)
28 , m_itf(itf)
29 , m_ip_addr(ip_addr)
30 , m_epg_id(epg_id)
31{
32}
33
34bool
35create_cmd::operator==(const create_cmd& other) const
36{
37 return ((m_itf == other.m_itf) && (m_ip_addr == other.m_ip_addr) &&
38 (m_epg_id == other.m_epg_id));
39}
40
41rc_t
42create_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.endpoint.sw_if_index = m_itf.value();
49 payload.endpoint.epg_id = m_epg_id;
50 to_bytes(m_ip_addr, &payload.endpoint.is_ip6, payload.endpoint.address);
51
52 VAPI_CALL(req.execute());
53
54 m_hw_item.set(wait());
55
56 return rc_t::OK;
57}
58
59std::string
60create_cmd::to_string() const
61{
62 std::ostringstream s;
63 s << "gbp-endpoint-create: " << m_hw_item.to_string() << " itf:" << m_itf
64 << " ip:" << m_ip_addr.to_string() << " epg-id:" << m_epg_id;
65
66 return (s.str());
67}
68
69delete_cmd::delete_cmd(HW::item<bool>& item,
70 const handle_t& itf,
71 const boost::asio::ip::address& ip_addr)
72 : rpc_cmd(item)
73 , m_itf(itf)
74 , m_ip_addr(ip_addr)
75{
76}
77
78bool
79delete_cmd::operator==(const delete_cmd& other) const
80{
81 return ((m_itf == other.m_itf) && (m_ip_addr == other.m_ip_addr));
82}
83
84rc_t
85delete_cmd::issue(connection& con)
86{
87 msg_t req(con.ctx(), std::ref(*this));
88
89 auto& payload = req.get_request().get_payload();
90 payload.is_add = 0;
91 payload.endpoint.sw_if_index = m_itf.value();
92 payload.endpoint.epg_id = ~0;
93 to_bytes(m_ip_addr, &payload.endpoint.is_ip6, payload.endpoint.address);
94
95 VAPI_CALL(req.execute());
96
97 m_hw_item.set(wait());
98
99 return rc_t::OK;
100}
101
102std::string
103delete_cmd::to_string() const
104{
105 std::ostringstream s;
Mohsin Kazmi0bbe5762018-03-21 15:55:28 +0100106 s << "gbp-endpoint-delete: " << m_hw_item.to_string() << " itf:" << m_itf
Neale Rannsbc27d1b2018-02-05 01:13:38 -0800107 << " ip:" << m_ip_addr.to_string();
108
109 return (s.str());
110}
111
112dump_cmd::dump_cmd()
113{
114}
115
116bool
117dump_cmd::operator==(const dump_cmd& other) const
118{
119 return (true);
120}
121
122rc_t
123dump_cmd::issue(connection& con)
124{
125 m_dump.reset(new msg_t(con.ctx(), std::ref(*this)));
126
127 VAPI_CALL(m_dump->execute());
128
129 wait();
130
131 return rc_t::OK;
132}
133
134std::string
135dump_cmd::to_string() const
136{
137 return ("gbp-endpoint-dump");
138}
139
140}; // namespace gbp_endpoint_cmds
141}; // namespace VOM
142
143/*
144 * fd.io coding-style-patch-verification: ON
145 *
146 * Local Variables:
147 * eval: (c-set-style "mozilla")
148 * End:
149 */