blob: ba09d62316ea94f213554cd731229d88b99bc85c (
plain)
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
77
78
79
80
|
// Copyright (c) the JPEG XL Project Authors. All rights reserved.
//
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
#ifndef LIB_JXL_BASE_SPAN_H_
#define LIB_JXL_BASE_SPAN_H_
// Span (array view) is a non-owning container that provides cheap "cut"
// operations and could be used as "ArrayLike" data source for PaddedBytes.
#include <cstddef>
#include <cstdint>
#include <vector>
#include "lib/jxl/base/status.h"
namespace jxl {
template <typename T>
class Span {
public:
constexpr Span() noexcept : Span(nullptr, 0) {}
constexpr Span(T* array, size_t length) noexcept
: ptr_(array), len_(length) {}
template <size_t N>
explicit constexpr Span(T (&a)[N]) noexcept : Span(a, N) {}
template <typename U>
constexpr Span(U* array, size_t length) noexcept
: ptr_(reinterpret_cast<T*>(array)), len_(length) {
static_assert(sizeof(U) == sizeof(T), "Incompatible type of source.");
}
template <typename ArrayLike>
explicit constexpr Span(const ArrayLike& other) noexcept
: Span(reinterpret_cast<T*>(other.data()), other.size()) {
static_assert(sizeof(*other.data()) == sizeof(T),
"Incompatible type of source.");
}
constexpr T* data() const noexcept { return ptr_; }
constexpr size_t size() const noexcept { return len_; }
constexpr bool empty() const noexcept { return len_ == 0; }
constexpr T* begin() const noexcept { return data(); }
constexpr T* end() const noexcept { return data() + size(); }
constexpr T& operator[](size_t i) const noexcept {
// MSVC 2015 accepts this as constexpr, but not ptr_[i]
return *(data() + i);
}
void remove_prefix(size_t n) noexcept {
JXL_ASSERT(size() >= n);
ptr_ += n;
len_ -= n;
}
// NCT == non-const-T; compiler will complain if NCT is not compatible with T.
template <typename NCT>
void AppendTo(std::vector<NCT>& dst) const {
dst.insert(dst.end(), begin(), end());
}
private:
T* ptr_;
size_t len_;
};
typedef Span<const uint8_t> Bytes;
} // namespace jxl
#endif // LIB_JXL_BASE_SPAN_H_
|