icinga2/lib/base/object.hpp

226 lines
4.9 KiB
C++
Raw Normal View History

/* Icinga 2 | (c) 2012 Icinga GmbH | GPLv2+ */
#ifndef OBJECT_H
#define OBJECT_H
2012-03-28 13:24:49 +02:00
2014-05-25 16:23:35 +02:00
#include "base/i2-base.hpp"
#include "base/debug.hpp"
#include <boost/smart_ptr/intrusive_ptr.hpp>
#include <atomic>
#include <cstddef>
#include <cstdint>
#include <mutex>
#include <thread>
#include <vector>
using boost::intrusive_ptr;
2013-03-18 19:02:42 +01:00
using boost::dynamic_pointer_cast;
using boost::static_pointer_cast;
2012-03-28 13:24:49 +02:00
namespace icinga
{
class Value;
2014-11-07 12:32:25 +01:00
class Object;
class Type;
class String;
2016-04-19 14:47:49 +02:00
struct DebugInfo;
class ValidationUtils;
2017-12-31 07:22:16 +01:00
extern Value Empty;
#define DECLARE_PTR_TYPEDEFS(klass) \
typedef intrusive_ptr<klass> Ptr
2015-08-18 07:46:04 +02:00
#define IMPL_TYPE_LOOKUP_SUPER() \
#define IMPL_TYPE_LOOKUP() \
static intrusive_ptr<Type> TypeInstance; \
virtual intrusive_ptr<Type> GetReflectionType() const override \
2015-08-18 07:46:04 +02:00
{ \
return TypeInstance; \
2014-11-03 00:44:04 +01:00
}
#define DECLARE_OBJECT(klass) \
DECLARE_PTR_TYPEDEFS(klass); \
IMPL_TYPE_LOOKUP();
2014-11-03 00:44:04 +01:00
#define REQUIRE_NOT_NULL(ptr) RequireNotNullInternal(ptr, #ptr)
void RequireNotNullInternal(const intrusive_ptr<Object>& object, const char *description);
2018-01-04 18:24:45 +01:00
void DefaultObjectFactoryCheckArgs(const std::vector<Value>& args);
2014-11-07 12:32:25 +01:00
template<typename T>
intrusive_ptr<Object> DefaultObjectFactory(const std::vector<Value>& args)
2014-11-07 12:32:25 +01:00
{
2018-01-04 18:24:45 +01:00
DefaultObjectFactoryCheckArgs(args);
return new T();
2014-11-07 12:32:25 +01:00
}
template<typename T>
intrusive_ptr<Object> DefaultObjectFactoryVA(const std::vector<Value>& args)
{
return new T(args);
}
typedef intrusive_ptr<Object> (*ObjectFactory)(const std::vector<Value>&);
template<typename T, bool VA>
2014-11-07 12:32:25 +01:00
struct TypeHelper
{
};
template<typename T>
struct TypeHelper<T, false>
2014-11-07 12:32:25 +01:00
{
static ObjectFactory GetFactory()
2014-11-07 12:32:25 +01:00
{
return DefaultObjectFactory<T>;
}
};
2014-11-03 00:44:04 +01:00
template<typename T>
struct TypeHelper<T, true>
{
static ObjectFactory GetFactory()
{
return DefaultObjectFactoryVA<T>;
}
};
template<typename T>
struct Lazy
{
using Accessor = std::function<T ()>;
explicit Lazy(T value)
: m_Cached(true), m_Value(value)
{ }
explicit Lazy(Accessor accessor)
: m_Accessor(accessor)
{ }
template<typename U>
explicit Lazy(const Lazy<U>& other)
{
if (other.m_Cached) {
m_Accessor = Accessor();
m_Value = static_cast<T>(other.m_Value);
m_Cached = true;
} else {
auto accessor = other.m_Accessor;
m_Accessor = [accessor]() { return static_cast<T>(accessor()); };
m_Cached = false;
}
}
template<typename U>
operator Lazy<U>() const
{
if (m_Cached)
2018-01-18 14:45:47 +01:00
return Lazy<U>(static_cast<U>(m_Value));
else {
Accessor accessor = m_Accessor;
2018-01-18 14:45:47 +01:00
return Lazy<U>(static_cast<typename Lazy<U>::Accessor>([accessor]() { return static_cast<U>(accessor()); }));
}
}
const T& operator()() const
{
if (!m_Cached) {
m_Value = m_Accessor();
m_Cached = true;
}
return m_Value;
}
private:
Accessor m_Accessor;
mutable bool m_Cached{false};
mutable T m_Value;
template<typename U>
friend struct Lazy;
};
2012-04-22 16:45:31 +02:00
/**
* Base class for all heap-allocated objects. At least one of its methods
* has to be virtual for RTTI to work.
2012-05-18 22:21:28 +02:00
*
* @ingroup base
2012-04-22 16:45:31 +02:00
*/
2017-12-31 07:22:16 +01:00
class Object
2012-03-28 13:24:49 +02:00
{
public:
2015-08-18 07:46:04 +02:00
DECLARE_PTR_TYPEDEFS(Object);
2012-03-28 13:24:49 +02:00
Object();
virtual ~Object();
virtual String ToString() const;
virtual intrusive_ptr<Type> GetReflectionType() const;
2015-08-18 07:46:04 +02:00
virtual void Validate(int types, const ValidationUtils& utils);
virtual void SetField(int id, const Value& value, bool suppress_events = false, const Value& cookie = Empty);
virtual Value GetField(int id) const;
virtual Value GetFieldByName(const String& field, bool sandboxed, const DebugInfo& debugInfo) const;
virtual void SetFieldByName(const String& field, const Value& value, bool overrideFrozen, const DebugInfo& debugInfo);
virtual bool HasOwnField(const String& field) const;
virtual bool GetOwnField(const String& field, Value *result) const;
virtual void ValidateField(int id, const Lazy<Value>& lvalue, const ValidationUtils& utils);
virtual void NotifyField(int id, const Value& cookie = Empty);
virtual Object::Ptr NavigateField(int id) const;
2014-12-19 12:19:28 +01:00
#ifdef I2_DEBUG
bool OwnsLock() const;
2014-12-19 12:19:28 +01:00
#endif /* I2_DEBUG */
2012-08-03 13:19:55 +02:00
static Object::Ptr GetPrototype();
2017-12-13 12:54:14 +01:00
virtual Object::Ptr Clone() const;
2015-08-18 07:46:04 +02:00
static intrusive_ptr<Type> TypeInstance;
private:
Object(const Object& other) = delete;
Object& operator=(const Object& rhs) = delete;
2012-06-16 16:54:55 +02:00
std::atomic<uint_fast64_t> m_References;
mutable std::recursive_mutex m_Mutex;
2013-03-01 12:07:52 +01:00
2014-12-19 12:19:28 +01:00
#ifdef I2_DEBUG
mutable std::atomic<std::thread::id> m_LockOwner;
mutable size_t m_LockCount = 0;
2014-12-19 12:19:28 +01:00
#endif /* I2_DEBUG */
2013-03-01 12:07:52 +01:00
2013-03-06 11:03:50 +01:00
friend struct ObjectLock;
friend void intrusive_ptr_add_ref(Object *object);
friend void intrusive_ptr_release(Object *object);
2013-02-17 19:14:34 +01:00
};
2017-12-31 07:22:16 +01:00
Value GetPrototypeField(const Value& context, const String& field, bool not_found_error, const DebugInfo& debugInfo);
2017-12-31 07:22:16 +01:00
void TypeAddObject(Object *object);
void TypeRemoveObject(Object *object);
void intrusive_ptr_add_ref(Object *object);
void intrusive_ptr_release(Object *object);
2012-03-28 13:24:49 +02:00
template<typename T>
class ObjectImpl
{
};
2012-03-28 13:24:49 +02:00
}
#endif /* OBJECT_H */
#include "base/type.hpp"