2024-12-01 19:35:24 +00:00
|
|
|
//| Copyright: (C) 2020-2024 Kevin Larke <contact AT larke DOT org>
|
|
|
|
//| License: GNU GPL version 3.0 or above. See the accompanying LICENSE file.
|
2020-04-19 01:24:42 +00:00
|
|
|
#ifndef cwSpScQueueTmpl_H
|
|
|
|
#define cwSpScQueueTmpl_H
|
|
|
|
|
|
|
|
namespace cw
|
|
|
|
{
|
|
|
|
|
|
|
|
template< typename T >
|
|
|
|
class spScQueueTmpl
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
spScQueueTmpl( unsigned eleN )
|
|
|
|
{
|
2020-04-19 17:01:21 +00:00
|
|
|
_aN = eleN;
|
|
|
|
_aV = mem::allocZ<T>(eleN);
|
|
|
|
_wi.store(0,std::memory_order_release);
|
|
|
|
_ri.store(0,std::memory_order_release);
|
2020-04-19 01:24:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
virtual ~spScQueueTmpl()
|
|
|
|
{
|
|
|
|
mem::release(_aV);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2020-04-19 19:17:11 +00:00
|
|
|
T* get()
|
2020-04-19 01:24:42 +00:00
|
|
|
{
|
|
|
|
unsigned ri = _ri.load( std::memory_order_acquire );
|
2020-04-19 17:01:21 +00:00
|
|
|
unsigned wi = _wi.load( std::memory_order_relaxed ); // _wi is written in this thread
|
2020-04-19 01:24:42 +00:00
|
|
|
|
|
|
|
// calc. the count of full elements
|
|
|
|
unsigned n = wi >= ri ? wi-ri : (_aN-ri) + wi;
|
|
|
|
|
|
|
|
// there must always be at least one empty element because
|
|
|
|
// wi can never be advanced to equal ri.
|
|
|
|
if( n >= _aN-1 )
|
2020-04-19 19:17:11 +00:00
|
|
|
return nullptr;
|
2020-04-19 01:24:42 +00:00
|
|
|
|
2020-04-19 19:17:11 +00:00
|
|
|
return _aV + wi;
|
|
|
|
}
|
|
|
|
|
|
|
|
void publish()
|
|
|
|
{
|
|
|
|
unsigned wi = _wi.load( std::memory_order_relaxed ); // _wi is written in this thread
|
|
|
|
|
2020-04-19 01:24:42 +00:00
|
|
|
wi = (wi+1) % _aN;
|
2020-04-19 17:01:21 +00:00
|
|
|
|
|
|
|
// advance the write position
|
2020-04-19 01:24:42 +00:00
|
|
|
_wi.store( wi, std::memory_order_release );
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
T* pop()
|
|
|
|
{
|
|
|
|
unsigned ri = _ri.load( std::memory_order_relaxed );
|
|
|
|
unsigned wi = _wi.load( std::memory_order_acquire );
|
|
|
|
|
|
|
|
unsigned n = wi >= ri ? wi-ri : (_aN-ri) + wi;
|
|
|
|
|
|
|
|
if( n == 0 )
|
|
|
|
return nullptr;
|
|
|
|
|
2020-04-19 17:01:21 +00:00
|
|
|
T* v = _aV + ri;
|
2020-04-19 01:24:42 +00:00
|
|
|
|
|
|
|
ri = (ri+1) % _aN;
|
|
|
|
|
|
|
|
_ri.store( ri, std::memory_order_release);
|
|
|
|
|
|
|
|
return v;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
private:
|
|
|
|
unsigned _aN = 0;
|
2020-04-19 17:01:21 +00:00
|
|
|
T* _aV = nullptr;
|
2020-04-19 01:24:42 +00:00
|
|
|
std::atomic<unsigned> _wi;
|
|
|
|
std::atomic<unsigned> _ri;
|
|
|
|
|
|
|
|
// Note: // _wi==_ri indicates an empty buffer.
|
|
|
|
// _wi may never be advanced such that it equals _ri, however
|
|
|
|
// _ri may be advanced such that it equals _wi.
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
rc_t testSpScQueueTmpl();
|
|
|
|
|
|
|
|
}
|
|
|
|
#endif
|