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
|
/*
* Copyright (C) 2012-2018 Team Kodi
* This file is part of Kodi - https://kodi.tv
*
* SPDX-License-Identifier: GPL-2.0-or-later
* See LICENSES/README.md for more information.
*/
#include "BooleanLogic.h"
#include "utils/StringUtils.h"
#include "utils/XBMCTinyXML.h"
#include "utils/log.h"
#include <memory>
bool CBooleanLogicValue::Deserialize(const TiXmlNode *node)
{
if (node == NULL)
return false;
const TiXmlElement *elem = node->ToElement();
if (elem == NULL)
return false;
if (node->FirstChild() != NULL && node->FirstChild()->Type() == TiXmlNode::TINYXML_TEXT)
m_value = node->FirstChild()->ValueStr();
m_negated = false;
const char *strNegated = elem->Attribute("negated");
if (strNegated != NULL)
{
if (StringUtils::EqualsNoCase(strNegated, "true"))
m_negated = true;
else if (!StringUtils::EqualsNoCase(strNegated, "false"))
{
CLog::Log(LOGDEBUG, "CBooleanLogicValue: invalid negated value \"{}\"", strNegated);
return false;
}
}
return true;
}
bool CBooleanLogicOperation::Deserialize(const TiXmlNode *node)
{
if (node == NULL)
return false;
// check if this is a simple operation with a single value directly expressed
// in the parent tag
if (node->FirstChild() == NULL || node->FirstChild()->Type() == TiXmlNode::TINYXML_TEXT)
{
CBooleanLogicValuePtr value = CBooleanLogicValuePtr(newValue());
if (value == NULL || !value->Deserialize(node))
{
CLog::Log(LOGDEBUG, "CBooleanLogicOperation: failed to deserialize implicit boolean value definition");
return false;
}
m_values.push_back(value);
return true;
}
const TiXmlNode *operationNode = node->FirstChild();
while (operationNode != NULL)
{
std::string tag = operationNode->ValueStr();
if (StringUtils::EqualsNoCase(tag, "and") || StringUtils::EqualsNoCase(tag, "or"))
{
CBooleanLogicOperationPtr operation = CBooleanLogicOperationPtr(newOperation());
if (operation == NULL)
return false;
operation->SetOperation(StringUtils::EqualsNoCase(tag, "and") ? BooleanLogicOperationAnd : BooleanLogicOperationOr);
if (!operation->Deserialize(operationNode))
{
CLog::Log(LOGDEBUG, "CBooleanLogicOperation: failed to deserialize <{}> definition", tag);
return false;
}
m_operations.push_back(operation);
}
else
{
CBooleanLogicValuePtr value = CBooleanLogicValuePtr(newValue());
if (value == NULL)
return false;
if (StringUtils::EqualsNoCase(tag, value->GetTag()))
{
if (!value->Deserialize(operationNode))
{
CLog::Log(LOGDEBUG, "CBooleanLogicOperation: failed to deserialize <{}> definition", tag);
return false;
}
m_values.push_back(value);
}
else if (operationNode->Type() == TiXmlNode::TINYXML_ELEMENT)
CLog::Log(LOGDEBUG, "CBooleanLogicOperation: unknown <{}> definition encountered", tag);
}
operationNode = operationNode->NextSibling();
}
return true;
}
bool CBooleanLogic::Deserialize(const TiXmlNode *node)
{
if (node == NULL)
return false;
if (m_operation == NULL)
{
m_operation = std::make_shared<CBooleanLogicOperation>();
if (m_operation == NULL)
return false;
}
return m_operation->Deserialize(node);
}
|