GM6000 Digital Heater Controller Branch: main
SDX-1330
Api.h
Go to the documentation of this file.
1#ifndef Cpl_MApp_Temperature_Api_h_
2#define Cpl_MApp_Temperature_Api_h_
3/*-----------------------------------------------------------------------------
4* COPYRIGHT_HEADER_TO_BE_FILLED_LATER
5*----------------------------------------------------------------------------*/
6/** @file */
7
8
9#include "colony_config.h"
10#include "Cpl/MApp/MApp_.h"
11#include "Cpl/Dm/Mp/Float.h"
13#include "Cpl/System/Timer.h"
14
15
16/// Default interval time (in milliseconds) for sampling temperature
17#ifndef OPTION_CPL_MAPP_TEMPEARTURE_SAMPLE_INTERVAL_MS
18#define OPTION_CPL_MAPP_TEMPEARTURE_SAMPLE_INTERVAL_MS 100
19#endif
20
21/// Default interval time (in milliseconds) for displaying temperature
22#ifndef OPTION_CPL_MAPP_TEMPEARTURE_DISPLAY_INTERVAL_MS
23#define OPTION_CPL_MAPP_TEMPEARTURE_DISPLAY_INTERVAL_MS (5*1000)
24#endif
25
26/// Default temperature Units (false:=Celsius, true:=Fahrenheit)
27#ifndef OPTION_CPL_MAPP_TEMPEARTURE_FAHRENHEIT
28#define OPTION_CPL_MAPP_TEMPEARTURE_FAHRENHEIT true
29#endif
30
31
32///
33namespace Cpl {
34///
35namespace MApp {
36///
37namespace Temperature {
38
39
40/** This concrete class implements MApp the polls a model point for a
41 temperature value and periodically writes the value to the trace output.
42 The MApp also collects some metrics and has the option to display temperature
43 in degrees Fahrenheit or Celsius.
44
45 NOTE: Multiple of instance of the class can be created - as long as each
46 instance has a unique 'name'.
47
48 The class is intended to be example/template for an MApp - not that it does
49 anything particular noteworthy.
50 */
52{
53public:
54 /// The default MApp Name
55 static constexpr const char* DEFAULT_NAME = "temperature";
56
57 /** Usage string (recommended that lines do not exceed 80 chars)
58 1 2 3 4 5 6 7 8
59 12345678901234567890123456789012345678901234567890123456789012345678901234567890
60 */
61 static constexpr const char* USAGE = "args: [<samplems> [<displayms> [F|C]]]\n"
62 " <samplems> milliseconds between samples. Default is 100ms\n"
63 " <displayms> milliseconds between outputs. Default is 5000ms\n"
64 " F|C 'F' use Fahrenheit, 'C' use Celsius. Default is 'F'";
65
66 /** Description string (recommended that lines do not exceed 80 chars)
67 1 2 3 4 5 6 7 8
68 12345678901234567890123456789012345678901234567890123456789012345678901234567890
69 */
70 static constexpr const char* DESCRIPTION = "Periodically Samples temperature and displays sample/metric values.";
71
72
73public:
74 /// Constructor. Note: The myMbox argument is only needed because the class uses a SW timer
77 Cpl::Dm::Mp::Float& srcTemperatureMp,
78 const char* name = DEFAULT_NAME );
79
80protected:
81 /// See Cpl::MApp::Api
82 void intialize_() noexcept;
83
84 /// See Cpl::MApp::Api
85 bool start_( char* args ) noexcept;
86
87 /// See Cpl::MApp::Api
88 void stop_() noexcept;
89
90 /// See Cpl::MApp::Api
91 void shutdown_() noexcept;
92
93protected:
94 /// Helper method to parse the 'command line' options
95 bool parse( char* args ) noexcept;
96
97 /// Timer expired callback
98 void expired( void ) noexcept;
99
100
101protected:
102 /// Temperature Input. Assumed units is Celsius
103 Cpl::Dm::Mp::Float& m_temperature;
104
105 /// Maximum Temp. sampled
107
108 /// Minimum Temp. sampled
110
111 /// Cumulative sum Temp
113
114 /// Number of samples
115 uint32_t m_numSamples;
116
117 /// Sample time in msecs
118 uint32_t m_sampleMs;
119
120 /// Display time in msecs
121 uint32_t m_displayMs;
122
123 /// Time marker of last display action
125
126 /// When true the values are displayed in Fahrenheit
128
129 /// Flag that tracks when I have invalid data
131};
132
133}; // end namespaces
134};
135};
136#endif // end header latch
This template class implements a THREAD SAFE Ring Buffer.
Definition RingBufferMT.h:33
This class extends the Cpl::Dm::EventLoop and Cpl::Itc:Mailbox classes to support the asynchronous ch...
Definition MailboxServer.h:43
This class provides a concrete implementation for a Point who's data is a float.
Definition Float.h:41
This partial concrete class provide common infrastructure that is common to all MApp instances.
Definition MApp_.h:23
This concrete class implements MApp the polls a model point for a temperature value and periodically ...
Definition Api.h:52
uint32_t m_sampleMs
Sample time in msecs.
Definition Api.h:118
static constexpr const char * DESCRIPTION
Description string (recommended that lines do not exceed 80 chars) 1 2 3 4 5 6 7 8 123456789012345678...
Definition Api.h:70
static constexpr const char * USAGE
Usage string (recommended that lines do not exceed 80 chars) 1 2 3 4 5 6 7 8 123456789012345678901234...
Definition Api.h:61
float m_maxTemp
Maximum Temp. sampled.
Definition Api.h:106
void shutdown_() noexcept
See Cpl::MApp::Api.
void expired(void) noexcept
Timer expired callback.
bool start_(char *args) noexcept
See Cpl::MApp::Api.
void stop_() noexcept
See Cpl::MApp::Api.
uint32_t m_displayMs
Display time in msecs.
Definition Api.h:121
void intialize_() noexcept
See Cpl::MApp::Api.
Api(Cpl::Container::Map< MAppApi > &mappList, Cpl::Dm::MailboxServer &myMbox, Cpl::Dm::Mp::Float &srcTemperatureMp, const char *name=DEFAULT_NAME)
Constructor. Note: The myMbox argument is only needed because the class uses a SW timer.
bool m_invalidData
Flag that tracks when I have invalid data.
Definition Api.h:130
float m_minTemp
Minimum Temp. sampled.
Definition Api.h:109
bool parse(char *args) noexcept
Helper method to parse the 'command line' options.
static constexpr const char * DEFAULT_NAME
The default MApp Name.
Definition Api.h:55
Cpl::Dm::Mp::Float & m_temperature
Temperature Input. Assumed units is Celsius.
Definition Api.h:103
uint32_t m_numSamples
Number of samples.
Definition Api.h:115
uint32_t m_timeMarkerMs
Time marker of last display action.
Definition Api.h:124
bool m_fahrenheit
When true the values are displayed in Fahrenheit.
Definition Api.h:127
float m_sumTemp
Cumulative sum Temp.
Definition Api.h:112
This mostly concrete interface defines the operations that can be performed on a software timer.
Definition Timer.h:47
The 'Cpl' namespace is the root name space for the Colony.
Definition Api16.h:20