2018-04-02 00:45:51 +02:00
|
|
|
//
|
2021-01-01 13:57:46 +01:00
|
|
|
// Copyright Aliaksei Levin (levlam@telegram.org), Arseny Smirnov (arseny30@gmail.com) 2014-2021
|
2018-04-02 00:45:51 +02:00
|
|
|
//
|
|
|
|
// 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/telegram/MessageEntity.h"
|
|
|
|
|
|
|
|
#include "td/utils/tl_helpers.h"
|
|
|
|
|
|
|
|
namespace td {
|
|
|
|
|
|
|
|
template <class StorerT>
|
|
|
|
void MessageEntity::store(StorerT &storer) const {
|
|
|
|
using td::store;
|
|
|
|
store(type, storer);
|
|
|
|
store(offset, storer);
|
|
|
|
store(length, storer);
|
|
|
|
if (type == Type::PreCode || type == Type::TextUrl) {
|
|
|
|
store(argument, storer);
|
|
|
|
}
|
|
|
|
if (type == Type::MentionName) {
|
|
|
|
store(user_id, storer);
|
|
|
|
}
|
2021-08-06 08:14:52 +02:00
|
|
|
if (type == Type::MediaTimestamp) {
|
|
|
|
store(media_timestamp, storer);
|
|
|
|
}
|
2018-04-02 00:45:51 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
template <class ParserT>
|
|
|
|
void MessageEntity::parse(ParserT &parser) {
|
|
|
|
using td::parse;
|
|
|
|
parse(type, parser);
|
|
|
|
parse(offset, parser);
|
|
|
|
parse(length, parser);
|
|
|
|
if (type == Type::PreCode || type == Type::TextUrl) {
|
|
|
|
parse(argument, parser);
|
|
|
|
}
|
|
|
|
if (type == Type::MentionName) {
|
|
|
|
parse(user_id, parser);
|
|
|
|
}
|
2021-08-06 08:14:52 +02:00
|
|
|
if (type == Type::MediaTimestamp) {
|
|
|
|
parse(media_timestamp, parser);
|
|
|
|
}
|
2018-04-02 00:45:51 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
template <class StorerT>
|
|
|
|
void FormattedText::store(StorerT &storer) const {
|
|
|
|
td::store(text, storer);
|
|
|
|
td::store(entities, storer);
|
|
|
|
}
|
|
|
|
|
|
|
|
template <class ParserT>
|
|
|
|
void FormattedText::parse(ParserT &parser) {
|
|
|
|
td::parse(text, parser);
|
|
|
|
td::parse(entities, parser);
|
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace td
|