vxlan: vxlan/vxlan.api API cleanup
[vpp.git] / extras / vom / 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 #include "vom/api_types.hpp"
18
19 namespace VOM {
20 namespace gbp_subnet_cmds {
21
22 create_cmd::create_cmd(HW::item<bool>& item,
23                        route::table_id_t rd,
24                        const route::prefix_t& prefix,
25                        const gbp_subnet::type_t& type,
26                        const handle_t& itf,
27                        sclass_t sclass)
28   : rpc_cmd(item)
29   , m_rd(rd)
30   , m_prefix(prefix)
31   , m_type(type)
32   , m_itf(itf)
33   , m_sclass(sclass)
34 {
35 }
36
37 bool
38 create_cmd::operator==(const create_cmd& other) const
39 {
40   return ((m_itf == other.m_itf) && (m_rd == other.m_rd) &&
41           (m_prefix == other.m_prefix) && (m_type == other.m_type) &&
42           (m_itf == other.m_itf) && (m_sclass == other.m_sclass));
43 }
44
45 static vapi_enum_gbp_subnet_type
46 gbp_subnet_type_to_api(const gbp_subnet::type_t& type)
47 {
48   if (gbp_subnet::type_t::STITCHED_INTERNAL == type)
49     return (GBP_API_SUBNET_STITCHED_INTERNAL);
50   if (gbp_subnet::type_t::STITCHED_EXTERNAL == type)
51     return (GBP_API_SUBNET_STITCHED_EXTERNAL);
52   if (gbp_subnet::type_t::TRANSPORT == type)
53     return (GBP_API_SUBNET_TRANSPORT);
54   if (gbp_subnet::type_t::L3_OUT == type)
55     return (GBP_API_SUBNET_L3_OUT);
56
57   return (GBP_API_SUBNET_STITCHED_INTERNAL);
58 }
59
60 rc_t
61 create_cmd::issue(connection& con)
62 {
63   msg_t req(con.ctx(), std::ref(*this));
64
65   auto& payload = req.get_request().get_payload();
66   payload.is_add = 1;
67   payload.subnet.type = gbp_subnet_type_to_api(m_type);
68   payload.subnet.rd_id = m_rd;
69   payload.subnet.sw_if_index = m_itf.value();
70   payload.subnet.sclass = m_sclass;
71   payload.subnet.prefix = to_api(m_prefix);
72
73   VAPI_CALL(req.execute());
74
75   return (wait());
76 }
77
78 std::string
79 create_cmd::to_string() const
80 {
81   std::ostringstream s;
82   s << "gbp-subnet-create: " << m_hw_item.to_string() << "type:" << m_type
83     << ", " << m_rd << ":" << m_prefix.to_string() << " itf:" << m_itf
84     << " sclass:" << m_sclass;
85
86   return (s.str());
87 }
88
89 delete_cmd::delete_cmd(HW::item<bool>& item,
90                        route::table_id_t rd,
91                        const route::prefix_t& prefix)
92   : rpc_cmd(item)
93   , m_rd(rd)
94   , m_prefix(prefix)
95 {
96 }
97
98 bool
99 delete_cmd::operator==(const delete_cmd& other) const
100 {
101   return ((m_rd == other.m_rd) && (m_prefix == other.m_prefix));
102 }
103
104 rc_t
105 delete_cmd::issue(connection& con)
106 {
107   msg_t req(con.ctx(), std::ref(*this));
108
109   auto& payload = req.get_request().get_payload();
110   payload.is_add = 0;
111   payload.subnet.rd_id = m_rd;
112   payload.subnet.prefix = to_api(m_prefix);
113
114   VAPI_CALL(req.execute());
115
116   return (wait());
117 }
118
119 std::string
120 delete_cmd::to_string() const
121 {
122   std::ostringstream s;
123   s << "gbp-subnet-delete: " << m_hw_item.to_string() << ", " << m_rd << ":"
124     << m_prefix.to_string();
125
126   return (s.str());
127 }
128
129 dump_cmd::dump_cmd()
130 {
131 }
132
133 bool
134 dump_cmd::operator==(const dump_cmd& other) const
135 {
136   return (true);
137 }
138
139 rc_t
140 dump_cmd::issue(connection& con)
141 {
142   m_dump.reset(new msg_t(con.ctx(), std::ref(*this)));
143
144   VAPI_CALL(m_dump->execute());
145
146   wait();
147
148   return rc_t::OK;
149 }
150
151 std::string
152 dump_cmd::to_string() const
153 {
154   return ("gbp-subnet-dump");
155 }
156
157 }; // namespace gbp_subnet_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  */