GBP: use sclass in the DP for policy
[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
55   return (GBP_API_SUBNET_STITCHED_INTERNAL);
56 }
57
58 rc_t
59 create_cmd::issue(connection& con)
60 {
61   msg_t req(con.ctx(), std::ref(*this));
62
63   auto& payload = req.get_request().get_payload();
64   payload.is_add = 1;
65   payload.subnet.type = gbp_subnet_type_to_api(m_type);
66   payload.subnet.rd_id = m_rd;
67   payload.subnet.sw_if_index = m_itf.value();
68   payload.subnet.sclass = m_sclass;
69   payload.subnet.prefix = to_api(m_prefix);
70
71   VAPI_CALL(req.execute());
72
73   return (wait());
74 }
75
76 std::string
77 create_cmd::to_string() const
78 {
79   std::ostringstream s;
80   s << "gbp-subnet-create: " << m_hw_item.to_string() << "type:" << m_type
81     << ", " << m_rd << ":" << m_prefix.to_string() << " itf:" << m_itf
82     << " sclass:" << m_sclass;
83
84   return (s.str());
85 }
86
87 delete_cmd::delete_cmd(HW::item<bool>& item,
88                        route::table_id_t rd,
89                        const route::prefix_t& prefix)
90   : rpc_cmd(item)
91   , m_rd(rd)
92   , m_prefix(prefix)
93 {
94 }
95
96 bool
97 delete_cmd::operator==(const delete_cmd& other) const
98 {
99   return ((m_rd == other.m_rd) && (m_prefix == other.m_prefix));
100 }
101
102 rc_t
103 delete_cmd::issue(connection& con)
104 {
105   msg_t req(con.ctx(), std::ref(*this));
106
107   auto& payload = req.get_request().get_payload();
108   payload.is_add = 0;
109   payload.subnet.rd_id = m_rd;
110   payload.subnet.prefix = to_api(m_prefix);
111
112   VAPI_CALL(req.execute());
113
114   return (wait());
115 }
116
117 std::string
118 delete_cmd::to_string() const
119 {
120   std::ostringstream s;
121   s << "gbp-subnet-delete: " << m_hw_item.to_string() << ", " << m_rd << ":"
122     << m_prefix.to_string();
123
124   return (s.str());
125 }
126
127 dump_cmd::dump_cmd()
128 {
129 }
130
131 bool
132 dump_cmd::operator==(const dump_cmd& other) const
133 {
134   return (true);
135 }
136
137 rc_t
138 dump_cmd::issue(connection& con)
139 {
140   m_dump.reset(new msg_t(con.ctx(), std::ref(*this)));
141
142   VAPI_CALL(m_dump->execute());
143
144   wait();
145
146   return rc_t::OK;
147 }
148
149 std::string
150 dump_cmd::to_string() const
151 {
152   return ("gbp-subnet-dump");
153 }
154
155 }; // namespace gbp_subnet_cmds
156 }; // namespace VOM
157
158 /*
159  * fd.io coding-style-patch-verification: ON
160  *
161  * Local Variables:
162  * eval: (c-set-style "mozilla")
163  * End:
164  */