blob: 8f9e978c38a09bed89ff56d43ceacd4e757e151f [file] [log] [blame]
Nobuaki Sukegawa6525f6a2016-02-11 13:58:39 +09001/*
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 Zhang55bc35f2025-11-25 13:59:16 -080025#ifdef _WIN32
Jeremiah50819ce2022-02-08 12:46:45 +010026#include <winsock2.h>
Nobuaki Sukegawa6525f6a2016-02-11 13:58:39 +090027#pragma comment(lib, "ws2_32.lib")
Nobuaki Sukegawa6525f6a2016-02-11 13:58:39 +090028#define inline __inline
Shaoyu Zhang55bc35f2025-11-25 13:59:16 -080029#else
30#include <netinet/in.h>
Nobuaki Sukegawa6525f6a2016-02-11 13:58:39 +090031
George Koehler1e17c932023-02-06 18:08:05 -050032static 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 Sukegawa6525f6a2016-02-11 13:58:39 +090046
George Koehler1e17c932023-02-06 18:08:05 -050047#define htonll(n) ntohll(n)
Nobuaki Sukegawa6525f6a2016-02-11 13:58:39 +090048
Shaoyu Zhang55bc35f2025-11-25 13:59:16 -080049#endif // !_WIN32
50
George Koehler1e17c932023-02-06 18:08:05 -050051static 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 Sukegawa6525f6a2016-02-11 13:58:39 +090065
George Koehler1e17c932023-02-06 18:08:05 -050066#define htolell(n) letohll(n)
Nobuaki Sukegawa6525f6a2016-02-11 13:58:39 +090067
68#endif // THRIFT_PY_ENDIAN_H