forked from mysql/mysql-server
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmy_byteorder.h
326 lines (255 loc) · 8.65 KB
/
my_byteorder.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
#ifndef MY_BYTEORDER_INCLUDED
#define MY_BYTEORDER_INCLUDED
/* Copyright (c) 2001, 2021, Oracle and/or its affiliates.
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License, version 2.0,
as published by the Free Software Foundation.
This program is also distributed with certain software (including
but not limited to OpenSSL) that is licensed under separate terms,
as designated in a particular file or component or in included license
documentation. The authors of MySQL hereby grant you an additional
permission to link the program and your derivative works with the
separately licensed software that they have included with MySQL.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License, version 2.0, for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */
/**
@file include/my_byteorder.h
Functions for reading and storing in machine-independent format.
The little-endian variants are 'korr' (assume 'corrector') variants
for integer types, but 'get' (assume 'getter') for floating point types.
*/
#include "my_config.h"
#include "my_compiler.h"
#include <string.h>
#include <sys/types.h>
#ifdef HAVE_ARPA_INET_H
#include <arpa/inet.h>
#endif
#if defined(_MSC_VER)
#include <stdlib.h>
#endif
#if defined(_WIN32) && defined(WIN32_LEAN_AND_MEAN)
#include <winsock2.h>
#endif
#ifdef WORDS_BIGENDIAN
#include "big_endian.h" // IWYU pragma: export
#else
#include "little_endian.h" // IWYU pragma: export
#endif
#include "my_inttypes.h"
#ifdef __cplusplus
#include "template_utils.h"
#endif
static inline int32 sint3korr(const uchar *A) {
return ((int32)(((A[2]) & 128)
? (((uint32)255L << 24) | (((uint32)A[2]) << 16) |
(((uint32)A[1]) << 8) | ((uint32)A[0]))
: (((uint32)A[2]) << 16) | (((uint32)A[1]) << 8) |
((uint32)A[0])));
}
static inline uint32 uint3korr(const uchar *A) {
return (uint32)(((uint32)(A[0])) + (((uint32)(A[1])) << 8) +
(((uint32)(A[2])) << 16));
}
static inline ulonglong uint5korr(const uchar *A) {
return ((ulonglong)(((uint32)(A[0])) + (((uint32)(A[1])) << 8) +
(((uint32)(A[2])) << 16) + (((uint32)(A[3])) << 24)) +
(((ulonglong)(A[4])) << 32));
}
static inline ulonglong uint6korr(const uchar *A) {
return ((ulonglong)(((uint32)(A[0])) + (((uint32)(A[1])) << 8) +
(((uint32)(A[2])) << 16) + (((uint32)(A[3])) << 24)) +
(((ulonglong)(A[4])) << 32) + (((ulonglong)(A[5])) << 40));
}
/**
int3store
Stores an unsinged integer in a platform independent way
@param T The destination buffer. Must be at least 3 bytes long
@param A The integer to store.
_Example:_
A @ref a_protocol_type_int3 "int \<3\>" with the value 1 is stored as:
~~~~~~~~~~~~~~~~~~~~~
01 00 00
~~~~~~~~~~~~~~~~~~~~~
*/
static inline void int3store(uchar *T, uint A) {
*(T) = (uchar)(A);
*(T + 1) = (uchar)(A >> 8);
*(T + 2) = (uchar)(A >> 16);
}
static inline void int5store(uchar *T, ulonglong A) {
*(T) = (uchar)(A);
*(T + 1) = (uchar)(A >> 8);
*(T + 2) = (uchar)(A >> 16);
*(T + 3) = (uchar)(A >> 24);
*(T + 4) = (uchar)(A >> 32);
}
static inline void int6store(uchar *T, ulonglong A) {
*(T) = (uchar)(A);
*(T + 1) = (uchar)(A >> 8);
*(T + 2) = (uchar)(A >> 16);
*(T + 3) = (uchar)(A >> 24);
*(T + 4) = (uchar)(A >> 32);
*(T + 5) = (uchar)(A >> 40);
}
#ifdef __cplusplus
inline int16 sint2korr(const char *pT) {
return sint2korr(static_cast<const uchar *>(static_cast<const void *>(pT)));
}
inline uint16 uint2korr(const char *pT) {
return uint2korr(static_cast<const uchar *>(static_cast<const void *>(pT)));
}
inline uint32 uint3korr(const char *pT) {
return uint3korr(static_cast<const uchar *>(static_cast<const void *>(pT)));
}
inline int32 sint3korr(const char *pT) {
return sint3korr(static_cast<const uchar *>(static_cast<const void *>(pT)));
}
inline uint32 uint4korr(const char *pT) {
return uint4korr(static_cast<const uchar *>(static_cast<const void *>(pT)));
}
inline int32 sint4korr(const char *pT) {
return sint4korr(static_cast<const uchar *>(static_cast<const void *>(pT)));
}
inline ulonglong uint6korr(const char *pT) {
return uint6korr(static_cast<const uchar *>(static_cast<const void *>(pT)));
}
inline ulonglong uint8korr(const char *pT) {
return uint8korr(static_cast<const uchar *>(static_cast<const void *>(pT)));
}
inline longlong sint8korr(const char *pT) {
return sint8korr(static_cast<const uchar *>(static_cast<const void *>(pT)));
}
inline void int2store(char *pT, uint16 A) {
int2store(static_cast<uchar *>(static_cast<void *>(pT)), A);
}
inline void int3store(char *pT, uint A) {
int3store(static_cast<uchar *>(static_cast<void *>(pT)), A);
}
inline void int4store(char *pT, uint32 A) {
int4store(static_cast<uchar *>(static_cast<void *>(pT)), A);
}
inline void int5store(char *pT, ulonglong A) {
int5store(static_cast<uchar *>(static_cast<void *>(pT)), A);
}
inline void int6store(char *pT, ulonglong A) {
int6store(static_cast<uchar *>(static_cast<void *>(pT)), A);
}
inline void int8store(char *pT, ulonglong A) {
int8store(static_cast<uchar *>(static_cast<void *>(pT)), A);
}
/*
Functions for reading and storing in machine format from/to
short/long to/from some place in memory V should be a variable
and M a pointer to byte.
*/
inline void float4store(char *V, float M) {
float4store(static_cast<uchar *>(static_cast<void *>(V)), M);
}
inline double float8get(const char *M) {
return float8get(static_cast<const uchar *>(static_cast<const void *>(M)));
}
inline void float8store(char *V, double M) {
float8store(static_cast<uchar *>(static_cast<void *>(V)), M);
}
/*
Functions that have the same behavior on little- and big-endian.
*/
inline float floatget(const uchar *ptr) {
float val;
memcpy(&val, ptr, sizeof(val));
return val;
}
inline void floatstore(uchar *ptr, float val) {
memcpy(ptr, &val, sizeof(val));
}
inline double doubleget(const uchar *ptr) {
double val;
memcpy(&val, ptr, sizeof(val));
return val;
}
inline void doublestore(uchar *ptr, double val) {
memcpy(ptr, &val, sizeof(val));
}
inline uint16 ushortget(const uchar *ptr) {
uint16 val;
memcpy(&val, ptr, sizeof(val));
return val;
}
inline int16 shortget(const uchar *ptr) {
int16 val;
memcpy(&val, ptr, sizeof(val));
return val;
}
inline void shortstore(uchar *ptr, int16 val) {
memcpy(ptr, &val, sizeof(val));
}
inline int32 longget(const uchar *ptr) {
int32 val;
memcpy(&val, ptr, sizeof(val));
return val;
}
inline void longstore(uchar *ptr, int32 val) { memcpy(ptr, &val, sizeof(val)); }
inline uint32 ulongget(const uchar *ptr) {
uint32 val;
memcpy(&val, ptr, sizeof(val));
return val;
}
inline longlong longlongget(const uchar *ptr) {
longlong val;
memcpy(&val, ptr, sizeof(val));
return val;
}
inline void longlongstore(uchar *ptr, longlong val) {
memcpy(ptr, &val, sizeof(val));
}
/*
Functions for big-endian loads and stores. These are safe to use
no matter what the compiler, CPU or alignment, and also with -fstrict-aliasing.
The stores return a pointer just past the value that was written.
*/
inline uint16 load16be(const char *ptr) {
uint16 val;
memcpy(&val, ptr, sizeof(val));
return ntohs(val);
}
inline uint32 load32be(const char *ptr) {
uint32 val;
memcpy(&val, ptr, sizeof(val));
return ntohl(val);
}
ALWAYS_INLINE char *store16be(char *ptr, uint16 val) {
#if defined(_MSC_VER)
// _byteswap_ushort is an intrinsic on MSVC, but htons is not.
val = _byteswap_ushort(val);
#else
val = htons(val);
#endif
memcpy(ptr, &val, sizeof(val));
return ptr + sizeof(val);
}
inline char *store32be(char *ptr, uint32 val) {
val = htonl(val);
memcpy(ptr, &val, sizeof(val));
return ptr + sizeof(val);
}
// Adapters for using uchar * instead of char *.
inline uint16 load16be(const uchar *ptr) {
return load16be(pointer_cast<const char *>(ptr));
}
inline uint32 load32be(const uchar *ptr) {
return load32be(pointer_cast<const char *>(ptr));
}
ALWAYS_INLINE uchar *store16be(uchar *ptr, uint16 val) {
return pointer_cast<uchar *>(store16be(pointer_cast<char *>(ptr), val));
}
inline uchar *store32be(uchar *ptr, uint32 val) {
return pointer_cast<uchar *>(store32be(pointer_cast<char *>(ptr), val));
}
#endif /* __cplusplus */
#endif /* MY_BYTEORDER_INCLUDED */