2014-04-25 14:33:45 +02:00
|
|
|
/******************************************************************************
|
|
|
|
* Icinga 2 *
|
2016-01-12 08:29:59 +01:00
|
|
|
* Copyright (C) 2012-2016 Icinga Development Team (https://www.icinga.org/) *
|
2014-04-25 14:33:45 +02: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. *
|
|
|
|
******************************************************************************/
|
|
|
|
|
2014-05-03 20:02:22 +02:00
|
|
|
#ifndef ZONE_H
|
|
|
|
#define ZONE_H
|
2014-04-25 14:33:45 +02:00
|
|
|
|
2014-05-25 16:23:35 +02:00
|
|
|
#include "remote/i2-remote.hpp"
|
|
|
|
#include "remote/zone.thpp"
|
|
|
|
#include "remote/endpoint.hpp"
|
2014-04-25 14:33:45 +02:00
|
|
|
|
|
|
|
namespace icinga
|
|
|
|
{
|
|
|
|
|
|
|
|
/**
|
2014-05-03 20:02:22 +02:00
|
|
|
* @ingroup remote
|
2014-04-25 14:33:45 +02:00
|
|
|
*/
|
2014-05-03 20:02:22 +02:00
|
|
|
class I2_REMOTE_API Zone : public ObjectImpl<Zone>
|
2014-04-25 14:33:45 +02:00
|
|
|
{
|
2014-05-03 20:02:22 +02:00
|
|
|
public:
|
2014-11-03 00:44:04 +01:00
|
|
|
DECLARE_OBJECT(Zone);
|
|
|
|
DECLARE_OBJECTNAME(Zone);
|
2014-04-25 14:33:45 +02:00
|
|
|
|
2015-11-24 15:25:55 +01:00
|
|
|
virtual void OnAllConfigLoaded(void) override;
|
|
|
|
|
2014-05-03 20:02:22 +02:00
|
|
|
Zone::Ptr GetParent(void) const;
|
|
|
|
std::set<Endpoint::Ptr> GetEndpoints(void) const;
|
2016-01-27 12:18:16 +01:00
|
|
|
std::vector<Zone::Ptr> GetAllParents(void) const;
|
2014-04-25 14:33:45 +02:00
|
|
|
|
2015-08-15 20:28:05 +02:00
|
|
|
bool CanAccessObject(const ConfigObject::Ptr& object);
|
2014-05-13 15:57:02 +02:00
|
|
|
bool IsChildOf(const Zone::Ptr& zone);
|
2014-11-08 21:17:16 +01:00
|
|
|
bool IsGlobal(void) const;
|
2016-08-04 10:12:55 +02:00
|
|
|
bool IsSingleInstance(void) const;
|
2014-04-25 14:33:45 +02:00
|
|
|
|
2014-05-03 20:02:22 +02:00
|
|
|
static Zone::Ptr GetLocalZone(void);
|
2015-11-24 15:25:55 +01:00
|
|
|
|
2016-07-26 08:10:47 +02:00
|
|
|
protected:
|
|
|
|
virtual void ValidateEndpointsRaw(const Array::Ptr& value, const ValidationUtils& utils) override;
|
|
|
|
|
2015-11-24 15:25:55 +01:00
|
|
|
private:
|
|
|
|
Zone::Ptr m_Parent;
|
2016-01-27 12:18:16 +01:00
|
|
|
std::vector<Zone::Ptr> m_AllParents;
|
2014-04-25 14:33:45 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2014-05-03 20:02:22 +02:00
|
|
|
#endif /* ZONE_H */
|