2009-01-14 12:15:13 +01:00
|
|
|
/*
|
|
|
|
|
Lifecycle - registering and triggering lifecycle callbacks
|
2010-12-17 23:28:49 +01:00
|
|
|
|
2009-01-14 12:15:13 +01:00
|
|
|
Copyright (C) Lumiera.org
|
|
|
|
|
2008, Hermann Vosseler <Ichthyostega@web.de>
|
2010-12-17 23:28:49 +01:00
|
|
|
|
2009-01-14 12:15:13 +01:00
|
|
|
This program is free software; you can redistribute it and/or
|
|
|
|
|
modify it under the terms of the GNU General Public License as
|
2010-12-17 23:28:49 +01:00
|
|
|
published by the Free Software Foundation; either version 2 of
|
|
|
|
|
the License, or (at your option) any later version.
|
|
|
|
|
|
2009-01-14 12:15:13 +01:00
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
|
GNU General Public License for more details.
|
2010-12-17 23:28:49 +01:00
|
|
|
|
2009-01-14 12:15:13 +01:00
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
|
along with this program; if not, write to the Free Software
|
|
|
|
|
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
2010-12-17 23:28:49 +01:00
|
|
|
|
2009-01-14 12:15:13 +01:00
|
|
|
* *****************************************************/
|
|
|
|
|
|
|
|
|
|
|
2016-11-03 18:20:10 +01:00
|
|
|
/** @file §§§
|
|
|
|
|
** TODO §§§
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
2009-01-14 12:15:13 +01:00
|
|
|
#include "lib/error.hpp"
|
|
|
|
|
#include "include/lifecycle.h"
|
|
|
|
|
#include "lib/lifecycleregistry.hpp"
|
|
|
|
|
#include "lib/util.hpp"
|
|
|
|
|
|
|
|
|
|
using util::cStr;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
namespace lumiera {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// ==== implementation LifecycleHook class =======
|
|
|
|
|
|
|
|
|
|
typedef LifecycleRegistry::Hook Callback;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
LifecycleHook::LifecycleHook (Symbol eventLabel, Callback callbackFun)
|
|
|
|
|
{
|
|
|
|
|
add (eventLabel,callbackFun);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
LifecycleHook::add (Symbol eventLabel, Callback callbackFun)
|
|
|
|
|
{
|
2009-07-19 05:47:36 +02:00
|
|
|
bool isNew = LifecycleRegistry::instance().enrol (eventLabel,callbackFun);
|
2009-01-14 12:15:13 +01:00
|
|
|
|
|
|
|
|
if (isNew && !strcmp(ON_BASIC_INIT, eventLabel))
|
|
|
|
|
callbackFun(); // when this code executes,
|
|
|
|
|
// then per definition we are already post "basic init"
|
|
|
|
|
// (which happens in the AppState ctor); thus fire it immediately
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
LifecycleHook::trigger (Symbol eventLabel)
|
|
|
|
|
{
|
|
|
|
|
LifecycleRegistry::instance().execute (eventLabel);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2009-09-24 23:02:40 +02:00
|
|
|
const char * ON_BASIC_INIT ("ON_BASIC_INIT");
|
|
|
|
|
const char * ON_GLOBAL_INIT ("ON_GLOBAL_INIT");
|
|
|
|
|
const char * ON_GLOBAL_SHUTDOWN ("ON_GLOBAL_SHUTDOWN");
|
2009-01-14 12:15:13 +01:00
|
|
|
|
2009-09-24 23:02:40 +02:00
|
|
|
const char * ON_EMERGENCY ("ON_EMERGENCY");
|
2009-01-14 12:15:13 +01:00
|
|
|
|
|
|
|
|
|
|
|
|
|
} // namespace lumiera
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
extern "C" { /* ==== implementation C interface for lifecycle hooks ======= */
|
|
|
|
|
|
|
|
|
|
|
2011-08-25 15:08:27 +02:00
|
|
|
const char * lumiera_ON_BASIC_INIT = lumiera::ON_BASIC_INIT;
|
|
|
|
|
const char * lumiera_ON_GLOBAL_INIT = lumiera::ON_GLOBAL_INIT;
|
|
|
|
|
const char * lumiera_ON_GLOBAL_SHUTDOWN = lumiera::ON_GLOBAL_SHUTDOWN;
|
2009-01-14 12:15:13 +01:00
|
|
|
|
2011-08-25 15:08:27 +02:00
|
|
|
const char * lumiera_ON_EMERGENCY = lumiera::ON_EMERGENCY;
|
2009-01-14 12:15:13 +01:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
lumiera_LifecycleHook_add (const char* eventLabel, void callbackFun(void))
|
|
|
|
|
{
|
|
|
|
|
lumiera::LifecycleHook (eventLabel, callbackFun);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
lumiera_Lifecycle_trigger (const char* eventLabel)
|
|
|
|
|
{
|
|
|
|
|
lumiera::LifecycleRegistry::instance().execute (eventLabel);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|