bc13a2ecb5ea4910474227c43e30e6d68e9b2ec8
[folly.git] / folly / detail / IPAddress.h
1 /*
2  * Copyright 2017 Facebook, Inc.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *   http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17 #pragma once
18
19 #include <sys/types.h>
20
21 #include <string>
22
23 #include <folly/portability/Sockets.h>
24
25 namespace folly { namespace detail {
26
27 std::string familyNameStrDefault(sa_family_t family);
28
29 inline std::string familyNameStr(sa_family_t family) {
30   switch (family) {
31     case AF_INET:
32       return "AF_INET";
33     case AF_INET6:
34       return "AF_INET6";
35     case AF_UNSPEC:
36       return "AF_UNSPEC";
37     case AF_UNIX:
38       return "AF_UNIX";
39     default:
40       return familyNameStrDefault(family);
41   }
42 }
43
44 [[noreturn]] void getNthMSBitImplThrow(size_t bitCount, sa_family_t family);
45
46 template <typename IPAddrType>
47 inline bool
48 getNthMSBitImpl(const IPAddrType& ip, size_t bitIndex, sa_family_t family) {
49   if (bitIndex >= ip.bitCount()) {
50     getNthMSBitImplThrow(ip.bitCount(), family);
51   }
52   //Underlying bytes are in n/w byte order
53   return (ip.getNthMSByte(bitIndex / 8) & (0x80 >> (bitIndex % 8))) != 0;
54 }
55
56 }}  // folly::detail