2019-02-25 14:48:22 +01:00
|
|
|
/* Icinga 2 | (c) 2012 Icinga GmbH | GPLv2+ */
|
2015-11-19 19:38:20 +01:00
|
|
|
|
|
|
|
#ifndef ACTIVATIONCONTEXT_H
|
|
|
|
#define ACTIVATIONCONTEXT_H
|
|
|
|
|
|
|
|
#include "config/i2-config.hpp"
|
|
|
|
#include "base/object.hpp"
|
|
|
|
#include <boost/thread/tss.hpp>
|
|
|
|
#include <stack>
|
|
|
|
|
|
|
|
namespace icinga
|
|
|
|
{
|
|
|
|
|
2018-01-04 06:11:04 +01:00
|
|
|
class ActivationContext final : public Object
|
2015-11-19 19:38:20 +01:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
DECLARE_PTR_TYPEDEFS(ActivationContext);
|
|
|
|
|
2018-01-04 04:25:35 +01:00
|
|
|
static ActivationContext::Ptr GetCurrentContext();
|
2015-11-19 19:38:20 +01:00
|
|
|
|
|
|
|
private:
|
|
|
|
static void PushContext(const ActivationContext::Ptr& context);
|
2018-01-04 04:25:35 +01:00
|
|
|
static void PopContext();
|
2015-11-19 19:38:20 +01:00
|
|
|
|
2018-01-04 04:25:35 +01:00
|
|
|
static std::stack<ActivationContext::Ptr>& GetActivationStack();
|
2015-11-19 19:38:20 +01:00
|
|
|
|
|
|
|
static boost::thread_specific_ptr<std::stack<ActivationContext::Ptr> > m_ActivationStack;
|
|
|
|
|
|
|
|
friend class ActivationScope;
|
|
|
|
};
|
|
|
|
|
2017-12-31 07:22:16 +01:00
|
|
|
class ActivationScope
|
2015-11-19 19:38:20 +01:00
|
|
|
{
|
|
|
|
public:
|
2018-01-04 08:54:18 +01:00
|
|
|
ActivationScope(ActivationContext::Ptr context = nullptr);
|
2018-01-04 04:25:35 +01:00
|
|
|
~ActivationScope();
|
2015-11-19 19:38:20 +01:00
|
|
|
|
2018-01-04 04:25:35 +01:00
|
|
|
ActivationContext::Ptr GetContext() const;
|
2015-11-19 19:38:20 +01:00
|
|
|
|
|
|
|
private:
|
|
|
|
ActivationContext::Ptr m_Context;
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif /* ACTIVATIONCONTEXT_H */
|