1
0
Fork 0
mirror of https://github.com/ton-blockchain/ton synced 2025-02-13 19:52:18 +00:00
ton/tdutils/td/utils/VectorQueue.h

91 lines
2.1 KiB
C
Raw Normal View History

2019-09-07 10:03:22 +00:00
/*
This file is part of TON Blockchain Library.
TON Blockchain Library is free software: you can redistribute it and/or modify
it under the terms of the GNU Lesser General Public License as published by
the Free Software Foundation, either version 2 of the License, or
(at your option) any later version.
TON Blockchain Library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public License
along with TON Blockchain Library. If not, see <http://www.gnu.org/licenses/>.
2020-04-10 19:06:01 +00:00
Copyright 2017-2020 Telegram Systems LLP
2019-09-07 10:03:22 +00:00
*/
#pragma once
2020-07-06 14:07:20 +00:00
#include "td/utils/common.h"
2019-09-07 10:03:22 +00:00
#include "td/utils/Span.h"
#include <utility>
namespace td {
template <class T>
class VectorQueue {
public:
template <class S>
void push(S &&s) {
2020-07-06 14:07:20 +00:00
vector_.emplace_back(std::forward<S>(s));
2019-09-07 10:03:22 +00:00
}
template <class... Args>
void emplace(Args &&... args) {
vector_.emplace_back(std::forward<Args>(args)...);
}
T pop() {
try_shrink();
return std::move(vector_[read_pos_++]);
}
void pop_n(size_t n) {
read_pos_ += n;
try_shrink();
}
T &front() {
return vector_[read_pos_];
}
T &back() {
return vector_.back();
}
const T &front() const {
return vector_[read_pos_];
}
const T &back() const {
return vector_.back();
}
2019-09-07 10:03:22 +00:00
bool empty() const {
return size() == 0;
}
size_t size() const {
return vector_.size() - read_pos_;
}
2020-07-06 14:07:20 +00:00
const T *data() const {
2019-09-07 10:03:22 +00:00
return vector_.data() + read_pos_;
}
2020-07-06 14:07:20 +00:00
T *data() {
2019-09-07 10:03:22 +00:00
return vector_.data() + read_pos_;
}
Span<T> as_span() const {
return {data(), size()};
}
MutableSpan<T> as_mutable_span() {
2020-07-06 14:07:20 +00:00
return {vector_.data() + read_pos_, size()};
2019-09-07 10:03:22 +00:00
}
private:
2020-07-06 14:07:20 +00:00
vector<T> vector_;
2019-09-07 10:03:22 +00:00
size_t read_pos_{0};
void try_shrink() {
if (read_pos_ * 2 > vector_.size() && read_pos_ > 4) {
vector_.erase(vector_.begin(), vector_.begin() + read_pos_);
read_pos_ = 0;
}
}
};
} // namespace td