mirror of
https://github.com/TelegramMessenger/tgcalls.git
synced 2026-05-21 18:20:42 +00:00
aaa583f1a9
Brings the testbench source into the submodule: - tools/cli/ — C++ CLI test tool (P2P, reflector, group, group-churn modes) - tools/go_sfu/ — Go/Pion SFU library, c-archive linked into tgcalls_cli - Dockerfile — multi-stage Linux container build - CLAUDE.md (top-level), tools/cli/CLAUDE.md, tools/go_sfu/CLAUDE.md — docs Bazel build glue (.bazelrc, MODULE.bazel, third-party BUILD edits, tgcalls_core target) remains in the outer repo since the dependency stack lives there; labels and paths in this repo reference the outer-repo workspace root. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
174 lines
5.8 KiB
C++
174 lines
5.8 KiB
C++
#include "group_mode.h"
|
|
#include "group_participant.h"
|
|
|
|
#include <algorithm>
|
|
#include <chrono>
|
|
#include <cstdio>
|
|
#include <string>
|
|
#include <thread>
|
|
#include <unistd.h>
|
|
|
|
// CGo header
|
|
#include "submodules/TgVoipWebrtc/tgcalls/tools/go_sfu/go_sfu.h"
|
|
|
|
int runGroupMode(int customParticipants, int referenceParticipants, int duration, bool quiet, bool video, const std::string& networkScenario) {
|
|
gGroupQuiet = quiet;
|
|
gGroupStartTime = std::chrono::steady_clock::now();
|
|
|
|
int participants = customParticipants + referenceParticipants;
|
|
if (participants < 2) {
|
|
fprintf(stderr, "Error: need at least 2 participants total\n");
|
|
return 1;
|
|
}
|
|
|
|
groupLog("Group", "initializing Go SFU...");
|
|
|
|
int rc = GoSfu_Init();
|
|
if (rc != 0) {
|
|
fprintf(stderr, "Error: GoSfu_Init failed with %d\n", rc);
|
|
return 1;
|
|
}
|
|
|
|
GoInt sfuHandle = GoSfu_Create();
|
|
if (sfuHandle <= 0) {
|
|
fprintf(stderr, "Error: GoSfu_Create failed\n");
|
|
return 1;
|
|
}
|
|
|
|
groupLog("Group", "created SFU handle=%lld, custom=%d, reference=%d, duration=%ds",
|
|
(long long)sfuHandle, customParticipants, referenceParticipants, duration);
|
|
|
|
auto threads = tgcalls::StaticThreads::getThreads();
|
|
|
|
// Create participants
|
|
std::vector<std::unique_ptr<ParticipantState>> states;
|
|
bool anyFailed = false;
|
|
|
|
for (int i = 0; i < participants; ++i) {
|
|
bool isReference = (i >= customParticipants);
|
|
auto state = createParticipant(i, isReference, sfuHandle, threads, quiet, video, &states);
|
|
if (!state) {
|
|
anyFailed = true;
|
|
continue;
|
|
}
|
|
states.push_back(std::move(state));
|
|
}
|
|
|
|
// Wait for all participants to connect
|
|
groupLog("Group", "waiting for connections...");
|
|
bool allConnected = false;
|
|
auto waitStart = std::chrono::steady_clock::now();
|
|
while (std::chrono::steady_clock::now() - waitStart < std::chrono::seconds(15)) {
|
|
int connectedCount = 0;
|
|
for (const auto& s : states) {
|
|
if (s->wasConnected.load()) connectedCount++;
|
|
}
|
|
if (connectedCount == (int)states.size()) {
|
|
allConnected = true;
|
|
groupLog("Group", "all %d participants connected", (int)states.size());
|
|
break;
|
|
}
|
|
groupLog("Group", "connected: %d/%d", connectedCount, (int)states.size());
|
|
std::this_thread::sleep_for(std::chrono::milliseconds(500));
|
|
}
|
|
|
|
if (!allConnected) {
|
|
int connectedCount = 0;
|
|
for (const auto& s : states) {
|
|
if (s->wasConnected.load()) connectedCount++;
|
|
}
|
|
groupLog("Group", "connection timeout: %d/%d connected", connectedCount, (int)states.size());
|
|
}
|
|
|
|
// Run for the specified duration, optionally with network scenario.
|
|
if (!networkScenario.empty() && networkScenario == "step-down-up") {
|
|
// Scenario: start uncapped, then step down, step up, uncap.
|
|
// Split duration into 4 phases.
|
|
int phase = std::max(duration / 4, 2);
|
|
groupLog("Group", "network-scenario '%s': phase duration=%ds", networkScenario.c_str(), phase);
|
|
|
|
// Phase 1: uncapped (should be layer 2 on high BW).
|
|
groupLog("Group", "phase 1: uncapped");
|
|
std::this_thread::sleep_for(std::chrono::seconds(phase));
|
|
|
|
// Phase 2: cap to 80 kbps (should force downswitch to layer 0).
|
|
groupLog("Group", "phase 2: cap 80kbps");
|
|
for (const auto& s : states) {
|
|
GoSfu_SetNetworkParams(sfuHandle, s->id, 1, 0, 0, 0.0, 80000);
|
|
}
|
|
std::this_thread::sleep_for(std::chrono::seconds(phase));
|
|
|
|
// Phase 3: cap to 200 kbps (should allow upswitch to layer 1).
|
|
groupLog("Group", "phase 3: cap 200kbps");
|
|
for (const auto& s : states) {
|
|
GoSfu_SetNetworkParams(sfuHandle, s->id, 1, 0, 0, 0.0, 200000);
|
|
}
|
|
std::this_thread::sleep_for(std::chrono::seconds(phase));
|
|
|
|
// Phase 4: uncap (should allow upswitch to layer 2).
|
|
groupLog("Group", "phase 4: uncapped");
|
|
for (const auto& s : states) {
|
|
GoSfu_SetNetworkParams(sfuHandle, s->id, 1, 0, 0, 0.0, 0);
|
|
}
|
|
std::this_thread::sleep_for(std::chrono::seconds(phase));
|
|
} else {
|
|
groupLog("Group", "running for %d seconds...", duration);
|
|
std::this_thread::sleep_for(std::chrono::seconds(duration));
|
|
}
|
|
|
|
// Stop all participants (using GoSfu_Destroy for bulk teardown)
|
|
groupLog("Group", "stopping participants...");
|
|
|
|
// Stop video sources first
|
|
for (auto& s : states) {
|
|
if (s->videoSource) {
|
|
s->videoSource->Stop();
|
|
}
|
|
}
|
|
|
|
// Stop instances
|
|
std::atomic<int> stopCount{0};
|
|
std::mutex stopMutex;
|
|
std::condition_variable stopCv;
|
|
|
|
for (const auto& s : states) {
|
|
if (s->instance) {
|
|
int pid_local = s->id;
|
|
s->instance->stop([&stopCount, &stopMutex, &stopCv, pid_local]() {
|
|
groupLog("Group", "participant %d stopped", pid_local);
|
|
stopCount.fetch_add(1);
|
|
std::lock_guard<std::mutex> lock(stopMutex);
|
|
stopCv.notify_all();
|
|
});
|
|
}
|
|
}
|
|
|
|
{
|
|
std::unique_lock<std::mutex> lock(stopMutex);
|
|
stopCv.wait_for(lock, std::chrono::seconds(5), [&] {
|
|
return stopCount.load() >= (int)states.size();
|
|
});
|
|
}
|
|
|
|
for (auto& s : states) {
|
|
s->instance.reset();
|
|
}
|
|
|
|
// Destroy SFU
|
|
GoSfu_Destroy(sfuHandle);
|
|
GoSfu_Shutdown();
|
|
|
|
// Validate and print summary
|
|
auto result = validateGroupState(states, video);
|
|
bool success = printGroupSummary(customParticipants, referenceParticipants, duration, video, result, anyFailed);
|
|
|
|
// Clean up log files
|
|
for (const auto& s : states) {
|
|
unlink(s->logPath.c_str());
|
|
}
|
|
|
|
fflush(stdout);
|
|
fflush(stderr);
|
|
_exit(success ? 0 : 1);
|
|
}
|