tourze/quic-recovery

QUIC协议丢包检测和恢复机制

Installs: 28

Dependents: 1

Suggesters: 0

Security: 0

Stars: 0

Watchers: 0

Forks: 0

Open Issues: 0

pkg:composer/tourze/quic-recovery

0.0.1 2025-06-03 16:14 UTC

This package is auto-updated.

Last update: 2025-10-31 07:46:19 UTC


README

English | 中文

Latest Version PHP Version Build Status Total Downloads License Code Coverage

A complete implementation of QUIC protocol packet loss detection and recovery mechanisms, following RFC 9002 specifications.

Table of Contents

Features

  • RTT Estimation: Implements exponential moving average algorithm for round-trip time estimation
  • Loss Detection: Supports time-based and packet-number-based loss detection algorithms
  • Packet Tracking: Tracks sent packet status and acknowledgment information
  • ACK Management: Automatic ACK frame generation and processing
  • Retransmission Management: Smart retransmission strategy including PTO probing and fast retransmission

Installation

composer require tourze/quic-recovery

Usage

Quick Start

<?php

use Tourze\QUIC\Recovery\Recovery;

// Create recovery instance with initial RTT of 333ms
$recovery = new Recovery(333.0);

// When sending a packet
$recovery->onPacketSent(
    packetNumber: 1,
    packet: $packet,
    sentTime: microtime(true) * 1000,
    ackEliciting: true
);

// When receiving a packet
$recovery->onPacketReceived(
    packetNumber: 1,
    receiveTime: microtime(true) * 1000,
    ackEliciting: true
);

// Check if should send ACK immediately
if ($recovery->shouldSendAckImmediately(microtime(true) * 1000)) {
    $ackFrame = $recovery->generateAckFrame(microtime(true) * 1000);
    // Send ACK frame...
}

Creating Recovery Instance

use Tourze\QUIC\Recovery\Recovery;

// Create recovery mechanism with initial RTT of 333ms
$recovery = new Recovery(333.0);

When Sending Packets

use Tourze\QUIC\Packets\Packet;

// Record sent packet
$recovery->onPacketSent(
    packetNumber: 1,
    packet: $packet,
    sentTime: microtime(true) * 1000,
    ackEliciting: true
);

When Receiving Packets

// Record received packet
$recovery->onPacketReceived(
    packetNumber: 1,
    receiveTime: microtime(true) * 1000,
    ackEliciting: true
);

// Check if should send ACK immediately
if ($recovery->shouldSendAckImmediately(microtime(true) * 1000)) {
    $ackFrame = $recovery->generateAckFrame(microtime(true) * 1000);
    // Send ACK frame...
}

Processing Received ACK

use Tourze\QUIC\Frames\AckFrame;

// When receiving ACK frame
$recovery->onAckReceived($ackFrame, microtime(true) * 1000);

Handling Timeout Events

$currentTime = microtime(true) * 1000;
$actions = $recovery->onTimeout($currentTime);

foreach ($actions as $action) {
    switch ($action['type']) {
        case 'retransmit_lost':
            // Retransmit lost packets
            foreach ($action['packets'] as $packetNumber) {
                // Retransmission logic...
            }
            break;
            
        case 'pto_probe':
            // Send PTO probe packets
            foreach ($action['packets'] as $probeInfo) {
                // Probe logic...
            }
            break;
            
        case 'send_ack':
            // Send ACK frame
            $ackFrame = $action['frame'];
            // Send logic...
            break;
    }
}

Dependencies

  • PHP 8.1 or higher
  • tourze/quic-core - Core QUIC protocol components
  • tourze/quic-packets - QUIC packet structures
  • tourze/quic-frames - QUIC frame structures

Advanced Usage

Getting Statistics

$stats = $recovery->getStats();

echo "Current RTT: " . $recovery->getCurrentRtt() . "ms\n";
echo "Retransmission Rate: " . ($recovery->getRetransmissionRate() * 100) . "%\n";
echo "Connection Healthy: " . ($recovery->isConnectionHealthy() ? 'Yes' : 'No') . "\n";
echo "Congestion Advice: " . $recovery->getCongestionAdvice() . "\n";

Accessing Individual Components

// Get RTT estimator
$rttEstimator = $recovery->getRttEstimator();
$smoothedRtt = $rttEstimator->getSmoothedRtt();

// Get packet tracker
$packetTracker = $recovery->getPacketTracker();
$unackedCount = $packetTracker->getAckElicitingOutstanding();

// Get loss detection
$lossDetection = $recovery->getLossDetection();
$ptoCount = $lossDetection->getPtoCount();

Periodic Cleanup

// Periodic cleanup of expired records (recommended every minute)
$recovery->cleanup(microtime(true) * 1000);

Components

RTTEstimator

  • Implements RFC 9002 RTT estimation algorithm
  • Supports smoothed RTT and RTT variance calculation
  • Provides PTO timeout calculation

PacketTracker

  • Tracks sent packet status
  • Manages ACK acknowledgments and loss marking
  • Supports packet reordering detection

LossDetection

  • Packet number gap-based loss detection
  • Time threshold-based loss detection
  • PTO timeout management

AckManager

  • Automatic ACK frame generation
  • ACK delay control
  • Missing packet detection

RetransmissionManager

  • Smart retransmission strategy
  • Exponential backoff algorithm
  • Retransmission statistics analysis

Configuration

// Custom initial RTT
$recovery = new Recovery(500.0); // 500ms initial RTT

// Reset recovery state
$recovery->reset();

Error Handling

All methods include proper parameter validation and will throw InvalidArgumentException for invalid parameters.

Performance Considerations

  • Periodically call cleanup() method to clean expired records
  • Monitor retransmission rate to avoid retransmission storms
  • Adjust initial RTT value based on network conditions

RFC Compliance

This implementation strictly follows the following RFC specifications:

  • RFC 9000 - QUIC: A UDP-Based Multiplexed and Secure Transport
  • RFC 9002 - QUIC Loss Detection and Congestion Control

Contributing

Please see CONTRIBUTING.md for details.

License

The MIT License (MIT). Please see License File for more information.