Neale Ranns | 55d0378 | 2017-10-21 06:34:22 -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 | |
| 16 | #include "vom/l2_emulation_cmds.hpp" |
| 17 | |
| 18 | DEFINE_VAPI_MSG_IDS_L2E_API_JSON; |
| 19 | |
| 20 | namespace VOM { |
| 21 | namespace l2_emulation_cmds { |
| 22 | enable_cmd::enable_cmd(HW::item<bool>& item, const handle_t& itf) |
| 23 | : rpc_cmd(item) |
| 24 | , m_itf(itf) |
| 25 | { |
| 26 | } |
| 27 | |
| 28 | bool |
| 29 | enable_cmd::operator==(const enable_cmd& other) const |
| 30 | { |
| 31 | return (m_itf == other.m_itf); |
| 32 | } |
| 33 | |
| 34 | rc_t |
| 35 | enable_cmd::issue(connection& con) |
| 36 | { |
| 37 | msg_t req(con.ctx(), std::ref(*this)); |
| 38 | |
| 39 | auto& payload = req.get_request().get_payload(); |
| 40 | payload.sw_if_index = m_itf.value(); |
| 41 | payload.enable = 1; |
| 42 | |
| 43 | VAPI_CALL(req.execute()); |
| 44 | |
| 45 | m_hw_item.set(wait()); |
| 46 | |
| 47 | return (rc_t::OK); |
| 48 | } |
| 49 | |
| 50 | std::string |
| 51 | enable_cmd::to_string() const |
| 52 | { |
| 53 | std::ostringstream s; |
| 54 | s << "L2-emulation: " << m_hw_item.to_string() |
| 55 | << " itf:" << m_itf.to_string(); |
| 56 | |
| 57 | return (s.str()); |
| 58 | } |
| 59 | |
| 60 | disable_cmd::disable_cmd(HW::item<bool>& item, const handle_t& itf) |
| 61 | : rpc_cmd(item) |
| 62 | , m_itf(itf) |
| 63 | { |
| 64 | } |
| 65 | |
| 66 | bool |
| 67 | disable_cmd::operator==(const disable_cmd& other) const |
| 68 | { |
| 69 | return (m_itf == other.m_itf); |
| 70 | } |
| 71 | |
| 72 | rc_t |
| 73 | disable_cmd::issue(connection& con) |
| 74 | { |
| 75 | msg_t req(con.ctx(), std::ref(*this)); |
| 76 | |
| 77 | auto& payload = req.get_request().get_payload(); |
| 78 | payload.sw_if_index = m_itf.value(); |
| 79 | payload.enable = 0; |
| 80 | |
| 81 | VAPI_CALL(req.execute()); |
| 82 | |
| 83 | wait(); |
| 84 | |
| 85 | return (rc_t::OK); |
| 86 | } |
| 87 | |
| 88 | std::string |
| 89 | disable_cmd::to_string() const |
| 90 | { |
| 91 | std::ostringstream s; |
| 92 | s << "L2-emulation: " << m_hw_item.to_string() |
| 93 | << " itf:" << m_itf.to_string(); |
| 94 | |
| 95 | return (s.str()); |
| 96 | } |
| 97 | |
| 98 | }; // namespace l2_emulation_cmds |
| 99 | }; // namespace VOM |
| 100 | |
| 101 | /* |
| 102 | * fd.io coding-style-patch-verification: ON |
| 103 | * |
| 104 | * Local Variables: |
| 105 | * eval: (c-set-style "mozilla") |
| 106 | * End: |
| 107 | */ |