GM6000 Digital Heater Controller Branch: main
SDX-1330
Api16.h
Go to the documentation of this file.
1#ifndef Cpl_Checksum_Api16_h_
2#define Cpl_Checksum_Api16_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/** This class provides an interface for calculate a 16 bit wide
25 Checksum. The specific of the checksum is determine by
26 the concrete class implementing this interface.
27
28 How to generate a Checksum:
29 1. Call reset() initialize the Checksum
30 2. Call accumulate() method for every byte being Checksum'd
31 3. Call finalize() to get the CRC value. The method can optionally
32 appended the CRC to the buffer being Checksum'd
33
34 How to verify a Checksum:
35 1. Call reset() initialize the Checksum
36 2. Call accumulate() method for every byte being Checksum'd
37 INCLUDING the previously generated Checksum bytes.
38 3. Call isOk() which returns true if the buffer passes the Checksum
39 check.
40 */
41class Api16
42{
43public:
44 /// Used to re-use/restart the Checksum object
45 virtual void reset( void ) noexcept = 0;
46
47 /** Call the method for every byte being Checksum'd
48 */
49 virtual void accumulate( const void* bytes, unsigned numbytes=1 ) noexcept = 0;
50
51 /** Call this method to finalize the Checksum. The calculated Checksum
52 value is returned. If 'destBuffer' is NOT null, then the
53 Checksum value is appended to the buffer starting at the address
54 specified by 'destBuffer'. Note: the application is responsible
55 for ensure there is sufficient space (and additional 2 bytes) for
56 the appended Checksum value.
57 */
58 virtual uint16_t finalize( void* destBuffer=0 ) noexcept = 0;
59
60 /** This method returns true if the data and the incoming Checksum bytes,
61 that accumulate() has been called on, is good. Returns true if
62 the Checksum check passes; else false is returned
63 */
64 virtual bool isOkay( void ) noexcept = 0;
65
66
67public:
68 /// Virtual destructor
69 ~Api16() {}
70
71};
72
73}; // end namespaces
74};
75#endif // end header latch
76
This class provides an interface for calculate a 16 bit wide Checksum.
Definition Api16.h:42
virtual uint16_t finalize(void *destBuffer=0) noexcept=0
Call this method to finalize the Checksum.
virtual void reset(void) noexcept=0
Used to re-use/restart the Checksum object.
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.
The 'Cpl' namespace is the root name space for the Colony.
Definition Api16.h:20