2020-06-18 21:00:19 +00:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2020, Andreas Kling <kling@serenityos.org>
|
|
|
|
*
|
2021-04-22 08:24:48 +00:00
|
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
2020-06-18 21:00:19 +00:00
|
|
|
*/
|
|
|
|
|
2020-06-18 20:19:57 +00:00
|
|
|
#include <LibCore/ArgsParser.h>
|
|
|
|
#include <LibKeyboard/CharacterMap.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
|
|
|
|
int main(int argc, char** argv)
|
|
|
|
{
|
2021-01-31 21:50:17 +00:00
|
|
|
if (pledge("stdio setkeymap getkeymap rpath", nullptr) < 0) {
|
2020-06-18 20:19:57 +00:00
|
|
|
perror("pledge");
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (unveil("/res/keymaps", "r") < 0) {
|
|
|
|
perror("unveil");
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
const char* path = nullptr;
|
|
|
|
Core::ArgsParser args_parser;
|
2021-01-30 21:01:34 +00:00
|
|
|
args_parser.add_positional_argument(path, "The mapping file to be used", "file", Core::ArgsParser::Required::No);
|
2020-06-18 20:19:57 +00:00
|
|
|
args_parser.parse(argc, argv);
|
|
|
|
|
2021-01-30 21:52:30 +00:00
|
|
|
if (path && path[0] == '/') {
|
|
|
|
if (unveil(path, "r") < 0) {
|
|
|
|
perror("unveil path");
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (unveil(nullptr, nullptr) < 0) {
|
|
|
|
perror("unveil");
|
|
|
|
return 1;
|
|
|
|
}
|
2021-01-30 21:01:34 +00:00
|
|
|
|
|
|
|
if (!path) {
|
|
|
|
auto keymap = Keyboard::CharacterMap::fetch_system_map();
|
|
|
|
if (keymap.is_error()) {
|
|
|
|
warnln("getkeymap: {}", keymap.error());
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
outln("{}", keymap.value().character_map_name());
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2021-01-30 21:41:29 +00:00
|
|
|
auto character_map = Keyboard::CharacterMap::load_from_file(path);
|
|
|
|
if (!character_map.has_value()) {
|
|
|
|
warnln("Cannot read keymap {}", path);
|
2021-02-01 18:12:41 +00:00
|
|
|
warnln("Hint: Must be either a keymap name (e.g. 'en-us') or a full path.");
|
2021-01-30 21:41:29 +00:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
int rc = character_map.value().set_system_map();
|
|
|
|
if (rc != 0) {
|
2021-01-30 21:01:34 +00:00
|
|
|
perror("setkeymap");
|
2021-01-30 21:41:29 +00:00
|
|
|
}
|
2020-06-18 20:19:57 +00:00
|
|
|
|
|
|
|
return rc;
|
|
|
|
}
|