mirror of
				https://github.com/ton-blockchain/ton
				synced 2025-03-09 15:40:10 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			126 lines
		
	
	
	
		
			3.9 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			126 lines
		
	
	
	
		
			3.9 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 "adnl/adnl-node-id.hpp"
 | |
| #include "adnl/adnl-address-list.hpp"
 | |
| 
 | |
| #include "dht-types.h"
 | |
| #include "auto/tl/ton_api.hpp"
 | |
| #include "td/utils/overloaded.h"
 | |
| 
 | |
| namespace ton {
 | |
| 
 | |
| namespace dht {
 | |
| 
 | |
| class DhtNode {
 | |
|  private:
 | |
|   adnl::AdnlNodeIdFull id_;
 | |
|   adnl::AdnlAddressList addr_list_;
 | |
|   td::int32 version_{0};
 | |
|   td::int32 network_id_{-1};
 | |
|   td::SharedSlice signature_;
 | |
| 
 | |
|  public:
 | |
|   DhtNode() = default;
 | |
|   DhtNode(adnl::AdnlNodeIdFull id, adnl::AdnlAddressList addr_list, td::int32 version, td::int32 network_id, td::BufferSlice signature)
 | |
|       : id_(id), addr_list_(addr_list), version_(version), network_id_(network_id), signature_(signature.as_slice()) {
 | |
|   }
 | |
|   DhtNode(adnl::AdnlNodeIdFull id, adnl::AdnlAddressList addr_list, td::int32 version, td::int32 network_id, td::SharedSlice signature)
 | |
|       : id_(id), addr_list_(addr_list), version_(version), network_id_(network_id), signature_(std::move(signature)) {
 | |
|   }
 | |
|   static td::Result<DhtNode> create(tl_object_ptr<ton_api::dht_node> obj, td::int32 our_network_id) {
 | |
|     if (obj->version_ == 0) {
 | |
|       return td::Status::Error(ErrorCode::protoviolation, "zero version");
 | |
|     }
 | |
|     DhtNode n;
 | |
|     TRY_STATUS(n.update(std::move(obj), our_network_id));
 | |
|     return std::move(n);
 | |
|   }
 | |
|   td::Status update(tl_object_ptr<ton_api::dht_node> obj, td::int32 our_network_id);
 | |
|   DhtKeyId get_key() const {
 | |
|     CHECK(!id_.empty());
 | |
|     return DhtKeyId{id_.compute_short_id()};
 | |
|   }
 | |
| 
 | |
|   adnl::AdnlNodeIdFull adnl_id() const {
 | |
|     return id_;
 | |
|   }
 | |
|   adnl::AdnlAddressList addr_list() const {
 | |
|     return addr_list_;
 | |
|   }
 | |
|   td::int32 version() const {
 | |
|     return version_;
 | |
|   }
 | |
| 
 | |
|   tl_object_ptr<ton_api::dht_node> tl() const {
 | |
|     td::BufferSlice signature_ext;
 | |
|     if (network_id_ == -1) {
 | |
|       signature_ext = signature_.clone_as_buffer_slice();
 | |
|     } else {
 | |
|       signature_ext = td::BufferSlice{4 + signature_.size()};
 | |
|       td::MutableSlice s = signature_ext.as_slice();
 | |
|       s.copy_from(td::Slice(reinterpret_cast<const td::uint8 *>(&network_id_), 4));
 | |
|       s.remove_prefix(4);
 | |
|       s.copy_from(signature_.as_slice());
 | |
|     }
 | |
|     return create_tl_object<ton_api::dht_node>(id_.tl(), addr_list_.tl(), version_, std::move(signature_ext));
 | |
|   }
 | |
|   DhtNode clone() const {
 | |
|     return DhtNode{id_, addr_list_, version_, network_id_, signature_.clone()};
 | |
|   }
 | |
|   td::Status check_signature() const;
 | |
| };
 | |
| 
 | |
| class DhtNodesList {
 | |
|  public:
 | |
|   DhtNodesList() = default;
 | |
|   DhtNodesList(tl_object_ptr<ton_api::dht_nodes> R, td::int32 our_network_id) {
 | |
|     for (auto &n : R->nodes_) {
 | |
|       auto N = DhtNode::create(std::move(n), our_network_id);
 | |
|       if (N.is_ok()) {
 | |
|         list_.emplace_back(N.move_as_ok());
 | |
|       } else {
 | |
|         LOG(WARNING) << "bad dht node: " << N.move_as_error();
 | |
|       }
 | |
|     }
 | |
|   }
 | |
| 
 | |
|   void push_back(DhtNode node) {
 | |
|     list_.emplace_back(std::move(node));
 | |
|   }
 | |
| 
 | |
|   tl_object_ptr<ton_api::dht_nodes> tl() const;
 | |
|   std::vector<DhtNode> &list() {
 | |
|     return list_;
 | |
|   }
 | |
|   const std::vector<DhtNode> &list() const {
 | |
|     return list_;
 | |
|   }
 | |
|   td::uint32 size() const {
 | |
|     return static_cast<td::uint32>(list_.size());
 | |
|   }
 | |
| 
 | |
|  private:
 | |
|   std::vector<DhtNode> list_;
 | |
| };
 | |
| 
 | |
| }  // namespace dht
 | |
| 
 | |
| }  // namespace ton
 |