#pragma once #include #include #include #include #include #include #include "ThreadQueue.h" #include "Timer.h" struct map_string_less : public std::binary_function { bool operator()(const std::string& a,const std::string& b) const { return a.compare(b) < 0; } }; class ReferenceCounter { public: void setRefCount(int rc) { std::lock_guard < std::recursive_mutex > lock(m_mutex); refCount = rc; } void decRefCount() { std::lock_guard < std::recursive_mutex > lock(m_mutex); refCount--; } int getRefCount() { std::lock_guard < std::recursive_mutex > lock(m_mutex); return refCount; } // Access to the own mutex protecting the ReferenceCounter, i.e the monitor of the class std::recursive_mutex& getMonitor() const { return m_mutex; } protected: //this is a basic mutex for all ReferenceCounter derivatives operations INCLUDING the counter itself for consistency ! mutable std::recursive_mutex m_mutex; private: int refCount; }; #define REBUFFER_GC_LIMIT 100 template class ReBuffer { public: ReBuffer(std::string bufferId) : bufferId(bufferId) { } BufferType *getBuffer() { std::lock_guard < std::mutex > lock(m_mutex); BufferType* buf = nullptr; for (outputBuffersI = outputBuffers.begin(); outputBuffersI != outputBuffers.end(); outputBuffersI++) { if (buf == nullptr && (*outputBuffersI)->getRefCount() <= 0) { buf = (*outputBuffersI); buf->setRefCount(0); } else if ((*outputBuffersI)->getRefCount() <= 0) { (*outputBuffersI)->decRefCount(); } } if (buf != nullptr) { if (outputBuffers.back()->getRefCount() < -REBUFFER_GC_LIMIT) { BufferType *ref = outputBuffers.back(); outputBuffers.pop_back(); delete ref; } return buf; } #define REBUFFER_WARNING_THRESHOLD 100 if (outputBuffers.size() > REBUFFER_WARNING_THRESHOLD) { std::cout << "Warning: ReBuffer '" << bufferId << "' count '" << outputBuffers.size() << "' exceeds threshold of '" << REBUFFER_WARNING_THRESHOLD << "'" << std::endl; } buf = new BufferType(); outputBuffers.push_back(buf); return buf; } void purge() { std::lock_guard < std::mutex > lock(m_mutex); while (!outputBuffers.empty()) { BufferType *ref = outputBuffers.front(); outputBuffers.pop_front(); delete ref; } } private: std::string bufferId; std::deque outputBuffers; typename std::deque::iterator outputBuffersI; mutable std::mutex m_mutex; }; class IOThread { public: IOThread(); virtual ~IOThread(); static void *pthread_helper(void *context); #ifdef __APPLE__ virtual void *threadMain(); #else virtual void threadMain(); #endif virtual void setup(); virtual void run(); virtual void terminate(); bool isTerminated(); virtual void onBindOutput(std::string name, ThreadQueueBase* threadQueue); virtual void onBindInput(std::string name, ThreadQueueBase* threadQueue); void setInputQueue(std::string qname, ThreadQueueBase *threadQueue); ThreadQueueBase *getInputQueue(std::string qname); void setOutputQueue(std::string qname, ThreadQueueBase *threadQueue); ThreadQueueBase *getOutputQueue(std::string qname); protected: std::map input_queues; std::map output_queues; std::atomic_bool terminated; Timer gTimer; };