icinga2/lib/base/objectlock.hpp

55 lines
1.9 KiB
C++
Raw Normal View History

2013-02-24 08:27:00 +01:00
/******************************************************************************
* Icinga 2 *
2018-01-02 12:06:00 +01:00
* Copyright (C) 2012-2018 Icinga Development Team (https://www.icinga.com/) *
2013-02-24 08:27:00 +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 OBJECTLOCK_H
#define OBJECTLOCK_H
2014-05-25 16:23:35 +02:00
#include "base/object.hpp"
2013-03-16 21:18:53 +01:00
2013-02-24 08:27:00 +01:00
namespace icinga
{
/**
* A scoped lock for Objects.
*/
2017-12-31 07:22:16 +01:00
struct ObjectLock
{
2013-02-24 08:27:00 +01:00
public:
ObjectLock(const Object::Ptr& object);
ObjectLock(const Object *object);
~ObjectLock();
2014-11-12 06:33:20 +01:00
static void LockMutex(const Object *object);
2014-11-12 06:33:20 +01:00
void Lock();
static void Spin(unsigned int it);
2014-11-12 06:33:20 +01:00
void Unlock();
2013-02-24 08:27:00 +01:00
private:
const Object *m_Object{nullptr};
bool m_Locked{false};
2013-02-24 08:27:00 +01:00
};
}
#endif /* OBJECTLOCK_H */