fib: fib api updates
[vpp.git] / extras / vom / vom / 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/route_domain_cmds.hpp"
17
18 namespace VOM {
19 namespace route_domain_cmds {
20
21 create_cmd::create_cmd(HW::item<bool>& item,
22                        l3_proto_t proto,
23                        route::table_id_t id)
24   : rpc_cmd(item)
25   , m_id(id)
26   , m_proto(proto)
27 {
28 }
29
30 bool
31 create_cmd::operator==(const create_cmd& other) const
32 {
33   return (m_id == other.m_id);
34 }
35
36 rc_t
37 create_cmd::issue(connection& con)
38 {
39   msg_t req(con.ctx(), std::ref(*this));
40
41   auto& payload = req.get_request().get_payload();
42   payload.table.table_id = m_id;
43   payload.table.is_ip6 = m_proto.is_ipv6();
44   payload.is_add = 1;
45
46   VAPI_CALL(req.execute());
47
48   return (wait());
49 }
50
51 std::string
52 create_cmd::to_string() const
53 {
54   std::ostringstream s;
55   s << "ip-table-create: " << m_hw_item.to_string() << " id:" << m_id
56     << " af:" << m_proto.to_string();
57
58   return (s.str());
59 }
60
61 delete_cmd::delete_cmd(HW::item<bool>& item,
62                        l3_proto_t proto,
63                        route::table_id_t id)
64   : rpc_cmd(item)
65   , m_id(id)
66   , m_proto(proto)
67 {
68 }
69
70 bool
71 delete_cmd::operator==(const delete_cmd& other) const
72 {
73   return (m_id == other.m_id);
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   payload.table.table_id = m_id;
83   payload.table.is_ip6 = m_proto.is_ipv6();
84   payload.is_add = 0;
85
86   VAPI_CALL(req.execute());
87
88   wait();
89   m_hw_item.set(rc_t::NOOP);
90
91   return (rc_t::OK);
92 }
93
94 std::string
95 delete_cmd::to_string() const
96 {
97   std::ostringstream s;
98   s << "ip-table-delete: " << m_hw_item.to_string() << " id:" << m_id
99     << " af:" << m_proto.to_string();
100
101   return (s.str());
102 }
103
104 dump_cmd::dump_cmd()
105 {
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 ("ip-table-dump");
130 }
131
132 } // namespace route_domain_cmds
133 } // namespace VOM
134   /*
135    * fd.io coding-style-patch-verification: ON
136    *
137    * Local Variables:
138    * eval: (c-set-style "mozilla")
139    * End:
140    */