GM6000 Digital Heater Controller Branch: main
SDX-1330
RecordServer.h
Go to the documentation of this file.
1#ifndef Cpl_Persistent_Record_Server_h_
2#define Cpl_Persistent_Record_Server_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
17#include "Cpl/Itc/CloseSync.h"
18
19///
20namespace Cpl {
21///
22namespace Persistent {
23
24/** This concrete class provides an Event driven Runnable object for executing
25 the read/write operation to persistent storage media for N Records.
26 */
28{
29public:
30 /** Constructor. The argument 'timingTickInMsec' specifies the timing
31 resolution that will be used for Cpl::Timer::Local Timers.
32
33 NOTE: 'recordList' is variable length array where the last entry in the
34 array MUST BE a nullptr.
35 */
36 RecordServer( Record* recordList[],
37 unsigned long timingTickInMsec = OPTION_CPL_SYSTEM_EVENT_LOOP_TIMEOUT_PERIOD,
38 Cpl::System::SharedEventHandlerApi* eventHandler = 0 ) noexcept;
39
40public:
41 /// This method starts the server (See Cpl::Itc::OpenSync)
42 void request( OpenMsg& msg );
43
44 /// This method stops the server (See Cpl::Itc::CloseSync)
45 void request( CloseMsg& msg );
46
47protected:
48 /** Variable length list of Records to manage. The last item list must be
49 ZERO to indicate the end-of-the list
50 */
52
53 /// Track my open state
55};
56
57}; // end namespaces
58};
59#endif // end header latch
#define OPTION_CPL_SYSTEM_EVENT_LOOP_TIMEOUT_PERIOD
Specifies the default timeout period for waiting on a event.
Definition EventLoop.h:26
This class extends the Cpl::Dm::EventLoop and Cpl::Itc:Mailbox classes to support the asynchronous ch...
Definition MailboxServer.h:43
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
This abstract class defines the public interface for a Record instance.
Definition Record.h:28
This concrete class provides an Event driven Runnable object for executing the read/write operation t...
Definition RecordServer.h:28
void request(OpenMsg &msg)
This method starts the server (See Cpl::Itc::OpenSync)
Record ** m_records
Variable length list of Records to manage.
Definition RecordServer.h:51
RecordServer(Record *recordList[], unsigned long timingTickInMsec=OPTION_CPL_SYSTEM_EVENT_LOOP_TIMEOUT_PERIOD, Cpl::System::SharedEventHandlerApi *eventHandler=0) noexcept
Constructor.
bool m_opened
Track my open state.
Definition RecordServer.h:54
This abstract class defines the interface for a Shared Event Handler.
Definition SharedEventHandler.h:30
The 'Cpl' namespace is the root name space for the Colony.
Definition Api16.h:20