#include "group_mode.h" #include "group_participant.h" #include #include #include #include #include #include // CGo header #include "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> 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 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 lock(stopMutex); stopCv.notify_all(); }); } } { std::unique_lock 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); }