Neale Ranns | 812ed39 | 2017-10-16 04:20:13 -0700 | [diff] [blame] | 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 | |
Neale Ranns | 9ef1c0a | 2017-11-03 04:39:05 -0700 | [diff] [blame] | 16 | #include "vom/ip_unnumbered_cmds.hpp" |
Neale Ranns | 812ed39 | 2017-10-16 04:20:13 -0700 | [diff] [blame] | 17 | |
| 18 | #include <vapi/vpe.api.vapi.hpp> |
| 19 | |
| 20 | namespace VOM { |
Neale Ranns | 9ef1c0a | 2017-11-03 04:39:05 -0700 | [diff] [blame] | 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) |
Neale Ranns | 812ed39 | 2017-10-16 04:20:13 -0700 | [diff] [blame] | 26 | : rpc_cmd(item) |
| 27 | , m_itf(itf) |
| 28 | , m_l3_itf(l3_itf) |
| 29 | { |
| 30 | } |
| 31 | |
| 32 | bool |
Neale Ranns | 9ef1c0a | 2017-11-03 04:39:05 -0700 | [diff] [blame] | 33 | config_cmd::operator==(const config_cmd& o) const |
Neale Ranns | 812ed39 | 2017-10-16 04:20:13 -0700 | [diff] [blame] | 34 | { |
| 35 | return ((m_itf == o.m_itf) && (m_l3_itf == o.m_l3_itf)); |
| 36 | } |
| 37 | |
| 38 | rc_t |
Neale Ranns | 9ef1c0a | 2017-11-03 04:39:05 -0700 | [diff] [blame] | 39 | config_cmd::issue(connection& con) |
Neale Ranns | 812ed39 | 2017-10-16 04:20:13 -0700 | [diff] [blame] | 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 | m_hw_item.set(wait()); |
| 51 | |
| 52 | return rc_t::OK; |
| 53 | } |
| 54 | |
| 55 | std::string |
Neale Ranns | 9ef1c0a | 2017-11-03 04:39:05 -0700 | [diff] [blame] | 56 | config_cmd::to_string() const |
Neale Ranns | 812ed39 | 2017-10-16 04:20:13 -0700 | [diff] [blame] | 57 | { |
| 58 | std::ostringstream s; |
| 59 | s << "IP-unnumberd-config: " << m_hw_item.to_string() |
| 60 | << " itf:" << m_itf.to_string() << " l3-itf:" << m_l3_itf.to_string(); |
| 61 | |
| 62 | return (s.str()); |
| 63 | } |
| 64 | |
Neale Ranns | 9ef1c0a | 2017-11-03 04:39:05 -0700 | [diff] [blame] | 65 | unconfig_cmd::unconfig_cmd(HW::item<bool>& item, |
| 66 | const handle_t& itf, |
| 67 | const handle_t& l3_itf) |
Neale Ranns | 812ed39 | 2017-10-16 04:20:13 -0700 | [diff] [blame] | 68 | : rpc_cmd(item) |
| 69 | , m_itf(itf) |
| 70 | , m_l3_itf(l3_itf) |
| 71 | { |
| 72 | } |
| 73 | |
| 74 | bool |
Neale Ranns | 9ef1c0a | 2017-11-03 04:39:05 -0700 | [diff] [blame] | 75 | unconfig_cmd::operator==(const unconfig_cmd& o) const |
Neale Ranns | 812ed39 | 2017-10-16 04:20:13 -0700 | [diff] [blame] | 76 | { |
| 77 | return ((m_itf == o.m_itf) && (m_l3_itf == o.m_l3_itf)); |
| 78 | } |
| 79 | |
| 80 | rc_t |
Neale Ranns | 9ef1c0a | 2017-11-03 04:39:05 -0700 | [diff] [blame] | 81 | unconfig_cmd::issue(connection& con) |
Neale Ranns | 812ed39 | 2017-10-16 04:20:13 -0700 | [diff] [blame] | 82 | { |
| 83 | msg_t req(con.ctx(), std::ref(*this)); |
| 84 | |
| 85 | auto& payload = req.get_request().get_payload(); |
| 86 | payload.is_add = 0; |
| 87 | payload.sw_if_index = m_l3_itf.value(); |
| 88 | payload.unnumbered_sw_if_index = m_itf.value(); |
| 89 | |
| 90 | VAPI_CALL(req.execute()); |
| 91 | |
| 92 | wait(); |
| 93 | m_hw_item.set(rc_t::NOOP); |
| 94 | |
| 95 | return rc_t::OK; |
| 96 | } |
| 97 | |
| 98 | std::string |
Neale Ranns | 9ef1c0a | 2017-11-03 04:39:05 -0700 | [diff] [blame] | 99 | unconfig_cmd::to_string() const |
Neale Ranns | 812ed39 | 2017-10-16 04:20:13 -0700 | [diff] [blame] | 100 | { |
| 101 | std::ostringstream s; |
| 102 | s << "IP-unnumberd-unconfig: " << m_hw_item.to_string() |
| 103 | << " itf:" << m_itf.to_string() << " l3-itf:" << m_l3_itf.to_string(); |
| 104 | |
| 105 | return (s.str()); |
| 106 | } |
Neale Ranns | 9ef1c0a | 2017-11-03 04:39:05 -0700 | [diff] [blame] | 107 | |
| 108 | }; // namespace ip_unnumbered_cmds |
| 109 | }; // namespace VOM |
Neale Ranns | 812ed39 | 2017-10-16 04:20:13 -0700 | [diff] [blame] | 110 | |
| 111 | /* |
| 112 | * fd.io coding-style-patch-verification: ON |
| 113 | * |
| 114 | * Local Variables: |
| 115 | * eval: (c-set-style "mozilla") |
| 116 | * End: |
| 117 | */ |