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