blob: 15d2234a6a0ecdd66d65131e45f71279ae3b034c (
plain) (
blame)
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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
|
// Copyright (c) 2000-2001 Brad Hughes <bhughes@trolltech.com>
//
// Use, modification and distribution is allowed without limitation,
// warranty, or liability of any kind.
//
#include "recycler.h"
#include "constants.h"
#include "buffer.h"
Recycler::Recycler ( unsigned int sz )
: add_index ( 0 ), done_index ( 0 ), current_count ( 0 )
{
buffer_count = ( sz / Buffer::size() );
if ( buffer_count < 1 )
{
buffer_count = 1;
}
buffers = new Buffer*[buffer_count];
for ( unsigned int i = 0; i < buffer_count; i ++ )
{
buffers[i] = new Buffer;
}
}
Recycler::~Recycler()
{
for ( unsigned int i = 0; i < buffer_count; i++ )
{
delete buffers[i];
buffers[i] = 0;
}
delete [] buffers;
}
bool Recycler::full() const
{
return current_count == buffer_count;
}
bool Recycler::empty() const
{
return current_count == 0;
}
int Recycler::available() const
{
return buffer_count - current_count;
}
int Recycler::used() const
{
return current_count;
}
Buffer *Recycler::get(unsigned long size)
{
if (full())
return 0;
if(size > Buffer::size() + buffers[add_index]->exceeding)
{
delete buffers[add_index]->data;
buffers[add_index]->data = new unsigned char[size];
buffers[add_index]->exceeding = size - Buffer::size();
//qDebug("new size = %d, index = %d", size, add_index);
}
return buffers[add_index];
}
void Recycler::add()
{
add_index = ++add_index % buffer_count;
current_count++;
}
Buffer *Recycler::next()
{
return buffers[done_index];
}
void Recycler::done()
{
done_index = ++done_index % buffer_count;
current_count--;
}
void Recycler::clear()
{
add_index = done_index = current_count = 0;
/*for ( unsigned int i = 0; i < buffer_count; i ++ )
{
if(buffers[i]->exceeding > 0)
{
delete buffers[i]->data;
buffers[i]->data = new unsigned char[Buffer::size()];
buffers[i]->exceeding = 0;
buffers[i]->nbytes = 0;
}
}*/
}
unsigned int Recycler::size() const
{
return buffer_count * Buffer::size();
}
|