mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-25 17:10:23 +00:00
lspci: Port to LibMain :^)
This commit is contained in:
parent
74a6fb64b2
commit
8ba9a54310
Notes:
sideshowbarker
2024-07-17 23:16:56 +09:00
Author: https://github.com/awesomekling Commit: https://github.com/SerenityOS/serenity/commit/8ba9a543102
2 changed files with 13 additions and 33 deletions
|
@ -83,7 +83,7 @@ target_link_libraries(id LibMain)
|
|||
target_link_libraries(js LibJS LibLine LibMain)
|
||||
target_link_libraries(keymap LibKeyboard LibMain)
|
||||
target_link_libraries(logout LibMain)
|
||||
target_link_libraries(lspci LibPCIDB)
|
||||
target_link_libraries(lspci LibPCIDB LibMain)
|
||||
target_link_libraries(lsusb LibUSBDB LibMain)
|
||||
target_link_libraries(man LibMarkdown LibMain)
|
||||
target_link_libraries(markdown-check LibMarkdown)
|
||||
|
|
|
@ -1,47 +1,34 @@
|
|||
/*
|
||||
* Copyright (c) 2018-2020, Andreas Kling <kling@serenityos.org>
|
||||
* Copyright (c) 2018-2021, Andreas Kling <kling@serenityos.org>
|
||||
*
|
||||
* SPDX-License-Identifier: BSD-2-Clause
|
||||
*/
|
||||
|
||||
#include <AK/ByteBuffer.h>
|
||||
#include <AK/JsonArray.h>
|
||||
#include <AK/JsonObject.h>
|
||||
#include <AK/String.h>
|
||||
#include <LibCore/ArgsParser.h>
|
||||
#include <LibCore/File.h>
|
||||
#include <LibCore/System.h>
|
||||
#include <LibMain/Main.h>
|
||||
#include <LibPCIDB/Database.h>
|
||||
#include <stdio.h>
|
||||
#include <unistd.h>
|
||||
|
||||
static bool flag_show_numerical = false;
|
||||
|
||||
static const char* format_numerical = "{:04x}:{:02x}:{:02x}.{} {}: {}:{} (rev {:02x})";
|
||||
static const char* format_textual = "{:04x}:{:02x}:{:02x}.{} {}: {} {} (rev {:02x})";
|
||||
|
||||
int main(int argc, char** argv)
|
||||
ErrorOr<int> serenity_main(Main::Arguments arguments)
|
||||
{
|
||||
if (pledge("stdio rpath", nullptr) < 0) {
|
||||
perror("pledge");
|
||||
return 1;
|
||||
}
|
||||
|
||||
if (unveil("/res/pci.ids", "r") < 0) {
|
||||
perror("unveil");
|
||||
return 1;
|
||||
}
|
||||
|
||||
if (unveil("/proc/pci", "r") < 0) {
|
||||
perror("unveil");
|
||||
return 1;
|
||||
}
|
||||
|
||||
unveil(nullptr, nullptr);
|
||||
TRY(Core::System::pledge("stdio rpath"));
|
||||
TRY(Core::System::unveil("/res/pci.ids", "r"));
|
||||
TRY(Core::System::unveil("/proc/pci", "r"));
|
||||
TRY(Core::System::unveil(nullptr, nullptr));
|
||||
|
||||
Core::ArgsParser args_parser;
|
||||
args_parser.set_general_help("List PCI devices.");
|
||||
args_parser.add_option(flag_show_numerical, "Show numerical IDs", "numerical", 'n');
|
||||
args_parser.parse(argc, argv);
|
||||
args_parser.parse(arguments);
|
||||
|
||||
const char* format = flag_show_numerical ? format_numerical : format_textual;
|
||||
|
||||
|
@ -54,19 +41,12 @@ int main(int argc, char** argv)
|
|||
}
|
||||
}
|
||||
|
||||
auto proc_pci = Core::File::construct("/proc/pci");
|
||||
if (!proc_pci->open(Core::OpenMode::ReadOnly)) {
|
||||
warnln("Failed to open {}: {}", proc_pci->name(), proc_pci->error_string());
|
||||
return 1;
|
||||
}
|
||||
auto proc_pci = TRY(Core::File::open("/proc/pci", Core::OpenMode::ReadOnly));
|
||||
|
||||
if (pledge("stdio", nullptr) < 0) {
|
||||
perror("pledge");
|
||||
return 1;
|
||||
}
|
||||
TRY(Core::System::pledge("stdio"));
|
||||
|
||||
auto file_contents = proc_pci->read_all();
|
||||
auto json = JsonValue::from_string(file_contents).release_value_but_fixme_should_propagate_errors();
|
||||
auto json = TRY(JsonValue::from_string(file_contents));
|
||||
json.as_array().for_each([db, format](auto& value) {
|
||||
auto& dev = value.as_object();
|
||||
auto domain = dev.get("domain").to_u32();
|
||||
|
|
Loading…
Reference in a new issue