blob: 88d2f377bc71bad3d47d360977974e11de5f88e5 [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,
Neale Ranns25b04942018-04-04 09:34:50 -070026 const mac_address_t& mac,
Neale Rannsbc27d1b2018-02-05 01:13:38 -080027 epg_id_t epg_id)
28 : rpc_cmd(item)
29 , m_itf(itf)
30 , m_ip_addr(ip_addr)
Neale Ranns25b04942018-04-04 09:34:50 -070031 , m_mac(mac)
Neale Rannsbc27d1b2018-02-05 01:13:38 -080032 , m_epg_id(epg_id)
33{
34}
35
36bool
37create_cmd::operator==(const create_cmd& other) const
38{
39 return ((m_itf == other.m_itf) && (m_ip_addr == other.m_ip_addr) &&
Neale Ranns25b04942018-04-04 09:34:50 -070040 (m_mac == other.m_mac) && (m_epg_id == other.m_epg_id));
Neale Rannsbc27d1b2018-02-05 01:13:38 -080041}
42
43rc_t
44create_cmd::issue(connection& con)
45{
46 msg_t req(con.ctx(), std::ref(*this));
47
48 auto& payload = req.get_request().get_payload();
49 payload.is_add = 1;
50 payload.endpoint.sw_if_index = m_itf.value();
51 payload.endpoint.epg_id = m_epg_id;
52 to_bytes(m_ip_addr, &payload.endpoint.is_ip6, payload.endpoint.address);
Neale Ranns25b04942018-04-04 09:34:50 -070053 m_mac.to_bytes(payload.endpoint.mac, 6);
Neale Rannsbc27d1b2018-02-05 01:13:38 -080054
55 VAPI_CALL(req.execute());
56
57 m_hw_item.set(wait());
58
59 return rc_t::OK;
60}
61
62std::string
63create_cmd::to_string() const
64{
65 std::ostringstream s;
66 s << "gbp-endpoint-create: " << m_hw_item.to_string() << " itf:" << m_itf
67 << " ip:" << m_ip_addr.to_string() << " epg-id:" << m_epg_id;
68
69 return (s.str());
70}
71
72delete_cmd::delete_cmd(HW::item<bool>& item,
73 const handle_t& itf,
74 const boost::asio::ip::address& ip_addr)
75 : rpc_cmd(item)
76 , m_itf(itf)
77 , m_ip_addr(ip_addr)
78{
79}
80
81bool
82delete_cmd::operator==(const delete_cmd& other) const
83{
84 return ((m_itf == other.m_itf) && (m_ip_addr == other.m_ip_addr));
85}
86
87rc_t
88delete_cmd::issue(connection& con)
89{
90 msg_t req(con.ctx(), std::ref(*this));
91
92 auto& payload = req.get_request().get_payload();
93 payload.is_add = 0;
94 payload.endpoint.sw_if_index = m_itf.value();
95 payload.endpoint.epg_id = ~0;
96 to_bytes(m_ip_addr, &payload.endpoint.is_ip6, payload.endpoint.address);
97
98 VAPI_CALL(req.execute());
99
100 m_hw_item.set(wait());
101
102 return rc_t::OK;
103}
104
105std::string
106delete_cmd::to_string() const
107{
108 std::ostringstream s;
Mohsin Kazmi0bbe5762018-03-21 15:55:28 +0100109 s << "gbp-endpoint-delete: " << m_hw_item.to_string() << " itf:" << m_itf
Neale Rannsbc27d1b2018-02-05 01:13:38 -0800110 << " ip:" << m_ip_addr.to_string();
111
112 return (s.str());
113}
114
115dump_cmd::dump_cmd()
116{
117}
118
119bool
120dump_cmd::operator==(const dump_cmd& other) const
121{
122 return (true);
123}
124
125rc_t
126dump_cmd::issue(connection& con)
127{
128 m_dump.reset(new msg_t(con.ctx(), std::ref(*this)));
129
130 VAPI_CALL(m_dump->execute());
131
132 wait();
133
134 return rc_t::OK;
135}
136
137std::string
138dump_cmd::to_string() const
139{
140 return ("gbp-endpoint-dump");
141}
142
143}; // namespace gbp_endpoint_cmds
144}; // namespace VOM
145
146/*
147 * fd.io coding-style-patch-verification: ON
148 *
149 * Local Variables:
150 * eval: (c-set-style "mozilla")
151 * End:
152 */