/* * 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 ; }