osb/source/core/StarJsonPatch.hpp

42 lines
1.2 KiB
C++
Raw Normal View History

#pragma once
2023-06-20 04:33:09 +00:00
#include "StarJson.hpp"
namespace Star {
STAR_EXCEPTION(JsonPatchException, JsonException);
STAR_EXCEPTION(JsonPatchTestFail, StarException);
// Applies the given RFC6902 compliant patch to the base and returns the result
// Throws JsonPatchException on patch failure.
Json jsonPatch(Json const& base, JsonArray const& patch);
namespace JsonPatching {
// Applies the given single operation
Json applyOperation(Json const& base, Json const& op, Maybe<Json> const& external = {});
2023-06-20 04:33:09 +00:00
// Tests for "value" at "path"
// Returns base or throws JsonPatchException
Json applyTestOperation(Json const& base, Json const& op);
// Removes the value at "path"
Json applyRemoveOperation(Json const& base, Json const& op);
// Adds "value" at "path"
Json applyAddOperation(Json const& base, Json const& op);
// Replaces "path" with "value"
Json applyReplaceOperation(Json const& base, Json const& op);
// Moves "from" to "path"
Json applyMoveOperation(Json const& base, Json const& op);
// Copies "from" to "path"
Json applyCopyOperation(Json const& base, Json const& op);
// Merges "value" at "path"
Json applyMergeOperation(Json const& base, Json const& op);
}
2023-06-20 04:33:09 +00:00
}