icinga2/lib/base/serializer.hpp

34 lines
811 B
C++
Raw Normal View History

/* Icinga 2 | (c) 2012 Icinga GmbH | GPLv2+ */
2013-10-26 09:41:45 +02: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"
#include "base/exception.hpp"
2013-10-26 09:41:45 +02:00
namespace icinga
2013-10-26 09:41:45 +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-10-26 09:41:45 +02:00
}
#endif /* SERIALIZER_H */