2019-02-25 14:48:22 +01:00
|
|
|
/* Icinga 2 | (c) 2012 Icinga GmbH | GPLv2+ */
|
2013-10-26 09:41:45 +02:00
|
|
|
|
2013-11-04 23:14:34 +01:00
|
|
|
#ifndef SERIALIZER_H
|
|
|
|
#define SERIALIZER_H
|
2013-10-26 09:41:45 +02:00
|
|
|
|
2014-05-25 16:23:35 +02:00
|
|
|
#include "base/i2-base.hpp"
|
2014-10-26 19:59:49 +01:00
|
|
|
#include "base/type.hpp"
|
2014-05-25 16:23:35 +02:00
|
|
|
#include "base/value.hpp"
|
2018-07-05 14:04:04 +02:00
|
|
|
#include "base/exception.hpp"
|
2013-10-26 09:41:45 +02:00
|
|
|
|
2013-11-04 23:14:34 +01:00
|
|
|
namespace icinga
|
2013-10-26 09:41:45 +02:00
|
|
|
{
|
2013-11-04 19:12:34 +01:00
|
|
|
|
2018-07-05 14:04:04 +02:00
|
|
|
class CircularReferenceError : virtual public user_error
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
CircularReferenceError(String message, std::vector<String> path);
|
|
|
|
|
|
|
|
const char *what(void) const throw() final;
|
|
|
|
std::vector<String> GetPath() const;
|
|
|
|
|
|
|
|
private:
|
|
|
|
String m_Message;
|
|
|
|
std::vector<String> m_Path;
|
|
|
|
};
|
|
|
|
|
2017-12-31 07:22:16 +01:00
|
|
|
Value Serialize(const Value& value, int attributeTypes = FAState);
|
|
|
|
Value Deserialize(const Value& value, bool safe_mode = false, int attributeTypes = FAState);
|
|
|
|
Value Deserialize(const Object::Ptr& object, const Value& value, bool safe_mode = false, int attributeTypes = FAState);
|
2013-11-08 11:17:46 +01:00
|
|
|
|
2013-10-26 09:41:45 +02:00
|
|
|
}
|
2013-11-04 23:14:34 +01:00
|
|
|
|
|
|
|
#endif /* SERIALIZER_H */
|