hirlite 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (66) hide show
  1. checksums.yaml +15 -0
  2. data/LICENSE +28 -0
  3. data/Rakefile +51 -0
  4. data/ext/hirlite_ext/extconf.rb +33 -0
  5. data/ext/hirlite_ext/hirlite_ext.c +14 -0
  6. data/ext/hirlite_ext/hirlite_ext.h +38 -0
  7. data/ext/hirlite_ext/rlite.c +351 -0
  8. data/lib/hirlite/rlite.rb +1 -0
  9. data/lib/hirlite/version.rb +3 -0
  10. data/lib/hirlite.rb +2 -0
  11. data/vendor/rlite/Makefile +6 -0
  12. data/vendor/rlite/deps/crc64.c +191 -0
  13. data/vendor/rlite/deps/crc64.h +3 -0
  14. data/vendor/rlite/deps/endianconv.h +73 -0
  15. data/vendor/rlite/deps/hyperloglog.c +1547 -0
  16. data/vendor/rlite/deps/hyperloglog.h +14 -0
  17. data/vendor/rlite/deps/lzf.h +100 -0
  18. data/vendor/rlite/deps/lzfP.h +159 -0
  19. data/vendor/rlite/deps/lzf_c.c +295 -0
  20. data/vendor/rlite/deps/lzf_d.c +150 -0
  21. data/vendor/rlite/deps/sha1.c +227 -0
  22. data/vendor/rlite/deps/sha1.h +19 -0
  23. data/vendor/rlite/deps/utilfromredis.c +397 -0
  24. data/vendor/rlite/deps/utilfromredis.h +11 -0
  25. data/vendor/rlite/src/Makefile +79 -0
  26. data/vendor/rlite/src/constants.h +15 -0
  27. data/vendor/rlite/src/dump.c +191 -0
  28. data/vendor/rlite/src/dump.h +3 -0
  29. data/vendor/rlite/src/hirlite.c +3985 -0
  30. data/vendor/rlite/src/hirlite.h +186 -0
  31. data/vendor/rlite/src/page_btree.c +1556 -0
  32. data/vendor/rlite/src/page_btree.h +133 -0
  33. data/vendor/rlite/src/page_key.c +283 -0
  34. data/vendor/rlite/src/page_key.h +25 -0
  35. data/vendor/rlite/src/page_list.c +718 -0
  36. data/vendor/rlite/src/page_list.h +70 -0
  37. data/vendor/rlite/src/page_long.c +61 -0
  38. data/vendor/rlite/src/page_long.h +14 -0
  39. data/vendor/rlite/src/page_multi_string.c +538 -0
  40. data/vendor/rlite/src/page_multi_string.h +18 -0
  41. data/vendor/rlite/src/page_skiplist.c +689 -0
  42. data/vendor/rlite/src/page_skiplist.h +70 -0
  43. data/vendor/rlite/src/page_string.c +55 -0
  44. data/vendor/rlite/src/page_string.h +12 -0
  45. data/vendor/rlite/src/pqsort.c +185 -0
  46. data/vendor/rlite/src/pqsort.h +40 -0
  47. data/vendor/rlite/src/restore.c +401 -0
  48. data/vendor/rlite/src/restore.h +3 -0
  49. data/vendor/rlite/src/rlite.c +1309 -0
  50. data/vendor/rlite/src/rlite.h +159 -0
  51. data/vendor/rlite/src/sort.c +530 -0
  52. data/vendor/rlite/src/sort.h +18 -0
  53. data/vendor/rlite/src/status.h +19 -0
  54. data/vendor/rlite/src/type_hash.c +607 -0
  55. data/vendor/rlite/src/type_hash.h +29 -0
  56. data/vendor/rlite/src/type_list.c +477 -0
  57. data/vendor/rlite/src/type_list.h +23 -0
  58. data/vendor/rlite/src/type_set.c +796 -0
  59. data/vendor/rlite/src/type_set.h +34 -0
  60. data/vendor/rlite/src/type_string.c +613 -0
  61. data/vendor/rlite/src/type_string.h +34 -0
  62. data/vendor/rlite/src/type_zset.c +1147 -0
  63. data/vendor/rlite/src/type_zset.h +50 -0
  64. data/vendor/rlite/src/util.c +334 -0
  65. data/vendor/rlite/src/util.h +71 -0
  66. metadata +151 -0
