JSON compareExcept and compareOnly functions now support arrays.
This commit is contained in:
parent
075756d646
commit
7b0da7b65c
1 changed files with 36 additions and 22 deletions
26
lib/json.cpp
26
lib/json.cpp
|
@ -607,9 +607,7 @@ bool JSON::Value::operator!=(const JSON::Value & rhs) const {
|
||||||
}
|
}
|
||||||
|
|
||||||
bool JSON::Value::compareExcept(const Value & rhs, const std::set<std::string> & skip) const {
|
bool JSON::Value::compareExcept(const Value & rhs, const std::set<std::string> & skip) const {
|
||||||
if (myType != OBJECT) {
|
if (myType == OBJECT) {
|
||||||
return ((*this) == rhs);
|
|
||||||
}
|
|
||||||
jsonForEachConst(*this, it){
|
jsonForEachConst(*this, it){
|
||||||
if (skip.count(it.key())){continue;}
|
if (skip.count(it.key())){continue;}
|
||||||
if (!rhs.isMember(it.key()) || !(*it).compareExcept(rhs[it.key()], skip)) {
|
if (!rhs.isMember(it.key()) || !(*it).compareExcept(rhs[it.key()], skip)) {
|
||||||
|
@ -622,11 +620,18 @@ bool JSON::Value::compareExcept(const Value & rhs, const std::set<std::string> &
|
||||||
}
|
}
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
if (myType == ARRAY) {
|
||||||
bool JSON::Value::compareOnly(const Value & rhs, const std::set<std::string> & check) const {
|
if (size() != rhs.size()){return false;}
|
||||||
if (myType != OBJECT) {
|
jsonForEachConst(*this, it){
|
||||||
|
if (!(*it).compareExcept(rhs[it.num()], skip)){return false;}
|
||||||
|
}
|
||||||
|
return true;
|
||||||
|
}
|
||||||
return ((*this) == rhs);
|
return ((*this) == rhs);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
bool JSON::Value::compareOnly(const Value & rhs, const std::set<std::string> & check) const {
|
||||||
|
if (myType == OBJECT) {
|
||||||
jsonForEachConst(*this, it){
|
jsonForEachConst(*this, it){
|
||||||
if (!check.count(it.key())){continue;}
|
if (!check.count(it.key())){continue;}
|
||||||
if (!rhs.isMember(it.key()) || !(*it).compareOnly(rhs[it.key()], check)) {
|
if (!rhs.isMember(it.key()) || !(*it).compareOnly(rhs[it.key()], check)) {
|
||||||
|
@ -639,6 +644,15 @@ bool JSON::Value::compareOnly(const Value & rhs, const std::set<std::string> & c
|
||||||
}
|
}
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
if (myType == ARRAY) {
|
||||||
|
if (size() != rhs.size()){return false;}
|
||||||
|
jsonForEachConst(*this, it){
|
||||||
|
if (!(*it).compareOnly(rhs[it.num()], check)){return false;}
|
||||||
|
}
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
return ((*this) == rhs);
|
||||||
|
}
|
||||||
|
|
||||||
/// Completely clears the contents of this value,
|
/// Completely clears the contents of this value,
|
||||||
/// changing its type to NULL in the process.
|
/// changing its type to NULL in the process.
|
||||||
|
|
Loading…
Add table
Reference in a new issue