/******************************************************************************* * libretroshare/src/services: p3bwctrl.h * * * * libretroshare: retroshare core library * * * * Copyright 2012 by Robert Fernie * * * * This program is free software: you can redistribute it and/or modify * * it under the terms of the GNU Lesser General Public License as * * published by the Free Software Foundation, either version 3 of the * * License, or (at your option) any later version. * * * * This program 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 Lesser General Public License for more details. * * * * You should have received a copy of the GNU Lesser General Public License * * along with this program. If not, see . * * * *******************************************************************************/ #ifndef SERVICE_RSBANDWIDTH_CONTROL_HEADER #define SERVICE_RSBANDWIDTH_CONTROL_HEADER #include #include #include #include "rsitems/rsbwctrlitems.h" #include "services/p3service.h" #include "pqi/pqiservicemonitor.h" #include "retroshare/rsconfig.h" // for datatypes. class pqipersongrp; // Extern is defined here - as this is bundled with rsconfig.h class p3BandwidthControl; extern p3BandwidthControl *rsBandwidthControl; class BwCtrlData { public: BwCtrlData() :mRateUpdateTs(0), mAllocated(0), mLastSend(0), mAllowedOut(0), mLastRecvd(0) { return; } /* Rates are floats in KB/s */ RsBwRates mRates; rstime_t mRateUpdateTs; /* these are integers (B/s) */ uint32_t mAllocated; rstime_t mLastSend; uint32_t mAllowedOut; rstime_t mLastRecvd; }; //!The RS bandwidth Control Service. /** * * Exchange packets to regulate p2p bandwidth. * * Sadly this has to be strongly integrated into pqi, with ref to pqipersongrp. */ class p3BandwidthControl: public p3Service, public pqiServiceMonitor { public: explicit p3BandwidthControl(pqipersongrp *pg); virtual RsServiceInfo getServiceInfo(); /***** overloaded from RsBanList *****/ /***** overloaded from p3Service *****/ /*! * This retrieves all BwCtrl items */ virtual int tick(); virtual int status(); /***** for RsConfig (not directly overloaded) ****/ virtual int getTotalBandwidthRates(RsConfigDataRates &rates); virtual int getAllBandwidthRates(std::map &ratemap); virtual int ExtractTrafficInfo(std::list &out_stats, std::list &in_stats); /*! * Interface stuff. */ /*************** pqiMonitor callback ***********************/ virtual void statusChange(const std::list &plist); /************* from p3Config *******************/ //virtual RsSerialiser *setupSerialiser() ; //virtual bool saveList(bool& cleanup, std::list&) ; //virtual void saveDone(); //virtual bool loadList(std::list& load) ; private: bool checkAvailableBandwidth(); bool processIncoming(); pqipersongrp *mPg; RsMutex mBwMtx; int printRateInfo_locked(std::ostream &out); rstime_t mLastCheck; RsBwRates mTotalRates; std::map mBwMap; }; #endif // SERVICE_RSBANDWIDTH_CONTROL_HEADER