forked from ton-blockchain/ton
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathPyCellBuilder.cpp
203 lines (153 loc) · 5.4 KB
/
PyCellBuilder.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
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
// Copyright 2023 Disintar LLP / [email protected]
#include "third-party/pybind11/include/pybind11/pybind11.h"
#include <string>
#include "vm/vmstate.h"
#include "td/utils/base64.h"
#include <utility>
#include "vm/boc.h"
#include "vm/cellslice.h"
#include "block/block.h"
#include "block-auto.h"
#include "block/block-parse.h"
#include "td/utils/PathView.h"
#include "vm/dumper.hpp"
#include "PyCellBuilder.h"
#include "PyCellSlice.h"
#include "PyCell.h"
PyCellBuilder* PyCellBuilder::store_uint_str(const std::string& str, unsigned int bits) {
td::BigInt256 x;
x.enforce(x.parse_dec(str));
my_builder.store_int256(x, bits, false);
return this;
}
unsigned PyCellBuilder::get_refs() const {
return my_builder.get_refs_cnt();
}
unsigned PyCellBuilder::get_bits() const {
return my_builder.get_bits();
}
unsigned PyCellBuilder::get_remaining_refs() const {
return my_builder.remaining_refs();
}
unsigned PyCellBuilder::get_remaining_bits() const {
return my_builder.remaining_bits();
}
PyCellBuilder* PyCellBuilder::store_int_str(const std::string& str, unsigned int bits) {
td::BigInt256 x;
x.enforce(x.parse_dec(str));
my_builder.store_int256(x, bits);
return this;
}
PyCellBuilder* PyCellBuilder::store_bitstring(const std::string& s) {
td::BufferSlice buffer(s.size());
const auto tmp = td::Slice{s};
int bits =
(int)td::bitstring::parse_bitstring_binary_literal((td::uint8*)buffer.data(), s.size(), tmp.begin(), tmp.end());
auto cs = td::Ref<vm::CellSlice>{true, vm::CellBuilder().store_bits(buffer.data(), bits).finalize()};
my_builder = my_builder.append_cellslice(cs);
return this;
}
PyCellBuilder* PyCellBuilder::store_slice(const PyCellSlice& cs) {
my_builder.append_cellslice(cs.my_cell_slice);
return this;
}
PyCellBuilder* PyCellBuilder::store_grams_str(const std::string& str) {
td::BigInt256 x;
x.enforce(x.parse_dec(str));
int k = x.bit_size(false);
const auto success = k <= 15 * 8 && my_builder.store_long_bool((k + 7) >> 3, 4) &&
my_builder.store_int256_bool(x, (k + 7) & -8, false);
if (!success) {
throw vm::CellBuilder::CellWriteError();
}
return this;
}
PyCellBuilder* PyCellBuilder::store_var_integer(const std::string& str, unsigned int varu, bool sgnd) {
td::BigInt256 x;
x.enforce(x.parse_dec(str));
const unsigned int len_bits = 32 - td::count_leading_zeroes32(varu - 1);
unsigned len = (((unsigned)x.bit_size(sgnd) + 7) >> 3);
if (len >= (1u << len_bits)) {
throw std::invalid_argument("Integer doesn't fit to " + std::to_string(len_bits) + "bits, got " +
std::to_string(len));
}
if (!(my_builder.store_long_bool(len, len_bits) && my_builder.store_int256_bool(x, len * 8, sgnd))) {
throw vm::VmError{vm::Excno::cell_ov, "cannot serialize a variable-length integer"};
}
return this;
}
PyCellBuilder* PyCellBuilder::store_ref(const PyCell& c) {
if (c.my_cell.is_null()) {
throw std::invalid_argument("Cell is none");
}
my_builder.store_ref(c.my_cell);
return this;
}
PyCellBuilder* PyCellBuilder::store_uint_less(unsigned int upper_bound, std::string value) {
if (!my_builder.store_uint_less(upper_bound, std::stoull(value))) {
throw std::invalid_argument("Invalid parameters to store_uint_less");
};
return this;
}
PyCellBuilder* PyCellBuilder::store_uint_leq(unsigned int upper_bound, std::string value) {
if (!my_builder.store_uint_leq(upper_bound, std::stoull(value))) {
throw std::invalid_argument("Invalid parameters to store_uint_less");
};
return this;
}
PyCellBuilder* PyCellBuilder::store_zeroes(unsigned int bits) {
my_builder.store_zeroes(bits);
return this;
}
PyCellBuilder* PyCellBuilder::store_ones(unsigned int bits) {
my_builder.store_ones(bits);
return this;
}
PyCellBuilder* PyCellBuilder::store_builder(const PyCellBuilder& cb) {
if (!my_builder.can_extend_by(cb.my_builder.size(), cb.my_builder.size_refs())) {
throw vm::CellBuilder::CellWriteError();
}
my_builder.append_builder(std::move(cb.my_builder));
return this;
}
PyCellBuilder* PyCellBuilder::store_address(const std::string& addr) {
const block::StdAddress res = block::StdAddress::parse(addr).move_as_ok();
block::tlb::t_MsgAddressInt.store_std_address(my_builder, res);
return this;
}
PyCell PyCellBuilder::get_cell(bool special) {
return PyCell(my_builder.finalize_copy(special));
}
std::string PyCellBuilder::toString() const {
std::stringstream os;
vm::CellSlice tmp(my_builder.finalize_copy());
tmp.dump(os);
auto t = os.str();
t.pop_back();
return "<CellBuilder " + t + ">";
}
std::string PyCellBuilder::dump() const {
std::stringstream os;
vm::CellSlice tmp(my_builder.finalize_copy());
tmp.print_rec(os);
return os.str();
}
std::string PyCellBuilder::get_hash() const {
const auto c = my_builder.finalize_copy();
return c->get_hash().to_hex();
}
std::string PyCellBuilder::dump_as_tlb(std::string tlb_type) const {
tlb::TypenameLookup tlb_dict0;
tlb_dict0.register_types(block::gen::register_simple_types);
auto _template = tlb_dict0.lookup(std::move(tlb_type));
if (!_template) {
throw std::invalid_argument("Parse tlb error: not valid tlb type");
}
std::stringstream ss;
_template->print_ref(9 << 20, ss, my_builder.finalize_copy());
auto output = ss.str();
return output;
}
std::string PyCellBuilder::to_boc() const {
return td::base64_encode(std_boc_serialize(my_builder.finalize_copy(), 31).move_as_ok());
}