2019-09-07 10:03:22 +00:00
|
|
|
/*
|
|
|
|
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/>.
|
|
|
|
|
2020-04-10 19:06:01 +00:00
|
|
|
Copyright 2017-2020 Telegram Systems LLP
|
2019-09-07 10:03:22 +00:00
|
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include "vm/cells/Cell.h"
|
2019-09-14 14:14:55 +00:00
|
|
|
#include "td/utils/buffer.h"
|
2019-09-07 10:03:22 +00:00
|
|
|
|
|
|
|
#include <utility>
|
|
|
|
#include <functional>
|
|
|
|
|
|
|
|
namespace vm {
|
2019-09-14 14:14:55 +00:00
|
|
|
|
2019-09-07 10:03:22 +00:00
|
|
|
class MerkleProof {
|
|
|
|
public:
|
|
|
|
using IsPrunnedFunction = std::function<bool(const Ref<Cell> &)>;
|
|
|
|
|
|
|
|
// works with proofs wrapped in MerkleProof special cell
|
|
|
|
// cells must have zero level
|
|
|
|
static Ref<Cell> generate(Ref<Cell> cell, IsPrunnedFunction is_prunned);
|
|
|
|
static Ref<Cell> generate(Ref<Cell> cell, CellUsageTree *usage_tree);
|
|
|
|
|
|
|
|
// cell must have zero level and must be a MerkleProof
|
|
|
|
static Ref<Cell> virtualize(Ref<Cell> cell, int virtualization);
|
|
|
|
|
|
|
|
static Ref<Cell> combine(Ref<Cell> a, Ref<Cell> b);
|
2020-04-27 12:01:46 +00:00
|
|
|
static td::Result<Ref<Cell>> combine_status(Ref<Cell> a, Ref<Cell> b);
|
2019-12-29 09:14:12 +00:00
|
|
|
static Ref<Cell> combine_fast(Ref<Cell> a, Ref<Cell> b);
|
2020-04-27 12:01:46 +00:00
|
|
|
static td::Result<Ref<Cell>> combine_fast_status(Ref<Cell> a, Ref<Cell> b);
|
2019-09-07 10:03:22 +00:00
|
|
|
|
|
|
|
// works with upwrapped proofs
|
|
|
|
// works fine with cell of non-zero level, but this is not supported (yet?) in MerkeProof special cell
|
|
|
|
static Ref<Cell> generate_raw(Ref<Cell> cell, IsPrunnedFunction is_prunned);
|
|
|
|
static Ref<Cell> generate_raw(Ref<Cell> cell, CellUsageTree *usage_tree);
|
|
|
|
static Ref<Cell> virtualize_raw(Ref<Cell> cell, Cell::VirtualizationParameters virt);
|
2019-12-29 09:14:12 +00:00
|
|
|
static Ref<Cell> combine_raw(Ref<Cell> a, Ref<Cell> b);
|
|
|
|
static Ref<Cell> combine_fast_raw(Ref<Cell> a, Ref<Cell> b);
|
2019-09-07 10:03:22 +00:00
|
|
|
};
|
2019-09-14 14:14:55 +00:00
|
|
|
|
|
|
|
class MerkleProofBuilder {
|
|
|
|
std::shared_ptr<CellUsageTree> usage_tree;
|
|
|
|
Ref<vm::Cell> orig_root, usage_root;
|
|
|
|
|
|
|
|
public:
|
2019-09-30 12:49:45 +00:00
|
|
|
MerkleProofBuilder() = default;
|
2019-09-14 14:14:55 +00:00
|
|
|
MerkleProofBuilder(Ref<Cell> root);
|
2019-09-30 12:49:45 +00:00
|
|
|
Ref<Cell> init(Ref<Cell> root);
|
|
|
|
bool clear();
|
2019-09-14 14:14:55 +00:00
|
|
|
Ref<Cell> root() const {
|
|
|
|
return usage_root;
|
|
|
|
}
|
2023-02-28 09:06:57 +00:00
|
|
|
td::Result<Ref<Cell>> extract_proof() const;
|
2019-09-14 14:14:55 +00:00
|
|
|
bool extract_proof_to(Ref<Cell> &proof_root) const;
|
|
|
|
td::Result<td::BufferSlice> extract_proof_boc() const;
|
|
|
|
};
|
|
|
|
|
2019-09-07 10:03:22 +00:00
|
|
|
} // namespace vm
|