/** * \file * \brief FifoQueue class header * * \author Copyright (C) 2014-2015 Kamil Szczygiel http://www.distortec.com http://www.freddiechopin.info * * \par License * This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not * distributed with this file, You can obtain one at http://mozilla.org/MPL/2.0/. */ #ifndef INCLUDE_DISTORTOS_FIFOQUEUE_HPP_ #define INCLUDE_DISTORTOS_FIFOQUEUE_HPP_ #include "distortos/internal/synchronization/FifoQueueBase.hpp" #include "distortos/internal/synchronization/BoundQueueFunctor.hpp" #include "distortos/internal/synchronization/CopyConstructQueueFunctor.hpp" #include "distortos/internal/synchronization/MoveConstructQueueFunctor.hpp" #include "distortos/internal/synchronization/SwapPopQueueFunctor.hpp" #include "distortos/internal/synchronization/SemaphoreWaitFunctor.hpp" #include "distortos/internal/synchronization/SemaphoreTryWaitFunctor.hpp" #include "distortos/internal/synchronization/SemaphoreTryWaitForFunctor.hpp" #include "distortos/internal/synchronization/SemaphoreTryWaitUntilFunctor.hpp" /// GCC 4.9 is needed for all FifoQueue::*emplace*() functions - earlier versions don't support parameter pack expansion /// in lambdas #define DISTORTOS_FIFOQUEUE_EMPLACE_SUPPORTED __GNUC_PREREQ(4, 9) namespace distortos { /** * \brief FifoQueue class is a simple FIFO queue for thread-thread, thread-interrupt or interrupt-interrupt * communication. It supports multiple readers and multiple writers. It is implemented as a wrapper for * internal::FifoQueueBase. * * \tparam T is the type of data in queue * * \ingroup queues */ template class FifoQueue { public: /// type of uninitialized storage for data using Storage = typename std::aligned_storage::type; /// unique_ptr (with deleter) to Storage[] using StorageUniquePointer = std::unique_ptr; /** * \brief FifoQueue's constructor * * \param [in] storageUniquePointer is a rvalue reference to StorageUniquePointer with storage for queue elements * (sufficiently large for \a maxElements, each sizeof(T) bytes long) and appropriate deleter * \param [in] maxElements is the number of elements in storage array */ FifoQueue(StorageUniquePointer&& storageUniquePointer, const size_t maxElements) : fifoQueueBase_{{storageUniquePointer.release(), storageUniquePointer.get_deleter()}, sizeof(T), maxElements} { } /** * \brief FifoQueue's destructor * * Pops all remaining elements from the queue. */ ~FifoQueue(); #if DISTORTOS_FIFOQUEUE_EMPLACE_SUPPORTED == 1 || DOXYGEN == 1 /** * \brief Emplaces the element in the queue. * * \note This function requires GCC 4.9. * * \tparam Args are types of arguments for constructor of T * * \param [in] args are arguments for constructor of T * * \return zero if element was emplaced successfully, error code otherwise: * - error codes returned by Semaphore::wait(); * - error codes returned by Semaphore::post(); */ template int emplace(Args&&... args) { const internal::SemaphoreWaitFunctor semaphoreWaitFunctor; return emplaceInternal(semaphoreWaitFunctor, std::forward(args)...); } #endif // DISTORTOS_FIFOQUEUE_EMPLACE_SUPPORTED == 1 || DOXYGEN == 1 /** * \brief Pops the oldest (first) element from the queue. * * \param [out] value is a reference to object that will be used to return popped value, its contents are swapped * with the value in the queue's storage and destructed when no longer needed * * \return zero if element was popped successfully, error code otherwise: * - error codes returned by Semaphore::wait(); * - error codes returned by Semaphore::post(); */ int pop(T& value) { const internal::SemaphoreWaitFunctor semaphoreWaitFunctor; return popInternal(semaphoreWaitFunctor, value); } /** * \brief Pushes the element to the queue. * * \param [in] value is a reference to object that will be pushed, value in queue's storage is copy-constructed * * \return zero if element was pushed successfully, error code otherwise: * - error codes returned by Semaphore::wait(); * - error codes returned by Semaphore::post(); */ int push(const T& value) { const internal::SemaphoreWaitFunctor semaphoreWaitFunctor; return pushInternal(semaphoreWaitFunctor, value); } /** * \brief Pushes the element to the queue. * * \param [in] value is a rvalue reference to object that will be pushed, value in queue's storage is * move-constructed * * \return zero if element was pushed successfully, error code otherwise: * - error codes returned by Semaphore::wait(); * - error codes returned by Semaphore::post(); */ int push(T&& value) { const internal::SemaphoreWaitFunctor semaphoreWaitFunctor; return pushInternal(semaphoreWaitFunctor, std::move(value)); } #if DISTORTOS_FIFOQUEUE_EMPLACE_SUPPORTED == 1 || DOXYGEN == 1 /** * \brief Tries to emplace the element in the queue. * * \note This function requires GCC 4.9. * * \tparam Args are types of arguments for constructor of T * * \param [in] args are arguments for constructor of T * * \return zero if element was emplaced successfully, error code otherwise: * - error codes returned by Semaphore::tryWait(); * - error codes returned by Semaphore::post(); */ template int tryEmplace(Args&&... args) { const internal::SemaphoreTryWaitFunctor semaphoreTryWaitFunctor; return emplaceInternal(semaphoreTryWaitFunctor, std::forward(args)...); } /** * \brief Tries to emplace the element in the queue for a given duration of time. * * \note This function requires GCC 4.9. * * \tparam Args are types of arguments for constructor of T * * \param [in] duration is the duration after which the wait will be terminated without emplacing the element * \param [in] args are arguments for constructor of T * * \return zero if element was emplaced successfully, error code otherwise: * - error codes returned by Semaphore::tryWaitFor(); * - error codes returned by Semaphore::post(); */ template int tryEmplaceFor(const TickClock::duration duration, Args&&... args) { const internal::SemaphoreTryWaitForFunctor semaphoreTryWaitForFunctor {duration}; return emplaceInternal(semaphoreTryWaitForFunctor, std::forward(args)...); } /** * \brief Tries to emplace the element in the queue for a given duration of time. * * Template variant of FifoQueue::tryEmplaceFor(TickClock::duration, Args&&...). * * \note This function requires GCC 4.9. * * \tparam Rep is type of tick counter * \tparam Period is std::ratio type representing the tick period of the clock, in seconds * \tparam Args are types of arguments for constructor of T * * \param [in] duration is the duration after which the wait will be terminated without emplacing the element * \param [in] args are arguments for constructor of T * * \return zero if element was emplaced successfully, error code otherwise: * - error codes returned by Semaphore::tryWaitFor(); * - error codes returned by Semaphore::post(); */ template int tryEmplaceFor(const std::chrono::duration duration, Args&&... args) { return tryEmplaceFor(std::chrono::duration_cast(duration), std::forward(args)...); } /** * \brief Tries to emplace the element in the queue until a given time point. * * \note This function requires GCC 4.9. * * \tparam Args are types of arguments for constructor of T * * \param [in] timePoint is the time point at which the call will be terminated without emplacing the element * \param [in] args are arguments for constructor of T * * \return zero if element was emplaced successfully, error code otherwise: * - error codes returned by Semaphore::tryWaitUntil(); * - error codes returned by Semaphore::post(); */ template int tryEmplaceUntil(const TickClock::time_point timePoint, Args&&... args) { const internal::SemaphoreTryWaitUntilFunctor semaphoreTryWaitUntilFunctor {timePoint}; return emplaceInternal(semaphoreTryWaitUntilFunctor, std::forward(args)...); } /** * \brief Tries to emplace the element in the queue until a given time point. * * Template variant of FifoQueue::tryEmplaceUntil(TickClock::time_point, Args&&...). * * \note This function requires GCC 4.9. * * \tparam Duration is a std::chrono::duration type used to measure duration * \tparam Args are types of arguments for constructor of T * * \param [in] timePoint is the time point at which the call will be terminated without emplacing the element * \param [in] args are arguments for constructor of T * * \return zero if element was emplaced successfully, error code otherwise: * - error codes returned by Semaphore::tryWaitUntil(); * - error codes returned by Semaphore::post(); */ template int tryEmplaceUntil(const std::chrono::time_point timePoint, Args&&... args) { return tryEmplaceUntil(std::chrono::time_point_cast(timePoint), std::forward(args)...); } #endif // DISTORTOS_FIFOQUEUE_EMPLACE_SUPPORTED == 1 || DOXYGEN == 1 /** * \brief Tries to pop the oldest (first) element from the queue. * * \param [out] value is a reference to object that will be used to return popped value, its contents are swapped * with the value in the queue's storage and destructed when no longer needed * * \return zero if element was popped successfully, error code otherwise: * - error codes returned by Semaphore::tryWait(); * - error codes returned by Semaphore::post(); */ int tryPop(T& value) { internal::SemaphoreTryWaitFunctor semaphoreTryWaitFunctor; return popInternal(semaphoreTryWaitFunctor, value); } /** * \brief Tries to pop the oldest (first) element from the queue for a given duration of time. * * \param [in] duration is the duration after which the call will be terminated without popping the element * \param [out] value is a reference to object that will be used to return popped value, its contents are swapped * with the value in the queue's storage and destructed when no longer needed * * \return zero if element was popped successfully, error code otherwise: * - error codes returned by Semaphore::tryWaitFor(); * - error codes returned by Semaphore::post(); */ int tryPopFor(const TickClock::duration duration, T& value) { const internal::SemaphoreTryWaitForFunctor semaphoreTryWaitForFunctor {duration}; return popInternal(semaphoreTryWaitForFunctor, value); } /** * \brief Tries to pop the oldest (first) element from the queue for a given duration of time. * * Template variant of tryPopFor(TickClock::duration, T&). * * \tparam Rep is type of tick counter * \tparam Period is std::ratio type representing the tick period of the clock, in seconds * * \param [in] duration is the duration after which the call will be terminated without popping the element * \param [out] value is a reference to object that will be used to return popped value, its contents are swapped * with the value in the queue's storage and destructed when no longer needed * * \return zero if element was popped successfully, error code otherwise: * - error codes returned by Semaphore::tryWaitFor(); * - error codes returned by Semaphore::post(); */ template int tryPopFor(const std::chrono::duration duration, T& value) { return tryPopFor(std::chrono::duration_cast(duration), value); } /** * \brief Tries to pop the oldest (first) element from the queue until a given time point. * * \param [in] timePoint is the time point at which the call will be terminated without popping the element * \param [out] value is a reference to object that will be used to return popped value, its contents are swapped * with the value in the queue's storage and destructed when no longer needed * * \return zero if element was popped successfully, error code otherwise: * - error codes returned by Semaphore::tryWaitUntil(); * - error codes returned by Semaphore::post(); */ int tryPopUntil(const TickClock::time_point timePoint, T& value) { const internal::SemaphoreTryWaitUntilFunctor semaphoreTryWaitUntilFunctor {timePoint}; return popInternal(semaphoreTryWaitUntilFunctor, value); } /** * \brief Tries to pop the oldest (first) element from the queue until a given time point. * * Template variant of tryPopUntil(TickClock::time_point, T&). * * \tparam Duration is a std::chrono::duration type used to measure duration * * \param [in] timePoint is the time point at which the call will be terminated without popping the element * \param [out] value is a reference to object that will be used to return popped value, its contents are swapped * with the value in the queue's storage and destructed when no longer needed * * \return zero if element was popped successfully, error code otherwise: * - error codes returned by Semaphore::tryWaitUntil(); * - error codes returned by Semaphore::post(); */ template int tryPopUntil(const std::chrono::time_point timePoint, T& value) { return tryPopUntil(std::chrono::time_point_cast(timePoint), value); } /** * \brief Tries to push the element to the queue. * * \param [in] value is a reference to object that will be pushed, value in queue's storage is copy-constructed * * \return zero if element was pushed successfully, error code otherwise: * - error codes returned by Semaphore::tryWait(); * - error codes returned by Semaphore::post(); */ int tryPush(const T& value) { const internal::SemaphoreTryWaitFunctor semaphoreTryWaitFunctor; return pushInternal(semaphoreTryWaitFunctor, value); } /** * \brief Tries to push the element to the queue. * * \param [in] value is a rvalue reference to object that will be pushed, value in queue's storage is * move-constructed * * \return zero if element was pushed successfully, error code otherwise: * - error codes returned by Semaphore::tryWait(); * - error codes returned by Semaphore::post(); */ int tryPush(T&& value) { const internal::SemaphoreTryWaitFunctor semaphoreTryWaitFunctor; return pushInternal(semaphoreTryWaitFunctor, std::move(value)); } /** * \brief Tries to push the element to the queue for a given duration of time. * * \param [in] duration is the duration after which the wait will be terminated without pushing the element * \param [in] value is a reference to object that will be pushed, value in queue's storage is copy-constructed * * \return zero if element was pushed successfully, error code otherwise: * - error codes returned by Semaphore::tryWaitFor(); * - error codes returned by Semaphore::post(); */ int tryPushFor(const TickClock::duration duration, const T& value) { const internal::SemaphoreTryWaitForFunctor semaphoreTryWaitForFunctor {duration}; return pushInternal(semaphoreTryWaitForFunctor, value); } /** * \brief Tries to push the element to the queue for a given duration of time. * * Template variant of tryPushFor(TickClock::duration, const T&). * * \tparam Rep is type of tick counter * \tparam Period is std::ratio type representing the tick period of the clock, in seconds * * \param [in] duration is the duration after which the wait will be terminated without pushing the element * \param [in] value is a reference to object that will be pushed, value in queue's storage is copy-constructed * * \return zero if element was pushed successfully, error code otherwise: * - error codes returned by Semaphore::tryWaitFor(); * - error codes returned by Semaphore::post(); */ template int tryPushFor(const std::chrono::duration duration, const T& value) { return tryPushFor(std::chrono::duration_cast(duration), value); } /** * \brief Tries to push the element to the queue for a given duration of time. * * \param [in] duration is the duration after which the call will be terminated without pushing the element * \param [in] value is a rvalue reference to object that will be pushed, value in queue's storage is * move-constructed * * \return zero if element was pushed successfully, error code otherwise: * - error codes returned by Semaphore::tryWaitFor(); * - error codes returned by Semaphore::post(); */ int tryPushFor(const TickClock::duration duration, T&& value) { const internal::SemaphoreTryWaitForFunctor semaphoreTryWaitForFunctor {duration}; return pushInternal(semaphoreTryWaitForFunctor, std::move(value)); } /** * \brief Tries to push the element to the queue for a given duration of time. * * Template variant of tryPushFor(TickClock::duration, T&&). * * \tparam Rep is type of tick counter * \tparam Period is std::ratio type representing the tick period of the clock, in seconds * * \param [in] duration is the duration after which the call will be terminated without pushing the element * \param [in] value is a rvalue reference to object that will be pushed, value in queue's storage is * move-constructed * * \return zero if element was pushed successfully, error code otherwise: * - error codes returned by Semaphore::tryWaitFor(); * - error codes returned by Semaphore::post(); */ template int tryPushFor(const std::chrono::duration duration, T&& value) { return tryPushFor(std::chrono::duration_cast(duration), std::move(value)); } /** * \brief Tries to push the element to the queue until a given time point. * * \param [in] timePoint is the time point at which the call will be terminated without pushing the element * \param [in] value is a reference to object that will be pushed, value in queue's storage is copy-constructed * * \return zero if element was pushed successfully, error code otherwise: * - error codes returned by Semaphore::tryWaitUntil(); * - error codes returned by Semaphore::post(); */ int tryPushUntil(const TickClock::time_point timePoint, const T& value) { const internal::SemaphoreTryWaitUntilFunctor semaphoreTryWaitUntilFunctor {timePoint}; return pushInternal(semaphoreTryWaitUntilFunctor, value); } /** * \brief Tries to push the element to the queue until a given time point. * * Template variant of tryPushUntil(TickClock::time_point, const T&). * * \tparam Duration is a std::chrono::duration type used to measure duration * * \param [in] timePoint is the time point at which the call will be terminated without pushing the element * \param [in] value is a reference to object that will be pushed, value in queue's storage is copy-constructed * * \return zero if element was pushed successfully, error code otherwise: * - error codes returned by Semaphore::tryWaitUntil(); * - error codes returned by Semaphore::post(); */ template int tryPushUntil(const std::chrono::time_point timePoint, const T& value) { return tryPushUntil(std::chrono::time_point_cast(timePoint), value); } /** * \brief Tries to push the element to the queue until a given time point. * * \param [in] timePoint is the time point at which the call will be terminated without pushing the element * \param [in] value is a rvalue reference to object that will be pushed, value in queue's storage is * move-constructed * * \return zero if element was pushed successfully, error code otherwise: * - error codes returned by Semaphore::tryWaitUntil(); * - error codes returned by Semaphore::post(); */ int tryPushUntil(const TickClock::time_point timePoint, T&& value) { const internal::SemaphoreTryWaitUntilFunctor semaphoreTryWaitUntilFunctor {timePoint}; return pushInternal(semaphoreTryWaitUntilFunctor, std::move(value)); } /** * \brief Tries to push the element to the queue until a given time point. * * Template variant of tryPushUntil(TickClock::time_point, T&&). * * \tparam Duration is a std::chrono::duration type used to measure duration * * \param [in] timePoint is the time point at which the call will be terminated without pushing the element * \param [in] value is a rvalue reference to object that will be pushed, value in queue's storage is * move-constructed * * \return zero if element was pushed successfully, error code otherwise: * - error codes returned by Semaphore::tryWaitUntil(); * - error codes returned by Semaphore::post(); */ template int tryPushUntil(const std::chrono::time_point timePoint, T&& value) { return tryPushUntil(std::chrono::time_point_cast(timePoint), std::move(value)); } private: #if DISTORTOS_FIFOQUEUE_EMPLACE_SUPPORTED == 1 || DOXYGEN == 1 /** * \brief Emplaces the element in the queue. * * Internal version - builds the Functor object. * * \note This function requires GCC 4.9. * * \tparam Args are types of arguments for constructor of T * * \param [in] waitSemaphoreFunctor is a reference to SemaphoreFunctor which will be executed with \a pushSemaphore_ * \param [in] args are arguments for constructor of T * * \return zero if element was emplaced successfully, error code otherwise: * - error codes returned by \a waitSemaphoreFunctor's operator() call; * - error codes returned by Semaphore::post(); */ template int emplaceInternal(const internal::SemaphoreFunctor& waitSemaphoreFunctor, Args&&... args); #endif // DISTORTOS_FIFOQUEUE_EMPLACE_SUPPORTED == 1 || DOXYGEN == 1 /** * \brief Pops the oldest (first) element from the queue. * * Internal version - builds the Functor object. * * \param [in] waitSemaphoreFunctor is a reference to SemaphoreFunctor which will be executed with \a popSemaphore_ * \param [out] value is a reference to object that will be used to return popped value, its contents are swapped * with the value in the queue's storage and destructed when no longer needed * * \return zero if element was popped successfully, error code otherwise: * - error codes returned by \a waitSemaphoreFunctor's operator() call; * - error codes returned by Semaphore::post(); */ int popInternal(const internal::SemaphoreFunctor& waitSemaphoreFunctor, T& value); /** * \brief Pushes the element to the queue. * * Internal version - builds the Functor object. * * \param [in] waitSemaphoreFunctor is a reference to SemaphoreFunctor which will be executed with \a pushSemaphore_ * \param [in] value is a reference to object that will be pushed, value in queue's storage is copy-constructed * * \return zero if element was pushed successfully, error code otherwise: * - error codes returned by \a waitSemaphoreFunctor's operator() call; * - error codes returned by Semaphore::post(); */ int pushInternal(const internal::SemaphoreFunctor& waitSemaphoreFunctor, const T& value); /** * \brief Pushes the element to the queue. * * Internal version - builds the Functor object. * * \param [in] waitSemaphoreFunctor is a reference to SemaphoreFunctor which will be executed with \a pushSemaphore_ * \param [in] value is a rvalue reference to object that will be pushed, value in queue's storage is * move-constructed * * \return zero if element was pushed successfully, error code otherwise: * - error codes returned by \a waitSemaphoreFunctor's operator() call; * - error codes returned by Semaphore::post(); */ int pushInternal(const internal::SemaphoreFunctor& waitSemaphoreFunctor, T&& value); /// contained internal::FifoQueueBase object which implements whole functionality internal::FifoQueueBase fifoQueueBase_; }; template FifoQueue::~FifoQueue() { T value; while (tryPop(value) == 0); } #if DISTORTOS_FIFOQUEUE_EMPLACE_SUPPORTED == 1 || DOXYGEN == 1 template template int FifoQueue::emplaceInternal(const internal::SemaphoreFunctor& waitSemaphoreFunctor, Args&&... args) { const auto emplaceFunctor = internal::makeBoundQueueFunctor( [&args...](void* const storage) { new (storage) T{std::forward(args)...}; }); return fifoQueueBase_.push(waitSemaphoreFunctor, emplaceFunctor); } #endif // DISTORTOS_FIFOQUEUE_EMPLACE_SUPPORTED == 1 || DOXYGEN == 1 template int FifoQueue::popInternal(const internal::SemaphoreFunctor& waitSemaphoreFunctor, T& value) { const internal::SwapPopQueueFunctor swapPopQueueFunctor {value}; return fifoQueueBase_.pop(waitSemaphoreFunctor, swapPopQueueFunctor); } template int FifoQueue::pushInternal(const internal::SemaphoreFunctor& waitSemaphoreFunctor, const T& value) { const internal::CopyConstructQueueFunctor copyConstructQueueFunctor {value}; return fifoQueueBase_.push(waitSemaphoreFunctor, copyConstructQueueFunctor); } template int FifoQueue::pushInternal(const internal::SemaphoreFunctor& waitSemaphoreFunctor, T&& value) { const internal::MoveConstructQueueFunctor moveConstructQueueFunctor {std::move(value)}; return fifoQueueBase_.push(waitSemaphoreFunctor, moveConstructQueueFunctor); } } // namespace distortos #endif // INCLUDE_DISTORTOS_FIFOQUEUE_HPP_