GM6000 Digital Heater Controller Branch: main
SDX-1330
PrivateStartup_.h
Go to the documentation of this file.
1#ifndef Cpl_System_PrivateStartup_x_h__
2#define Cpl_System_PrivateStartup_x_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 This file contains a collection of classes, interfaces, etc. that are
16 are intended to be USE ONLY by Colony.Core sub-system - NOT by clients,
17 consumers of the Colony.Core package.
18*/
19
20#include "Cpl/Container/Item.h"
21
22
23///
24namespace Cpl {
25///
26namespace System {
27
28
29/** This class defines a start-up handler/hook that allows a Colony.Core
30 sub-system to register to be called when the Api::initialize()
31 method is called.
32
33 The intended usage of this interface is that a sub-system creates
34 a sub-class of this class and then creates a static instance of
35 its sub-class. During the init process, the instance's 'notifyInit'
36 method will be called.
37
38 Note: This class/interface SHOULD ONLY be used by Colony.Core
39 interfaces - the application should NEVER register a
40 startup hook!
41 */
43{
44public:
45 /** This enum defines 'init_levels'. The init levels are processed
46 in order (lowest value to highest), i.e. callbacks for lowest
47 numbered init level are called first and the callback for highest
48 numbered init level are called last. Within a init level there is
49 no guaranteed order to the callbacks.
50 */
52 {
53 eTEST_INFRA=0, /// Initialized first
55 eMIDDLE_WARE,
56 eAPPLICATION
57 }; /// Initialized last
58
59
60public:
61 /** This method is called as part of the Colony.Core initialize()
62 process. The 'init_level' informs the client what initialize
63 level context the notifyInit() method is being called.
64 */
65 virtual void notify( InitLevel_T init_level ) = 0;
66
67
68protected:
69 /** Base Class constructor -->performs the callback/init-level
70 registration
71 */
72 StartupHook_( InitLevel_T myInitLevel );
73
74public:
75 /// Ensure the destructor is virtual
76 virtual ~StartupHook_() {}
77
78
79public:
80 /** This is used to register instance of this class. This method is
81 NOT implemented by the 'client sub-system' - it is a singleton that
82 is implemented Cpl::System::Startup classes.
83
84 NOTE: This is the ONE Colony.Core method that can be called BEFORE
85 Cpl::System::Api::initialize() is called.
86 */
87 static void registerHook( StartupHook_& callbackInstance, InitLevel_T initOrder );
88
89 /** This method is intended to be USED ONLY by the Cpl::System::Api::init()
90 method to trigger all of the registered init callbacks.
91 */
92 static void notifyStartupClients( void );
93};
94
95
96}; // end namespaces
97};
98#endif // end header latch
99
This class is used by the Container classes to implement a various types of singly linked containers.
Definition Item.h:33
This class defines a start-up handler/hook that allows a Colony.Core sub-system to register to be cal...
Definition PrivateStartup_.h:43
static void registerHook(StartupHook_ &callbackInstance, InitLevel_T initOrder)
This is used to register instance of this class.
static void notifyStartupClients(void)
This method is intended to be USED ONLY by the Cpl::System::Api::init() method to trigger all of the ...
virtual void notify(InitLevel_T init_level)=0
Initialized last.
StartupHook_(InitLevel_T myInitLevel)
Base Class constructor -->performs the callback/init-level registration.
virtual ~StartupHook_()
Ensure the destructor is virtual.
Definition PrivateStartup_.h:76
InitLevel_T
This enum defines 'init_levels'.
Definition PrivateStartup_.h:52
@ eSYSTEM
Initialized first.
Definition PrivateStartup_.h:54
The 'Cpl' namespace is the root name space for the Colony.
Definition Api16.h:20