Skip to content

Latest commit

 

History

History
99 lines (74 loc) · 2.11 KB

apply_patch.md

File metadata and controls

99 lines (74 loc) · 2.11 KB

jsoncons::jsonpatch::apply_patch

#include <jsoncons_ext/jsonpatch/jsonpatch.hpp>

template <class Json>
void apply_patch(Json& target, const Json& patch); (1)

template <class Json>
void apply_patch(Json& target, const Json& patch, std::error_code& ec); (2)

Applies a patch to a json document.

Return value

None

Exceptions

(1) Throws a jsonpatch_error if apply_patch fails.

(2) Sets the out-parameter ec to the jsonpatch_error_category if apply_patch fails.

Examples

Apply a JSON Patch with two add operations

#include <jsoncons/json.hpp>
#include <jsoncons_ext/jsonpatch/jsonpatch.hpp>

using jsoncons::json;
namespace jsonpatch = jsoncons::jsonpatch;

int main()
{
    json doc = json::parse(R"(
        { "foo": "bar"}
    )");

    json patch = json::parse(R"(
        [
            { "op": "add", "path": "/baz", "value": "qux" },
            { "op": "add", "path": "/foo", "value": [ "bar", "baz" ] }
        ]
    )");

    std::error_code ec;
    jsonpatch::apply_patch(target,patch,ec);

    std::cout << pretty_print(target) << std::endl;
}

Output:

{
    "baz": "qux",
    "foo": ["bar","baz"]
}

Apply a JSON Patch with three add operations, the last one fails

#include <jsoncons/json.hpp>
#include <jsoncons_ext/jsonpatch/jsonpatch.hpp>

using jsoncons::json;
namespace jsonpatch = jsoncons::jsonpatch;

int main()
{
    json target = json::parse(R"(
        { "foo": "bar"}
    )");

    json patch = json::parse(R"(
        [
            { "op": "add", "path": "/baz", "value": "qux" },
            { "op": "add", "path": "/foo", "value": [ "bar", "baz" ] },
            { "op": "add", "path": "/baz/bat", "value": "qux" } // nonexistent target
        ]
    )");

    std::error_code ec;
    jsonpatch::apply_patch(target, patch, ec);

    std::cout << "(1) " << ec.message() << std::endl;
    std::cout << "(2) " << target << std::endl;
}

Output:

(1) JSON Patch add operation failed
(2) {"foo":"bar"}

Note that all JSON Patch operations have been rolled back, and target is in its original state.