2016-06-25 22:08:17 +02:00
|
|
|
#include <leddevice/LedDevice.h>
|
2016-10-09 22:22:17 +02:00
|
|
|
#include <sstream>
|
2016-06-25 22:08:17 +02:00
|
|
|
|
2016-10-09 22:22:17 +02:00
|
|
|
//QT include
|
2016-09-10 19:08:08 +02:00
|
|
|
#include <QResource>
|
|
|
|
#include <QStringList>
|
|
|
|
#include <QDir>
|
2017-04-09 22:28:32 +02:00
|
|
|
#include <QDateTime>
|
|
|
|
|
2017-03-21 17:55:46 +01:00
|
|
|
#include "hyperion/Hyperion.h"
|
2017-10-12 11:55:03 +02:00
|
|
|
#include <utils/JsonUtils.h>
|
2016-09-10 19:08:08 +02:00
|
|
|
|
2016-08-23 20:07:12 +02:00
|
|
|
LedDeviceRegistry LedDevice::_ledDeviceMap = LedDeviceRegistry();
|
|
|
|
|
2016-06-25 22:08:17 +02:00
|
|
|
LedDevice::LedDevice()
|
2016-08-14 10:46:44 +02:00
|
|
|
: QObject()
|
2018-12-27 23:11:32 +01:00
|
|
|
, _log(Logger::getInstance("LEDDEVICE"))
|
2016-08-14 10:46:44 +02:00
|
|
|
, _ledBuffer(0)
|
2016-10-08 08:14:36 +02:00
|
|
|
, _deviceReady(true)
|
2016-11-29 23:14:15 +01:00
|
|
|
, _refresh_timer()
|
2016-12-02 12:07:24 +01:00
|
|
|
, _refresh_timer_interval(0)
|
2017-04-09 22:28:32 +02:00
|
|
|
, _last_write_time(QDateTime::currentMSecsSinceEpoch())
|
|
|
|
, _latchTime_ms(0)
|
2017-03-21 17:55:46 +01:00
|
|
|
, _componentRegistered(false)
|
|
|
|
, _enabled(true)
|
2016-06-25 22:08:17 +02:00
|
|
|
{
|
2016-09-10 19:08:08 +02:00
|
|
|
LedDevice::getLedDeviceSchemas();
|
2017-03-21 17:55:46 +01:00
|
|
|
qRegisterMetaType<hyperion::Components>("hyperion::Components");
|
2016-11-29 23:14:15 +01:00
|
|
|
|
|
|
|
// setup timer
|
|
|
|
_refresh_timer.setSingleShot(false);
|
|
|
|
_refresh_timer.setInterval(0);
|
|
|
|
connect(&_refresh_timer, SIGNAL(timeout()), this, SLOT(rewriteLeds()));
|
2016-06-25 22:08:17 +02:00
|
|
|
}
|
2016-07-13 11:18:12 +02:00
|
|
|
|
2016-08-23 20:07:12 +02:00
|
|
|
// dummy implemention
|
2016-07-13 11:18:12 +02:00
|
|
|
int LedDevice::open()
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
2016-08-23 20:07:12 +02:00
|
|
|
|
2017-03-21 17:55:46 +01:00
|
|
|
void LedDevice::setEnable(bool enable)
|
|
|
|
{
|
2017-09-16 00:18:17 +02:00
|
|
|
// emit signal when state changed
|
|
|
|
if (_enabled != enable)
|
|
|
|
{
|
|
|
|
emit enableStateChanged(enable);
|
|
|
|
}
|
|
|
|
|
|
|
|
// set black to leds when they should go off
|
2017-03-21 17:55:46 +01:00
|
|
|
if ( _enabled && !enable)
|
|
|
|
{
|
|
|
|
switchOff();
|
|
|
|
}
|
|
|
|
_enabled = enable;
|
|
|
|
}
|
|
|
|
|
2017-03-04 22:17:42 +01:00
|
|
|
int LedDevice::addToDeviceMap(QString name, LedDeviceCreateFuncType funcPtr)
|
2016-08-23 20:07:12 +02:00
|
|
|
{
|
|
|
|
_ledDeviceMap.emplace(name,funcPtr);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
const LedDeviceRegistry& LedDevice::getDeviceMap()
|
|
|
|
{
|
|
|
|
return _ledDeviceMap;
|
|
|
|
}
|
|
|
|
|
2017-03-04 22:17:42 +01:00
|
|
|
void LedDevice::setActiveDevice(QString dev)
|
2016-08-23 20:07:12 +02:00
|
|
|
{
|
|
|
|
_activeDevice = dev;
|
2016-09-10 19:08:08 +02:00
|
|
|
}
|
|
|
|
|
2016-12-02 12:07:24 +01:00
|
|
|
bool LedDevice::init(const QJsonObject &deviceConfig)
|
|
|
|
{
|
2018-12-27 23:11:32 +01:00
|
|
|
_colorOrder = deviceConfig["colorOrder"].toString("RGB");
|
|
|
|
_activeDevice = deviceConfig["type"].toString("file").toLower();
|
|
|
|
setLedCount(deviceConfig["currentLedCount"].toInt(1)); // property injected to reflect real led count
|
|
|
|
|
2017-04-09 22:28:32 +02:00
|
|
|
_latchTime_ms = deviceConfig["latchTime"].toInt(_latchTime_ms);
|
|
|
|
_refresh_timer.setInterval( deviceConfig["rewriteTime"].toInt( _refresh_timer_interval) );
|
|
|
|
if (_refresh_timer.interval() <= (signed)_latchTime_ms )
|
|
|
|
{
|
|
|
|
Warning(_log, "latchTime(%d) is bigger/equal rewriteTime(%d)", _refresh_timer.interval(), _latchTime_ms);
|
|
|
|
_refresh_timer.setInterval(_latchTime_ms+10);
|
|
|
|
}
|
|
|
|
|
2016-12-02 12:07:24 +01:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2016-10-09 22:22:17 +02:00
|
|
|
QJsonObject LedDevice::getLedDeviceSchemas()
|
2016-09-10 19:08:08 +02:00
|
|
|
{
|
|
|
|
// make sure the resources are loaded (they may be left out after static linking)
|
|
|
|
Q_INIT_RESOURCE(LedDeviceSchemas);
|
|
|
|
|
|
|
|
// read the json schema from the resource
|
|
|
|
QDir d(":/leddevices/");
|
|
|
|
QStringList l = d.entryList();
|
2016-10-09 22:22:17 +02:00
|
|
|
QJsonObject result, schemaJson;
|
2017-09-16 00:18:17 +02:00
|
|
|
|
2016-09-10 19:08:08 +02:00
|
|
|
for(QString &item : l)
|
|
|
|
{
|
2017-10-12 11:55:03 +02:00
|
|
|
QString schemaPath(QString(":/leddevices/")+item);
|
2016-10-09 22:22:17 +02:00
|
|
|
QString devName = item.remove("schema-");
|
2017-09-16 00:18:17 +02:00
|
|
|
|
2017-10-12 11:55:03 +02:00
|
|
|
QString data;
|
|
|
|
if(!FileUtils::readFile(schemaPath, data, Logger::getInstance("LedDevice")))
|
2016-09-10 19:08:08 +02:00
|
|
|
{
|
2016-10-09 22:22:17 +02:00
|
|
|
throw std::runtime_error("ERROR: Schema not found: " + item.toStdString());
|
2016-09-10 19:08:08 +02:00
|
|
|
}
|
2017-09-16 00:18:17 +02:00
|
|
|
|
2017-10-12 11:55:03 +02:00
|
|
|
QJsonObject schema;
|
|
|
|
if(!JsonUtils::parse(schemaPath, data, schema, Logger::getInstance("LedDevice")))
|
2016-10-09 22:22:17 +02:00
|
|
|
{
|
2017-10-12 11:55:03 +02:00
|
|
|
throw std::runtime_error("ERROR: Json schema wrong of file: " + item.toStdString());
|
2016-10-09 22:22:17 +02:00
|
|
|
}
|
2017-09-16 00:18:17 +02:00
|
|
|
|
2017-10-12 11:55:03 +02:00
|
|
|
schemaJson = schema;
|
2016-12-04 19:32:23 +01:00
|
|
|
schemaJson["title"] = QString("edt_dev_spec_header_title");
|
2017-09-16 00:18:17 +02:00
|
|
|
|
2016-10-09 22:22:17 +02:00
|
|
|
result[devName] = schemaJson;
|
2016-09-10 19:08:08 +02:00
|
|
|
}
|
2017-09-16 00:18:17 +02:00
|
|
|
|
2016-09-10 19:08:08 +02:00
|
|
|
return result;
|
|
|
|
}
|
2016-09-23 08:49:22 +02:00
|
|
|
|
|
|
|
int LedDevice::setLedValues(const std::vector<ColorRgb>& ledValues)
|
|
|
|
{
|
2017-04-09 22:28:32 +02:00
|
|
|
int retval = 0;
|
2017-03-21 17:55:46 +01:00
|
|
|
if (!_deviceReady || !_enabled)
|
2016-11-29 23:14:15 +01:00
|
|
|
return -1;
|
2017-03-21 17:55:46 +01:00
|
|
|
|
2016-11-29 23:14:15 +01:00
|
|
|
|
|
|
|
// restart the timer
|
|
|
|
if (_refresh_timer.interval() > 0)
|
|
|
|
{
|
|
|
|
_refresh_timer.start();
|
|
|
|
}
|
2017-04-09 22:28:32 +02:00
|
|
|
|
|
|
|
if (_latchTime_ms == 0 || QDateTime::currentMSecsSinceEpoch()-_last_write_time >= _latchTime_ms)
|
|
|
|
{
|
|
|
|
_ledValues = ledValues;
|
|
|
|
retval = write(ledValues);
|
|
|
|
_last_write_time = QDateTime::currentMSecsSinceEpoch();
|
2017-09-16 00:18:17 +02:00
|
|
|
}
|
2017-04-09 22:28:32 +02:00
|
|
|
//else Debug(_log, "latch %d", QDateTime::currentMSecsSinceEpoch()-_last_write_time);
|
|
|
|
|
|
|
|
return retval;
|
2016-09-23 08:49:22 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
int LedDevice::switchOff()
|
|
|
|
{
|
2016-10-08 08:14:36 +02:00
|
|
|
return _deviceReady ? write(std::vector<ColorRgb>(_ledCount, ColorRgb::BLACK )) : -1;
|
2016-09-23 08:49:22 +02:00
|
|
|
}
|
|
|
|
|
2017-09-16 00:18:17 +02:00
|
|
|
int LedDevice::switchOn()
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
2016-09-23 08:49:22 +02:00
|
|
|
|
2016-10-08 08:14:36 +02:00
|
|
|
void LedDevice::setLedCount(int ledCount)
|
|
|
|
{
|
|
|
|
_ledCount = ledCount;
|
|
|
|
_ledRGBCount = _ledCount * sizeof(ColorRgb);
|
|
|
|
_ledRGBWCount = _ledCount * sizeof(ColorRgbw);
|
|
|
|
}
|
2016-11-29 23:14:15 +01:00
|
|
|
|
|
|
|
int LedDevice::rewriteLeds()
|
|
|
|
{
|
2017-03-21 17:55:46 +01:00
|
|
|
return _enabled ? write(_ledValues) : -1;
|
2016-11-29 23:14:15 +01:00
|
|
|
}
|