mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-01-06 02:55:49 +03:00
LibKeyboard: Don't assert on failure
This commit is contained in:
parent
d9e7e13fb2
commit
0e3408d4d6
Notes:
sideshowbarker
2024-07-18 22:40:18 +09:00
Author: https://github.com/BenWiederhake Commit: https://github.com/SerenityOS/serenity/commit/0e3408d4d60 Pull-request: https://github.com/SerenityOS/serenity/pull/5192 Reviewed-by: https://github.com/awesomekling Reviewed-by: https://github.com/bcoles Reviewed-by: https://github.com/emanuele6 Reviewed-by: https://github.com/linusg
@ -105,7 +105,7 @@ private:
|
||||
bool m_has_e0_prefix { false };
|
||||
EntropySource m_entropy_source;
|
||||
|
||||
Keyboard::CharacterMap m_character_map = Keyboard::CharacterMap("en");
|
||||
Keyboard::CharacterMap m_character_map = Keyboard::CharacterMap("en", Keyboard::default_character_map);
|
||||
};
|
||||
|
||||
class KeyboardClient {
|
||||
|
@ -27,24 +27,22 @@
|
||||
#include "CharacterMap.h"
|
||||
#include <AK/StringBuilder.h>
|
||||
#include <Kernel/API/Syscall.h>
|
||||
#ifndef KERNEL
|
||||
# include <LibKeyboard/CharacterMapFile.h>
|
||||
#endif
|
||||
#include <LibKeyboard/CharacterMapFile.h>
|
||||
|
||||
namespace Keyboard {
|
||||
|
||||
CharacterMap::CharacterMap(const String& map_name)
|
||||
#ifndef KERNEL
|
||||
// The Kernel explicitly and exclusively links only this file into it.
|
||||
// Thus, we cannot even include a reference to the symbol `CharacterMapFile::load_from_file`.
|
||||
Optional<CharacterMap> CharacterMap::load_from_file(const String& map_name)
|
||||
{
|
||||
#ifdef KERNEL
|
||||
m_character_map_data = default_character_map;
|
||||
#else
|
||||
auto result = CharacterMapFile::load_from_file(map_name);
|
||||
ASSERT(result.has_value());
|
||||
if (!result.has_value())
|
||||
return {};
|
||||
|
||||
m_character_map_data = result.value();
|
||||
#endif
|
||||
m_character_map_name = map_name;
|
||||
return CharacterMap(map_name, result.value());
|
||||
}
|
||||
#endif
|
||||
|
||||
CharacterMap::CharacterMap(const String& map_name, const CharacterMapData& map_data)
|
||||
: m_character_map_data(map_data)
|
||||
|
@ -39,8 +39,8 @@ namespace Keyboard {
|
||||
class CharacterMap {
|
||||
|
||||
public:
|
||||
CharacterMap(const String& map_name);
|
||||
CharacterMap(const String& map_name, const CharacterMapData& map_data);
|
||||
static Optional<CharacterMap> load_from_file(const String& file_name);
|
||||
|
||||
#ifndef KERNEL
|
||||
int set_system_map();
|
||||
|
@ -65,10 +65,17 @@ int main(int argc, char** argv)
|
||||
return 0;
|
||||
}
|
||||
|
||||
Keyboard::CharacterMap character_map(path);
|
||||
int rc = character_map.set_system_map();
|
||||
if (rc != 0)
|
||||
auto character_map = Keyboard::CharacterMap::load_from_file(path);
|
||||
if (!character_map.has_value()) {
|
||||
warnln("Cannot read keymap {}", path);
|
||||
warnln("Hint: Must be either a keymap name (e.g. 'en') or a full path.");
|
||||
return 1;
|
||||
}
|
||||
|
||||
int rc = character_map.value().set_system_map();
|
||||
if (rc != 0) {
|
||||
perror("setkeymap");
|
||||
}
|
||||
|
||||
return rc;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user