solanaceae_ngc_ft1/solanaceae/ngc_ft1/cubic.hpp

56 lines
1.5 KiB
C++
Raw Normal View History

2023-08-24 18:04:25 +02:00
#pragma once
#include "./flow_only.hpp"
2023-08-24 18:04:25 +02:00
#include <chrono>
struct CUBIC : public FlowOnly {
//using clock = std::chrono::steady_clock;
2023-08-24 18:04:25 +02:00
public: // config
2023-09-02 02:28:22 +02:00
//static constexpr float BETA {0.7f};
static constexpr float BETA {0.8f};
2023-08-24 18:04:25 +02:00
static constexpr float SCALING_CONSTANT {0.4f};
static constexpr float RTT_EMA_ALPHA = 0.1f; // 0.1 is very smooth, might need more
private:
// window size before last reduciton
double _window_max {2.f * MAXIMUM_SEGMENT_SIZE}; // start with mss*2
//double _window_last_max {2.f * MAXIMUM_SEGMENT_SIZE};
double _time_point_reduction {getTimeNow()};
2023-08-24 18:04:25 +02:00
private:
float getCWnD(void) const;
// moving avg over the last few delay samples
// VERY sensitive to bundling acks
//float getCurrentDelay(void) const;
//void addRTT(float new_delay);
2023-08-24 18:04:25 +02:00
void onCongestion(void) override;
2023-08-24 18:04:25 +02:00
public: // api
CUBIC(size_t maximum_segment_data_size) : FlowOnly(maximum_segment_data_size) {}
2023-08-24 18:04:25 +02:00
2023-09-08 00:41:25 +02:00
float getWindow(void) override;
2023-08-24 18:04:25 +02:00
// TODO: api for how much data we should send
// take time since last sent into account
// respect max_byterate_allowed
int64_t canSend(float time_delta) override;
2023-08-24 18:04:25 +02:00
// get the list of timed out seq_ids
//std::vector<SeqIDType> getTimeouts(void) const override;
2023-08-24 18:04:25 +02:00
public: // callbacks
// data size is without overhead
//void onSent(SeqIDType seq, size_t data_size) override;
2023-08-24 18:04:25 +02:00
//void onAck(std::vector<SeqIDType> seqs) override;
2023-08-24 18:04:25 +02:00
// if discard, not resent, not inflight
//void onLoss(SeqIDType seq, bool discard) override;
2023-08-24 18:04:25 +02:00
};