/usr/include/ola/web/JsonPatch.h is in libola-dev 0.9.8-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 | /*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*
* JsonPatch.h
* Implementation of RFC 6902.
* Copyright (C) 2014 Simon Newton
*/
/**
* @addtogroup json
* @{
* @file JsonPatch.h
* @brief Implementation of JSON Patch (RFC 6902).
* @}
*/
#ifndef INCLUDE_OLA_WEB_JSONPATCH_H_
#define INCLUDE_OLA_WEB_JSONPATCH_H_
#include <ola/base/Macro.h>
#include <ola/web/Json.h>
#include <ola/web/JsonPointer.h>
#include <memory>
#include <string>
#include <vector>
namespace ola {
namespace web {
/**
* @addtogroup json
* @{
*/
class JsonPatchSet;
/**
* @brief A class to serialize a JSONValue to text.
*/
class JsonPatchOp {
public:
virtual ~JsonPatchOp() {}
/**
* @brief Apply the patch operation to the value.
* @param value A pointer to a JsonValue object. This may be modified,
* replaced or deleted entirely by the patch operation.
* @returns True if the patch was sucessfully applied, false otherwise.
*/
virtual bool Apply(JsonValue **value) const = 0;
};
/**
* @brief Add a JsonValue
*/
class JsonPatchAddOp : public JsonPatchOp {
public:
/**
* @brief Add the JsonValue to the specified path.
* @param path The path to add the value at.
* @param value the value to add, ownership is transferred.
*/
JsonPatchAddOp(const JsonPointer &path, const JsonValue *value)
: m_pointer(path),
m_value(value) {
}
bool Apply(JsonValue **value) const;
private:
JsonPointer m_pointer;
std::auto_ptr<const JsonValue> m_value;
DISALLOW_COPY_AND_ASSIGN(JsonPatchAddOp);
};
/**
* @brief Remove the value at the specifed path.
*/
class JsonPatchRemoveOp : public JsonPatchOp {
public:
/**
* @brief Add the JsonValue to the specified path.
* @param path The path to remove.
*/
explicit JsonPatchRemoveOp(const JsonPointer &path)
: m_pointer(path) {
}
bool Apply(JsonValue **value) const;
private:
const JsonPointer m_pointer;
DISALLOW_COPY_AND_ASSIGN(JsonPatchRemoveOp);
};
/**
* @brief Replace the value at the specifed path.
*/
class JsonPatchReplaceOp : public JsonPatchOp {
public:
/**
* @brief Replace the JsonValue at the specified path.
* @param path The path to replace the value at.
* @param value The value to replace with, ownership is transferred.
*/
JsonPatchReplaceOp(const JsonPointer &path, const JsonValue *value)
: m_pointer(path),
m_value(value) {
}
bool Apply(JsonValue **value) const;
private:
const JsonPointer m_pointer;
std::auto_ptr<const JsonValue> m_value;
DISALLOW_COPY_AND_ASSIGN(JsonPatchReplaceOp);
};
/**
* @brief Move a value from one location to another.
*/
class JsonPatchMoveOp : public JsonPatchOp {
public:
/**
* @brief Move a value from one location to another.
* @param from The path to move from.
* @param to The path to move to.
*/
JsonPatchMoveOp(const JsonPointer &from, const JsonPointer &to)
: m_from(from),
m_to(to) {
}
bool Apply(JsonValue **value) const;
private:
JsonPointer m_from;
JsonPointer m_to;
DISALLOW_COPY_AND_ASSIGN(JsonPatchMoveOp);
};
/**
* @brief Copy a value from one location to another.
*/
class JsonPatchCopyOp : public JsonPatchOp {
public:
/**
* @brief Copy a value from one location to another.
* @param from The path to copy from.
* @param to The path to copy to.
*/
JsonPatchCopyOp(const JsonPointer &from, const JsonPointer &to)
: m_from(from),
m_to(to) {
}
bool Apply(JsonValue **value) const;
private:
JsonPointer m_from;
JsonPointer m_to;
DISALLOW_COPY_AND_ASSIGN(JsonPatchCopyOp);
};
/**
* @brief Test a path matches the specified value.
*/
class JsonPatchTestOp : public JsonPatchOp {
public:
JsonPatchTestOp(const JsonPointer &path, const JsonValue *value)
: m_pointer(path),
m_value(value) {
}
bool Apply(JsonValue **value) const;
private:
JsonPointer m_pointer;
std::auto_ptr<const JsonValue> m_value;
DISALLOW_COPY_AND_ASSIGN(JsonPatchTestOp);
};
/**
* @brief An ordered collection of JsonPatchOps.
*/
class JsonPatchSet {
public:
JsonPatchSet() {}
~JsonPatchSet();
/**
* @brief Add a patch operation to the set
* @param op the operation to add, ownership is transferred.
*/
void AddOp(JsonPatchOp *op);
/**
* @brief Apply this patch set to a value.
*
* Don't call this directly, instead use JsonData::Apply().
*/
bool Apply(JsonValue **value) const;
bool Empty() const { return m_patch_ops.empty(); }
private:
typedef std::vector<JsonPatchOp*> PatchOps;
PatchOps m_patch_ops;
};
/**@}*/
} // namespace web
} // namespace ola
#endif // INCLUDE_OLA_WEB_JSONPATCH_H_
|