GM6000 Digital Heater Controller Branch: main
SDX-1330
Mutex.h
Go to the documentation of this file.
1#ifndef Cpl_System_Mutex_h_
2#define Cpl_System_Mutex_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
17/// Defer the definition of the a raw mutex type to the application's 'platform'
18#define Cpl_System_Mutex_T Cpl_System_Mutex_T_MAP
19
20
21///
22namespace Cpl {
23///
24namespace System {
25
26/** This mutex class defines the interface for a mutex that has "recursive"
27 semantics. Recursive semantic allows the thread that owns the mutex
28 to acquire ownership multiple times by calling lock() multiple times. There
29 must be a corresponding number of unlock() calls made before the ownership
30 of the mutex is released.
31 */
32class Mutex
33{
34public:
35 /// Constructor
37
38 /// Destructor
40
41public:
42 /** This method is invoked prior to entering a critical
43 section. If another thread currently "owns" the
44 mutex, the current thread will "wait" until it
45 can obtain ownership before proceeding.
46 */
47 void lock( void );
48
49 /** This method is invoke at the end of a critical
50 section. This call will release the ownership of
51 the mutex.
52 */
53 void unlock( void );
54
55
56protected:
57 /// Raw Mutex handle/instance/pointer
59
60
61private:
62 /// Prevent access to the copy constructor -->mutexes can not be copied!
63 Mutex( const Mutex& m );
64
65 /// Prevent access to the assignment operator -->mutexes can not be copied!
66 const Mutex& operator=( const Mutex& m );
67
68
69public:
70 /** This concrete class provides a simple mechanism for providing mutex
71 protection for a "scope block". The class is instantiated as
72 a local variable for the scope block it is meant to protected. When
73 this object is created - it calls lock() on its mutex. When this
74 object is destroyed - it calls unlock() on its mutex.
75 */
77 {
78 private:
79 /// Reference to the mutex to be used for synchronization
80 Mutex & m_mutex;
81
82 public:
83 /// Constructor. This will block until the mutex lock is acquired.
84 inline ScopeBlock( Mutex& mutex ) noexcept:m_mutex( mutex ) { m_mutex.lock(); }
85
86 /// Destructor. This method releases ownership of the mutex
87 inline ~ScopeBlock() { m_mutex.unlock(); }
88
89
90 private:
91 /** This method PREVENTS this object from being created on the Heap.
92 This class can only/should only be instantiated as a local variable to
93 a critical section scope block!
94 */
95 void* operator new(size_t);
96 };
97
98};
99
100
101
102}; // end namespaces
103};
104#endif // end header latch
#define Cpl_System_Mutex_T
Defer the definition of the a raw mutex type to the application's 'platform'.
Definition Mutex.h:18
This concrete class provides a simple mechanism for providing mutex protection for a "scope block".
Definition Mutex.h:77
~ScopeBlock()
Destructor. This method releases ownership of the mutex.
Definition Mutex.h:87
ScopeBlock(Mutex &mutex) noexcept
Constructor. This will block until the mutex lock is acquired.
Definition Mutex.h:84
This mutex class defines the interface for a mutex that has "recursive" semantics.
Definition Mutex.h:33
Cpl_System_Mutex_T m_mutex
Raw Mutex handle/instance/pointer.
Definition Mutex.h:58
~Mutex()
Destructor.
void unlock(void)
This method is invoke at the end of a critical section.
void lock(void)
This method is invoked prior to entering a critical section.
Mutex()
Constructor.
The 'Cpl' namespace is the root name space for the Colony.
Definition Api16.h:20