mirror of
https://github.com/SerenityOS/serenity.git
synced 2025-01-23 18:02:05 -05:00
6e19ab2bbc
We have a new, improved string type coming up in AK (OOM aware, no null state), and while it's going to use UTF-8, the name UTF8String is a mouthful - so let's free up the String name by renaming the existing class. Making the old one have an annoying name will hopefully also help with quick adoption :^)
37 lines
810 B
C++
37 lines
810 B
C++
/*
|
|
* Copyright (c) 2020, Itamar S. <itamar8910@gmail.com>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <AK/DeprecatedString.h>
|
|
#include <AK/Vector.h>
|
|
|
|
namespace Diff {
|
|
|
|
struct HunkLocation {
|
|
size_t original_start_line { 0 };
|
|
size_t original_length { 0 };
|
|
size_t target_start_line { 0 };
|
|
size_t target_length { 0 };
|
|
|
|
enum class LocationType {
|
|
Original,
|
|
Target,
|
|
Both
|
|
};
|
|
void apply_offset(size_t offset, LocationType);
|
|
};
|
|
|
|
struct Hunk {
|
|
size_t original_start_line { 0 };
|
|
size_t target_start_line { 0 };
|
|
Vector<DeprecatedString> removed_lines;
|
|
Vector<DeprecatedString> added_lines;
|
|
};
|
|
|
|
Vector<Hunk> parse_hunks(DeprecatedString const& diff);
|
|
HunkLocation parse_hunk_location(DeprecatedString const& location_line);
|
|
};
|