JunkBox_Lib++ (for Windows) 1.10.1
Loading...
Searching...
No Matches
CRingBuffer Class Reference

#include <RingBuffer.h>

Public Member Functions

 CRingBuffer (void)
 
 CRingBuffer (int rsz, int dsz)
 
virtual ~CRingBuffer (void)
 
BOOL init (int ring_size, int data_size)
 
void free (void)
 
void clear (void)
 
void * get (void)
 
void * get (int pos)
 
void put (void *ptr)
 
void put (void *ptr, int pos)
 

Public Attributes

int state
 
BOOL enable
 

Protected Member Functions

void init_data (void)
 

Protected Attributes

void ** buf
 
int bufsz
 
int datasz
 
int spoint
 
int epoint
 
int datano
 

Detailed Description

Definition at line 16 of file RingBuffer.h.

Constructor & Destructor Documentation

◆ CRingBuffer() [1/2]

CRingBuffer ( void )
inline

Definition at line 19 of file RingBuffer.h.

19{ init_data();}
void init_data(void)

References CRingBuffer::init_data().

Here is the call graph for this function:

◆ CRingBuffer() [2/2]

CRingBuffer ( int rsz,
int dsz )
inline

Definition at line 20 of file RingBuffer.h.

20{ init(rsz, dsz);}
BOOL init(int ring_size, int data_size)

References CRingBuffer::init().

Here is the call graph for this function:

◆ ~CRingBuffer()

virtual ~CRingBuffer ( void )
inlinevirtual

Definition at line 21 of file RingBuffer.h.

21{ free();}

References CRingBuffer::free().

Here is the call graph for this function:

Member Function Documentation

◆ clear()

void clear ( void )

Definition at line 69 of file RingBuffer.cpp.

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}

References CRingBuffer::buf, CRingBuffer::bufsz, CRingBuffer::datano, CRingBuffer::datasz, CRingBuffer::epoint, CRingBuffer::spoint, and CRingBuffer::state.

◆ free()

void free ( void )

Definition at line 53 of file RingBuffer.cpp.

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}
bool isNull(void *p)
Definition common++.h:24

References CRingBuffer::buf, CRingBuffer::bufsz, CRingBuffer::free(), CRingBuffer::init_data(), and jbxl::isNull().

Referenced by CRingBuffer::free(), CRingBuffer::init(), and CRingBuffer::~CRingBuffer().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ get() [1/2]

void * get ( int pos)

Definition at line 98 of file RingBuffer.cpp.

99{
100 pos = epoint + pos;
101 if (pos<0) pos = bufsz + pos % bufsz;
102 else pos = pos % bufsz;
103
104 return buf[pos];
105}

References CRingBuffer::buf, CRingBuffer::bufsz, and CRingBuffer::epoint.

◆ get() [2/2]

void * get ( void )

Definition at line 83 of file RingBuffer.cpp.

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}

References CRingBuffer::buf, CRingBuffer::bufsz, CRingBuffer::datano, and CRingBuffer::spoint.

◆ init()

BOOL init ( int ring_size,
int data_size )

Definition at line 26 of file RingBuffer.cpp.

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}
#define TRUE
Definition common.h:226
#define FALSE
Definition common.h:223

References CRingBuffer::buf, CRingBuffer::bufsz, CRingBuffer::datasz, CRingBuffer::enable, FALSE, CRingBuffer::free(), CRingBuffer::init_data(), CRingBuffer::state, and TRUE.

Referenced by CRingBuffer::CRingBuffer().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ init_data()

void init_data ( void )
protected

Definition at line 13 of file RingBuffer.cpp.

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}

References CRingBuffer::buf, CRingBuffer::bufsz, CRingBuffer::datano, CRingBuffer::datasz, CRingBuffer::enable, CRingBuffer::epoint, FALSE, CRingBuffer::spoint, and CRingBuffer::state.

Referenced by CRingBuffer::CRingBuffer(), CRingBuffer::free(), and CRingBuffer::init().

Here is the caller graph for this function:

◆ put() [1/2]

void put ( void * ptr)

Definition at line 108 of file RingBuffer.cpp.

109{
110 memcpy(buf[epoint], ptr, datasz);
111 epoint++;
112 if (epoint==bufsz) epoint = 0;
113 if (datano<bufsz) datano++;
114
115 return;
116}

References CRingBuffer::buf, CRingBuffer::bufsz, CRingBuffer::datano, CRingBuffer::datasz, and CRingBuffer::epoint.

◆ put() [2/2]

void put ( void * ptr,
int pos )

Definition at line 119 of file RingBuffer.cpp.

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}

References CRingBuffer::buf, CRingBuffer::bufsz, CRingBuffer::datasz, and CRingBuffer::epoint.

Member Data Documentation

◆ buf

◆ bufsz

◆ datano

int datano
protected

◆ datasz

int datasz
protected

◆ enable

BOOL enable

Definition at line 34 of file RingBuffer.h.

Referenced by CRingBuffer::init(), and CRingBuffer::init_data().

◆ epoint

int epoint
protected

◆ spoint

int spoint
protected

Definition at line 28 of file RingBuffer.h.

Referenced by CRingBuffer::clear(), CRingBuffer::get(), and CRingBuffer::init_data().

◆ state

int state

Definition at line 33 of file RingBuffer.h.

Referenced by CRingBuffer::clear(), CRingBuffer::init(), and CRingBuffer::init_data().


The documentation for this class was generated from the following files: