You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
38 lines
763 B
38 lines
763 B
#pragma once
|
|
|
|
#include <nlohmann/json.hpp>
|
|
#include <string>
|
|
|
|
namespace nlohmann
|
|
{
|
|
class JsonPatchFormatException : public std::exception
|
|
{
|
|
public:
|
|
explicit JsonPatchFormatException(std::string msg)
|
|
: ex_{std::move(msg)} {}
|
|
|
|
inline const char *what() const noexcept override final { return ex_.c_str(); }
|
|
|
|
private:
|
|
std::string ex_;
|
|
};
|
|
|
|
class json_patch
|
|
{
|
|
public:
|
|
json_patch() = default;
|
|
json_patch(json &&patch);
|
|
json_patch(const json &patch);
|
|
|
|
json_patch &add(const json::json_pointer &, json value);
|
|
json_patch &replace(const json::json_pointer &, json value);
|
|
json_patch &remove(const json::json_pointer &);
|
|
|
|
operator json() const { return j_; }
|
|
|
|
private:
|
|
json j_;
|
|
|
|
static void validateJsonPatch(json const &patch);
|
|
};
|
|
} // namespace nlohmann
|