mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-01-01 15:43:36 +03:00
5e1499d104
This commit un-deprecates DeprecatedString, and repurposes it as a byte string. As the null state has already been removed, there are no other particularly hairy blockers in repurposing this type as a byte string (what it _really_ is). This commit is auto-generated: $ xs=$(ack -l \bDeprecatedString\b\|deprecated_string AK Userland \ Meta Ports Ladybird Tests Kernel) $ perl -pie 's/\bDeprecatedString\b/ByteString/g; s/deprecated_string/byte_string/g' $xs $ clang-format --style=file -i \ $(git diff --name-only | grep \.cpp\|\.h) $ gn format $(git ls-files '*.gn' '*.gni')
83 lines
2.5 KiB
C++
83 lines
2.5 KiB
C++
/*
|
||
* Copyright (c) 2020, Hüseyin Aslıtürk <asliturk@hotmail.com>
|
||
*
|
||
* SPDX-License-Identifier: BSD-2-Clause
|
||
*/
|
||
|
||
#include "CharacterMapFile.h"
|
||
#include <AK/ByteBuffer.h>
|
||
#include <AK/Utf8View.h>
|
||
#include <LibCore/File.h>
|
||
|
||
namespace Keyboard {
|
||
|
||
ErrorOr<CharacterMapData> CharacterMapFile::load_from_file(ByteString const& filename)
|
||
{
|
||
auto path = filename;
|
||
if (!path.ends_with(".json"sv)) {
|
||
StringBuilder full_path;
|
||
full_path.append("/res/keymaps/"sv);
|
||
full_path.append(filename);
|
||
full_path.append(".json"sv);
|
||
path = full_path.to_byte_string();
|
||
}
|
||
|
||
auto file = TRY(Core::File::open(path, Core::File::OpenMode::Read));
|
||
auto file_contents = TRY(file->read_until_eof());
|
||
auto json_result = TRY(JsonValue::from_string(file_contents));
|
||
auto const& json = json_result.as_object();
|
||
|
||
Vector<u32> map = read_map(json, "map");
|
||
Vector<u32> shift_map = read_map(json, "shift_map");
|
||
Vector<u32> alt_map = read_map(json, "alt_map");
|
||
Vector<u32> altgr_map = read_map(json, "altgr_map");
|
||
Vector<u32> shift_altgr_map = read_map(json, "shift_altgr_map");
|
||
|
||
CharacterMapData character_map;
|
||
for (int i = 0; i < CHAR_MAP_SIZE; i++) {
|
||
character_map.map[i] = map.at(i);
|
||
character_map.shift_map[i] = shift_map.at(i);
|
||
character_map.alt_map[i] = alt_map.at(i);
|
||
if (altgr_map.is_empty()) {
|
||
// AltGr map was not found, using Alt map as fallback.
|
||
character_map.altgr_map[i] = alt_map.at(i);
|
||
} else {
|
||
character_map.altgr_map[i] = altgr_map.at(i);
|
||
}
|
||
if (shift_altgr_map.is_empty()) {
|
||
// Shift+AltGr map was not found, using Alt map as fallback.
|
||
character_map.shift_altgr_map[i] = alt_map.at(i);
|
||
} else {
|
||
character_map.shift_altgr_map[i] = shift_altgr_map.at(i);
|
||
}
|
||
}
|
||
|
||
return character_map;
|
||
}
|
||
|
||
Vector<u32> CharacterMapFile::read_map(JsonObject const& json, ByteString const& name)
|
||
{
|
||
if (!json.has(name))
|
||
return {};
|
||
|
||
Vector<u32> buffer;
|
||
buffer.resize(CHAR_MAP_SIZE);
|
||
|
||
auto map_arr = json.get_array(name).value();
|
||
for (size_t i = 0; i < map_arr.size(); i++) {
|
||
auto key_value = map_arr.at(i).as_string();
|
||
if (key_value.length() == 0) {
|
||
buffer[i] = 0;
|
||
} else if (key_value.length() == 1) {
|
||
buffer[i] = key_value.characters()[0];
|
||
} else {
|
||
Utf8View m_utf8_view(key_value);
|
||
buffer[i] = *m_utf8_view.begin();
|
||
}
|
||
}
|
||
|
||
return buffer;
|
||
}
|
||
|
||
}
|