VOM: support for pipes
[vpp.git] / extras / vom / vom / ip_unnumbered_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/ip_unnumbered_cmds.hpp"
17
18 #include <vapi/vpe.api.vapi.hpp>
19
20 namespace VOM {
21 namespace ip_unnumbered_cmds {
22
23 config_cmd::config_cmd(HW::item<bool>& item,
24                        const handle_t& itf,
25                        const handle_t& l3_itf)
26   : rpc_cmd(item)
27   , m_itf(itf)
28   , m_l3_itf(l3_itf)
29 {
30 }
31
32 bool
33 config_cmd::operator==(const config_cmd& o) const
34 {
35   return ((m_itf == o.m_itf) && (m_l3_itf == o.m_l3_itf));
36 }
37
38 rc_t
39 config_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.is_add = 1;
45   payload.sw_if_index = m_l3_itf.value();
46   payload.unnumbered_sw_if_index = m_itf.value();
47
48   VAPI_CALL(req.execute());
49
50   return (wait());
51 }
52
53 std::string
54 config_cmd::to_string() const
55 {
56   std::ostringstream s;
57   s << "IP-unnumberd-config: " << m_hw_item.to_string()
58     << " itf:" << m_itf.to_string() << " l3-itf:" << m_l3_itf.to_string();
59
60   return (s.str());
61 }
62
63 unconfig_cmd::unconfig_cmd(HW::item<bool>& item,
64                            const handle_t& itf,
65                            const handle_t& l3_itf)
66   : rpc_cmd(item)
67   , m_itf(itf)
68   , m_l3_itf(l3_itf)
69 {
70 }
71
72 bool
73 unconfig_cmd::operator==(const unconfig_cmd& o) const
74 {
75   return ((m_itf == o.m_itf) && (m_l3_itf == o.m_l3_itf));
76 }
77
78 rc_t
79 unconfig_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.is_add = 0;
85   payload.sw_if_index = m_l3_itf.value();
86   payload.unnumbered_sw_if_index = m_itf.value();
87
88   VAPI_CALL(req.execute());
89
90   wait();
91   m_hw_item.set(rc_t::NOOP);
92
93   return rc_t::OK;
94 }
95
96 std::string
97 unconfig_cmd::to_string() const
98 {
99   std::ostringstream s;
100   s << "IP-unnumberd-unconfig: " << m_hw_item.to_string()
101     << " itf:" << m_itf.to_string() << " l3-itf:" << m_l3_itf.to_string();
102
103   return (s.str());
104 }
105
106 bool
107 dump_cmd::operator==(const dump_cmd& other) const
108 {
109   return (true);
110 }
111
112 rc_t
113 dump_cmd::issue(connection& con)
114 {
115   m_dump.reset(new msg_t(con.ctx(), std::ref(*this)));
116
117   auto& payload = m_dump->get_request().get_payload();
118   payload.sw_if_index = ~0;
119
120   VAPI_CALL(m_dump->execute());
121
122   wait();
123
124   return rc_t::OK;
125 }
126
127 std::string
128 dump_cmd::to_string() const
129 {
130   return ("ip-unnumbered-dump");
131 }
132
133 }; // namespace ip_unnumbered_cmds
134 }; // namespace VOM
135
136 /*
137  * fd.io coding-style-patch-verification: ON
138  *
139  * Local Variables:
140  * eval: (c-set-style "mozilla")
141  * End:
142  */