GM6000 Digital Heater Controller Branch: main
SDX-1330
ModelDatabaseApi.h
Go to the documentation of this file.
1#ifndef Cpl_Dm_ModelDatabaseApi_h_
2#define Cpl_Dm_ModelDatabaseApi_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 "Cpl/Text/String.h"
16
17///
18namespace Cpl {
19///
20namespace Dm {
21
22/// Forward reference to a Model point -->used to avoid circular dependencies
23class ModelPoint;
24
25/** This class defines the basic operations that can be performed on a Model
26 Base. A Model Database is a collection of instantiated Model Points.
27
28 All methods in this class are thread Safe unless explicitly documented
29 otherwise.
30 */
32{
33public:
34 /** This method looks-up the model point instance by name and returns a
35 pointer to the instance. If the model point name cannot be found, the
36 method returns 0.
37
38 NOTE: The ModelPoint returned is a generic Model Point in that any
39 operations that require the concrete data type of the Model
40 Point ARE NOT available. It is 'okay' for the caller (IF AND ONLY
41 IF the caller 'knows' what the concrete type is) to down cast the
42 returned pointer to a type specific child class instance of the
43 Model Point.
44
45 NOTE: There is no 'add' method. This is because Model Points self
46 register with their assigned Model Database when the Model Points
47 are created.
48 */
49 virtual ModelPoint* lookupModelPoint( const char* modelPointName ) noexcept = 0;
50
51
52public:
53 /** This method returns a pointer to the first Model Point in the Database.
54 The model points are traversed in order by model point name. If there
55 are not Model Points in the Database, the method returns 0.
56 */
57 virtual ModelPoint* getFirstByName() noexcept = 0;
58
59 /** This method returns the next (in sorted order) Model Point in the
60 Database. If the current model point is the last Model Point in the
61 Database the method returns 0.
62 */
63 virtual ModelPoint* getNextByName( ModelPoint& currentModelPoint ) noexcept = 0;
64
65
66public:
67 /** This method attempts to convert the null terminated JSON formated 'src'
68 string to its binary format and copies the result to the Model Point's
69 internal data. The expected format of the JSON string is specific to
70 the concrete leaf class.
71
72 The method optional returns - via 'retMp' - a pointer to the Model Point
73 identified by 'mpname'. If the method false return, then 'retMp' has
74 no meaning.
75
76 The method optional returns - via 'retSequenceNumber' - the Model Point's
77 sequence number after the conversion. If the method false return, then
78 'retSequenceNumber' has no meaning.
79
80 If the conversion is successful true is returned. If the contents of
81 the 'src' is not a valid JSON object and/or not parse-able, OR the Point
82 does not support a full/complete conversion from Text to binary, OR
83 the conversion fails, OR the specified model point name does not exist
84 then the method returns false. When the conversion fails, the optional
85 'errorMsg' argument is updated with a plain text error message.
86
87
88 The general input format:
89 \code
90
91 { name="<mpname>", locked:true|false } // Locks/unlocks the MP
92 { name="<mpname>", valid:false } // Invalidates the MP
93 { name="<mpname>", valid:false, locked=true } // Invalidates the MP and locks the MP
94 { name="<mpname>", val:<value> } // Writes a new (valid) value to the MP
95 { name="<mpname>", val:<value>, locked=true } // Writes a new (valid) value to the MP and locks the MP
96
97
98 \endcode
99 */
100 virtual bool fromJSON( const char* src, Cpl::Text::String* errorMsg=0, ModelPoint** retMp = 0, uint16_t* retSequenceNumber=0 ) noexcept = 0;
101
102public:
103 /// Virtual destructor to make the compiler happy
104 virtual ~ModelDatabaseApi() {}
105};
106
107
108}; // end namespaces
109};
110#endif // end header latch
This class defines the basic operations that can be performed on a Model Base.
Definition ModelDatabaseApi.h:32
virtual bool fromJSON(const char *src, Cpl::Text::String *errorMsg=0, ModelPoint **retMp=0, uint16_t *retSequenceNumber=0) noexcept=0
This method attempts to convert the null terminated JSON formated 'src' string to its binary format a...
virtual ModelPoint * lookupModelPoint(const char *modelPointName) noexcept=0
This method looks-up the model point instance by name and returns a pointer to the instance.
virtual ModelPoint * getNextByName(ModelPoint &currentModelPoint) noexcept=0
This method returns the next (in sorted order) Model Point in the Database.
virtual ModelPoint * getFirstByName() noexcept=0
This method returns a pointer to the first Model Point in the Database.
This mostly abstract class defines the interface for a Model Point.
Definition ModelPoint.h:46
The 'Cpl' namespace is the root name space for the Colony.
Definition Api16.h:20