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