2020-06-29 20:08:02 +04:30
|
|
|
/*
|
2021-04-28 22:46:44 +02:00
|
|
|
* Copyright (c) 2020-2021, the SerenityOS developers.
|
2020-06-29 20:08:02 +04:30
|
|
|
*
|
2021-04-22 01:24:48 -07:00
|
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
2020-06-29 20:08:02 +04:30
|
|
|
*/
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <AK/Types.h>
|
|
|
|
#include <AK/Vector.h>
|
|
|
|
|
|
|
|
namespace Line {
|
|
|
|
|
|
|
|
struct StringMetrics {
|
2021-01-10 16:23:04 +03:30
|
|
|
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 20:08:02 +04:30
|
|
|
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 11:38:56 +03:30
|
|
|
size_t offset_with_addition(const StringMetrics& offset, size_t column_width) const;
|
2020-06-29 20:08:02 +04:30
|
|
|
void reset()
|
|
|
|
{
|
2021-01-10 16:23:04 +03:30
|
|
|
line_metrics.clear();
|
2020-06-29 20:08:02 +04:30
|
|
|
total_length = 0;
|
|
|
|
max_line_length = 0;
|
2021-01-10 16:23:04 +03:30
|
|
|
line_metrics.append({ {}, 0 });
|
2020-06-29 20:08:02 +04:30
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|