2013-11-05 16:46:17 +01:00
|
|
|
|
2020-07-12 20:27:56 +02:00
|
|
|
// LedDevice includes
|
|
|
|
#include <leddevice/LedDevice.h>
|
|
|
|
#include "ProviderRs232.h"
|
|
|
|
|
|
|
|
// qt includes
|
2017-02-09 20:10:57 +01:00
|
|
|
#include <QSerialPortInfo>
|
2020-07-12 20:27:56 +02:00
|
|
|
#include <QEventLoop>
|
2014-05-04 11:41:55 +02:00
|
|
|
|
2020-07-12 20:27:56 +02:00
|
|
|
#include <chrono>
|
|
|
|
|
|
|
|
// Constants
|
|
|
|
constexpr std::chrono::milliseconds WRITE_TIMEOUT{1000}; // device write timeout in ms
|
|
|
|
constexpr std::chrono::milliseconds OPEN_TIMEOUT{5000}; // device open timeout in ms
|
2020-08-02 22:32:00 +02:00
|
|
|
const int MAX_WRITE_TIMEOUTS = 5; // Maximum number of allowed timeouts
|
2020-07-12 20:27:56 +02:00
|
|
|
const int NUM_POWEROFF_WRITE_BLACK = 2; // Number of write "BLACK" during powering off
|
2013-11-05 16:46:17 +01:00
|
|
|
|
2016-10-08 08:14:36 +02:00
|
|
|
ProviderRs232::ProviderRs232()
|
2016-08-23 20:07:12 +02:00
|
|
|
: _rs232Port(this)
|
2020-07-12 20:27:56 +02:00
|
|
|
,_baudRate_Hz(1000000)
|
|
|
|
,_isAutoDeviceName(false)
|
|
|
|
,_delayAfterConnect_ms(0)
|
|
|
|
,_frameDropCounter(0)
|
2013-11-05 16:46:17 +01:00
|
|
|
{
|
2016-07-20 23:26:47 +02:00
|
|
|
}
|
|
|
|
|
2016-10-13 21:59:58 +02:00
|
|
|
bool ProviderRs232::init(const QJsonObject &deviceConfig)
|
2016-08-23 20:07:12 +02:00
|
|
|
{
|
2020-07-12 20:27:56 +02:00
|
|
|
bool isInitOK = false;
|
2016-12-02 12:07:24 +01:00
|
|
|
|
2020-07-12 20:27:56 +02:00
|
|
|
// Initialise sub-class
|
|
|
|
if ( LedDevice::init(deviceConfig) )
|
|
|
|
{
|
2016-12-02 12:07:24 +01:00
|
|
|
|
2020-07-12 20:27:56 +02:00
|
|
|
Debug(_log, "DeviceType : %s", QSTRING_CSTR( this->getActiveDeviceType() ));
|
|
|
|
Debug(_log, "LedCount : %u", this->getLedCount());
|
|
|
|
Debug(_log, "ColorOrder : %s", QSTRING_CSTR( this->getColorOrder() ));
|
|
|
|
Debug(_log, "RefreshTime : %d", _refreshTimerInterval_ms);
|
|
|
|
Debug(_log, "LatchTime : %d", this->getLatchTime());
|
2016-08-23 20:07:12 +02:00
|
|
|
|
2020-07-12 20:27:56 +02:00
|
|
|
_deviceName = deviceConfig["output"].toString("auto");
|
2020-02-10 15:21:58 +01:00
|
|
|
|
2020-07-12 20:27:56 +02:00
|
|
|
// If device name was given as unix /dev/ system-location, get port name
|
|
|
|
if ( _deviceName.startsWith(QLatin1String("/dev/")) )
|
2020-08-02 22:32:00 +02:00
|
|
|
_deviceName = _deviceName.mid(5);
|
2020-02-10 15:21:58 +01:00
|
|
|
|
2020-08-02 22:32:00 +02:00
|
|
|
_isAutoDeviceName = _deviceName.toLower() == "auto";
|
2020-07-12 20:27:56 +02:00
|
|
|
_baudRate_Hz = deviceConfig["rate"].toInt();
|
|
|
|
_delayAfterConnect_ms = deviceConfig["delayAfterConnect"].toInt(1500);
|
2020-02-10 15:21:58 +01:00
|
|
|
|
2020-07-12 20:27:56 +02:00
|
|
|
Debug(_log, "deviceName : %s", QSTRING_CSTR(_deviceName));
|
|
|
|
Debug(_log, "AutoDevice : %d", _isAutoDeviceName);
|
|
|
|
Debug(_log, "baudRate_Hz : %d", _baudRate_Hz);
|
|
|
|
Debug(_log, "delayAfCon ms: %d", _delayAfterConnect_ms);
|
2016-08-23 20:07:12 +02:00
|
|
|
|
2020-07-12 20:27:56 +02:00
|
|
|
isInitOK = true;
|
2017-02-09 20:10:57 +01:00
|
|
|
}
|
2020-07-12 20:27:56 +02:00
|
|
|
return isInitOK;
|
2017-02-09 20:10:57 +01:00
|
|
|
}
|
|
|
|
|
2020-07-12 20:27:56 +02:00
|
|
|
ProviderRs232::~ProviderRs232()
|
2016-09-25 22:20:01 +02:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2020-07-12 20:27:56 +02:00
|
|
|
int ProviderRs232::open()
|
2016-09-25 22:20:01 +02:00
|
|
|
{
|
2020-07-12 20:27:56 +02:00
|
|
|
int retval = -1;
|
|
|
|
_isDeviceReady = false;
|
|
|
|
_isInSwitchOff = false;
|
2016-09-25 22:20:01 +02:00
|
|
|
|
2020-07-12 20:27:56 +02:00
|
|
|
// open device physically
|
|
|
|
if ( tryOpen(_delayAfterConnect_ms) )
|
2016-07-20 23:26:47 +02:00
|
|
|
{
|
2020-07-12 20:27:56 +02:00
|
|
|
// Everything is OK, device is ready
|
|
|
|
_isDeviceReady = true;
|
|
|
|
retval = 0;
|
2016-07-20 23:26:47 +02:00
|
|
|
}
|
2020-07-12 20:27:56 +02:00
|
|
|
return retval;
|
2013-11-05 16:46:17 +01:00
|
|
|
}
|
|
|
|
|
2020-07-12 20:27:56 +02:00
|
|
|
int ProviderRs232::close()
|
2013-11-05 16:46:17 +01:00
|
|
|
{
|
2020-07-12 20:27:56 +02:00
|
|
|
int retval = 0;
|
2016-08-23 20:07:12 +02:00
|
|
|
|
2020-07-12 20:27:56 +02:00
|
|
|
_isDeviceReady = false;
|
2019-12-15 13:43:50 +01:00
|
|
|
|
2020-07-12 20:27:56 +02:00
|
|
|
// Test, if device requires closing
|
2013-11-05 16:46:17 +01:00
|
|
|
if (_rs232Port.isOpen())
|
2016-07-20 16:04:56 +02:00
|
|
|
{
|
2020-07-12 20:27:56 +02:00
|
|
|
if ( _rs232Port.flush() )
|
|
|
|
{
|
|
|
|
Debug(_log,"Flush was successful");
|
|
|
|
}
|
|
|
|
Debug(_log,"Close UART: %s", QSTRING_CSTR(_deviceName) );
|
2013-11-05 16:46:17 +01:00
|
|
|
_rs232Port.close();
|
2020-07-12 20:27:56 +02:00
|
|
|
// Everything is OK -> device is closed
|
2016-07-20 16:04:56 +02:00
|
|
|
}
|
2020-07-12 20:27:56 +02:00
|
|
|
return retval;
|
2013-11-05 16:46:17 +01:00
|
|
|
}
|
|
|
|
|
2020-07-12 20:27:56 +02:00
|
|
|
bool ProviderRs232::powerOff()
|
2013-11-05 16:46:17 +01:00
|
|
|
{
|
2020-07-12 20:27:56 +02:00
|
|
|
// Simulate power-off by writing a final "Black" to have a defined outcome
|
|
|
|
bool rc = false;
|
|
|
|
if ( writeBlack( NUM_POWEROFF_WRITE_BLACK ) >= 0 )
|
2020-02-10 15:21:58 +01:00
|
|
|
{
|
2020-07-12 20:27:56 +02:00
|
|
|
rc = true;
|
2020-02-10 15:21:58 +01:00
|
|
|
}
|
2020-07-12 20:27:56 +02:00
|
|
|
return rc;
|
2020-02-10 15:21:58 +01:00
|
|
|
}
|
2014-05-04 11:31:13 +02:00
|
|
|
|
2016-09-25 22:20:01 +02:00
|
|
|
bool ProviderRs232::tryOpen(const int delayAfterConnect_ms)
|
2016-06-23 00:11:09 +02:00
|
|
|
{
|
2017-02-09 20:10:57 +01:00
|
|
|
if (_deviceName.isEmpty() || _rs232Port.portName().isEmpty())
|
|
|
|
{
|
2020-07-12 20:27:56 +02:00
|
|
|
if (!_rs232Port.isOpen())
|
2017-02-09 20:10:57 +01:00
|
|
|
{
|
2020-07-12 20:27:56 +02:00
|
|
|
if ( _isAutoDeviceName )
|
2017-02-09 20:10:57 +01:00
|
|
|
{
|
2020-07-12 20:27:56 +02:00
|
|
|
_deviceName = discoverFirst();
|
|
|
|
if (_deviceName.isEmpty())
|
|
|
|
{
|
|
|
|
this->setInError( QString("No serial device found automatically!") );
|
|
|
|
return false;
|
|
|
|
}
|
2017-02-09 20:10:57 +01:00
|
|
|
}
|
|
|
|
}
|
2020-07-12 20:27:56 +02:00
|
|
|
|
2017-02-09 20:10:57 +01:00
|
|
|
_rs232Port.setPortName(_deviceName);
|
|
|
|
}
|
|
|
|
|
2020-07-12 20:27:56 +02:00
|
|
|
if (!_rs232Port.isOpen())
|
2016-06-23 00:11:09 +02:00
|
|
|
{
|
2020-07-12 20:27:56 +02:00
|
|
|
Info(_log, "Opening UART: %s", QSTRING_CSTR(_deviceName));
|
|
|
|
|
2017-02-09 20:10:57 +01:00
|
|
|
_frameDropCounter = 0;
|
2020-06-28 22:45:43 +02:00
|
|
|
|
2020-07-12 20:27:56 +02:00
|
|
|
_rs232Port.setBaudRate( _baudRate_Hz );
|
|
|
|
|
|
|
|
Debug(_log, "_rs232Port.open(QIODevice::WriteOnly): %s, Baud rate [%d]bps", QSTRING_CSTR(_deviceName), _baudRate_Hz);
|
|
|
|
|
2020-06-28 22:45:43 +02:00
|
|
|
QSerialPortInfo serialPortInfo(_deviceName);
|
2020-07-12 20:27:56 +02:00
|
|
|
|
|
|
|
QJsonObject portInfo;
|
|
|
|
Debug(_log, "portName: %s", QSTRING_CSTR(serialPortInfo.portName()));
|
|
|
|
Debug(_log, "systemLocation: %s", QSTRING_CSTR(serialPortInfo.systemLocation()));
|
|
|
|
Debug(_log, "description: %s", QSTRING_CSTR(serialPortInfo.description()));
|
|
|
|
Debug(_log, "manufacturer: %s", QSTRING_CSTR(serialPortInfo.manufacturer()));
|
|
|
|
Debug(_log, "productIdentifier: %s", QSTRING_CSTR(QString("0x%1").arg(serialPortInfo.productIdentifier(), 0, 16)));
|
|
|
|
Debug(_log, "vendorIdentifier: %s", QSTRING_CSTR(QString("0x%1").arg(serialPortInfo.vendorIdentifier(), 0, 16)));
|
|
|
|
Debug(_log, "serialNumber: %s", QSTRING_CSTR(serialPortInfo.serialNumber()));
|
|
|
|
|
|
|
|
if (!serialPortInfo.isNull() )
|
2014-05-04 11:31:13 +02:00
|
|
|
{
|
2020-07-12 20:27:56 +02:00
|
|
|
if ( !_rs232Port.open(QIODevice::WriteOnly) )
|
2017-02-09 20:10:57 +01:00
|
|
|
{
|
2020-07-12 20:27:56 +02:00
|
|
|
this->setInError(_rs232Port.errorString());
|
2017-02-09 20:10:57 +01:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2020-06-28 22:45:43 +02:00
|
|
|
QString errortext = QString("Invalid serial device name: [%1]!").arg(_deviceName);
|
2020-07-12 20:27:56 +02:00
|
|
|
this->setInError( errortext );
|
2016-06-23 00:11:09 +02:00
|
|
|
return false;
|
2014-05-04 11:31:13 +02:00
|
|
|
}
|
2013-11-05 16:46:17 +01:00
|
|
|
}
|
2016-07-20 16:04:56 +02:00
|
|
|
|
2016-09-25 22:20:01 +02:00
|
|
|
if (delayAfterConnect_ms > 0)
|
2013-11-05 16:46:17 +01:00
|
|
|
{
|
2020-07-12 20:27:56 +02:00
|
|
|
|
|
|
|
Debug(_log, "delayAfterConnect for %d ms - start", delayAfterConnect_ms);
|
|
|
|
|
|
|
|
// Wait delayAfterConnect_ms before allowing write
|
|
|
|
QEventLoop loop;
|
2020-08-02 22:32:00 +02:00
|
|
|
QTimer::singleShot(delayAfterConnect_ms, &loop, &QEventLoop::quit);
|
2020-07-12 20:27:56 +02:00
|
|
|
loop.exec();
|
|
|
|
|
|
|
|
Debug(_log, "delayAfterConnect for %d ms - finished", delayAfterConnect_ms);
|
2013-11-05 16:46:17 +01:00
|
|
|
}
|
|
|
|
|
2016-06-23 00:11:09 +02:00
|
|
|
return _rs232Port.isOpen();
|
2013-11-05 16:46:17 +01:00
|
|
|
}
|
|
|
|
|
2020-07-12 20:27:56 +02:00
|
|
|
void ProviderRs232::setInError(const QString& errorMsg)
|
|
|
|
{
|
|
|
|
_rs232Port.clearError();
|
|
|
|
this->close();
|
2016-06-23 00:11:09 +02:00
|
|
|
|
2020-07-12 20:27:56 +02:00
|
|
|
LedDevice::setInError( errorMsg );
|
|
|
|
}
|
|
|
|
|
|
|
|
int ProviderRs232::writeBytes(const qint64 size, const uint8_t *data)
|
2013-11-05 16:46:17 +01:00
|
|
|
{
|
2020-07-12 20:27:56 +02:00
|
|
|
DebugIf(_isInSwitchOff, _log, "_inClosing [%d], enabled [%d], _deviceReady [%d], _frameDropCounter [%d]", _isInSwitchOff, this->isEnabled(), _isDeviceReady, _frameDropCounter);
|
|
|
|
|
|
|
|
int rc = 0;
|
|
|
|
if (!_rs232Port.isOpen())
|
2016-08-14 10:46:44 +02:00
|
|
|
{
|
2020-07-12 20:27:56 +02:00
|
|
|
Debug(_log, "!_rs232Port.isOpen()");
|
2014-05-04 11:41:55 +02:00
|
|
|
|
2020-07-12 20:27:56 +02:00
|
|
|
if ( !tryOpen(OPEN_TIMEOUT.count()) )
|
2016-09-25 22:20:01 +02:00
|
|
|
{
|
|
|
|
return -1;
|
|
|
|
}
|
2020-07-12 20:27:56 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
DebugIf( _isInSwitchOff, _log, "[%s]", QSTRING_CSTR(uint8_t_to_hex_string(data, size, 32)) );
|
|
|
|
|
|
|
|
qint64 bytesWritten = _rs232Port.write(reinterpret_cast<const char*>(data), size);
|
|
|
|
if (bytesWritten == -1 || bytesWritten != size)
|
|
|
|
{
|
|
|
|
this->setInError( QString ("Rs232 SerialPortError: %1").arg(_rs232Port.errorString()) );
|
|
|
|
rc = -1;
|
2013-11-05 16:46:17 +01:00
|
|
|
}
|
2016-09-25 22:20:01 +02:00
|
|
|
else
|
2016-07-20 23:26:47 +02:00
|
|
|
{
|
2020-07-12 20:27:56 +02:00
|
|
|
if (!_rs232Port.waitForBytesWritten(WRITE_TIMEOUT.count()))
|
|
|
|
{
|
|
|
|
if ( _rs232Port.error() == QSerialPort::TimeoutError )
|
|
|
|
{
|
|
|
|
Debug(_log, "Timeout after %dms: %d frames already dropped", WRITE_TIMEOUT, _frameDropCounter);
|
|
|
|
|
|
|
|
++_frameDropCounter;
|
|
|
|
|
|
|
|
// Check,if number of timeouts in a given time frame is greater than defined
|
|
|
|
// TODO: ProviderRs232::writeBytes - Add time frame to check for timeouts that devices does not close after absolute number of timeouts
|
|
|
|
if ( _frameDropCounter > MAX_WRITE_TIMEOUTS )
|
|
|
|
{
|
|
|
|
this->setInError( QString ("Timeout writing data to %1").arg(_deviceName) );
|
|
|
|
rc = -1;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
//give it another try
|
|
|
|
_rs232Port.clearError();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
this->setInError( QString ("Rs232 SerialPortError: %1").arg(_rs232Port.errorString()) );
|
|
|
|
rc = -1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
DebugIf(_isInSwitchOff,_log, "In Closing: bytesWritten [%d], _rs232Port.error() [%d], %s", bytesWritten, _rs232Port.error(), _rs232Port.error() == QSerialPort::NoError ? "No Error" : QSTRING_CSTR(_rs232Port.errorString()) );
|
|
|
|
}
|
2016-07-20 23:26:47 +02:00
|
|
|
}
|
2013-12-17 20:28:57 +01:00
|
|
|
|
2020-07-12 20:27:56 +02:00
|
|
|
DebugIf(_isInSwitchOff, _log, "[%d], _inClosing[%d], enabled [%d], _deviceReady [%d]", rc, _isInSwitchOff, this->isEnabled(), _isDeviceReady);
|
|
|
|
return rc;
|
2013-11-05 16:46:17 +01:00
|
|
|
}
|
2014-05-04 11:41:55 +02:00
|
|
|
|
2020-07-12 20:27:56 +02:00
|
|
|
QString ProviderRs232::discoverFirst()
|
2019-12-15 13:43:50 +01:00
|
|
|
{
|
2020-07-12 20:27:56 +02:00
|
|
|
// take first available USB serial port - currently no probing!
|
|
|
|
for (auto const & port : QSerialPortInfo::availablePorts())
|
|
|
|
{
|
|
|
|
if (!port.isNull() && !port.isBusy())
|
|
|
|
{
|
|
|
|
Info(_log, "found serial device: %s", QSTRING_CSTR(port.portName()));
|
|
|
|
return port.portName();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return "";
|
2019-12-15 13:43:50 +01:00
|
|
|
}
|
2016-06-23 00:11:09 +02:00
|
|
|
|
2020-07-12 20:27:56 +02:00
|
|
|
QJsonObject ProviderRs232::discover()
|
2014-05-04 11:41:55 +02:00
|
|
|
{
|
2020-07-12 20:27:56 +02:00
|
|
|
QJsonObject devicesDiscovered;
|
|
|
|
devicesDiscovered.insert("ledDeviceType", _activeDeviceType );
|
|
|
|
|
|
|
|
QJsonArray deviceList;
|
|
|
|
|
|
|
|
// Discover serial Devices
|
|
|
|
for (auto &port : QSerialPortInfo::availablePorts() )
|
|
|
|
{
|
|
|
|
if ( !port.isNull() )
|
|
|
|
{
|
|
|
|
QJsonObject portInfo;
|
|
|
|
portInfo.insert("description", port.description());
|
|
|
|
portInfo.insert("manufacturer", port.manufacturer());
|
|
|
|
portInfo.insert("portName", port.portName());
|
|
|
|
portInfo.insert("productIdentifier", QString("0x%1").arg(port.productIdentifier(), 0, 16));
|
|
|
|
portInfo.insert("serialNumber", port.serialNumber());
|
|
|
|
portInfo.insert("systemLocation", port.systemLocation());
|
|
|
|
portInfo.insert("vendorIdentifier", QString("0x%1").arg(port.vendorIdentifier(), 0, 16));
|
|
|
|
|
|
|
|
deviceList.append(portInfo);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
devicesDiscovered.insert("devices", deviceList);
|
|
|
|
return devicesDiscovered;
|
2014-05-04 11:41:55 +02:00
|
|
|
}
|