This commit is contained in:
Aria 2025-03-21 22:23:30 +11:00
commit 9c94d113d3
Signed by untrusted user who does not match committer: aria
GPG key ID: 19AB7AA462B8AB3B
10260 changed files with 1237388 additions and 0 deletions

View file

@ -0,0 +1,41 @@
#ifndef STAR_JSON_PATCH_HPP
#define STAR_JSON_PATCH_HPP
#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);
// 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);
}
}
#endif