5cbda834bd
GitOrigin-RevId: 1369d3af1195221f6ddb9462d5f8b74fb5fef20f
46 lines
1.0 KiB
C++
46 lines
1.0 KiB
C++
//
|
|
// Copyright Aliaksei Levin (levlam@telegram.org), Arseny Smirnov (arseny30@gmail.com) 2014-2018
|
|
//
|
|
// Distributed under the Boost Software License, Version 1.0. (See accompanying
|
|
// file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
|
|
//
|
|
#pragma once
|
|
|
|
#include "td/utils/Storer.h"
|
|
#include "td/utils/tl_storers.h"
|
|
|
|
#include <limits>
|
|
|
|
namespace td {
|
|
namespace mtproto {
|
|
|
|
template <class Impl>
|
|
class PacketStorer
|
|
: public Storer
|
|
, public Impl {
|
|
public:
|
|
size_t size() const override {
|
|
if (size_ != std::numeric_limits<size_t>::max()) {
|
|
return size_;
|
|
}
|
|
TlStorerCalcLength storer;
|
|
this->do_store(storer);
|
|
return size_ = storer.get_length();
|
|
}
|
|
|
|
size_t store(uint8 *ptr) const override {
|
|
char *start = reinterpret_cast<char *>(ptr);
|
|
TlStorerUnsafe storer(start);
|
|
this->do_store(storer);
|
|
return storer.get_buf() - start;
|
|
}
|
|
|
|
using Impl::Impl;
|
|
|
|
private:
|
|
mutable size_t size_ = std::numeric_limits<size_t>::max();
|
|
};
|
|
|
|
} // namespace mtproto
|
|
} // namespace td
|