2020-01-18 08:38:21 +00:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2018-2020, Andreas Kling <kling@serenityos.org>
|
|
|
|
*
|
2021-04-22 08:24:48 +00:00
|
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
2020-01-18 08:38:21 +00:00
|
|
|
*/
|
|
|
|
|
2020-03-25 14:48:35 +00:00
|
|
|
#include <AK/String.h>
|
|
|
|
#include <AK/StringBuilder.h>
|
|
|
|
#include <AK/Vector.h>
|
2020-08-05 17:54:30 +00:00
|
|
|
#include <LibCore/ArgsParser.h>
|
2022-01-04 02:56:58 +00:00
|
|
|
#include <LibCore/System.h>
|
2018-11-09 09:18:04 +00:00
|
|
|
#include <stdio.h>
|
2018-11-09 09:24:41 +00:00
|
|
|
#include <sys/utsname.h>
|
2020-02-18 12:28:08 +00:00
|
|
|
#include <unistd.h>
|
2018-10-26 12:56:21 +00:00
|
|
|
|
2022-01-04 02:56:58 +00:00
|
|
|
ErrorOr<int> serenity_main(Main::Arguments arguments)
|
2018-10-26 12:56:21 +00:00
|
|
|
{
|
2022-01-04 02:56:58 +00:00
|
|
|
TRY(Core::System::pledge("stdio"));
|
2020-02-18 12:28:08 +00:00
|
|
|
|
2020-08-05 17:54:30 +00:00
|
|
|
bool flag_system = false;
|
|
|
|
bool flag_node = false;
|
|
|
|
bool flag_release = false;
|
|
|
|
bool flag_machine = false;
|
|
|
|
bool flag_all = false;
|
|
|
|
|
|
|
|
Core::ArgsParser args_parser;
|
|
|
|
args_parser.add_option(flag_system, "Print the system name (default)", nullptr, 's');
|
|
|
|
args_parser.add_option(flag_node, "Print the node name", nullptr, 'n');
|
|
|
|
args_parser.add_option(flag_release, "Print the system release", nullptr, 'r');
|
|
|
|
args_parser.add_option(flag_machine, "Print the machine hardware name", nullptr, 'm');
|
|
|
|
args_parser.add_option(flag_all, "Print all information (same as -snrm)", nullptr, 'a');
|
2022-01-04 02:56:58 +00:00
|
|
|
args_parser.parse(arguments);
|
2020-08-05 17:54:30 +00:00
|
|
|
|
|
|
|
if (flag_all)
|
|
|
|
flag_system = flag_node = flag_release = flag_machine = true;
|
|
|
|
|
|
|
|
if (!flag_system && !flag_node && !flag_release && !flag_machine)
|
|
|
|
flag_system = true;
|
|
|
|
|
2022-01-04 02:56:58 +00:00
|
|
|
utsname uts = TRY(Core::System::uname());
|
2020-08-05 17:54:30 +00:00
|
|
|
|
2020-03-25 14:48:35 +00:00
|
|
|
Vector<String> parts;
|
2020-08-05 17:54:30 +00:00
|
|
|
if (flag_system)
|
2020-03-25 14:48:35 +00:00
|
|
|
parts.append(uts.sysname);
|
2020-08-05 17:54:30 +00:00
|
|
|
if (flag_node)
|
2020-03-25 14:48:35 +00:00
|
|
|
parts.append(uts.nodename);
|
2020-08-05 17:54:30 +00:00
|
|
|
if (flag_release)
|
2020-03-25 14:48:35 +00:00
|
|
|
parts.append(uts.release);
|
2020-08-05 17:54:30 +00:00
|
|
|
if (flag_machine)
|
2020-03-25 14:48:35 +00:00
|
|
|
parts.append(uts.machine);
|
|
|
|
StringBuilder builder;
|
|
|
|
builder.join(' ', parts);
|
|
|
|
puts(builder.to_string().characters());
|
2018-10-26 12:56:21 +00:00
|
|
|
return 0;
|
|
|
|
}
|