/* 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 . Copyright 2017-2020 Telegram Systems LLP */ #pragma once #include "vm/cells/Cell.h" #include "td/utils/buffer.h" #include #include namespace vm { class MerkleProof { public: using IsPrunnedFunction = std::function &)>; // works with proofs wrapped in MerkleProof special cell // cells must have zero level static Ref generate(Ref cell, IsPrunnedFunction is_prunned); static Ref generate(Ref cell, CellUsageTree *usage_tree); // cell must have zero level and must be a MerkleProof static Ref virtualize(Ref cell, int virtualization); static Ref combine(Ref a, Ref b); static td::Result> combine_status(Ref a, Ref b); static Ref combine_fast(Ref a, Ref b); static td::Result> combine_fast_status(Ref a, Ref b); // works with upwrapped proofs // works fine with cell of non-zero level, but this is not supported (yet?) in MerkeProof special cell static Ref generate_raw(Ref cell, IsPrunnedFunction is_prunned); static Ref generate_raw(Ref cell, CellUsageTree *usage_tree); static Ref virtualize_raw(Ref cell, Cell::VirtualizationParameters virt); static Ref combine_raw(Ref a, Ref b); static Ref combine_fast_raw(Ref a, Ref b); }; class MerkleProofBuilder { std::shared_ptr usage_tree; Ref orig_root, usage_root; public: MerkleProofBuilder() = default; MerkleProofBuilder(Ref root); Ref init(Ref root); bool clear(); Ref root() const { return usage_root; } Ref extract_proof() const; bool extract_proof_to(Ref &proof_root) const; td::Result extract_proof_boc() const; }; } // namespace vm