mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-22 23:50:19 +00:00
3f3f45580a
Each of these strings would previously rely on StringView's char const* constructor overload, which would call __builtin_strlen on the string. Since we now have operator ""sv, we can replace these with much simpler versions. This opens the door to being able to remove StringView(char const*). No functional changes.
37 lines
1.2 KiB
C++
37 lines
1.2 KiB
C++
/*
|
|
* Copyright (c) 2020, Liav A. <liavalb@hotmail.co.il>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#include <AK/JsonArray.h>
|
|
#include <AK/JsonObject.h>
|
|
#include <LibCore/File.h>
|
|
#include <LibCore/System.h>
|
|
#include <LibMain/Main.h>
|
|
|
|
ErrorOr<int> serenity_main(Main::Arguments)
|
|
{
|
|
TRY(Core::System::pledge("stdio rpath"));
|
|
TRY(Core::System::unveil("/proc/interrupts", "r"));
|
|
TRY(Core::System::unveil(nullptr, nullptr));
|
|
|
|
auto proc_interrupts = TRY(Core::File::open("/proc/interrupts", Core::OpenMode::ReadOnly));
|
|
|
|
TRY(Core::System::pledge("stdio"));
|
|
|
|
outln(" CPU0");
|
|
auto file_contents = proc_interrupts->read_all();
|
|
auto json = TRY(JsonValue::from_string(file_contents));
|
|
json.as_array().for_each([](auto& value) {
|
|
auto& handler = value.as_object();
|
|
auto purpose = handler.get("purpose"sv).to_string();
|
|
auto interrupt = handler.get("interrupt_line"sv).to_string();
|
|
auto controller = handler.get("controller"sv).to_string();
|
|
auto call_count = handler.get("call_count"sv).to_string();
|
|
|
|
outln("{:>4}: {:10} {:10} {:30}", interrupt, call_count, controller, purpose);
|
|
});
|
|
|
|
return 0;
|
|
}
|