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-03-21 17:55:46 +01:00
|
|
|
#include "hyperion/Hyperion.h"
|
2016-09-10 19:08:08 +02:00
|
|
|
|
2016-08-23 20:07:12 +02:00
|
|
|
LedDeviceRegistry LedDevice::_ledDeviceMap = LedDeviceRegistry();
|
2017-03-04 22:17:42 +01:00
|
|
|
QString LedDevice::_activeDevice = "";
|
2016-10-08 08:14:36 +02:00
|
|
|
int LedDevice::_ledCount = 0;
|
|
|
|
int LedDevice::_ledRGBCount = 0;
|
|
|
|
int LedDevice::_ledRGBWCount= 0;
|
2016-08-23 20:07:12 +02:00
|
|
|
|
2016-06-25 22:08:17 +02:00
|
|
|
LedDevice::LedDevice()
|
2016-08-14 10:46:44 +02:00
|
|
|
: QObject()
|
|
|
|
, _log(Logger::getInstance("LedDevice"))
|
|
|
|
, _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-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)
|
|
|
|
{
|
|
|
|
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)
|
|
|
|
{
|
|
|
|
_refresh_timer.setInterval( deviceConfig["rewriteTime"].toInt(_refresh_timer_interval) );
|
|
|
|
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);
|
2016-10-09 22:22:17 +02:00
|
|
|
QJsonParseError error;
|
2016-09-10 19:08:08 +02:00
|
|
|
|
|
|
|
// 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;
|
|
|
|
|
2016-09-10 19:08:08 +02:00
|
|
|
for(QString &item : l)
|
|
|
|
{
|
2016-10-09 22:22:17 +02:00
|
|
|
QFile schemaData(QString(":/leddevices/")+item);
|
|
|
|
QString devName = item.remove("schema-");
|
2016-09-10 19:08:08 +02:00
|
|
|
|
2016-10-09 22:22:17 +02:00
|
|
|
if (!schemaData.open(QIODevice::ReadOnly))
|
2016-09-10 19:08:08 +02:00
|
|
|
{
|
2017-03-04 22:17:42 +01:00
|
|
|
Error(Logger::getInstance("LedDevice"), "Schema not found: %s", QSTRING_CSTR(item));
|
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
|
|
|
}
|
2016-10-09 22:22:17 +02:00
|
|
|
|
|
|
|
QByteArray schema = schemaData.readAll();
|
|
|
|
QJsonDocument doc = QJsonDocument::fromJson(schema, &error);
|
|
|
|
schemaData.close();
|
|
|
|
|
|
|
|
if (error.error != QJsonParseError::NoError)
|
|
|
|
{
|
|
|
|
// report to the user the failure and their locations in the document.
|
|
|
|
int errorLine(0), errorColumn(0);
|
|
|
|
|
|
|
|
for( int i=0, count=qMin( error.offset,schema.size()); i<count; ++i )
|
|
|
|
{
|
|
|
|
++errorColumn;
|
|
|
|
if(schema.at(i) == '\n' )
|
|
|
|
{
|
|
|
|
errorColumn = 0;
|
|
|
|
++errorLine;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-03-04 22:17:42 +01:00
|
|
|
QString errorMsg = error.errorString() + " at Line: " + QString::number(errorLine) + ", Column: " + QString::number(errorColumn);
|
|
|
|
Error(Logger::getInstance("LedDevice"), "LedDevice JSON schema error in %s (%s)", QSTRING_CSTR(item), QSTRING_CSTR(errorMsg));
|
|
|
|
throw std::runtime_error("ERROR: Json schema wrong: " + errorMsg.toStdString());
|
2016-10-09 22:22:17 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
schemaJson = doc.object();
|
2016-12-04 19:32:23 +01:00
|
|
|
schemaJson["title"] = QString("edt_dev_spec_header_title");
|
2016-10-09 22:22:17 +02:00
|
|
|
|
|
|
|
result[devName] = schemaJson;
|
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-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
|
|
|
_ledValues = ledValues;
|
|
|
|
|
|
|
|
// restart the timer
|
|
|
|
if (_refresh_timer.interval() > 0)
|
|
|
|
{
|
|
|
|
_refresh_timer.start();
|
|
|
|
}
|
|
|
|
return write(ledValues);
|
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
|
|
|
}
|
|
|
|
|
|
|
|
|
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
|
|
|
}
|