2020-05-12 19:51:19 +02:00
|
|
|
#ifdef _WIN32
|
|
|
|
#include <winsock.h>
|
|
|
|
#else
|
2016-08-19 17:14:52 +02:00
|
|
|
#include <arpa/inet.h>
|
2020-05-12 19:51:19 +02:00
|
|
|
#endif
|
|
|
|
|
2016-08-28 10:45:18 +02:00
|
|
|
#include <QHostInfo>
|
|
|
|
|
2016-08-19 17:14:52 +02:00
|
|
|
// hyperion local includes
|
|
|
|
#include "LedDeviceUdpE131.h"
|
mDNS Support (#1452)
* Allow build, if no grabbers are enabled
* Align available functions to right Qt version
* Update to next development version
* Align available functions to right Qt version
* fix workflows (apt/nightly)
* Disable QNetworkConfigurationManager deprecation warnings
* Initial go on Smart Pointers
* Add Deallocation
* Correct QT_WARNING_DISABLE_DEPRECATED (available since 5.9)
* Cluster Build Variables
* Hyperion Light
* Address build warnings
* Hyperion Light - UI
* Update Protobuf to latest master
* Removed compiler warnings
* Added restart ability to systray
* Correct Protobuf
* Ignore 'no-return' warning on protobuf build
* hyperion-remote: Fix auto discovery of hyperion server
* Fix Qt version override
* Update changelog
* Remove Grabber Components, if no Grabber exists
* Standalone Grabber - Fix fps default
* Remote Control - Have Source Selction accrosswhole screen
* Enable Blackborder detection only, if relevant input sources available
* Enable Blackborder detection only, if relevant input sources available
* Remote UI - rearrange containers
* Checkout
* Fix compilation on windows
* Re-added qmdnsengine template cmake
* chrono added for linux
* Removed existing AVAHI/Bonjour, allow to enable/disable mDNS
* hyperiond macos typo fix
* Fix macOS Bundle build
* Fix macOS bundle info details
* Correct CMake files
* Removed existing AVAHI/Bonjour (2)
* Share hyperion's services via mDNS
* Add mDNS Browser and mDNS for LED-Devices
* Support mDNS discovery for standalone grabbers
* Remove ZLib Dependency & Cleanup
* mDNS - hanle 2.local2 an ".local." domains equally
* Hue - Link discovery to bridge class, workaround port 443 for mDNS discovery
* Fix save button state when switching between devices
* Removed sessions (of other hyperions)
* mDNS Publisher - Simplify service naming
* mDNS refactoring & Forwarder discovery
* mDNS Updates to use device service name
* Consistency of standalone grabbers with mDNS Service Registry
* Merge branch 'hyperion-project:master' into mDNS
* Start JSON and WebServers only after Instance 0 is available
* Remove bespoke qDebug Output again
* MDNS updates and refactor Forwarder
* Minor updates
* Upgrade to CMake 3.1
* typo
* macOS fix
* Correct merge
* - Remove dynamic linker flag from standalone dispmanX Grabber
- Added ability to use system qmdns libs
* Cec handler library will load at runtime
* typo fix
* protobuf changes
* mDNS changes for Windows/macOS
* test window build qmdnsengine
* absolute path to protobuf cmake dir
* Rework Hue Wizard supporting mDNS
* LED-Devices - Retry support + Refactoring (excl. Hue)
* LED-Devices - Refactoring/Retry support Hue + additional alignments
* Address LGTM findings
* Fix CI-Build, revert test changes
* Build Windows in Release mode to avoid python problem
* Correct that WebServerObject is available earlier
* Ensure that instance name in logs for one instance are presented
* Update content LEDs
* Rework mDNS Address lookup
* Fix LED UI
* Fix for non mDNS Services (ignore default port)
* Disbale device when now input is available
* Revert back some updates, ensure last color is updated when switched on
* Handle reopening case and changed IP, port for API-calls
* Add UPD-DDP Device
* WLED support for DDP
* Fix printout
* LEDDevice - Allow more retries, udapte defaults
* LED-Net Devices - Select Custom device, if configured
Co-authored-by: Paulchen Panther <16664240+Paulchen-Panther@users.noreply.github.com>
Co-authored-by: Paulchen Panther <Paulchen-Panter@protonmail.com>
2022-05-01 19:42:47 +02:00
|
|
|
#include <utils/NetUtils.h>
|
|
|
|
|
|
|
|
// Constants
|
|
|
|
namespace {
|
|
|
|
|
|
|
|
const char CONFIG_HOST[] = "host";
|
|
|
|
const char CONFIG_PORT[] = "port";
|
2016-08-19 17:14:52 +02:00
|
|
|
|
2020-07-12 20:27:56 +02:00
|
|
|
const ushort E131_DEFAULT_PORT = 5568;
|
|
|
|
|
|
|
|
/* defined parameters from http://tsp.esta.org/tsp/documents/docs/BSR_E1-31-20xx_CP-2014-1009r2.pdf */
|
|
|
|
const uint32_t VECTOR_ROOT_E131_DATA = 0x00000004;
|
2022-12-27 08:36:10 +01:00
|
|
|
|
2020-07-12 20:27:56 +02:00
|
|
|
const uint8_t VECTOR_DMP_SET_PROPERTY = 0x02;
|
|
|
|
const uint32_t VECTOR_E131_DATA_PACKET = 0x00000002;
|
2022-12-27 08:36:10 +01:00
|
|
|
|
|
|
|
#if 0
|
|
|
|
#define VECTOR_ROOT_E131_EXTENDED 0x00000008
|
|
|
|
#define VECTOR_E131_EXTENDED_SYNCHRONIZATION 0x00000001
|
|
|
|
#define VECTOR_E131_EXTENDED_DISCOVERY 0x00000002
|
|
|
|
#define VECTOR_UNIVERSE_DISCOVERY_UNIVERSE_LIST 0x00000001
|
|
|
|
#define E131_E131_UNIVERSE_DISCOVERY_INTERVAL 10 // seconds
|
|
|
|
#define E131_NETWORK_DATA_LOSS_TIMEOUT 2500 // milli econds
|
|
|
|
#define E131_DISCOVERY_UNIVERSE 64214
|
|
|
|
#endif
|
|
|
|
|
2020-07-12 20:27:56 +02:00
|
|
|
const int DMX_MAX = 512; // 512 usable slots
|
mDNS Support (#1452)
* Allow build, if no grabbers are enabled
* Align available functions to right Qt version
* Update to next development version
* Align available functions to right Qt version
* fix workflows (apt/nightly)
* Disable QNetworkConfigurationManager deprecation warnings
* Initial go on Smart Pointers
* Add Deallocation
* Correct QT_WARNING_DISABLE_DEPRECATED (available since 5.9)
* Cluster Build Variables
* Hyperion Light
* Address build warnings
* Hyperion Light - UI
* Update Protobuf to latest master
* Removed compiler warnings
* Added restart ability to systray
* Correct Protobuf
* Ignore 'no-return' warning on protobuf build
* hyperion-remote: Fix auto discovery of hyperion server
* Fix Qt version override
* Update changelog
* Remove Grabber Components, if no Grabber exists
* Standalone Grabber - Fix fps default
* Remote Control - Have Source Selction accrosswhole screen
* Enable Blackborder detection only, if relevant input sources available
* Enable Blackborder detection only, if relevant input sources available
* Remote UI - rearrange containers
* Checkout
* Fix compilation on windows
* Re-added qmdnsengine template cmake
* chrono added for linux
* Removed existing AVAHI/Bonjour, allow to enable/disable mDNS
* hyperiond macos typo fix
* Fix macOS Bundle build
* Fix macOS bundle info details
* Correct CMake files
* Removed existing AVAHI/Bonjour (2)
* Share hyperion's services via mDNS
* Add mDNS Browser and mDNS for LED-Devices
* Support mDNS discovery for standalone grabbers
* Remove ZLib Dependency & Cleanup
* mDNS - hanle 2.local2 an ".local." domains equally
* Hue - Link discovery to bridge class, workaround port 443 for mDNS discovery
* Fix save button state when switching between devices
* Removed sessions (of other hyperions)
* mDNS Publisher - Simplify service naming
* mDNS refactoring & Forwarder discovery
* mDNS Updates to use device service name
* Consistency of standalone grabbers with mDNS Service Registry
* Merge branch 'hyperion-project:master' into mDNS
* Start JSON and WebServers only after Instance 0 is available
* Remove bespoke qDebug Output again
* MDNS updates and refactor Forwarder
* Minor updates
* Upgrade to CMake 3.1
* typo
* macOS fix
* Correct merge
* - Remove dynamic linker flag from standalone dispmanX Grabber
- Added ability to use system qmdns libs
* Cec handler library will load at runtime
* typo fix
* protobuf changes
* mDNS changes for Windows/macOS
* test window build qmdnsengine
* absolute path to protobuf cmake dir
* Rework Hue Wizard supporting mDNS
* LED-Devices - Retry support + Refactoring (excl. Hue)
* LED-Devices - Refactoring/Retry support Hue + additional alignments
* Address LGTM findings
* Fix CI-Build, revert test changes
* Build Windows in Release mode to avoid python problem
* Correct that WebServerObject is available earlier
* Ensure that instance name in logs for one instance are presented
* Update content LEDs
* Rework mDNS Address lookup
* Fix LED UI
* Fix for non mDNS Services (ignore default port)
* Disbale device when now input is available
* Revert back some updates, ensure last color is updated when switched on
* Handle reopening case and changed IP, port for API-calls
* Add UPD-DDP Device
* WLED support for DDP
* Fix printout
* LEDDevice - Allow more retries, udapte defaults
* LED-Net Devices - Select Custom device, if configured
Co-authored-by: Paulchen Panther <16664240+Paulchen-Panther@users.noreply.github.com>
Co-authored-by: Paulchen Panther <Paulchen-Panter@protonmail.com>
2022-05-01 19:42:47 +02:00
|
|
|
}
|
2020-07-12 20:27:56 +02:00
|
|
|
|
2016-10-13 21:59:58 +02:00
|
|
|
LedDeviceUdpE131::LedDeviceUdpE131(const QJsonObject &deviceConfig)
|
2020-08-08 00:21:19 +02:00
|
|
|
: ProviderUdp(deviceConfig)
|
2016-08-19 17:14:52 +02:00
|
|
|
{
|
2020-07-12 20:27:56 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
LedDevice* LedDeviceUdpE131::construct(const QJsonObject &deviceConfig)
|
|
|
|
{
|
|
|
|
return new LedDeviceUdpE131(deviceConfig);
|
2016-08-23 20:07:12 +02:00
|
|
|
}
|
|
|
|
|
2016-10-13 21:59:58 +02:00
|
|
|
bool LedDeviceUdpE131::init(const QJsonObject &deviceConfig)
|
2016-08-23 20:07:12 +02:00
|
|
|
{
|
mDNS Support (#1452)
* Allow build, if no grabbers are enabled
* Align available functions to right Qt version
* Update to next development version
* Align available functions to right Qt version
* fix workflows (apt/nightly)
* Disable QNetworkConfigurationManager deprecation warnings
* Initial go on Smart Pointers
* Add Deallocation
* Correct QT_WARNING_DISABLE_DEPRECATED (available since 5.9)
* Cluster Build Variables
* Hyperion Light
* Address build warnings
* Hyperion Light - UI
* Update Protobuf to latest master
* Removed compiler warnings
* Added restart ability to systray
* Correct Protobuf
* Ignore 'no-return' warning on protobuf build
* hyperion-remote: Fix auto discovery of hyperion server
* Fix Qt version override
* Update changelog
* Remove Grabber Components, if no Grabber exists
* Standalone Grabber - Fix fps default
* Remote Control - Have Source Selction accrosswhole screen
* Enable Blackborder detection only, if relevant input sources available
* Enable Blackborder detection only, if relevant input sources available
* Remote UI - rearrange containers
* Checkout
* Fix compilation on windows
* Re-added qmdnsengine template cmake
* chrono added for linux
* Removed existing AVAHI/Bonjour, allow to enable/disable mDNS
* hyperiond macos typo fix
* Fix macOS Bundle build
* Fix macOS bundle info details
* Correct CMake files
* Removed existing AVAHI/Bonjour (2)
* Share hyperion's services via mDNS
* Add mDNS Browser and mDNS for LED-Devices
* Support mDNS discovery for standalone grabbers
* Remove ZLib Dependency & Cleanup
* mDNS - hanle 2.local2 an ".local." domains equally
* Hue - Link discovery to bridge class, workaround port 443 for mDNS discovery
* Fix save button state when switching between devices
* Removed sessions (of other hyperions)
* mDNS Publisher - Simplify service naming
* mDNS refactoring & Forwarder discovery
* mDNS Updates to use device service name
* Consistency of standalone grabbers with mDNS Service Registry
* Merge branch 'hyperion-project:master' into mDNS
* Start JSON and WebServers only after Instance 0 is available
* Remove bespoke qDebug Output again
* MDNS updates and refactor Forwarder
* Minor updates
* Upgrade to CMake 3.1
* typo
* macOS fix
* Correct merge
* - Remove dynamic linker flag from standalone dispmanX Grabber
- Added ability to use system qmdns libs
* Cec handler library will load at runtime
* typo fix
* protobuf changes
* mDNS changes for Windows/macOS
* test window build qmdnsengine
* absolute path to protobuf cmake dir
* Rework Hue Wizard supporting mDNS
* LED-Devices - Retry support + Refactoring (excl. Hue)
* LED-Devices - Refactoring/Retry support Hue + additional alignments
* Address LGTM findings
* Fix CI-Build, revert test changes
* Build Windows in Release mode to avoid python problem
* Correct that WebServerObject is available earlier
* Ensure that instance name in logs for one instance are presented
* Update content LEDs
* Rework mDNS Address lookup
* Fix LED UI
* Fix for non mDNS Services (ignore default port)
* Disbale device when now input is available
* Revert back some updates, ensure last color is updated when switched on
* Handle reopening case and changed IP, port for API-calls
* Add UPD-DDP Device
* WLED support for DDP
* Fix printout
* LEDDevice - Allow more retries, udapte defaults
* LED-Net Devices - Select Custom device, if configured
Co-authored-by: Paulchen Panther <16664240+Paulchen-Panther@users.noreply.github.com>
Co-authored-by: Paulchen Panther <Paulchen-Panter@protonmail.com>
2022-05-01 19:42:47 +02:00
|
|
|
bool isInitOK {false};
|
2020-07-12 20:27:56 +02:00
|
|
|
|
|
|
|
// Initialise sub-class
|
|
|
|
if ( ProviderUdp::init(deviceConfig) )
|
2016-08-28 10:45:18 +02:00
|
|
|
{
|
mDNS Support (#1452)
* Allow build, if no grabbers are enabled
* Align available functions to right Qt version
* Update to next development version
* Align available functions to right Qt version
* fix workflows (apt/nightly)
* Disable QNetworkConfigurationManager deprecation warnings
* Initial go on Smart Pointers
* Add Deallocation
* Correct QT_WARNING_DISABLE_DEPRECATED (available since 5.9)
* Cluster Build Variables
* Hyperion Light
* Address build warnings
* Hyperion Light - UI
* Update Protobuf to latest master
* Removed compiler warnings
* Added restart ability to systray
* Correct Protobuf
* Ignore 'no-return' warning on protobuf build
* hyperion-remote: Fix auto discovery of hyperion server
* Fix Qt version override
* Update changelog
* Remove Grabber Components, if no Grabber exists
* Standalone Grabber - Fix fps default
* Remote Control - Have Source Selction accrosswhole screen
* Enable Blackborder detection only, if relevant input sources available
* Enable Blackborder detection only, if relevant input sources available
* Remote UI - rearrange containers
* Checkout
* Fix compilation on windows
* Re-added qmdnsengine template cmake
* chrono added for linux
* Removed existing AVAHI/Bonjour, allow to enable/disable mDNS
* hyperiond macos typo fix
* Fix macOS Bundle build
* Fix macOS bundle info details
* Correct CMake files
* Removed existing AVAHI/Bonjour (2)
* Share hyperion's services via mDNS
* Add mDNS Browser and mDNS for LED-Devices
* Support mDNS discovery for standalone grabbers
* Remove ZLib Dependency & Cleanup
* mDNS - hanle 2.local2 an ".local." domains equally
* Hue - Link discovery to bridge class, workaround port 443 for mDNS discovery
* Fix save button state when switching between devices
* Removed sessions (of other hyperions)
* mDNS Publisher - Simplify service naming
* mDNS refactoring & Forwarder discovery
* mDNS Updates to use device service name
* Consistency of standalone grabbers with mDNS Service Registry
* Merge branch 'hyperion-project:master' into mDNS
* Start JSON and WebServers only after Instance 0 is available
* Remove bespoke qDebug Output again
* MDNS updates and refactor Forwarder
* Minor updates
* Upgrade to CMake 3.1
* typo
* macOS fix
* Correct merge
* - Remove dynamic linker flag from standalone dispmanX Grabber
- Added ability to use system qmdns libs
* Cec handler library will load at runtime
* typo fix
* protobuf changes
* mDNS changes for Windows/macOS
* test window build qmdnsengine
* absolute path to protobuf cmake dir
* Rework Hue Wizard supporting mDNS
* LED-Devices - Retry support + Refactoring (excl. Hue)
* LED-Devices - Refactoring/Retry support Hue + additional alignments
* Address LGTM findings
* Fix CI-Build, revert test changes
* Build Windows in Release mode to avoid python problem
* Correct that WebServerObject is available earlier
* Ensure that instance name in logs for one instance are presented
* Update content LEDs
* Rework mDNS Address lookup
* Fix LED UI
* Fix for non mDNS Services (ignore default port)
* Disbale device when now input is available
* Revert back some updates, ensure last color is updated when switched on
* Handle reopening case and changed IP, port for API-calls
* Add UPD-DDP Device
* WLED support for DDP
* Fix printout
* LEDDevice - Allow more retries, udapte defaults
* LED-Net Devices - Select Custom device, if configured
Co-authored-by: Paulchen Panther <16664240+Paulchen-Panther@users.noreply.github.com>
Co-authored-by: Paulchen Panther <Paulchen-Panter@protonmail.com>
2022-05-01 19:42:47 +02:00
|
|
|
_hostName = _devConfig[ CONFIG_HOST ].toString();
|
|
|
|
_port = deviceConfig[CONFIG_PORT].toInt(E131_DEFAULT_PORT);
|
|
|
|
|
2020-02-10 15:21:58 +01:00
|
|
|
_e131_universe = deviceConfig["universe"].toInt(1);
|
|
|
|
_e131_source_name = deviceConfig["source-name"].toString("hyperion on "+QHostInfo::localHostName());
|
|
|
|
QString _json_cid = deviceConfig["cid"].toString("");
|
|
|
|
|
|
|
|
if (_json_cid.isEmpty())
|
|
|
|
{
|
|
|
|
_e131_cid = QUuid::createUuid();
|
2020-07-12 20:27:56 +02:00
|
|
|
Debug( _log, "e131 no CID found, generated %s", QSTRING_CSTR(_e131_cid.toString()));
|
|
|
|
isInitOK = true;
|
2020-02-10 15:21:58 +01:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
_e131_cid = QUuid(_json_cid);
|
2020-07-12 20:27:56 +02:00
|
|
|
if ( !_e131_cid.isNull() )
|
|
|
|
{
|
|
|
|
Debug( _log, "e131 CID found, using %s", QSTRING_CSTR(_e131_cid.toString()));
|
|
|
|
isInitOK = true;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
this->setInError("CID configured is not a valid UUID. Format expected is \"xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx\"");
|
|
|
|
}
|
2020-02-10 15:21:58 +01:00
|
|
|
}
|
2016-08-28 10:45:18 +02:00
|
|
|
}
|
2020-02-10 15:21:58 +01:00
|
|
|
return isInitOK;
|
2016-08-23 20:07:12 +02:00
|
|
|
}
|
|
|
|
|
mDNS Support (#1452)
* Allow build, if no grabbers are enabled
* Align available functions to right Qt version
* Update to next development version
* Align available functions to right Qt version
* fix workflows (apt/nightly)
* Disable QNetworkConfigurationManager deprecation warnings
* Initial go on Smart Pointers
* Add Deallocation
* Correct QT_WARNING_DISABLE_DEPRECATED (available since 5.9)
* Cluster Build Variables
* Hyperion Light
* Address build warnings
* Hyperion Light - UI
* Update Protobuf to latest master
* Removed compiler warnings
* Added restart ability to systray
* Correct Protobuf
* Ignore 'no-return' warning on protobuf build
* hyperion-remote: Fix auto discovery of hyperion server
* Fix Qt version override
* Update changelog
* Remove Grabber Components, if no Grabber exists
* Standalone Grabber - Fix fps default
* Remote Control - Have Source Selction accrosswhole screen
* Enable Blackborder detection only, if relevant input sources available
* Enable Blackborder detection only, if relevant input sources available
* Remote UI - rearrange containers
* Checkout
* Fix compilation on windows
* Re-added qmdnsengine template cmake
* chrono added for linux
* Removed existing AVAHI/Bonjour, allow to enable/disable mDNS
* hyperiond macos typo fix
* Fix macOS Bundle build
* Fix macOS bundle info details
* Correct CMake files
* Removed existing AVAHI/Bonjour (2)
* Share hyperion's services via mDNS
* Add mDNS Browser and mDNS for LED-Devices
* Support mDNS discovery for standalone grabbers
* Remove ZLib Dependency & Cleanup
* mDNS - hanle 2.local2 an ".local." domains equally
* Hue - Link discovery to bridge class, workaround port 443 for mDNS discovery
* Fix save button state when switching between devices
* Removed sessions (of other hyperions)
* mDNS Publisher - Simplify service naming
* mDNS refactoring & Forwarder discovery
* mDNS Updates to use device service name
* Consistency of standalone grabbers with mDNS Service Registry
* Merge branch 'hyperion-project:master' into mDNS
* Start JSON and WebServers only after Instance 0 is available
* Remove bespoke qDebug Output again
* MDNS updates and refactor Forwarder
* Minor updates
* Upgrade to CMake 3.1
* typo
* macOS fix
* Correct merge
* - Remove dynamic linker flag from standalone dispmanX Grabber
- Added ability to use system qmdns libs
* Cec handler library will load at runtime
* typo fix
* protobuf changes
* mDNS changes for Windows/macOS
* test window build qmdnsengine
* absolute path to protobuf cmake dir
* Rework Hue Wizard supporting mDNS
* LED-Devices - Retry support + Refactoring (excl. Hue)
* LED-Devices - Refactoring/Retry support Hue + additional alignments
* Address LGTM findings
* Fix CI-Build, revert test changes
* Build Windows in Release mode to avoid python problem
* Correct that WebServerObject is available earlier
* Ensure that instance name in logs for one instance are presented
* Update content LEDs
* Rework mDNS Address lookup
* Fix LED UI
* Fix for non mDNS Services (ignore default port)
* Disbale device when now input is available
* Revert back some updates, ensure last color is updated when switched on
* Handle reopening case and changed IP, port for API-calls
* Add UPD-DDP Device
* WLED support for DDP
* Fix printout
* LEDDevice - Allow more retries, udapte defaults
* LED-Net Devices - Select Custom device, if configured
Co-authored-by: Paulchen Panther <16664240+Paulchen-Panther@users.noreply.github.com>
Co-authored-by: Paulchen Panther <Paulchen-Panter@protonmail.com>
2022-05-01 19:42:47 +02:00
|
|
|
int LedDeviceUdpE131::open()
|
|
|
|
{
|
|
|
|
int retval = -1;
|
|
|
|
_isDeviceReady = false;
|
|
|
|
|
|
|
|
if (NetUtils::resolveHostToAddress(_log, _hostName, _address))
|
|
|
|
{
|
|
|
|
if (ProviderUdp::open() == 0)
|
|
|
|
{
|
|
|
|
// Everything is OK, device is ready
|
|
|
|
_isDeviceReady = true;
|
|
|
|
retval = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return retval;
|
|
|
|
}
|
|
|
|
|
2016-08-20 22:39:21 +02:00
|
|
|
// populates the headers
|
2020-08-08 13:09:15 +02:00
|
|
|
void LedDeviceUdpE131::prepare(unsigned this_universe, unsigned this_dmxChannelCount)
|
2016-08-19 17:14:52 +02:00
|
|
|
{
|
|
|
|
memset(e131_packet.raw, 0, sizeof(e131_packet.raw));
|
|
|
|
|
|
|
|
/* Root Layer */
|
|
|
|
e131_packet.preamble_size = htons(16);
|
|
|
|
e131_packet.postamble_size = 0;
|
|
|
|
memcpy (e131_packet.acn_id, _acn_id, 12);
|
2016-08-20 22:39:21 +02:00
|
|
|
e131_packet.root_flength = htons(0x7000 | (110+this_dmxChannelCount) );
|
2016-08-19 17:14:52 +02:00
|
|
|
e131_packet.root_vector = htonl(VECTOR_ROOT_E131_DATA);
|
2016-08-28 10:45:18 +02:00
|
|
|
memcpy (e131_packet.cid, _e131_cid.toRfc4122().constData() , sizeof(e131_packet.cid) );
|
2016-08-19 17:14:52 +02:00
|
|
|
|
|
|
|
/* Frame Layer */
|
2016-08-20 22:39:21 +02:00
|
|
|
e131_packet.frame_flength = htons(0x7000 | (88+this_dmxChannelCount));
|
2016-08-19 17:14:52 +02:00
|
|
|
e131_packet.frame_vector = htonl(VECTOR_E131_DATA_PACKET);
|
2017-03-04 22:17:42 +01:00
|
|
|
snprintf (e131_packet.source_name, sizeof(e131_packet.source_name), "%s", QSTRING_CSTR(_e131_source_name) );
|
2016-08-19 17:14:52 +02:00
|
|
|
e131_packet.priority = 100;
|
|
|
|
e131_packet.reserved = htons(0);
|
|
|
|
e131_packet.options = 0; // Bit 7 = Preview_Data
|
|
|
|
// Bit 6 = Stream_Terminated
|
|
|
|
// Bit 5 = Force_Synchronization
|
2016-08-20 22:39:21 +02:00
|
|
|
e131_packet.universe = htons(this_universe);
|
2016-08-19 17:14:52 +02:00
|
|
|
|
|
|
|
/* DMX Layer */
|
2016-08-20 22:39:21 +02:00
|
|
|
e131_packet.dmp_flength = htons(0x7000 | (11+this_dmxChannelCount));
|
2016-08-19 17:14:52 +02:00
|
|
|
e131_packet.dmp_vector = VECTOR_DMP_SET_PROPERTY;
|
|
|
|
e131_packet.type = 0xa1;
|
|
|
|
e131_packet.first_address = htons(0);
|
|
|
|
e131_packet.address_increment = htons(1);
|
2016-08-20 22:39:21 +02:00
|
|
|
e131_packet.property_value_count = htons(1+this_dmxChannelCount);
|
2016-08-19 17:14:52 +02:00
|
|
|
|
|
|
|
e131_packet.property_values[0] = 0; // start code
|
2016-08-20 22:39:21 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
int LedDeviceUdpE131::write(const std::vector<ColorRgb> &ledValues)
|
|
|
|
{
|
2016-09-23 08:49:22 +02:00
|
|
|
int retVal = 0;
|
2016-10-08 08:14:36 +02:00
|
|
|
int thisChannelCount = 0;
|
|
|
|
int dmxChannelCount = _ledRGBCount;
|
2016-08-20 22:39:21 +02:00
|
|
|
const uint8_t * rawdata = reinterpret_cast<const uint8_t *>(ledValues.data());
|
|
|
|
|
2016-09-23 08:49:22 +02:00
|
|
|
_e131_seq++;
|
2016-08-20 22:39:21 +02:00
|
|
|
|
2016-10-08 08:14:36 +02:00
|
|
|
for (int rawIdx = 0; rawIdx < dmxChannelCount; rawIdx++)
|
2016-08-19 17:14:52 +02:00
|
|
|
{
|
2016-08-20 22:39:21 +02:00
|
|
|
if (rawIdx % DMX_MAX == 0) // start of new packet
|
|
|
|
{
|
2016-10-08 08:14:36 +02:00
|
|
|
thisChannelCount = (dmxChannelCount - rawIdx < DMX_MAX) ? dmxChannelCount % DMX_MAX : DMX_MAX;
|
|
|
|
// is this the last packet? ? ^^ last packet : ^^ earlier packets
|
2016-08-20 22:39:21 +02:00
|
|
|
|
2016-10-08 08:14:36 +02:00
|
|
|
prepare(_e131_universe + rawIdx / DMX_MAX, thisChannelCount);
|
2016-08-20 22:39:21 +02:00
|
|
|
e131_packet.sequence_number = _e131_seq;
|
|
|
|
}
|
|
|
|
|
|
|
|
e131_packet.property_values[1 + rawIdx%DMX_MAX] = rawdata[rawIdx];
|
|
|
|
|
|
|
|
// is this the last byte of last packet || last byte of other packets
|
2016-10-08 08:14:36 +02:00
|
|
|
if ( (rawIdx == dmxChannelCount-1) || (rawIdx %DMX_MAX == DMX_MAX-1) )
|
2016-08-20 22:39:21 +02:00
|
|
|
{
|
|
|
|
#undef e131debug
|
|
|
|
#if e131debug
|
2016-09-23 08:49:22 +02:00
|
|
|
Debug (_log, "send packet: rawidx %d dmxchannelcount %d universe: %d, packetsz %d"
|
2016-08-20 22:39:21 +02:00
|
|
|
, rawIdx
|
2016-10-08 08:14:36 +02:00
|
|
|
, dmxChannelCount
|
2016-08-20 22:39:21 +02:00
|
|
|
, _e131_universe + rawIdx / DMX_MAX
|
2016-10-08 08:14:36 +02:00
|
|
|
, E131_DMP_DATA + 1 + thisChannelCount
|
2016-08-20 22:39:21 +02:00
|
|
|
);
|
|
|
|
#endif
|
2016-10-08 08:14:36 +02:00
|
|
|
retVal &= writeBytes(E131_DMP_DATA + 1 + thisChannelCount, e131_packet.raw);
|
2016-08-20 22:39:21 +02:00
|
|
|
}
|
2016-08-19 17:14:52 +02:00
|
|
|
}
|
2016-08-20 22:39:21 +02:00
|
|
|
|
|
|
|
return retVal;
|
2016-08-19 17:14:52 +02:00
|
|
|
}
|