A block of packet or message TLVs (PbbTlv). More...
#include "packetbb.h"
 Collaboration diagram for ns3::PbbTlvBlock:
 Collaboration diagram for ns3::PbbTlvBlock:| Public Types | |
| typedef std::list< Ptr< PbbTlv > >::const_iterator | ConstIterator | 
| PbbTlv container const iterator.  More... | |
| typedef std::list< Ptr< PbbTlv > >::iterator | Iterator | 
| PbbTlv container iterator.  More... | |
| Public Member Functions | |
| PbbTlvBlock (void) | |
| ~PbbTlvBlock (void) | |
| Ptr< PbbTlv > | Back (void) const | 
| Iterator | Begin (void) | 
| ConstIterator | Begin (void) const | 
| void | Clear (void) | 
| Removes all TLVs from this block.  More... | |
| void | Deserialize (Buffer::Iterator &start) | 
| Deserializes a block from the specified buffer.  More... | |
| bool | Empty (void) const | 
| Iterator | End (void) | 
| ConstIterator | End (void) const | 
| Iterator | Erase (Iterator position) | 
| Removes the TLV at the specified position.  More... | |
| Iterator | Erase (Iterator first, Iterator last) | 
| Removes all TLVs from [first, last) (includes first, not includes last).  More... | |
| Ptr< PbbTlv > | Front (void) const | 
| uint32_t | GetSerializedSize (void) const | 
| Iterator | Insert (Iterator position, const Ptr< PbbTlv > tlv) | 
| Inserts a TLV at the specified position in this block.  More... | |
| bool | operator!= (const PbbTlvBlock &other) const | 
| Inequality operator for PbbTlvBlock.  More... | |
| bool | operator== (const PbbTlvBlock &other) const | 
| Equality operator for PbbTlvBlock.  More... | |
| void | PopBack (void) | 
| Removes a TLV from the back of this block.  More... | |
| void | PopFront (void) | 
| Removes a TLV from the front of this block.  More... | |
| void | Print (std::ostream &os) const | 
| Pretty-prints the contents of this block.  More... | |
| void | Print (std::ostream &os, int level) const | 
| Pretty-prints the contents of this block, with specified indentation.  More... | |
| void | PushBack (Ptr< PbbTlv > tlv) | 
| Appends a TLV to the back of this block.  More... | |
| void | PushFront (Ptr< PbbTlv > tlv) | 
| Prepends a TLV to the front of this block.  More... | |
| void | Serialize (Buffer::Iterator &start) const | 
| Serializes this block into the specified buffer.  More... | |
| int | Size (void) const | 
| Private Attributes | |
| std::list< Ptr< PbbTlv > > | m_tlvList | 
| PbbTlv container.  More... | |
A block of packet or message TLVs (PbbTlv).
Acts similar to a C++ STL container. Should not be used for Address TLVs.
Definition at line 55 of file packetbb.h.
| typedef std::list< Ptr<PbbTlv> >::const_iterator ns3::PbbTlvBlock::ConstIterator | 
PbbTlv container const iterator.
Definition at line 61 of file packetbb.h.
| typedef std::list< Ptr<PbbTlv> >::iterator ns3::PbbTlvBlock::Iterator | 
PbbTlv container iterator.
Definition at line 59 of file packetbb.h.
| ns3::PbbTlvBlock::PbbTlvBlock | ( | void | ) | 
Definition at line 63 of file packetbb.cc.
References NS_LOG_FUNCTION.
| ns3::PbbTlvBlock::~PbbTlvBlock | ( | void | ) | 
Definition at line 69 of file packetbb.cc.
References Clear(), and NS_LOG_FUNCTION.
 Here is the call graph for this function:
 Here is the call graph for this function:Definition at line 125 of file packetbb.cc.
References m_tlvList, and NS_LOG_FUNCTION.
Referenced by ns3::PbbPacket::TlvBack(), and ns3::PbbMessage::TlvBack().
 Here is the caller graph for this function:
 Here is the caller graph for this function:| PbbTlvBlock::Iterator ns3::PbbTlvBlock::Begin | ( | void | ) | 
Definition at line 76 of file packetbb.cc.
References m_tlvList, and NS_LOG_FUNCTION.
Referenced by Clear(), GetSerializedSize(), operator==(), Print(), Serialize(), ns3::PbbPacket::TlvBegin(), and ns3::PbbMessage::TlvBegin().
 Here is the caller graph for this function:
 Here is the caller graph for this function:| PbbTlvBlock::ConstIterator ns3::PbbTlvBlock::Begin | ( | void | ) | const | 
