API: Change ip4_address and ip6_address to use type alias.
[vpp.git] / extras / vom / vom / api_types.cpp
1 /*
2  * Copyright (c) 2018 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/api_types.hpp>
17
18 namespace VOM {
19
20 void
21 to_api(const ip_address_t& a, vapi_type_address& v)
22 {
23   if (a.is_v4()) {
24     v.af = ADDRESS_IP4;
25     memcpy(v.un.ip4, a.to_v4().to_bytes().data(), 4);
26   } else {
27     v.af = ADDRESS_IP6;
28     memcpy(v.un.ip6, a.to_v6().to_bytes().data(), 16);
29   }
30 }
31
32 ip_address_t
33 from_api(const vapi_type_address& v)
34 {
35   boost::asio::ip::address addr;
36
37   if (ADDRESS_IP6 == v.af) {
38     std::array<uint8_t, 16> a;
39     std::copy(v.un.ip6, v.un.ip6 + 16, std::begin(a));
40     boost::asio::ip::address_v6 v6(a);
41     addr = v6;
42   } else {
43     std::array<uint8_t, 4> a;
44     std::copy(v.un.ip6, v.un.ip6 + 4, std::begin(a));
45     boost::asio::ip::address_v4 v4(a);
46     addr = v4;
47   }
48
49   return addr;
50 }
51
52 vapi_type_mac_address
53 to_api(const mac_address_t& a)
54 {
55   vapi_type_mac_address v;
56
57   std::copy(std::begin(a.bytes), std::end(a.bytes), v.bytes);
58
59   return (v);
60 }
61
62 mac_address_t
63 from_api(const vapi_type_mac_address& v)
64 {
65   return mac_address_t(v.bytes);
66 }
67
68 route::prefix_t
69 from_api(const vapi_type_prefix& v)
70 {
71   return route::prefix_t(from_api(v.address), v.address_length);
72 }
73
74 void
75 to_api(const route::prefix_t& p, vapi_type_prefix& v)
76 {
77   to_api(p.address(), v.address);
78   v.address_length = p.mask_width();
79 }
80 };
81
82 /*
83  * fd.io coding-style-patch-verification: ON
84  *
85  * Local Variables:
86  * eval: (c-set-style "mozilla")
87  * End:
88  */