summaryrefslogtreecommitdiffstats
path: root/libktorrent/net/circularbuffer.h
blob: 6d45723e42ce791f951bc9feb504ea2ac527c7df (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
/***************************************************************************
 *   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 NETCIRCULARBUFFER_H
#define NETCIRCULARBUFFER_H

#include <tqmutex.h> 
#include <util/constants.h>

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

	/**
	 * @author Joris Guisson <joris.guisson@gmail.com>
	 * 
	 * Simple circular buffer, to simulate a queue.
	 * Writes happen at the end, reads at the beginning.
	 * The buffer is protected by a mutex.
	 */
	class CircularBuffer
	{
		Uint8* buf;
		Uint32 max_size;
		Uint32 first; // index of first byte in the buffer
		Uint32 size; // number of bytes in use
		mutable TQMutex mutex;
	public:
		/**
		 * Create the buffer.
		 * @param max_size Maximum size of the buffer.
		 */
		CircularBuffer(Uint32 max_size);
		virtual ~CircularBuffer();

		/// How much capacity does the buffer have
		Uint32 capacity() const {return max_size;}
		
		/// How much free space is there 
		Uint32 freeSpace() const;
		
		
		/**
		 * Write a bunch of data at the back of the buffer.
		 * @param data Data to write
		 * @param size How many bytes to write
		 * @return The number of bytes written in the buffer
		 */
		Uint32 write(const Uint8* data,Uint32 size);
		
		/**
		 * Read from the buffer.
		 * @param data Buffer to store read data
		 * @param max_to_read Maximum amount of bytes to read
		 * @return The number of bytes read
		 */
		Uint32 read(Uint8* data,Uint32 max_to_read);
		
		/**
		 * Send the data in the buffer over the socket
		 * @param s THe socket
		 * @param max Maximum bytes to send
		 * @return The number of bytes written
		 */
		Uint32 send(BufferedSocket* s,Uint32 max);
	};

}

#endif