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
|
/*
* Copyright (C) 2015-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 "KeyboardLayoutManager.h"
#include "FileItem.h"
#include "ServiceBroker.h"
#include "URL.h"
#include "filesystem/Directory.h"
#include "settings/lib/Setting.h"
#include "settings/lib/SettingDefinitions.h"
#include "utils/XBMCTinyXML.h"
#include "utils/log.h"
#include <algorithm>
#define KEYBOARD_LAYOUTS_PATH "special://xbmc/system/keyboardlayouts"
CKeyboardLayoutManager::~CKeyboardLayoutManager()
{
Unload();
}
bool CKeyboardLayoutManager::Load(const std::string& path /* = "" */)
{
std::string layoutDirectory = path;
if (layoutDirectory.empty())
layoutDirectory = KEYBOARD_LAYOUTS_PATH;
if (!XFILE::CDirectory::Exists(layoutDirectory))
{
CLog::Log(LOGWARNING,
"CKeyboardLayoutManager: unable to load keyboard layouts from non-existing directory "
"\"{}\"",
layoutDirectory);
return false;
}
CFileItemList layouts;
if (!XFILE::CDirectory::GetDirectory(CURL(layoutDirectory), layouts, ".xml",
XFILE::DIR_FLAG_DEFAULTS) ||
layouts.IsEmpty())
{
CLog::Log(LOGWARNING, "CKeyboardLayoutManager: no keyboard layouts found in {}",
layoutDirectory);
return false;
}
CLog::Log(LOGINFO, "CKeyboardLayoutManager: loading keyboard layouts from {}...",
layoutDirectory);
size_t oldLayoutCount = m_layouts.size();
for (int i = 0; i < layouts.Size(); i++)
{
std::string layoutPath = layouts[i]->GetPath();
if (layoutPath.empty())
continue;
CXBMCTinyXML xmlDoc;
if (!xmlDoc.LoadFile(layoutPath))
{
CLog::Log(LOGWARNING, "CKeyboardLayoutManager: unable to open {}", layoutPath);
continue;
}
const TiXmlElement* rootElement = xmlDoc.RootElement();
if (rootElement == NULL)
{
CLog::Log(LOGWARNING, "CKeyboardLayoutManager: missing or invalid XML root element in {}",
layoutPath);
continue;
}
if (rootElement->ValueStr() != "keyboardlayouts")
{
CLog::Log(LOGWARNING, "CKeyboardLayoutManager: unexpected XML root element \"{}\" in {}",
rootElement->Value(), layoutPath);
continue;
}
const TiXmlElement* layoutElement = rootElement->FirstChildElement("layout");
while (layoutElement != NULL)
{
CKeyboardLayout layout;
if (!layout.Load(layoutElement))
CLog::Log(LOGWARNING, "CKeyboardLayoutManager: failed to load {}", layoutPath);
else if (m_layouts.find(layout.GetIdentifier()) != m_layouts.end())
CLog::Log(LOGWARNING,
"CKeyboardLayoutManager: duplicate layout with identifier \"{}\" in {}",
layout.GetIdentifier(), layoutPath);
else
{
CLog::Log(LOGDEBUG, "CKeyboardLayoutManager: keyboard layout \"{}\" successfully loaded",
layout.GetIdentifier());
m_layouts.insert(std::make_pair(layout.GetIdentifier(), layout));
}
layoutElement = layoutElement->NextSiblingElement();
}
}
return m_layouts.size() > oldLayoutCount;
}
void CKeyboardLayoutManager::Unload()
{
m_layouts.clear();
}
bool CKeyboardLayoutManager::GetLayout(const std::string& name, CKeyboardLayout& layout) const
{
if (name.empty())
return false;
KeyboardLayouts::const_iterator it = m_layouts.find(name);
if (it == m_layouts.end())
return false;
layout = it->second;
return true;
}
namespace
{
inline bool LayoutSort(const StringSettingOption& i, const StringSettingOption& j)
{
return (i.value < j.value);
}
} // namespace
void CKeyboardLayoutManager::SettingOptionsKeyboardLayoutsFiller(
const SettingConstPtr& setting,
std::vector<StringSettingOption>& list,
std::string& current,
void* data)
{
for (const auto& it : CServiceBroker::GetKeyboardLayoutManager()->m_layouts)
{
std::string name = it.second.GetName();
list.emplace_back(name, name);
}
std::sort(list.begin(), list.end(), LayoutSort);
}
|