2011-09-08 15:25:17 -04:00
|
|
|
/*
|
|
|
|
* libretroshare/src/pqi: pqiqos.h
|
|
|
|
*
|
|
|
|
* 3P/PQI network interface for RetroShare.
|
|
|
|
*
|
|
|
|
* Copyright 2004-2008 by Cyril Soler
|
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Library General Public
|
|
|
|
* License Version 2 as published by the Free Software Foundation.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Library General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Library General Public
|
|
|
|
* License along with this library; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
|
|
|
|
* USA.
|
|
|
|
*
|
|
|
|
* Please report all bugs and problems to "csoler@users.sourceforge.net"
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
// This class handles the prioritisation of RsItem, based on the
|
|
|
|
// priority level. The QoS algorithm must ensure that:
|
|
|
|
//
|
|
|
|
// - lower priority items get out with lower rate than high priority items
|
|
|
|
// - items of equal priority get out of the queue in the same order than they got in
|
|
|
|
// - items of level n+1 are output \alpha times more often than items of level n.
|
|
|
|
// \alpha is a constant that is not necessarily an integer, but strictly > 1.
|
|
|
|
// - the set of possible priority levels is finite, and pre-determined.
|
|
|
|
//
|
2012-06-23 08:10:41 -04:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <stdint.h>
|
2012-06-26 15:30:36 -04:00
|
|
|
#include <stdlib.h>
|
2011-09-08 15:25:17 -04:00
|
|
|
#include <vector>
|
|
|
|
#include <list>
|
|
|
|
|
|
|
|
class pqiQoS
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
pqiQoS(uint32_t max_levels,float alpha) ;
|
|
|
|
|
|
|
|
class ItemQueue
|
|
|
|
{
|
2014-10-31 17:24:42 -04:00
|
|
|
public:
|
|
|
|
ItemQueue()
|
|
|
|
{
|
|
|
|
_item_count =0 ;
|
|
|
|
}
|
2012-06-23 08:10:41 -04:00
|
|
|
void *pop()
|
2011-09-08 15:25:17 -04:00
|
|
|
{
|
|
|
|
if(_items.empty())
|
|
|
|
return NULL ;
|
|
|
|
|
2012-06-23 08:10:41 -04:00
|
|
|
void *item = _items.front() ;
|
2014-10-31 17:24:42 -04:00
|
|
|
_items.pop_front() ;
|
|
|
|
--_item_count ;
|
2011-09-08 15:25:17 -04:00
|
|
|
|
|
|
|
return item ;
|
|
|
|
}
|
|
|
|
|
2012-06-23 08:10:41 -04:00
|
|
|
void push(void *item)
|
2011-09-08 15:25:17 -04:00
|
|
|
{
|
2014-10-31 17:24:42 -04:00
|
|
|
_items.push_back(item) ;
|
|
|
|
++_item_count ;
|
|
|
|
}
|
|
|
|
|
|
|
|
uint32_t size() const { return _item_count ; }
|
2011-09-08 15:25:17 -04:00
|
|
|
|
|
|
|
float _threshold ;
|
|
|
|
float _counter ;
|
2014-10-31 17:24:42 -04:00
|
|
|
float _inc ;
|
|
|
|
uint32_t _item_count ;
|
2012-06-23 08:10:41 -04:00
|
|
|
std::list<void*> _items ;
|
2011-09-08 15:25:17 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
// This function pops items from the queue, y order of priority
|
|
|
|
//
|
2012-06-23 08:10:41 -04:00
|
|
|
void *out_rsItem() ;
|
2011-09-08 15:25:17 -04:00
|
|
|
|
|
|
|
// This function is used to queue items.
|
|
|
|
//
|
2012-06-23 08:10:41 -04:00
|
|
|
void in_rsItem(void *item,int priority) ;
|
2011-09-08 15:25:17 -04:00
|
|
|
|
|
|
|
void print() const ;
|
|
|
|
uint64_t qos_queue_size() const { return _nb_items ; }
|
|
|
|
|
2012-06-23 08:10:41 -04:00
|
|
|
// kills all waiting items.
|
|
|
|
void clear() ;
|
|
|
|
|
2014-10-31 17:24:42 -04:00
|
|
|
// get some stats about what's going on. service_packets will contain the number of
|
|
|
|
// packets per service, and queue_sizes will contain the size of the different priority queues.
|
|
|
|
|
|
|
|
int gatherStatistics(std::vector<uint32_t>& per_service_count,std::vector<uint32_t>& per_priority_count) const ;
|
|
|
|
|
2012-06-23 08:10:41 -04:00
|
|
|
void computeTotalItemSize() const ;
|
|
|
|
int debug_computeTotalItemSize() const ;
|
2011-09-08 15:25:17 -04:00
|
|
|
private:
|
|
|
|
// This vector stores the lists of items with equal priorities.
|
|
|
|
//
|
|
|
|
std::vector<ItemQueue> _item_queues ;
|
|
|
|
float _alpha ;
|
|
|
|
uint64_t _nb_items ;
|
|
|
|
};
|
|
|
|
|
|
|
|
|