mirror of
				https://github.com/ton-blockchain/ton
				synced 2025-03-09 15:40:10 +00:00 
			
		
		
		
	* getactorstats query for validator-engine-console * celldb in-memory mode (--celldb-in-memory option) * rldp2: bugfix - do not estimate speed while nothing is sent * add simple ed25519 benchmark * fix compilation errors of different platforms and move to c++20 * fix some warnings * turn on TON_USE_ABSEIL for glibc 2.27 nix build --------- Co-authored-by: birydrad <>
		
			
				
	
	
		
			96 lines
		
	
	
	
		
			2.8 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			96 lines
		
	
	
	
		
			2.8 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/>.
 | 
						|
 | 
						|
    Copyright 2017-2020 Telegram Systems LLP
 | 
						|
*/
 | 
						|
#pragma once
 | 
						|
#include "vm/cells/CellTraits.h"
 | 
						|
#include "common/bitstring.h"
 | 
						|
 | 
						|
#include "td/utils/as.h"
 | 
						|
 | 
						|
#include <array>
 | 
						|
namespace td {
 | 
						|
class StringBuilder;
 | 
						|
}
 | 
						|
 | 
						|
namespace vm {
 | 
						|
struct CellHash {
 | 
						|
 public:
 | 
						|
  td::Slice as_slice() const {
 | 
						|
    return td::Slice(hash_.data(), hash_.size());
 | 
						|
  }
 | 
						|
  td::MutableSlice as_slice() {
 | 
						|
    return td::MutableSlice(hash_.data(), hash_.size());
 | 
						|
  }
 | 
						|
  bool operator==(const CellHash& other) const {
 | 
						|
    return hash_ == other.hash_;
 | 
						|
  }
 | 
						|
  bool operator<(const CellHash& other) const {
 | 
						|
    return hash_ < other.hash_;
 | 
						|
  }
 | 
						|
  bool operator!=(const CellHash& other) const {
 | 
						|
    return hash_ != other.hash_;
 | 
						|
  }
 | 
						|
  std::string to_hex() const {
 | 
						|
    return td::ConstBitPtr{hash_.data()}.to_hex(hash_.size() * 8);
 | 
						|
  }
 | 
						|
  friend td::StringBuilder& operator<<(td::StringBuilder& sb, const CellHash& hash);
 | 
						|
  td::ConstBitPtr bits() const {
 | 
						|
    return td::ConstBitPtr{hash_.data()};
 | 
						|
  }
 | 
						|
  td::BitPtr bits() {
 | 
						|
    return td::BitPtr{hash_.data()};
 | 
						|
  }
 | 
						|
  td::BitSlice as_bitslice() const {
 | 
						|
    return td::BitSlice{hash_.data(), (unsigned int)hash_.size() * 8};
 | 
						|
  }
 | 
						|
  const std::array<td::uint8, CellTraits::hash_bytes>& as_array() const {
 | 
						|
    return hash_;
 | 
						|
  }
 | 
						|
 | 
						|
  static CellHash from_slice(td::Slice slice) {
 | 
						|
    CellHash res;
 | 
						|
    CHECK(slice.size() == res.hash_.size());
 | 
						|
    td::MutableSlice(res.hash_.data(), res.hash_.size()).copy_from(slice);
 | 
						|
    return res;
 | 
						|
  }
 | 
						|
 | 
						|
 private:
 | 
						|
  std::array<td::uint8, CellTraits::hash_bytes> hash_;
 | 
						|
};
 | 
						|
}  // namespace vm
 | 
						|
 | 
						|
inline size_t cell_hash_slice_hash(td::Slice hash) {
 | 
						|
  // use offset 8, because in db keys are grouped by first bytes.
 | 
						|
  return td::as<size_t>(hash.substr(8, 8).ubegin());
 | 
						|
}
 | 
						|
namespace std {
 | 
						|
template <>
 | 
						|
struct hash<vm::CellHash> {
 | 
						|
  typedef vm::CellHash argument_type;
 | 
						|
  typedef std::size_t result_type;
 | 
						|
  result_type operator()(argument_type const& s) const noexcept {
 | 
						|
    return cell_hash_slice_hash(s.as_slice());
 | 
						|
  }
 | 
						|
};
 | 
						|
}  // namespace std
 | 
						|
namespace vm {
 | 
						|
template <class H>
 | 
						|
H AbslHashValue(H h, const CellHash& cell_hash) {
 | 
						|
  return H::combine(std::move(h), std::hash<vm::CellHash>()(cell_hash));
 | 
						|
}
 | 
						|
}  // namespace vm
 |