GBP: use sclass in the DP for policy
[vpp.git] / extras / vom / vom / gbp_recirc_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_recirc_cmds.hpp"
17
18 namespace VOM {
19 namespace gbp_recirc_cmds {
20
21 create_cmd::create_cmd(HW::item<bool>& item,
22                        const handle_t& itf,
23                        bool is_ext,
24                        sclass_t sclass)
25   : rpc_cmd(item)
26   , m_itf(itf)
27   , m_is_ext(is_ext)
28   , m_sclass(sclass)
29 {
30 }
31
32 bool
33 create_cmd::operator==(const create_cmd& other) const
34 {
35   return ((m_itf == other.m_itf) && (m_is_ext == other.m_is_ext) &&
36           (m_sclass == other.m_sclass));
37 }
38
39 rc_t
40 create_cmd::issue(connection& con)
41 {
42   msg_t req(con.ctx(), std::ref(*this));
43
44   auto& payload = req.get_request().get_payload();
45   payload.is_add = 1;
46   payload.recirc.sw_if_index = m_itf.value();
47   payload.recirc.sclass = m_sclass;
48   payload.recirc.is_ext = m_is_ext;
49
50   VAPI_CALL(req.execute());
51
52   return (wait());
53 }
54
55 std::string
56 create_cmd::to_string() const
57 {
58   std::ostringstream s;
59   s << "gbp-recirc-create: " << m_hw_item.to_string() << " itf:" << m_itf
60     << " ext:" << m_is_ext << " sclass:" << m_sclass;
61
62   return (s.str());
63 }
64
65 delete_cmd::delete_cmd(HW::item<bool>& item, const handle_t& itf)
66   : rpc_cmd(item)
67   , m_itf(itf)
68 {
69 }
70
71 bool
72 delete_cmd::operator==(const delete_cmd& other) const
73 {
74   return (m_itf == other.m_itf);
75 }
76
77 rc_t
78 delete_cmd::issue(connection& con)
79 {
80   msg_t req(con.ctx(), std::ref(*this));
81
82   auto& payload = req.get_request().get_payload();
83   payload.is_add = 0;
84   payload.recirc.sw_if_index = m_itf.value();
85   payload.recirc.sclass = ~0;
86
87   VAPI_CALL(req.execute());
88
89   return (wait());
90 }
91
92 std::string
93 delete_cmd::to_string() const
94 {
95   std::ostringstream s;
96   s << "gbp-recirc-delete: " << m_hw_item.to_string() << " itf:" << m_itf;
97
98   return (s.str());
99 }
100
101 dump_cmd::dump_cmd()
102 {
103 }
104
105 bool
106 dump_cmd::operator==(const dump_cmd& other) const
107 {
108   return (true);
109 }
110
111 rc_t
112 dump_cmd::issue(connection& con)
113 {
114   m_dump.reset(new msg_t(con.ctx(), std::ref(*this)));
115
116   VAPI_CALL(m_dump->execute());
117
118   wait();
119
120   return rc_t::OK;
121 }
122
123 std::string
124 dump_cmd::to_string() const
125 {
126   return ("gbp-recirc-dump");
127 }
128
129 }; // namespace gbp_recirc_cmds
130 }; // namespace VOM
131
132 /*
133  * fd.io coding-style-patch-verification: ON
134  *
135  * Local Variables:
136  * eval: (c-set-style "mozilla")
137  * End:
138  */