GM6000 Digital Heater Controller Branch: main
SDX-1330
SeqNumber.h
Go to the documentation of this file.
1#ifndef Cpl_Type_SeqNumber_h_
2#define Cpl_Type_SeqNumber_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///
19namespace Cpl {
20///
21namespace Type {
22
23/** This class defines a sequence number and the operation that can be performed
24 on it. A valid sequence number is positive integer that is greater 0.
25 Sequence numbers are helpful for determining when something has changed,
26 i.e. by comparing two sequence number -->if there are not equal then
27 something has changed and/or is out-of-sequence.
28 */
30{
31protected:
32 /// Internal counter
33 int32_t m_counter;
34
35public:
36 /// Constructor
37 SeqNumber( int32_t initialValue=1 );
38
39
40public:
41 /** Sets the sequence number value. If the value is negative or zero then
42 no update is performed.
43 */
44 void set( int32_t newValue );
45
46 /// Assignment - does a true copy, i.e. will copy/assign the invalid state
47 SeqNumber& operator=( const SeqNumber rvalue );
48
49 /** This method increment the sequence number and ensure that the new
50 value is valid. Once the maximum range of the sequence number has
51 been reach, the value rolls over to 1. Note: If the sequence is
52 invalid at the time of this call, then the sequence number will
53 be set to 1, i.e. will be VALID after the call..
54 */
55 void increment( void );
56
57 /** Forces the sequence number to be invalid. This is useful to force
58 the compare() operation to always return false. To 'undo' the this
59 method, call the increment method() or the set() method with a positive
60 value greater than zero.
61 */
62 void invalidate( void );
63
64 /// Returns true if the sequence number is valid (i.e NOT in the invalid state)
65 inline bool isValid( void ) const { return m_counter > 0; }
66
67 /// Cast to an int32_t
68 inline operator int32_t ( ) const { return m_counter; }
69
70public:
71 /** This method return true if 'other' matches this sequence number
72 Note: If this instance or 'other' is invalid (aka zero), then the method
73 always returns false;
74 */
75 bool compare( const SeqNumber& other ) const;
76
77 /// Short hand for the compare() method
78 inline bool operator == ( const SeqNumber& other ) const { return compare( other ); }
79
80 /// Short hand for the !compare() method
81 inline bool operator != ( const SeqNumber& other ) const { return !compare( other ); }
82
83public:
84 /** This method return true if 'other' matches this sequence number
85 Note: If this instance or 'other' is invalid (aka zero), then the method
86 always returns false;
87 */
88 bool compare( int32_t other ) const;
89
90 /// Short hand for the compare() method
91 inline bool operator == ( int32_t other ) const { return compare( other ); }
92
93 /// Short hand for the !compare() method
94 inline bool operator != ( int32_t other ) const { return !compare( other ); }
95
96};
97
98}; // end namespaces
99};
100#endif // end header latch
101
This class defines a sequence number and the operation that can be performed on it.
Definition SeqNumber.h:30
SeqNumber(int32_t initialValue=1)
Constructor.
bool isValid(void) const
Returns true if the sequence number is valid (i.e NOT in the invalid state)
Definition SeqNumber.h:65
bool compare(const SeqNumber &other) const
This method return true if 'other' matches this sequence number Note: If this instance or 'other' is ...
void invalidate(void)
Forces the sequence number to be invalid.
bool operator!=(const SeqNumber &other) const
Short hand for the !compare() method.
Definition SeqNumber.h:81
bool operator==(const SeqNumber &other) const
Short hand for the compare() method.
Definition SeqNumber.h:78
void set(int32_t newValue)
Sets the sequence number value.
int32_t m_counter
Internal counter.
Definition SeqNumber.h:33
bool compare(int32_t other) const
This method return true if 'other' matches this sequence number Note: If this instance or 'other' is ...
SeqNumber & operator=(const SeqNumber rvalue)
Assignment - does a true copy, i.e. will copy/assign the invalid state.
void increment(void)
This method increment the sequence number and ensure that the new value is valid.
The 'Cpl' namespace is the root name space for the Colony.
Definition Api16.h:20