mirror of https://github.com/Icinga/icinga2.git
42 lines
829 B
C++
42 lines
829 B
C++
/* Icinga 2 | (c) 2012 Icinga GmbH | GPLv2+ */
|
|
|
|
#ifndef SERVICEDBOBJECT_H
|
|
#define SERVICEDBOBJECT_H
|
|
|
|
#include "db_ido/dbobject.hpp"
|
|
#include "base/configobject.hpp"
|
|
#include "icinga/service.hpp"
|
|
|
|
namespace icinga
|
|
{
|
|
|
|
/**
|
|
* A Service database object.
|
|
*
|
|
* @ingroup ido
|
|
*/
|
|
class ServiceDbObject final : public DbObject
|
|
{
|
|
public:
|
|
DECLARE_PTR_TYPEDEFS(ServiceDbObject);
|
|
|
|
ServiceDbObject(const DbType::Ptr& type, const String& name1, const String& name2);
|
|
|
|
static void StaticInitialize();
|
|
|
|
Dictionary::Ptr GetConfigFields() const override;
|
|
Dictionary::Ptr GetStatusFields() const override;
|
|
|
|
void OnConfigUpdateHeavy() override;
|
|
void OnConfigUpdateLight() override;
|
|
|
|
String CalculateConfigHash(const Dictionary::Ptr& configFields) const override;
|
|
|
|
private:
|
|
void DoCommonConfigUpdate();
|
|
};
|
|
|
|
}
|
|
|
|
#endif /* SERVICEDBOBJECT_H */
|