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
|
/*
A test program to which explores the ability to round trip a nanometer
internal unit in the form of a 32 bit int, out to ASCII floating point
millimeters and back in without variation. It tests all 4 billion values
that an int can hold, and converts to ASCII and back and verifies integrity
of the round tripped value.
Author: Dick Hollenbeck
*/
#include <limits.h>
#include <stdio.h>
#include <cmath>
#include <string>
#include <string.h>
#include <stdlib.h>
#include <stdint.h>
static inline int KiROUND( double v )
{
return int( v < 0 ? v - 0.5 : v + 0.5 );
}
typedef int BIU;
#define BIU_PER_MM 1e6
//double scale = BIU_PER_MM;
//double scale = UM_PER_BIU;
double scale = 1.0/BIU_PER_MM;
std::string biuFmt( BIU aValue )
{
double engUnits = aValue * scale;
char temp[48];
int len;
if( engUnits != 0.0 && fabsl( engUnits ) <= 0.0001 )
{
len = snprintf( temp, sizeof( temp ), "%.10f", engUnits );
while( --len > 0 && temp[len] == '0' )
temp[len] = '\0';
++len;
}
else
{
len = snprintf( temp, sizeof( temp ), "%.10g", engUnits );
}
return std::string( temp, len );;
}
int parseBIU( const char* s )
{
double d = strtod( s, NULL );
return KiROUND( double( d * BIU_PER_MM ) );
// return int( d * BIU_PER_MM );
}
int main( int argc, char** argv )
{
unsigned mismatches = 0;
if( argc > 1 )
{
// take a value on the command line and round trip it back to ASCII.
int i = parseBIU( argv[1] );
printf( "%s: i:%d\n", __func__, i );
std::string s = biuFmt( i );
printf( "%s: s:%s\n", __func__, s.c_str() );
exit(0);
}
// printf( "sizeof(long double): %zd\n", sizeof( long double ) );
// Emperically prove that we can round trip all 4 billion 32 bit integers representative
// of nanometers out to textual floating point millimeters, and back without error using
// the above two functions.
// for( int i = INT_MIN; int64_t( i ) <= int64_t( INT_MAX ); ++i )
for( int64_t j = INT_MIN; j <= int64_t( INT_MAX ); ++j )
{
int i = int( j );
std::string s = biuFmt( int( i ) );
int r = parseBIU( s.c_str() );
if( r != i )
{
printf( "i:%d biuFmt:%s r:%d\n", i, s.c_str(), r );
++mismatches;
}
if( !( i & 0xFFFFFF ) )
{
printf( " %08x", i );
fflush( stdout );
}
}
printf( "mismatches:%u\n", mismatches );
return 0;
}
|