mirror of
https://github.com/SerenityOS/serenity.git
synced 2025-01-22 17:31:58 -05:00
342b358341
The main difference was that our implementation was writing the final line of a series of repeated lines, whereas the spec says "The second and succeeding copies of repeated adjacent input lines shall not be written." Additionally, there was a mistake in the -f flag implementation causing the number of fields skipped to be one greater than required.
123 lines
5.1 KiB
C++
123 lines
5.1 KiB
C++
/*
|
|
* Copyright (c) 2020, Matthew L. Curry <matthew.curry@gmail.com>
|
|
* Copyright (c) 2024, Daniel Gaston <tfd@tuta.io>.
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#include <AK/CharacterTypes.h>
|
|
#include <AK/RefPtr.h>
|
|
#include <AK/StringView.h>
|
|
#include <LibCore/ArgsParser.h>
|
|
#include <LibCore/File.h>
|
|
#include <LibCore/System.h>
|
|
#include <unistd.h>
|
|
|
|
static ErrorOr<void> write_line_content(StringView line, size_t count, bool duplicates_only, bool print_count, Core::File& outfile)
|
|
{
|
|
if (duplicates_only && count <= 1)
|
|
return {};
|
|
|
|
if (print_count)
|
|
TRY(outfile.write_until_depleted(ByteString::formatted("{} {}\n", count, line)));
|
|
else
|
|
TRY(outfile.write_until_depleted(ByteString::formatted("{}\n", line)));
|
|
return {};
|
|
}
|
|
|
|
static StringView skip(StringView line, unsigned char_skip_count, unsigned field_skip_count)
|
|
{
|
|
line = line.trim("\n"sv);
|
|
if (field_skip_count) {
|
|
bool in_field = false;
|
|
int field_index = 0;
|
|
unsigned current_field = 0;
|
|
for (size_t i = 0; i < line.length(); i++) {
|
|
char c = line[i];
|
|
if (is_ascii_space(c)) {
|
|
in_field = false;
|
|
field_index = i;
|
|
if (++current_field >= field_skip_count)
|
|
break;
|
|
} else if (!in_field) {
|
|
in_field = true;
|
|
}
|
|
}
|
|
line = line.substring_view(field_index);
|
|
}
|
|
char_skip_count = min(char_skip_count, line.length());
|
|
return line.substring_view(char_skip_count);
|
|
}
|
|
|
|
ErrorOr<int> serenity_main(Main::Arguments arguments)
|
|
{
|
|
TRY(Core::System::pledge("stdio rpath wpath cpath"));
|
|
|
|
StringView inpath;
|
|
StringView outpath;
|
|
bool duplicates_only = false;
|
|
bool unique_only = false;
|
|
bool ignore_case = false;
|
|
bool print_count = false;
|
|
unsigned skip_chars = 0;
|
|
unsigned skip_fields = 0;
|
|
|
|
Core::ArgsParser args_parser;
|
|
args_parser.add_option(duplicates_only, "Only print duplicated lines", "repeated", 'd');
|
|
args_parser.add_option(unique_only, "Only print unique lines (default)", "unique", 'u');
|
|
args_parser.add_option(ignore_case, "Ignore case when comparing lines", "ignore-case", 'i');
|
|
args_parser.add_option(print_count, "Prefix each line by its number of occurrences", "count", 'c');
|
|
args_parser.add_option(skip_chars, "Skip N chars", "skip-chars", 's', "N");
|
|
args_parser.add_option(skip_fields, "Skip N fields", "skip-fields", 'f', "N");
|
|
args_parser.add_positional_argument(inpath, "Input file", "input", Core::ArgsParser::Required::No);
|
|
args_parser.add_positional_argument(outpath, "Output file", "output", Core::ArgsParser::Required::No);
|
|
args_parser.parse(arguments);
|
|
|
|
if (!unique_only && !duplicates_only) {
|
|
unique_only = true;
|
|
} else if (unique_only && duplicates_only) {
|
|
// Printing duplicated and unique lines shouldn't print anything
|
|
return 0;
|
|
}
|
|
|
|
auto infile = TRY(Core::InputBufferedFile::create(TRY(Core::File::open_file_or_standard_stream(inpath, Core::File::OpenMode::Read))));
|
|
auto outfile = TRY(Core::File::open_file_or_standard_stream(outpath, Core::File::OpenMode::Write));
|
|
|
|
// The count starts at 1 since each line appears at least once.
|
|
// Otherwise the -d and -c flags are off by one.
|
|
size_t count = 1;
|
|
ByteBuffer previous_buf = TRY(ByteBuffer::create_uninitialized(1024));
|
|
ByteBuffer current_buf = TRY(ByteBuffer::create_uninitialized(1024));
|
|
|
|
StringView previous = TRY(infile->read_line_with_resize(previous_buf));
|
|
StringView previous_to_compare = skip(previous, skip_chars, skip_fields);
|
|
|
|
while (!infile->is_eof()) {
|
|
StringView current = TRY(infile->read_line_with_resize(current_buf));
|
|
|
|
StringView current_to_compare = skip(current, skip_chars, skip_fields);
|
|
bool lines_equal = ignore_case ? current_to_compare.equals_ignoring_ascii_case(previous_to_compare) : current_to_compare == previous_to_compare;
|
|
|
|
while (lines_equal && current.length() > 0) {
|
|
// The docs say "The second and succeeding copies of repeated adjacent input
|
|
// lines shall not be written", therefore keep reading lines while they match previous.
|
|
// See https://pubs.opengroup.org/onlinepubs/9699919799/utilities/uniq.html
|
|
current = TRY(infile->read_line_with_resize(current_buf));
|
|
current_to_compare = skip(current, skip_chars, skip_fields);
|
|
lines_equal = ignore_case ? current_to_compare.equals_ignoring_ascii_case(previous_to_compare) : current_to_compare == previous_to_compare;
|
|
count++;
|
|
}
|
|
|
|
TRY(write_line_content(previous, count, duplicates_only, print_count, *outfile));
|
|
count = 1;
|
|
|
|
swap(current_buf, previous_buf);
|
|
// The StringViews can't be swapped since read_line_with_resize
|
|
// potentially changes the location of the buffers due to reallocation.
|
|
// Instead create a new StringView of what was most recently read in.
|
|
previous = StringView { previous_buf.span().trim(current.length()) };
|
|
previous_to_compare = skip(previous, skip_chars, skip_fields);
|
|
}
|
|
|
|
return 0;
|
|
}
|