GM6000 Digital Heater Controller Branch: main
SDX-1330
Float.h
Go to the documentation of this file.
1#ifndef Cpl_Dm_Mp_Float_h_
2#define Cpl_Dm_Mp_Float_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
16#include "Cpl/Dm/Mp/Numeric.h"
17#include "Cpl/Math/real.h"
18
19///
20namespace Cpl {
21///
22namespace Dm {
23///
24namespace Mp {
25
26
27/** This class provides a concrete implementation for a Point who's data is a
28 float.
29
30 The toJSON()/fromJSON format is:
31 \code
32
33 { name:"<mpname>", type:"<mptypestring>", valid:true|false, seqnum:nnnn, locked:true|false, val:<numvalue> }
34
35 \endcode
36
37 NOTE: All methods in this class ARE thread Safe unless explicitly
38 documented otherwise.
39 */
40class Float : public Numeric<float, Float>
41{
42public:
43 /** Constructor. Invalid MP.
44 */
45 Float( Cpl::Dm::ModelDatabase& myModelBase, const char* symbolicName )
46 : Numeric<float, Float>( myModelBase, symbolicName )
47 {
48 }
49
50 /// Constructor. Valid MP. Requires an initial value
51 Float( Cpl::Dm::ModelDatabase& myModelBase, const char* symbolicName, float initialValue )
52 : Numeric<float, Float>( myModelBase, symbolicName, initialValue )
53 {
54 }
55
56public:
57 /// Type safe subscriber
59
60
61public:
62 /// See Cpl::Dm::ModelPoint.
63 const char* getTypeAsText() const noexcept
64 {
65 return "Cpl::Dm::Mp::Float";
66 }
67
68protected:
69 /// Override parent implementation for 'correct' floating point comparison
70 bool isDataEqual_( const void* otherData ) const noexcept
71 {
72 float* other = (float*) otherData;
73 return Cpl::Math::areFloatsEqual( m_data, *other );
74 }
75};
76
77
78
79}; // end namespaces
80};
81};
82#endif // end header latch
This concrete class implements a simple Model Database.
Definition ModelDatabase.h:56
This class provides a concrete implementation for a Point who's data is a float.
Definition Float.h:41
const char * getTypeAsText() const noexcept
See Cpl::Dm::ModelPoint.
Definition Float.h:63
Cpl::Dm::Subscriber< Float > Observer
Type safe subscriber.
Definition Float.h:58
Float(Cpl::Dm::ModelDatabase &myModelBase, const char *symbolicName, float initialValue)
Constructor. Valid MP. Requires an initial value.
Definition Float.h:51
bool isDataEqual_(const void *otherData) const noexcept
Override parent implementation for 'correct' floating point comparison.
Definition Float.h:70
Float(Cpl::Dm::ModelDatabase &myModelBase, const char *symbolicName)
Constructor.
Definition Float.h:45
This template class provides a mostly concrete implementation for a Model Point who's data is a C num...
Definition Numeric.h:64
float m_data
The element's value.
Definition Numeric.h:67
This template class defines a type safe Subscriber.
Definition Subscriber.h:82
bool areFloatsEqual(float a, float b, float epsilon=CPL_MATH_REAL_FLOAT_EPSILON)
This method is short hand for almostEquals<float> AND provides a default epsilon.
Definition real.h:86
The 'Cpl' namespace is the root name space for the Colony.
Definition Api16.h:20
This file contains a collection of methods comparing, manipulating, etc.