2018-09-27 13:47:01 +02:00
|
|
|
/*
|
|
|
|
|
* Copyright 2018 The WebRTC project authors. All Rights Reserved.
|
|
|
|
|
*
|
|
|
|
|
* Use of this source code is governed by a BSD-style license
|
|
|
|
|
* that can be found in the LICENSE file in the root of the source
|
|
|
|
|
* tree. An additional intellectual property rights grant can be found
|
|
|
|
|
* in the file PATENTS. All contributing project authors may
|
|
|
|
|
* be found in the AUTHORS file in the root of the source tree.
|
|
|
|
|
*/
|
|
|
|
|
#ifndef TEST_SCENARIO_NETWORK_NODE_H_
|
|
|
|
|
#define TEST_SCENARIO_NETWORK_NODE_H_
|
|
|
|
|
|
|
|
|
|
#include <deque>
|
|
|
|
|
#include <map>
|
|
|
|
|
#include <memory>
|
|
|
|
|
#include <utility>
|
|
|
|
|
#include <vector>
|
|
|
|
|
|
|
|
|
|
#include "api/call/transport.h"
|
|
|
|
|
#include "api/units/timestamp.h"
|
2018-10-22 11:49:03 +02:00
|
|
|
#include "call/call.h"
|
2018-09-27 13:47:01 +02:00
|
|
|
#include "call/simulated_network.h"
|
|
|
|
|
#include "rtc_base/constructormagic.h"
|
|
|
|
|
#include "rtc_base/copyonwritebuffer.h"
|
|
|
|
|
#include "test/scenario/column_printer.h"
|
2019-01-04 15:45:01 +01:00
|
|
|
#include "test/scenario/network/network_emulation.h"
|
2018-09-27 13:47:01 +02:00
|
|
|
#include "test/scenario/scenario_config.h"
|
|
|
|
|
|
|
|
|
|
namespace webrtc {
|
|
|
|
|
namespace test {
|
|
|
|
|
|
2019-01-04 15:45:01 +01:00
|
|
|
class NullReceiver : public EmulatedNetworkReceiverInterface {
|
2018-09-27 13:47:01 +02:00
|
|
|
public:
|
2019-01-04 15:45:01 +01:00
|
|
|
void OnPacketReceived(EmulatedIpPacket packet) override;
|
2018-09-27 13:47:01 +02:00
|
|
|
};
|
2019-01-04 15:45:01 +01:00
|
|
|
class ActionReceiver : public EmulatedNetworkReceiverInterface {
|
2018-09-27 13:47:01 +02:00
|
|
|
public:
|
|
|
|
|
explicit ActionReceiver(std::function<void()> action);
|
|
|
|
|
virtual ~ActionReceiver() = default;
|
2019-01-04 15:45:01 +01:00
|
|
|
|
|
|
|
|
void OnPacketReceived(EmulatedIpPacket packet) override;
|
2018-09-27 13:47:01 +02:00
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
std::function<void()> action_;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
// NetworkNode represents one link in a simulated network. It is created by a
|
|
|
|
|
// scenario and can be used when setting up audio and video stream sessions.
|
2019-01-04 15:45:01 +01:00
|
|
|
class NetworkNode : public EmulatedNetworkReceiverInterface {
|
2018-09-27 13:47:01 +02:00
|
|
|
public:
|
|
|
|
|
~NetworkNode() override;
|
|
|
|
|
RTC_DISALLOW_COPY_AND_ASSIGN(NetworkNode);
|
|
|
|
|
|
2019-01-04 15:45:01 +01:00
|
|
|
void OnPacketReceived(EmulatedIpPacket packet) override;
|
2018-09-27 13:47:01 +02:00
|
|
|
// Creates a route for the given receiver_id over all the given nodes to the
|
|
|
|
|
// given receiver.
|
2019-01-04 15:45:01 +01:00
|
|
|
static void Route(uint64_t receiver_id,
|
2018-09-27 13:47:01 +02:00
|
|
|
std::vector<NetworkNode*> nodes,
|
2019-01-04 15:45:01 +01:00
|
|
|
EmulatedNetworkReceiverInterface* receiver);
|
2018-09-27 13:47:01 +02:00
|
|
|
|
|
|
|
|
protected:
|
|
|
|
|
friend class Scenario;
|
|
|
|
|
friend class AudioStreamPair;
|
|
|
|
|
friend class VideoStreamPair;
|
|
|
|
|
|
|
|
|
|
NetworkNode(NetworkNodeConfig config,
|
2018-10-04 14:46:31 +02:00
|
|
|
std::unique_ptr<NetworkBehaviorInterface> simulation);
|
2019-01-04 15:45:01 +01:00
|
|
|
static void ClearRoute(uint64_t receiver_id, std::vector<NetworkNode*> nodes);
|
2018-09-27 13:47:01 +02:00
|
|
|
void Process(Timestamp at_time);
|
|
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
struct StoredPacket {
|
2019-01-04 15:45:01 +01:00
|
|
|
EmulatedIpPacket packet;
|
2018-09-27 13:47:01 +02:00
|
|
|
uint64_t id;
|
|
|
|
|
bool removed;
|
|
|
|
|
};
|
2019-01-04 15:45:01 +01:00
|
|
|
void SetRoute(uint64_t receiver, EmulatedNetworkReceiverInterface* node);
|
2018-09-27 13:47:01 +02:00
|
|
|
void ClearRoute(uint64_t receiver_id);
|
|
|
|
|
rtc::CriticalSection crit_sect_;
|
|
|
|
|
size_t packet_overhead_ RTC_GUARDED_BY(crit_sect_);
|
2018-10-04 14:46:31 +02:00
|
|
|
const std::unique_ptr<NetworkBehaviorInterface> behavior_
|
2018-09-27 13:47:01 +02:00
|
|
|
RTC_GUARDED_BY(crit_sect_);
|
2019-01-04 15:45:01 +01:00
|
|
|
std::map<uint64_t, EmulatedNetworkReceiverInterface*> routing_
|
2018-09-27 13:47:01 +02:00
|
|
|
RTC_GUARDED_BY(crit_sect_);
|
|
|
|
|
std::deque<StoredPacket> packets_ RTC_GUARDED_BY(crit_sect_);
|
|
|
|
|
|
|
|
|
|
uint64_t next_packet_id_ RTC_GUARDED_BY(crit_sect_) = 1;
|
|
|
|
|
};
|
|
|
|
|
// SimulationNode is a NetworkNode that expose an interface for changing run
|
|
|
|
|
// time behavior of the underlying simulation.
|
|
|
|
|
class SimulationNode : public NetworkNode {
|
|
|
|
|
public:
|
|
|
|
|
void UpdateConfig(std::function<void(NetworkNodeConfig*)> modifier);
|
|
|
|
|
void PauseTransmissionUntil(Timestamp until);
|
|
|
|
|
ColumnPrinter ConfigPrinter() const;
|
|
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
friend class Scenario;
|
|
|
|
|
|
|
|
|
|
SimulationNode(NetworkNodeConfig config,
|
2018-10-04 14:46:31 +02:00
|
|
|
std::unique_ptr<NetworkBehaviorInterface> behavior,
|
2018-09-27 13:47:01 +02:00
|
|
|
SimulatedNetwork* simulation);
|
|
|
|
|
static std::unique_ptr<SimulationNode> Create(NetworkNodeConfig config);
|
|
|
|
|
SimulatedNetwork* const simulated_network_;
|
|
|
|
|
NetworkNodeConfig config_;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
class NetworkNodeTransport : public Transport {
|
|
|
|
|
public:
|
2018-10-22 11:49:03 +02:00
|
|
|
NetworkNodeTransport(const Clock* sender_clock, Call* sender_call);
|
2018-09-27 13:47:01 +02:00
|
|
|
~NetworkNodeTransport() override;
|
|
|
|
|
|
|
|
|
|
bool SendRtp(const uint8_t* packet,
|
|
|
|
|
size_t length,
|
|
|
|
|
const PacketOptions& options) override;
|
|
|
|
|
bool SendRtcp(const uint8_t* packet, size_t length) override;
|
2018-10-22 11:49:03 +02:00
|
|
|
|
|
|
|
|
void Connect(NetworkNode* send_node,
|
|
|
|
|
uint64_t receiver_id,
|
|
|
|
|
DataSize packet_overhead);
|
|
|
|
|
|
|
|
|
|
DataSize packet_overhead() {
|
|
|
|
|
rtc::CritScope crit(&crit_sect_);
|
|
|
|
|
return packet_overhead_;
|
|
|
|
|
}
|
2018-09-27 13:47:01 +02:00
|
|
|
|
|
|
|
|
private:
|
2018-10-22 11:49:03 +02:00
|
|
|
rtc::CriticalSection crit_sect_;
|
|
|
|
|
const Clock* const sender_clock_;
|
|
|
|
|
Call* const sender_call_;
|
|
|
|
|
NetworkNode* send_net_ RTC_GUARDED_BY(crit_sect_) = nullptr;
|
|
|
|
|
uint64_t receiver_id_ RTC_GUARDED_BY(crit_sect_) = 0;
|
|
|
|
|
DataSize packet_overhead_ RTC_GUARDED_BY(crit_sect_) = DataSize::Zero();
|
2018-09-27 13:47:01 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
// CrossTrafficSource is created by a Scenario and generates cross traffic. It
|
|
|
|
|
// provides methods to access and print internal state.
|
|
|
|
|
class CrossTrafficSource {
|
|
|
|
|
public:
|
|
|
|
|
DataRate TrafficRate() const;
|
|
|
|
|
ColumnPrinter StatsPrinter();
|
|
|
|
|
~CrossTrafficSource();
|
|
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
friend class Scenario;
|
2019-01-04 15:45:01 +01:00
|
|
|
CrossTrafficSource(EmulatedNetworkReceiverInterface* target,
|
2018-09-27 13:47:01 +02:00
|
|
|
uint64_t receiver_id,
|
|
|
|
|
CrossTrafficConfig config);
|
|
|
|
|
void Process(Timestamp at_time, TimeDelta delta);
|
|
|
|
|
|
2019-01-04 15:45:01 +01:00
|
|
|
EmulatedNetworkReceiverInterface* const target_;
|
2018-09-27 13:47:01 +02:00
|
|
|
const uint64_t receiver_id_;
|
|
|
|
|
CrossTrafficConfig config_;
|
|
|
|
|
webrtc::Random random_;
|
|
|
|
|
|
|
|
|
|
TimeDelta time_since_update_ = TimeDelta::Zero();
|
|
|
|
|
double intensity_ = 0;
|
|
|
|
|
DataSize pending_size_ = DataSize::Zero();
|
|
|
|
|
};
|
|
|
|
|
} // namespace test
|
|
|
|
|
} // namespace webrtc
|
|
|
|
|
#endif // TEST_SCENARIO_NETWORK_NODE_H_
|