vxlan: vxlan/vxlan.api API cleanup
[vpp.git] / extras / vom / vom / qos_record_cmds.cpp
1 /*
2  * Copyright (c) 2019 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/qos_record_cmds.hpp"
17 #include "vom/qos_types_api.hpp"
18
19 namespace VOM {
20 namespace QoS {
21 namespace record_cmds {
22
23 create_cmd::create_cmd(HW::item<bool>& item,
24                        const handle_t& itf,
25                        const source_t& s)
26   : rpc_cmd(item)
27   , m_itf(itf)
28   , m_src(s)
29 {
30 }
31
32 bool
33 create_cmd::operator==(const create_cmd& other) const
34 {
35   return ((m_itf == other.m_itf) && (m_src == other.m_src));
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   payload.record.sw_if_index = m_itf.value();
45   payload.record.input_source = to_api(m_src);
46
47   VAPI_CALL(req.execute());
48
49   return (wait());
50 }
51
52 std::string
53 create_cmd::to_string() const
54 {
55   std::ostringstream s;
56   s << "qos-record-create: " << m_hw_item.to_string() << " itf:" << m_itf
57     << " src:" << m_src.to_string();
58
59   return (s.str());
60 }
61
62 delete_cmd::delete_cmd(HW::item<bool>& item,
63                        const handle_t& itf,
64                        const source_t& s)
65   : rpc_cmd(item)
66   , m_itf(itf)
67   , m_src(s)
68 {
69 }
70
71 bool
72 delete_cmd::operator==(const delete_cmd& other) const
73 {
74   return (m_hw_item == other.m_hw_item && m_itf == other.m_itf &&
75           m_src == other.m_src);
76 }
77
78 rc_t
79 delete_cmd::issue(connection& con)
80 {
81   msg_t req(con.ctx(), std::ref(*this));
82
83   auto& payload = req.get_request().get_payload();
84   payload.record.sw_if_index = m_itf.value();
85   payload.record.input_source = to_api(m_src);
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 << "qos-record-delete: " << m_hw_item.to_string();
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 ("qos-record-dump");
127 }
128
129 }; // namespace record_cmds
130 }; // namespace QoS
131 }; // namespace VOM
132
133 /*
134  * fd.io coding-style-patch-verification: ON
135  *
136  * Local Variables:
137  * eval: (c-set-style "mozilla")
138  * End:
139  */