| Nobuaki Sukegawa | 6525f6a | 2016-02-11 13:58:39 +0900 | [diff] [blame] | 1 | /* |
| 2 | * Licensed to the Apache Software Foundation (ASF) under one |
| 3 | * or more contributor license agreements. See the NOTICE file |
| 4 | * distributed with this work for additional information |
| 5 | * regarding copyright ownership. The ASF licenses this file |
| 6 | * to you under the Apache License, Version 2.0 (the |
| 7 | * "License"); you may not use this file except in compliance |
| 8 | * with the License. You may obtain a copy of the License at |
| 9 | * |
| 10 | * http://www.apache.org/licenses/LICENSE-2.0 |
| 11 | * |
| 12 | * Unless required by applicable law or agreed to in writing, |
| 13 | * software distributed under the License is distributed on an |
| 14 | * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY |
| 15 | * KIND, either express or implied. See the License for the |
| 16 | * specific language governing permissions and limitations |
| 17 | * under the License. |
| 18 | */ |
| 19 | |
| 20 | #ifndef THRIFT_PY_ENDIAN_H |
| 21 | #define THRIFT_PY_ENDIAN_H |
| 22 | |
| 23 | #include <Python.h> |
| 24 | |
| Shaoyu Zhang | 55bc35f | 2025-11-25 13:59:16 -0800 | [diff] [blame] | 25 | #ifdef _WIN32 |
| Jeremiah | 50819ce | 2022-02-08 12:46:45 +0100 | [diff] [blame] | 26 | #include <winsock2.h> |
| Nobuaki Sukegawa | 6525f6a | 2016-02-11 13:58:39 +0900 | [diff] [blame] | 27 | #pragma comment(lib, "ws2_32.lib") |
| Nobuaki Sukegawa | 6525f6a | 2016-02-11 13:58:39 +0900 | [diff] [blame] | 28 | #define inline __inline |
| Shaoyu Zhang | 55bc35f | 2025-11-25 13:59:16 -0800 | [diff] [blame] | 29 | #else |
| 30 | #include <netinet/in.h> |
| Nobuaki Sukegawa | 6525f6a | 2016-02-11 13:58:39 +0900 | [diff] [blame] | 31 | |
| George Koehler | 1e17c93 | 2023-02-06 18:08:05 -0500 | [diff] [blame] | 32 | static inline unsigned long long ntohll(unsigned long long n) { |
| 33 | union { |
| 34 | unsigned long long f; |
| 35 | unsigned char t[8]; |
| 36 | } u; |
| 37 | u.f = n; |
| 38 | return static_cast<unsigned long long>(u.t[0]) << 56 |
| 39 | | static_cast<unsigned long long>(u.t[1]) << 48 |
| 40 | | static_cast<unsigned long long>(u.t[2]) << 40 |
| 41 | | static_cast<unsigned long long>(u.t[3]) << 32 |
| 42 | | static_cast<unsigned long long>(u.t[4]) << 24 |
| 43 | | static_cast<unsigned long long>(u.t[5]) << 16 |
| 44 | | static_cast<unsigned long long>(u.t[6]) << 8 | static_cast<unsigned long long>(u.t[7]); |
| 45 | } |
| Nobuaki Sukegawa | 6525f6a | 2016-02-11 13:58:39 +0900 | [diff] [blame] | 46 | |
| George Koehler | 1e17c93 | 2023-02-06 18:08:05 -0500 | [diff] [blame] | 47 | #define htonll(n) ntohll(n) |
| Nobuaki Sukegawa | 6525f6a | 2016-02-11 13:58:39 +0900 | [diff] [blame] | 48 | |
| Shaoyu Zhang | 55bc35f | 2025-11-25 13:59:16 -0800 | [diff] [blame] | 49 | #endif // !_WIN32 |
| 50 | |
| George Koehler | 1e17c93 | 2023-02-06 18:08:05 -0500 | [diff] [blame] | 51 | static inline unsigned long long letohll(unsigned long long n) { |
| 52 | union { |
| 53 | unsigned long long f; |
| 54 | unsigned char t[8]; |
| 55 | } u; |
| 56 | u.f = n; |
| 57 | return static_cast<unsigned long long>(u.t[0]) | static_cast<unsigned long long>(u.t[1]) << 8 |
| 58 | | static_cast<unsigned long long>(u.t[2]) << 16 |
| 59 | | static_cast<unsigned long long>(u.t[3]) << 24 |
| 60 | | static_cast<unsigned long long>(u.t[4]) << 32 |
| 61 | | static_cast<unsigned long long>(u.t[5]) << 40 |
| 62 | | static_cast<unsigned long long>(u.t[6]) << 48 |
| 63 | | static_cast<unsigned long long>(u.t[7]) << 56; |
| 64 | } |
| Nobuaki Sukegawa | 6525f6a | 2016-02-11 13:58:39 +0900 | [diff] [blame] | 65 | |
| George Koehler | 1e17c93 | 2023-02-06 18:08:05 -0500 | [diff] [blame] | 66 | #define htolell(n) letohll(n) |
| Nobuaki Sukegawa | 6525f6a | 2016-02-11 13:58:39 +0900 | [diff] [blame] | 67 | |
| 68 | #endif // THRIFT_PY_ENDIAN_H |