/* 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-2019 Telegram Systems LLP */ #pragma once #include "vm/cells/Cell.h" #include "vm/cells/CellSlice.h" #include "vm/cells/CellBuilder.h" #include "td/utils/Status.h" #include namespace vm { class MerkleUpdate { public: // from + update == to static Ref generate(Ref from, Ref to, CellUsageTree *usage_tree); // Returns empty Ref if something go wrong. If validate(from).is_ok() and may_apply(from, to).is_ok(), then it // must not fail. static Ref apply(Ref from, Ref update); // check if update is valid static TD_WARN_UNUSED_RESULT td::Status validate(Ref update); // check that hash in from is same as hash stored in update. Do not validate update static TD_WARN_UNUSED_RESULT td::Status may_apply(Ref from, Ref update); static Ref apply_raw(Ref from, Ref update_from, Ref update_to, td::uint32 from_level, td::uint32 to_level); static std::pair, Ref> generate_raw(Ref from, Ref to, CellUsageTree *usage_tree); static td::Status validate_raw(Ref update_from, Ref update_to, td::uint32 from_level, td::uint32 to_level); static Ref combine(Ref ab, Ref bc); }; } // namespace vm