and to remove elements in the middle of the fifo. These elements
do not free space, they are just marked removed. Space is only
freed from the front of the fifo.
dev/etherpkt.cc:
serialize the current slack
dev/etherpkt.hh:
add "slack" to the ethernet packet. It is to be used by any fifo that
the packet is currently in to account for extra space that the packet
may be occupying due to the fifo organization.
--HG--
extra : convert_revision :
8e7c541ba316a9a76495c54cc5f707f8fc65b6d5
PacketData::serialize(const string &base, ostream &os)
{
paramOut(os, base + ".length", length);
+ paramOut(os, base + ".slack", slack);
arrayParamOut(os, base + ".data", data, length);
}
const string §ion)
{
paramIn(cp, section, base + ".length", length);
+ paramIn(cp, section, base + ".slack", slack);
if (length)
arrayParamIn(cp, section, base + ".data", data, length);
}
class PacketData : public RefCounted
{
public:
+ /*
+ * Pointer to packet data will be deleted
+ */
uint8_t *data;
+
+ /*
+ * Length of the current packet
+ */
int length;
+ /*
+ * Extra space taken up by the packet in whatever data structure
+ * it is in.
+ *
+ * NOTE: This can only be use by *one* data structure at a time!
+ */
+ int slack;
+
public:
- PacketData() : data(NULL), length(0) { }
- explicit PacketData(size_t size) : data(new uint8_t[size]), length(0) { }
- PacketData(std::auto_ptr<uint8_t> d, int l)
- : data(d.release()), length(l) { }
+ PacketData() : data(NULL), length(0), slack(0) { }
+ explicit PacketData(size_t size)
+ : data(new uint8_t[size]), length(0), slack(0) { }
+ PacketData(std::auto_ptr<uint8_t> d, int l, int s = 0)
+ : data(d.release()), length(l), slack(s) { }
~PacketData() { if (data) delete [] data; }
public:
class Checkpoint;
class PacketFifo
{
+ public:
+ typedef std::list<PacketPtr> fifo_list;
+ typedef fifo_list::iterator iterator;
+
protected:
std::list<PacketPtr> fifo;
int _maxsize;
return _reserved;
}
+ iterator begin() { return fifo.begin(); }
+ iterator end() { return fifo.end(); }
+
+ PacketPtr front() { return fifo.front(); }
+
bool push(PacketPtr ptr)
{
+ assert(ptr->length);
assert(_reserved <= ptr->length);
+ assert(ptr->slack == 0);
if (avail() < ptr->length - _reserved)
return false;
return true;
}
- PacketPtr front() { return fifo.front(); }
-
void pop()
{
if (empty())
return;
- _size -= fifo.front()->length;
- fifo.front() = NULL;
+ PacketPtr &packet = fifo.front();
+ _size -= packet->length;
+ _size -= packet->slack;
+ packet->slack = 0;
+ packet = NULL;
fifo.pop_front();
}
void clear()
{
+ for (iterator i = begin(); i != end(); ++i)
+ (*i)->slack = 0;
fifo.clear();
_size = 0;
_reserved = 0;
}
+ void remove(iterator i)
+ {
+ PacketPtr &packet = *i;
+ if (i != fifo.begin()) {
+ --i;
+ (*i)->slack += packet->length;
+ } else {
+ _size -= packet->length;
+ _size -= packet->slack;
+ }
+
+ packet->slack = 0;
+ packet = NULL;
+ fifo.erase(i);
+ }
+
/**
* Serialization stuff
*/