Simple Point To Point Channel. More...
#include <point-to-point-channel.h>
Classes | |
class | Link |
Public Member Functions | |
PointToPointChannel () | |
Create a PointToPointChannel. More... | |
void | Attach (Ptr< PointToPointNetDevice > device) |
Attach a given netdevice to this channel. More... | |
virtual Ptr< NetDevice > | GetDevice (uint32_t i) const |
virtual uint32_t | GetNDevices (void) const |
Get number of devices on this channel. More... | |
Ptr< PointToPointNetDevice > | GetPointToPointDevice (uint32_t i) const |
virtual bool | TransmitStart (Ptr< Packet > p, Ptr< PointToPointNetDevice > src, Time txTime) |
Transmit a packet over this channel. More... | |
Public Member Functions inherited from ns3::Channel | |
Channel () | |
virtual | ~Channel () |
uint32_t | GetId (void) const |
Public Member Functions inherited from ns3::Object | |
Object () | |
virtual | ~Object () |
void | AggregateObject (Ptr< Object > other) |
void | Dispose (void) |
Run the DoDispose methods of this object and all the objects aggregated to it. More... | |
AggregateIterator | GetAggregateIterator (void) const |
virtual TypeId | GetInstanceTypeId (void) const |
template<typename T > | |
Ptr< T > | GetObject (void) const |
template<typename T > | |
Ptr< T > | GetObject (TypeId tid) const |
void | Initialize (void) |
This method calls the virtual DoInitialize method on all the objects aggregated to this object. More... | |
Public Member Functions inherited from ns3::SimpleRefCount< Object, ObjectBase, ObjectDeleter > | |
SimpleRefCount () | |
Constructor. More... | |
SimpleRefCount (const SimpleRefCount &o) | |
Copy constructor. More... | |
uint32_t | GetReferenceCount (void) const |
Get the reference count of the object. More... | |
SimpleRefCount & | operator= (const SimpleRefCount &o) |
Assignment. More... | |
void | Ref (void) const |
Increment the reference count. More... | |
void | Unref (void) const |
Decrement the reference count. More... | |
Public Member Functions inherited from ns3::ObjectBase | |
virtual | ~ObjectBase () |
Virtual destructor. More... | |
void | GetAttribute (std::string name, AttributeValue &value) const |
bool | GetAttributeFailSafe (std::string name, AttributeValue &attribute) const |
void | SetAttribute (std::string name, const AttributeValue &value) |
bool | SetAttributeFailSafe (std::string name, const AttributeValue &value) |
bool | TraceConnect (std::string name, std::string context, const CallbackBase &cb) |
bool | TraceConnectWithoutContext (std::string name, const CallbackBase &cb) |
bool | TraceDisconnect (std::string name, std::string context, const CallbackBase &cb) |
bool | TraceDisconnectWithoutContext (std::string name, const CallbackBase &cb) |
Static Public Member Functions | |
static TypeId | GetTypeId (void) |
Static Public Member Functions inherited from ns3::Channel | |
static TypeId | GetTypeId (void) |
Static Public Member Functions inherited from ns3::Object | |
static TypeId | GetTypeId (void) |
Register this type. More... | |
Static Public Member Functions inherited from ns3::SimpleRefCount< Object, ObjectBase, ObjectDeleter > | |
static void | Cleanup (void) |
Noop. More... | |
Static Public Member Functions inherited from ns3::ObjectBase | |
static TypeId | GetTypeId (void) |
Get the type ID. More... | |
Protected Member Functions | |
Time | GetDelay (void) const |
Ptr< PointToPointNetDevice > | GetDestination (uint32_t i) const |
Ptr< PointToPointNetDevice > | GetSource (uint32_t i) const |
bool | IsInitialized (void) const |
Protected Member Functions inherited from ns3::Object | |
Object (const Object &o) | |
virtual void | DoDispose (void) |
This method is called by Object::Dispose or by the object's destructor, whichever comes first. More... | |
virtual void | DoInitialize (void) |
This method is called only once by Object::Initialize. More... | |
virtual void | NotifyNewAggregate (void) |
This method is invoked whenever two sets of objects are aggregated together. More... | |
Protected Member Functions inherited from ns3::ObjectBase | |
void | ConstructSelf (const AttributeConstructionList &attributes) |
virtual void | NotifyConstructionCompleted (void) |
This method is invoked once all member attributes have been initialized. More... | |
Private Types | |
enum | WireState { INITIALIZING, IDLE, TRANSMITTING, PROPAGATING } |
Private Attributes | |
Time | m_delay |
Link | m_link [N_DEVICES] |
int32_t | m_nDevices |
TracedCallback< Ptr< const Packet >, Ptr< NetDevice > , Ptr< NetDevice >, Time, Time > | m_txrxPointToPoint |
The trace source for the packet transmission animation events that the device can fire. More... | |
Static Private Attributes | |
static const int | N_DEVICES = 2 |
Simple Point To Point Channel.
This class represents a very simple point to point channel. Think full duplex RS-232 or RS-422 with null modem and no handshaking. There is no multi-drop capability on this channel – there can be a maximum of two point-to-point net devices connected.
There are two "wires" in the channel. The first device connected gets the [0] wire to transmit on. The second device gets the [1] wire. There is a state (IDLE, TRANSMITTING) associated with each wire.
ns3::PointToPointChannel is accessible through the following paths with Config::Set and Config::Connect:
Definition at line 47 of file point-to-point-channel.h.
|
private |
Enumerator | |
---|---|
INITIALIZING | |
IDLE | |
TRANSMITTING | |
PROPAGATING |
Definition at line 147 of file point-to-point-channel.h.
ns3::PointToPointChannel::PointToPointChannel | ( | ) |
Create a PointToPointChannel.
By default, you get a channel that has zero transmission delay.
Definition at line 53 of file point-to-point-channel.cc.
References NS_LOG_FUNCTION_NOARGS.
void ns3::PointToPointChannel::Attach | ( | Ptr< PointToPointNetDevice > | device | ) |
Attach a given netdevice to this channel.
device | pointer to the netdevice to attach to the channel |
Definition at line 63 of file point-to-point-channel.cc.
References IDLE, ns3::PointToPointChannel::Link::m_dst, m_link, m_nDevices, ns3::PointToPointChannel::Link::m_src, ns3::PointToPointChannel::Link::m_state, N_DEVICES, NS_ASSERT, NS_ASSERT_MSG, and NS_LOG_FUNCTION.
|
protected |
Definition at line 129 of file point-to-point-channel.cc.
References m_delay.
Referenced by ns3::PointToPointRemoteChannel::TransmitStart().
|
protected |
Definition at line 141 of file point-to-point-channel.cc.
References ns3::PointToPointChannel::Link::m_dst, and m_link.
Referenced by ns3::PointToPointRemoteChannel::TransmitStart().
i | index of NetDevice to retrieve |
This method must be implemented by subclasses.
Implements ns3::Channel.
Definition at line 122 of file point-to-point-channel.cc.
References GetPointToPointDevice(), and NS_LOG_FUNCTION_NOARGS.
|
virtual |
Get number of devices on this channel.
Implements ns3::Channel.
Definition at line 107 of file point-to-point-channel.cc.
References m_nDevices, and NS_LOG_FUNCTION_NOARGS.
Ptr< PointToPointNetDevice > ns3::PointToPointChannel::GetPointToPointDevice | ( | uint32_t | i | ) | const |
Definition at line 114 of file point-to-point-channel.cc.
References m_link, ns3::PointToPointChannel::Link::m_src, NS_ASSERT, and NS_LOG_FUNCTION_NOARGS.
Referenced by GetDevice().
|
protected |
Definition at line 135 of file point-to-point-channel.cc.
References m_link, and ns3::PointToPointChannel::Link::m_src.
Referenced by ns3::PointToPointRemoteChannel::TransmitStart().
|
static |
Definition at line 34 of file point-to-point-channel.cc.
References m_delay, m_txrxPointToPoint, ns3::MakeTimeChecker(), ns3::MakeTraceSourceAccessor(), and ns3::TypeId::SetParent().
|
protected |
Definition at line 147 of file point-to-point-channel.cc.
References INITIALIZING, m_link, and NS_ASSERT.
Referenced by ns3::PointToPointRemoteChannel::TransmitStart().
|
virtual |
Transmit a packet over this channel.
p | Packet to transmit |
src | Source PointToPointNetDevice |
txTime | Transmit time to apply |
Reimplemented in ns3::PointToPointRemoteChannel.
Definition at line 84 of file point-to-point-channel.cc.
References ns3::Packet::GetUid(), INITIALIZING, m_delay, ns3::PointToPointChannel::Link::m_dst, m_link, ns3::PointToPointChannel::Link::m_src, m_txrxPointToPoint, NS_ASSERT, NS_LOG_FUNCTION, NS_LOG_LOGIC, ns3::PointToPointNetDevice::Receive(), and ns3::Simulator::ScheduleWithContext().
|
private |
Definition at line 128 of file point-to-point-channel.h.
Referenced by GetDelay(), GetTypeId(), and TransmitStart().
Definition at line 164 of file point-to-point-channel.h.
Referenced by Attach(), GetDestination(), GetPointToPointDevice(), GetSource(), IsInitialized(), and TransmitStart().
|
private |
Definition at line 129 of file point-to-point-channel.h.
Referenced by Attach(), and GetNDevices().
|
private |
The trace source for the packet transmission animation events that the device can fire.
Arguments to the callback are the packet, transmitting net device, receiving net device, transmission time and packet receipt time.
Definition at line 145 of file point-to-point-channel.h.
Referenced by GetTypeId(), and TransmitStart().
|
staticprivate |
Definition at line 126 of file point-to-point-channel.h.
Referenced by Attach().