2020-09-12 17:38:55 +00:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2020, Itamar S. <itamar8910@gmail.com>
|
2023-06-24 05:33:04 +00:00
|
|
|
* Copyright (c) 2023, Shannon Booth <shannon.ml.booth@gmail.com>
|
2020-09-12 17:38:55 +00:00
|
|
|
*
|
2021-04-22 08:24:48 +00:00
|
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
2020-09-12 17:38:55 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include "Hunks.h"
|
2021-01-15 20:46:23 +00:00
|
|
|
#include <AK/Debug.h>
|
2020-09-12 17:38:55 +00:00
|
|
|
|
|
|
|
namespace Diff {
|
2023-06-24 00:44:22 +00:00
|
|
|
|
2023-07-02 07:19:22 +00:00
|
|
|
Optional<HunkLocation> Parser::consume_unified_location()
|
2020-09-12 17:38:55 +00:00
|
|
|
{
|
2023-07-02 07:19:22 +00:00
|
|
|
auto consume_range = [this](Range& range) {
|
|
|
|
if (!consume_line_number(range.start_line))
|
|
|
|
return false;
|
2020-09-12 17:38:55 +00:00
|
|
|
|
2023-07-02 07:19:22 +00:00
|
|
|
if (consume_specific(',')) {
|
|
|
|
if (!consume_line_number(range.number_of_lines))
|
|
|
|
return false;
|
|
|
|
} else {
|
|
|
|
range.number_of_lines = 1;
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
};
|
2020-09-12 17:38:55 +00:00
|
|
|
|
2023-07-02 07:19:22 +00:00
|
|
|
if (!consume_specific("@@ -"))
|
|
|
|
return {};
|
2020-09-12 17:38:55 +00:00
|
|
|
|
2023-07-02 07:19:22 +00:00
|
|
|
HunkLocation location;
|
|
|
|
|
|
|
|
if (!consume_range(location.old_range))
|
|
|
|
return {};
|
|
|
|
|
|
|
|
if (!consume_specific(" +"))
|
|
|
|
return {};
|
|
|
|
|
|
|
|
if (!consume_range(location.new_range))
|
|
|
|
return {};
|
|
|
|
|
|
|
|
if (!consume_specific(" @@"))
|
|
|
|
return {};
|
|
|
|
|
|
|
|
return location;
|
|
|
|
}
|
2020-09-12 17:38:55 +00:00
|
|
|
|
2023-07-02 07:19:22 +00:00
|
|
|
bool Parser::consume_line_number(size_t& number)
|
|
|
|
{
|
|
|
|
auto line = consume_while(is_ascii_digit);
|
|
|
|
|
|
|
|
auto maybe_number = line.to_uint<size_t>();
|
|
|
|
if (!maybe_number.has_value())
|
|
|
|
return false;
|
|
|
|
|
|
|
|
number = maybe_number.value();
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
ErrorOr<Vector<Hunk>> Parser::parse_hunks()
|
|
|
|
{
|
|
|
|
Vector<Hunk> hunks;
|
|
|
|
|
|
|
|
while (!is_eof()) {
|
|
|
|
// Try an locate a hunk location in this hunk. It may be prefixed with information.
|
|
|
|
auto maybe_location = consume_unified_location();
|
|
|
|
consume_line();
|
|
|
|
|
|
|
|
if (!maybe_location.has_value())
|
2020-09-12 17:38:55 +00:00
|
|
|
continue;
|
2023-06-24 05:33:04 +00:00
|
|
|
|
2023-07-02 07:19:22 +00:00
|
|
|
Hunk hunk { *maybe_location, {} };
|
2020-09-12 17:38:55 +00:00
|
|
|
|
2023-07-02 07:19:22 +00:00
|
|
|
auto old_lines_expected = hunk.location.old_range.number_of_lines;
|
|
|
|
auto new_lines_expected = hunk.location.new_range.number_of_lines;
|
2023-06-24 05:33:04 +00:00
|
|
|
|
2023-07-02 07:19:22 +00:00
|
|
|
// We've found a location. Now parse out all of the expected content lines.
|
|
|
|
while (old_lines_expected != 0 || new_lines_expected != 0) {
|
|
|
|
StringView line = consume_line();
|
2023-06-24 05:33:04 +00:00
|
|
|
|
2023-07-02 07:19:22 +00:00
|
|
|
if (line.is_empty())
|
|
|
|
return Error::from_string_literal("Malformed empty content line in patch");
|
2023-06-24 05:33:04 +00:00
|
|
|
|
2023-07-02 07:19:22 +00:00
|
|
|
if (line[0] != ' ' && line[0] != '+' && line[0] != '-')
|
|
|
|
return Error::from_string_literal("Invaid operation in patch");
|
2020-09-12 17:38:55 +00:00
|
|
|
|
2023-07-02 07:19:22 +00:00
|
|
|
auto const operation = Line::operation_from_symbol(line[0]);
|
|
|
|
|
|
|
|
if (operation != Line::Operation::Removal) {
|
|
|
|
if (new_lines_expected == 0)
|
|
|
|
return Error::from_string_literal("Found more removal and context lines in patch than expected");
|
|
|
|
|
|
|
|
--new_lines_expected;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (operation != Line::Operation::Addition) {
|
|
|
|
if (old_lines_expected == 0)
|
|
|
|
return Error::from_string_literal("Found more addition and context lines in patch than expected");
|
|
|
|
|
|
|
|
--old_lines_expected;
|
|
|
|
}
|
|
|
|
|
|
|
|
auto const content = line.substring_view(1, line.length() - 1);
|
|
|
|
TRY(hunk.lines.try_append(Line { operation, TRY(String::from_utf8(content)) }));
|
2020-09-12 17:38:55 +00:00
|
|
|
}
|
2023-07-02 07:19:22 +00:00
|
|
|
|
2023-06-24 00:44:22 +00:00
|
|
|
TRY(hunks.try_append(hunk));
|
2020-09-12 17:38:55 +00:00
|
|
|
}
|
|
|
|
|
2021-01-23 22:59:27 +00:00
|
|
|
if constexpr (HUNKS_DEBUG) {
|
2022-04-01 17:58:27 +00:00
|
|
|
for (auto const& hunk : hunks) {
|
2023-06-24 05:33:04 +00:00
|
|
|
dbgln("{}", hunk.location);
|
|
|
|
for (auto const& line : hunk.lines)
|
|
|
|
dbgln("{}", line);
|
2020-09-12 17:38:55 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return hunks;
|
|
|
|
}
|
|
|
|
|
2023-07-02 07:19:22 +00:00
|
|
|
ErrorOr<Vector<Hunk>> parse_hunks(StringView diff)
|
2020-09-12 17:38:55 +00:00
|
|
|
{
|
2023-07-02 07:19:22 +00:00
|
|
|
Parser lexer(diff);
|
|
|
|
return lexer.parse_hunks();
|
|
|
|
}
|
2020-09-12 17:38:55 +00:00
|
|
|
}
|