GM6000 Digital Heater Controller Branch: main
SDX-1330
IndexedEntryRequests.h
Go to the documentation of this file.
1#ifndef Cpl_Persistent_Indexed_Entry_Requests_h_
2#define Cpl_Persistent_Indexed_Entry_Requests_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
18#include "Cpl/Itc/SAP.h"
21
22///
23namespace Cpl {
24///
25namespace Persistent {
26
27
28/** This abstract class define ITC message type and payload for the application
29 to request read Indexed Entry data
30
31 See the Cpl/Itc/README.txt file for the semantics for the 'ownership' of the
32 payload contents.
33
34 NOTE: This interface can/should NOT be used synchronously. The application
35 is required to only use asynchronous semantics.
36 */
38{
39public:
40 /// SAP for this API
42
43public:
44 /// Payload for Message: GetLatest
45 class Payload
46 {
47 public:
48 /// INPUT/OUTPUT: Memory to hold the retrieved entry
50
51 /// OUTPUT (response field): The 'marker' associated with the found/retrieved entry
53
54 /** GET results (response field)
55 true = entry was successfully retrieved/found
56 false = no valid entry (that met the getXxx() criteria)
57 */
59
60 public:
61 /// Constructor. Use for getLatest() message
63 :m_entryDst( entryDst ), m_success( false )
64 {
65 }
66 };
67
68
69public:
70 /// Message Type: GetLatest
72
73 /// Request: GetLatest message
74 virtual void request( GetLatestMsg& msg ) = 0;
75
76public:
77 /// Virtual Destructor
78 virtual ~GetLatestRequest() {}
79};
80
81
82/** This abstract class define ITC message type and payload for asynchronous
83 response (to the application) of a GetLatest message.
84
85 The Application is responsible for implementing the response method(s).
86 */
88{
89public:
90 /// Response Message Type
94
95public:
96 /// Response
97 virtual void response( GetLatestMsg& msg ) = 0;
98
99
100public:
101 /// Virtual destructor
103};
104
105////////////////////////////////////////////////////////////////////////////////
106/** This abstract class define ITC message type and payload for the application
107 to request read Indexed Entry data
108
109 See the Cpl/Itc/README.txt file for the semantics for the 'ownership' of the
110 payload contents.
111
112 NOTE: This interface can/should NOT be used synchronously. The application
113 is required to only use asynchronous semantics.
114 */
116{
117public:
118 /// SAP for this API
120
121public:
122 /// Payload for Message: GetNext
124 {
125 public:
126 /// INPUT: newer timestamp to search criteria
127 uint64_t m_newerThan;
128
129 /// INPUT/OUTPUT: Memory to hold the retrieved entry
131
132 /// INPUT: The 'marker' on where to begin searching from
134
135 /// OUTPUT (response field): The 'marker' associated with the found/retrieved entry
137
138 /** GET results (response field)
139 true = entry was successfully retrieved/found
140 false = no valid entry (that met the getXxx() criteria)
141 */
143
144 public:
145 /// Constructor. Use for getNext() message
146 Payload( Cpl::Persistent::Payload& entryDst, IndexedEntryReader::EntryMarker_T& beginHere, uint64_t newerThan )
147 :m_newerThan( newerThan ), m_entryDst( entryDst ), m_beginHereMarker( beginHere ), m_success( false )
148 {
149 }
150
151 };
152
153public:
154 /// Message Type: GetNext
156
157 /// Request: GetNext message
158 virtual void request( GetNextMsg& msg ) = 0;
159
160public:
161 /// Virtual Destructor
162 virtual ~GetNextRequest() {}
163};
164
165
166/** This abstract class define ITC message type and payload for asynchronous
167 response (to the application) of a GetNext message.
168
169 The Application is responsible for implementing the response method(s).
170 */
172{
173public:
174 /// Response Message Type
178
179public:
180 /// Response
181 virtual void response( GetNextMsg& msg ) = 0;
182
183
184public:
185 /// Virtual destructor
186 virtual ~GetNextResponse() {}
187};
188
189////////////////////////////////////////////////////////////////////////////////
190/** This abstract class define ITC message type and payload for the application
191 to request read Indexed Entry data
192
193 See the Cpl/Itc/README.txt file for the semantics for the 'ownership' of the
194 payload contents.
195
196 NOTE: This interface can/should NOT be used synchronously. The application
197 is required to only use asynchronous semantics.
198 */
200{
201public:
202 /// SAP for this API
204
205public:
206 /// Payload for Message: GetPrevious
208 {
209 public:
210 /// INPUT: newer timestamp to search criteria
211 uint64_t m_olderThan;
212
213 /// INPUT (optional): The 'marker' on where to begin searching from
215
216 /// INPUT/OUTPUT: Memory to hold the retrieved entry
218
219 /// OUTPUT (response field): The 'marker' associated with the found/retrieved entry
221
222 /** GET results (response field)
223 true = entry was successfully retrieved/found
224 false = no valid entry (that met the getXxx() criteria)
225 */
227
228 public:
229 /// Constructor. Use for getPrevious() message
230 Payload( Cpl::Persistent::Payload& entryDst, IndexedEntryReader::EntryMarker_T& beginHere, uint64_t olderThan )
231 :m_olderThan( olderThan ), m_beginHereMarker( beginHere ), m_entryDst( entryDst ), m_success( false )
232 {
233 }
234 };
235
236
237 /// Message Type: GetPrevious
239
240 /// Request: GetPrevious message
241 virtual void request( GetPreviousMsg& msg ) = 0;
242
243public:
244 /// Virtual Destructor
246};
247
248/** This abstract class define ITC message type and payload for asynchronous
249 response (to the application) of a GetPrevious message.
250
251 The Application is responsible for implementing the response method(s).
252 */
254{
255public:
256 /// Response Message Type
260
261public:
262 /// Response
263 virtual void response( GetPreviousMsg& msg ) = 0;
264
265
266public:
267 /// Virtual destructor
269};
270
271
272////////////////////////////////////////////////////////////////////////////////
273/** This abstract class define ITC message type and payload for the application
274 to request read Indexed Entry data
275
276 See the Cpl/Itc/README.txt file for the semantics for the 'ownership' of the
277 payload contents.
278
279 NOTE: This interface can/should NOT be used synchronously. The application
280 is required to only use asynchronous semantics.
281 */
283{
284public:
285 /// SAP for this API
287
288public:
289 /// Payload for Message: GetByBufferIndex
291 {
292 public:
293 /// INPUT: buffer index
294 size_t m_index;
295
296 /// INPUT/OUTPUT: Memory to hold the retrieved entry
298
299 /// OUTPUT (response field): The 'marker' associated with the found/retrieved entry
301
302 /** GET results (response field)
303 true = entry was successfully retrieved/found
304 false = no valid entry (that met the getXxx() criteria)
305 */
307
308 public:
309 /// Constructor. Use for getLatest() message
310 Payload( Cpl::Persistent::Payload& entryDst, size_t index )
311 :m_index( index ), m_entryDst( entryDst ), m_success( false )
312 {
313 }
314 };
315
316
317 /// Message Type: GetByBufferIndex
319
320 /// Request: GetByBufferIndex message
321 virtual void request( GetByBufferIndexMsg& msg ) = 0;
322
323
324public:
325 /** This method returns the maximum allowed 'bufferIndex' when calling
326 getByIndex().
327
328 NOTE: THIS IS NOT AN ITC MESSAGE REQUEST - it is 'traditional' thread-safe
329 function call.
330 */
331 virtual size_t getMaxIndex() const noexcept = 0;
332
333
334public:
335 /// Virtual Destructor
337};
338
339
340/** This abstract class define ITC message type and payload for asynchronous
341 response (to the application) of a GetByBufferIndex message.
342
343 The Application is responsible for implementing the response method(s).
344 */
346{
347public:
348 /// Response Message Type
352
353public:
354 /// Response
355 virtual void response( GetByBufferIndexMsg& msg ) = 0;
356
357
358public:
359 /// Virtual destructor
361};
362
363
364////////////////////////////////////////////////////////////////////////////////
365/** This abstract class define ITC message type and payload for the application
366 to clear/delete all entries
367
368 See the Cpl/Itc/README.txt file for the semantics for the 'ownership' of the
369 payload contents.
370
371 NOTE: This interface can/should NOT be used synchronously. The application
372 is required to only use asynchronous semantics.
373 */
375{
376public:
377 /// SAP for this API
379
380public:
381 /// Payload for Message
383 {
384 public:
385 /** Clear results (response field)
386 true = all entries where successfully cleared
387 false = an error occurred
388 */
390
391 public:
392 /// Constructor. Use for getLatest() message
394 :m_success( false )
395 {
396 }
397 };
398
399
400 /// Message Type: GetPrevious
402
403 /// Request: GetPrevious message
404 virtual void request( ClearAllEntriesMsg& msg ) = 0;
405
406public:
407 /// Virtual Destructor
409};
410
411/** This abstract class define ITC message type and payload for asynchronous
412 response (to the application) of a ClearAllEntries message.
413
414 The Application is responsible for implementing the response method(s).
415 */
417{
418public:
419 /// Response Message Type
423
424public:
425 /// Response
426 virtual void response( ClearAllEntriesMsg& msg ) = 0;
427
428public:
429 /// Virtual destructor
431};
432
433
434
435}; // end namespaces
436};
437#endif // end header latch
This template class represents a service request message to a particular server.
Definition RequestMessage.h:34
This template class represents a client response message, which is posted to the client's mailbox aft...
Definition ResponseMessage.h:40
This concrete template class represents the interface to a ITC Service Access Point (SAP).
Definition SAP.h:30
Payload for Message.
Definition IndexedEntryRequests.h:383
Payload()
Constructor. Use for getLatest() message.
Definition IndexedEntryRequests.h:393
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
Cpl::Itc::SAP< ClearAllEntriesRequest > SAP
SAP for this API.
Definition IndexedEntryRequests.h:378
virtual ~ClearAllEntriesRequest()
Virtual Destructor.
Definition IndexedEntryRequests.h:408
Cpl::Itc::RequestMessage< ClearAllEntriesRequest, Payload > ClearAllEntriesMsg
Message Type: GetPrevious.
Definition IndexedEntryRequests.h:401
virtual void request(ClearAllEntriesMsg &msg)=0
Request: GetPrevious message.
This abstract class define ITC message type and payload for asynchronous response (to the application...
Definition IndexedEntryRequests.h:417
virtual ~ClearAllEntriesResponse()
Virtual destructor.
Definition IndexedEntryRequests.h:430
Cpl::Itc::ResponseMessage< ClearAllEntriesResponse, ClearAllEntriesRequest, ClearAllEntriesRequest::Payload > ClearAllEntriesMsg
Response Message Type.
Definition IndexedEntryRequests.h:422
virtual void response(ClearAllEntriesMsg &msg)=0
Response.
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
Payload(Cpl::Persistent::Payload &entryDst, size_t index)
Constructor. Use for getLatest() message.
Definition IndexedEntryRequests.h:310
This abstract class define ITC message type and payload for the application to request read Indexed E...
Definition IndexedEntryRequests.h:283
virtual size_t getMaxIndex() const noexcept=0
This method returns the maximum allowed 'bufferIndex' when calling getByIndex().
Cpl::Itc::RequestMessage< GetByBufferIndexRequest, Payload > GetByBufferIndexMsg
Message Type: GetByBufferIndex.
Definition IndexedEntryRequests.h:318
virtual void request(GetByBufferIndexMsg &msg)=0
Request: GetByBufferIndex message.
Cpl::Itc::SAP< GetByBufferIndexRequest > SAP
SAP for this API.
Definition IndexedEntryRequests.h:286
This abstract class define ITC message type and payload for asynchronous response (to the application...
Definition IndexedEntryRequests.h:346
virtual void response(GetByBufferIndexMsg &msg)=0
Response.
virtual ~GetByBufferIndexResponse()
Virtual destructor.
Definition IndexedEntryRequests.h:360
Cpl::Itc::ResponseMessage< GetByBufferIndexResponse, GetByBufferIndexRequest, GetByBufferIndexRequest::Payload > GetByBufferIndexMsg
Response Message Type.
Definition IndexedEntryRequests.h:351
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
Payload(Cpl::Persistent::Payload &entryDst)
Constructor. Use for getLatest() message.
Definition IndexedEntryRequests.h:62
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
virtual ~GetLatestRequest()
Virtual Destructor.
Definition IndexedEntryRequests.h:78
Cpl::Itc::SAP< GetLatestRequest > SAP
SAP for this API.
Definition IndexedEntryRequests.h:41
virtual void request(GetLatestMsg &msg)=0
Request: GetLatest message.
Cpl::Itc::RequestMessage< GetLatestRequest, Payload > GetLatestMsg
Message Type: GetLatest.
Definition IndexedEntryRequests.h:71
This abstract class define ITC message type and payload for asynchronous response (to the application...
Definition IndexedEntryRequests.h:88
virtual void response(GetLatestMsg &msg)=0
Response.
Cpl::Itc::ResponseMessage< GetLatestResponse, GetLatestRequest, GetLatestRequest::Payload > GetLatestMsg
Response Message Type.
Definition IndexedEntryRequests.h:93
virtual ~GetLatestResponse()
Virtual destructor.
Definition IndexedEntryRequests.h:102
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
Payload(Cpl::Persistent::Payload &entryDst, IndexedEntryReader::EntryMarker_T &beginHere, uint64_t newerThan)
Constructor. Use for getNext() message.
Definition IndexedEntryRequests.h:146
This abstract class define ITC message type and payload for the application to request read Indexed E...
Definition IndexedEntryRequests.h:116
virtual void request(GetNextMsg &msg)=0
Request: GetNext message.
virtual ~GetNextRequest()
Virtual Destructor.
Definition IndexedEntryRequests.h:162
Cpl::Itc::SAP< GetNextRequest > SAP
SAP for this API.
Definition IndexedEntryRequests.h:119
Cpl::Itc::RequestMessage< GetNextRequest, Payload > GetNextMsg
Message Type: GetNext.
Definition IndexedEntryRequests.h:155
This abstract class define ITC message type and payload for asynchronous response (to the application...
Definition IndexedEntryRequests.h:172
virtual ~GetNextResponse()
Virtual destructor.
Definition IndexedEntryRequests.h:186
Cpl::Itc::ResponseMessage< GetNextResponse, GetNextRequest, GetNextRequest::Payload > GetNextMsg
Response Message Type.
Definition IndexedEntryRequests.h:177
virtual void response(GetNextMsg &msg)=0
Response.
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
Payload(Cpl::Persistent::Payload &entryDst, IndexedEntryReader::EntryMarker_T &beginHere, uint64_t olderThan)
Constructor. Use for getPrevious() message.
Definition IndexedEntryRequests.h:230
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
Cpl::Itc::SAP< GetPreviousRequest > SAP
SAP for this API.
Definition IndexedEntryRequests.h:203
virtual ~GetPreviousRequest()
Virtual Destructor.
Definition IndexedEntryRequests.h:245
virtual void request(GetPreviousMsg &msg)=0
Request: GetPrevious message.
Cpl::Itc::RequestMessage< GetPreviousRequest, Payload > GetPreviousMsg
Message Type: GetPrevious.
Definition IndexedEntryRequests.h:238
This abstract class define ITC message type and payload for asynchronous response (to the application...
Definition IndexedEntryRequests.h:254
virtual ~GetPreviousResponse()
Virtual destructor.
Definition IndexedEntryRequests.h:268
Cpl::Itc::ResponseMessage< GetPreviousResponse, GetPreviousRequest, GetPreviousRequest::Payload > GetPreviousMsg
Response Message Type.
Definition IndexedEntryRequests.h:259
virtual void response(GetPreviousMsg &msg)=0
Response.
This structure define an 'marker' that identifies an entry's location in persistent media.
Definition IndexedEntryReader.h:47
This abstract class defines the interface accessing the 'data payload' of an individual Record instan...
Definition Payload.h:29
The 'Cpl' namespace is the root name space for the Colony.
Definition Api16.h:20