summaryrefslogtreecommitdiffstats
path: root/libktorrent/net/socketgroup.h
blob: ba080298c0a454e49965736c0114ff967dcc417d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
/***************************************************************************
 *   Copyright (C) 2005 by Joris Guisson                                   *
 *   joris.guisson@gmail.com                                               *
 *                                                                         *
 *   This program is free software; you can redistribute it and/or modify  *
 *   it under the terms of the GNU General Public License as published by  *
 *   the Free Software Foundation; either version 2 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 General Public License for more details.                          *
 *                                                                         *
 *   You should have received a copy of the GNU General Public License     *
 *   along with this program; if not, write to the                         *
 *   Free Software Foundation, Inc.,                                       *
 *   51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.          *
 ***************************************************************************/
#ifndef NETSOCKETGROUP_H
#define NETSOCKETGROUP_H
		
#include <list>
#include <util/constants.h>

namespace net
{
	using bt::Uint32;
	
	class BufferedSocket;

	/**
		@author Joris Guisson <joris.guisson@gmail.com>
	*/
	class SocketGroup
	{
		Uint32 limit;
		std::list<BufferedSocket*> sockets;
		bt::TimeStamp prev_run_time;
		Uint32 group_allowance;
	public:
		SocketGroup(Uint32 limit);
		virtual ~SocketGroup();
		
		/// Clear the lists of sockets
		void clear() {sockets.clear();}
		
		/// Add a socket for processing
		void add(BufferedSocket* s) {sockets.push_back(s);}

		/** 
			Process all the sockets in the vector for download.
			@param global_allowance How much the group can do, this will be updated, 0 means no limit
			@param now Current time
			@return true if we can download more data, false otherwise
		*/
		bool download(Uint32 & global_allowance,bt::TimeStamp now);
		
		/** 
			Process all the sockets in the vector for upload
			@param global_allowance How much the group can do, this will be updated, 0 means no limit
			@param now Current time
			@return true if we can upload more data, false otherwise
		 */
		bool upload(Uint32 & global_allowance,bt::TimeStamp now);
		
		/**
		 * Set the group limit in bytes per sec
		 * @param lim The limit
		 */
		void setLimit(Uint32 lim) {limit = lim;}
		
		/// Get the number of sockets 
		Uint32 numSockets() const {return sockets.size();}
		
		/**
		 * Calculate the allowance for this group
		 * @param now Current timestamp
		 */
		void calcAllowance(bt::TimeStamp now);
	private:
		void processUnlimited(bool up,bt::TimeStamp now);
		bool processLimited(bool up,bt::TimeStamp now,Uint32 & allowance);
		bool process(bool up,bt::TimeStamp now,Uint32 & global_allowance);
	};


}

#endif