Definition at line 83 of file packetbb.cc.
References m_tlvList, and NS_LOG_FUNCTION.
| void ns3::PbbTlvBlock::Clear | ( | void | ) | 
Removes all TLVs from this block.
Definition at line 181 of file packetbb.cc.
References Begin(), End(), m_tlvList, and NS_LOG_FUNCTION.
Referenced by ns3::PbbPacket::TlvClear(), ns3::PbbMessage::TlvClear(), and ~PbbTlvBlock().
 Here is the call graph for this function:
 Here is the call graph for this function: Here is the caller graph for this function:
 Here is the caller graph for this function:| void ns3::PbbTlvBlock::Deserialize | ( | Buffer::Iterator & | start | ) | 
Deserializes a block from the specified buffer.
| start | a reference to the point in a buffer to begin deserializing. | 
Users should not need to call this. Blocks will be deserialized by their containing packet.
Definition at line 228 of file packetbb.cc.
References NS_LOG_FUNCTION, PushBack(), and visualizer.core::start().
Referenced by ns3::PbbPacket::Deserialize(), and ns3::PbbMessage::Deserialize().
 Here is the call graph for this function:
 Here is the call graph for this function: Here is the caller graph for this function:
 Here is the caller graph for this function:| bool ns3::PbbTlvBlock::Empty | ( | void | ) | const | 
Definition at line 111 of file packetbb.cc.
References m_tlvList, and NS_LOG_FUNCTION.
Referenced by Serialize(), ns3::PbbPacket::TlvEmpty(), and ns3::PbbMessage::TlvEmpty().
 Here is the caller graph for this function:
 Here is the caller graph for this function:| PbbTlvBlock::Iterator ns3::PbbTlvBlock::End | ( | void | ) | 
Definition at line 90 of file packetbb.cc.
References m_tlvList, and NS_LOG_FUNCTION.
Referenced by Clear(), GetSerializedSize(), operator==(), Print(), Serialize(), ns3::PbbPacket::TlvEnd(), and ns3::PbbMessage::TlvEnd().
 Here is the caller graph for this function:
 Here is the caller graph for this function:| PbbTlvBlock::ConstIterator ns3::PbbTlvBlock::End | ( | void | ) | const | 
Definition at line 97 of file packetbb.cc.
References m_tlvList, and NS_LOG_FUNCTION.
| PbbTlvBlock::Iterator ns3::PbbTlvBlock::Erase | ( | PbbTlvBlock::Iterator | position | ) | 
Removes the TLV at the specified position.
| position | an Iterator pointing to the TLV to erase. | 
Definition at line 167 of file packetbb.cc.
References m_tlvList, and NS_LOG_FUNCTION.
Referenced by ns3::PbbPacket::Erase(), and ns3::PbbMessage::TlvErase().
 Here is the caller graph for this function:
 Here is the caller graph for this function:| PbbTlvBlock::Iterator ns3::PbbTlvBlock::Erase | ( | PbbTlvBlock::Iterator | first, | 
| PbbTlvBlock::Iterator | last | ||
| ) | 
Removes all TLVs from [first, last) (includes first, not includes last).
| first | an Iterator pointing to the first TLV to erase (inclusive). | 
| last | an Iterator pointing to the element past the last TLV to erase. | 
Definition at line 174 of file packetbb.cc.
References m_tlvList, and NS_LOG_FUNCTION.
Definition at line 118 of file packetbb.cc.
References m_tlvList, and NS_LOG_FUNCTION.
Referenced by ns3::PbbPacket::TlvFront(), and ns3::PbbMessage::TlvFront().
 Here is the caller graph for this function:
 Here is the caller graph for this function:| uint32_t ns3::PbbTlvBlock::GetSerializedSize | ( | void | ) | const | 
Definition at line 192 of file packetbb.cc.
References Begin(), End(), and NS_LOG_FUNCTION.
Referenced by ns3::PbbPacket::GetSerializedSize(), and ns3::PbbMessage::GetSerializedSize().
 Here is the call graph for this function:
 Here is the call graph for this function: Here is the caller graph for this function:
 Here is the caller graph for this function:| PbbTlvBlock::Iterator ns3::PbbTlvBlock::Insert | ( | PbbTlvBlock::Iterator | position, | 
| const Ptr< PbbTlv > | tlv | ||
| ) | 
Inserts a TLV at the specified position in this block.
| position | an Iterator pointing to the position in this block to insert the TLV. | 
| tlv | a smart pointer to the TLV to insert. | 
Definition at line 160 of file packetbb.cc.
References m_tlvList, and NS_LOG_FUNCTION.
| bool ns3::PbbTlvBlock::operator!= | ( | const PbbTlvBlock & | other | ) | const | 
Inequality operator for PbbTlvBlock.
| other | PbbTlvBlock to compare this one to | 
Definition at line 297 of file packetbb.cc.
| bool ns3::PbbTlvBlock::operator== | ( | const PbbTlvBlock & | other | ) | const | 
Equality operator for PbbTlvBlock.
| other | PbbTlvBlock to compare this one to | 
Definition at line 276 of file packetbb.cc.
References Begin(), End(), and Size().
 Here is the call graph for this function:
 Here is the call graph for this function:| void ns3::PbbTlvBlock::PopBack | ( | void | ) | 
