From bcb704366cb5e333a626c18c308c7e0448a8e69f Mon Sep 17 00:00:00 2001 From: toma Date: Wed, 25 Nov 2009 17:56:58 +0000 Subject: Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features. BUG:215923 git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdenetwork@1054174 283d02a7-25f6-0310-bc7c-ecb5cbfe19da --- kopete/protocols/oscar/liboscar/rateclassmanager.h | 83 ++++++++++++++++++++++ 1 file changed, 83 insertions(+) create mode 100644 kopete/protocols/oscar/liboscar/rateclassmanager.h (limited to 'kopete/protocols/oscar/liboscar/rateclassmanager.h') diff --git a/kopete/protocols/oscar/liboscar/rateclassmanager.h b/kopete/protocols/oscar/liboscar/rateclassmanager.h new file mode 100644 index 00000000..4b972ede --- /dev/null +++ b/kopete/protocols/oscar/liboscar/rateclassmanager.h @@ -0,0 +1,83 @@ +/* + Kopete Oscar Protocol + rateclassmanager.h - Manages the rates we get from the OSCAR server + + Copyright (c) 2004 Matt Rogers + + Kopete (c) 2002-2004 by the Kopete developers + + ************************************************************************* + * * + * This library 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 2 of the License, or (at your option) any later version. * + * * + ************************************************************************* +*/ + +#ifndef RATECLASSMANAGER_H +#define RATECLASSMANAGER_H + +#include +#include +#include +#include "oscartypes.h" + +class Transfer; +class SnacTransfer; +class RateClass; +class Connection; +class RateClassManagerPrivate; + + +class RateClassManager : public QObject +{ +Q_OBJECT +public: + RateClassManager( Connection* parent, const char* name = 0 ); + ~RateClassManager(); + + /** Reset the rate manager */ + void reset(); + + /** Tell the rate manager about the new class */ + void registerClass( RateClass* ); + + //! Check if we can send the packet right away + bool canSend( Transfer* t ) const; + + //! Queue a transfer for sending later + void queue( Transfer* t ); + + /** Get the list of rate classes */ + QValueList classList() const; + + /** Recalculate the rate levels for all the classes */ + void recalcRateLevels(); + + /** + * Find the rate class for the snac and + * calculate time until we get to initial level + * \return the time in milliseconds that we need to wait + */ + int timeToInitialLevel( Oscar::SNAC s ); + +public slots: + + void transferReady( Transfer* ); + +private: + + /** Find the rate class for the transfer */ + RateClass* findRateClass( SnacTransfer* st ) const; + +private: + + RateClassManagerPrivate* d; + +}; + +#endif + +//kate: tab-width 4; indent-mode csands; -- cgit v1.2.1