GM6000 Digital Heater Controller Branch: main
SDX-1330
Semaphore.h
Go to the documentation of this file.
1#ifndef Cpl_System_Semaphore_h_
2#define Cpl_System_Semaphore_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_map.h"
16#include "Cpl/System/Signable.h"
17
18
19/// Defer the definition of the a raw semaphore type to the application's 'platform'
20#define Cpl_System_Sema_T Cpl_System_Sema_T_MAP
21
22
23///
24namespace Cpl {
25///
26namespace System {
27
28/** This semaphore class defines the interface for a Counting Semaphore.
29
30 NOTES:
31
32 o The 'max-count' for a Semaphore is platform specific.
33 o The class inherits from 'Signable' which contains/defines the
34 "signal()" methods.
35 */
36class Semaphore : public Signable
37{
38public:
39 /** Constructor. The semaphore is created with the specified
40 'initialCount'. A count of zero, will cause an immediate
41 call to 'wait()' to block.
42 */
43 Semaphore( unsigned initialCount=0 );
44
45 /// Destructor
47
48
49public:
50 /** This method causes the current thread to block and wait till the
51 semaphore is signaled/set. NOTE: Can only be called from a Thread
52 context!
53 */
54 void wait( void ) noexcept;
55
56 /** This method is the same as wait(), except that 'timeout' specifies the
57 maximum amount of time, in milliseconds, will block if the semaphore
58 count is zero. The method return true if the semaphore was signaled
59 (i.e. count > 0); else false is returned if the timeout period
60 expired.
61 */
62 bool timedWait( unsigned long timeout ) noexcept;
63
64 /** This method is the same as wait(), except that if the semaphore
65 count is zero, the method returns immediately and has a return code
66 of false. If the semaphore count is greater than zero, the count
67 is decrement and the method returns immediately and has a return code
68 of true.
69 */
70 bool tryWait( void ) noexcept;
71
72
73public:
74 /// Signable API
75 int signal( void ) noexcept;
76
77 /// Signable API
78 int su_signal( void ) noexcept;
79
80
81protected:
82 /// Raw Semaphore handle/instance/pointer
84
85
86protected:
87 /// Helper method for supporting SimTicks and 'real' tick in the same build
88 void waitInRealTime( void ) noexcept;
89
90 /// Helper method for supporting SimTicks and 'real' tick in the same build
91 bool timedWaitInRealTime( unsigned long timeout ) noexcept;
92
93private:
94 /// Prevent access to the copy constructor -->semaphores can not be copied!
95 Semaphore( const Semaphore& m );
96
97 /// Prevent access to the assignment operator -->semaphores can not be copied!
98 const Semaphore& operator=( const Semaphore& m );
99
100
101 /// Friends(s)
102 friend class Api;
103 friend class SimTick;
104};
105
106
107}; // end namespaces
108};
109#endif // end header latch
#define Cpl_System_Sema_T
Defer the definition of the a raw semaphore type to the application's 'platform'.
Definition Semaphore.h:20
This class defines methods for initializing the Colony.Core class library and other startup/init acti...
Definition Api.h:29
This semaphore class defines the interface for a Counting Semaphore.
Definition Semaphore.h:37
~Semaphore()
Destructor.
bool timedWait(unsigned long timeout) noexcept
This method is the same as wait(), except that 'timeout' specifies the maximum amount of time,...
void waitInRealTime(void) noexcept
Helper method for supporting SimTicks and 'real' tick in the same build.
bool timedWaitInRealTime(unsigned long timeout) noexcept
Helper method for supporting SimTicks and 'real' tick in the same build.
void wait(void) noexcept
This method causes the current thread to block and wait till the semaphore is signaled/set.
int su_signal(void) noexcept
Signable API
int signal(void) noexcept
Signable API
Cpl_System_Sema_T m_sema
Raw Semaphore handle/instance/pointer.
Definition Semaphore.h:83
bool tryWait(void) noexcept
This method is the same as wait(), except that if the semaphore count is zero, the method returns imm...
Semaphore(unsigned initialCount=0)
Constructor.
This abstract class defines the interface by which a client can cause an object that is waiting-on-a-...
Definition Signable.h:28
This class define the interface to provide a simulates system tick (in milliseconds) to the applicati...
Definition SimTick.h:236
The 'Cpl' namespace is the root name space for the Colony.
Definition Api16.h:20