forked from ton-blockchain/ton
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfec.cpp
138 lines (122 loc) · 6.58 KB
/
fec.cpp
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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
/*
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/>.
Copyright 2017-2020 Telegram Systems LLP
*/
#include "fec.h"
#include "td/utils/overloaded.h"
#include "auto/tl/ton_api.hpp"
#include "td/utils/misc.h"
namespace ton {
namespace fec {
tl_object_ptr<ton_api::fec_Type> FecType::tl() const {
tl_object_ptr<ton_api::fec_Type> res;
type_.visit(td::overloaded([&](const Empty &obj) { UNREACHABLE(); },
[&](const td::fec::RaptorQEncoder::Parameters &obj) {
res = create_tl_object<ton_api::fec_raptorQ>(static_cast<td::uint32>(obj.data_size),
static_cast<td::uint32>(obj.symbol_size),
static_cast<td::uint32>(obj.symbols_count));
},
[&](const td::fec::RoundRobinEncoder::Parameters &obj) {
res = create_tl_object<ton_api::fec_roundRobin>(
static_cast<td::uint32>(obj.data_size), static_cast<td::uint32>(obj.symbol_size),
static_cast<td::uint32>(obj.symbols_count));
},
[&](const td::fec::OnlineEncoder::Parameters &obj) {
res = create_tl_object<ton_api::fec_online>(static_cast<td::uint32>(obj.data_size),
static_cast<td::uint32>(obj.symbol_size),
static_cast<td::uint32>(obj.symbols_count));
}));
return res;
}
td::Result<std::unique_ptr<td::fec::Decoder>> FecType::create_decoder() const {
std::unique_ptr<td::fec::Decoder> res;
type_.visit(td::overloaded(
[&](const Empty &obj) { UNREACHABLE(); },
[&](const td::fec::RaptorQEncoder::Parameters &obj) { res = td::fec::RaptorQDecoder::create(obj); },
[&](const td::fec::RoundRobinEncoder::Parameters &obj) { res = td::fec::RoundRobinDecoder::create(obj); },
[&](const td::fec::OnlineEncoder::Parameters &obj) { res = td::fec::OnlineDecoder::create(obj); }));
return std::move(res);
}
td::Result<std::unique_ptr<td::fec::Encoder>> FecType::create_encoder(td::BufferSlice data) {
std::unique_ptr<td::fec::Encoder> res;
type_.visit(td::overloaded([&](const Empty &obj) { UNREACHABLE(); },
[&](const td::fec::RaptorQEncoder::Parameters &obj) {
auto R = td::fec::RaptorQEncoder::create(std::move(data), obj.symbol_size);
type_ = R->get_parameters();
res = std::move(R);
},
[&](const td::fec::RoundRobinEncoder::Parameters &obj) {
auto R = td::fec::RoundRobinEncoder::create(std::move(data), obj.symbol_size);
type_ = R->get_parameters();
res = std::move(R);
},
[&](const td::fec::OnlineEncoder::Parameters &obj) {
auto R = td::fec::OnlineEncoder::create(std::move(data), obj.symbol_size);
type_ = R->get_parameters();
res = std::move(R);
}));
return std::move(res);
}
td::uint32 FecType::size() const {
td::uint32 res = 0;
type_.visit(td::overloaded([&](const Empty &obj) { UNREACHABLE(); },
[&](const auto &obj) { res = static_cast<td::uint32>(obj.data_size); }));
return res;
}
td::uint32 FecType::symbols_count() const {
td::uint32 res = 0;
type_.visit(td::overloaded([&](const Empty &obj) { UNREACHABLE(); },
[&](const auto &obj) { res = static_cast<td::uint32>(obj.symbols_count); }));
return res;
}
td::uint32 FecType::symbol_size() const {
td::uint32 res = 0;
type_.visit(td::overloaded([&](const Empty &obj) { UNREACHABLE(); },
[&](const auto &obj) { res = static_cast<td::uint32>(obj.symbol_size); }));
return res;
}
td::Result<FecType> FecType::create(tl_object_ptr<ton_api::fec_Type> obj) {
td::int32 data_size_int = 0, symbol_size_int = 0, symbols_count_int = 0;
ton_api::downcast_call(*obj, td::overloaded([&](const auto &obj) {
data_size_int = obj.data_size_;
symbol_size_int = obj.symbol_size_;
symbols_count_int = obj.symbols_count_;
}));
TRY_RESULT(data_size, td::narrow_cast_safe<size_t>(data_size_int));
TRY_RESULT(symbol_size, td::narrow_cast_safe<size_t>(symbol_size_int));
TRY_RESULT(symbols_count, td::narrow_cast_safe<size_t>(symbols_count_int));
if (symbol_size == 0) {
return td::Status::Error("invalid fec type: symbol_size is 0");
}
if (symbol_size > 1 << 11) {
return td::Status::Error("invalid fec type: symbol_size is too big");
}
if (symbols_count != (data_size + symbol_size - 1) / symbol_size) {
return td::Status::Error("invalid fec type: wrong symbols_count");
}
FecType T;
ton_api::downcast_call(*obj,
td::overloaded(
[&](const ton_api::fec_raptorQ &obj) {
T.type_ = td::fec::RaptorQEncoder::Parameters{data_size, symbol_size, symbols_count};
},
[&](const ton_api::fec_roundRobin &obj) {
T.type_ = td::fec::RoundRobinEncoder::Parameters{data_size, symbol_size, symbols_count};
},
[&](const ton_api::fec_online &obj) {
T.type_ = td::fec::OnlineEncoder::Parameters{data_size, symbol_size, symbols_count};
}));
return T;
}
} // namespace fec
} // namespace ton