2015-11-19 19:38:20 +01:00
|
|
|
/******************************************************************************
|
|
|
|
* Icinga 2 *
|
2018-01-02 12:06:00 +01:00
|
|
|
* Copyright (C) 2012-2018 Icinga Development Team (https://www.icinga.com/) *
|
2015-11-19 19:38:20 +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 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 */
|