GM6000 Digital Heater Controller Branch: main
SDX-1330
Api32.h
Go to the documentation of this file.
1#ifndef Cpl_Checksum_Api32_h_
2#define Cpl_Checksum_Api32_h_
3/*-----------------------------------------------------------------------------
4* This file is part of the Colony.Core Project. The Colony.Core Project is an
5* open source project with a BSD type of licensing agreement. See the license
6* agreement (license.txt) in the top/ directory or on the Internet at
7* http://integerfox.com/colony.core/license.txt
8*
9* Copyright (c) 2014-2022 John T. Taylor
10*
11* Redistributions of the source code must retain the above copyright notice.
12*----------------------------------------------------------------------------*/
13/** @file */
14
15#include <stdint.h>
16
17
18
19///
20namespace Cpl {
21///
22namespace Checksum {
23
24
25/** This class provides an interface for calculate a 32 bit wide
26 Checksum. The specific of the checksum is determine by
27 the concrete class implementing this interface.
28
29 How to generate a Checksum:
30 1. Call reset() initialize the Checksum
31 2. Call accumulate() method for every byte being Checksum'd
32 3. Call finalize() to get the CRC value. The method can optionally
33 appended the CRC to the buffer being Checksum'd
34
35 How to verify a Checksum:
36 1. Call reset() initialize the Checksum
37 2. Call accumulate() method for every byte being Checksum'd
38 INCLUDING the previously generated Checksum bytes.
39 3. Call isOk() which returns true if the buffer passes the Checksum
40 check.
41 */
42class Api32
43{
44public:
45 /// Used to re-use/restart the Checksum object
46 virtual void reset( void ) noexcept = 0;
47
48 /** Call the method for every byte being Checksum'd
49 */
50 virtual void accumulate( const void* bytes, unsigned numbytes=1 ) noexcept = 0;
51
52 /** Call this method to finalize the Checksum. The calculated Checksum
53 value is returned. If 'destBuffer' is NOT null, then the
54 Checksum value is appended to the buffer starting at the address
55 specified by 'destBuffer'. Note: the application is responsible
56 for ensure there is sufficient space (and additional 4 bytes) for
57 the appended Checksum value.
58 */
59 virtual uint32_t finalize( void* destBuffer=0 ) noexcept = 0;
60
61 /** This method returns true if the data and the incoming Checksum bytes,
62 that accumulate() has been called on, is good. Returns true if
63 the Checksum check passes; else false is returned
64 */
65 virtual bool isOkay( void ) noexcept = 0;
66
67
68public:
69 /// Virtual destructor
70 ~Api32() {}
71
72};
73
74}; // end namespaces
75};
76#endif // end header latch
77
This class provides an interface for calculate a 32 bit wide Checksum.
Definition Api32.h:43
virtual bool isOkay(void) noexcept=0
This method returns true if the data and the incoming Checksum bytes, that accumulate() has been call...
virtual void accumulate(const void *bytes, unsigned numbytes=1) noexcept=0
Call the method for every byte being Checksum'd.
virtual void reset(void) noexcept=0
Used to re-use/restart the Checksum object.
virtual uint32_t finalize(void *destBuffer=0) noexcept=0
Call this method to finalize the Checksum.
The 'Cpl' namespace is the root name space for the Colony.
Definition Api16.h:20