gnulliver.c 15.1 KB
Newer Older
Zhang Xin's avatar
Zhang Xin committed
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
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
//! @file
//! Source code for the gnulliver library.
//!

//   gnulliver.c - Travels the middle of the road to swiftly gnullify
//                 the Big-endian / Little-endian controversy.
//                 Only works on machines with IEEE floating point.

// Copyright (C) 1994-2004 Paul Hardy
// Copyright (C) 2011 Alan W. Irwin
//
// This file is part of the timeephem software project.
//
// timeephem is free software; you can redistribute it and/or modify
// it under the terms of the GNU Library General Public License as published
// by the Free Software Foundation; version 2 of the License.
//
// timeephem 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 Library General Public License for more details.
//
// You should have received a copy of the GNU Library General Public License
// along with timeephem; if not, write to the Free Software
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301  USA

//   Swaps values between host order and network order without calls
//   to htonl(), etc.  This is a symmetric conversion, so the same
//   function works in both directions.  For example, to convert an
//   integer between host byte ordering and network byte ordering (in
//   either direction), use
//
//         int i, j;
//         j = gnulliver32(i);
//
//   then use j in an equation (if you just read i from the net), or
//   write j to the net (if i is an integer on your machine).
//
//   The gnulliver routines work by setting a double to a certain value,
//   then examining a unioned byte array.
//
//   The functions are:
//
//      char gnulliver() - determine (or recalculate) endianness of host:
//         GNULLIVER_BIG, GNULLIVER_LITTLE, or GNULLIVER_DEC, or whether to
//         just do no swapping at all (GNULLIVER_NATIVE) to read and
//         write native endian result.
//      unsigned short       gnulliver16(unsigned short input)
//      unsigned             gnulliver32(unsigned input)
//      unsigned long        gnulliver64(unsigned long input)
//      unsigned long long   gnulliver128(unsigned long long input)
//      float                gnulliver32f(float input)
//      double               gnulliver64f(double input)
//      long double          gnulliver128f(long double input)
//
//   The code in the routines might appear largely redundant, and it is.
//   Loops are also unrolled.  All this should minimize function calls and
//   maximize speed.
//

#include "gnulliver.h"
//
//   GNULLIVER_TEST is the magic number we use to determine byte swapping in
//   a 64-bit word.  It assumes IEEE 754 floating point, and encodes to
//   hexadecimal 0x40302010 00000000 on a Big-endian (network order) machine.
//   The mantissa is large enough that it might work on a non-IEEE 754 compatible
//   machine just by coincidence, but no guarantees.
//
//   gnulliver currently assumes that if we swap 32-bit values in a 64-bit word,
//   then we also swap 64-bit values in a 128-bit word (long double), which is
//   true if the machine is Little-endian.  If this does not hold true on a
//   particular platform, let me know and I'll modify the code.
//
#define GNULLIVER_TEST    ( 16.0 + ( 1.0 / 8.0 + 1.0 / 4096.0 ) )

//! Discover the endianess of the host.
//!
//! @returns GNULLIVER_LITTLE, GNULLIVER_DEC, GNULLIVER_BIG depending on
//! whether the host uses little-, DEC-, or big-endian order for its bytes.
//! This information is used to swap bytes between host byte order and
//! assumed network order (big-endian) for the binary file.
//! Alternatively, gnulliver() returns GNULLIVER_NATIVE for the case
//! where no byte swaps are desired for i/o on a binary file.
//!
unsigned char
gnulliver()
{
#ifdef NO_GNULLIVER_SWAP
    return ( GNULLIVER_NATIVE );
#else
    unsigned char result;
    union
    {
        double        d;
        unsigned char ch[8];
    } bytes;

    bytes.d = GNULLIVER_TEST;
    result  = 0;

    if ( bytes.ch[0] == 0 )        // swap 32-bit words in a 64-bit number
    {
        if ( bytes.ch[4] == 0x10 ) // Assume 0x00000000 10203040
            result = GNULLIVER_LITTLE;
        else                       // Assume 0x00000000 20104030
            result = GNULLIVER_DEC;
    }
    else                                     // Assume 0x40302010 00000000
        result = GNULLIVER_BIG;
    return ( result );
#endif
}

//! Optional byteswap of short depending on gnulliver() result.
//!
//! @param input [IN ONLY]Value of integer to be optionally byteswapped.
//! @returns (optionally) byteswapped integer.
//!
unsigned short
gnulliver16( unsigned short input )
{
    static unsigned endian, init = 1;
    unsigned char   tmpch;
    union
    {
        unsigned short u;
        unsigned char  ch[2];
    } bytes;

    if ( init )
    {
        endian = gnulliver();
        init   = 0;
    }
    bytes.u = input;
    if ( endian != GNULLIVER_BIG && endian != GNULLIVER_NATIVE )
    {
        tmpch       = bytes.ch[0];
        bytes.ch[0] = bytes.ch[1]; bytes.ch[1] = tmpch;
    }
    return ( bytes.u );
}

