GM6000 Digital Heater Controller Branch: main
SDX-1330
Double.h
Go to the documentation of this file.
1#ifndef Cpl_Dm_Mp_Double_h_
2#define Cpl_Dm_Mp_Double_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 double.
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 Double : public Numeric<double, Double>
41{
42public:
43 /** Constructor. Invalid MP.
44 */
45 Double( Cpl::Dm::ModelDatabase& myModelBase, const char* symbolicName )
46 : Numeric<double, Double>( myModelBase, symbolicName )
47 {
48 }
49
50 /// Constructor. Valid MP. Requires an initial value
51 Double( Cpl::Dm::ModelDatabase& myModelBase, const char* symbolicName, double initialValue )
52 : Numeric<double, Double>( myModelBase, symbolicName, initialValue )
53 {
54 }
55
56public:
57 /// Type safe subscriber
59
60public:
61 /// See Cpl::Dm::ModelPoint.
62 const char* getTypeAsText() const noexcept
63 {
64 return "Cpl::Dm::Mp::Double";
65 }
66
67protected:
68 /// Override parent implementation for 'correct' floating point comparison
69 bool isDataEqual_( const void* otherData ) const noexcept
70 {
71 double* other = (double*) otherData;
72 return Cpl::Math::areDoublesEqual( m_data, *other );
73 }
74};
75
76
77
78}; // end namespaces
79};
80};
81#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 double.
Definition Double.h:41
Double(Cpl::Dm::ModelDatabase &myModelBase, const char *symbolicName)
Constructor.
Definition Double.h:45
Cpl::Dm::Subscriber< Double > Observer
Type safe subscriber.
Definition Double.h:58
bool isDataEqual_(const void *otherData) const noexcept
Override parent implementation for 'correct' floating point comparison.
Definition Double.h:69
const char * getTypeAsText() const noexcept
See Cpl::Dm::ModelPoint.
Definition Double.h:62
Double(Cpl::Dm::ModelDatabase &myModelBase, const char *symbolicName, double initialValue)
Constructor. Valid MP. Requires an initial value.
Definition Double.h:51
This template class provides a mostly concrete implementation for a Model Point who's data is a C num...
Definition Numeric.h:64
double m_data
The element's value.
Definition Numeric.h:67
This template class defines a type safe Subscriber.
Definition Subscriber.h:82
bool areDoublesEqual(double a, double b, double epsilon=CPL_MATH_REAL_DOUBLE_EPSILON)
This method is short hand for almostEquals<double> AND provides a default epsilon.
Definition real.h:94
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.