GM6000 Digital Heater Controller Branch: main
SDX-1330
Runnable.h
Go to the documentation of this file.
1#ifndef Cpl_System_Runnable_h_
2#define Cpl_System_Runnable_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///
16namespace Cpl {
17///
18namespace System {
19
20
21/// Forward class reference to avoid a circular dependency.
22class Thread;
23
24
25/** This is an abstract class defines the interface for an object
26 that is "executed" when a Thread object is created.
27 */
29{
30public:
31 /// Virtual destructor
32 virtual ~Runnable() {};
33
34 /** This method is called when the Thread is started. If
35 this function returns, the Thread will be terminated.
36 This method is implemented by the base class, the application
37 and/or child class needs to implement the 'appRun()'
38 method.
39 */
40 virtual void run();
41
42 /** This method is a request to have the runnable object
43 terminate itself. This is only a request, it is
44 not a requirement of a runnable object to oblige the
45 request. Some runnable objects are just not 'built'
46 to handle a such a request. On the other hand, a runnable
47 object such as a MailBoxServer is, and should make
48 every attempt to comply with the request.
49
50 NOTES:
51
52 1) This a low-level terminate request in that it
53 does not understand the "semantics" of what the
54 thread is currently doing. It simply attempts to
55 exit the run() method. The system must first shutdown
56 the "application" of the thread BEFORE calling this
57 method.
58 2) This method is an attempted work-around for terminating
59 threads by having the thread run itself to completion.
60 Not all OSes support a polite way (i.e. reclaiming
61 resource, memory, etc.) of killing threads.
62 */
63 virtual void pleaseStop() {}
64
65 /** This method returns true if the instance has 'entered' its
66 run method; false is returned, i.e. the run() method has
67 completed.
68 */
69 virtual bool isRunning() noexcept;
70
71
72protected:
73 /// Constructor
75
76 /** This method is called from the run() method. It is intended to
77 to be the entry point for application specific code that is
78 executed for the associated thread.
79 */
80 virtual void appRun() = 0;
81
82
83protected:
84 /// Tracks the run state of the instance
86
87public:
88 /** This method has COMPONENT Scope, it is only made public to avoid the
89 tight coupling of the 'friend mechanism' for friending current and future
90 concrete thread classes. The application SHOULD NEVER call/use this
91 method.
92
93 This method is used to provide the runnable instance knowledge about
94 what thread it is associated with. The primary motivation for this is
95 to help terminate a thread when pleaseStop() is called. A default
96 implementation is provided that does NOTHING. It is up the concrete
97 child class to decide how (if at all) to use this information. The
98 Cpl::System::Thread will call this method BEFORE the run() is called.
99 */
100 virtual void setThreadOfExecution_( Thread* myThreadPtr ) {}
101
102
103};
104
105}; // end namespaces
106};
107#endif // end header latch
This is an abstract class defines the interface for an object that is "executed" when a Thread object...
Definition Runnable.h:29
virtual void pleaseStop()
This method is a request to have the runnable object terminate itself.
Definition Runnable.h:63
bool m_running
Tracks the run state of the instance.
Definition Runnable.h:85
virtual void appRun()=0
This method is called from the run() method.
virtual ~Runnable()
Virtual destructor.
Definition Runnable.h:32
virtual void run()
This method is called when the Thread is started.
virtual void setThreadOfExecution_(Thread *myThreadPtr)
This method has COMPONENT Scope, it is only made public to avoid the tight coupling of the 'friend me...
Definition Runnable.h:100
virtual bool isRunning() noexcept
This method returns true if the instance has 'entered' its run method; false is returned,...
This abstract class defines the operations that can be performed on a thread.
Definition Thread.h:62
The 'Cpl' namespace is the root name space for the Colony.
Definition Api16.h:20