mirror of
https://github.com/hyperion-project/hyperion.ng.git
synced 2023-10-10 13:36:59 +02:00
efc2046ab5
* LedDevice - Address clang findings * Fix Windows Warnings * Ensure newInput is initialised * Clean-up unused elements for Plaform Capture * Fix initialization problem and spellings * Address clang findings and spelling corrections * LedDevice clean-ups * Cleanups * Align that getLedCount is int * Have "display" as default for Grabbers * Fix config during start-up for missing elements * Framegrabber Clean-up - Remove non supported grabbers from selection, filter valid options * Typo * Framegrabber.json - Fix property numbering * Preselect active Grabbertype * Sort Grabbernames * Align options with selected element * Fix deletion of pointer to incomplete type 'BonjourBrowserWrapper' * Address macOS compile warnings * Have default layout = 1 LED only to avoid errors as in #673 * Address lgtm findings * Address finding that params passed to LedDevice discovery were not considered * Cleanups after merging with latest master * Update Changelog * Address lgtm findings * Fix comment * Test Fix * Fix Python Warning * Handle Dummy Device assignment correctly * Address delete called on non-final 'commandline::Option' that has virtual functions but non-virtual destructor * Correct that QTimer.start accepts only int * Have Release Python GIL & reset threat state chnage downward compatible * Correct format specifier * LedDevice - add assertions * Readonly DB - Fix merge issue * Smoothing - Fix wrong defaults * LedDevice - correct assertion * Show smoothing config set# in debug and related values. * Suppress error on windows, if default file is "/dev/null" * CMAKE - Allow to define QT_BASE_DIR dynamically via environment-variable * Ignore Visual Studio specific files Co-authored-by: Paulchen Panther <16664240+Paulchen-Panther@users.noreply.github.com>
280 lines
7.3 KiB
C++
280 lines
7.3 KiB
C++
// Local-Hyperion includes
|
|
#include "LedDeviceWled.h"
|
|
|
|
#include <ssdp/SSDPDiscover.h>
|
|
#include <utils/QStringUtils.h>
|
|
|
|
// Constants
|
|
namespace {
|
|
|
|
// Configuration settings
|
|
const char CONFIG_ADDRESS[] = "host";
|
|
|
|
// UDP elements
|
|
const quint16 STREAM_DEFAULT_PORT = 19446;
|
|
|
|
// WLED JSON-API elements
|
|
const int API_DEFAULT_PORT = -1; //Use default port per communication scheme
|
|
|
|
const char API_BASE_PATH[] = "/json/";
|
|
//const char API_PATH_INFO[] = "info";
|
|
const char API_PATH_STATE[] = "state";
|
|
|
|
// List of State Information
|
|
const char STATE_ON[] = "on";
|
|
const char STATE_VALUE_TRUE[] = "true";
|
|
const char STATE_VALUE_FALSE[] = "false";
|
|
|
|
// WLED ssdp services
|
|
// TODO: WLED - Update ssdp discovery parameters when available
|
|
const char SSDP_ID[] = "ssdp:all";
|
|
const char SSDP_FILTER[] = "(.*)";
|
|
const char SSDP_FILTER_HEADER[] = "ST";
|
|
|
|
} //End of constants
|
|
|
|
LedDeviceWled::LedDeviceWled(const QJsonObject &deviceConfig)
|
|
: ProviderUdp(deviceConfig)
|
|
,_restApi(nullptr)
|
|
,_apiPort(API_DEFAULT_PORT)
|
|
{
|
|
}
|
|
|
|
LedDeviceWled::~LedDeviceWled()
|
|
{
|
|
delete _restApi;
|
|
_restApi = nullptr;
|
|
}
|
|
|
|
LedDevice* LedDeviceWled::construct(const QJsonObject &deviceConfig)
|
|
{
|
|
return new LedDeviceWled(deviceConfig);
|
|
}
|
|
|
|
bool LedDeviceWled::init(const QJsonObject &deviceConfig)
|
|
{
|
|
Debug(_log, "");
|
|
bool isInitOK = false;
|
|
|
|
// Initialise LedDevice sub-class, ProviderUdp::init will be executed later, if connectivity is defined
|
|
if ( LedDevice::init(deviceConfig) )
|
|
{
|
|
// Initialise LedDevice configuration and execution environment
|
|
int configuredLedCount = this->getLedCount();
|
|
Debug(_log, "DeviceType : %s", QSTRING_CSTR( this->getActiveDeviceType() ));
|
|
Debug(_log, "LedCount : %d", configuredLedCount);
|
|
Debug(_log, "ColorOrder : %s", QSTRING_CSTR( this->getColorOrder() ));
|
|
Debug(_log, "LatchTime : %d", this->getLatchTime());
|
|
|
|
//Set hostname as per configuration
|
|
QString address = deviceConfig[ CONFIG_ADDRESS ].toString();
|
|
|
|
//If host not configured the init fails
|
|
if ( address.isEmpty() )
|
|
{
|
|
this->setInError("No target hostname nor IP defined");
|
|
return false;
|
|
}
|
|
else
|
|
{
|
|
QStringList addressparts = QStringUtils::split(address,":", QStringUtils::SplitBehavior::SkipEmptyParts);
|
|
_hostname = addressparts[0];
|
|
if ( addressparts.size() > 1 )
|
|
{
|
|
_apiPort = addressparts[1].toInt();
|
|
}
|
|
else
|
|
{
|
|
_apiPort = API_DEFAULT_PORT;
|
|
}
|
|
|
|
if ( initRestAPI( _hostname, _apiPort ) )
|
|
{
|
|
// Update configuration with hostname without port
|
|
_devConfig["host"] = _hostname;
|
|
_devConfig["port"] = STREAM_DEFAULT_PORT;
|
|
|
|
isInitOK = ProviderUdp::init(_devConfig);
|
|
Debug(_log, "Hostname/IP : %s", QSTRING_CSTR( _hostname ));
|
|
Debug(_log, "Port : %d", _port);
|
|
}
|
|
}
|
|
}
|
|
Debug(_log, "[%d]", isInitOK);
|
|
return isInitOK;
|
|
}
|
|
|
|
bool LedDeviceWled::initRestAPI(const QString &hostname, int port)
|
|
{
|
|
Debug(_log, "");
|
|
bool isInitOK = false;
|
|
|
|
if ( _restApi == nullptr )
|
|
{
|
|
_restApi = new ProviderRestApi(hostname, port);
|
|
_restApi->setBasePath( API_BASE_PATH );
|
|
|
|
isInitOK = true;
|
|
}
|
|
|
|
Debug(_log, "[%d]", isInitOK);
|
|
return isInitOK;
|
|
}
|
|
|
|
QString LedDeviceWled::getOnOffRequest(bool isOn) const
|
|
{
|
|
QString state = isOn ? STATE_VALUE_TRUE : STATE_VALUE_FALSE;
|
|
return QString( "{\"%1\":%2}" ).arg( STATE_ON, state);
|
|
}
|
|
|
|
bool LedDeviceWled::powerOn()
|
|
{
|
|
Debug(_log, "");
|
|
bool on = true;
|
|
if ( _isDeviceReady)
|
|
{
|
|
//Power-on WLED device
|
|
_restApi->setPath(API_PATH_STATE);
|
|
httpResponse response = _restApi->put(getOnOffRequest(true));
|
|
if ( response.error() )
|
|
{
|
|
this->setInError ( response.getErrorReason() );
|
|
on = false;
|
|
}
|
|
}
|
|
return on;
|
|
}
|
|
|
|
bool LedDeviceWled::powerOff()
|
|
{
|
|
Debug(_log, "");
|
|
bool off = true;
|
|
if ( _isDeviceReady)
|
|
{
|
|
// Write a final "Black" to have a defined outcome
|
|
writeBlack();
|
|
|
|
//Power-off the WLED device physically
|
|
_restApi->setPath(API_PATH_STATE);
|
|
httpResponse response = _restApi->put(getOnOffRequest(false));
|
|
if ( response.error() )
|
|
{
|
|
this->setInError ( response.getErrorReason() );
|
|
off = false;
|
|
}
|
|
}
|
|
return off;
|
|
}
|
|
|
|
QJsonObject LedDeviceWled::discover(const QJsonObject& /*params*/)
|
|
{
|
|
QJsonObject devicesDiscovered;
|
|
devicesDiscovered.insert("ledDeviceType", _activeDeviceType );
|
|
|
|
QJsonArray deviceList;
|
|
|
|
// Discover WLED Devices
|
|
SSDPDiscover discover;
|
|
discover.skipDuplicateKeys(true);
|
|
discover.setSearchFilter(SSDP_FILTER, SSDP_FILTER_HEADER);
|
|
QString searchTarget = SSDP_ID;
|
|
|
|
if ( discover.discoverServices(searchTarget) > 0 )
|
|
{
|
|
deviceList = discover.getServicesDiscoveredJson();
|
|
}
|
|
|
|
devicesDiscovered.insert("devices", deviceList);
|
|
Debug(_log, "devicesDiscovered: [%s]", QString(QJsonDocument(devicesDiscovered).toJson(QJsonDocument::Compact)).toUtf8().constData() );
|
|
|
|
return devicesDiscovered;
|
|
}
|
|
|
|
QJsonObject LedDeviceWled::getProperties(const QJsonObject& params)
|
|
{
|
|
Debug(_log, "params: [%s]", QString(QJsonDocument(params).toJson(QJsonDocument::Compact)).toUtf8().constData() );
|
|
QJsonObject properties;
|
|
|
|
// Get Nanoleaf device properties
|
|
QString host = params["host"].toString("");
|
|
if ( !host.isEmpty() )
|
|
{
|
|
QString filter = params["filter"].toString("");
|
|
|
|
// Resolve hostname and port (or use default API port)
|
|
QStringList addressparts = QStringUtils::split(host,":", QStringUtils::SplitBehavior::SkipEmptyParts);
|
|
QString apiHost = addressparts[0];
|
|
int apiPort;
|
|
|
|
if ( addressparts.size() > 1)
|
|
{
|
|
apiPort = addressparts[1].toInt();
|
|
}
|
|
else
|
|
{
|
|
apiPort = API_DEFAULT_PORT;
|
|
}
|
|
|
|
initRestAPI(apiHost, apiPort);
|
|
_restApi->setPath(filter);
|
|
|
|
httpResponse response = _restApi->get();
|
|
if ( response.error() )
|
|
{
|
|
Warning (_log, "%s get properties failed with error: '%s'", QSTRING_CSTR(_activeDeviceType), QSTRING_CSTR(response.getErrorReason()));
|
|
}
|
|
|
|
properties.insert("properties", response.getBody().object());
|
|
|
|
Debug(_log, "properties: [%s]", QString(QJsonDocument(properties).toJson(QJsonDocument::Compact)).toUtf8().constData() );
|
|
}
|
|
return properties;
|
|
}
|
|
|
|
void LedDeviceWled::identify(const QJsonObject& /*params*/)
|
|
{
|
|
#if 0
|
|
Debug(_log, "params: [%s]", QString(QJsonDocument(params).toJson(QJsonDocument::Compact)).toUtf8().constData());
|
|
|
|
QString host = params["host"].toString("");
|
|
if ( !host.isEmpty() )
|
|
{
|
|
// Resolve hostname and port (or use default API port)
|
|
QStringList addressparts = QStringUtils::split(host,":", QStringUtils::SplitBehavior::SkipEmptyParts);
|
|
QString apiHost = addressparts[0];
|
|
int apiPort;
|
|
|
|
if ( addressparts.size() > 1)
|
|
apiPort = addressparts[1].toInt();
|
|
else
|
|
apiPort = API_DEFAULT_PORT;
|
|
|
|
// TODO: WLED::identify - Replace with valid identification code
|
|
|
|
// initRestAPI(apiHost, apiPort);
|
|
|
|
// QString resource = QString("%1/%2/%3").arg( API_LIGHTS ).arg( lightId ).arg( API_STATE);
|
|
// _restApi->setPath(resource);
|
|
|
|
// QString stateCmd;
|
|
// stateCmd += QString("\"%1\":%2,").arg( API_STATE_ON ).arg( API_STATE_VALUE_TRUE );
|
|
// stateCmd += QString("\"%1\":\"%2\"").arg( "alert" ).arg( "select" );
|
|
// stateCmd = "{" + stateCmd + "}";
|
|
|
|
// // Perform request
|
|
// httpResponse response = _restApi->put(stateCmd);
|
|
// if ( response.error() )
|
|
// {
|
|
// Warning (_log, "%s identification failed with error: '%s'", QSTRING_CSTR(_activeDeviceType), QSTRING_CSTR(response.getErrorReason()));
|
|
// }
|
|
}
|
|
#endif
|
|
}
|
|
|
|
int LedDeviceWled::write(const std::vector<ColorRgb> &ledValues)
|
|
{
|
|
const uint8_t * dataPtr = reinterpret_cast<const uint8_t *>(ledValues.data());
|
|
|
|
return writeBytes( _ledRGBCount, dataPtr);
|
|
}
|