//! Optional byteswap of integer depending on gnulliver() result.
//!
//! @param input [IN ONLY]Value of integer to be optionally byteswapped.
//! @returns (optionally) byteswapped integer.
//!
unsigned
gnulliver32( unsigned input )
{
    static unsigned endian, init = 1;
    char            tmpch;
    union
    {
        unsigned      u;
        unsigned char ch[4];
    } bytes;

    if ( init )
    {
        endian = gnulliver();
        init   = 0;
    }
    bytes.u = input;
    if ( endian != GNULLIVER_BIG && endian != GNULLIVER_NATIVE )
    {
        if ( endian == GNULLIVER_LITTLE )
        {
            tmpch = bytes.ch[0]; bytes.ch[0] = bytes.ch[3]; bytes.ch[3] = tmpch;
            tmpch = bytes.ch[1]; bytes.ch[1] = bytes.ch[2]; bytes.ch[2] = tmpch;
        }
        else // endian == GNULLIVER_DEC
        {
            tmpch = bytes.ch[0]; bytes.ch[0] = bytes.ch[2]; bytes.ch[2] = tmpch;
            tmpch = bytes.ch[1]; bytes.ch[1] = bytes.ch[3]; bytes.ch[3] = tmpch;
        }
    }

    return ( bytes.u );
}

//! Optional byteswap of long depending on gnulliver() result.
//!
//! @param input [IN ONLY]Value of integer to be optionally byteswapped.
//! @returns (optionally) byteswapped integer.
//!
unsigned long
gnulliver64( unsigned long input )
{
    static unsigned endian, init = 1;
    char            tmpch;
    union
    {
        unsigned long u;
        char          ch[8];
    } bytes;

    if ( init )
    {
        endian = gnulliver();
        init   = 0;
    }
    bytes.u = input;
    if ( endian != GNULLIVER_BIG && endian != GNULLIVER_NATIVE )
    {
        if ( endian == GNULLIVER_LITTLE )
        {
            tmpch = bytes.ch[0]; bytes.ch[0] = bytes.ch[7]; bytes.ch[7] = tmpch;
            tmpch = bytes.ch[1]; bytes.ch[1] = bytes.ch[6]; bytes.ch[6] = tmpch;
            tmpch = bytes.ch[2]; bytes.ch[2] = bytes.ch[5]; bytes.ch[5] = tmpch;
            tmpch = bytes.ch[3]; bytes.ch[3] = bytes.ch[4]; bytes.ch[4] = tmpch;
        }
        else // Assume GNULLIVER_DEC
        {
            tmpch = bytes.ch[0]; bytes.ch[0] = bytes.ch[6]; bytes.ch[6] = tmpch;
            tmpch = bytes.ch[1]; bytes.ch[1] = bytes.ch[7]; bytes.ch[7] = tmpch;
            tmpch = bytes.ch[2]; bytes.ch[2] = bytes.ch[4]; bytes.ch[4] = tmpch;
            tmpch = bytes.ch[3]; bytes.ch[3] = bytes.ch[5]; bytes.ch[5] = tmpch;
        }
    }

    return ( bytes.u );
}

