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 () | |
Constructor. More... | |
virtual | ~Object () |
Destructor. More... | |
void | AggregateObject (Ptr< Object > other) |
Aggregate two Objects together. More... | |
void | Dispose (void) |
Dispose of this Object. More... | |
AggregateIterator | GetAggregateIterator (void) const |
Get an iterator to the Objects aggregated to this one. More... | |
virtual TypeId | GetInstanceTypeId (void) const |
Implement the GetInstanceTypeId method defined in ObjectBase. More... | |
template<typename T > | |
Ptr< T > | GetObject (void) const |
Get a pointer to the requested aggregated Object. More... | |
template<typename T > | |
Ptr< T > | GetObject (TypeId tid) const |
Get a pointer to the requested aggregated Object by TypeId. More... | |
void | Initialize (void) |
Invoke DoInitialize on all Objects aggregated to this one. More... | |
bool | IsInitialized (void) const |
Check if the object has been initialized. 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 |
Get the value of an attribute, raising fatal errors if unsuccessful. More... | |
bool | GetAttributeFailSafe (std::string name, AttributeValue &value) const |
Get the value of an attribute without raising erros. More... | |
void | SetAttribute (std::string name, const AttributeValue &value) |
Set a single attribute, raising fatal errors if unsuccessful. More... | |
bool | SetAttributeFailSafe (std::string name, const AttributeValue &value) |
Set a single attribute without raising errors. More... | |
bool | TraceConnect (std::string name, std::string context, const CallbackBase &cb) |
Connect a TraceSource to a Callback with a context. More... | |
bool | TraceConnectWithoutContext (std::string name, const CallbackBase &cb) |
Connect a TraceSource to a Callback without a context. More... | |
bool | TraceDisconnect (std::string name, std::string context, const CallbackBase &cb) |
Disconnect from a TraceSource a Callback previously connected with a context. More... | |
bool | TraceDisconnectWithoutContext (std::string name, const CallbackBase &cb) |
Disconnect from a TraceSource a Callback previously connected without a context. More... | |
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 () |
Destructor implementation. More... | |
![]() | |
Object (const Object &o) | |
Copy an Object. More... | |
virtual void | DoInitialize (void) |
Initialize() implementation. More... | |
virtual void | NotifyNewAggregate (void) |
Notify all Objects aggregated to this one of a new Object being aggregated. More... | |
![]() | |
void | ConstructSelf (const AttributeConstructionList &attributes) |
Complete construction of ObjectBase; invoked by derived classes. More... | |
virtual void | NotifyConstructionCompleted (void) |
Notifier called once the ObjectBase is fully constructed. 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... | |
![]() | |
static TypeId | GetObjectIid (void) |
Ensure the TypeId for ObjectBase gets fully configured to anchor the inheritance tree properly. More... | |
Half duplex implementation of transducer object.
This class will only allow attached Phy's to receive packets if not in TX mode.
ns3::UanTransducerHd is accessible through the following paths with Config::Set and Config::Connect:
No Attributes are defined for this type.
No TraceSources are defined for this type.
Size of this type is 112 bytes (on a 64-bit architecture).
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 213 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 |
Destructor implementation.
This method is called by 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 194 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 119 of file uan-transducer-hd.cc.
References m_arrivalList.
|
virtual |
Get the attached channel.
Implements ns3::UanTransducer.
Definition at line 208 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 219 of file uan-transducer-hd.cc.
References m_phyList.
|
virtual |
Get the transducer state.
Implements ns3::UanTransducer.
Definition at line 99 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 106 of file uan-transducer-hd.cc.
References m_state, and ns3::UanTransducer::RX.
|
virtual |
Is the state transmitting?
Implements ns3::UanTransducer.
Definition at line 112 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 125 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 225 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 201 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 153 of file uan-transducer-hd.cc.
References EndTx(), ns3::UanTxMode::GetDataRateBps(), ns3::Packet::GetSize(), m_channel, m_endTxEvent, m_endTxTime, m_phyList, m_state, max, 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().