1
0
Fork 0
OpenLCP/protocol/esta/dmx/universe.cpp

291 lines
6.6 KiB
C++

/*
universe.cpp
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.
*/
#include "universe.h"
namespace DMX {
/**
* @brief Universe::Universe
* @param timeout_period
*/
Universe::Universe(int timeout_period)
: null_start_data({0})
, rx_timeout_period_(timeout_period)
, status_(Status::DMX_NULL)
{
}
/**
* @brief Universe::~Universe
*/
Universe::~Universe()
{
}
/**
* @brief Universe::slot
* @param address
* @return
*/
uint8_t Universe::slot(const uint16_t address)
{
if (address == 0)
return 0;
if (address > null_start_data.size() - 1)
return 0;
null_start_mutex.lock();
uint8_t val = null_start_data[address];
null_start_mutex.unlock();
return val;
}
/**
* @brief Universe::rxRate Rate (in Hz) at which the universe is being recv'd.
* @return Hz
*
* Calculated as the rolling mean of (the number of frames in
* the last rx_timeout_peroid ms) / rx_timeout_period seconds.
*/
double Universe::rxRate()
{
rx_timeout_();
// updates per second
return rx_times_.size() / (rx_timeout_period_ / 1000.0);
}
/**
* @brief milliseconds since the last update
* @return
*/
long Universe::rxAge()
{
if (!last_seen_.time_since_epoch().count())
return -1; // universe has never been seen
auto now = std::chrono::system_clock::now();
auto elapsed = std::chrono::duration_cast<std::chrono::milliseconds>(now - last_seen_);
return elapsed.count();
}
/**
* @brief Universe::setData Accept new data from receiver
* @param data varaibly sized data, beginning with a start code.
*
* The only setData method used to establish rx rate.
*/
void Universe::setData(const std::vector<uint8_t>& data)
{
// no data?
if (data.empty())
return;
// Alternate Start Code
if (data.front() != E111_NULL_START)
return altSCdata(data);
// accept variable lenth input, but never more than the limit
const auto max_length = null_start_data.size();
const auto length = data.size() < max_length ? data.size() : max_length;
null_start_mutex.lock(); // take the lock
if (length < max_length)
null_start_data.fill(0); // wipe old data
std::copy_n(data.cbegin(), length, null_start_data.begin()); // copy new data
null_start_mutex.unlock(); // free the lock
rx_timeout_(true); // update rx times
doDataCallbacks(); // notify callbacks
}
/**
* @brief Universe::altSCdata
* @param data
*
* \attention re-impliment this method to rx custom alternate start code data.
*/
void Universe::altSCdata(const std::vector<uint8_t> & data)
{
switch (data.front())
{
case E111_ASC_TEXT_ASCII:
break;
case E111_ASC_TEST:
break;
case E111_ASC_TEXT_UTF8:
break;
case E111_ASC_MANUFACTURER:
break;
case E111_ASC_SIP:
break;
}
}
/**
* @brief Universe::status
* @return
*/
uint8_t Universe::status()
{
rx_timeout_();
return status_;
}
/**
* @brief Universe::setStatus
* @param val
*/
void Universe::setStatus(uint8_t val)
{
status_ = val;
}
/**
* @brief Universe::setValue
* @param address
* @param value
*/
void Universe::setValue(const uint16_t address, const uint8_t value)
{
if (address == 0)
return;
if (address > null_start_data.size() - 1)
return;
null_start_mutex.lock();
null_start_data[address] = value;
null_start_mutex.unlock();
setStatus(Status::DMX_ACTIVE);
last_seen_ = std::chrono::system_clock::now();
doDataCallbacks();
}
/**
* @brief Universe::setValue
* @param start
* @param footprint
* @param data
*/
void Universe::setValue(const uint16_t start, const uint16_t footprint,
const uint8_t* data)
{
if (start == 0)
return;
if (start + footprint > null_start_data.size() - 1)
return;
null_start_mutex.lock();
std::copy(data, data + footprint, null_start_data.begin() + start);
null_start_mutex.unlock();
setStatus(Status::DMX_ACTIVE);
last_seen_ = std::chrono::system_clock::now();
doDataCallbacks();
}
/**
* @brief Universe::onData
* @param cb
* @return
*/
std::shared_ptr<void> Universe::onData(const DataHandler cb)
{
// wrap the callback with a shared pointer
auto sp = std::make_shared<DataHandler>(std::move(cb));
// add callback to list (as a weak pointer)
callbacks_.push_back(sp);
// return token that caller must keep throughout it's scope
return sp;
}
/**
* @brief Universe::notifyCallers
*/
void Universe::doDataCallbacks()
{
for (auto it = callbacks_.begin(); it != callbacks_.end();)
{
if (auto sp = it->lock())
{ // if the caller is still holding the token
(*sp)(this);
++it;
}
else
{ // or remove the callback
it = callbacks_.erase(it);
}
}
}
/**
* @brief Universe::rx_timeout_
* @param add_now
*/
void Universe::rx_timeout_(bool add_now)
{
auto now = std::chrono::system_clock::now();
auto age = rxAge();
if (add_now)
{
setStatus(Status::DMX_ACTIVE);
last_seen_ = now;
rx_times_.push(now);
}
else if (age >= E111_DATA_LOSS_TIMEOUT)
// E1.11 DMX timeout period may be different the the rx_timeout_period
setStatus(Status::DMX_LOST);
auto elapsed = [] (auto& a, auto& b) {
return std::chrono::duration_cast<std::chrono::milliseconds>(a - b).count();
};
while (!rx_times_.empty())
{ // drop timestamps that are older than the timeout period
age = elapsed(now, rx_times_.front());
if (age < rx_timeout_period_)
break;
else
rx_times_.pop();
}
}
} // namespace DMX