mirror of
https://github.com/RetroShare/RetroShare.git
synced 2024-10-01 02:35:48 -04:00
8d070bb030
git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@5249 b45a01b8-16f6-495d-af2f-9b41ad6348cc
71 lines
1.8 KiB
C++
71 lines
1.8 KiB
C++
/*
|
|
* libretroshare/src/pqi pqistreamer.h
|
|
*
|
|
* 3P/PQI network interface for RetroShare.
|
|
*
|
|
* Copyright 2012-2012 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 "retroshare@lunamutt.com".
|
|
*
|
|
*/
|
|
|
|
#include "pqiqosstreamer.h"
|
|
|
|
pqiQoSstreamer::pqiQoSstreamer(RsSerialiser *rss, std::string peerid, BinInterface *bio_in, int bio_flagsin)
|
|
: pqistreamer(rss,peerid,bio_in,bio_flagsin), pqiQoS(PQI_QOS_STREAMER_MAX_LEVELS, PQI_QOS_STREAMER_ALPHA)
|
|
{
|
|
_total_item_size = 0 ;
|
|
_total_item_count = 0 ;
|
|
}
|
|
|
|
int pqiQoSstreamer::getQueueSize(bool in)
|
|
{
|
|
if(in)
|
|
return pqistreamer::getQueueSize(in) ;
|
|
else
|
|
return qos_queue_size() ;
|
|
}
|
|
|
|
void pqiQoSstreamer::locked_storeInOutputQueue(void *ptr,int priority)
|
|
{
|
|
_total_item_size += getRsItemSize(ptr) ;
|
|
++_total_item_count ;
|
|
|
|
pqiQoS::in_rsItem(ptr,priority) ;
|
|
}
|
|
|
|
void pqiQoSstreamer::locked_clear_out_queue()
|
|
{
|
|
pqiQoS::clear() ;
|
|
_total_item_size = 0 ;
|
|
_total_item_count = 0 ;
|
|
}
|
|
|
|
void *pqiQoSstreamer::locked_pop_out_data()
|
|
{
|
|
void *out = pqiQoS::out_rsItem() ;
|
|
|
|
if(out != NULL)
|
|
{
|
|
_total_item_size -= getRsItemSize(out) ;
|
|
--_total_item_count ;
|
|
}
|
|
|
|
return out ;
|
|
}
|
|
|