2015-03-18 13:24:31 +01:00
|
|
|
/******************************************************************************
|
|
|
|
* Icinga 2 *
|
2018-10-18 09:27:04 +02:00
|
|
|
* Copyright (C) 2012-2018 Icinga Development Team (https://icinga.com/) *
|
2015-03-18 13:24:31 +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 published by the Free Software Foundation; either version 2 *
|
|
|
|
* of the License, or (at your option) any later version. *
|
|
|
|
* *
|
|
|
|
* 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. *
|
|
|
|
* *
|
|
|
|
* 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., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. *
|
|
|
|
******************************************************************************/
|
|
|
|
|
|
|
|
#ifndef LOADER_H
|
|
|
|
#define LOADER_H
|
|
|
|
|
|
|
|
#include "base/i2-base.hpp"
|
|
|
|
#include "base/string.hpp"
|
|
|
|
#include <boost/thread/tss.hpp>
|
|
|
|
#include <queue>
|
|
|
|
|
|
|
|
namespace icinga
|
|
|
|
{
|
|
|
|
|
|
|
|
struct DeferredInitializer
|
|
|
|
{
|
|
|
|
public:
|
2018-01-04 08:54:18 +01:00
|
|
|
DeferredInitializer(std::function<void ()> callback, int priority)
|
|
|
|
: m_Callback(std::move(callback)), m_Priority(priority)
|
2015-03-18 13:24:31 +01:00
|
|
|
{ }
|
|
|
|
|
2017-12-20 13:22:38 +01:00
|
|
|
bool operator<(const DeferredInitializer& other) const
|
2015-03-18 13:24:31 +01:00
|
|
|
{
|
|
|
|
return m_Priority < other.m_Priority;
|
|
|
|
}
|
|
|
|
|
2018-01-04 04:25:35 +01:00
|
|
|
void operator()()
|
2015-03-18 13:24:31 +01:00
|
|
|
{
|
|
|
|
m_Callback();
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
2018-01-04 04:25:35 +01:00
|
|
|
std::function<void ()> m_Callback;
|
2015-03-18 13:24:31 +01:00
|
|
|
int m_Priority;
|
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Loader helper functions.
|
|
|
|
*
|
|
|
|
* @ingroup base
|
|
|
|
*/
|
2017-12-31 07:22:16 +01:00
|
|
|
class Loader
|
2015-03-18 13:24:31 +01:00
|
|
|
{
|
|
|
|
public:
|
2018-01-04 04:25:35 +01:00
|
|
|
static void AddDeferredInitializer(const std::function<void ()>& callback, int priority = 0);
|
|
|
|
static void ExecuteDeferredInitializers();
|
2015-03-18 13:24:31 +01:00
|
|
|
|
|
|
|
private:
|
2018-01-04 04:25:35 +01:00
|
|
|
Loader();
|
2015-03-18 13:24:31 +01:00
|
|
|
|
2018-01-04 04:25:35 +01:00
|
|
|
static boost::thread_specific_ptr<std::priority_queue<DeferredInitializer> >& GetDeferredInitializers();
|
2015-03-18 13:24:31 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif /* LOADER_H */
|