f99092451feef60500e587607d9dd84b9f7a7b19
[vpp.git] / extras / vom / vom / gbp_contract_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_contract_cmds.hpp"
17
18 namespace VOM {
19 namespace gbp_contract_cmds {
20
21 create_cmd::create_cmd(HW::item<bool>& item,
22                        epg_id_t src_epg_id,
23                        epg_id_t dst_epg_id,
24                        const handle_t& acl)
25   : rpc_cmd(item)
26   , m_src_epg_id(src_epg_id)
27   , m_dst_epg_id(dst_epg_id)
28   , m_acl(acl)
29 {
30 }
31
32 bool
33 create_cmd::operator==(const create_cmd& other) const
34 {
35   return ((m_acl == other.m_acl) && (m_src_epg_id == other.m_src_epg_id) &&
36           (m_dst_epg_id == other.m_dst_epg_id));
37 }
38
39 rc_t
40 create_cmd::issue(connection& con)
41 {
42   msg_t req(con.ctx(), 1, std::ref(*this));
43
44   auto& payload = req.get_request().get_payload();
45   payload.is_add = 1;
46   payload.contract.acl_index = m_acl.value();
47   payload.contract.src_epg = m_src_epg_id;
48   payload.contract.dst_epg = m_dst_epg_id;
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-contract-create: " << m_hw_item.to_string()
60     << " src-epg-id:" << m_src_epg_id << " dst-epg-id:" << m_dst_epg_id
61     << " acl:" << m_acl;
62
63   return (s.str());
64 }
65
66 delete_cmd::delete_cmd(HW::item<bool>& item,
67                        epg_id_t src_epg_id,
68                        epg_id_t dst_epg_id)
69   : rpc_cmd(item)
70   , m_src_epg_id(src_epg_id)
71   , m_dst_epg_id(dst_epg_id)
72 {
73 }
74
75 bool
76 delete_cmd::operator==(const delete_cmd& other) const
77 {
78   return ((m_src_epg_id == other.m_src_epg_id) &&
79           (m_dst_epg_id == other.m_dst_epg_id));
80 }
81
82 rc_t
83 delete_cmd::issue(connection& con)
84 {
85   msg_t req(con.ctx(), 1, std::ref(*this));
86
87   auto& payload = req.get_request().get_payload();
88   payload.is_add = 0;
89   payload.contract.acl_index = ~0;
90   payload.contract.src_epg = m_src_epg_id;
91   payload.contract.dst_epg = m_dst_epg_id;
92
93   VAPI_CALL(req.execute());
94
95   return (wait());
96 }
97
98 std::string
99 delete_cmd::to_string() const
100 {
101   std::ostringstream s;
102   s << "gbp-contract-delete: " << m_hw_item.to_string()
103     << " src-epg-id:" << m_src_epg_id << " dst-epg-id:" << m_dst_epg_id;
104
105   return (s.str());
106 }
107
108 bool
109 dump_cmd::operator==(const dump_cmd& other) const
110 {
111   return (true);
112 }
113
114 rc_t
115 dump_cmd::issue(connection& con)
116 {
117   m_dump.reset(new msg_t(con.ctx(), std::ref(*this)));
118
119   VAPI_CALL(m_dump->execute());
120
121   wait();
122
123   return rc_t::OK;
124 }
125
126 std::string
127 dump_cmd::to_string() const
128 {
129   return ("gbp-contract-dump");
130 }
131
132 }; // namespace gbp_contract_cmds
133 }; // namespace VOM
134
135 /*
136  * fd.io coding-style-patch-verification: ON
137  *
138  * Local Variables:
139  * eval: (c-set-style "mozilla")
140  * End:
141  */