mirror of
				https://github.com/ton-blockchain/ton
				synced 2025-03-09 15:40:10 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			70 lines
		
	
	
	
		
			2.4 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			70 lines
		
	
	
	
		
			2.4 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
 | 
						|
*/
 | 
						|
 | 
						|
#include "BdwStats.h"
 | 
						|
#include "rldp.hpp"
 | 
						|
 | 
						|
namespace ton {
 | 
						|
namespace rldp2 {
 | 
						|
 | 
						|
BdwStats::PacketInfo BdwStats::on_packet_send(td::Timestamp first_sent_at) const {
 | 
						|
  PacketInfo packet;
 | 
						|
  packet.delivered_now = delivered_now;
 | 
						|
  packet.first_sent_at = first_sent_at;
 | 
						|
  packet.delivered_count = delivered_count;
 | 
						|
  packet.is_paused = static_cast<bool>(paused_at_);
 | 
						|
  return packet;
 | 
						|
}
 | 
						|
 | 
						|
void BdwStats::on_packet_ack(const PacketInfo &info, td::Timestamp sent_at, td::Timestamp now) {
 | 
						|
  if (paused_at_.is_in_past(info.delivered_now)) {
 | 
						|
    paused_at_ = {};
 | 
						|
  }
 | 
						|
  auto sent_passed = sent_at.at() - info.first_sent_at.at();
 | 
						|
  auto ack_passed = now.at() - info.delivered_now.at();
 | 
						|
  auto passed = td::max(sent_passed, ack_passed);
 | 
						|
  if (passed < 0.01) {
 | 
						|
    VLOG(RLDP_INFO) << "Invalid passed " << passed;
 | 
						|
  }
 | 
						|
  auto delivered = delivered_count - info.delivered_count;
 | 
						|
  on_rate_sample((double)delivered / passed, now, info.is_paused);
 | 
						|
}
 | 
						|
 | 
						|
void BdwStats::on_update(td::Timestamp now, td::uint64 delivered_count_diff) {
 | 
						|
  this->delivered_now = now;
 | 
						|
  this->delivered_count += delivered_count_diff;
 | 
						|
}
 | 
						|
 | 
						|
void BdwStats::on_pause(td::Timestamp now) {
 | 
						|
  paused_at_ = now;
 | 
						|
}
 | 
						|
 | 
						|
void BdwStats::on_rate_sample(double rate, td::Timestamp now, bool is_paused) {
 | 
						|
  // ignore decrease of rate if is_paused == true
 | 
						|
  if (is_paused && rate < windowed_max_bdw) {
 | 
						|
    return;
 | 
						|
  }
 | 
						|
  windowed_max_bdw_stat.add_event(rate, now.at());
 | 
						|
  auto windowed_max_bdw_sample = windowed_max_bdw_stat.get_stat(now.at()).get_stat();
 | 
						|
  if (windowed_max_bdw_sample) {
 | 
						|
    windowed_max_bdw = windowed_max_bdw_sample.value();
 | 
						|
  }
 | 
						|
}
 | 
						|
}  // namespace rldp2
 | 
						|
}  // namespace ton
 |