mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-22 23:50:19 +00:00
5e1499d104
This commit un-deprecates DeprecatedString, and repurposes it as a byte string. As the null state has already been removed, there are no other particularly hairy blockers in repurposing this type as a byte string (what it _really_ is). This commit is auto-generated: $ xs=$(ack -l \bDeprecatedString\b\|deprecated_string AK Userland \ Meta Ports Ladybird Tests Kernel) $ perl -pie 's/\bDeprecatedString\b/ByteString/g; s/deprecated_string/byte_string/g' $xs $ clang-format --style=file -i \ $(git diff --name-only | grep \.cpp\|\.h) $ gn format $(git ls-files '*.gn' '*.gni')
59 lines
1.8 KiB
C++
59 lines
1.8 KiB
C++
/*
|
|
* Copyright (c) 2018-2020, Andreas Kling <kling@serenityos.org>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#include <AK/ByteString.h>
|
|
#include <AK/StringBuilder.h>
|
|
#include <AK/Vector.h>
|
|
#include <LibCore/ArgsParser.h>
|
|
#include <LibCore/System.h>
|
|
#include <stdio.h>
|
|
#include <sys/utsname.h>
|
|
#include <unistd.h>
|
|
|
|
ErrorOr<int> serenity_main(Main::Arguments arguments)
|
|
{
|
|
TRY(Core::System::pledge("stdio"));
|
|
|
|
bool flag_system = false;
|
|
bool flag_node = false;
|
|
bool flag_release = false;
|
|
bool flag_version = 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_version, "Print the version of the release", nullptr, 'v');
|
|
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');
|
|
args_parser.parse(arguments);
|
|
|
|
if (flag_all)
|
|
flag_system = flag_node = flag_release = flag_machine = flag_version = true;
|
|
|
|
if (!flag_system && !flag_node && !flag_release && !flag_machine && !flag_version)
|
|
flag_system = true;
|
|
|
|
utsname uts = TRY(Core::System::uname());
|
|
|
|
Vector<ByteString> parts;
|
|
if (flag_system)
|
|
parts.append(uts.sysname);
|
|
if (flag_node)
|
|
parts.append(uts.nodename);
|
|
if (flag_release)
|
|
parts.append(uts.release);
|
|
if (flag_version)
|
|
parts.append(uts.version);
|
|
if (flag_machine)
|
|
parts.append(uts.machine);
|
|
StringBuilder builder;
|
|
builder.join(' ', parts);
|
|
puts(builder.to_byte_string().characters());
|
|
return 0;
|
|
}
|