/* universe.h Copyright (c) 2020 Kevin Matz (kevin.matz@gmail.com) Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ #pragma once #include "dmx.h" #include #include #include #include #include #include #include namespace DMX { using DimmerData = std::array; //!< Array of 513 bytes for basic data. /** * @brief The Universe class * * \cite DMX ANSI E1.11 describes may things about moving data over serial EIA-485-A * links. This class encapselates that data, regardless of how it was * transmitted. */ class Universe { public: explicit Universe (int timeout_period = E111_DATA_LOSS_TIMEOUT); virtual long age() const; virtual double rxRate(); virtual uint8_t status() const; virtual uint8_t slot(const uint16_t) const; virtual void setStatus(uint8_t); virtual void setValue(const uint16_t start, const uint16_t footprint, const uint8_t* const data); virtual void setValue(const uint16_t address, const uint8_t value); virtual void setData(const std::vector &); virtual void setAltData(const std::vector &); std::shared_ptr onDataChange(const std::function); std::shared_ptr onStatusChange(const std::function); /// Known states of the universe Status value enum Status : uint8_t { DMX_NULL = 0, //!< uninitialized DMX_ACTIVE = 1, //!< actively sending/receiving data DMX_LOST = 2, //!< no activity in E111_DATA_LOSS_TIMEOUT RX_TIMEOUT = 250 //!< no activity in the constructed timeout period }; protected: inline void doDataCallbacks() {do_callbacks_(cb_dataChange);} //!< Data Change Callbacks inline void doStatusCallbacks() {do_callbacks_(cb_statusChange);} //!< Status Change Callbacks void do_callbacks_(std::vector>>&); DimmerData null_start_data; //!< NULL Start Code data mutable std::shared_mutex mtx_data; //!< memory protect Null Start data mutable std::shared_mutex mtx_control; //!< thread protected access control std::chrono::system_clock::time_point last_updated_; //!< time of the latest update private: void rx_timeout_(bool add_now = false); const int rx_timeout_period_; uint8_t status_; //!< the operating state of the universe std::queue> rx_times_; std::vector>> cb_dataChange; std::vector>> cb_statusChange; }; } // namespace DMX