OLD | NEW |
1 /* | 1 /* |
2 * Copyright 2004 The WebRTC Project Authors. All rights reserved. | 2 * Copyright 2004 The WebRTC Project Authors. All rights reserved. |
3 * | 3 * |
4 * Use of this source code is governed by a BSD-style license | 4 * Use of this source code is governed by a BSD-style license |
5 * that can be found in the LICENSE file in the root of the source | 5 * that can be found in the LICENSE file in the root of the source |
6 * tree. An additional intellectual property rights grant can be found | 6 * tree. An additional intellectual property rights grant can be found |
7 * in the file PATENTS. All contributing project authors may | 7 * in the file PATENTS. All contributing project authors may |
8 * be found in the AUTHORS file in the root of the source tree. | 8 * be found in the AUTHORS file in the root of the source tree. |
9 */ | 9 */ |
10 | 10 |
11 #ifndef WEBRTC_BASE_BYTEORDER_H_ | 11 #ifndef WEBRTC_BASE_BYTEORDER_H_ |
12 #define WEBRTC_BASE_BYTEORDER_H_ | 12 #define WEBRTC_BASE_BYTEORDER_H_ |
13 | 13 |
14 #if defined(WEBRTC_POSIX) && !defined(__native_client__) | 14 #if defined(WEBRTC_POSIX) && !defined(__native_client__) |
15 #include <arpa/inet.h> | 15 #include <arpa/inet.h> |
16 #endif | 16 #endif |
17 | 17 |
| 18 #if defined(WEBRTC_WIN) |
| 19 #include <stdlib.h> |
| 20 #endif |
| 21 |
18 #include "webrtc/base/basictypes.h" | 22 #include "webrtc/base/basictypes.h" |
19 | 23 |
20 #if defined(WEBRTC_MAC) | |
21 #include <libkern/OSByteOrder.h> | |
22 | |
23 #define htobe16(v) OSSwapHostToBigInt16(v) | |
24 #define htobe32(v) OSSwapHostToBigInt32(v) | |
25 #define htobe64(v) OSSwapHostToBigInt64(v) | |
26 #define be16toh(v) OSSwapBigToHostInt16(v) | |
27 #define be32toh(v) OSSwapBigToHostInt32(v) | |
28 #define be64toh(v) OSSwapBigToHostInt64(v) | |
29 | |
30 #define htole16(v) OSSwapHostToLittleInt16(v) | |
31 #define htole32(v) OSSwapHostToLittleInt32(v) | |
32 #define htole64(v) OSSwapHostToLittleInt64(v) | |
33 #define le16toh(v) OSSwapLittleToHostInt16(v) | |
34 #define le32toh(v) OSSwapLittleToHostInt32(v) | |
35 #define le64toh(v) OSSwapLittleToHostInt64(v) | |
36 #elif defined(WEBRTC_POSIX) | |
37 #include <endian.h> | |
38 #elif defined(WEBRTC_WIN) | |
39 #include <stdlib.h> | |
40 #include <winsock2.h> | |
41 | |
42 #define htobe16(v) htons(v) | |
43 #define htobe32(v) htonl(v) | |
44 #define htobe64(v) htonll(v) | |
45 #define be16toh(v) ntohs(v) | |
46 #define be32toh(v) ntohl(v) | |
47 #define be64toh(v) ntohll(v) | |
48 | |
49 #if defined(RTC_ARCH_CPU_LITTLE_ENDIAN) | |
50 #define htole16(v) (v) | |
51 #define htole32(v) (v) | |
52 #define htole64(v) (v) | |
53 #define le16toh(v) (v) | |
54 #define le32toh(v) (v) | |
55 #define le64toh(v) (v) | |
56 #elif defined(RTC_ARCH_CPU_BIG_ENDIAN) | |
57 #define htole16(v) __builtin_bswap16(v) | |
58 #define htole32(v) __builtin_bswap32(v) | |
59 #define htole64(v) __builtin_bswap64(v) | |
60 #define le16toh(v) __builtin_bswap16(v) | |
61 #define le32toh(v) __builtin_bswap32(v) | |
62 #define le64toh(v) __builtin_bswap64(v) | |
63 #else | |
64 #error RTC_ARCH_CPU_BIG_ENDIAN or RTC_ARCH_CPU_LITTLE_ENDIAN must be defined. | |
65 #endif | |
66 | |
67 #endif // defined(WEBRTC_WIN) | |
68 | |
69 namespace rtc { | 24 namespace rtc { |
70 | 25 |
71 // Reading and writing of little and big-endian numbers from memory | 26 // Reading and writing of little and big-endian numbers from memory |
| 27 // TODO: Optimized versions, with direct read/writes of |
| 28 // integers in host-endian format, when the platform supports it. |
72 | 29 |
73 inline void Set8(void* memory, size_t offset, uint8_t v) { | 30 inline void Set8(void* memory, size_t offset, uint8_t v) { |
74 static_cast<uint8_t*>(memory)[offset] = v; | 31 static_cast<uint8_t*>(memory)[offset] = v; |
75 } | 32 } |
76 | 33 |
77 inline uint8_t Get8(const void* memory, size_t offset) { | 34 inline uint8_t Get8(const void* memory, size_t offset) { |
78 return static_cast<const uint8_t*>(memory)[offset]; | 35 return static_cast<const uint8_t*>(memory)[offset]; |
79 } | 36 } |
80 | 37 |
81 inline void SetBE16(void* memory, uint16_t v) { | 38 inline void SetBE16(void* memory, uint16_t v) { |
82 *static_cast<uint16_t*>(memory) = htobe16(v); | 39 Set8(memory, 0, static_cast<uint8_t>(v >> 8)); |
| 40 Set8(memory, 1, static_cast<uint8_t>(v >> 0)); |
83 } | 41 } |
84 | 42 |
85 inline void SetBE32(void* memory, uint32_t v) { | 43 inline void SetBE32(void* memory, uint32_t v) { |
86 *static_cast<uint32_t*>(memory) = htobe32(v); | 44 Set8(memory, 0, static_cast<uint8_t>(v >> 24)); |
| 45 Set8(memory, 1, static_cast<uint8_t>(v >> 16)); |
| 46 Set8(memory, 2, static_cast<uint8_t>(v >> 8)); |
| 47 Set8(memory, 3, static_cast<uint8_t>(v >> 0)); |
87 } | 48 } |
88 | 49 |
89 inline void SetBE64(void* memory, uint64_t v) { | 50 inline void SetBE64(void* memory, uint64_t v) { |
90 *static_cast<uint64_t*>(memory) = htobe64(v); | 51 Set8(memory, 0, static_cast<uint8_t>(v >> 56)); |
| 52 Set8(memory, 1, static_cast<uint8_t>(v >> 48)); |
| 53 Set8(memory, 2, static_cast<uint8_t>(v >> 40)); |
| 54 Set8(memory, 3, static_cast<uint8_t>(v >> 32)); |
| 55 Set8(memory, 4, static_cast<uint8_t>(v >> 24)); |
| 56 Set8(memory, 5, static_cast<uint8_t>(v >> 16)); |
| 57 Set8(memory, 6, static_cast<uint8_t>(v >> 8)); |
| 58 Set8(memory, 7, static_cast<uint8_t>(v >> 0)); |
91 } | 59 } |
92 | 60 |
93 inline uint16_t GetBE16(const void* memory) { | 61 inline uint16_t GetBE16(const void* memory) { |
94 return be16toh(*static_cast<const uint16_t*>(memory)); | 62 return static_cast<uint16_t>((Get8(memory, 0) << 8) | (Get8(memory, 1) << 0)); |
95 } | 63 } |
96 | 64 |
97 inline uint32_t GetBE32(const void* memory) { | 65 inline uint32_t GetBE32(const void* memory) { |
98 return be32toh(*static_cast<const uint32_t*>(memory)); | 66 return (static_cast<uint32_t>(Get8(memory, 0)) << 24) | |
| 67 (static_cast<uint32_t>(Get8(memory, 1)) << 16) | |
| 68 (static_cast<uint32_t>(Get8(memory, 2)) << 8) | |
| 69 (static_cast<uint32_t>(Get8(memory, 3)) << 0); |
99 } | 70 } |
100 | 71 |
101 inline uint64_t GetBE64(const void* memory) { | 72 inline uint64_t GetBE64(const void* memory) { |
102 return be64toh(*static_cast<const uint64_t*>(memory)); | 73 return (static_cast<uint64_t>(Get8(memory, 0)) << 56) | |
| 74 (static_cast<uint64_t>(Get8(memory, 1)) << 48) | |
| 75 (static_cast<uint64_t>(Get8(memory, 2)) << 40) | |
| 76 (static_cast<uint64_t>(Get8(memory, 3)) << 32) | |
| 77 (static_cast<uint64_t>(Get8(memory, 4)) << 24) | |
| 78 (static_cast<uint64_t>(Get8(memory, 5)) << 16) | |
| 79 (static_cast<uint64_t>(Get8(memory, 6)) << 8) | |
| 80 (static_cast<uint64_t>(Get8(memory, 7)) << 0); |
103 } | 81 } |
104 | 82 |
105 inline void SetLE16(void* memory, uint16_t v) { | 83 inline void SetLE16(void* memory, uint16_t v) { |
106 *static_cast<uint16_t*>(memory) = htole16(v); | 84 Set8(memory, 0, static_cast<uint8_t>(v >> 0)); |
| 85 Set8(memory, 1, static_cast<uint8_t>(v >> 8)); |
107 } | 86 } |
108 | 87 |
109 inline void SetLE32(void* memory, uint32_t v) { | 88 inline void SetLE32(void* memory, uint32_t v) { |
110 *static_cast<uint32_t*>(memory) = htole32(v); | 89 Set8(memory, 0, static_cast<uint8_t>(v >> 0)); |
| 90 Set8(memory, 1, static_cast<uint8_t>(v >> 8)); |
| 91 Set8(memory, 2, static_cast<uint8_t>(v >> 16)); |
| 92 Set8(memory, 3, static_cast<uint8_t>(v >> 24)); |
111 } | 93 } |
112 | 94 |
113 inline void SetLE64(void* memory, uint64_t v) { | 95 inline void SetLE64(void* memory, uint64_t v) { |
114 *static_cast<uint64_t*>(memory) = htole64(v); | 96 Set8(memory, 0, static_cast<uint8_t>(v >> 0)); |
| 97 Set8(memory, 1, static_cast<uint8_t>(v >> 8)); |
| 98 Set8(memory, 2, static_cast<uint8_t>(v >> 16)); |
| 99 Set8(memory, 3, static_cast<uint8_t>(v >> 24)); |
| 100 Set8(memory, 4, static_cast<uint8_t>(v >> 32)); |
| 101 Set8(memory, 5, static_cast<uint8_t>(v >> 40)); |
| 102 Set8(memory, 6, static_cast<uint8_t>(v >> 48)); |
| 103 Set8(memory, 7, static_cast<uint8_t>(v >> 56)); |
115 } | 104 } |
116 | 105 |
117 inline uint16_t GetLE16(const void* memory) { | 106 inline uint16_t GetLE16(const void* memory) { |
118 return le16toh(*static_cast<const uint16_t*>(memory)); | 107 return static_cast<uint16_t>((Get8(memory, 0) << 0) | (Get8(memory, 1) << 8)); |
119 } | 108 } |
120 | 109 |
121 inline uint32_t GetLE32(const void* memory) { | 110 inline uint32_t GetLE32(const void* memory) { |
122 return le32toh(*static_cast<const uint32_t*>(memory)); | 111 return (static_cast<uint32_t>(Get8(memory, 0)) << 0) | |
| 112 (static_cast<uint32_t>(Get8(memory, 1)) << 8) | |
| 113 (static_cast<uint32_t>(Get8(memory, 2)) << 16) | |
| 114 (static_cast<uint32_t>(Get8(memory, 3)) << 24); |
123 } | 115 } |
124 | 116 |
125 inline uint64_t GetLE64(const void* memory) { | 117 inline uint64_t GetLE64(const void* memory) { |
126 return le64toh(*static_cast<const uint64_t*>(memory)); | 118 return (static_cast<uint64_t>(Get8(memory, 0)) << 0) | |
| 119 (static_cast<uint64_t>(Get8(memory, 1)) << 8) | |
| 120 (static_cast<uint64_t>(Get8(memory, 2)) << 16) | |
| 121 (static_cast<uint64_t>(Get8(memory, 3)) << 24) | |
| 122 (static_cast<uint64_t>(Get8(memory, 4)) << 32) | |
| 123 (static_cast<uint64_t>(Get8(memory, 5)) << 40) | |
| 124 (static_cast<uint64_t>(Get8(memory, 6)) << 48) | |
| 125 (static_cast<uint64_t>(Get8(memory, 7)) << 56); |
127 } | 126 } |
128 | 127 |
129 // Check if the current host is big endian. | 128 // Check if the current host is big endian. |
130 inline bool IsHostBigEndian() { | 129 inline bool IsHostBigEndian() { |
131 #if defined(RTC_ARCH_CPU_BIG_ENDIAN) | 130 static const int number = 1; |
132 return true; | 131 return 0 == *reinterpret_cast<const char*>(&number); |
133 #else | |
134 return false; | |
135 #endif | |
136 } | 132 } |
137 | 133 |
138 inline uint16_t HostToNetwork16(uint16_t n) { | 134 inline uint16_t HostToNetwork16(uint16_t n) { |
139 return htobe16(n); | 135 uint16_t result; |
| 136 SetBE16(&result, n); |
| 137 return result; |
140 } | 138 } |
141 | 139 |
142 inline uint32_t HostToNetwork32(uint32_t n) { | 140 inline uint32_t HostToNetwork32(uint32_t n) { |
143 return htobe32(n); | 141 uint32_t result; |
| 142 SetBE32(&result, n); |
| 143 return result; |
144 } | 144 } |
145 | 145 |
146 inline uint64_t HostToNetwork64(uint64_t n) { | 146 inline uint64_t HostToNetwork64(uint64_t n) { |
147 return htobe64(n); | 147 uint64_t result; |
| 148 SetBE64(&result, n); |
| 149 return result; |
148 } | 150 } |
149 | 151 |
150 inline uint16_t NetworkToHost16(uint16_t n) { | 152 inline uint16_t NetworkToHost16(uint16_t n) { |
151 return be16toh(n); | 153 return GetBE16(&n); |
152 } | 154 } |
153 | 155 |
154 inline uint32_t NetworkToHost32(uint32_t n) { | 156 inline uint32_t NetworkToHost32(uint32_t n) { |
155 return be32toh(n); | 157 return GetBE32(&n); |
156 } | 158 } |
157 | 159 |
158 inline uint64_t NetworkToHost64(uint64_t n) { | 160 inline uint64_t NetworkToHost64(uint64_t n) { |
159 return be64toh(n); | 161 return GetBE64(&n); |
160 } | 162 } |
161 | 163 |
162 } // namespace rtc | 164 } // namespace rtc |
163 | 165 |
164 #endif // WEBRTC_BASE_BYTEORDER_H_ | 166 #endif // WEBRTC_BASE_BYTEORDER_H_ |
OLD | NEW |