2019-02-25 08:48:22 -05:00
|
|
|
/* Icinga 2 | (c) 2012 Icinga GmbH | GPLv2+ */
|
2015-08-25 07:53:43 -04:00
|
|
|
|
|
|
|
|
#ifndef DEPENDENCYGRAPH_H
|
|
|
|
|
#define DEPENDENCYGRAPH_H
|
|
|
|
|
|
|
|
|
|
#include "base/i2-base.hpp"
|
|
|
|
|
#include "base/object.hpp"
|
|
|
|
|
#include <map>
|
2021-02-02 04:16:04 -05:00
|
|
|
#include <mutex>
|
2015-08-25 07:53:43 -04:00
|
|
|
|
|
|
|
|
namespace icinga {
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* A graph that tracks dependencies between objects.
|
|
|
|
|
*
|
|
|
|
|
* @ingroup base
|
|
|
|
|
*/
|
2017-12-31 01:22:16 -05:00
|
|
|
class DependencyGraph
|
2015-08-25 07:53:43 -04:00
|
|
|
{
|
|
|
|
|
public:
|
|
|
|
|
static void AddDependency(Object *parent, Object *child);
|
|
|
|
|
static void RemoveDependency(Object *parent, Object *child);
|
|
|
|
|
static std::vector<Object::Ptr> GetParents(const Object::Ptr& child);
|
|
|
|
|
|
|
|
|
|
private:
|
2018-01-03 22:25:35 -05:00
|
|
|
DependencyGraph();
|
2015-08-25 07:53:43 -04:00
|
|
|
|
2021-02-02 04:16:04 -05:00
|
|
|
static std::mutex m_Mutex;
|
2015-08-25 07:53:43 -04:00
|
|
|
static std::map<Object *, std::map<Object *, int> > m_Dependencies;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#endif /* DEPENDENCYGRAPH_H */
|