GM6000 Digital Heater Controller Branch: main
SDX-1330
IndexedEntryServer.h
Go to the documentation of this file.
1#ifndef Cpl_Dm_Persistent_IndexEntryServer_h_
2#define Cpl_Dm_Persistent_IndexEntryServer_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 "colony_config.h"
19#include "Cpl/Itc/CloseSync.h"
21
22
23/** Maximum number of entries that can be written as the result of single
24 change notification
25 */
26#ifndef OPTION_CPL_PERSISTENT_INDEXED_ENTRY_SERVER_MAX_BATCH_WRITE
27#define OPTION_CPL_PERSISTENT_INDEXED_ENTRY_SERVER_MAX_BATCH_WRITE 4
28#endif
29
30
31///
32namespace Cpl {
33///
34namespace Persistent {
35
36/** This concrete template class implements the ITC messaging (and Model Point
37 monitoring) needed to provide a thread-safe/asynchronous interface for
38 reading/writing 'Indexed Entries'
39
40 Template Args:
41 ENTRY:= The Application specific class that defines an 'entry'
42
43 */
44template <class ENTRY>
46 public GetLatestRequest,
47 public GetNextRequest,
48 public GetPreviousRequest,
51{
52public:
53 /// Constructor.
55 IndexedEntryRecord& indexedEntryRecord,
56 Cpl::Container::RingBufferMP<ENTRY>& incomingEntriesBuffer ) noexcept
57 : Cpl::Itc::CloseSync( myMbox )
58 , m_record( indexedEntryRecord )
60 , m_addBuffer( incomingEntriesBuffer )
61 , m_opened( false )
62 {
63 }
64
65
66public:
67 /// This method starts the server (See Cpl::Itc::OpenSync)
68 void request( OpenMsg& msg )
69 {
70 if ( !m_opened )
71 {
72 m_opened = true;
74 }
75
76 msg.returnToSender();
77 }
78
79 /// This method stops the server (See Cpl::Itc::CloseSync)
80 void request( CloseMsg& msg )
81 {
82 if ( m_opened )
83 {
84 m_opened = false;
86 }
87
88 msg.returnToSender();
89 }
90
91 /// Element Count Change notification
93 {
94 uint32_t count;
95 if ( mp.readAndSync( count, clientObserver ) && count > 0 )
96 {
97 // Drain the buffer (but limit how many adds at one time) and write the entries to persistent storage
98 unsigned iterations = 0;
99 ENTRY entry;
101 {
102 hookAddingEntry( entry );
103 m_record.addEntry( entry );
104 iterations++;
105 }
106 }
107 }
108
109protected:
110 /// Hook to allow a child class processing when an entry is added. This method is called just PRIOR to writing the data to persistent storage
111 virtual void hookAddingEntry( ENTRY& src )
112 {
113 // Default is to do nothing
114 }
115
116public:
117 /// See Cpl::Persistent::GetLatestRequest
119 {
120 GetLatestRequest::Payload& payload = msg.getPayload();
121 payload.m_success = m_record.getLatest( payload.m_entryDst, payload.m_markerEntryRetreived );
122 msg.returnToSender();
123 }
124
125 /// See Cpl::Persistent::GetNextRequest
126 void request( GetNextMsg& msg )
127 {
128 GetNextRequest::Payload& payload = msg.getPayload();
129 payload.m_success = m_record.getNext( payload.m_newerThan, payload.m_beginHereMarker, payload.m_entryDst, payload.m_markerEntryRetreived );
130 msg.returnToSender();
131 }
132
133
134 /// See Cpl::Persistent::GetPreviousRequest
136 {
138 payload.m_success = m_record.getPrevious( payload.m_olderThan, payload.m_beginHereMarker, payload.m_entryDst, payload.m_markerEntryRetreived );
139 msg.returnToSender();
140 }
141
142
143 /// See Cpl::Persistent::GetByBufferIndexRequest
145 {
147 payload.m_success = m_record.getByBufferIndex( payload.m_index, payload.m_entryDst, payload.m_markerEntryRetreived );
148 msg.returnToSender();
149 }
150
151 /// See Cpl::Persistent::IndexEntryReader
152 size_t getMaxIndex() const noexcept
153 {
154 return m_record.getMaxIndex(); // Note: NO Critical section is required since this is a 'constant' value
155 }
156
157 /// See Cpl::Persistent::ClearAllEntriesRequest
159 {
162 msg.returnToSender();
163 }
164
165protected:
166 /// Indexed Entry Record that handles the actual work to read/write the data
168
169 /// Observer for change notification (to the RingBuffer)
171
172 /// the 'add' buffer
174
175 /// Track my open state
177};
178
179
180
181}; // end namespaces
182};
183#endif // end header latch
#define OPTION_CPL_PERSISTENT_INDEXED_ENTRY_SERVER_MAX_BATCH_WRITE
Maximum number of entries that can be written as the result of single change notification.
Definition IndexedEntryServer.h:27
bool remove(ITEM &dst) noexcept
See Cpl::Container::RingBuffer.
Definition RingBufferMP.h:56
Cpl::Dm::Mp::Uint32 & m_mpElementCount
Model point to report my element count. NOTE: Public access is allowed to simply the application subs...
Definition RingBufferMP.h:146
This template class implements a THREAD SAFE Ring Buffer.
Definition RingBufferMT.h:33
This class extends the Cpl::System::EventLoop class to support the asynchronous change notification g...
Definition EventLoop.h:44
This class extends the Cpl::Dm::EventLoop and Cpl::Itc:Mailbox classes to support the asynchronous ch...
Definition MailboxServer.h:43
void attach(Cpl::Dm::Subscriber< MPTYPE > &observer, uint16_t initialSeqNumber=SEQUENCE_NUMBER_UNKNOWN) noexcept
Type safe register observer.
Definition Numeric.h:121
void detach(Cpl::Dm::Subscriber< MPTYPE > &observer) noexcept
Type safe un-register observer.
Definition Numeric.h:127
This class provides a concrete implementation for a Point who's data is a uint32_t.
Definition Uint32.h:43
This abstract class defines the Subscriber interface - for change notifications - to a Model Points d...
Definition SubscriberApi.h:34
This template class is a composer pattern/class that manages the callback function for a Model Point'...
Definition SubscriberComposer.h:37
This partially concrete class implements the synchronous ITC close call for the CloseApi.
Definition CloseSync.h:34
This template class represents a service request message to a particular server.
Definition RequestMessage.h:34
PAYLOAD & getPayload()
Returns the payload associated with this request.
Definition RequestMessage.h:94
void returnToSender() noexcept
This operation is invoked by the server when it has completed the operation implemented as a part of ...
Payload for Message.
Definition IndexedEntryRequests.h:383
bool m_success
Clear results (response field) true = all entries where successfully cleared false = an error occurre...
Definition IndexedEntryRequests.h:389
This abstract class define ITC message type and payload for the application to clear/delete all entri...
Definition IndexedEntryRequests.h:375
Payload for Message: GetByBufferIndex.
Definition IndexedEntryRequests.h:291
bool m_success
GET results (response field) true = entry was successfully retrieved/found false = no valid entry (th...
Definition IndexedEntryRequests.h:306
IndexedEntryReader::EntryMarker_T m_markerEntryRetreived
OUTPUT (response field): The 'marker' associated with the found/retrieved entry.
Definition IndexedEntryRequests.h:300
size_t m_index
INPUT: buffer index.
Definition IndexedEntryRequests.h:294
Cpl::Persistent::Payload & m_entryDst
INPUT/OUTPUT: Memory to hold the retrieved entry.
Definition IndexedEntryRequests.h:297
This abstract class define ITC message type and payload for the application to request read Indexed E...
Definition IndexedEntryRequests.h:283
Payload for Message: GetLatest.
Definition IndexedEntryRequests.h:46
bool m_success
GET results (response field) true = entry was successfully retrieved/found false = no valid entry (th...
Definition IndexedEntryRequests.h:58
IndexedEntryReader::EntryMarker_T m_markerEntryRetreived
OUTPUT (response field): The 'marker' associated with the found/retrieved entry.
Definition IndexedEntryRequests.h:52
Cpl::Persistent::Payload & m_entryDst
INPUT/OUTPUT: Memory to hold the retrieved entry.
Definition IndexedEntryRequests.h:49
This abstract class define ITC message type and payload for the application to request read Indexed E...
Definition IndexedEntryRequests.h:38
Payload for Message: GetNext.
Definition IndexedEntryRequests.h:124
uint64_t m_newerThan
INPUT: newer timestamp to search criteria.
Definition IndexedEntryRequests.h:127
Cpl::Persistent::Payload & m_entryDst
INPUT/OUTPUT: Memory to hold the retrieved entry.
Definition IndexedEntryRequests.h:130
IndexedEntryReader::EntryMarker_T m_markerEntryRetreived
OUTPUT (response field): The 'marker' associated with the found/retrieved entry.
Definition IndexedEntryRequests.h:136
IndexedEntryReader::EntryMarker_T & m_beginHereMarker
INPUT: The 'marker' on where to begin searching from.
Definition IndexedEntryRequests.h:133
bool m_success
GET results (response field) true = entry was successfully retrieved/found false = no valid entry (th...
Definition IndexedEntryRequests.h:142
This abstract class define ITC message type and payload for the application to request read Indexed E...
Definition IndexedEntryRequests.h:116
Payload for Message: GetPrevious.
Definition IndexedEntryRequests.h:208
Cpl::Persistent::Payload & m_entryDst
INPUT/OUTPUT: Memory to hold the retrieved entry.
Definition IndexedEntryRequests.h:217
IndexedEntryReader::EntryMarker_T m_markerEntryRetreived
OUTPUT (response field): The 'marker' associated with the found/retrieved entry.
Definition IndexedEntryRequests.h:220
IndexedEntryReader::EntryMarker_T & m_beginHereMarker
INPUT (optional): The 'marker' on where to begin searching from.
Definition IndexedEntryRequests.h:214
bool m_success
GET results (response field) true = entry was successfully retrieved/found false = no valid entry (th...
Definition IndexedEntryRequests.h:226
uint64_t m_olderThan
INPUT: newer timestamp to search criteria.
Definition IndexedEntryRequests.h:211
This abstract class define ITC message type and payload for the application to request read Indexed E...
Definition IndexedEntryRequests.h:200
This concrete class implements the Cpl::Persistent::Record interface to store a collection 'entries'.
Definition IndexedEntryRecord.h:53
bool clearAllEntries() noexcept
See Cpl::Persistent::IndexedEntryWriter.
size_t getMaxIndex() const noexcept
See Cpl::Persistent::IndexedEntryReader.
bool getNext(uint64_t newerThan, const IndexedEntryReader::EntryMarker_T beginHereMarker, Payload &dst, IndexedEntryReader::EntryMarker_T &entryMarker) noexcept
See Cpl::Persistent::IndexedEntryReader.
bool getByBufferIndex(size_t bufferIndex, Payload &dst, IndexedEntryReader::EntryMarker_T &entryMarker) noexcept
See Cpl::Persistent::IndexedEntryReader.
bool addEntry(const Payload &src) noexcept
See Cpl::Persistent::IndexedEntryWriter.
bool getLatest(Payload &dst, IndexedEntryReader::EntryMarker_T &entryMarker) noexcept
See Cpl::Persistent::IndexedEntryReader.
bool getPrevious(uint64_t olderThan, const IndexedEntryReader::EntryMarker_T beginHereMarker, Payload &dst, IndexedEntryReader::EntryMarker_T &entryMarker) noexcept
See Cpl::Persistent::IndexedEntryReader.
This concrete template class implements the ITC messaging (and Model Point monitoring) needed to prov...
Definition IndexedEntryServer.h:51
bool m_opened
Track my open state.
Definition IndexedEntryServer.h:176
Cpl::Container::RingBufferMP< ENTRY > & m_addBuffer
the 'add' buffer
Definition IndexedEntryServer.h:173
size_t getMaxIndex() const noexcept
See Cpl::Persistent::IndexEntryReader.
Definition IndexedEntryServer.h:152
void request(CloseMsg &msg)
This method stops the server (See Cpl::Itc::CloseSync)
Definition IndexedEntryServer.h:80
void request(OpenMsg &msg)
This method starts the server (See Cpl::Itc::OpenSync)
Definition IndexedEntryServer.h:68
void request(GetLatestMsg &msg)
See Cpl::Persistent::GetLatestRequest.
Definition IndexedEntryServer.h:118
IndexedEntryServer(Cpl::Dm::MailboxServer &myMbox, IndexedEntryRecord &indexedEntryRecord, Cpl::Container::RingBufferMP< ENTRY > &incomingEntriesBuffer) noexcept
Constructor.
Definition IndexedEntryServer.h:54
virtual void hookAddingEntry(ENTRY &src)
Hook to allow a child class processing when an entry is added. This method is called just PRIOR to wr...
Definition IndexedEntryServer.h:111
Cpl::Dm::SubscriberComposer< IndexedEntryServer, Cpl::Dm::Mp::Uint32 > m_observerElementCount
Observer for change notification (to the RingBuffer)
Definition IndexedEntryServer.h:170
void request(GetNextMsg &msg)
See Cpl::Persistent::GetNextRequest.
Definition IndexedEntryServer.h:126
IndexedEntryRecord & m_record
Indexed Entry Record that handles the actual work to read/write the data.
Definition IndexedEntryServer.h:167
void elementCountChanged(Cpl::Dm::Mp::Uint32 &mp, Cpl::Dm::SubscriberApi &clientObserver) noexcept
Element Count Change notification.
Definition IndexedEntryServer.h:92
void request(GetPreviousMsg &msg)
See Cpl::Persistent::GetPreviousRequest.
Definition IndexedEntryServer.h:135
void request(GetByBufferIndexMsg &msg)
See Cpl::Persistent::GetByBufferIndexRequest.
Definition IndexedEntryServer.h:144
void request(ClearAllEntriesMsg &msg)
See Cpl::Persistent::ClearAllEntriesRequest.
Definition IndexedEntryServer.h:158
The 'Cpl' namespace is the root name space for the Colony.
Definition Api16.h:20
Encapsulate all Model Points in the 'mp' namespace to prevent polluting the global name space.
Definition ModelPoints.h:30