blob: 845497f59896934eef36d5adabb824f0a61135bb [file] [log] [blame]
Neale Ranns812ed392017-10-16 04:20:13 -07001/*
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
Neale Ranns9ef1c0a2017-11-03 04:39:05 -070016#include "vom/route_domain_cmds.hpp"
Neale Ranns812ed392017-10-16 04:20:13 -070017
18namespace VOM {
Neale Ranns9ef1c0a2017-11-03 04:39:05 -070019namespace route_domain_cmds {
Neale Ranns812ed392017-10-16 04:20:13 -070020
Neale Ranns9ef1c0a2017-11-03 04:39:05 -070021create_cmd::create_cmd(HW::item<bool>& item,
22 l3_proto_t proto,
23 route::table_id_t id)
Neale Ranns812ed392017-10-16 04:20:13 -070024 : rpc_cmd(item)
25 , m_id(id)
26 , m_proto(proto)
27{
28}
29
30bool
Neale Ranns9ef1c0a2017-11-03 04:39:05 -070031create_cmd::operator==(const create_cmd& other) const
Neale Ranns812ed392017-10-16 04:20:13 -070032{
33 return (m_id == other.m_id);
34}
35
36rc_t
Neale Ranns9ef1c0a2017-11-03 04:39:05 -070037create_cmd::issue(connection& con)
Neale Ranns812ed392017-10-16 04:20:13 -070038{
39 msg_t req(con.ctx(), std::ref(*this));
40
41 auto& payload = req.get_request().get_payload();
42 payload.table_id = m_id;
43 payload.is_add = 1;
44 payload.is_ipv6 = m_proto.is_ipv6();
45
46 VAPI_CALL(req.execute());
47
48 m_hw_item.set(wait());
49
50 return (rc_t::OK);
51}
52
53std::string
Neale Ranns9ef1c0a2017-11-03 04:39:05 -070054create_cmd::to_string() const
Neale Ranns812ed392017-10-16 04:20:13 -070055{
56 std::ostringstream s;
57 s << "ip-table-create: " << m_hw_item.to_string() << " id:" << m_id
58 << " af:" << m_proto.to_string();
59
60 return (s.str());
61}
62
Neale Ranns9ef1c0a2017-11-03 04:39:05 -070063delete_cmd::delete_cmd(HW::item<bool>& item,
64 l3_proto_t proto,
65 route::table_id_t id)
Neale Ranns812ed392017-10-16 04:20:13 -070066 : rpc_cmd(item)
67 , m_id(id)
68 , m_proto(proto)
69{
70}
71
72bool
Neale Ranns9ef1c0a2017-11-03 04:39:05 -070073delete_cmd::operator==(const delete_cmd& other) const
Neale Ranns812ed392017-10-16 04:20:13 -070074{
75 return (m_id == other.m_id);
76}
77
78rc_t
Neale Ranns9ef1c0a2017-11-03 04:39:05 -070079delete_cmd::issue(connection& con)
Neale Ranns812ed392017-10-16 04:20:13 -070080{
81 msg_t req(con.ctx(), std::ref(*this));
82
83 auto& payload = req.get_request().get_payload();
84 payload.table_id = m_id;
85 payload.is_add = 0;
86 payload.is_ipv6 = m_proto.is_ipv6();
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
96std::string
Neale Ranns9ef1c0a2017-11-03 04:39:05 -070097delete_cmd::to_string() const
Neale Ranns812ed392017-10-16 04:20:13 -070098{
99 std::ostringstream s;
100 s << "ip-table-delete: " << m_hw_item.to_string() << " id:" << m_id
101 << " af:" << m_proto.to_string();
102
103 return (s.str());
104}
Neale Ranns9ef1c0a2017-11-03 04:39:05 -0700105} // namespace route_domain_cmds
106} // namespace VOM
107 /*
108 * fd.io coding-style-patch-verification: ON
109 *
110 * Local Variables:
111 * eval: (c-set-style "mozilla")
112 * End:
113 */