@@ -0,0 +1,191 @@
1
+ /* Redis uses the CRC64 variant with "Jones" coefficients and init value of 0.
2
+ *
3
+ * Specification of this CRC64 variant follows:
4
+ * Name: crc-64-jones
5
+ * Width: 64 bites
6
+ * Poly: 0xad93d23594c935a9
7
+ * Reflected In: True
8
+ * Xor_In: 0xffffffffffffffff
9
+ * Reflected_Out: True
10
+ * Xor_Out: 0x0
11
+ * Check("123456789"): 0xe9c6d914c4b8d9ca
12
+ *
13
+ * Copyright (c) 2012, Salvatore Sanfilippo <antirez at gmail dot com>
14
+ * All rights reserved.
15
+ *
16
+ * Redistribution and use in source and binary forms, with or without
17
+ * modification, are permitted provided that the following conditions are met:
18
+ *
19
+ * * Redistributions of source code must retain the above copyright notice,
20
+ * this list of conditions and the following disclaimer.
21
+ * * Redistributions in binary form must reproduce the above copyright
22
+ * notice, this list of conditions and the following disclaimer in the
23
+ * documentation and/or other materials provided with the distribution.
24
+ * * Neither the name of Redis nor the names of its contributors may be used
25
+ * to endorse or promote products derived from this software without
26
+ * specific prior written permission.
27
+ *
28
+ * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
29
+ * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
30
+ * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
31
+ * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
32
+ * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
33
+ * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
34
+ * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
35
+ * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
36
+ * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
37
+ * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
38
+ * POSSIBILITY OF SUCH DAMAGE. */
39
+
40
+ #include <stdint.h>
41
+
42
+ static const uint64_t crc64_tab[256] = {
43
+ UINT64_C(0x0000000000000000), UINT64_C(0x7ad870c830358979),
44
+ UINT64_C(0xf5b0e190606b12f2), UINT64_C(0x8f689158505e9b8b),
45
+ UINT64_C(0xc038e5739841b68f), UINT64_C(0xbae095bba8743ff6),
46
+ UINT64_C(0x358804e3f82aa47d), UINT64_C(0x4f50742bc81f2d04),
47
+ UINT64_C(0xab28ecb46814fe75), UINT64_C(0xd1f09c7c5821770c),
48
+ UINT64_C(0x5e980d24087fec87), UINT64_C(0x24407dec384a65fe),
49
+ UINT64_C(0x6b1009c7f05548fa), UINT64_C(0x11c8790fc060c183),
50
+ UINT64_C(0x9ea0e857903e5a08), UINT64_C(0xe478989fa00bd371),
51
+ UINT64_C(0x7d08ff3b88be6f81), UINT64_C(0x07d08ff3b88be6f8),
52
+ UINT64_C(0x88b81eabe8d57d73), UINT64_C(0xf2606e63d8e0f40a),
53
+ UINT64_C(0xbd301a4810ffd90e), UINT64_C(0xc7e86a8020ca5077),
54
+ UINT64_C(0x4880fbd87094cbfc), UINT64_C(0x32588b1040a14285),
55
+ UINT64_C(0xd620138fe0aa91f4), UINT64_C(0xacf86347d09f188d),
56
+ UINT64_C(0x2390f21f80c18306), UINT64_C(0x594882d7b0f40a7f),
57
+ UINT64_C(0x1618f6fc78eb277b), UINT64_C(0x6cc0863448deae02),
58
+ UINT64_C(0xe3a8176c18803589), UINT64_C(0x997067a428b5bcf0),
59
+ UINT64_C(0xfa11fe77117cdf02), UINT64_C(0x80c98ebf2149567b),
60
+ UINT64_C(0x0fa11fe77117cdf0), UINT64_C(0x75796f2f41224489),
61
+ UINT64_C(0x3a291b04893d698d), UINT64_C(0x40f16bccb908e0f4),
62
+ UINT64_C(0xcf99fa94e9567b7f), UINT64_C(0xb5418a5cd963f206),
63
+ UINT64_C(0x513912c379682177), UINT64_C(0x2be1620b495da80e),
64
+ UINT64_C(0xa489f35319033385), UINT64_C(0xde51839b2936bafc),
65
+ UINT64_C(0x9101f7b0e12997f8), UINT64_C(0xebd98778d11c1e81),
66
+ UINT64_C(0x64b116208142850a), UINT64_C(0x1e6966e8b1770c73),
67
+ UINT64_C(0x8719014c99c2b083), UINT64_C(0xfdc17184a9f739fa),
68
+ UINT64_C(0x72a9e0dcf9a9a271), UINT64_C(0x08719014c99c2b08),
69
+ UINT64_C(0x4721e43f0183060c), UINT64_C(0x3df994f731b68f75),
70
+ UINT64_C(0xb29105af61e814fe), UINT64_C(0xc849756751dd9d87),
71
+ UINT64_C(0x2c31edf8f1d64ef6), UINT64_C(0x56e99d30c1e3c78f),
72
+ UINT64_C(0xd9810c6891bd5c04), UINT64_C(0xa3597ca0a188d57d),
73
+ UINT64_C(0xec09088b6997f879), UINT64_C(0x96d1784359a27100),
74
+ UINT64_C(0x19b9e91b09fcea8b), UINT64_C(0x636199d339c963f2),
75
+ UINT64_C(0xdf7adabd7a6e2d6f), UINT64_C(0xa5a2aa754a5ba416),
76
+ UINT64_C(0x2aca3b2d1a053f9d), UINT64_C(0x50124be52a30b6e4),
77
+ UINT64_C(0x1f423fcee22f9be0), UINT64_C(0x659a4f06d21a1299),
78
+ UINT64_C(0xeaf2de5e82448912), UINT64_C(0x902aae96b271006b),
79
+ UINT64_C(0x74523609127ad31a), UINT64_C(0x0e8a46c1224f5a63),
80
+ UINT64_C(0x81e2d7997211c1e8), UINT64_C(0xfb3aa75142244891),
81
+ UINT64_C(0xb46ad37a8a3b6595), UINT64_C(0xceb2a3b2ba0eecec),
82
+ UINT64_C(0x41da32eaea507767), UINT64_C(0x3b024222da65fe1e),
83
+ UINT64_C(0xa2722586f2d042ee), UINT64_C(0xd8aa554ec2e5cb97),
84
+ UINT64_C(0x57c2c41692bb501c), UINT64_C(0x2d1ab4dea28ed965),
85
+ UINT64_C(0x624ac0f56a91f461), UINT64_C(0x1892b03d5aa47d18),
86
+ UINT64_C(0x97fa21650afae693), UINT64_C(0xed2251ad3acf6fea),
87
+ UINT64_C(0x095ac9329ac4bc9b), UINT64_C(0x7382b9faaaf135e2),
88
+ UINT64_C(0xfcea28a2faafae69), UINT64_C(0x8632586aca9a2710),
89
+ UINT64_C(0xc9622c4102850a14), UINT64_C(0xb3ba5c8932b0836d),
90
+ UINT64_C(0x3cd2cdd162ee18e6), UINT64_C(0x460abd1952db919f),
91
+ UINT64_C(0x256b24ca6b12f26d), UINT64_C(0x5fb354025b277b14),
92
+ UINT64_C(0xd0dbc55a0b79e09f), UINT64_C(0xaa03b5923b4c69e6),
93
+ UINT64_C(0xe553c1b9f35344e2), UINT64_C(0x9f8bb171c366cd9b),
94
+ UINT64_C(0x10e3202993385610), UINT64_C(0x6a3b50e1a30ddf69),
95
+ UINT64_C(0x8e43c87e03060c18), UINT64_C(0xf49bb8b633338561),
96
+ UINT64_C(0x7bf329ee636d1eea), UINT64_C(0x012b592653589793),
97
+ UINT64_C(0x4e7b2d0d9b47ba97), UINT64_C(0x34a35dc5ab7233ee),
98
+ UINT64_C(0xbbcbcc9dfb2ca865), UINT64_C(0xc113bc55cb19211c),
99
+ UINT64_C(0x5863dbf1e3ac9dec), UINT64_C(0x22bbab39d3991495),
100
+ UINT64_C(0xadd33a6183c78f1e), UINT64_C(0xd70b4aa9b3f20667),
101
+ UINT64_C(0x985b3e827bed2b63), UINT64_C(0xe2834e4a4bd8a21a),
102
+ UINT64_C(0x6debdf121b863991), UINT64_C(0x1733afda2bb3b0e8),
103
+ UINT64_C(0xf34b37458bb86399), UINT64_C(0x8993478dbb8deae0),
104
+ UINT64_C(0x06fbd6d5ebd3716b), UINT64_C(0x7c23a61ddbe6f812),
105
+ UINT64_C(0x3373d23613f9d516), UINT64_C(0x49aba2fe23cc5c6f),
106
+ UINT64_C(0xc6c333a67392c7e4), UINT64_C(0xbc1b436e43a74e9d),
107
+ UINT64_C(0x95ac9329ac4bc9b5), UINT64_C(0xef74e3e19c7e40cc),
108
+ UINT64_C(0x601c72b9cc20db47), UINT64_C(0x1ac40271fc15523e),
109
+ UINT64_C(0x5594765a340a7f3a), UINT64_C(0x2f4c0692043ff643),
110
+ UINT64_C(0xa02497ca54616dc8), UINT64_C(0xdafce7026454e4b1),
111
+ UINT64_C(0x3e847f9dc45f37c0), UINT64_C(0x445c0f55f46abeb9),
112
+ UINT64_C(0xcb349e0da4342532), UINT64_C(0xb1eceec59401ac4b),
113
+ UINT64_C(0xfebc9aee5c1e814f), UINT64_C(0x8464ea266c2b0836),
114
+ UINT64_C(0x0b0c7b7e3c7593bd), UINT64_C(0x71d40bb60c401ac4),
115
+ UINT64_C(0xe8a46c1224f5a634), UINT64_C(0x927c1cda14c02f4d),
116
+ UINT64_C(0x1d148d82449eb4c6), UINT64_C(0x67ccfd4a74ab3dbf),
117
+ UINT64_C(0x289c8961bcb410bb), UINT64_C(0x5244f9a98c8199c2),
118
+ UINT64_C(0xdd2c68f1dcdf0249), UINT64_C(0xa7f41839ecea8b30),
119
+ UINT64_C(0x438c80a64ce15841), UINT64_C(0x3954f06e7cd4d138),
120
+ UINT64_C(0xb63c61362c8a4ab3), UINT64_C(0xcce411fe1cbfc3ca),
121
+ UINT64_C(0x83b465d5d4a0eece), UINT64_C(0xf96c151de49567b7),
122
+ UINT64_C(0x76048445b4cbfc3c), UINT64_C(0x0cdcf48d84fe7545),
123
+ UINT64_C(0x6fbd6d5ebd3716b7), UINT64_C(0x15651d968d029fce),
124
+ UINT64_C(0x9a0d8ccedd5c0445), UINT64_C(0xe0d5fc06ed698d3c),
125
+ UINT64_C(0xaf85882d2576a038), UINT64_C(0xd55df8e515432941),
126
+ UINT64_C(0x5a3569bd451db2ca), UINT64_C(0x20ed197575283bb3),
127
+ UINT64_C(0xc49581ead523e8c2), UINT64_C(0xbe4df122e51661bb),
128
+ UINT64_C(0x3125607ab548fa30), UINT64_C(0x4bfd10b2857d7349),
129
+ UINT64_C(0x04ad64994d625e4d), UINT64_C(0x7e7514517d57d734),
130
+ UINT64_C(0xf11d85092d094cbf), UINT64_C(0x8bc5f5c11d3cc5c6),
131
+ UINT64_C(0x12b5926535897936), UINT64_C(0x686de2ad05bcf04f),
132
+ UINT64_C(0xe70573f555e26bc4), UINT64_C(0x9ddd033d65d7e2bd),
133
+ UINT64_C(0xd28d7716adc8cfb9), UINT64_C(0xa85507de9dfd46c0),
134
+ UINT64_C(0x273d9686cda3dd4b), UINT64_C(0x5de5e64efd965432),
135
+ UINT64_C(0xb99d7ed15d9d8743), UINT64_C(0xc3450e196da80e3a),
136
+ UINT64_C(0x4c2d9f413df695b1), UINT64_C(0x36f5ef890dc31cc8),
137
+ UINT64_C(0x79a59ba2c5dc31cc), UINT64_C(0x037deb6af5e9b8b5),
138
+ UINT64_C(0x8c157a32a5b7233e), UINT64_C(0xf6cd0afa9582aa47),
139
+ UINT64_C(0x4ad64994d625e4da), UINT64_C(0x300e395ce6106da3),
140
+ UINT64_C(0xbf66a804b64ef628), UINT64_C(0xc5bed8cc867b7f51),
141
+ UINT64_C(0x8aeeace74e645255), UINT64_C(0xf036dc2f7e51db2c),
142
+ UINT64_C(0x7f5e4d772e0f40a7), UINT64_C(0x05863dbf1e3ac9de),
143
+ UINT64_C(0xe1fea520be311aaf), UINT64_C(0x9b26d5e88e0493d6),
144
+ UINT64_C(0x144e44b0de5a085d), UINT64_C(0x6e963478ee6f8124),
145
+ UINT64_C(0x21c640532670ac20), UINT64_C(0x5b1e309b16452559),
146
+ UINT64_C(0xd476a1c3461bbed2), UINT64_C(0xaeaed10b762e37ab),
147
+ UINT64_C(0x37deb6af5e9b8b5b), UINT64_C(0x4d06c6676eae0222),
148
+ UINT64_C(0xc26e573f3ef099a9), UINT64_C(0xb8b627f70ec510d0),
149
+ UINT64_C(0xf7e653dcc6da3dd4), UINT64_C(0x8d3e2314f6efb4ad),
150
+ UINT64_C(0x0256b24ca6b12f26), UINT64_C(0x788ec2849684a65f),
151
+ UINT64_C(0x9cf65a1b368f752e), UINT64_C(0xe62e2ad306bafc57),
152
+ UINT64_C(0x6946bb8b56e467dc), UINT64_C(0x139ecb4366d1eea5),
153
+ UINT64_C(0x5ccebf68aecec3a1), UINT64_C(0x2616cfa09efb4ad8),
154
+ UINT64_C(0xa97e5ef8cea5d153), UINT64_C(0xd3a62e30fe90582a),
155
+ UINT64_C(0xb0c7b7e3c7593bd8), UINT64_C(0xca1fc72bf76cb2a1),
156
+ UINT64_C(0x45775673a732292a), UINT64_C(0x3faf26bb9707a053),
157
+ UINT64_C(0x70ff52905f188d57), UINT64_C(0x0a2722586f2d042e),
158
+ UINT64_C(0x854fb3003f739fa5), UINT64_C(0xff97c3c80f4616dc),
159
+ UINT64_C(0x1bef5b57af4dc5ad), UINT64_C(0x61372b9f9f784cd4),
160
+ UINT64_C(0xee5fbac7cf26d75f), UINT64_C(0x9487ca0fff135e26),
161
+ UINT64_C(0xdbd7be24370c7322), UINT64_C(0xa10fceec0739fa5b),
162
+ UINT64_C(0x2e675fb4576761d0), UINT64_C(0x54bf2f7c6752e8a9),
163
+ UINT64_C(0xcdcf48d84fe75459), UINT64_C(0xb71738107fd2dd20),
164
+ UINT64_C(0x387fa9482f8c46ab), UINT64_C(0x42a7d9801fb9cfd2),
165
+ UINT64_C(0x0df7adabd7a6e2d6), UINT64_C(0x772fdd63e7936baf),
166
+ UINT64_C(0xf8474c3bb7cdf024), UINT64_C(0x829f3cf387f8795d),
167
+ UINT64_C(0x66e7a46c27f3aa2c), UINT64_C(0x1c3fd4a417c62355),
168
+ UINT64_C(0x935745fc4798b8de), UINT64_C(0xe98f353477ad31a7),
169
+ UINT64_C(0xa6df411fbfb21ca3), UINT64_C(0xdc0731d78f8795da),
170
+ UINT64_C(0x536fa08fdfd90e51), UINT64_C(0x29b7d047efec8728),
171
+ };
172
+
173
+ uint64_t rl_crc64(uint64_t crc, const unsigned char *s, uint64_t l) {
174
+ uint64_t j;
175
+
176
+ for (j = 0; j < l; j++) {
177
+ uint8_t byte = s[j];
178
+ crc = crc64_tab[(uint8_t)crc ^ byte] ^ (crc >> 8);
179
+ }
180
+ return crc;
181
+ }
182
+
183
+ /* Test main */
184
+ #ifdef TEST_MAIN
185
+ #include <stdio.h>
186
+ int main(void) {
187
+ printf("e9c6d914c4b8d9ca == %016llx\n",
188
+ (unsigned long long) crc64(0,(unsigned char*)"123456789",9));
189
+ return 0;
190
+ }
191
+ #endif
@@ -0,0 +1,3 @@
1
+ #include <stdint.h>
2
+
3
+ uint64_t rl_crc64(uint64_t crc, const unsigned char *s, uint64_t l);
@@ -0,0 +1,73 @@
1
+ /* See endianconv.c top comments for more information
2
+ *
3
+ * ----------------------------------------------------------------------------
4
+ *
5
+ * Copyright (c) 2011-2012, Salvatore Sanfilippo <antirez at gmail dot com>
6
+ * All rights reserved.
7
+ *
8
+ * Redistribution and use in source and binary forms, with or without
9
+ * modification, are permitted provided that the following conditions are met:
10
+ *
11
+ * * Redistributions of source code must retain the above copyright notice,
12
+ * this list of conditions and the following disclaimer.
13
+ * * Redistributions in binary form must reproduce the above copyright
14
+ * notice, this list of conditions and the following disclaimer in the
15
+ * documentation and/or other materials provided with the distribution.
16
+ * * Neither the name of Redis nor the names of its contributors may be used
17
+ * to endorse or promote products derived from this software without
18
+ * specific prior written permission.
19
+ *
20
+ * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
21
+ * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
22
+ * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
23
+ * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
24
+ * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
25
+ * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
26
+ * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
27
+ * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
28
+ * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
29
+ * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
30
+ * POSSIBILITY OF SUCH DAMAGE.
31
+ */
32
+
33
+ #ifndef __ENDIANCONV_H
34
+ #define __ENDIANCONV_H
35
+
36
+ #include <stdint.h>
37
+
38
+ void memrev16(void *p);
39
+ void memrev32(void *p);
40
+ void memrev64(void *p);
41
+ uint16_t intrev16(uint16_t v);
42
+ uint32_t intrev32(uint32_t v);
43
+ uint64_t intrev64(uint64_t v);
44
+
45
+ /* variants of the function doing the actual convertion only if the target
46
+ * host is big endian */
47
+ #if (BYTE_ORDER == LITTLE_ENDIAN)
48
+ #define memrev16ifbe(p)
49
+ #define memrev32ifbe(p)
50
+ #define memrev64ifbe(p)
51
+ #define intrev16ifbe(v) (v)
52
+ #define intrev32ifbe(v) (v)
53
+ #define intrev64ifbe(v) (v)
54
+ #else
55
+ #define memrev16ifbe(p) memrev16(p)
56
+ #define memrev32ifbe(p) memrev32(p)
57
+ #define memrev64ifbe(p) memrev64(p)
58
+ #define intrev16ifbe(v) intrev16(v)
59
+ #define intrev32ifbe(v) intrev32(v)
60
+ #define intrev64ifbe(v) intrev64(v)
61
+ #endif
62
+
63
+ /* The functions htonu64() and ntohu64() convert the specified value to
64
+ * network byte ordering and back. In big endian systems they are no-ops. */
65
+ #if (BYTE_ORDER == BIG_ENDIAN)
66
+ #define htonu64(v) (v)
67
+ #define ntohu64(v) (v)
68
+ #else
69
+ #define htonu64(v) intrev64(v)
70
+ #define ntohu64(v) intrev64(v)
71
+ #endif
72
+
73
+ #endif