//! Optional byteswap of long long depending on gnulliver() result.
//!
//! @param input [IN ONLY]Value of integer to be optionally byteswapped.
//! @returns (optionally) byteswapped integer.
//!
unsigned long long
gnulliver128( unsigned long long input )
{
    static unsigned endian, init = 1;
    unsigned char   tmpch;
    union
    {
        unsigned long long u;
        char ch[16];
    } bytes;

    if ( init )
    {
        endian = gnulliver();
        init   = 0;
    }
    bytes.u = input;
    if ( endian != GNULLIVER_BIG && endian != GNULLIVER_NATIVE )
    {
        if ( endian == GNULLIVER_LITTLE )
        {
            tmpch = bytes.ch[0]; bytes.ch[0] = bytes.ch[15]; bytes.ch[15] = tmpch;
            tmpch = bytes.ch[1]; bytes.ch[1] = bytes.ch[14]; bytes.ch[14] = tmpch;
            tmpch = bytes.ch[2]; bytes.ch[2] = bytes.ch[13]; bytes.ch[13] = tmpch;
            tmpch = bytes.ch[3]; bytes.ch[3] = bytes.ch[12]; bytes.ch[12] = tmpch;
            tmpch = bytes.ch[4]; bytes.ch[4] = bytes.ch[11]; bytes.ch[11] = tmpch;
            tmpch = bytes.ch[5]; bytes.ch[5] = bytes.ch[10]; bytes.ch[10] = tmpch;
            tmpch = bytes.ch[6]; bytes.ch[6] = bytes.ch[ 9]; bytes.ch[ 9] = tmpch;
            tmpch = bytes.ch[7]; bytes.ch[7] = bytes.ch[ 8]; bytes.ch[ 8] = tmpch;
        }
        else // Assume GNULLIVER_DEC
        {
            tmpch = bytes.ch[0]; bytes.ch[0] = bytes.ch[14]; bytes.ch[14] = tmpch;
            tmpch = bytes.ch[1]; bytes.ch[1] = bytes.ch[15]; bytes.ch[15] = tmpch;
            tmpch = bytes.ch[2]; bytes.ch[2] = bytes.ch[12]; bytes.ch[12] = tmpch;
            tmpch = bytes.ch[3]; bytes.ch[3] = bytes.ch[13]; bytes.ch[13] = tmpch;
            tmpch = bytes.ch[4]; bytes.ch[4] = bytes.ch[10]; bytes.ch[10] = tmpch;
            tmpch = bytes.ch[5]; bytes.ch[5] = bytes.ch[11]; bytes.ch[11] = tmpch;
            tmpch = bytes.ch[6]; bytes.ch[6] = bytes.ch[ 8]; bytes.ch[ 8] = tmpch;
            tmpch = bytes.ch[7]; bytes.ch[7] = bytes.ch[ 9]; bytes.ch[ 9] = tmpch;
        }
    }

    return ( bytes.u );
}

//! Optional byteswap of float depending on gnulliver() result.
//!
//! @param input [IN ONLY]Value of floating-point variable to be
//! optionally byteswapped.
//! @returns (optionally) byteswapped floating point value.
//!
float
gnulliver32f( float input )
{
    static unsigned endian, init = 1;
    unsigned char   tmpch;
    union
    {
        float         x;
        unsigned char ch[4];
    } bytes;

    if ( init )
    {
        endian = gnulliver();
        init   = 0;
    }
    bytes.x = input;
    if ( endian != GNULLIVER_BIG && endian != GNULLIVER_NATIVE )
    {
        if ( endian == GNULLIVER_LITTLE )
        {
            tmpch = bytes.ch[0]; bytes.ch[0] = bytes.ch[3]; bytes.ch[3] = tmpch;
            tmpch = bytes.ch[1]; bytes.ch[1] = bytes.ch[2]; bytes.ch[2] = tmpch;
        }
        else // Assume GNULLIVER_DEC
        {
            tmpch = bytes.ch[0]; bytes.ch[0] = bytes.ch[2]; bytes.ch[2] = tmpch;
            tmpch = bytes.ch[1]; bytes.ch[1] = bytes.ch[3]; bytes.ch[3] = tmpch;
        }
    }

    return ( bytes.x );
}

//! Optional byteswap of double depending on gnulliver() result.
//!
//! @param input [IN ONLY]Value of floating-point variable to be
//! optionally byteswapped.
//! @returns (optionally) byteswapped floating point value.
//!
double
gnulliver64f( double input )
{
    static unsigned endian, init = 1;
    unsigned char   tmpch;
    union
    {
        double        x;
        unsigned char ch[8];
    } bytes;

    if ( init )
    {
        endian = gnulliver();
        init   = 0;
    }
    bytes.x = input;
    if ( endian != GNULLIVER_BIG && endian != GNULLIVER_NATIVE )
    {
        if ( endian == GNULLIVER_LITTLE )
        {
            tmpch = bytes.ch[0]; bytes.ch[0] = bytes.ch[7]; bytes.ch[7] = tmpch;
            tmpch = bytes.ch[1]; bytes.ch[1] = bytes.ch[6]; bytes.ch[6] = tmpch;
            tmpch = bytes.ch[2]; bytes.ch[2] = bytes.ch[5]; bytes.ch[5] = tmpch;
            tmpch = bytes.ch[3]; bytes.ch[3] = bytes.ch[4]; bytes.ch[4] = tmpch;
        }
        else // Assume GNULLIVER_DEC
        {
            tmpch = bytes.ch[0]; bytes.ch[0] = bytes.ch[6]; bytes.ch[6] = tmpch;
            tmpch = bytes.ch[1]; bytes.ch[1] = bytes.ch[7]; bytes.ch[7] = tmpch;
            tmpch = bytes.ch[2]; bytes.ch[2] = bytes.ch[4]; bytes.ch[4] = tmpch;
            tmpch = bytes.ch[3]; bytes.ch[3] = bytes.ch[5]; bytes.ch[5] = tmpch;
        }
    }

    return ( bytes.x );
}

