2019-02-25 08:48:22 -05:00
|
|
|
/* Icinga 2 | (c) 2012 Icinga GmbH | GPLv2+ */
|
2013-10-26 03:41:45 -04:00
|
|
|
|
2013-11-04 17:14:34 -05:00
|
|
|
#ifndef SERIALIZER_H
|
|
|
|
|
#define SERIALIZER_H
|
2013-10-26 03:41:45 -04:00
|
|
|
|
2014-05-25 10:23:35 -04:00
|
|
|
#include "base/i2-base.hpp"
|
2014-10-26 14:59:49 -04:00
|
|
|
#include "base/type.hpp"
|
2014-05-25 10:23:35 -04:00
|
|
|
#include "base/value.hpp"
|
2018-07-05 08:04:04 -04:00
|
|
|
#include "base/exception.hpp"
|
2013-10-26 03:41:45 -04:00
|
|
|
|
2013-11-04 17:14:34 -05:00
|
|
|
namespace icinga
|
2013-10-26 03:41:45 -04:00
|
|
|
{
|
2013-11-04 13:12:34 -05:00
|
|
|
|
2018-07-05 08:04:04 -04: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 01:22:16 -05: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 05:17:46 -05:00
|
|
|
|
2013-10-26 03:41:45 -04:00
|
|
|
}
|
2013-11-04 17:14:34 -05:00
|
|
|
|
|
|
|
|
#endif /* SERIALIZER_H */
|