blob: f31d6a2a73bd7a799122e374c6b256c20fd95ec3 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
|
#pragma once
#include <cstddef>
#include <deque>
#include <set>
#include <fmt/core.h>
#include <fmt/format.h>
#include <IO/WriteBuffer.h>
#include <IO/ReadBuffer.h>
namespace DB
{
/** A pair of marks that defines the range of rows in a part. Specifically,
* the range has the form [begin * index_granularity, end * index_granularity).
*/
struct MarkRange
{
size_t begin;
size_t end;
MarkRange() = default;
MarkRange(const size_t begin_, const size_t end_) : begin{begin_}, end{end_} {}
size_t getNumberOfMarks() const;
bool operator==(const MarkRange & rhs) const;
bool operator<(const MarkRange & rhs) const;
};
struct MarkRanges : public std::deque<MarkRange>
{
using std::deque<MarkRange>::deque;
size_t getNumberOfMarks() const;
void serialize(WriteBuffer & out) const;
String describe() const;
void deserialize(ReadBuffer & in);
};
/** Get max range.end from ranges.
*/
size_t getLastMark(const MarkRanges & ranges);
std::string toString(const MarkRanges & ranges);
void assertSortedAndNonIntersecting(const MarkRanges & ranges);
}
template <>
struct fmt::formatter<DB::MarkRange>
{
constexpr static auto parse(format_parse_context & ctx)
{
const auto * it = ctx.begin();
const auto * end = ctx.end();
/// Only support {}.
if (it != end && *it != '}')
throw fmt::format_error("invalid format");
return it;
}
template <typename FormatContext>
auto format(const DB::MarkRange & range, FormatContext & ctx)
{
return fmt::format_to(ctx.out(), "{}", fmt::format("({}, {})", range.begin, range.end));
}
};
|