GBP V2
[vpp.git] / src / vpp-api / vom / gbp_subnet_cmds.cpp
1 /*
2  * Copyright (c) 2018 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_subnet_cmds.hpp"
17
18 namespace VOM {
19 namespace gbp_subnet_cmds {
20
21 create_cmd::create_cmd(HW::item<bool>& item,
22                        route::table_id_t rd,
23                        const route::prefix_t& prefix,
24                        bool internal,
25                        const handle_t& itf,
26                        epg_id_t epg_id)
27   : rpc_cmd(item)
28   , m_rd(rd)
29   , m_prefix(prefix)
30   , m_internal(internal)
31   , m_itf(itf)
32   , m_epg_id(epg_id)
33 {
34 }
35
36 bool
37 create_cmd::operator==(const create_cmd& other) const
38 {
39   return ((m_itf == other.m_itf) && (m_rd == other.m_rd) &&
40           (m_prefix == other.m_prefix) && (m_itf == other.m_itf) &&
41           (m_epg_id == other.m_epg_id));
42 }
43
44 rc_t
45 create_cmd::issue(connection& con)
46 {
47   msg_t req(con.ctx(), std::ref(*this));
48
49   auto& payload = req.get_request().get_payload();
50   payload.is_add = 1;
51   payload.subnet.is_internal = m_internal;
52   payload.subnet.table_id = m_rd;
53   payload.subnet.sw_if_index = m_itf.value();
54   payload.subnet.epg_id = m_epg_id;
55   m_prefix.to_vpp(&payload.subnet.is_ip6, payload.subnet.address,
56                   &payload.subnet.address_length);
57
58   VAPI_CALL(req.execute());
59
60   m_hw_item.set(wait());
61
62   return rc_t::OK;
63 }
64
65 std::string
66 create_cmd::to_string() const
67 {
68   std::ostringstream s;
69   s << "gbp-subnet-create: " << m_hw_item.to_string()
70     << "internal:" << m_internal << ", " << m_rd << ":" << m_prefix.to_string()
71     << " itf:" << m_itf << " epg-id:" << m_epg_id;
72
73   return (s.str());
74 }
75
76 delete_cmd::delete_cmd(HW::item<bool>& item,
77                        route::table_id_t rd,
78                        const route::prefix_t& prefix)
79   : rpc_cmd(item)
80   , m_rd(rd)
81   , m_prefix(prefix)
82 {
83 }
84
85 bool
86 delete_cmd::operator==(const delete_cmd& other) const
87 {
88   return ((m_rd == other.m_rd) && (m_prefix == other.m_prefix));
89 }
90
91 rc_t
92 delete_cmd::issue(connection& con)
93 {
94   msg_t req(con.ctx(), std::ref(*this));
95
96   auto& payload = req.get_request().get_payload();
97   payload.is_add = 0;
98   payload.subnet.table_id = m_rd;
99   m_prefix.to_vpp(&payload.subnet.is_ip6, payload.subnet.address,
100                   &payload.subnet.address_length);
101
102   payload.subnet.is_internal = 0;
103   payload.subnet.sw_if_index = ~0;
104   payload.subnet.epg_id = ~0;
105
106   VAPI_CALL(req.execute());
107
108   m_hw_item.set(wait());
109
110   return rc_t::OK;
111 }
112
113 std::string
114 delete_cmd::to_string() const
115 {
116   std::ostringstream s;
117   s << "gbp-subnet-delete: " << m_hw_item.to_string() << ", " << m_rd << ":"
118     << m_prefix.to_string();
119
120   return (s.str());
121 }
122
123 dump_cmd::dump_cmd()
124 {
125 }
126
127 bool
128 dump_cmd::operator==(const dump_cmd& other) const
129 {
130   return (true);
131 }
132
133 rc_t
134 dump_cmd::issue(connection& con)
135 {
136   m_dump.reset(new msg_t(con.ctx(), std::ref(*this)));
137
138   VAPI_CALL(m_dump->execute());
139
140   wait();
141
142   return rc_t::OK;
143 }
144
145 std::string
146 dump_cmd::to_string() const
147 {
148   return ("gbp-subnet-dump");
149 }
150
151 }; // namespace gbp_subnet_cmds
152 }; // namespace VOM
153
154 /*
155  * fd.io coding-style-patch-verification: ON
156  *
157  * Local Variables:
158  * eval: (c-set-style "mozilla")
159  * End:
160  */