JunkBox_Lib++ (for Windows)
1.10.1
Loading...
Searching...
No Matches
RingBuffer.cpp
Go to the documentation of this file.
1
7
#include "
RingBuffer.h
"
8
9
10
using namespace
jbxl
;
11
12
13
void
CRingBuffer::init_data
(
void
)
14
{
15
buf
= NULL;
16
bufsz
= 0;
17
datasz
= 0;
18
spoint
= 0;
19
epoint
= 0;
20
datano
= 0;
21
state
= 0;
22
enable
=
FALSE
;
23
}
24
25
26
BOOL
CRingBuffer::init
(
int
ring_size,
int
data_size)
27
{
28
init_data
();
29
30
buf
= (
void
**)malloc(ring_size*
sizeof
(
void
*));
31
if
(
buf
==NULL)
return
FALSE
;
32
memset(
buf
, 0, ring_size*
sizeof
(
void
*));
33
bufsz
= ring_size;
34
datasz
= data_size;
35
36
BOOL ret =
TRUE
;
37
for
(
int
i=0; i<
bufsz
; i++) {
38
buf
[i] = (
void
*)malloc(
datasz
);
39
if
(
buf
[i]==NULL) {
40
this->
free
();
41
ret =
FALSE
;
42
state
= -1;
43
break
;
44
}
45
memset(
buf
[i], 0,
datasz
);
46
}
47
48
if
(ret)
enable
=
TRUE
;
49
return
ret;
50
}
51
52
53
void
CRingBuffer::free
(
void
)
54
{
55
if
(!
isNull
(
buf
)) {
56
for
(
int
i=0; i<
bufsz
; i++) {
57
if
(!
isNull
(
buf
[i])) {
58
::free
(
buf
[i]);
59
}
60
}
61
::free
(
buf
);
62
}
63
init_data
();
64
65
return
;
66
}
67
68
69
void
CRingBuffer::clear
(
void
)
70
{
71
for
(
int
i=0; i<
bufsz
; i++) {
72
memset(
buf
[i], 0,
datasz
);
73
}
74
spoint
= 0;
75
epoint
= 0;
76
datano
= 0;
77
state
= 0;
78
79
return
;
80
}
81
82
83
void
*
CRingBuffer::get
(
void
)
84
{
85
void
* ptr = NULL;
86
87
if
(
datano
>0) {
88
ptr =
buf
[
spoint
];
89
spoint
++;
90
if
(
spoint
==
bufsz
)
spoint
= 0;
91
datano
--;
92
}
93
94
return
ptr;
95
}
96
97
98
void
*
CRingBuffer::get
(
int
pos)
99
{
100
pos =
epoint
+ pos;
101
if
(pos<0) pos =
bufsz
+ pos %
bufsz
;
102
else
pos = pos %
bufsz
;
103
104
return
buf
[pos];
105
}
106
107
108
void
CRingBuffer::put
(
void
* ptr)
109
{
110
memcpy(
buf
[
epoint
], ptr,
datasz
);
111
epoint
++;
112
if
(
epoint
==
bufsz
)
epoint
= 0;
113
if
(
datano
<
bufsz
)
datano
++;
114
115
return
;
116
}
117
118
119
void
CRingBuffer::put
(
void
* ptr,
int
pos)
120
{
121
pos =
epoint
+ pos;
122
if
(pos<0) pos =
bufsz
+ pos %
bufsz
;
123
else
pos = pos %
bufsz
;
124
125
memcpy(
buf
[pos], ptr,
datasz
);
126
127
return
;
128
}
129
RingBuffer.h
汎用リングバッファライブラリ ヘッダ
jbxl::CRingBuffer::bufsz
int bufsz
Definition
RingBuffer.h:26
jbxl::CRingBuffer::enable
BOOL enable
Definition
RingBuffer.h:34
jbxl::CRingBuffer::datasz
int datasz
Definition
RingBuffer.h:27
jbxl::CRingBuffer::init
BOOL init(int ring_size, int data_size)
Definition
RingBuffer.cpp:26
jbxl::CRingBuffer::datano
int datano
Definition
RingBuffer.h:30
jbxl::CRingBuffer::state
int state
Definition
RingBuffer.h:33
jbxl::CRingBuffer::buf
void ** buf
Definition
RingBuffer.h:24
jbxl::CRingBuffer::put
void put(void *ptr)
Definition
RingBuffer.cpp:108
jbxl::CRingBuffer::get
void * get(void)
Definition
RingBuffer.cpp:83
jbxl::CRingBuffer::free
void free(void)
Definition
RingBuffer.cpp:53
jbxl::CRingBuffer::init_data
void init_data(void)
Definition
RingBuffer.cpp:13
jbxl::CRingBuffer::spoint
int spoint
Definition
RingBuffer.h:28
jbxl::CRingBuffer::clear
void clear(void)
Definition
RingBuffer.cpp:69
jbxl::CRingBuffer::epoint
int epoint
Definition
RingBuffer.h:29
TRUE
#define TRUE
Definition
common.h:226
FALSE
#define FALSE
Definition
common.h:223
jbxl
Definition
Brep.h:29
jbxl::isNull
bool isNull(void *p)
Definition
common++.h:24
BasicLib
RingBuffer.cpp
Generated on Sat Oct 12 2024 19:42:08 for JunkBox_Lib++ (for Windows) by
1.11.0