GM6000 Digital Heater Controller Branch: main
SDX-1330
Mailbox.h
Go to the documentation of this file.
1#ifndef Cpl_Itc_Mailbox_h_
2#define Cpl_Itc_Mailbox_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/Itc/PostApi.h"
16#include "Cpl/Container/SList.h"
17#include "Cpl/System/Signable.h"
18
19
20///
21namespace Cpl {
22///
23namespace Itc {
24
25/** This mailbox class implements an Inter Thread Communications message
26 queue. There is no limit to the number of messages that can be stored in
27 the queue at any given time since the FIFO queue and the messages uses the
28 intrusive container mechanisms from the Cpl::Container namespace.
29 */
30
31class Mailbox :
32 public PostApi,
33 public Cpl::Container::SList<Message>
34{
35public:
36 /// Constructor
38
39
40public:
41 /// See Cpl::Itc::PostApi
42 void post( Message& msg ) noexcept;
43
44 /// See Cpl::Itc::PostApi
45 void postSync( Message& msg ) noexcept;
46
47
48protected:
49 /** This operation is used process any pending messages.
50 */
51 virtual void processMessages() noexcept;
52
53
54 /** This method IS thread safe.
55
56 This method returns true if there is at least one queued ITC message
57 */
58 bool isPendingMessage() noexcept;
59
60protected:
61 /// The EventLoop that I wait-on/dispatch-msgs-from
62 Cpl::System::Signable& m_eventLoop;
63
64};
65
66
67}; // end namespaces
68};
69#endif // end header latch
This template class implements a singly linked list which maintains the ordering imposed on it by the...
Definition SList.h:30
This mailbox class implements an Inter Thread Communications message queue.
Definition Mailbox.h:34
bool isPendingMessage() noexcept
This method IS thread safe.
virtual void processMessages() noexcept
This operation is used process any pending messages.
Mailbox(Cpl::System::Signable &myEventLoop)
Constructor.
void postSync(Message &msg) noexcept
See Cpl::Itc::PostApi.
void post(Message &msg) noexcept
See Cpl::Itc::PostApi.
Cpl::System::Signable & m_eventLoop
The EventLoop that I wait-on/dispatch-msgs-from.
Definition Mailbox.h:62
This abstract class defines the operations for an ITC message.
Definition Message.h:25
This abstract class represents the interface used to send messages to a mailbox.
Definition PostApi.h:31
This abstract class defines the interface by which a client can cause an object that is waiting-on-a-...
Definition Signable.h:28
The 'Cpl' namespace is the root name space for the Colony.
Definition Api16.h:20