2020-06-29 12:38:02 -03:00
|
|
|
/*
|
2021-04-28 17:46:44 -03:00
|
|
|
* Copyright (c) 2020-2021, the SerenityOS developers.
|
2020-06-29 12:38:02 -03:00
|
|
|
*
|
2021-04-22 05:24:48 -03:00
|
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
2020-06-29 12:38:02 -03:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
|
|
#include <AK/Types.h>
|
|
|
|
|
#include <AK/Vector.h>
|
|
|
|
|
|
|
|
|
|
namespace Line {
|
|
|
|
|
|
|
|
|
|
struct StringMetrics {
|
2021-01-10 09:53:04 -03:00
|
|
|
struct MaskedChar {
|
|
|
|
|
size_t position { 0 };
|
|
|
|
|
size_t original_length { 0 };
|
|
|
|
|
size_t masked_length { 0 };
|
|
|
|
|
};
|
|
|
|
|
struct LineMetrics {
|
|
|
|
|
Vector<MaskedChar> masked_chars;
|
|
|
|
|
size_t length { 0 };
|
|
|
|
|
|
|
|
|
|
size_t total_length(ssize_t offset = -1) const
|
|
|
|
|
{
|
|
|
|
|
size_t length = this->length;
|
|
|
|
|
for (auto& mask : masked_chars) {
|
|
|
|
|
if (offset < 0 || mask.position <= (size_t)offset) {
|
|
|
|
|
length -= mask.original_length;
|
|
|
|
|
length += mask.masked_length;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return length;
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
Vector<LineMetrics> line_metrics;
|
2020-06-29 12:38:02 -03:00
|
|
|
size_t total_length { 0 };
|
|
|
|
|
size_t max_line_length { 0 };
|
|
|
|
|
|
|
|
|
|
size_t lines_with_addition(const StringMetrics& offset, size_t column_width) const;
|
2021-01-04 05:08:56 -03:00
|
|
|
size_t offset_with_addition(const StringMetrics& offset, size_t column_width) const;
|
2020-06-29 12:38:02 -03:00
|
|
|
void reset()
|
|
|
|
|
{
|
2021-01-10 09:53:04 -03:00
|
|
|
line_metrics.clear();
|
2020-06-29 12:38:02 -03:00
|
|
|
total_length = 0;
|
|
|
|
|
max_line_length = 0;
|
2021-01-10 09:53:04 -03:00
|
|
|
line_metrics.append({ {}, 0 });
|
2020-06-29 12:38:02 -03:00
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
}
|