LibKeyboard: Don't assert on failure

This commit is contained in:
Ben Wiederhake 2021-01-30 22:41:29 +01:00 committed by Andreas Kling
parent d9e7e13fb2
commit 0e3408d4d6
Notes: sideshowbarker 2024-07-18 22:40:18 +09:00
4 changed files with 21 additions and 16 deletions

View File

@ -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 {

View File

@ -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)

View File

@ -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();

View File

@ -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;
}