VOM: vhost-use interfaces
[vpp.git] / src / vpp-api / vom / interface_types.cpp
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/interface.hpp"
17
18 namespace VOM {
19 /*
20  * constants and enums
21  */
22 const interface::type_t interface::type_t::UNKNOWN(0, "unknown");
23 const interface::type_t interface::type_t::BVI(1, "BVI");
24 const interface::type_t interface::type_t::ETHERNET(2, "Ethernet");
25 const interface::type_t interface::type_t::VXLAN(3, "VXLAN");
26 const interface::type_t interface::type_t::AFPACKET(4, "AFPACKET");
27 const interface::type_t interface::type_t::LOOPBACK(5, "LOOPBACK");
28 const interface::type_t interface::type_t::LOCAL(6, "LOCAL");
29 const interface::type_t interface::type_t::TAP(7, "TAP");
30 const interface::type_t interface::type_t::VHOST(8, "VHOST");
31
32 const interface::oper_state_t interface::oper_state_t::DOWN(0, "down");
33 const interface::oper_state_t interface::oper_state_t::UP(1, "up");
34
35 const interface::admin_state_t interface::admin_state_t::DOWN(0, "down");
36 const interface::admin_state_t interface::admin_state_t::UP(1, "up");
37
38 interface::type_t
39 interface::type_t::from_string(const std::string& str)
40 {
41   if ((str.find("Virtual") != std::string::npos) ||
42       (str.find("vhost") != std::string::npos)) {
43     return interface::type_t::VHOST;
44   } else if (str.find("Ethernet") != std::string::npos) {
45     return interface::type_t::ETHERNET;
46   } else if (str.find("vxlan") != std::string::npos) {
47     return interface::type_t::VXLAN;
48   } else if (str.find("loop") != std::string::npos) {
49     return interface::type_t::LOOPBACK;
50   } else if (str.find("host-") != std::string::npos) {
51     return interface::type_t::AFPACKET;
52   } else if (str.find("local") != std::string::npos) {
53     return interface::type_t::LOCAL;
54   } else if (str.find("tap") != std::string::npos) {
55     return interface::type_t::TAP;
56   } else if (str.find("bvi") != std::string::npos) {
57     return interface::type_t::BVI;
58   }
59
60   return interface::type_t::UNKNOWN;
61 }
62
63 interface::type_t::type_t(int v, const std::string& s)
64   : enum_base<interface::type_t>(v, s)
65 {
66 }
67
68 interface::oper_state_t::oper_state_t(int v, const std::string& s)
69   : enum_base<interface::oper_state_t>(v, s)
70 {
71 }
72
73 interface::admin_state_t::admin_state_t(int v, const std::string& s)
74   : enum_base<interface::admin_state_t>(v, s)
75 {
76 }
77
78 interface::admin_state_t
79 interface::admin_state_t::from_int(uint8_t v)
80 {
81   if (0 == v) {
82     return (interface::admin_state_t::DOWN);
83   }
84   return (interface::admin_state_t::UP);
85 }
86
87 interface::oper_state_t
88 interface::oper_state_t::from_int(uint8_t v)
89 {
90   if (0 == v) {
91     return (interface::oper_state_t::DOWN);
92   }
93   return (interface::oper_state_t::UP);
94 }
95 }
96
97 /*
98  * fd.io coding-style-patch-verification: ON
99  *
100  * Local Variables:
101  * eval: (c-set-style "mozilla")
102  * End:
103  */