2013-08-15 21:11:02 +02:00
|
|
|
#pragma once
|
|
|
|
|
2016-09-23 08:49:22 +02:00
|
|
|
// STL includes
|
2013-08-15 21:11:02 +02:00
|
|
|
#include <fstream>
|
2020-02-10 15:21:58 +01:00
|
|
|
#include <chrono>
|
2013-08-15 21:11:02 +02:00
|
|
|
|
2013-12-17 19:50:15 +01:00
|
|
|
// Leddevice includes
|
|
|
|
#include <leddevice/LedDevice.h>
|
2013-08-15 21:11:02 +02:00
|
|
|
|
2013-09-09 04:54:13 +02:00
|
|
|
///
|
|
|
|
/// Implementation of the LedDevice that write the led-colors to an
|
|
|
|
/// ASCII-textfile('/home/pi/LedDevice.out')
|
|
|
|
///
|
2016-03-23 11:12:34 +01:00
|
|
|
class LedDeviceFile : public LedDevice
|
2013-08-15 21:11:02 +02:00
|
|
|
{
|
|
|
|
public:
|
2013-09-09 04:54:13 +02:00
|
|
|
///
|
2016-08-23 20:07:12 +02:00
|
|
|
/// Constructs specific LedDevice
|
2013-09-09 04:54:13 +02:00
|
|
|
///
|
2016-08-23 20:07:12 +02:00
|
|
|
/// @param deviceConfig json device config
|
|
|
|
///
|
2020-02-10 15:21:58 +01:00
|
|
|
explicit LedDeviceFile(const QJsonObject &deviceConfig);
|
2013-09-09 04:54:13 +02:00
|
|
|
|
|
|
|
///
|
|
|
|
/// Destructor of this test-device
|
|
|
|
///
|
2020-02-10 15:21:58 +01:00
|
|
|
virtual ~LedDeviceFile() override;
|
2013-08-15 21:11:02 +02:00
|
|
|
|
2016-08-23 20:07:12 +02:00
|
|
|
/// constructs leddevice
|
2016-10-13 21:59:58 +02:00
|
|
|
static LedDevice* construct(const QJsonObject &deviceConfig);
|
2016-08-23 20:07:12 +02:00
|
|
|
|
|
|
|
///
|
|
|
|
/// Sets configuration
|
|
|
|
///
|
|
|
|
/// @param deviceConfig the json device config
|
|
|
|
/// @return true if success
|
2020-02-10 15:21:58 +01:00
|
|
|
virtual bool init(const QJsonObject &deviceConfig) override;
|
|
|
|
|
|
|
|
public slots:
|
|
|
|
///
|
|
|
|
/// Closes the output device.
|
|
|
|
/// Includes switching-off the device and stopping refreshes
|
|
|
|
///
|
|
|
|
virtual void close() override;
|
2016-08-23 20:07:12 +02:00
|
|
|
|
2016-09-23 08:49:22 +02:00
|
|
|
protected:
|
2019-12-08 13:12:01 +01:00
|
|
|
///
|
2020-02-10 15:21:58 +01:00
|
|
|
/// Opens and initiatialises the output device
|
2019-12-08 13:12:01 +01:00
|
|
|
///
|
2020-02-10 15:21:58 +01:00
|
|
|
/// @return Zero on succes (i.e. device is ready and enabled) else negative
|
2019-12-08 13:12:01 +01:00
|
|
|
///
|
2020-02-10 15:21:58 +01:00
|
|
|
virtual int open() override;
|
|
|
|
|
2013-09-09 04:54:13 +02:00
|
|
|
///
|
|
|
|
/// Writes the given led-color values to the output stream
|
|
|
|
///
|
|
|
|
/// @param ledValues The color-value per led
|
|
|
|
///
|
|
|
|
/// @return Zero on success else negative
|
|
|
|
///
|
2020-02-10 15:21:58 +01:00
|
|
|
virtual int write(const std::vector<ColorRgb> & ledValues) override;
|
2013-08-15 21:11:02 +02:00
|
|
|
|
2013-09-09 04:54:13 +02:00
|
|
|
/// The outputstream
|
2013-08-15 21:11:02 +02:00
|
|
|
std::ofstream _ofs;
|
2019-12-08 13:12:01 +01:00
|
|
|
|
|
|
|
private:
|
|
|
|
|
|
|
|
QString _fileName;
|
|
|
|
/// Timestamp for the output record
|
|
|
|
bool _printTimeStamp;
|
2020-02-10 15:21:58 +01:00
|
|
|
/// Last write/output timestamp
|
|
|
|
std::chrono::system_clock::time_point lastWriteTime = std::chrono::system_clock::now();
|
|
|
|
|
2013-08-15 21:11:02 +02:00
|
|
|
};
|