Neale Ranns | 9ef1c0a | 2017-11-03 04:39:05 -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 | #ifndef __VOM_INTERFACE_FACTORY_H__ |
| 17 | #define __VOM_INTERFACE_FACTORY_H__ |
| 18 | |
| 19 | #include <vapi/vapi.hpp> |
| 20 | |
Mohsin Kazmi | ed76ee2 | 2018-03-02 12:31:37 +0100 | [diff] [blame] | 21 | #include "vom/bond_member.hpp" |
Neale Ranns | 9ef1c0a | 2017-11-03 04:39:05 -0700 | [diff] [blame] | 22 | #include "vom/interface.hpp" |
| 23 | |
Mohsin Kazmi | ed76ee2 | 2018-03-02 12:31:37 +0100 | [diff] [blame] | 24 | #include <vapi/bond.api.vapi.hpp> |
Neale Ranns | 9ef1c0a | 2017-11-03 04:39:05 -0700 | [diff] [blame] | 25 | #include <vapi/interface.api.vapi.hpp> |
Neale Ranns | 4ef4226 | 2018-02-20 08:10:44 -0800 | [diff] [blame] | 26 | #include <vapi/vhost_user.api.vapi.hpp> |
Neale Ranns | 9ef1c0a | 2017-11-03 04:39:05 -0700 | [diff] [blame] | 27 | |
| 28 | namespace VOM { |
| 29 | |
| 30 | class interface_factory |
| 31 | { |
| 32 | public: |
| 33 | /** |
| 34 | * Factory method to construct a new interface from the VPP record |
| 35 | */ |
Neale Ranns | a2ee029 | 2017-11-28 22:29:13 -0800 | [diff] [blame] | 36 | static std::shared_ptr<interface> new_interface( |
Neale Ranns | 9ef1c0a | 2017-11-03 04:39:05 -0700 | [diff] [blame] | 37 | const vapi_payload_sw_interface_details& vd); |
Neale Ranns | 4ef4226 | 2018-02-20 08:10:44 -0800 | [diff] [blame] | 38 | |
| 39 | static std::shared_ptr<interface> new_vhost_user_interface( |
| 40 | const vapi_payload_sw_interface_vhost_user_details& vd); |
Mohsin Kazmi | ed76ee2 | 2018-03-02 12:31:37 +0100 | [diff] [blame] | 41 | |
| 42 | static std::shared_ptr<bond_interface> new_bond_interface( |
| 43 | const vapi_payload_sw_interface_bond_details& vd); |
| 44 | |
| 45 | static bond_member new_bond_member_interface( |
| 46 | const vapi_payload_sw_interface_slave_details& vd); |
Neale Ranns | 9ef1c0a | 2017-11-03 04:39:05 -0700 | [diff] [blame] | 47 | }; |
| 48 | }; |
| 49 | |
| 50 | /* |
| 51 | * fd.io coding-style-patch-verification: ON |
| 52 | * |
| 53 | * Local Variables: |
| 54 | * eval: (c-set-style "mozilla") |
| 55 | * End: |
| 56 | */ |
| 57 | #endif |