mirror of
				https://github.com/ton-blockchain/ton
				synced 2025-03-09 15:40:10 +00:00 
			
		
		
		
	* Improve validator session stats * Improve validator session stats Add got_submit_at, collation_cached, validation_cached. Fix stats cleanup. * Fix setting timestamp for cached blocks * Add serialize/deserialize time, serialized size to validator session stats, fix setting is_accepted --------- Co-authored-by: SpyCheese <mikle98@yandex.ru>
		
			
				
	
	
		
			75 lines
		
	
	
	
		
			3.6 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			75 lines
		
	
	
	
		
			3.6 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
/*
 | 
						|
    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/>.
 | 
						|
*/
 | 
						|
#include "candidate-serializer.h"
 | 
						|
#include "tl-utils/tl-utils.hpp"
 | 
						|
#include "vm/boc.h"
 | 
						|
#include "td/utils/lz4.h"
 | 
						|
#include "validator-session-types.h"
 | 
						|
 | 
						|
namespace ton::validatorsession {
 | 
						|
 | 
						|
td::Result<td::BufferSlice> serialize_candidate(const tl_object_ptr<ton_api::validatorSession_candidate> &block,
 | 
						|
                                                bool compression_enabled) {
 | 
						|
  if (!compression_enabled) {
 | 
						|
    return serialize_tl_object(block, true);
 | 
						|
  }
 | 
						|
  vm::BagOfCells boc1, boc2;
 | 
						|
  TRY_STATUS(boc1.deserialize(block->data_));
 | 
						|
  if (boc1.get_root_count() != 1) {
 | 
						|
    return td::Status::Error("block candidate should have exactly one root");
 | 
						|
  }
 | 
						|
  std::vector<td::Ref<vm::Cell>> roots = {boc1.get_root_cell()};
 | 
						|
  TRY_STATUS(boc2.deserialize(block->collated_data_));
 | 
						|
  for (int i = 0; i < boc2.get_root_count(); ++i) {
 | 
						|
    roots.push_back(boc2.get_root_cell(i));
 | 
						|
  }
 | 
						|
  TRY_RESULT(data, vm::std_boc_serialize_multi(std::move(roots), 2));
 | 
						|
  td::BufferSlice compressed = td::lz4_compress(data);
 | 
						|
  LOG(VALIDATOR_SESSION_DEBUG) << "Compressing block candidate: " << block->data_.size() + block->collated_data_.size()
 | 
						|
                               << " -> " << compressed.size();
 | 
						|
  return create_serialize_tl_object<ton_api::validatorSession_compressedCandidate>(
 | 
						|
      0, block->src_, block->round_, block->root_hash_, (int)data.size(), std::move(compressed));
 | 
						|
}
 | 
						|
 | 
						|
td::Result<tl_object_ptr<ton_api::validatorSession_candidate>> deserialize_candidate(td::Slice data,
 | 
						|
                                                                                     bool compression_enabled,
 | 
						|
                                                                                     int max_decompressed_data_size) {
 | 
						|
  if (!compression_enabled) {
 | 
						|
    return fetch_tl_object<ton_api::validatorSession_candidate>(data, true);
 | 
						|
  }
 | 
						|
  TRY_RESULT(f, fetch_tl_object<ton_api::validatorSession_compressedCandidate>(data, true));
 | 
						|
  if (f->decompressed_size_ > max_decompressed_data_size) {
 | 
						|
    return td::Status::Error("decompressed size is too big");
 | 
						|
  }
 | 
						|
  TRY_RESULT(decompressed, td::lz4_decompress(f->data_, f->decompressed_size_));
 | 
						|
  if (decompressed.size() != (size_t)f->decompressed_size_) {
 | 
						|
    return td::Status::Error("decompressed size mismatch");
 | 
						|
  }
 | 
						|
  TRY_RESULT(roots, vm::std_boc_deserialize_multi(decompressed));
 | 
						|
  if (roots.empty()) {
 | 
						|
    return td::Status::Error("boc is empty");
 | 
						|
  }
 | 
						|
  TRY_RESULT(block_data, vm::std_boc_serialize(roots[0], 31));
 | 
						|
  roots.erase(roots.begin());
 | 
						|
  TRY_RESULT(collated_data, vm::std_boc_serialize_multi(std::move(roots), 31));
 | 
						|
  LOG(VALIDATOR_SESSION_DEBUG) << "Decompressing block candidate: " << f->data_.size() << " -> "
 | 
						|
                               << block_data.size() + collated_data.size();
 | 
						|
  return create_tl_object<ton_api::validatorSession_candidate>(f->src_, f->round_, f->root_hash_, std::move(block_data),
 | 
						|
                                                               std::move(collated_data));
 | 
						|
}
 | 
						|
 | 
						|
}  // namespace ton::validatorsession
 |