VOM: deprecate TAP add ip-punt redirect dump
[vpp.git] / extras / vom / vom / interface_factory.hpp
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
21 #include "vom/bond_interface.hpp"
22 #include "vom/bond_member.hpp"
23 #include "vom/interface.hpp"
24 #include "vom/pipe.hpp"
25 #include "vom/tap_interface.hpp"
26
27 #include <vapi/af_packet.api.vapi.hpp>
28 #include <vapi/bond.api.vapi.hpp>
29 #include <vapi/interface.api.vapi.hpp>
30 #include <vapi/pipe.api.vapi.hpp>
31 #include <vapi/tap.api.vapi.hpp>
32 #include <vapi/tapv2.api.vapi.hpp>
33 #include <vapi/vhost_user.api.vapi.hpp>
34
35 namespace VOM {
36
37 class interface_factory
38 {
39 public:
40   /**
41    * Factory method to construct a new interface from the VPP record
42    */
43   static std::shared_ptr<interface> new_interface(
44     const vapi_payload_sw_interface_details& vd);
45
46   static std::shared_ptr<interface> new_vhost_user_interface(
47     const vapi_payload_sw_interface_vhost_user_details& vd);
48
49   static std::shared_ptr<interface> new_af_packet_interface(
50     const vapi_payload_af_packet_details& vd);
51
52   static std::shared_ptr<tap_interface> new_tap_interface(
53     const vapi_payload_sw_interface_tap_v2_details& vd);
54
55   static std::shared_ptr<bond_interface> new_bond_interface(
56     const vapi_payload_sw_interface_bond_details& vd);
57
58   static bond_member new_bond_member_interface(
59     const vapi_payload_sw_interface_slave_details& vd);
60
61   static std::shared_ptr<pipe> new_pipe_interface(
62     const vapi_payload_pipe_details& payload);
63 };
64 };
65
66 /*
67  * fd.io coding-style-patch-verification: ON
68  *
69  * Local Variables:
70  * eval: (c-set-style "mozilla")
71  * End:
72  */
73 #endif