//! Optional byteswap of long double depending on gnulliver() result.
//! Note: This function's result will be unpredictable if the type
//! long double is not a 128-bit word.
//!
//! @param input [IN ONLY]Value of floating-point variable to be
//! optionally byteswapped.
//! @returns (optionally) byteswapped floating point value.
//!
long double
gnulliver128f( long double input )
{
    static unsigned endian, init = 1;
    unsigned char   tmpch;
    union
    {
        long double   x;
        unsigned char ch[16];
    } bytes;

    if ( init )
    {
        endian = gnulliver();
        init   = 0;
    }
    bytes.x = input;
    if ( endian != GNULLIVER_BIG && endian != GNULLIVER_NATIVE )
    {
        if ( endian == GNULLIVER_LITTLE )
        {
            tmpch = bytes.ch[0]; bytes.ch[0] = bytes.ch[15]; bytes.ch[15] = tmpch;
            tmpch = bytes.ch[1]; bytes.ch[1] = bytes.ch[14]; bytes.ch[14] = tmpch;
            tmpch = bytes.ch[2]; bytes.ch[2] = bytes.ch[13]; bytes.ch[13] = tmpch;
            tmpch = bytes.ch[3]; bytes.ch[3] = bytes.ch[12]; bytes.ch[12] = tmpch;
            tmpch = bytes.ch[4]; bytes.ch[4] = bytes.ch[11]; bytes.ch[11] = tmpch;
            tmpch = bytes.ch[5]; bytes.ch[5] = bytes.ch[10]; bytes.ch[10] = tmpch;
            tmpch = bytes.ch[6]; bytes.ch[6] = bytes.ch[ 9]; bytes.ch[ 9] = tmpch;
            tmpch = bytes.ch[7]; bytes.ch[7] = bytes.ch[ 8]; bytes.ch[ 8] = tmpch;
        }
        else // Assume GNULLIVER_DEC
        {
            tmpch = bytes.ch[0]; bytes.ch[0] = bytes.ch[14]; bytes.ch[14] = tmpch;
            tmpch = bytes.ch[1]; bytes.ch[1] = bytes.ch[15]; bytes.ch[15] = tmpch;
            tmpch = bytes.ch[2]; bytes.ch[2] = bytes.ch[12]; bytes.ch[12] = tmpch;
            tmpch = bytes.ch[3]; bytes.ch[3] = bytes.ch[13]; bytes.ch[13] = tmpch;
            tmpch = bytes.ch[4]; bytes.ch[4] = bytes.ch[10]; bytes.ch[10] = tmpch;
            tmpch = bytes.ch[5]; bytes.ch[5] = bytes.ch[11]; bytes.ch[11] = tmpch;
            tmpch = bytes.ch[6]; bytes.ch[6] = bytes.ch[ 8]; bytes.ch[ 8] = tmpch;
            tmpch = bytes.ch[7]; bytes.ch[7] = bytes.ch[ 9]; bytes.ch[ 9] = tmpch;
        }
    }

    return ( bytes.x );
}

//! Optional swap of char array elements depending on gnulliver()
//! result.
//!
//! @param ch [IN AND OUT ]Pointer to char array containing 8 elements
//! which upon return will be optionally swapped.
//! @returns pointer to char array which contains the (optionally)
//! swapped elements.
//!
unsigned char *
gnulliver64c( unsigned char *ch )
{
    static unsigned endian, init = 1;
    unsigned char   tmpch;

    if ( init )
    {
        endian = gnulliver();
        init   = 0;
    }
    if ( endian != GNULLIVER_BIG && endian != GNULLIVER_NATIVE )
    {
        if ( endian == GNULLIVER_LITTLE )
        {
            tmpch = ch[0]; ch[0] = ch[7]; ch[7] = tmpch;
            tmpch = ch[1]; ch[1] = ch[6]; ch[6] = tmpch;
            tmpch = ch[2]; ch[2] = ch[5]; ch[5] = tmpch;
            tmpch = ch[3]; ch[3] = ch[4]; ch[4] = tmpch;
        }
        else // Assume GNULLIVER_DEC
        {
            tmpch = ch[0]; ch[0] = ch[6]; ch[6] = tmpch;
            tmpch = ch[1]; ch[1] = ch[7]; ch[7] = tmpch;
            tmpch = ch[2]; ch[2] = ch[4]; ch[4] = tmpch;
            tmpch = ch[3]; ch[3] = ch[5]; ch[5] = tmpch;
        }
    }
    return ( ch );
}