sl@0
|
1 |
// Boost CRC library crc.hpp header file -----------------------------------//
|
sl@0
|
2 |
|
sl@0
|
3 |
// Copyright 2001, 2004 Daryle Walker. Use, modification, and distribution are
|
sl@0
|
4 |
// subject to the Boost Software License, Version 1.0. (See accompanying file
|
sl@0
|
5 |
// LICENSE_1_0.txt or a copy at <http://www.boost.org/LICENSE_1_0.txt>.)
|
sl@0
|
6 |
|
sl@0
|
7 |
// See <http://www.boost.org/libs/crc/> for the library's home page.
|
sl@0
|
8 |
|
sl@0
|
9 |
#ifndef BOOST_CRC_HPP
|
sl@0
|
10 |
#define BOOST_CRC_HPP
|
sl@0
|
11 |
|
sl@0
|
12 |
#include <boost/config.hpp> // for BOOST_STATIC_CONSTANT, etc.
|
sl@0
|
13 |
#include <boost/integer.hpp> // for boost::uint_t
|
sl@0
|
14 |
|
sl@0
|
15 |
#include <climits> // for CHAR_BIT, etc.
|
sl@0
|
16 |
#include <cstddef> // for std::size_t
|
sl@0
|
17 |
|
sl@0
|
18 |
#include <boost/limits.hpp> // for std::numeric_limits
|
sl@0
|
19 |
|
sl@0
|
20 |
|
sl@0
|
21 |
// The type of CRC parameters that can go in a template should be related
|
sl@0
|
22 |
// on the CRC's bit count. This macro expresses that type in a compact
|
sl@0
|
23 |
// form, but also allows an alternate type for compilers that don't support
|
sl@0
|
24 |
// dependent types (in template value-parameters).
|
sl@0
|
25 |
#if !(defined(BOOST_NO_DEPENDENT_TYPES_IN_TEMPLATE_VALUE_PARAMETERS) || (defined(BOOST_MSVC) && (BOOST_MSVC <= 1300)))
|
sl@0
|
26 |
#define BOOST_CRC_PARM_TYPE typename ::boost::uint_t<Bits>::fast
|
sl@0
|
27 |
#else
|
sl@0
|
28 |
#define BOOST_CRC_PARM_TYPE unsigned long
|
sl@0
|
29 |
#endif
|
sl@0
|
30 |
|
sl@0
|
31 |
// Some compilers [MS VC++ 6] cannot correctly set up several versions of a
|
sl@0
|
32 |
// function template unless every template argument can be unambiguously
|
sl@0
|
33 |
// deduced from the function arguments. (The bug is hidden if only one version
|
sl@0
|
34 |
// is needed.) Since all of the CRC function templates have this problem, the
|
sl@0
|
35 |
// workaround is to make up a dummy function argument that encodes the template
|
sl@0
|
36 |
// arguments. Calls to such template functions need all their template
|
sl@0
|
37 |
// arguments explicitly specified. At least one compiler that needs this
|
sl@0
|
38 |
// workaround also needs the default value for the dummy argument to be
|
sl@0
|
39 |
// specified in the definition.
|
sl@0
|
40 |
#if defined(__GNUC__) || !defined(BOOST_NO_EXPLICIT_FUNCTION_TEMPLATE_ARGUMENTS)
|
sl@0
|
41 |
#define BOOST_CRC_DUMMY_PARM_TYPE
|
sl@0
|
42 |
#define BOOST_CRC_DUMMY_INIT
|
sl@0
|
43 |
#define BOOST_ACRC_DUMMY_PARM_TYPE
|
sl@0
|
44 |
#define BOOST_ACRC_DUMMY_INIT
|
sl@0
|
45 |
#else
|
sl@0
|
46 |
namespace boost { namespace detail {
|
sl@0
|
47 |
template < std::size_t Bits, BOOST_CRC_PARM_TYPE TruncPoly,
|
sl@0
|
48 |
BOOST_CRC_PARM_TYPE InitRem, BOOST_CRC_PARM_TYPE FinalXor,
|
sl@0
|
49 |
bool ReflectIn, bool ReflectRem >
|
sl@0
|
50 |
struct dummy_crc_argument { };
|
sl@0
|
51 |
} }
|
sl@0
|
52 |
#define BOOST_CRC_DUMMY_PARM_TYPE , detail::dummy_crc_argument<Bits, \
|
sl@0
|
53 |
TruncPoly, InitRem, FinalXor, ReflectIn, ReflectRem> *p_
|
sl@0
|
54 |
#define BOOST_CRC_DUMMY_INIT BOOST_CRC_DUMMY_PARM_TYPE = 0
|
sl@0
|
55 |
#define BOOST_ACRC_DUMMY_PARM_TYPE , detail::dummy_crc_argument<Bits, \
|
sl@0
|
56 |
TruncPoly, 0, 0, false, false> *p_
|
sl@0
|
57 |
#define BOOST_ACRC_DUMMY_INIT BOOST_ACRC_DUMMY_PARM_TYPE = 0
|
sl@0
|
58 |
#endif
|
sl@0
|
59 |
|
sl@0
|
60 |
|
sl@0
|
61 |
namespace boost
|
sl@0
|
62 |
{
|
sl@0
|
63 |
|
sl@0
|
64 |
|
sl@0
|
65 |
// Forward declarations ----------------------------------------------------//
|
sl@0
|
66 |
|
sl@0
|
67 |
template < std::size_t Bits >
|
sl@0
|
68 |
class crc_basic;
|
sl@0
|
69 |
|
sl@0
|
70 |
template < std::size_t Bits, BOOST_CRC_PARM_TYPE TruncPoly = 0u,
|
sl@0
|
71 |
BOOST_CRC_PARM_TYPE InitRem = 0u,
|
sl@0
|
72 |
BOOST_CRC_PARM_TYPE FinalXor = 0u, bool ReflectIn = false,
|
sl@0
|
73 |
bool ReflectRem = false >
|
sl@0
|
74 |
class crc_optimal;
|
sl@0
|
75 |
|
sl@0
|
76 |
template < std::size_t Bits, BOOST_CRC_PARM_TYPE TruncPoly,
|
sl@0
|
77 |
BOOST_CRC_PARM_TYPE InitRem, BOOST_CRC_PARM_TYPE FinalXor,
|
sl@0
|
78 |
bool ReflectIn, bool ReflectRem >
|
sl@0
|
79 |
typename uint_t<Bits>::fast crc( void const *buffer,
|
sl@0
|
80 |
std::size_t byte_count
|
sl@0
|
81 |
BOOST_CRC_DUMMY_PARM_TYPE );
|
sl@0
|
82 |
|
sl@0
|
83 |
template < std::size_t Bits, BOOST_CRC_PARM_TYPE TruncPoly >
|
sl@0
|
84 |
typename uint_t<Bits>::fast augmented_crc( void const *buffer,
|
sl@0
|
85 |
std::size_t byte_count, typename uint_t<Bits>::fast initial_remainder
|
sl@0
|
86 |
BOOST_ACRC_DUMMY_PARM_TYPE );
|
sl@0
|
87 |
|
sl@0
|
88 |
template < std::size_t Bits, BOOST_CRC_PARM_TYPE TruncPoly >
|
sl@0
|
89 |
typename uint_t<Bits>::fast augmented_crc( void const *buffer,
|
sl@0
|
90 |
std::size_t byte_count
|
sl@0
|
91 |
BOOST_ACRC_DUMMY_PARM_TYPE );
|
sl@0
|
92 |
|
sl@0
|
93 |
typedef crc_optimal<16, 0x8005, 0, 0, true, true> crc_16_type;
|
sl@0
|
94 |
typedef crc_optimal<16, 0x1021, 0xFFFF, 0, false, false> crc_ccitt_type;
|
sl@0
|
95 |
typedef crc_optimal<16, 0x8408, 0, 0, true, true> crc_xmodem_type;
|
sl@0
|
96 |
|
sl@0
|
97 |
typedef crc_optimal<32, 0x04C11DB7, 0xFFFFFFFF, 0xFFFFFFFF, true, true>
|
sl@0
|
98 |
crc_32_type;
|
sl@0
|
99 |
|
sl@0
|
100 |
|
sl@0
|
101 |
// Forward declarations for implementation detail stuff --------------------//
|
sl@0
|
102 |
// (Just for the stuff that will be needed for the next two sections)
|
sl@0
|
103 |
|
sl@0
|
104 |
namespace detail
|
sl@0
|
105 |
{
|
sl@0
|
106 |
template < std::size_t Bits >
|
sl@0
|
107 |
struct mask_uint_t;
|
sl@0
|
108 |
|
sl@0
|
109 |
template < >
|
sl@0
|
110 |
struct mask_uint_t< std::numeric_limits<unsigned char>::digits >;
|
sl@0
|
111 |
|
sl@0
|
112 |
#if USHRT_MAX > UCHAR_MAX
|
sl@0
|
113 |
template < >
|
sl@0
|
114 |
struct mask_uint_t< std::numeric_limits<unsigned short>::digits >;
|
sl@0
|
115 |
#endif
|
sl@0
|
116 |
|
sl@0
|
117 |
#if UINT_MAX > USHRT_MAX
|
sl@0
|
118 |
template < >
|
sl@0
|
119 |
struct mask_uint_t< std::numeric_limits<unsigned int>::digits >;
|
sl@0
|
120 |
#endif
|
sl@0
|
121 |
|
sl@0
|
122 |
#if ULONG_MAX > UINT_MAX
|
sl@0
|
123 |
template < >
|
sl@0
|
124 |
struct mask_uint_t< std::numeric_limits<unsigned long>::digits >;
|
sl@0
|
125 |
#endif
|
sl@0
|
126 |
|
sl@0
|
127 |
template < std::size_t Bits, BOOST_CRC_PARM_TYPE TruncPoly, bool Reflect >
|
sl@0
|
128 |
struct crc_table_t;
|
sl@0
|
129 |
|
sl@0
|
130 |
template < std::size_t Bits, bool DoReflect >
|
sl@0
|
131 |
class crc_helper;
|
sl@0
|
132 |
|
sl@0
|
133 |
#ifndef BOOST_NO_TEMPLATE_PARTIAL_SPECIALIZATION
|
sl@0
|
134 |
template < std::size_t Bits >
|
sl@0
|
135 |
class crc_helper< Bits, false >;
|
sl@0
|
136 |
#endif
|
sl@0
|
137 |
|
sl@0
|
138 |
} // namespace detail
|
sl@0
|
139 |
|
sl@0
|
140 |
|
sl@0
|
141 |
// Simple cyclic redundancy code (CRC) class declaration -------------------//
|
sl@0
|
142 |
|
sl@0
|
143 |
template < std::size_t Bits >
|
sl@0
|
144 |
class crc_basic
|
sl@0
|
145 |
{
|
sl@0
|
146 |
// Implementation type
|
sl@0
|
147 |
typedef detail::mask_uint_t<Bits> masking_type;
|
sl@0
|
148 |
|
sl@0
|
149 |
public:
|
sl@0
|
150 |
// Type
|
sl@0
|
151 |
typedef typename masking_type::least value_type;
|
sl@0
|
152 |
|
sl@0
|
153 |
// Constant for the template parameter
|
sl@0
|
154 |
BOOST_STATIC_CONSTANT( std::size_t, bit_count = Bits );
|
sl@0
|
155 |
|
sl@0
|
156 |
// Constructor
|
sl@0
|
157 |
explicit crc_basic( value_type truncated_polynominal,
|
sl@0
|
158 |
value_type initial_remainder = 0, value_type final_xor_value = 0,
|
sl@0
|
159 |
bool reflect_input = false, bool reflect_remainder = false );
|
sl@0
|
160 |
|
sl@0
|
161 |
// Internal Operations
|
sl@0
|
162 |
value_type get_truncated_polynominal() const;
|
sl@0
|
163 |
value_type get_initial_remainder() const;
|
sl@0
|
164 |
value_type get_final_xor_value() const;
|
sl@0
|
165 |
bool get_reflect_input() const;
|
sl@0
|
166 |
bool get_reflect_remainder() const;
|
sl@0
|
167 |
|
sl@0
|
168 |
value_type get_interim_remainder() const;
|
sl@0
|
169 |
void reset( value_type new_rem );
|
sl@0
|
170 |
void reset();
|
sl@0
|
171 |
|
sl@0
|
172 |
// External Operations
|
sl@0
|
173 |
void process_bit( bool bit );
|
sl@0
|
174 |
void process_bits( unsigned char bits, std::size_t bit_count );
|
sl@0
|
175 |
void process_byte( unsigned char byte );
|
sl@0
|
176 |
void process_block( void const *bytes_begin, void const *bytes_end );
|
sl@0
|
177 |
void process_bytes( void const *buffer, std::size_t byte_count );
|
sl@0
|
178 |
|
sl@0
|
179 |
value_type checksum() const;
|
sl@0
|
180 |
|
sl@0
|
181 |
private:
|
sl@0
|
182 |
// Member data
|
sl@0
|
183 |
value_type rem_;
|
sl@0
|
184 |
value_type poly_, init_, final_; // non-const to allow assignability
|
sl@0
|
185 |
bool rft_in_, rft_out_; // non-const to allow assignability
|
sl@0
|
186 |
|
sl@0
|
187 |
}; // boost::crc_basic
|
sl@0
|
188 |
|
sl@0
|
189 |
|
sl@0
|
190 |
// Optimized cyclic redundancy code (CRC) class declaration ----------------//
|
sl@0
|
191 |
|
sl@0
|
192 |
template < std::size_t Bits, BOOST_CRC_PARM_TYPE TruncPoly,
|
sl@0
|
193 |
BOOST_CRC_PARM_TYPE InitRem, BOOST_CRC_PARM_TYPE FinalXor,
|
sl@0
|
194 |
bool ReflectIn, bool ReflectRem >
|
sl@0
|
195 |
class crc_optimal
|
sl@0
|
196 |
{
|
sl@0
|
197 |
// Implementation type
|
sl@0
|
198 |
typedef detail::mask_uint_t<Bits> masking_type;
|
sl@0
|
199 |
|
sl@0
|
200 |
public:
|
sl@0
|
201 |
// Type
|
sl@0
|
202 |
typedef typename masking_type::fast value_type;
|
sl@0
|
203 |
|
sl@0
|
204 |
// Constants for the template parameters
|
sl@0
|
205 |
BOOST_STATIC_CONSTANT( std::size_t, bit_count = Bits );
|
sl@0
|
206 |
BOOST_STATIC_CONSTANT( value_type, truncated_polynominal = TruncPoly );
|
sl@0
|
207 |
BOOST_STATIC_CONSTANT( value_type, initial_remainder = InitRem );
|
sl@0
|
208 |
BOOST_STATIC_CONSTANT( value_type, final_xor_value = FinalXor );
|
sl@0
|
209 |
BOOST_STATIC_CONSTANT( bool, reflect_input = ReflectIn );
|
sl@0
|
210 |
BOOST_STATIC_CONSTANT( bool, reflect_remainder = ReflectRem );
|
sl@0
|
211 |
|
sl@0
|
212 |
// Constructor
|
sl@0
|
213 |
explicit crc_optimal( value_type init_rem = InitRem );
|
sl@0
|
214 |
|
sl@0
|
215 |
// Internal Operations
|
sl@0
|
216 |
value_type get_truncated_polynominal() const;
|
sl@0
|
217 |
value_type get_initial_remainder() const;
|
sl@0
|
218 |
value_type get_final_xor_value() const;
|
sl@0
|
219 |
bool get_reflect_input() const;
|
sl@0
|
220 |
bool get_reflect_remainder() const;
|
sl@0
|
221 |
|
sl@0
|
222 |
value_type get_interim_remainder() const;
|
sl@0
|
223 |
void reset( value_type new_rem = InitRem );
|
sl@0
|
224 |
|
sl@0
|
225 |
// External Operations
|
sl@0
|
226 |
void process_byte( unsigned char byte );
|
sl@0
|
227 |
void process_block( void const *bytes_begin, void const *bytes_end );
|
sl@0
|
228 |
void process_bytes( void const *buffer, std::size_t byte_count );
|
sl@0
|
229 |
|
sl@0
|
230 |
value_type checksum() const;
|
sl@0
|
231 |
|
sl@0
|
232 |
// Operators
|
sl@0
|
233 |
void operator ()( unsigned char byte );
|
sl@0
|
234 |
value_type operator ()() const;
|
sl@0
|
235 |
|
sl@0
|
236 |
private:
|
sl@0
|
237 |
// The implementation of output reflection depends on both reflect states.
|
sl@0
|
238 |
BOOST_STATIC_CONSTANT( bool, reflect_output = (ReflectRem != ReflectIn) );
|
sl@0
|
239 |
|
sl@0
|
240 |
#ifndef __BORLANDC__
|
sl@0
|
241 |
#define BOOST_CRC_REF_OUT_VAL reflect_output
|
sl@0
|
242 |
#else
|
sl@0
|
243 |
typedef crc_optimal self_type;
|
sl@0
|
244 |
#define BOOST_CRC_REF_OUT_VAL (self_type::reflect_output)
|
sl@0
|
245 |
#endif
|
sl@0
|
246 |
|
sl@0
|
247 |
// More implementation types
|
sl@0
|
248 |
typedef detail::crc_table_t<Bits, TruncPoly, ReflectIn> crc_table_type;
|
sl@0
|
249 |
typedef detail::crc_helper<Bits, ReflectIn> helper_type;
|
sl@0
|
250 |
typedef detail::crc_helper<Bits, BOOST_CRC_REF_OUT_VAL> reflect_out_type;
|
sl@0
|
251 |
|
sl@0
|
252 |
#undef BOOST_CRC_REF_OUT_VAL
|
sl@0
|
253 |
|
sl@0
|
254 |
// Member data
|
sl@0
|
255 |
value_type rem_;
|
sl@0
|
256 |
|
sl@0
|
257 |
}; // boost::crc_optimal
|
sl@0
|
258 |
|
sl@0
|
259 |
|
sl@0
|
260 |
// Implementation detail stuff ---------------------------------------------//
|
sl@0
|
261 |
|
sl@0
|
262 |
namespace detail
|
sl@0
|
263 |
{
|
sl@0
|
264 |
// Forward declarations for more implementation details
|
sl@0
|
265 |
template < std::size_t Bits >
|
sl@0
|
266 |
struct high_uint_t;
|
sl@0
|
267 |
|
sl@0
|
268 |
template < std::size_t Bits >
|
sl@0
|
269 |
struct reflector;
|
sl@0
|
270 |
|
sl@0
|
271 |
|
sl@0
|
272 |
// Traits class for mask; given the bit number
|
sl@0
|
273 |
// (1-based), get the mask for that bit by itself.
|
sl@0
|
274 |
template < std::size_t Bits >
|
sl@0
|
275 |
struct high_uint_t
|
sl@0
|
276 |
: boost::uint_t< Bits >
|
sl@0
|
277 |
{
|
sl@0
|
278 |
typedef boost::uint_t<Bits> base_type;
|
sl@0
|
279 |
typedef typename base_type::least least;
|
sl@0
|
280 |
typedef typename base_type::fast fast;
|
sl@0
|
281 |
|
sl@0
|
282 |
#if defined(__EDG_VERSION__) && __EDG_VERSION__ <= 243
|
sl@0
|
283 |
static const least high_bit = 1ul << ( Bits - 1u );
|
sl@0
|
284 |
static const fast high_bit_fast = 1ul << ( Bits - 1u );
|
sl@0
|
285 |
#else
|
sl@0
|
286 |
BOOST_STATIC_CONSTANT( least, high_bit = (least( 1u ) << ( Bits
|
sl@0
|
287 |
- 1u )) );
|
sl@0
|
288 |
BOOST_STATIC_CONSTANT( fast, high_bit_fast = (fast( 1u ) << ( Bits
|
sl@0
|
289 |
- 1u )) );
|
sl@0
|
290 |
#endif
|
sl@0
|
291 |
|
sl@0
|
292 |
}; // boost::detail::high_uint_t
|
sl@0
|
293 |
|
sl@0
|
294 |
|
sl@0
|
295 |
// Reflection routine class wrapper
|
sl@0
|
296 |
// (since MS VC++ 6 couldn't handle the unwrapped version)
|
sl@0
|
297 |
template < std::size_t Bits >
|
sl@0
|
298 |
struct reflector
|
sl@0
|
299 |
{
|
sl@0
|
300 |
typedef typename boost::uint_t<Bits>::fast value_type;
|
sl@0
|
301 |
|
sl@0
|
302 |
static value_type reflect( value_type x );
|
sl@0
|
303 |
|
sl@0
|
304 |
}; // boost::detail::reflector
|
sl@0
|
305 |
|
sl@0
|
306 |
// Function that reflects its argument
|
sl@0
|
307 |
template < std::size_t Bits >
|
sl@0
|
308 |
typename reflector<Bits>::value_type
|
sl@0
|
309 |
reflector<Bits>::reflect
|
sl@0
|
310 |
(
|
sl@0
|
311 |
typename reflector<Bits>::value_type x
|
sl@0
|
312 |
)
|
sl@0
|
313 |
{
|
sl@0
|
314 |
value_type reflection = 0;
|
sl@0
|
315 |
value_type const one = 1;
|
sl@0
|
316 |
|
sl@0
|
317 |
for ( std::size_t i = 0 ; i < Bits ; ++i, x >>= 1 )
|
sl@0
|
318 |
{
|
sl@0
|
319 |
if ( x & one )
|
sl@0
|
320 |
{
|
sl@0
|
321 |
reflection |= ( one << (Bits - 1u - i) );
|
sl@0
|
322 |
}
|
sl@0
|
323 |
}
|
sl@0
|
324 |
|
sl@0
|
325 |
return reflection;
|
sl@0
|
326 |
}
|
sl@0
|
327 |
|
sl@0
|
328 |
|
sl@0
|
329 |
// Traits class for masks; given the bit number (1-based),
|
sl@0
|
330 |
// get the mask for that bit and its lower bits.
|
sl@0
|
331 |
template < std::size_t Bits >
|
sl@0
|
332 |
struct mask_uint_t
|
sl@0
|
333 |
: high_uint_t< Bits >
|
sl@0
|
334 |
{
|
sl@0
|
335 |
typedef high_uint_t<Bits> base_type;
|
sl@0
|
336 |
typedef typename base_type::least least;
|
sl@0
|
337 |
typedef typename base_type::fast fast;
|
sl@0
|
338 |
|
sl@0
|
339 |
#ifndef __BORLANDC__
|
sl@0
|
340 |
using base_type::high_bit;
|
sl@0
|
341 |
using base_type::high_bit_fast;
|
sl@0
|
342 |
#else
|
sl@0
|
343 |
BOOST_STATIC_CONSTANT( least, high_bit = base_type::high_bit );
|
sl@0
|
344 |
BOOST_STATIC_CONSTANT( fast, high_bit_fast = base_type::high_bit_fast );
|
sl@0
|
345 |
#endif
|
sl@0
|
346 |
|
sl@0
|
347 |
#if defined(__EDG_VERSION__) && __EDG_VERSION__ <= 243
|
sl@0
|
348 |
static const least sig_bits = (~( ~( 0ul ) << Bits )) ;
|
sl@0
|
349 |
#else
|
sl@0
|
350 |
BOOST_STATIC_CONSTANT( least, sig_bits = (~( ~(least( 0u )) << Bits )) );
|
sl@0
|
351 |
#endif
|
sl@0
|
352 |
#if defined(__GNUC__) && __GNUC__ == 4 && __GNUC_MINOR__ == 0 && __GNUC_PATCHLEVEL__ == 2
|
sl@0
|
353 |
// Work around a weird bug that ICEs the compiler in build_c_cast
|
sl@0
|
354 |
BOOST_STATIC_CONSTANT( fast, sig_bits_fast = static_cast<fast>(sig_bits) );
|
sl@0
|
355 |
#else
|
sl@0
|
356 |
BOOST_STATIC_CONSTANT( fast, sig_bits_fast = fast(sig_bits) );
|
sl@0
|
357 |
#endif
|
sl@0
|
358 |
}; // boost::detail::mask_uint_t
|
sl@0
|
359 |
|
sl@0
|
360 |
template < >
|
sl@0
|
361 |
struct mask_uint_t< std::numeric_limits<unsigned char>::digits >
|
sl@0
|
362 |
: high_uint_t< std::numeric_limits<unsigned char>::digits >
|
sl@0
|
363 |
{
|
sl@0
|
364 |
typedef high_uint_t<std::numeric_limits<unsigned char>::digits>
|
sl@0
|
365 |
base_type;
|
sl@0
|
366 |
typedef base_type::least least;
|
sl@0
|
367 |
typedef base_type::fast fast;
|
sl@0
|
368 |
|
sl@0
|
369 |
#ifndef __BORLANDC__
|
sl@0
|
370 |
using base_type::high_bit;
|
sl@0
|
371 |
using base_type::high_bit_fast;
|
sl@0
|
372 |
#else
|
sl@0
|
373 |
BOOST_STATIC_CONSTANT( least, high_bit = base_type::high_bit );
|
sl@0
|
374 |
BOOST_STATIC_CONSTANT( fast, high_bit_fast = base_type::high_bit_fast );
|
sl@0
|
375 |
#endif
|
sl@0
|
376 |
|
sl@0
|
377 |
BOOST_STATIC_CONSTANT( least, sig_bits = (~( least(0u) )) );
|
sl@0
|
378 |
BOOST_STATIC_CONSTANT( fast, sig_bits_fast = fast(sig_bits) );
|
sl@0
|
379 |
|
sl@0
|
380 |
}; // boost::detail::mask_uint_t
|
sl@0
|
381 |
|
sl@0
|
382 |
#if USHRT_MAX > UCHAR_MAX
|
sl@0
|
383 |
template < >
|
sl@0
|
384 |
struct mask_uint_t< std::numeric_limits<unsigned short>::digits >
|
sl@0
|
385 |
: high_uint_t< std::numeric_limits<unsigned short>::digits >
|
sl@0
|
386 |
{
|
sl@0
|
387 |
typedef high_uint_t<std::numeric_limits<unsigned short>::digits>
|
sl@0
|
388 |
base_type;
|
sl@0
|
389 |
typedef base_type::least least;
|
sl@0
|
390 |
typedef base_type::fast fast;
|
sl@0
|
391 |
|
sl@0
|
392 |
#ifndef __BORLANDC__
|
sl@0
|
393 |
using base_type::high_bit;
|
sl@0
|
394 |
using base_type::high_bit_fast;
|
sl@0
|
395 |
#else
|
sl@0
|
396 |
BOOST_STATIC_CONSTANT( least, high_bit = base_type::high_bit );
|
sl@0
|
397 |
BOOST_STATIC_CONSTANT( fast, high_bit_fast = base_type::high_bit_fast );
|
sl@0
|
398 |
#endif
|
sl@0
|
399 |
|
sl@0
|
400 |
BOOST_STATIC_CONSTANT( least, sig_bits = (~( least(0u) )) );
|
sl@0
|
401 |
BOOST_STATIC_CONSTANT( fast, sig_bits_fast = fast(sig_bits) );
|
sl@0
|
402 |
|
sl@0
|
403 |
}; // boost::detail::mask_uint_t
|
sl@0
|
404 |
#endif
|
sl@0
|
405 |
|
sl@0
|
406 |
#if UINT_MAX > USHRT_MAX
|
sl@0
|
407 |
template < >
|
sl@0
|
408 |
struct mask_uint_t< std::numeric_limits<unsigned int>::digits >
|
sl@0
|
409 |
: high_uint_t< std::numeric_limits<unsigned int>::digits >
|
sl@0
|
410 |
{
|
sl@0
|
411 |
typedef high_uint_t<std::numeric_limits<unsigned int>::digits>
|
sl@0
|
412 |
base_type;
|
sl@0
|
413 |
typedef base_type::least least;
|
sl@0
|
414 |
typedef base_type::fast fast;
|
sl@0
|
415 |
|
sl@0
|
416 |
#ifndef __BORLANDC__
|
sl@0
|
417 |
using base_type::high_bit;
|
sl@0
|
418 |
using base_type::high_bit_fast;
|
sl@0
|
419 |
#else
|
sl@0
|
420 |
BOOST_STATIC_CONSTANT( least, high_bit = base_type::high_bit );
|
sl@0
|
421 |
BOOST_STATIC_CONSTANT( fast, high_bit_fast = base_type::high_bit_fast );
|
sl@0
|
422 |
#endif
|
sl@0
|
423 |
|
sl@0
|
424 |
BOOST_STATIC_CONSTANT( least, sig_bits = (~( least(0u) )) );
|
sl@0
|
425 |
BOOST_STATIC_CONSTANT( fast, sig_bits_fast = fast(sig_bits) );
|
sl@0
|
426 |
|
sl@0
|
427 |
}; // boost::detail::mask_uint_t
|
sl@0
|
428 |
#endif
|
sl@0
|
429 |
|
sl@0
|
430 |
#if ULONG_MAX > UINT_MAX
|
sl@0
|
431 |
template < >
|
sl@0
|
432 |
struct mask_uint_t< std::numeric_limits<unsigned long>::digits >
|
sl@0
|
433 |
: high_uint_t< std::numeric_limits<unsigned long>::digits >
|
sl@0
|
434 |
{
|
sl@0
|
435 |
typedef high_uint_t<std::numeric_limits<unsigned long>::digits>
|
sl@0
|
436 |
base_type;
|
sl@0
|
437 |
typedef base_type::least least;
|
sl@0
|
438 |
typedef base_type::fast fast;
|
sl@0
|
439 |
|
sl@0
|
440 |
#ifndef __BORLANDC__
|
sl@0
|
441 |
using base_type::high_bit;
|
sl@0
|
442 |
using base_type::high_bit_fast;
|
sl@0
|
443 |
#else
|
sl@0
|
444 |
BOOST_STATIC_CONSTANT( least, high_bit = base_type::high_bit );
|
sl@0
|
445 |
BOOST_STATIC_CONSTANT( fast, high_bit_fast = base_type::high_bit_fast );
|
sl@0
|
446 |
#endif
|
sl@0
|
447 |
|
sl@0
|
448 |
BOOST_STATIC_CONSTANT( least, sig_bits = (~( least(0u) )) );
|
sl@0
|
449 |
BOOST_STATIC_CONSTANT( fast, sig_bits_fast = fast(sig_bits) );
|
sl@0
|
450 |
|
sl@0
|
451 |
}; // boost::detail::mask_uint_t
|
sl@0
|
452 |
#endif
|
sl@0
|
453 |
|
sl@0
|
454 |
|
sl@0
|
455 |
// CRC table generator
|
sl@0
|
456 |
template < std::size_t Bits, BOOST_CRC_PARM_TYPE TruncPoly, bool Reflect >
|
sl@0
|
457 |
struct crc_table_t
|
sl@0
|
458 |
{
|
sl@0
|
459 |
BOOST_STATIC_CONSTANT( std::size_t, byte_combos = (1ul << CHAR_BIT) );
|
sl@0
|
460 |
|
sl@0
|
461 |
typedef mask_uint_t<Bits> masking_type;
|
sl@0
|
462 |
typedef typename masking_type::fast value_type;
|
sl@0
|
463 |
#if defined(__BORLANDC__) && defined(_M_IX86) && (__BORLANDC__ == 0x560)
|
sl@0
|
464 |
// for some reason Borland's command line compiler (version 0x560)
|
sl@0
|
465 |
// chokes over this unless we do the calculation for it:
|
sl@0
|
466 |
typedef value_type table_type[ 0x100 ];
|
sl@0
|
467 |
#else
|
sl@0
|
468 |
typedef value_type table_type[ byte_combos ];
|
sl@0
|
469 |
#endif
|
sl@0
|
470 |
|
sl@0
|
471 |
static void init_table();
|
sl@0
|
472 |
|
sl@0
|
473 |
static table_type table_;
|
sl@0
|
474 |
|
sl@0
|
475 |
}; // boost::detail::crc_table_t
|
sl@0
|
476 |
|
sl@0
|
477 |
// CRC table generator static data member definition
|
sl@0
|
478 |
// (Some compilers [Borland C++] require the initializer to be present.)
|
sl@0
|
479 |
template < std::size_t Bits, BOOST_CRC_PARM_TYPE TruncPoly, bool Reflect >
|
sl@0
|
480 |
typename crc_table_t<Bits, TruncPoly, Reflect>::table_type
|
sl@0
|
481 |
crc_table_t<Bits, TruncPoly, Reflect>::table_
|
sl@0
|
482 |
= { 0 };
|
sl@0
|
483 |
|
sl@0
|
484 |
// Populate CRC lookup table
|
sl@0
|
485 |
template < std::size_t Bits, BOOST_CRC_PARM_TYPE TruncPoly, bool Reflect >
|
sl@0
|
486 |
void
|
sl@0
|
487 |
crc_table_t<Bits, TruncPoly, Reflect>::init_table
|
sl@0
|
488 |
(
|
sl@0
|
489 |
)
|
sl@0
|
490 |
{
|
sl@0
|
491 |
// compute table only on the first run
|
sl@0
|
492 |
static bool did_init = false;
|
sl@0
|
493 |
if ( did_init ) return;
|
sl@0
|
494 |
|
sl@0
|
495 |
// factor-out constants to avoid recalculation
|
sl@0
|
496 |
value_type const fast_hi_bit = masking_type::high_bit_fast;
|
sl@0
|
497 |
unsigned char const byte_hi_bit = 1u << (CHAR_BIT - 1u);
|
sl@0
|
498 |
|
sl@0
|
499 |
// loop over every possible dividend value
|
sl@0
|
500 |
unsigned char dividend = 0;
|
sl@0
|
501 |
do
|
sl@0
|
502 |
{
|
sl@0
|
503 |
value_type remainder = 0;
|
sl@0
|
504 |
|
sl@0
|
505 |
// go through all the dividend's bits
|
sl@0
|
506 |
for ( unsigned char mask = byte_hi_bit ; mask ; mask >>= 1 )
|
sl@0
|
507 |
{
|
sl@0
|
508 |
// check if divisor fits
|
sl@0
|
509 |
if ( dividend & mask )
|
sl@0
|
510 |
{
|
sl@0
|
511 |
remainder ^= fast_hi_bit;
|
sl@0
|
512 |
}
|
sl@0
|
513 |
|
sl@0
|
514 |
// do polynominal division
|
sl@0
|
515 |
if ( remainder & fast_hi_bit )
|
sl@0
|
516 |
{
|
sl@0
|
517 |
remainder <<= 1;
|
sl@0
|
518 |
remainder ^= TruncPoly;
|
sl@0
|
519 |
}
|
sl@0
|
520 |
else
|
sl@0
|
521 |
{
|
sl@0
|
522 |
remainder <<= 1;
|
sl@0
|
523 |
}
|
sl@0
|
524 |
}
|
sl@0
|
525 |
|
sl@0
|
526 |
table_[ crc_helper<CHAR_BIT, Reflect>::reflect(dividend) ]
|
sl@0
|
527 |
= crc_helper<Bits, Reflect>::reflect( remainder );
|
sl@0
|
528 |
}
|
sl@0
|
529 |
while ( ++dividend );
|
sl@0
|
530 |
|
sl@0
|
531 |
did_init = true;
|
sl@0
|
532 |
}
|
sl@0
|
533 |
|
sl@0
|
534 |
#ifndef BOOST_NO_TEMPLATE_PARTIAL_SPECIALIZATION
|
sl@0
|
535 |
// Align the msb of the remainder to a byte
|
sl@0
|
536 |
template < std::size_t Bits, bool RightShift >
|
sl@0
|
537 |
class remainder
|
sl@0
|
538 |
{
|
sl@0
|
539 |
public:
|
sl@0
|
540 |
typedef typename uint_t<Bits>::fast value_type;
|
sl@0
|
541 |
|
sl@0
|
542 |
static unsigned char align_msb( value_type rem )
|
sl@0
|
543 |
{ return rem >> (Bits - CHAR_BIT); }
|
sl@0
|
544 |
};
|
sl@0
|
545 |
|
sl@0
|
546 |
// Specialization for the case that the remainder has less
|
sl@0
|
547 |
// bits than a byte: align the remainder msb to the byte msb
|
sl@0
|
548 |
template < std::size_t Bits >
|
sl@0
|
549 |
class remainder< Bits, false >
|
sl@0
|
550 |
{
|
sl@0
|
551 |
public:
|
sl@0
|
552 |
typedef typename uint_t<Bits>::fast value_type;
|
sl@0
|
553 |
|
sl@0
|
554 |
static unsigned char align_msb( value_type rem )
|
sl@0
|
555 |
{ return rem << (CHAR_BIT - Bits); }
|
sl@0
|
556 |
};
|
sl@0
|
557 |
#endif
|
sl@0
|
558 |
|
sl@0
|
559 |
// CRC helper routines
|
sl@0
|
560 |
template < std::size_t Bits, bool DoReflect >
|
sl@0
|
561 |
class crc_helper
|
sl@0
|
562 |
{
|
sl@0
|
563 |
public:
|
sl@0
|
564 |
// Type
|
sl@0
|
565 |
typedef typename uint_t<Bits>::fast value_type;
|
sl@0
|
566 |
|
sl@0
|
567 |
#ifndef BOOST_NO_TEMPLATE_PARTIAL_SPECIALIZATION
|
sl@0
|
568 |
// Possibly reflect a remainder
|
sl@0
|
569 |
static value_type reflect( value_type x )
|
sl@0
|
570 |
{ return detail::reflector<Bits>::reflect( x ); }
|
sl@0
|
571 |
|
sl@0
|
572 |
// Compare a byte to the remainder's highest byte
|
sl@0
|
573 |
static unsigned char index( value_type rem, unsigned char x )
|
sl@0
|
574 |
{ return x ^ rem; }
|
sl@0
|
575 |
|
sl@0
|
576 |
// Shift out the remainder's highest byte
|
sl@0
|
577 |
static value_type shift( value_type rem )
|
sl@0
|
578 |
{ return rem >> CHAR_BIT; }
|
sl@0
|
579 |
#else
|
sl@0
|
580 |
// Possibly reflect a remainder
|
sl@0
|
581 |
static value_type reflect( value_type x )
|
sl@0
|
582 |
{ return DoReflect ? detail::reflector<Bits>::reflect( x ) : x; }
|
sl@0
|
583 |
|
sl@0
|
584 |
// Compare a byte to the remainder's highest byte
|
sl@0
|
585 |
static unsigned char index( value_type rem, unsigned char x )
|
sl@0
|
586 |
{ return x ^ ( DoReflect ? rem :
|
sl@0
|
587 |
((Bits>CHAR_BIT)?( rem >> (Bits - CHAR_BIT) ) :
|
sl@0
|
588 |
( rem << (CHAR_BIT - Bits) ))); }
|
sl@0
|
589 |
|
sl@0
|
590 |
// Shift out the remainder's highest byte
|
sl@0
|
591 |
static value_type shift( value_type rem )
|
sl@0
|
592 |
{ return DoReflect ? rem >> CHAR_BIT : rem << CHAR_BIT; }
|
sl@0
|
593 |
#endif
|
sl@0
|
594 |
|
sl@0
|
595 |
}; // boost::detail::crc_helper
|
sl@0
|
596 |
|
sl@0
|
597 |
#ifndef BOOST_NO_TEMPLATE_PARTIAL_SPECIALIZATION
|
sl@0
|
598 |
template < std::size_t Bits >
|
sl@0
|
599 |
class crc_helper<Bits, false>
|
sl@0
|
600 |
{
|
sl@0
|
601 |
public:
|
sl@0
|
602 |
// Type
|
sl@0
|
603 |
typedef typename uint_t<Bits>::fast value_type;
|
sl@0
|
604 |
|
sl@0
|
605 |
// Possibly reflect a remainder
|
sl@0
|
606 |
static value_type reflect( value_type x )
|
sl@0
|
607 |
{ return x; }
|
sl@0
|
608 |
|
sl@0
|
609 |
// Compare a byte to the remainder's highest byte
|
sl@0
|
610 |
static unsigned char index( value_type rem, unsigned char x )
|
sl@0
|
611 |
{ return x ^ remainder<Bits,(Bits>CHAR_BIT)>::align_msb( rem ); }
|
sl@0
|
612 |
|
sl@0
|
613 |
// Shift out the remainder's highest byte
|
sl@0
|
614 |
static value_type shift( value_type rem )
|
sl@0
|
615 |
{ return rem << CHAR_BIT; }
|
sl@0
|
616 |
|
sl@0
|
617 |
}; // boost::detail::crc_helper
|
sl@0
|
618 |
#endif
|
sl@0
|
619 |
|
sl@0
|
620 |
|
sl@0
|
621 |
} // namespace detail
|
sl@0
|
622 |
|
sl@0
|
623 |
|
sl@0
|
624 |
// Simple CRC class function definitions -----------------------------------//
|
sl@0
|
625 |
|
sl@0
|
626 |
template < std::size_t Bits >
|
sl@0
|
627 |
inline
|
sl@0
|
628 |
crc_basic<Bits>::crc_basic
|
sl@0
|
629 |
(
|
sl@0
|
630 |
typename crc_basic<Bits>::value_type truncated_polynominal,
|
sl@0
|
631 |
typename crc_basic<Bits>::value_type initial_remainder, // = 0
|
sl@0
|
632 |
typename crc_basic<Bits>::value_type final_xor_value, // = 0
|
sl@0
|
633 |
bool reflect_input, // = false
|
sl@0
|
634 |
bool reflect_remainder // = false
|
sl@0
|
635 |
)
|
sl@0
|
636 |
: rem_( initial_remainder ), poly_( truncated_polynominal )
|
sl@0
|
637 |
, init_( initial_remainder ), final_( final_xor_value )
|
sl@0
|
638 |
, rft_in_( reflect_input ), rft_out_( reflect_remainder )
|
sl@0
|
639 |
{
|
sl@0
|
640 |
}
|
sl@0
|
641 |
|
sl@0
|
642 |
template < std::size_t Bits >
|
sl@0
|
643 |
inline
|
sl@0
|
644 |
typename crc_basic<Bits>::value_type
|
sl@0
|
645 |
crc_basic<Bits>::get_truncated_polynominal
|
sl@0
|
646 |
(
|
sl@0
|
647 |
) const
|
sl@0
|
648 |
{
|
sl@0
|
649 |
return poly_;
|
sl@0
|
650 |
}
|
sl@0
|
651 |
|
sl@0
|
652 |
template < std::size_t Bits >
|
sl@0
|
653 |
inline
|
sl@0
|
654 |
typename crc_basic<Bits>::value_type
|
sl@0
|
655 |
crc_basic<Bits>::get_initial_remainder
|
sl@0
|
656 |
(
|
sl@0
|
657 |
) const
|
sl@0
|
658 |
{
|
sl@0
|
659 |
return init_;
|
sl@0
|
660 |
}
|
sl@0
|
661 |
|
sl@0
|
662 |
template < std::size_t Bits >
|
sl@0
|
663 |
inline
|
sl@0
|
664 |
typename crc_basic<Bits>::value_type
|
sl@0
|
665 |
crc_basic<Bits>::get_final_xor_value
|
sl@0
|
666 |
(
|
sl@0
|
667 |
) const
|
sl@0
|
668 |
{
|
sl@0
|
669 |
return final_;
|
sl@0
|
670 |
}
|
sl@0
|
671 |
|
sl@0
|
672 |
template < std::size_t Bits >
|
sl@0
|
673 |
inline
|
sl@0
|
674 |
bool
|
sl@0
|
675 |
crc_basic<Bits>::get_reflect_input
|
sl@0
|
676 |
(
|
sl@0
|
677 |
) const
|
sl@0
|
678 |
{
|
sl@0
|
679 |
return rft_in_;
|
sl@0
|
680 |
}
|
sl@0
|
681 |
|
sl@0
|
682 |
template < std::size_t Bits >
|
sl@0
|
683 |
inline
|
sl@0
|
684 |
bool
|
sl@0
|
685 |
crc_basic<Bits>::get_reflect_remainder
|
sl@0
|
686 |
(
|
sl@0
|
687 |
) const
|
sl@0
|
688 |
{
|
sl@0
|
689 |
return rft_out_;
|
sl@0
|
690 |
}
|
sl@0
|
691 |
|
sl@0
|
692 |
template < std::size_t Bits >
|
sl@0
|
693 |
inline
|
sl@0
|
694 |
typename crc_basic<Bits>::value_type
|
sl@0
|
695 |
crc_basic<Bits>::get_interim_remainder
|
sl@0
|
696 |
(
|
sl@0
|
697 |
) const
|
sl@0
|
698 |
{
|
sl@0
|
699 |
return rem_ & masking_type::sig_bits;
|
sl@0
|
700 |
}
|
sl@0
|
701 |
|
sl@0
|
702 |
template < std::size_t Bits >
|
sl@0
|
703 |
inline
|
sl@0
|
704 |
void
|
sl@0
|
705 |
crc_basic<Bits>::reset
|
sl@0
|
706 |
(
|
sl@0
|
707 |
typename crc_basic<Bits>::value_type new_rem
|
sl@0
|
708 |
)
|
sl@0
|
709 |
{
|
sl@0
|
710 |
rem_ = new_rem;
|
sl@0
|
711 |
}
|
sl@0
|
712 |
|
sl@0
|
713 |
template < std::size_t Bits >
|
sl@0
|
714 |
inline
|
sl@0
|
715 |
void
|
sl@0
|
716 |
crc_basic<Bits>::reset
|
sl@0
|
717 |
(
|
sl@0
|
718 |
)
|
sl@0
|
719 |
{
|
sl@0
|
720 |
this->reset( this->get_initial_remainder() );
|
sl@0
|
721 |
}
|
sl@0
|
722 |
|
sl@0
|
723 |
template < std::size_t Bits >
|
sl@0
|
724 |
inline
|
sl@0
|
725 |
void
|
sl@0
|
726 |
crc_basic<Bits>::process_bit
|
sl@0
|
727 |
(
|
sl@0
|
728 |
bool bit
|
sl@0
|
729 |
)
|
sl@0
|
730 |
{
|
sl@0
|
731 |
value_type const high_bit_mask = masking_type::high_bit;
|
sl@0
|
732 |
|
sl@0
|
733 |
// compare the new bit with the remainder's highest
|
sl@0
|
734 |
rem_ ^= ( bit ? high_bit_mask : 0u );
|
sl@0
|
735 |
|
sl@0
|
736 |
// a full polynominal division step is done when the highest bit is one
|
sl@0
|
737 |
bool const do_poly_div = static_cast<bool>( rem_ & high_bit_mask );
|
sl@0
|
738 |
|
sl@0
|
739 |
// shift out the highest bit
|
sl@0
|
740 |
rem_ <<= 1;
|
sl@0
|
741 |
|
sl@0
|
742 |
// carry out the division, if needed
|
sl@0
|
743 |
if ( do_poly_div )
|
sl@0
|
744 |
{
|
sl@0
|
745 |
rem_ ^= poly_;
|
sl@0
|
746 |
}
|
sl@0
|
747 |
}
|
sl@0
|
748 |
|
sl@0
|
749 |
template < std::size_t Bits >
|
sl@0
|
750 |
void
|
sl@0
|
751 |
crc_basic<Bits>::process_bits
|
sl@0
|
752 |
(
|
sl@0
|
753 |
unsigned char bits,
|
sl@0
|
754 |
std::size_t bit_count
|
sl@0
|
755 |
)
|
sl@0
|
756 |
{
|
sl@0
|
757 |
// ignore the bits above the ones we want
|
sl@0
|
758 |
bits <<= CHAR_BIT - bit_count;
|
sl@0
|
759 |
|
sl@0
|
760 |
// compute the CRC for each bit, starting with the upper ones
|
sl@0
|
761 |
unsigned char const high_bit_mask = 1u << ( CHAR_BIT - 1u );
|
sl@0
|
762 |
for ( std::size_t i = bit_count ; i > 0u ; --i, bits <<= 1u )
|
sl@0
|
763 |
{
|
sl@0
|
764 |
process_bit( static_cast<bool>(bits & high_bit_mask) );
|
sl@0
|
765 |
}
|
sl@0
|
766 |
}
|
sl@0
|
767 |
|
sl@0
|
768 |
template < std::size_t Bits >
|
sl@0
|
769 |
inline
|
sl@0
|
770 |
void
|
sl@0
|
771 |
crc_basic<Bits>::process_byte
|
sl@0
|
772 |
(
|
sl@0
|
773 |
unsigned char byte
|
sl@0
|
774 |
)
|
sl@0
|
775 |
{
|
sl@0
|
776 |
process_bits( (rft_in_ ? detail::reflector<CHAR_BIT>::reflect(byte)
|
sl@0
|
777 |
: byte), CHAR_BIT );
|
sl@0
|
778 |
}
|
sl@0
|
779 |
|
sl@0
|
780 |
template < std::size_t Bits >
|
sl@0
|
781 |
void
|
sl@0
|
782 |
crc_basic<Bits>::process_block
|
sl@0
|
783 |
(
|
sl@0
|
784 |
void const * bytes_begin,
|
sl@0
|
785 |
void const * bytes_end
|
sl@0
|
786 |
)
|
sl@0
|
787 |
{
|
sl@0
|
788 |
for ( unsigned char const * p
|
sl@0
|
789 |
= static_cast<unsigned char const *>(bytes_begin) ; p < bytes_end ; ++p )
|
sl@0
|
790 |
{
|
sl@0
|
791 |
process_byte( *p );
|
sl@0
|
792 |
}
|
sl@0
|
793 |
}
|
sl@0
|
794 |
|
sl@0
|
795 |
template < std::size_t Bits >
|
sl@0
|
796 |
inline
|
sl@0
|
797 |
void
|
sl@0
|
798 |
crc_basic<Bits>::process_bytes
|
sl@0
|
799 |
(
|
sl@0
|
800 |
void const * buffer,
|
sl@0
|
801 |
std::size_t byte_count
|
sl@0
|
802 |
)
|
sl@0
|
803 |
{
|
sl@0
|
804 |
unsigned char const * const b = static_cast<unsigned char const *>(
|
sl@0
|
805 |
buffer );
|
sl@0
|
806 |
|
sl@0
|
807 |
process_block( b, b + byte_count );
|
sl@0
|
808 |
}
|
sl@0
|
809 |
|
sl@0
|
810 |
template < std::size_t Bits >
|
sl@0
|
811 |
inline
|
sl@0
|
812 |
typename crc_basic<Bits>::value_type
|
sl@0
|
813 |
crc_basic<Bits>::checksum
|
sl@0
|
814 |
(
|
sl@0
|
815 |
) const
|
sl@0
|
816 |
{
|
sl@0
|
817 |
return ( (rft_out_ ? detail::reflector<Bits>::reflect( rem_ ) : rem_)
|
sl@0
|
818 |
^ final_ ) & masking_type::sig_bits;
|
sl@0
|
819 |
}
|
sl@0
|
820 |
|
sl@0
|
821 |
|
sl@0
|
822 |
// Optimized CRC class function definitions --------------------------------//
|
sl@0
|
823 |
|
sl@0
|
824 |
// Macro to compact code
|
sl@0
|
825 |
#define BOOST_CRC_OPTIMAL_NAME crc_optimal<Bits, TruncPoly, InitRem, \
|
sl@0
|
826 |
FinalXor, ReflectIn, ReflectRem>
|
sl@0
|
827 |
|
sl@0
|
828 |
template < std::size_t Bits, BOOST_CRC_PARM_TYPE TruncPoly,
|
sl@0
|
829 |
BOOST_CRC_PARM_TYPE InitRem, BOOST_CRC_PARM_TYPE FinalXor,
|
sl@0
|
830 |
bool ReflectIn, bool ReflectRem >
|
sl@0
|
831 |
inline
|
sl@0
|
832 |
BOOST_CRC_OPTIMAL_NAME::crc_optimal
|
sl@0
|
833 |
(
|
sl@0
|
834 |
typename BOOST_CRC_OPTIMAL_NAME::value_type init_rem // = InitRem
|
sl@0
|
835 |
)
|
sl@0
|
836 |
: rem_( helper_type::reflect(init_rem) )
|
sl@0
|
837 |
{
|
sl@0
|
838 |
crc_table_type::init_table();
|
sl@0
|
839 |
}
|
sl@0
|
840 |
|
sl@0
|
841 |
template < std::size_t Bits, BOOST_CRC_PARM_TYPE TruncPoly,
|
sl@0
|
842 |
BOOST_CRC_PARM_TYPE InitRem, BOOST_CRC_PARM_TYPE FinalXor,
|
sl@0
|
843 |
bool ReflectIn, bool ReflectRem >
|
sl@0
|
844 |
inline
|
sl@0
|
845 |
typename BOOST_CRC_OPTIMAL_NAME::value_type
|
sl@0
|
846 |
BOOST_CRC_OPTIMAL_NAME::get_truncated_polynominal
|
sl@0
|
847 |
(
|
sl@0
|
848 |
) const
|
sl@0
|
849 |
{
|
sl@0
|
850 |
return TruncPoly;
|
sl@0
|
851 |
}
|
sl@0
|
852 |
|
sl@0
|
853 |
template < std::size_t Bits, BOOST_CRC_PARM_TYPE TruncPoly,
|
sl@0
|
854 |
BOOST_CRC_PARM_TYPE InitRem, BOOST_CRC_PARM_TYPE FinalXor,
|
sl@0
|
855 |
bool ReflectIn, bool ReflectRem >
|
sl@0
|
856 |
inline
|
sl@0
|
857 |
typename BOOST_CRC_OPTIMAL_NAME::value_type
|
sl@0
|
858 |
BOOST_CRC_OPTIMAL_NAME::get_initial_remainder
|
sl@0
|
859 |
(
|
sl@0
|
860 |
) const
|
sl@0
|
861 |
{
|
sl@0
|
862 |
return InitRem;
|
sl@0
|
863 |
}
|
sl@0
|
864 |
|
sl@0
|
865 |
template < std::size_t Bits, BOOST_CRC_PARM_TYPE TruncPoly,
|
sl@0
|
866 |
BOOST_CRC_PARM_TYPE InitRem, BOOST_CRC_PARM_TYPE FinalXor,
|
sl@0
|
867 |
bool ReflectIn, bool ReflectRem >
|
sl@0
|
868 |
inline
|
sl@0
|
869 |
typename BOOST_CRC_OPTIMAL_NAME::value_type
|
sl@0
|
870 |
BOOST_CRC_OPTIMAL_NAME::get_final_xor_value
|
sl@0
|
871 |
(
|
sl@0
|
872 |
) const
|
sl@0
|
873 |
{
|
sl@0
|
874 |
return FinalXor;
|
sl@0
|
875 |
}
|
sl@0
|
876 |
|
sl@0
|
877 |
template < std::size_t Bits, BOOST_CRC_PARM_TYPE TruncPoly,
|
sl@0
|
878 |
BOOST_CRC_PARM_TYPE InitRem, BOOST_CRC_PARM_TYPE FinalXor,
|
sl@0
|
879 |
bool ReflectIn, bool ReflectRem >
|
sl@0
|
880 |
inline
|
sl@0
|
881 |
bool
|
sl@0
|
882 |
BOOST_CRC_OPTIMAL_NAME::get_reflect_input
|
sl@0
|
883 |
(
|
sl@0
|
884 |
) const
|
sl@0
|
885 |
{
|
sl@0
|
886 |
return ReflectIn;
|
sl@0
|
887 |
}
|
sl@0
|
888 |
|
sl@0
|
889 |
template < std::size_t Bits, BOOST_CRC_PARM_TYPE TruncPoly,
|
sl@0
|
890 |
BOOST_CRC_PARM_TYPE InitRem, BOOST_CRC_PARM_TYPE FinalXor,
|
sl@0
|
891 |
bool ReflectIn, bool ReflectRem >
|
sl@0
|
892 |
inline
|
sl@0
|
893 |
bool
|
sl@0
|
894 |
BOOST_CRC_OPTIMAL_NAME::get_reflect_remainder
|
sl@0
|
895 |
(
|
sl@0
|
896 |
) const
|
sl@0
|
897 |
{
|
sl@0
|
898 |
return ReflectRem;
|
sl@0
|
899 |
}
|
sl@0
|
900 |
|
sl@0
|
901 |
template < std::size_t Bits, BOOST_CRC_PARM_TYPE TruncPoly,
|
sl@0
|
902 |
BOOST_CRC_PARM_TYPE InitRem, BOOST_CRC_PARM_TYPE FinalXor,
|
sl@0
|
903 |
bool ReflectIn, bool ReflectRem >
|
sl@0
|
904 |
inline
|
sl@0
|
905 |
typename BOOST_CRC_OPTIMAL_NAME::value_type
|
sl@0
|
906 |
BOOST_CRC_OPTIMAL_NAME::get_interim_remainder
|
sl@0
|
907 |
(
|
sl@0
|
908 |
) const
|
sl@0
|
909 |
{
|
sl@0
|
910 |
// Interim remainder should be _un_-reflected, so we have to undo it.
|
sl@0
|
911 |
return helper_type::reflect( rem_ ) & masking_type::sig_bits_fast;
|
sl@0
|
912 |
}
|
sl@0
|
913 |
|
sl@0
|
914 |
template < std::size_t Bits, BOOST_CRC_PARM_TYPE TruncPoly,
|
sl@0
|
915 |
BOOST_CRC_PARM_TYPE InitRem, BOOST_CRC_PARM_TYPE FinalXor,
|
sl@0
|
916 |
bool ReflectIn, bool ReflectRem >
|
sl@0
|
917 |
inline
|
sl@0
|
918 |
void
|
sl@0
|
919 |
BOOST_CRC_OPTIMAL_NAME::reset
|
sl@0
|
920 |
(
|
sl@0
|
921 |
typename BOOST_CRC_OPTIMAL_NAME::value_type new_rem // = InitRem
|
sl@0
|
922 |
)
|
sl@0
|
923 |
{
|
sl@0
|
924 |
rem_ = helper_type::reflect( new_rem );
|
sl@0
|
925 |
}
|
sl@0
|
926 |
|
sl@0
|
927 |
template < std::size_t Bits, BOOST_CRC_PARM_TYPE TruncPoly,
|
sl@0
|
928 |
BOOST_CRC_PARM_TYPE InitRem, BOOST_CRC_PARM_TYPE FinalXor,
|
sl@0
|
929 |
bool ReflectIn, bool ReflectRem >
|
sl@0
|
930 |
inline
|
sl@0
|
931 |
void
|
sl@0
|
932 |
BOOST_CRC_OPTIMAL_NAME::process_byte
|
sl@0
|
933 |
(
|
sl@0
|
934 |
unsigned char byte
|
sl@0
|
935 |
)
|
sl@0
|
936 |
{
|
sl@0
|
937 |
process_bytes( &byte, sizeof(byte) );
|
sl@0
|
938 |
}
|
sl@0
|
939 |
|
sl@0
|
940 |
template < std::size_t Bits, BOOST_CRC_PARM_TYPE TruncPoly,
|
sl@0
|
941 |
BOOST_CRC_PARM_TYPE InitRem, BOOST_CRC_PARM_TYPE FinalXor,
|
sl@0
|
942 |
bool ReflectIn, bool ReflectRem >
|
sl@0
|
943 |
void
|
sl@0
|
944 |
BOOST_CRC_OPTIMAL_NAME::process_block
|
sl@0
|
945 |
(
|
sl@0
|
946 |
void const * bytes_begin,
|
sl@0
|
947 |
void const * bytes_end
|
sl@0
|
948 |
)
|
sl@0
|
949 |
{
|
sl@0
|
950 |
// Recompute the CRC for each byte passed
|
sl@0
|
951 |
for ( unsigned char const * p
|
sl@0
|
952 |
= static_cast<unsigned char const *>(bytes_begin) ; p < bytes_end ; ++p )
|
sl@0
|
953 |
{
|
sl@0
|
954 |
// Compare the new byte with the remainder's higher bits to
|
sl@0
|
955 |
// get the new bits, shift out the remainder's current higher
|
sl@0
|
956 |
// bits, and update the remainder with the polynominal division
|
sl@0
|
957 |
// of the new bits.
|
sl@0
|
958 |
unsigned char const byte_index = helper_type::index( rem_, *p );
|
sl@0
|
959 |
rem_ = helper_type::shift( rem_ );
|
sl@0
|
960 |
rem_ ^= crc_table_type::table_[ byte_index ];
|
sl@0
|
961 |
}
|
sl@0
|
962 |
}
|
sl@0
|
963 |
|
sl@0
|
964 |
template < std::size_t Bits, BOOST_CRC_PARM_TYPE TruncPoly,
|
sl@0
|
965 |
BOOST_CRC_PARM_TYPE InitRem, BOOST_CRC_PARM_TYPE FinalXor,
|
sl@0
|
966 |
bool ReflectIn, bool ReflectRem >
|
sl@0
|
967 |
inline
|
sl@0
|
968 |
void
|
sl@0
|
969 |
BOOST_CRC_OPTIMAL_NAME::process_bytes
|
sl@0
|
970 |
(
|
sl@0
|
971 |
void const * buffer,
|
sl@0
|
972 |
std::size_t byte_count
|
sl@0
|
973 |
)
|
sl@0
|
974 |
{
|
sl@0
|
975 |
unsigned char const * const b = static_cast<unsigned char const *>(
|
sl@0
|
976 |
buffer );
|
sl@0
|
977 |
process_block( b, b + byte_count );
|
sl@0
|
978 |
}
|
sl@0
|
979 |
|
sl@0
|
980 |
template < std::size_t Bits, BOOST_CRC_PARM_TYPE TruncPoly,
|
sl@0
|
981 |
BOOST_CRC_PARM_TYPE InitRem, BOOST_CRC_PARM_TYPE FinalXor,
|
sl@0
|
982 |
bool ReflectIn, bool ReflectRem >
|
sl@0
|
983 |
inline
|
sl@0
|
984 |
typename BOOST_CRC_OPTIMAL_NAME::value_type
|
sl@0
|
985 |
BOOST_CRC_OPTIMAL_NAME::checksum
|
sl@0
|
986 |
(
|
sl@0
|
987 |
) const
|
sl@0
|
988 |
{
|
sl@0
|
989 |
return ( reflect_out_type::reflect(rem_) ^ get_final_xor_value() )
|
sl@0
|
990 |
& masking_type::sig_bits_fast;
|
sl@0
|
991 |
}
|
sl@0
|
992 |
|
sl@0
|
993 |
template < std::size_t Bits, BOOST_CRC_PARM_TYPE TruncPoly,
|
sl@0
|
994 |
BOOST_CRC_PARM_TYPE InitRem, BOOST_CRC_PARM_TYPE FinalXor,
|
sl@0
|
995 |
bool ReflectIn, bool ReflectRem >
|
sl@0
|
996 |
inline
|
sl@0
|
997 |
void
|
sl@0
|
998 |
BOOST_CRC_OPTIMAL_NAME::operator ()
|
sl@0
|
999 |
(
|
sl@0
|
1000 |
unsigned char byte
|
sl@0
|
1001 |
)
|
sl@0
|
1002 |
{
|
sl@0
|
1003 |
process_byte( byte );
|
sl@0
|
1004 |
}
|
sl@0
|
1005 |
|
sl@0
|
1006 |
template < std::size_t Bits, BOOST_CRC_PARM_TYPE TruncPoly,
|
sl@0
|
1007 |
BOOST_CRC_PARM_TYPE InitRem, BOOST_CRC_PARM_TYPE FinalXor,
|
sl@0
|
1008 |
bool ReflectIn, bool ReflectRem >
|
sl@0
|
1009 |
inline
|
sl@0
|
1010 |
typename BOOST_CRC_OPTIMAL_NAME::value_type
|
sl@0
|
1011 |
BOOST_CRC_OPTIMAL_NAME::operator ()
|
sl@0
|
1012 |
(
|
sl@0
|
1013 |
) const
|
sl@0
|
1014 |
{
|
sl@0
|
1015 |
return checksum();
|
sl@0
|
1016 |
}
|
sl@0
|
1017 |
|
sl@0
|
1018 |
|
sl@0
|
1019 |
// CRC computation function definition -------------------------------------//
|
sl@0
|
1020 |
|
sl@0
|
1021 |
template < std::size_t Bits, BOOST_CRC_PARM_TYPE TruncPoly,
|
sl@0
|
1022 |
BOOST_CRC_PARM_TYPE InitRem, BOOST_CRC_PARM_TYPE FinalXor,
|
sl@0
|
1023 |
bool ReflectIn, bool ReflectRem >
|
sl@0
|
1024 |
inline
|
sl@0
|
1025 |
typename uint_t<Bits>::fast
|
sl@0
|
1026 |
crc
|
sl@0
|
1027 |
(
|
sl@0
|
1028 |
void const * buffer,
|
sl@0
|
1029 |
std::size_t byte_count
|
sl@0
|
1030 |
BOOST_CRC_DUMMY_INIT
|
sl@0
|
1031 |
)
|
sl@0
|
1032 |
{
|
sl@0
|
1033 |
BOOST_CRC_OPTIMAL_NAME computer;
|
sl@0
|
1034 |
computer.process_bytes( buffer, byte_count );
|
sl@0
|
1035 |
return computer.checksum();
|
sl@0
|
1036 |
}
|
sl@0
|
1037 |
|
sl@0
|
1038 |
|
sl@0
|
1039 |
// Augmented-message CRC computation function definitions ------------------//
|
sl@0
|
1040 |
|
sl@0
|
1041 |
template < std::size_t Bits, BOOST_CRC_PARM_TYPE TruncPoly >
|
sl@0
|
1042 |
typename uint_t<Bits>::fast
|
sl@0
|
1043 |
augmented_crc
|
sl@0
|
1044 |
(
|
sl@0
|
1045 |
void const * buffer,
|
sl@0
|
1046 |
std::size_t byte_count,
|
sl@0
|
1047 |
typename uint_t<Bits>::fast initial_remainder
|
sl@0
|
1048 |
BOOST_ACRC_DUMMY_INIT
|
sl@0
|
1049 |
)
|
sl@0
|
1050 |
{
|
sl@0
|
1051 |
typedef unsigned char byte_type;
|
sl@0
|
1052 |
typedef detail::mask_uint_t<Bits> masking_type;
|
sl@0
|
1053 |
typedef detail::crc_table_t<Bits, TruncPoly, false> crc_table_type;
|
sl@0
|
1054 |
|
sl@0
|
1055 |
typename masking_type::fast rem = initial_remainder;
|
sl@0
|
1056 |
byte_type const * const b = static_cast<byte_type const *>( buffer );
|
sl@0
|
1057 |
byte_type const * const e = b + byte_count;
|
sl@0
|
1058 |
|
sl@0
|
1059 |
crc_table_type::init_table();
|
sl@0
|
1060 |
for ( byte_type const * p = b ; p < e ; ++p )
|
sl@0
|
1061 |
{
|
sl@0
|
1062 |
// Use the current top byte as the table index to the next
|
sl@0
|
1063 |
// "partial product." Shift out that top byte, shifting in
|
sl@0
|
1064 |
// the next augmented-message byte. Complete the division.
|
sl@0
|
1065 |
byte_type const byte_index = rem >> ( Bits - CHAR_BIT );
|
sl@0
|
1066 |
rem <<= CHAR_BIT;
|
sl@0
|
1067 |
rem |= *p;
|
sl@0
|
1068 |
rem ^= crc_table_type::table_[ byte_index ];
|
sl@0
|
1069 |
}
|
sl@0
|
1070 |
|
sl@0
|
1071 |
return rem & masking_type::sig_bits_fast;
|
sl@0
|
1072 |
}
|
sl@0
|
1073 |
|
sl@0
|
1074 |
template < std::size_t Bits, BOOST_CRC_PARM_TYPE TruncPoly >
|
sl@0
|
1075 |
inline
|
sl@0
|
1076 |
typename uint_t<Bits>::fast
|
sl@0
|
1077 |
augmented_crc
|
sl@0
|
1078 |
(
|
sl@0
|
1079 |
void const * buffer,
|
sl@0
|
1080 |
std::size_t byte_count
|
sl@0
|
1081 |
BOOST_ACRC_DUMMY_INIT
|
sl@0
|
1082 |
)
|
sl@0
|
1083 |
{
|
sl@0
|
1084 |
// The last function argument has its type specified so the other version of
|
sl@0
|
1085 |
// augmented_crc will be called. If the cast wasn't in place, and the
|
sl@0
|
1086 |
// BOOST_ACRC_DUMMY_INIT added a third argument (for a workaround), the "0"
|
sl@0
|
1087 |
// would match as that third argument, leading to infinite recursion.
|
sl@0
|
1088 |
return augmented_crc<Bits, TruncPoly>( buffer, byte_count,
|
sl@0
|
1089 |
static_cast<typename uint_t<Bits>::fast>(0) );
|
sl@0
|
1090 |
}
|
sl@0
|
1091 |
|
sl@0
|
1092 |
|
sl@0
|
1093 |
} // namespace boost
|
sl@0
|
1094 |
|
sl@0
|
1095 |
|
sl@0
|
1096 |
// Undo header-private macros
|
sl@0
|
1097 |
#undef BOOST_CRC_OPTIMAL_NAME
|
sl@0
|
1098 |
#undef BOOST_ACRC_DUMMY_INIT
|
sl@0
|
1099 |
#undef BOOST_ACRC_DUMMY_PARM_TYPE
|
sl@0
|
1100 |
#undef BOOST_CRC_DUMMY_INIT
|
sl@0
|
1101 |
#undef BOOST_CRC_DUMMY_PARM_TYPE
|
sl@0
|
1102 |
#undef BOOST_CRC_PARM_TYPE
|
sl@0
|
1103 |
|
sl@0
|
1104 |
|
sl@0
|
1105 |
#endif // BOOST_CRC_HPP
|
sl@0
|
1106 |
|