2020-09-12 20:38:55 +03:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2020, Itamar S. <itamar8910@gmail.com>
|
2023-06-21 18:48:17 +12:00
|
|
|
* Copyright (c) 2021, Mustafa Quraish <mustafa@serenityos.org>
|
2023-07-15 22:33:22 +12:00
|
|
|
* Copyright (c) 2023, Shannon Booth <shannon@serenityos.org>
|
2020-09-12 20:38:55 +03:00
|
|
|
*
|
2021-04-22 01:24:48 -07:00
|
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
2020-09-12 20:38:55 +03:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include "Format.h"
|
2023-06-21 18:48:17 +12:00
|
|
|
#include <AK/Stream.h>
|
2021-11-10 11:05:21 +01:00
|
|
|
#include <AK/Vector.h>
|
2023-07-06 20:41:32 +12:00
|
|
|
#include <LibDiff/Hunks.h>
|
2020-09-12 20:38:55 +03:00
|
|
|
|
|
|
|
namespace Diff {
|
2023-06-21 18:48:17 +12:00
|
|
|
|
2023-06-27 20:59:01 +12:00
|
|
|
ErrorOr<void> write_unified_header(StringView old_path, StringView new_path, Stream& stream)
|
|
|
|
{
|
|
|
|
TRY(stream.write_formatted("--- {}\n", old_path));
|
|
|
|
TRY(stream.write_formatted("+++ {}\n", new_path));
|
|
|
|
|
|
|
|
return {};
|
|
|
|
}
|
|
|
|
|
2023-06-27 20:55:50 +12:00
|
|
|
ErrorOr<void> write_unified(Hunk const& hunk, Stream& stream, ColorOutput color_output)
|
|
|
|
{
|
|
|
|
TRY(stream.write_formatted("{}\n", hunk.location));
|
|
|
|
|
|
|
|
if (color_output == ColorOutput::Yes) {
|
|
|
|
for (auto const& line : hunk.lines) {
|
|
|
|
if (line.operation == Line::Operation::Addition)
|
|
|
|
TRY(stream.write_formatted("\033[32;1m{}\033[0m\n", line));
|
|
|
|
else if (line.operation == Line::Operation::Removal)
|
|
|
|
TRY(stream.write_formatted("\033[31;1m{}\033[0m\n", line));
|
|
|
|
else
|
|
|
|
TRY(stream.write_formatted("{}\n", line));
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
for (auto const& line : hunk.lines)
|
|
|
|
TRY(stream.write_formatted("{}\n", line));
|
|
|
|
}
|
|
|
|
|
|
|
|
return {};
|
|
|
|
}
|
|
|
|
|
2023-06-21 18:48:17 +12:00
|
|
|
}
|