26 #define USE_FREE_LIST 1
27 #define FREE_LIST_SIZE 1000
28 #define OFFSET_MAX (std::numeric_limits<int32_t>::max ())
66 for (ByteTagListDataFreeList::iterator i = begin ();
69 uint8_t *buffer = (uint8_t *)(*i);
137 return m_offsetStart;
151 : m_minStart (o.m_minStart),
152 m_maxEnd (o.m_maxEnd),
153 m_adjustment (o.m_adjustment),
195 uint32_t spaceNeeded =
m_used + bufferSize + 4 + 4 + 4 + 4;
269 return Iterator (0, 0, offsetStart, offsetEnd, 0);
291 if (item.
start >= appendOffset)
295 if (item.
end > appendOffset)
297 item.
end = appendOffset;
324 if (item.
end <= prependOffset)
328 if (item.
start < prependOffset)
330 item.
start = prependOffset;
353 if (
data->size >= size)
359 uint8_t *buffer = (uint8_t *)
data;
380 if (
data->count == 0)
385 uint8_t *buffer = (uint8_t *)
data;
401 uint8_t *buffer =
new uint8_t [size +
sizeof (
struct ByteTagListData) - 4];
418 if (
data->count == 0)
420 uint8_t *buffer = (uint8_t *)
data;
449 uint32_t tagWordSize = (item.
size+3) & (~3);
461 uint32_t* p = buffer;
464 uint32_t* numberOfTags = 0;
466 if (size + 4 <= maxSize)
486 if (size + hashSize <= maxSize)
498 if (size + 4 <= maxSize)
508 if (size + 4 <= maxSize)
518 if (size + 4 <= maxSize)
529 uint32_t tagWordSize = (item.
size+3) & (~3);
531 if (size + tagWordSize <= maxSize)
533 item.
buf.
Read (
reinterpret_cast<uint8_t *
> (p), item.
size);
535 p += tagWordSize / 4;
553 const uint32_t* p = buffer;
554 uint32_t sizeCheck = size - 4;
557 uint32_t numberTagData = *p++;
560 NS_LOG_INFO (
"Deserializing number of tags " << numberTagData);
562 for(uint32_t i = 0; i < numberTagData; ++i)
569 sizeCheck -= hashSize;
574 uint32_t bufferSize = *p++;
578 uint32_t
start = *p++;
587 buf.
Write (
reinterpret_cast<const uint8_t *
> (p), bufferSize);
590 uint32_t tagSizeBytes = (bufferSize+3) & (~3);
591 sizeCheck -= tagSizeBytes;
592 p += tagSizeBytes / 4;
599 return (sizeCheck != 0) ? 0 : 1;
An iterator for iterating through a byte tag list.
uint8_t * m_current
Current tag.
int32_t m_adjustment
Adjustment to byte tag offsets.
int32_t m_offsetEnd
Offset to the end of the tag from the virtual byte buffer.
uint32_t GetOffsetStart(void) const
Returns the offset from the start of the virtual byte buffer to the ByteTagList.
bool HasNext(void) const
Used to determine if the iterator is at the end of the byteTagList.
int32_t m_nextEnd
End of the next tag.
int32_t m_nextStart
Start of the next tag.
int32_t m_offsetStart
Offset to the start of the tag from the virtual byte buffer.
uint32_t m_nextSize
Size of the next tag.
Iterator(uint8_t *start, uint8_t *end, int32_t offsetStart, int32_t offsetEnd, int32_t adjustment)
Constructor.
uint32_t m_nextTid
TypeId of the next tag.
struct ByteTagList::Iterator::Item Next(void)
Returns the next Item from the ByteTagList.
void PrepareForNext(void)
Prepare the iterator for the next tag.
Container class for struct ByteTagListData.
~ByteTagListDataFreeList()
keep track of the byte tags stored in a packet.
uint32_t Deserialize(const uint32_t *buffer, uint32_t size)
Deserialize tag list from the provided buffer.
void AddAtEnd(int32_t appendOffset)
Make sure that all offsets are smaller than appendOffset which represents the location where new byte...
ByteTagList & operator=(const ByteTagList &o)
Assignment operator, deallocates current data and assigns value of passed in ByteTagList.
ByteTagList::Iterator Begin(int32_t offsetStart, int32_t offsetEnd) const
int32_t m_minStart
minimal start offset
uint32_t m_used
the number of used bytes in the buffer
struct ByteTagListData * Allocate(uint32_t size)
Allocate the memory for the ByteTagListData.
struct ByteTagListData * m_data
the ByteTagListData structure
void RemoveAll(void)
Removes all of the tags from the ByteTagList.
ByteTagList::Iterator BeginAll(void) const
Returns an iterator pointing to the very first tag in this list.
uint32_t GetSerializedSize(void) const
Returns number of bytes required for packet serialization.
int32_t m_adjustment
adjustment to byte tag offsets
TagBuffer Add(TypeId tid, uint32_t bufferSize, int32_t start, int32_t end)
uint32_t Serialize(uint32_t *buffer, uint32_t maxSize) const
Serialize the tag list into a byte buffer.
void AddAtStart(int32_t prependOffset)
Make sure that all offsets are bigger than prependOffset which represents the location where new byte...
int32_t m_maxEnd
maximal end offset
void Deallocate(struct ByteTagListData *data)
Deallocates a ByteTagListData.
void Read(uint8_t *buffer, uint32_t size)
TAG_BUFFER_INLINE uint32_t ReadU32(void)
TAG_BUFFER_INLINE void WriteU32(uint32_t v)
void Write(const uint8_t *buffer, uint32_t size)
void CopyFrom(TagBuffer o)
Copy the nternal structure of another TagBuffer.
a unique identifier for an interface.
uint16_t GetUid(void) const
Get the internal id of this TypeId.
hash_t GetHash(void) const
Get the hash.
static TypeId LookupByHash(hash_t hash)
Get a TypeId by hash.
uint32_t hash_t
Type of hash values.
#define NS_ASSERT(condition)
At runtime, in debugging builds, if this condition is not true, the program prints the source file,...
#define NS_LOG_COMPONENT_DEFINE(name)
Define a Log component with a specific name.
#define NS_LOG_FUNCTION_NOARGS()
Output the name of the function.
#define NS_LOG_FUNCTION(parameters)
If log level LOG_FUNCTION is enabled, this macro will output all input parameters separated by ",...
#define NS_LOG_INFO(msg)
Use NS_LOG to output a message of level LOG_INFO.
ns3::ByteTagListDataFreeList g_freeList
Container for struct ByteTagListData.
std::size_t hash(const BasicJsonType &j)
hash a JSON value
Every class exported by the ns3 library is enclosed in the ns3 namespace.
static uint32_t g_maxSize
maximum data size (used for allocation)
An item specifies an individual tag within a byte buffer.
TypeId tid
type of the tag
TagBuffer buf
the data for the tag as generated by Tag::Serialize
uint32_t size
size of tag data
int32_t end
offset to the end of the tag from the virtual byte buffer
Item(TagBuffer buf)
Constructs an item with the given TagBuffer.
int32_t start
offset to the start of the tag from the virtual byte buffer
Internal representation of the byte tags stored in a packet.
uint32_t dirty
number of bytes actually in use
uint32_t size
size of the data
uint32_t count
use counter (for smart deallocation)