blob: b0bc3c5b25db98d21d5494f3d1e52dc76c708ad8 (
plain)
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
|
/*
* Copyright (C) 2005-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 "AddonExtensions.h"
#include "utils/StringUtils.h"
using namespace ADDON;
bool SExtValue::asBoolean() const
{
return StringUtils::EqualsNoCase(str, "true");
}
const SExtValue CAddonExtensions::GetValue(const std::string& id) const
{
for (const auto& values : m_values)
{
for (const auto& value : values.second)
{
if (value.first == id)
return value.second;
}
}
return SExtValue("");
}
const EXT_VALUES& CAddonExtensions::GetValues() const
{
return m_values;
}
const CAddonExtensions* CAddonExtensions::GetElement(const std::string& id) const
{
for (const auto& child : m_children)
{
if (child.first == id)
return &child.second;
}
return nullptr;
}
const EXT_ELEMENTS CAddonExtensions::GetElements(const std::string& id) const
{
if (id.empty())
return m_children;
EXT_ELEMENTS children;
for (const auto& child : m_children)
{
if (child.first == id)
children.push_back(std::make_pair(child.first, child.second));
}
return children;
}
void CAddonExtensions::Insert(const std::string& id, const std::string& value)
{
EXT_VALUE extension;
extension.push_back(std::make_pair(id, SExtValue(value)));
m_values.push_back(std::make_pair(id, extension));
}
|