GM6000 Digital Heater Controller Branch: main
SDX-1330
Api.h
Go to the documentation of this file.
1#ifndef Cpl_System_Api_h_
2#define Cpl_System_Api_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
16///
17namespace Cpl {
18///
19namespace System {
20
21
22/** This class defines methods for initializing the Colony.Core class library
23 and other startup/init actions.
24
25 NOTE: The Colony.Core class library MUST BE INITIALIZED before calling
26 any other Colony.Core methods/class/functions!
27 */
28class Api
29{
30public:
31 /** This function initializes the Colony.Core class library. This
32 function should be called as soon possible on start-up/boot-up of the
33 application.
34
35 NOTES:
36
37 o This method MUST be called BEFORE any other methods in the
38 Colony.Core package is called! The only exception to this rule
39 is for internal Colony.Core use only.
40 o This method should only be called ONCE!
41 */
42 static void initialize( void );
43
44
45 /** This function is used to initiate thread scheduling. The semantics of
46 this call is that thread scheduling is guarantied to occur AFTER this
47 call. However thread scheduling could have already begun/started PRIOR
48 to this call. The actual behavior is platform specific.
49
50 NOTE: This function MAY or MAY NOT return. The specific behavior is
51 platform specific. It is the application's responsible to properly
52 handle the function's 'return behavior'
53 */
54 static void enableScheduling( void );
55
56 /** This function returns true if scheduling has enabled using the enableScheduling()
57 functions. When this function returns true, the application is guaranteed that
58 current execution context is a CPL thread (assuming the application did not create
59 any threads outside of the CPL Threading interface).
60 */
61 static bool isSchedulingEnabled( void );
62
63
64public:
65 /** This method causes the current thread to be suspended for
66 n milliseconds.
67 */
68 static void sleep( unsigned long milliseconds ) noexcept;
69
70 /** This method is the same as sleep(), EXCEPT that is guaranteed to
71 suspend in 'real time'. Typically an application NEVER needs
72 to call this method. See the SimTick interface for additional
73 details about Simulated Time.
74 */
75 static void sleepInRealTime( unsigned long milliseconds ) noexcept;
76
77public:
78 /** This method is used to temporarily suspend thread scheduling, i.e. no
79 thread context switch will occur until resumeScheduling() is called.
80 For every call to suspendScheduling() there must be a matching call
81 to resumeScheduling(). Whether or not the calls to resumeScheduling()
82 can be nested is platform specific.
83
84 NOTES:
85 o The application MUST be very careful when using this method, i.e.
86 it should NOT make an Cpl::System calls when scheduling has
87 been suspended.
88 o The time between suspending and resuming scheduling should be kept
89 as SMALL AS POSSIBLE.
90 o The details of what happens is VERY platform specific, i.e. Windows
91 and POSIX do not natively provide this functionality. Typically,
92 this type of semantic only has meaning/is-useful when using an RTOS.
93 OR said another - use of the suspend|resume methods are NOT
94 portable with respect to guaranteed behavior across platforms.
95 */
96 static void suspendScheduling(void);
97
98 /** This method is used to resume thread scheduling after a call to
99 suspendScheduling has been made.
100 */
101 static void resumeScheduling(void);
102
103};
104
105
106}; // end namespaces
107};
108#endif // end header latch
109
This class defines methods for initializing the Colony.Core class library and other startup/init acti...
Definition Api.h:29
static void sleep(unsigned long milliseconds) noexcept
This method causes the current thread to be suspended for n milliseconds.
static void initialize(void)
This function initializes the Colony.Core class library.
static void enableScheduling(void)
This function is used to initiate thread scheduling.
static void suspendScheduling(void)
This method is used to temporarily suspend thread scheduling, i.e.
static bool isSchedulingEnabled(void)
This function returns true if scheduling has enabled using the enableScheduling() functions.
static void sleepInRealTime(unsigned long milliseconds) noexcept
This method is the same as sleep(), EXCEPT that is guaranteed to suspend in 'real time'.
static void resumeScheduling(void)
This method is used to resume thread scheduling after a call to suspendScheduling has been made.
The 'Cpl' namespace is the root name space for the Colony.
Definition Api16.h:20