ns-3-leo/helper/leo-helper.cc
2020-06-27 18:45:13 +02:00

186 lines
5.6 KiB
C++

/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
#include "leo-helper.h"
namespace ns3 {
LeoHelper::LeoHelper()
{
}
// TODO use template?
NetDeviceContainer
LeoHelper::Install (NodeContainer satellites, NodeContainer gateways, NodeContainer terminals)
{
NetDeviceContainer container = m_islChannelHelper.Install (satellites);
container.Add (m_gwChannelHelper.Install (satellites, gateways));
container.Add (m_utChannelHelper.Install (satellites, terminals));
return container;
}
NetDeviceContainer
LeoHelper::Install (std::vector<Ptr<Node> > &satellites,
std::vector<Ptr<Node> > &gateways,
std::vector<Ptr<Node> > &terminals)
{
NetDeviceContainer container = m_islChannelHelper.Install (satellites);
container.Add (m_gwChannelHelper.Install (satellites, gateways));
container.Add (m_utChannelHelper.Install (satellites, terminals));
return container;
}
NetDeviceContainer
LeoHelper::Install (std::vector<std::string> &satellites,
std::vector<std::string> &gateways,
std::vector<std::string> &terminals)
{
NetDeviceContainer container = m_islChannelHelper.Install (satellites);
container.Add (m_gwChannelHelper.Install (satellites, gateways));
container.Add (m_utChannelHelper.Install (satellites, terminals));
return container;
}
void
LeoHelper::SetQueue (std::string type,
std::string n1, const AttributeValue &v1,
std::string n2, const AttributeValue &v2,
std::string n3, const AttributeValue &v3,
std::string n4, const AttributeValue &v4)
{
SetGndGwQueue (type, n1, v1, n2, v2, n3, v3, n4, v4);
SetGndUtQueue (type, n1, v1, n2, v2, n3, v3, n4, v4);
SetSatGwQueue (type, n1, v1, n2, v2, n3, v3, n4, v4);
SetSatUtQueue (type, n1, v1, n2, v2, n3, v3, n4, v4);
}
void
LeoHelper::SetGndGwQueue (std::string type,
std::string n1, const AttributeValue &v1,
std::string n2, const AttributeValue &v2,
std::string n3, const AttributeValue &v3,
std::string n4, const AttributeValue &v4)
{
m_gwChannelHelper.SetGndQueue(type, n1, v1, n2, v2, n3, v3, n4, v4);
}
void
LeoHelper::SetGndUtQueue (std::string type,
std::string n1, const AttributeValue &v1,
std::string n2, const AttributeValue &v2,
std::string n3, const AttributeValue &v3,
std::string n4, const AttributeValue &v4)
{
m_utChannelHelper.SetGndQueue(type, n1, v1, n2, v2, n3, v3, n4, v4);
}
void
LeoHelper::SetSatGwQueue (std::string type,
std::string n1, const AttributeValue &v1,
std::string n2, const AttributeValue &v2,
std::string n3, const AttributeValue &v3,
std::string n4, const AttributeValue &v4)
{
m_gwChannelHelper.SetSatQueue(type, n1, v1, n2, v2, n3, v3, n4, v4);
}
void
LeoHelper::SetSatUtQueue (std::string type,
std::string n1, const AttributeValue &v1,
std::string n2, const AttributeValue &v2,
std::string n3, const AttributeValue &v3,
std::string n4, const AttributeValue &v4)
{
m_utChannelHelper.SetSatQueue(type, n1, v1, n2, v2, n3, v3, n4, v4);
}
void
LeoHelper::SetDeviceAttribute (std::string name, const AttributeValue &value)
{
m_islChannelHelper.SetDeviceAttribute (name, value);
m_gwChannelHelper.SetGndDeviceAttribute (name, value);
m_gwChannelHelper.SetSatDeviceAttribute (name, value);
m_utChannelHelper.SetGndDeviceAttribute (name, value);
m_utChannelHelper.SetSatDeviceAttribute (name, value);
}
void
LeoHelper::SetGndGwDeviceAttribute (std::string name, const AttributeValue &value)
{
m_gwChannelHelper.SetGndDeviceAttribute (name, value);
}
void
LeoHelper::SetGndUtDeviceAttribute (std::string name, const AttributeValue &value)
{
m_utChannelHelper.SetGndDeviceAttribute(name, value);
}
void
LeoHelper::SetSatUtDeviceAttribute (std::string name, const AttributeValue &value)
{
m_utChannelHelper.SetSatDeviceAttribute(name, value);
}
void
LeoHelper::SetSatGwDeviceAttribute (std::string name, const AttributeValue &value)
{
m_gwChannelHelper.SetSatDeviceAttribute(name, value);
}
void
LeoHelper::SetIslDeviceAttribute (std::string name, const AttributeValue &value)
{
m_islChannelHelper.SetDeviceAttribute (name, value);
}
void LeoHelper::SetChannelAttribute (std::string name, const AttributeValue &value)
{
SetIslChannelAttribute (name, value);
SetUtChannelAttribute (name, value);
SetGwChannelAttribute (name, value);
}
void
LeoHelper::SetIslChannelAttribute (std::string name, const AttributeValue &value)
{
m_islChannelHelper.SetChannelAttribute (name, value);
}
void
LeoHelper::SetUtChannelAttribute (std::string name, const AttributeValue &value)
{
m_utChannelHelper.SetChannelAttribute (name, value);
}
void
LeoHelper::SetGwChannelAttribute (std::string name, const AttributeValue &value)
{
m_gwChannelHelper.SetChannelAttribute (name, value);
}
void
LeoHelper::EnablePcapInternal (std::string prefix, Ptr<NetDevice> nd, bool promiscuous, bool explicitFilename)
{
m_islChannelHelper.EnablePcapInternal (prefix, nd, promiscuous, explicitFilename);
m_gwChannelHelper.EnablePcapInternal (prefix, nd, promiscuous, explicitFilename);
m_utChannelHelper.EnablePcapInternal (prefix, nd, promiscuous, explicitFilename);
}
void
LeoHelper::EnableAsciiInternal (
Ptr<OutputStreamWrapper> stream,
std::string prefix,
Ptr<NetDevice> nd,
bool explicitFilename)
{
m_islChannelHelper.EnableAsciiInternal (stream, prefix, nd, explicitFilename);
m_gwChannelHelper.EnableAsciiInternal (stream, prefix, nd, explicitFilename);
m_utChannelHelper.EnableAsciiInternal (stream, prefix, nd, explicitFilename);
}
} /* namespace ns3 */