Removes a TLV from the back of this block.
Definition at line 153 of file packetbb.cc.
References m_tlvList, and NS_LOG_FUNCTION.
Referenced by ns3::PbbPacket::TlvPopBack(), and ns3::PbbMessage::TlvPopBack().
 Here is the caller graph for this function:
 Here is the caller graph for this function:| void ns3::PbbTlvBlock::PopFront | ( | void | ) | 
Removes a TLV from the front of this block.
Definition at line 139 of file packetbb.cc.
References m_tlvList, and NS_LOG_FUNCTION.
Referenced by ns3::PbbPacket::TlvPopFront(), and ns3::PbbMessage::TlvPopFront().
 Here is the caller graph for this function:
 Here is the caller graph for this function:| void ns3::PbbTlvBlock::Print | ( | std::ostream & | os | ) | const | 
Pretty-prints the contents of this block.
| os | a stream object to print to. | 
Definition at line 246 of file packetbb.cc.
References NS_LOG_FUNCTION.
Referenced by ns3::PbbPacket::Print(), and ns3::PbbMessage::Print().
 Here is the caller graph for this function:
 Here is the caller graph for this function:| void ns3::PbbTlvBlock::Print | ( | std::ostream & | os, | 
| int | level | ||
| ) | const | 
Pretty-prints the contents of this block, with specified indentation.
| os | a stream object to print to. | 
| level | level of indentation. | 
This probably never needs to be called by users. This is used when recursively printing sub-objects.
Definition at line 253 of file packetbb.cc.
References Begin(), End(), NS_LOG_FUNCTION, and Size().
 Here is the call graph for this function:
 Here is the call graph for this function:Appends a TLV to the back of this block.
| tlv | a smart pointer to the TLV to append. | 
Definition at line 146 of file packetbb.cc.
References m_tlvList, and NS_LOG_FUNCTION.
Referenced by Deserialize(), ns3::PbbPacket::TlvPushBack(), and ns3::PbbMessage::TlvPushBack().
 Here is the caller graph for this function:
 Here is the caller graph for this function:Prepends a TLV to the front of this block.
| tlv | a smart pointer to the TLV to prepend. | 
Definition at line 132 of file packetbb.cc.
References m_tlvList, and NS_LOG_FUNCTION.
Referenced by ns3::PbbPacket::TlvPushFront(), and ns3::PbbMessage::TlvPushFront().
 Here is the caller graph for this function:
 Here is the caller graph for this function:| void ns3::PbbTlvBlock::Serialize | ( | Buffer::Iterator & | start | ) | const | 
Serializes this block into the specified buffer.
| start | a reference to the point in a buffer to begin serializing. | 
Users should not need to call this. Blocks will be serialized by their containing packet.
Definition at line 205 of file packetbb.cc.
References Begin(), Empty(), End(), NS_LOG_FUNCTION, visualizer.core::start(), and ns3::Buffer::Iterator::WriteHtonU16().
Referenced by ns3::PbbPacket::Serialize(), and ns3::PbbMessage::Serialize().
 Here is the call graph for this function:
 Here is the call graph for this function: Here is the caller graph for this function:
 Here is the caller graph for this function:| int ns3::PbbTlvBlock::Size | ( | void | ) | const | 
Definition at line 104 of file packetbb.cc.
References m_tlvList, and NS_LOG_FUNCTION.
Referenced by operator==(), Print(), ns3::PbbPacket::TlvSize(), and ns3::PbbMessage::TlvSize().
 Here is the caller graph for this function:
 Here is the caller graph for this function:PbbTlv container.
Definition at line 211 of file packetbb.h.
Referenced by Back(), Begin(), Clear(), Empty(), End(), Erase(), Front(), Insert(), PopBack(), PopFront(), PushBack(), PushFront(), and Size().