Half duplex implementation of transducer object. More...
#include <uan-transducer-hd.h>
Public Member Functions | |
UanTransducerHd () | |
Constructor. More... | |
virtual | ~UanTransducerHd () |
Dummy destructor, see DoDispose. More... | |
virtual void | AddPhy (Ptr< UanPhy >) |
Attach a physical network layer above this transducer. More... | |
virtual void | Clear (void) |
Clears all pointer references. More... | |
virtual const ArrivalList & | GetArrivalList (void) const |
Get the list of overlapped (in time) packets at this transducer. More... | |
virtual Ptr< UanChannel > | GetChannel (void) const |
Get the attached channel. More... | |
virtual const UanPhyList & | GetPhyList (void) const |
Get the list of physical layer above this transducer. More... | |
virtual State | GetState (void) const |
Get the transducer state. More... | |
virtual bool | IsRx (void) const |
Is the state receiving (or available for reception)? More... | |
virtual bool | IsTx (void) const |
Is the state transmitting? More... | |
virtual void | Receive (Ptr< Packet > packet, double rxPowerDb, UanTxMode txMode, UanPdp pdp) |
Notify this object that a new packet has arrived at this nodes location. More... | |
virtual void | SetChannel (Ptr< UanChannel > chan) |
Attach this transducer to a channel. More... | |
virtual void | Transmit (Ptr< UanPhy > src, Ptr< Packet > packet, double txPowerDb, UanTxMode txMode) |
Transmit a packet from this transducer. More... | |
![]() | |
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... | |
![]() | |
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... | |
![]() | |
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) |
Register this type. More... | |
![]() | |
static TypeId | GetTypeId (void) |
Register this type. More... | |
![]() | |
static TypeId | GetTypeId (void) |
Register this type. More... | |
![]() | |
static void | Cleanup (void) |
Noop. More... | |
![]() | |
static TypeId | GetTypeId (void) |
Get the type ID. More... | |
Protected Member Functions | |
virtual void | DoDispose () |
This method is called by Object::Dispose or by the object's destructor, whichever comes first. More... | |
![]() | |
Object (const Object &o) | |
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... | |
![]() | |
void | ConstructSelf (const AttributeConstructionList &attributes) |
virtual void | NotifyConstructionCompleted (void) |
This method is invoked once all member attributes have been initialized. More... | |
Private Member Functions | |
void | EndTx (void) |
Handle end of transmission event. More... | |
void | RemoveArrival (UanPacketArrival arrival) |
Remove an entry from the arrival list. More... | |
Private Attributes | |
ArrivalList | m_arrivalList |
List of arriving packets which overlap in time. More... | |
Ptr< UanChannel > | m_channel |
The attached channel. More... | |
bool | m_cleared |
Flab when we've been cleared. More... | |
EventId | m_endTxEvent |
Event scheduled for end of transmission. More... | |
Time | m_endTxTime |
Time at which transmission will be completed. More... | |
UanPhyList | m_phyList |
List of physical layers attached above this tranducer. More... | |
State | m_state |
Transducer state. More... | |
Additional Inherited Members | |
![]() | |
typedef std::list < UanPacketArrival > | ArrivalList |
List of arriving packets overlapping in time. More... | |
enum | State { TX, RX } |
Transducer state. More... | |
typedef std::list< Ptr< UanPhy > > | UanPhyList |
List of UanPhy objects. More... | |
Half duplex implementation of transducer object.
Doxygen introspection did not find any typical Config paths.
This class will only allow attached Phy's to receive packets if not in TX mode.
No Attributes are defined for this type.
No TraceSources are defined for this type.
Definition at line 36 of file uan-transducer-hd.h.
ns3::UanTransducerHd::UanTransducerHd | ( | ) |
Constructor.
Definition at line 36 of file uan-transducer-hd.cc.
|
virtual |
Dummy destructor, see DoDispose.
Definition at line 44 of file uan-transducer-hd.cc.
Attach a physical network layer above this transducer.
More than one physical layer may be attached.
phy | The physical layer. |
Implements ns3::UanTransducer.
Definition at line 212 of file uan-transducer-hd.cc.
References m_phyList.
|
virtual |
Clears all pointer references.
Implements ns3::UanTransducer.
Definition at line 49 of file uan-transducer-hd.cc.
References ns3::EventId::Cancel(), m_arrivalList, m_channel, m_cleared, m_endTxEvent, and m_phyList.
Referenced by DoDispose().
|
protectedvirtual |
This method is called by Object::Dispose or by the object's destructor, whichever comes first.
Subclasses are expected to implement their real destruction code in an overriden version of this method and chain up to their parent's implementation once they are done. i.e., for simplicity, the destructor of every subclass should be empty and its content should be moved to the associated DoDispose method.
It is safe to call GetObject from within this method.
Reimplemented from ns3::Object.
Definition at line 82 of file uan-transducer-hd.cc.
References Clear(), and ns3::Object::DoDispose().
|
private |
Handle end of transmission event.
Definition at line 193 of file uan-transducer-hd.cc.
References m_endTxTime, m_state, NS_ASSERT, ns3::UanTransducer::RX, ns3::Seconds(), and ns3::UanTransducer::TX.
Referenced by Transmit().
|
virtual |
Get the list of overlapped (in time) packets at this transducer.
Implements ns3::UanTransducer.
Definition at line 118 of file uan-transducer-hd.cc.
References m_arrivalList.
|
virtual |
Get the attached channel.
Implements ns3::UanTransducer.
Definition at line 207 of file uan-transducer-hd.cc.
References m_channel.
|
virtual |
Get the list of physical layer above this transducer.
Implements ns3::UanTransducer.
Definition at line 218 of file uan-transducer-hd.cc.
References m_phyList.
|
virtual |
Get the transducer state.
Implements ns3::UanTransducer.
Definition at line 98 of file uan-transducer-hd.cc.
References m_state.
|
static |
Register this type.
Definition at line 88 of file uan-transducer-hd.cc.
References ns3::TypeId::SetParent().
|
virtual |
Is the state receiving (or available for reception)?
Implements ns3::UanTransducer.
Definition at line 105 of file uan-transducer-hd.cc.
References m_state, and ns3::UanTransducer::RX.
|
virtual |
Is the state transmitting?
Implements ns3::UanTransducer.
Definition at line 111 of file uan-transducer-hd.cc.
References m_state, and ns3::UanTransducer::TX.
|
virtual |
Notify this object that a new packet has arrived at this nodes location.
packet | Packet arriving. |
rxPowerDb | Signal power in dB of arriving packet. |
txMode | Mode arriving packet is using. |
pdp | PDP of arriving signal. |
Implements ns3::UanTransducer.
Definition at line 124 of file uan-transducer-hd.cc.
References ns3::UanTxMode::GetDataRateBps(), ns3::Packet::GetSize(), m_arrivalList, m_phyList, m_state, ns3::Simulator::Now(), NS_LOG_DEBUG, RemoveArrival(), ns3::UanTransducer::RX, ns3::Simulator::Schedule(), and ns3::Seconds().
|
private |
Remove an entry from the arrival list.
arrival | The packet arrival to remove. |
Definition at line 224 of file uan-transducer-hd.cc.
References ns3::UanPacketArrival::GetPacket(), m_arrivalList, and m_phyList.
Referenced by Receive().
|
virtual |
Attach this transducer to a channel.
chan | The channel |
Implements ns3::UanTransducer.
Definition at line 200 of file uan-transducer-hd.cc.
References m_channel, and NS_LOG_DEBUG.
|
virtual |
Transmit a packet from this transducer.
src | Source PHY. |
packet | Packet to transmit. |
txPowerDb | Outgoing Tx power of packet. |
txMode | Mode to transmit packet with. |
Implements ns3::UanTransducer.
Definition at line 152 of file uan-transducer-hd.cc.
References EndTx(), ns3::UanTxMode::GetDataRateBps(), ns3::Packet::GetSize(), m_channel, m_endTxEvent, m_endTxTime, m_phyList, m_state, ns3::UanPhy::NotifyTxEnd(), ns3::Simulator::Now(), NS_LOG_DEBUG, ns3::Simulator::Remove(), ns3::Simulator::Schedule(), ns3::Seconds(), and ns3::UanTransducer::TX.
|
private |
List of arriving packets which overlap in time.
Definition at line 65 of file uan-transducer-hd.h.
Referenced by Clear(), GetArrivalList(), Receive(), and RemoveArrival().
|
private |
The attached channel.
Definition at line 67 of file uan-transducer-hd.h.
Referenced by Clear(), GetChannel(), SetChannel(), and Transmit().
|
private |
Flab when we've been cleared.
Definition at line 70 of file uan-transducer-hd.h.
Referenced by Clear().
|
private |
Event scheduled for end of transmission.
Definition at line 68 of file uan-transducer-hd.h.
Referenced by Clear(), and Transmit().
|
private |
Time at which transmission will be completed.
Definition at line 69 of file uan-transducer-hd.h.
Referenced by EndTx(), and Transmit().
|
private |
List of physical layers attached above this tranducer.
Definition at line 66 of file uan-transducer-hd.h.
Referenced by AddPhy(), Clear(), GetPhyList(), Receive(), RemoveArrival(), and Transmit().
|
private |
Transducer state.
Definition at line 64 of file uan-transducer-hd.h.
Referenced by EndTx(), GetState(), IsRx(), IsTx(), Receive(), and Transmit().