vxlan: vxlan/vxlan.api API cleanup
[vpp.git] / extras / vom / vom / gbp_route_domain_cmds.cpp
1 /*
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_route_domain_cmds.hpp"
17
18 namespace VOM {
19 namespace gbp_route_domain_cmds {
20
21 create_cmd::create_cmd(HW::item<uint32_t>& item,
22                        scope_t scope,
23                        const handle_t ip4_uu_fwd,
24                        const handle_t ip6_uu_fwd)
25   : rpc_cmd(item)
26   , m_scope(scope)
27   , m_ip4_uu_fwd(ip4_uu_fwd)
28   , m_ip6_uu_fwd(ip6_uu_fwd)
29 {
30 }
31
32 bool
33 create_cmd::operator==(const create_cmd& other) const
34 {
35   return ((m_hw_item.data() == other.m_hw_item.data()) &&
36           (m_scope == other.m_scope) && (m_ip4_uu_fwd == other.m_ip4_uu_fwd) &&
37           (m_ip6_uu_fwd == other.m_ip6_uu_fwd));
38 }
39
40 rc_t
41 create_cmd::issue(connection& con)
42 {
43   msg_t req(con.ctx(), std::ref(*this));
44
45   auto& payload = req.get_request().get_payload();
46
47   payload.rd.rd_id = m_hw_item.data();
48   payload.rd.scope = m_scope;
49   payload.rd.ip4_table_id = m_hw_item.data();
50   payload.rd.ip6_table_id = m_hw_item.data();
51   payload.rd.ip4_uu_sw_if_index = m_ip4_uu_fwd.value();
52   payload.rd.ip6_uu_sw_if_index = m_ip6_uu_fwd.value();
53
54   VAPI_CALL(req.execute());
55
56   return (wait());
57 }
58
59 std::string
60 create_cmd::to_string() const
61 {
62   std::ostringstream s;
63   s << "gbp-route-domain: " << m_hw_item.to_string() << " scope:" << m_scope
64     << " ip4-uu-fwd:" << m_ip4_uu_fwd.to_string()
65     << " ip6-uu-fwd:" << m_ip6_uu_fwd.to_string();
66
67   return (s.str());
68 }
69
70 delete_cmd::delete_cmd(HW::item<uint32_t>& item)
71   : rpc_cmd(item)
72 {
73 }
74
75 bool
76 delete_cmd::operator==(const delete_cmd& other) const
77 {
78   return (m_hw_item.data() == other.m_hw_item.data());
79 }
80
81 rc_t
82 delete_cmd::issue(connection& con)
83 {
84   msg_t req(con.ctx(), std::ref(*this));
85
86   auto& payload = req.get_request().get_payload();
87
88   payload.rd_id = m_hw_item.data();
89
90   VAPI_CALL(req.execute());
91
92   wait();
93   m_hw_item.set(rc_t::NOOP);
94
95   return rc_t::OK;
96 }
97
98 std::string
99 delete_cmd::to_string() const
100 {
101   std::ostringstream s;
102   s << "gbp-route-domain: " << m_hw_item.to_string();
103
104   return (s.str());
105 }
106
107 bool
108 dump_cmd::operator==(const dump_cmd& other) const
109 {
110   return (true);
111 }
112
113 rc_t
114 dump_cmd::issue(connection& con)
115 {
116   m_dump.reset(new msg_t(con.ctx(), std::ref(*this)));
117
118   VAPI_CALL(m_dump->execute());
119
120   wait();
121
122   return rc_t::OK;
123 }
124
125 std::string
126 dump_cmd::to_string() const
127 {
128   return ("gbp-route-domain-dump");
129 }
130
131 }; // namespace gbp_route_domain_cmds
132 }; // namespace VOM
133
134 /*
135  * fd.io coding-style-patch-verification: ON
136  *
137  * Local Variables:
138  * eval: (c-set-style "mozilla")
139  * End:
140  */