You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
-
- #ifndef SAFEQUEUE_H
- #define SAFEQUEUE_H
- #include <cstdlib>
- #include <semaphore.h>
-
- /**
- * C++ thread safe lockless queue
- * Based off of jack's ringbuffer*/
- template<class T>
- class SafeQueue
- {
- public:
- SafeQueue(size_t maxlen);
- ~SafeQueue();
-
- /**Return read size*/
- unsigned int size() const;
-
- /**Returns 0 for normal
- * Returns -1 on error*/
- int push(const T &in);
- int pop(T &out);
-
- //clears reading space
- void clear();
-
- private:
- unsigned int wSpace() const;
- unsigned int rSpace() const;
-
- //write space
- mutable sem_t w_space;
- //read space
- mutable sem_t r_space;
-
- //next writing spot
- size_t writePtr;
- //next reading spot
- size_t readPtr;
- const size_t bufSize;
- T *buffer;
- };
-
- #include "SafeQueue.cpp"
- #endif
|