serenity/Userland/Utilities/uptime.cpp

31 lines
898 B
C++
Raw Normal View History

/*
* Copyright (c) 2018-2020, Andreas Kling <kling@serenityos.org>
* Copyright (c) 2022, Karol Kosek <krkk@serenityos.org>
*
* SPDX-License-Identifier: BSD-2-Clause
*/
#include <AK/NumberFormat.h>
#include <LibCore/File.h>
2022-01-02 08:49:26 +00:00
#include <LibCore/System.h>
#include <LibMain/Main.h>
2022-01-02 08:49:26 +00:00
ErrorOr<int> serenity_main(Main::Arguments)
{
2022-01-02 08:49:26 +00:00
TRY(Core::System::pledge("stdio rpath"));
2020-02-18 12:18:33 +00:00
auto file = TRY(Core::File::open("/sys/kernel/uptime"sv, Core::File::OpenMode::Read));
2022-01-02 08:49:26 +00:00
TRY(Core::System::pledge("stdio"));
2020-02-18 12:18:33 +00:00
Array<u8, BUFSIZ> buffer;
auto read_buffer = TRY(file->read(buffer));
auto maybe_seconds = AK::StringUtils::convert_to_uint(StringView(read_buffer));
if (!maybe_seconds.has_value())
return Error::from_string_literal("Couldn't convert to number");
auto seconds = maybe_seconds.release_value();
outln("Up {}", human_readable_time(seconds));
return 0;
}