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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
|
//
// Copyright Aliaksei Levin (levlam@telegram.org), Arseny Smirnov (arseny30@gmail.com) 2014-2026
//
// 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/RequestedDialogType.h"
#include "td/utils/tl_helpers.h"
namespace td {
template <class StorerT>
void RequestedDialogType::store(StorerT &storer) const {
bool has_max_quantity = max_quantity_ != 1;
bool has_suggested_name = !suggested_name_.empty();
bool has_suggested_username = !suggested_username_.empty();
BEGIN_STORE_FLAGS();
STORE_FLAG(restrict_is_bot_);
STORE_FLAG(is_bot_);
STORE_FLAG(restrict_is_premium_);
STORE_FLAG(is_premium_);
STORE_FLAG(restrict_is_forum_);
STORE_FLAG(is_forum_);
STORE_FLAG(bot_is_participant_);
STORE_FLAG(restrict_has_username_);
STORE_FLAG(has_username_);
STORE_FLAG(is_created_);
STORE_FLAG(restrict_user_administrator_rights_);
STORE_FLAG(restrict_bot_administrator_rights_);
STORE_FLAG(has_max_quantity);
STORE_FLAG(has_suggested_name);
STORE_FLAG(has_suggested_username);
END_STORE_FLAGS();
td::store(type_, storer);
td::store(button_id_, storer);
if (restrict_user_administrator_rights_) {
td::store(user_administrator_rights_, storer);
}
if (restrict_bot_administrator_rights_) {
td::store(bot_administrator_rights_, storer);
}
if (has_max_quantity) {
td::store(max_quantity_, storer);
}
if (has_suggested_name) {
td::store(suggested_name_, storer);
}
if (has_suggested_username) {
td::store(suggested_username_, storer);
}
}
template <class ParserT>
void RequestedDialogType::parse(ParserT &parser) {
bool has_max_quantity;
bool has_suggested_name;
bool has_suggested_username;
BEGIN_PARSE_FLAGS();
PARSE_FLAG(restrict_is_bot_);
PARSE_FLAG(is_bot_);
PARSE_FLAG(restrict_is_premium_);
PARSE_FLAG(is_premium_);
PARSE_FLAG(restrict_is_forum_);
PARSE_FLAG(is_forum_);
PARSE_FLAG(bot_is_participant_);
PARSE_FLAG(restrict_has_username_);
PARSE_FLAG(has_username_);
PARSE_FLAG(is_created_);
PARSE_FLAG(restrict_user_administrator_rights_);
PARSE_FLAG(restrict_bot_administrator_rights_);
PARSE_FLAG(has_max_quantity);
PARSE_FLAG(has_suggested_name);
PARSE_FLAG(has_suggested_username);
END_PARSE_FLAGS();
td::parse(type_, parser);
td::parse(button_id_, parser);
if (restrict_user_administrator_rights_) {
td::parse(user_administrator_rights_, parser);
}
if (restrict_bot_administrator_rights_) {
td::parse(bot_administrator_rights_, parser);
}
if (has_max_quantity) {
td::parse(max_quantity_, parser);
} else {
max_quantity_ = 1;
}
if (has_suggested_name) {
td::parse(suggested_name_, parser);
}
if (has_suggested_username) {
td::parse(suggested_username_, parser);
}
}
} // namespace td
|