2020-06-04 18:32:03 +00:00
|
|
|
/* Device Connection Class Implementation
|
|
|
|
*
|
|
|
|
* Copyright (c) 2020 The OSCAR Team
|
|
|
|
*
|
|
|
|
* This file is subject to the terms and conditions of the GNU General Public
|
|
|
|
* License. See the file COPYING in the main directory of the source code
|
|
|
|
* for more details. */
|
|
|
|
|
|
|
|
#include "deviceconnection.h"
|
2020-06-05 21:01:58 +00:00
|
|
|
#include <QtSerialPort/QSerialPortInfo>
|
2020-06-11 19:58:34 +00:00
|
|
|
#include <QFile>
|
|
|
|
#include <QBuffer>
|
2020-06-06 20:53:47 +00:00
|
|
|
#include <QDateTime>
|
2020-06-05 21:01:58 +00:00
|
|
|
#include <QDebug>
|
|
|
|
|
|
|
|
|
|
|
|
static QString hex(int i)
|
|
|
|
{
|
|
|
|
return QString("0x") + QString::number(i, 16).toUpper();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2020-06-06 20:53:47 +00:00
|
|
|
// MARK: -
|
2020-06-11 20:27:52 +00:00
|
|
|
// MARK: XML record/playback base classes
|
2020-06-11 19:58:34 +00:00
|
|
|
|
2020-06-13 20:58:46 +00:00
|
|
|
class XmlRecorder
|
2020-06-11 19:58:34 +00:00
|
|
|
{
|
|
|
|
public:
|
2020-06-13 20:58:46 +00:00
|
|
|
XmlRecorder(class QFile * file);
|
|
|
|
XmlRecorder(QString & string);
|
|
|
|
~XmlRecorder();
|
2020-06-11 19:58:34 +00:00
|
|
|
inline QXmlStreamWriter & xml() { return *m_xml; }
|
2020-06-16 20:48:52 +00:00
|
|
|
inline void lock() { m_mutex.lock(); }
|
|
|
|
inline void unlock() { m_mutex.unlock(); }
|
2020-06-11 19:58:34 +00:00
|
|
|
protected:
|
|
|
|
QFile* m_file; // nullptr for non-file recordings
|
|
|
|
QXmlStreamWriter* m_xml;
|
2020-06-16 20:48:52 +00:00
|
|
|
QMutex m_mutex;
|
2020-06-11 19:58:34 +00:00
|
|
|
|
|
|
|
void prologue();
|
|
|
|
void epilogue();
|
|
|
|
};
|
|
|
|
|
2020-06-16 20:43:16 +00:00
|
|
|
class XmlReplayEvent;
|
|
|
|
|
2020-06-11 19:58:34 +00:00
|
|
|
class XmlReplay
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
XmlReplay(class QFile * file);
|
|
|
|
XmlReplay(QXmlStreamReader & xml);
|
|
|
|
~XmlReplay();
|
2020-06-16 20:43:16 +00:00
|
|
|
template<class T> inline T* getNextEvent(const QString & id = "");
|
2020-06-11 19:58:34 +00:00
|
|
|
|
|
|
|
protected:
|
|
|
|
void deserialize(QXmlStreamReader & xml);
|
|
|
|
void deserializeEvents(QXmlStreamReader & xml);
|
|
|
|
|
2020-06-16 20:43:16 +00:00
|
|
|
QHash<QString,QHash<QString,QList<XmlReplayEvent*>>> m_eventIndex;
|
|
|
|
QList<XmlReplayEvent*> m_events;
|
2020-06-11 19:58:34 +00:00
|
|
|
|
2020-06-16 20:43:16 +00:00
|
|
|
XmlReplayEvent* getNextEvent(const QString & type, const QString & id = "");
|
2020-06-11 19:58:34 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
class XmlReplayEvent
|
2020-06-06 20:53:47 +00:00
|
|
|
{
|
2020-06-11 19:58:34 +00:00
|
|
|
public:
|
|
|
|
XmlReplayEvent();
|
|
|
|
virtual ~XmlReplayEvent() = default;
|
|
|
|
virtual const QString & tag() const = 0;
|
2020-06-16 20:43:16 +00:00
|
|
|
virtual const QString & id() const { static const QString none(""); return none; };
|
2020-06-11 19:58:34 +00:00
|
|
|
|
2020-06-13 20:58:46 +00:00
|
|
|
void record(XmlRecorder* xml);
|
2020-06-11 19:58:34 +00:00
|
|
|
friend QXmlStreamWriter & operator<<(QXmlStreamWriter & xml, const XmlReplayEvent & event);
|
|
|
|
friend QXmlStreamReader & operator>>(QXmlStreamReader & xml, XmlReplayEvent & event);
|
|
|
|
|
|
|
|
typedef XmlReplayEvent* (*FactoryMethod)();
|
|
|
|
static bool registerClass(const QString & tag, FactoryMethod factory);
|
|
|
|
static XmlReplayEvent* createInstance(const QString & tag);
|
|
|
|
|
|
|
|
protected:
|
|
|
|
static QHash<QString,FactoryMethod> s_factories;
|
|
|
|
|
|
|
|
QDateTime m_time;
|
2020-06-16 20:43:16 +00:00
|
|
|
XmlReplayEvent* m_next;
|
2020-06-11 19:58:34 +00:00
|
|
|
|
|
|
|
virtual void write(QXmlStreamWriter & /*xml*/) const {}
|
|
|
|
virtual void read(QXmlStreamReader & /*xml*/) {}
|
2020-06-16 20:43:16 +00:00
|
|
|
|
|
|
|
friend class XmlReplay;
|
2020-06-11 19:58:34 +00:00
|
|
|
};
|
|
|
|
QHash<QString,XmlReplayEvent::FactoryMethod> XmlReplayEvent::s_factories;
|
|
|
|
|
|
|
|
|
2020-06-13 20:58:46 +00:00
|
|
|
XmlRecorder::XmlRecorder(QFile* stream)
|
2020-06-11 19:58:34 +00:00
|
|
|
: m_file(stream), m_xml(new QXmlStreamWriter(stream))
|
|
|
|
{
|
|
|
|
prologue();
|
2020-06-06 20:53:47 +00:00
|
|
|
}
|
|
|
|
|
2020-06-13 20:58:46 +00:00
|
|
|
XmlRecorder::XmlRecorder(QString & string)
|
2020-06-11 19:58:34 +00:00
|
|
|
: m_file(nullptr), m_xml(new QXmlStreamWriter(&string))
|
2020-06-06 20:53:47 +00:00
|
|
|
{
|
2020-06-11 19:58:34 +00:00
|
|
|
prologue();
|
2020-06-06 20:53:47 +00:00
|
|
|
}
|
|
|
|
|
2020-06-13 20:58:46 +00:00
|
|
|
XmlRecorder::~XmlRecorder()
|
2020-06-06 20:53:47 +00:00
|
|
|
{
|
2020-06-11 19:58:34 +00:00
|
|
|
epilogue();
|
|
|
|
delete m_xml;
|
|
|
|
}
|
|
|
|
|
2020-06-13 20:58:46 +00:00
|
|
|
void XmlRecorder::prologue()
|
2020-06-11 19:58:34 +00:00
|
|
|
{
|
|
|
|
Q_ASSERT(m_xml);
|
|
|
|
m_xml->setAutoFormatting(true);
|
|
|
|
m_xml->setAutoFormattingIndent(2);
|
|
|
|
|
|
|
|
m_xml->writeStartElement("xmlreplay");
|
|
|
|
m_xml->writeStartElement("events");
|
|
|
|
}
|
|
|
|
|
2020-06-13 20:58:46 +00:00
|
|
|
void XmlRecorder::epilogue()
|
2020-06-11 19:58:34 +00:00
|
|
|
{
|
|
|
|
Q_ASSERT(m_xml);
|
|
|
|
m_xml->writeEndElement(); // close events
|
|
|
|
// TODO: write out any inline connections
|
|
|
|
m_xml->writeEndElement(); // close xmlreplay
|
|
|
|
}
|
|
|
|
|
|
|
|
XmlReplay::XmlReplay(QFile* file)
|
|
|
|
{
|
|
|
|
QXmlStreamReader xml(file);
|
|
|
|
deserialize(xml);
|
|
|
|
}
|
|
|
|
|
|
|
|
XmlReplay::XmlReplay(QXmlStreamReader & xml)
|
|
|
|
{
|
|
|
|
deserialize(xml);
|
|
|
|
}
|
|
|
|
|
|
|
|
XmlReplay::~XmlReplay()
|
|
|
|
{
|
2020-06-16 20:43:16 +00:00
|
|
|
for (auto event : m_events) {
|
|
|
|
delete event;
|
2020-06-11 19:58:34 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void XmlReplay::deserialize(QXmlStreamReader & xml)
|
|
|
|
{
|
|
|
|
if (xml.readNextStartElement()) {
|
|
|
|
if (xml.name() == "xmlreplay") {
|
|
|
|
while (xml.readNextStartElement()) {
|
|
|
|
if (xml.name() == "events") {
|
|
|
|
deserializeEvents(xml);
|
|
|
|
// else TODO: inline connections
|
|
|
|
} else {
|
|
|
|
qWarning() << "unexpected payload in replay XML:" << xml.name();
|
|
|
|
xml.skipCurrentElement();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void XmlReplay::deserializeEvents(QXmlStreamReader & xml)
|
|
|
|
{
|
|
|
|
while (xml.readNextStartElement()) {
|
2020-06-16 20:43:16 +00:00
|
|
|
QString type = xml.name().toString();
|
|
|
|
XmlReplayEvent* event = XmlReplayEvent::createInstance(type);
|
2020-06-11 19:58:34 +00:00
|
|
|
if (event) {
|
|
|
|
xml >> *event;
|
2020-06-16 20:43:16 +00:00
|
|
|
|
|
|
|
// Add to list
|
|
|
|
if (m_events.isEmpty() == false) {
|
|
|
|
m_events.last()->m_next = event;
|
|
|
|
}
|
|
|
|
m_events.append(event);
|
|
|
|
|
|
|
|
// Add to index
|
|
|
|
const QString & id = event->id();
|
|
|
|
auto & events = m_eventIndex[type][id];
|
2020-06-11 19:58:34 +00:00
|
|
|
events.append(event);
|
|
|
|
} else {
|
|
|
|
xml.skipCurrentElement();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-06-16 20:43:16 +00:00
|
|
|
XmlReplayEvent* XmlReplay::getNextEvent(const QString & type, const QString & id)
|
2020-06-11 19:58:34 +00:00
|
|
|
{
|
|
|
|
XmlReplayEvent* event = nullptr;
|
|
|
|
|
2020-06-16 20:43:16 +00:00
|
|
|
if (m_eventIndex.contains(type)) {
|
|
|
|
auto & ids = m_eventIndex[type];
|
|
|
|
if (ids.contains(id)) {
|
|
|
|
auto & events = ids[id];
|
|
|
|
if (events.isEmpty() == false) {
|
|
|
|
event = events.first();
|
|
|
|
// TODO: if we're simulating the original timing, return nullptr if we haven't reached this event's time yet;
|
|
|
|
// otherwise:
|
|
|
|
events.removeFirst();
|
|
|
|
}
|
2020-06-11 19:58:34 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return event;
|
|
|
|
}
|
|
|
|
|
|
|
|
template<class T>
|
2020-06-16 20:43:16 +00:00
|
|
|
T* XmlReplay::getNextEvent(const QString & id)
|
2020-06-11 19:58:34 +00:00
|
|
|
{
|
2020-06-16 20:43:16 +00:00
|
|
|
T* event = dynamic_cast<T*>(getNextEvent(T::TAG, id));
|
2020-06-11 19:58:34 +00:00
|
|
|
return event;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// MARK: -
|
2020-06-11 20:27:52 +00:00
|
|
|
// MARK: XML record/playback event base class
|
2020-06-11 19:58:34 +00:00
|
|
|
|
|
|
|
XmlReplayEvent::XmlReplayEvent()
|
2020-06-16 20:43:16 +00:00
|
|
|
: m_time(QDateTime::currentDateTime()), m_next(nullptr)
|
2020-06-11 19:58:34 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2020-06-13 20:58:46 +00:00
|
|
|
void XmlReplayEvent::record(XmlRecorder* writer)
|
2020-06-11 19:58:34 +00:00
|
|
|
{
|
|
|
|
// Do nothing if we're not recording.
|
|
|
|
if (writer != nullptr) {
|
2020-06-16 20:48:52 +00:00
|
|
|
writer->lock();
|
2020-06-11 19:58:34 +00:00
|
|
|
writer->xml() << *this;
|
2020-06-16 20:48:52 +00:00
|
|
|
writer->unlock();
|
2020-06-11 19:58:34 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
bool XmlReplayEvent::registerClass(const QString & tag, XmlReplayEvent::FactoryMethod factory)
|
|
|
|
{
|
|
|
|
if (s_factories.contains(tag)) {
|
|
|
|
qWarning() << "Event class already registered for tag" << tag;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
s_factories[tag] = factory;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
XmlReplayEvent* XmlReplayEvent::createInstance(const QString & tag)
|
|
|
|
{
|
|
|
|
XmlReplayEvent* event = nullptr;
|
|
|
|
XmlReplayEvent::FactoryMethod factory = s_factories.value(tag);
|
|
|
|
if (factory == nullptr) {
|
|
|
|
qWarning() << "No event class registered for XML tag" << tag;
|
|
|
|
} else {
|
|
|
|
event = factory();
|
|
|
|
}
|
|
|
|
return event;
|
|
|
|
}
|
|
|
|
|
|
|
|
QXmlStreamWriter & operator<<(QXmlStreamWriter & xml, const XmlReplayEvent & event)
|
|
|
|
{
|
|
|
|
QDateTime time = event.m_time.toOffsetFromUtc(event.m_time.offsetFromUtc()); // force display of UTC offset
|
|
|
|
#if QT_VERSION < QT_VERSION_CHECK(5,9,0)
|
|
|
|
// TODO: Can we please deprecate support for Qt older than 5.9?
|
|
|
|
QString timestamp = time.toString(Qt::ISODate);
|
|
|
|
#else
|
|
|
|
QString timestamp = time.toString(Qt::ISODateWithMs);
|
|
|
|
#endif
|
|
|
|
xml.writeStartElement(event.tag());
|
|
|
|
xml.writeAttribute("time", timestamp);
|
|
|
|
|
|
|
|
event.write(xml);
|
|
|
|
|
|
|
|
xml.writeEndElement();
|
|
|
|
return xml;
|
|
|
|
}
|
|
|
|
|
|
|
|
QXmlStreamReader & operator>>(QXmlStreamReader & xml, XmlReplayEvent & event)
|
|
|
|
{
|
|
|
|
Q_ASSERT(xml.isStartElement() && xml.name() == event.tag());
|
|
|
|
|
|
|
|
QDateTime time;
|
|
|
|
if (xml.attributes().hasAttribute("time")) {
|
2020-06-06 20:53:47 +00:00
|
|
|
#if QT_VERSION < QT_VERSION_CHECK(5,9,0)
|
|
|
|
// TODO: Can we please deprecate support for Qt older than 5.9?
|
2020-06-11 19:58:34 +00:00
|
|
|
time = QDateTime::fromString(xml.attributes().value("time").toString(), Qt::ISODate);
|
2020-06-06 20:53:47 +00:00
|
|
|
#else
|
2020-06-11 19:58:34 +00:00
|
|
|
time = QDateTime::fromString(xml.attributes().value("time").toString(), Qt::ISODateWithMs);
|
2020-06-06 20:53:47 +00:00
|
|
|
#endif
|
2020-06-11 19:58:34 +00:00
|
|
|
} else {
|
|
|
|
qWarning() << "Missing timestamp in" << xml.name() << "tag, using current time";
|
|
|
|
time = QDateTime::currentDateTime();
|
2020-06-06 20:53:47 +00:00
|
|
|
}
|
2020-06-11 19:58:34 +00:00
|
|
|
|
|
|
|
event.read(xml);
|
|
|
|
return xml;
|
2020-06-06 20:53:47 +00:00
|
|
|
}
|
|
|
|
|
2020-06-11 19:58:34 +00:00
|
|
|
template<typename T> QXmlStreamWriter & operator<<(QXmlStreamWriter & xml, const QList<T> & list)
|
|
|
|
{
|
|
|
|
for (auto & item : list) {
|
|
|
|
xml << item;
|
|
|
|
}
|
|
|
|
return xml;
|
|
|
|
}
|
|
|
|
|
|
|
|
template<typename T> QXmlStreamReader & operator>>(QXmlStreamReader & xml, QList<T> & list)
|
|
|
|
{
|
|
|
|
list.clear();
|
|
|
|
while (xml.readNextStartElement()) {
|
|
|
|
T item;
|
|
|
|
xml >> item;
|
|
|
|
list.append(item);
|
|
|
|
}
|
|
|
|
return xml;
|
|
|
|
}
|
|
|
|
|
2020-06-15 21:15:37 +00:00
|
|
|
// We use this extra CRTP templating so that concrete event subclasses require as little code as possible.
|
2020-06-11 19:58:34 +00:00
|
|
|
template <typename Derived>
|
|
|
|
class XmlReplayBase : public XmlReplayEvent
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
static const QString TAG;
|
|
|
|
static const bool registered;
|
|
|
|
virtual const QString & tag() const { return TAG; };
|
2020-06-06 20:53:47 +00:00
|
|
|
|
2020-06-11 19:58:34 +00:00
|
|
|
static XmlReplayEvent* createInstance()
|
|
|
|
{
|
|
|
|
Derived* instance = new Derived();
|
|
|
|
return static_cast<XmlReplayEvent*>(instance);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
#define REGISTER_XMLREPLAYEVENT(tag, type) \
|
|
|
|
template<> const QString XmlReplayBase<type>::TAG = tag; \
|
|
|
|
template<> const bool XmlReplayBase<type>::registered = XmlReplayEvent::registerClass(XmlReplayBase<type>::TAG, XmlReplayBase<type>::createInstance);
|
|
|
|
|
|
|
|
|
|
|
|
// MARK: -
|
2020-06-11 20:27:52 +00:00
|
|
|
// MARK: Device connection manager
|
|
|
|
|
|
|
|
inline DeviceConnectionManager & DeviceConnectionManager::getInstance()
|
|
|
|
{
|
|
|
|
static DeviceConnectionManager instance;
|
|
|
|
return instance;
|
|
|
|
}
|
|
|
|
|
|
|
|
DeviceConnectionManager::DeviceConnectionManager()
|
|
|
|
: m_record(nullptr), m_replay(nullptr)
|
|
|
|
{
|
|
|
|
}
|
2020-06-11 19:58:34 +00:00
|
|
|
|
|
|
|
void DeviceConnectionManager::record(QFile* stream)
|
2020-06-06 20:53:47 +00:00
|
|
|
{
|
|
|
|
if (m_record) {
|
2020-06-11 19:58:34 +00:00
|
|
|
delete m_record;
|
|
|
|
}
|
|
|
|
if (stream) {
|
2020-06-13 20:58:46 +00:00
|
|
|
m_record = new XmlRecorder(stream);
|
2020-06-11 19:58:34 +00:00
|
|
|
} else {
|
|
|
|
// nullptr turns off recording
|
|
|
|
m_record = nullptr;
|
2020-06-06 20:53:47 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-06-11 19:58:34 +00:00
|
|
|
void DeviceConnectionManager::record(QString & string)
|
2020-06-06 20:53:47 +00:00
|
|
|
{
|
2020-06-11 19:58:34 +00:00
|
|
|
if (m_record) {
|
|
|
|
delete m_record;
|
|
|
|
}
|
2020-06-13 20:58:46 +00:00
|
|
|
m_record = new XmlRecorder(string);
|
2020-06-11 19:58:34 +00:00
|
|
|
}
|
2020-06-06 20:53:47 +00:00
|
|
|
|
2020-06-11 19:58:34 +00:00
|
|
|
void DeviceConnectionManager::replay(const QString & string)
|
|
|
|
{
|
|
|
|
QXmlStreamReader xml(string);
|
|
|
|
reset();
|
|
|
|
if (m_replay) {
|
|
|
|
delete m_replay;
|
|
|
|
}
|
|
|
|
m_replay = new XmlReplay(xml);
|
|
|
|
}
|
2020-06-06 20:53:47 +00:00
|
|
|
|
2020-06-11 19:58:34 +00:00
|
|
|
void DeviceConnectionManager::replay(QFile* file)
|
|
|
|
{
|
|
|
|
reset();
|
2020-06-06 20:53:47 +00:00
|
|
|
if (m_replay) {
|
2020-06-11 19:58:34 +00:00
|
|
|
delete m_replay;
|
|
|
|
}
|
|
|
|
if (file) {
|
|
|
|
m_replay = new XmlReplay(file);
|
2020-06-06 20:53:47 +00:00
|
|
|
} else {
|
2020-06-11 19:58:34 +00:00
|
|
|
// nullptr turns off replay
|
|
|
|
m_replay = nullptr;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-06-15 21:15:37 +00:00
|
|
|
DeviceConnection* DeviceConnectionManager::openConnection(const QString & type, const QString & name)
|
|
|
|
{
|
|
|
|
if (!s_factories.contains(type)) {
|
|
|
|
qWarning() << "Unknown device connection type:" << type;
|
|
|
|
return nullptr;
|
|
|
|
}
|
2020-06-16 16:19:32 +00:00
|
|
|
if (m_connections.contains(name)) {
|
|
|
|
qWarning() << "connection to" << name << "already open";
|
2020-06-15 21:15:37 +00:00
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
DeviceConnection* conn = s_factories[type](name, m_record, m_replay);
|
|
|
|
if (conn) {
|
|
|
|
if (conn->open()) {
|
2020-06-16 16:19:32 +00:00
|
|
|
m_connections[name] = conn;
|
2020-06-15 21:15:37 +00:00
|
|
|
} else {
|
|
|
|
qWarning().noquote() << "unable to open" << type << "connection to" << name;
|
|
|
|
delete conn;
|
|
|
|
conn = nullptr;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
qWarning() << "unable to create" << type << "connection to" << name;
|
|
|
|
}
|
|
|
|
// TODO: record event
|
|
|
|
return conn;
|
|
|
|
}
|
|
|
|
|
|
|
|
void DeviceConnectionManager::connectionClosed(DeviceConnection* conn)
|
|
|
|
{
|
|
|
|
Q_ASSERT(conn);
|
|
|
|
const QString & type = conn->type();
|
|
|
|
const QString & name = conn->name();
|
|
|
|
|
2020-06-16 16:19:32 +00:00
|
|
|
if (m_connections.contains(name)) {
|
|
|
|
if (m_connections[name] == conn) {
|
|
|
|
m_connections.remove(name);
|
2020-06-15 21:15:37 +00:00
|
|
|
} else {
|
2020-06-16 16:19:32 +00:00
|
|
|
qWarning() << "connection to" << name << "not created by openConnection!";
|
2020-06-15 21:15:37 +00:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
qWarning() << type << "connection to" << name << "missing";
|
|
|
|
}
|
|
|
|
// TODO: record event
|
|
|
|
}
|
|
|
|
|
|
|
|
// Temporary convenience function for code that still supports only serial ports.
|
|
|
|
SerialPortConnection* DeviceConnectionManager::openSerialPortConnection(const QString & portName)
|
|
|
|
{
|
|
|
|
return dynamic_cast<SerialPortConnection*>(getInstance().openConnection(SerialPortConnection::TYPE, portName));
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
QHash<QString,DeviceConnection::FactoryMethod> DeviceConnectionManager::s_factories;
|
|
|
|
|
|
|
|
bool DeviceConnectionManager::registerClass(const QString & type, DeviceConnection::FactoryMethod factory)
|
|
|
|
{
|
|
|
|
if (s_factories.contains(type)) {
|
|
|
|
qWarning() << "Connection class already registered for type" << type;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
s_factories[type] = factory;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
#define REGISTER_DEVICECONNECTION(type, T) \
|
|
|
|
const QString T::TYPE = type; \
|
|
|
|
const bool T::registered = DeviceConnectionManager::registerClass(T::TYPE, T::createInstance); \
|
|
|
|
DeviceConnection* T::createInstance(const QString & name, XmlRecorder* record, XmlReplay* replay) { return static_cast<DeviceConnection*>(new T(name, record, replay)); }
|
2020-06-11 19:58:34 +00:00
|
|
|
|
|
|
|
// MARK: -
|
2020-06-11 20:27:52 +00:00
|
|
|
// MARK: Device manager events
|
2020-06-11 19:58:34 +00:00
|
|
|
|
2020-06-16 16:19:32 +00:00
|
|
|
class GetAvailableSerialPortsEvent : public XmlReplayBase<GetAvailableSerialPortsEvent>
|
2020-06-11 19:58:34 +00:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
QList<SerialPortInfo> m_ports;
|
|
|
|
|
|
|
|
protected:
|
|
|
|
virtual void write(QXmlStreamWriter & xml) const
|
|
|
|
{
|
|
|
|
xml << m_ports;
|
|
|
|
}
|
|
|
|
virtual void read(QXmlStreamReader & xml)
|
|
|
|
{
|
|
|
|
xml >> m_ports;
|
|
|
|
}
|
|
|
|
};
|
2020-06-16 16:19:32 +00:00
|
|
|
REGISTER_XMLREPLAYEVENT("getAvailableSerialPorts", GetAvailableSerialPortsEvent);
|
2020-06-11 19:58:34 +00:00
|
|
|
|
|
|
|
|
2020-06-16 16:19:32 +00:00
|
|
|
QList<SerialPortInfo> DeviceConnectionManager::getAvailableSerialPorts()
|
2020-06-11 19:58:34 +00:00
|
|
|
{
|
2020-06-16 16:19:32 +00:00
|
|
|
GetAvailableSerialPortsEvent event;
|
2020-06-11 19:58:34 +00:00
|
|
|
|
|
|
|
if (!m_replay) {
|
2020-06-06 20:53:47 +00:00
|
|
|
for (auto & info : QSerialPortInfo::availablePorts()) {
|
2020-06-11 19:58:34 +00:00
|
|
|
event.m_ports.append(SerialPortInfo(info));
|
|
|
|
}
|
|
|
|
} else {
|
2020-06-16 16:19:32 +00:00
|
|
|
auto replayEvent = m_replay->getNextEvent<GetAvailableSerialPortsEvent>();
|
2020-06-11 19:58:34 +00:00
|
|
|
if (replayEvent) {
|
|
|
|
event.m_ports = replayEvent->m_ports;
|
|
|
|
} else {
|
|
|
|
// If there are no replay events available, reuse the most recent state.
|
|
|
|
event.m_ports = m_serialPorts;
|
2020-06-06 20:53:47 +00:00
|
|
|
}
|
|
|
|
}
|
2020-06-11 19:58:34 +00:00
|
|
|
m_serialPorts = event.m_ports;
|
2020-06-06 20:53:47 +00:00
|
|
|
|
2020-06-11 19:58:34 +00:00
|
|
|
event.record(m_record);
|
|
|
|
return event.m_ports;
|
2020-06-06 20:53:47 +00:00
|
|
|
}
|
|
|
|
|
2020-06-11 19:58:34 +00:00
|
|
|
|
2020-06-05 21:01:58 +00:00
|
|
|
// MARK: -
|
2020-06-11 20:27:52 +00:00
|
|
|
// MARK: Serial port info
|
2020-06-04 18:32:03 +00:00
|
|
|
|
|
|
|
SerialPortInfo::SerialPortInfo(const QSerialPortInfo & other)
|
|
|
|
{
|
2020-06-05 21:01:58 +00:00
|
|
|
if (other.isNull() == false) {
|
|
|
|
m_info["portName"] = other.portName();
|
|
|
|
m_info["systemLocation"] = other.systemLocation();
|
|
|
|
m_info["description"] = other.description();
|
|
|
|
m_info["manufacturer"] = other.manufacturer();
|
|
|
|
m_info["serialNumber"] = other.serialNumber();
|
|
|
|
if (other.hasVendorIdentifier()) {
|
|
|
|
m_info["vendorIdentifier"] = other.vendorIdentifier();
|
|
|
|
}
|
|
|
|
if (other.hasProductIdentifier()) {
|
|
|
|
m_info["productIdentifier"] = other.productIdentifier();
|
|
|
|
}
|
|
|
|
}
|
2020-06-04 18:32:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
SerialPortInfo::SerialPortInfo(const SerialPortInfo & other)
|
2020-06-05 21:01:58 +00:00
|
|
|
: m_info(other.m_info)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
SerialPortInfo::SerialPortInfo(const QString & data)
|
2020-06-04 18:32:03 +00:00
|
|
|
{
|
2020-06-05 21:01:58 +00:00
|
|
|
QXmlStreamReader xml(data);
|
|
|
|
xml.readNextStartElement();
|
|
|
|
xml >> *this;
|
2020-06-04 18:32:03 +00:00
|
|
|
}
|
|
|
|
|
2020-06-11 19:58:34 +00:00
|
|
|
SerialPortInfo::SerialPortInfo()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2020-06-06 20:53:47 +00:00
|
|
|
// TODO: This is a temporary wrapper until we begin refactoring.
|
2020-06-04 18:32:03 +00:00
|
|
|
QList<SerialPortInfo> SerialPortInfo::availablePorts()
|
|
|
|
{
|
2020-06-16 16:19:32 +00:00
|
|
|
return DeviceConnectionManager::getInstance().getAvailableSerialPorts();
|
2020-06-04 18:32:03 +00:00
|
|
|
}
|
2020-06-05 21:01:58 +00:00
|
|
|
|
|
|
|
QXmlStreamWriter & operator<<(QXmlStreamWriter & xml, const SerialPortInfo & info)
|
|
|
|
{
|
|
|
|
xml.writeStartElement("serial");
|
|
|
|
if (info.isNull() == false) {
|
|
|
|
xml.writeAttribute("portName", info.portName());
|
|
|
|
xml.writeAttribute("systemLocation", info.systemLocation());
|
|
|
|
xml.writeAttribute("description", info.description());
|
|
|
|
xml.writeAttribute("manufacturer", info.manufacturer());
|
|
|
|
xml.writeAttribute("serialNumber", info.serialNumber());
|
|
|
|
if (info.hasVendorIdentifier()) {
|
|
|
|
xml.writeAttribute("vendorIdentifier", hex(info.vendorIdentifier()));
|
|
|
|
}
|
|
|
|
if (info.hasProductIdentifier()) {
|
|
|
|
xml.writeAttribute("productIdentifier", hex(info.productIdentifier()));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
xml.writeEndElement();
|
|
|
|
return xml;
|
|
|
|
}
|
|
|
|
|
|
|
|
QXmlStreamReader & operator>>(QXmlStreamReader & xml, SerialPortInfo & info)
|
|
|
|
{
|
|
|
|
if (xml.atEnd() == false && xml.isStartElement() && xml.name() == "serial") {
|
|
|
|
for (auto & attribute : xml.attributes()) {
|
|
|
|
QString name = attribute.name().toString();
|
|
|
|
QString value = attribute.value().toString();
|
|
|
|
if (name == "vendorIdentifier" || name == "productIdentifier") {
|
|
|
|
bool ok;
|
|
|
|
quint16 id = value.toUInt(&ok, 0);
|
|
|
|
if (ok) {
|
|
|
|
info.m_info[name] = id;
|
|
|
|
} else {
|
|
|
|
qWarning() << "invalid" << name << "value" << value;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
info.m_info[name] = value;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
qWarning() << "no <serial> tag";
|
|
|
|
}
|
2020-06-11 19:58:34 +00:00
|
|
|
xml.skipCurrentElement();
|
2020-06-05 21:01:58 +00:00
|
|
|
return xml;
|
|
|
|
}
|
|
|
|
|
|
|
|
SerialPortInfo::operator QString() const
|
|
|
|
{
|
|
|
|
QString out;
|
|
|
|
QXmlStreamWriter xml(&out);
|
|
|
|
xml << *this;
|
|
|
|
return out;
|
|
|
|
}
|
2020-06-11 19:58:34 +00:00
|
|
|
|
|
|
|
bool SerialPortInfo::operator==(const SerialPortInfo & other) const
|
|
|
|
{
|
|
|
|
return m_info == other.m_info;
|
|
|
|
}
|
2020-06-11 20:27:52 +00:00
|
|
|
|
|
|
|
|
|
|
|
// MARK: -
|
2020-06-15 21:15:37 +00:00
|
|
|
// MARK: Device connection base class
|
|
|
|
|
|
|
|
DeviceConnection::DeviceConnection(const QString & name, XmlRecorder* record, XmlReplay* replay)
|
|
|
|
: m_name(name), m_record(record), m_replay(replay), m_opened(false)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
DeviceConnection::~DeviceConnection()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2020-06-11 20:27:52 +00:00
|
|
|
|
2020-06-12 20:44:07 +00:00
|
|
|
// TODO: log these to XML stream
|
2020-06-12 02:29:46 +00:00
|
|
|
|
2020-06-13 20:58:46 +00:00
|
|
|
class ConnectionEvent
|
2020-06-12 02:29:46 +00:00
|
|
|
{
|
|
|
|
public:
|
2020-06-13 20:58:46 +00:00
|
|
|
ConnectionEvent(const QString & tag)
|
2020-06-12 20:44:07 +00:00
|
|
|
: m_tag(tag)
|
2020-06-12 02:29:46 +00:00
|
|
|
{
|
|
|
|
}
|
2020-06-12 20:44:07 +00:00
|
|
|
void set(const QString & name, const QString & value)
|
2020-06-12 02:29:46 +00:00
|
|
|
{
|
|
|
|
m_values[name] = value;
|
|
|
|
m_keys.append(name);
|
|
|
|
}
|
2020-06-12 20:44:07 +00:00
|
|
|
void set(const QString & name, qint64 value)
|
|
|
|
{
|
|
|
|
set(name, QString::number(value));
|
|
|
|
}
|
2020-06-13 20:58:46 +00:00
|
|
|
void setData(const char* data, qint64 length)
|
2020-06-12 20:44:07 +00:00
|
|
|
{
|
2020-06-13 20:58:46 +00:00
|
|
|
QStringList bytes;
|
|
|
|
for (qint64 i = 0; i < length; i++) {
|
|
|
|
bytes.append(QString("%1").arg((unsigned char) data[i], 2, 16, QChar('0')).toUpper());
|
2020-06-12 20:44:07 +00:00
|
|
|
}
|
2020-06-13 20:58:46 +00:00
|
|
|
m_data = bytes.join(QChar(' '));
|
2020-06-12 20:44:07 +00:00
|
|
|
}
|
2020-06-12 02:29:46 +00:00
|
|
|
inline bool ok() const { return m_values.contains("error") == false; }
|
|
|
|
operator QString() const;
|
|
|
|
|
|
|
|
protected:
|
2020-06-12 20:44:07 +00:00
|
|
|
const QString m_tag;
|
|
|
|
QHash<QString,QString> m_values;
|
2020-06-12 02:29:46 +00:00
|
|
|
QList<QString> m_keys;
|
2020-06-12 20:44:07 +00:00
|
|
|
QString m_data;
|
2020-06-13 20:58:46 +00:00
|
|
|
friend QXmlStreamWriter & operator<<(QXmlStreamWriter & xml, const ConnectionEvent & event);
|
2020-06-12 20:44:07 +00:00
|
|
|
};
|
|
|
|
|
2020-06-13 20:58:46 +00:00
|
|
|
class SetValueEvent : public ConnectionEvent
|
2020-06-12 20:44:07 +00:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
SetValueEvent(const QString & name, int value)
|
2020-06-13 20:58:46 +00:00
|
|
|
: ConnectionEvent("set")
|
2020-06-12 20:44:07 +00:00
|
|
|
{
|
|
|
|
set(name, value);
|
|
|
|
}
|
2020-06-12 02:29:46 +00:00
|
|
|
};
|
|
|
|
|
2020-06-13 20:58:46 +00:00
|
|
|
ConnectionEvent::operator QString() const
|
2020-06-12 02:29:46 +00:00
|
|
|
{
|
|
|
|
QString out;
|
|
|
|
QXmlStreamWriter xml(&out);
|
|
|
|
xml << *this;
|
|
|
|
return out;
|
|
|
|
}
|
|
|
|
|
2020-06-13 20:58:46 +00:00
|
|
|
QXmlStreamWriter & operator<<(QXmlStreamWriter & xml, const ConnectionEvent & event)
|
2020-06-12 02:29:46 +00:00
|
|
|
{
|
2020-06-12 20:44:07 +00:00
|
|
|
xml.writeStartElement(event.m_tag);
|
2020-06-12 02:29:46 +00:00
|
|
|
for (auto key : event.m_keys) {
|
2020-06-12 20:44:07 +00:00
|
|
|
xml.writeAttribute(key, event.m_values[key]);
|
|
|
|
}
|
|
|
|
if (!event.m_data.isEmpty()) {
|
|
|
|
xml.writeCharacters(event.m_data);
|
2020-06-12 02:29:46 +00:00
|
|
|
}
|
|
|
|
xml.writeEndElement();
|
|
|
|
return xml;
|
|
|
|
}
|
|
|
|
|
2020-06-12 20:44:07 +00:00
|
|
|
|
2020-06-15 21:15:37 +00:00
|
|
|
// MARK: -
|
|
|
|
// MARK: Serial port connection
|
|
|
|
|
|
|
|
REGISTER_DEVICECONNECTION("serial", SerialPortConnection);
|
2020-06-12 02:29:46 +00:00
|
|
|
|
2020-06-15 21:15:37 +00:00
|
|
|
SerialPortConnection::SerialPortConnection(const QString & name, XmlRecorder* record, XmlReplay* replay)
|
|
|
|
: DeviceConnection(name, record, replay)
|
2020-06-12 02:29:46 +00:00
|
|
|
{
|
|
|
|
connect(&m_port, SIGNAL(readyRead()), this, SLOT(onReadyRead()));
|
|
|
|
}
|
|
|
|
|
2020-06-13 20:58:46 +00:00
|
|
|
SerialPortConnection::~SerialPortConnection()
|
2020-06-12 02:29:46 +00:00
|
|
|
{
|
2020-06-15 21:15:37 +00:00
|
|
|
if (m_opened) {
|
|
|
|
close();
|
|
|
|
DeviceConnectionManager::getInstance().connectionClosed(this);
|
|
|
|
}
|
2020-06-12 02:29:46 +00:00
|
|
|
disconnect(&m_port, SIGNAL(readyRead()), this, SLOT(onReadyRead()));
|
|
|
|
}
|
|
|
|
|
2020-06-15 21:15:37 +00:00
|
|
|
bool SerialPortConnection::open()
|
2020-06-12 02:29:46 +00:00
|
|
|
{
|
2020-06-15 21:15:37 +00:00
|
|
|
if (m_opened) {
|
|
|
|
qWarning() << "serial connection to" << m_name << "already opened";
|
|
|
|
return false;
|
|
|
|
}
|
2020-06-13 20:58:46 +00:00
|
|
|
ConnectionEvent event("openConnection");
|
2020-06-12 20:44:07 +00:00
|
|
|
event.set("type", "serial");
|
2020-06-15 21:15:37 +00:00
|
|
|
event.set("name", m_name);
|
2020-06-12 20:44:07 +00:00
|
|
|
|
2020-06-15 21:15:37 +00:00
|
|
|
m_port.setPortName(m_name);
|
|
|
|
checkResult(m_port.open(QSerialPort::ReadWrite), event);
|
2020-06-13 20:58:46 +00:00
|
|
|
|
|
|
|
// TODO: send this event back to manager to log
|
2020-06-12 20:44:07 +00:00
|
|
|
qDebug().noquote() << event;
|
|
|
|
|
2020-06-15 21:15:37 +00:00
|
|
|
m_opened = event.ok();
|
2020-06-12 20:44:07 +00:00
|
|
|
return event.ok();
|
2020-06-12 02:29:46 +00:00
|
|
|
}
|
|
|
|
|
2020-06-13 20:58:46 +00:00
|
|
|
bool SerialPortConnection::setBaudRate(qint32 baudRate, QSerialPort::Directions directions)
|
2020-06-12 02:29:46 +00:00
|
|
|
{
|
|
|
|
SetValueEvent event("baudRate", baudRate);
|
|
|
|
event.set("directions", directions);
|
|
|
|
|
2020-06-13 20:58:46 +00:00
|
|
|
checkResult(m_port.setBaudRate(baudRate, directions), event);
|
2020-06-12 02:29:46 +00:00
|
|
|
qDebug().noquote() << event;
|
|
|
|
|
|
|
|
return event.ok();
|
|
|
|
}
|
|
|
|
|
2020-06-13 20:58:46 +00:00
|
|
|
bool SerialPortConnection::setDataBits(QSerialPort::DataBits dataBits)
|
2020-06-12 02:29:46 +00:00
|
|
|
{
|
|
|
|
SetValueEvent event("setDataBits", dataBits);
|
|
|
|
|
2020-06-13 20:58:46 +00:00
|
|
|
checkResult(m_port.setDataBits(dataBits), event);
|
2020-06-12 02:29:46 +00:00
|
|
|
qDebug().noquote() << event;
|
|
|
|
|
|
|
|
return event.ok();
|
|
|
|
}
|
|
|
|
|
2020-06-13 20:58:46 +00:00
|
|
|
bool SerialPortConnection::setParity(QSerialPort::Parity parity)
|
2020-06-12 02:29:46 +00:00
|
|
|
{
|
|
|
|
SetValueEvent event("setParity", parity);
|
|
|
|
|
2020-06-13 20:58:46 +00:00
|
|
|
checkResult(m_port.setParity(parity), event);
|
2020-06-12 02:29:46 +00:00
|
|
|
qDebug().noquote() << event;
|
|
|
|
|
|
|
|
return event.ok();
|
|
|
|
}
|
|
|
|
|
2020-06-13 20:58:46 +00:00
|
|
|
bool SerialPortConnection::setStopBits(QSerialPort::StopBits stopBits)
|
2020-06-12 02:29:46 +00:00
|
|
|
{
|
|
|
|
SetValueEvent event("setStopBits", stopBits);
|
|
|
|
|
2020-06-13 20:58:46 +00:00
|
|
|
checkResult(m_port.setStopBits(stopBits), event);
|
2020-06-12 02:29:46 +00:00
|
|
|
qDebug().noquote() << event;
|
|
|
|
|
|
|
|
return event.ok();
|
|
|
|
}
|
|
|
|
|
2020-06-13 20:58:46 +00:00
|
|
|
bool SerialPortConnection::setFlowControl(QSerialPort::FlowControl flowControl)
|
2020-06-12 02:29:46 +00:00
|
|
|
{
|
|
|
|
SetValueEvent event("setFlowControl", flowControl);
|
|
|
|
|
2020-06-13 20:58:46 +00:00
|
|
|
checkResult(m_port.setFlowControl(flowControl), event);
|
2020-06-12 02:29:46 +00:00
|
|
|
qDebug().noquote() << event;
|
|
|
|
|
|
|
|
return event.ok();
|
|
|
|
}
|
|
|
|
|
2020-06-13 20:58:46 +00:00
|
|
|
bool SerialPortConnection::clear(QSerialPort::Directions directions)
|
2020-06-12 02:29:46 +00:00
|
|
|
{
|
2020-06-13 20:58:46 +00:00
|
|
|
ConnectionEvent event("clear");
|
2020-06-12 20:44:07 +00:00
|
|
|
event.set("directions", directions);
|
|
|
|
|
2020-06-13 20:58:46 +00:00
|
|
|
checkResult(m_port.clear(directions), event);
|
2020-06-12 20:44:07 +00:00
|
|
|
qDebug().noquote() << event;
|
|
|
|
|
|
|
|
return event.ok();
|
2020-06-12 02:29:46 +00:00
|
|
|
}
|
|
|
|
|
2020-06-13 20:58:46 +00:00
|
|
|
qint64 SerialPortConnection::bytesAvailable() const
|
2020-06-12 02:29:46 +00:00
|
|
|
{
|
2020-06-13 20:58:46 +00:00
|
|
|
ConnectionEvent event("get");
|
2020-06-12 20:44:07 +00:00
|
|
|
|
|
|
|
qint64 result = m_port.bytesAvailable();
|
|
|
|
event.set("bytesAvailable", result);
|
2020-06-13 20:58:46 +00:00
|
|
|
checkResult(result, event);
|
2020-06-12 20:44:07 +00:00
|
|
|
qDebug().noquote() << event;
|
|
|
|
|
|
|
|
return result;
|
2020-06-12 02:29:46 +00:00
|
|
|
}
|
|
|
|
|
2020-06-13 20:58:46 +00:00
|
|
|
qint64 SerialPortConnection::read(char *data, qint64 maxSize)
|
2020-06-12 02:29:46 +00:00
|
|
|
{
|
2020-06-13 20:58:46 +00:00
|
|
|
ConnectionEvent event("rx");
|
2020-06-12 20:44:07 +00:00
|
|
|
|
|
|
|
qint64 len = m_port.read(data, maxSize);
|
|
|
|
if (len > 0) {
|
|
|
|
event.setData(data, len);
|
|
|
|
}
|
|
|
|
event.set("len", len);
|
|
|
|
if (len != maxSize) {
|
|
|
|
event.set("req", maxSize);
|
|
|
|
}
|
2020-06-13 20:58:46 +00:00
|
|
|
checkResult(len, event);
|
2020-06-12 20:44:07 +00:00
|
|
|
qDebug().noquote() << event;
|
|
|
|
|
|
|
|
return len;
|
2020-06-12 02:29:46 +00:00
|
|
|
}
|
|
|
|
|
2020-06-13 20:58:46 +00:00
|
|
|
qint64 SerialPortConnection::write(const char *data, qint64 maxSize)
|
2020-06-12 02:29:46 +00:00
|
|
|
{
|
2020-06-13 20:58:46 +00:00
|
|
|
ConnectionEvent event("tx");
|
2020-06-12 20:44:07 +00:00
|
|
|
|
|
|
|
event.setData(data, maxSize);
|
|
|
|
qint64 len = m_port.write(data, maxSize);
|
|
|
|
event.set("len", len);
|
|
|
|
if (len != maxSize) {
|
|
|
|
event.set("req", maxSize);
|
|
|
|
}
|
2020-06-13 20:58:46 +00:00
|
|
|
checkResult(len, event);
|
2020-06-12 20:44:07 +00:00
|
|
|
qDebug().noquote() << event;
|
|
|
|
|
|
|
|
return len;
|
2020-06-12 02:29:46 +00:00
|
|
|
}
|
|
|
|
|
2020-06-13 20:58:46 +00:00
|
|
|
bool SerialPortConnection::flush()
|
2020-06-12 02:29:46 +00:00
|
|
|
{
|
2020-06-13 20:58:46 +00:00
|
|
|
ConnectionEvent event("flush");
|
2020-06-12 20:44:07 +00:00
|
|
|
|
2020-06-13 20:58:46 +00:00
|
|
|
checkResult(m_port.flush(), event);
|
2020-06-12 20:44:07 +00:00
|
|
|
qDebug().noquote() << event;
|
|
|
|
|
|
|
|
return event.ok();
|
2020-06-12 02:29:46 +00:00
|
|
|
}
|
|
|
|
|
2020-06-13 20:58:46 +00:00
|
|
|
void SerialPortConnection::close()
|
2020-06-12 02:29:46 +00:00
|
|
|
{
|
2020-06-13 20:58:46 +00:00
|
|
|
ConnectionEvent event("closeConnection");
|
2020-06-12 20:44:07 +00:00
|
|
|
event.set("type", "serial");
|
2020-06-15 21:15:37 +00:00
|
|
|
event.set("name", m_name);
|
2020-06-12 20:44:07 +00:00
|
|
|
|
|
|
|
// TODO: the separate connection stream will have an enclosing "connection" tag with these
|
|
|
|
// attributes. The main device connection manager stream will log this openConnection/
|
|
|
|
// closeConnection pair. We'll also need to include a loader ID and stream version number
|
|
|
|
// in the "connection" tag, so that if we ever have to change a loader's download code,
|
|
|
|
// the older replays will still work as expected.
|
|
|
|
|
|
|
|
m_port.close();
|
2020-06-13 20:58:46 +00:00
|
|
|
checkError(event);
|
2020-06-12 20:44:07 +00:00
|
|
|
|
|
|
|
qDebug().noquote() << event;
|
2020-06-12 02:29:46 +00:00
|
|
|
}
|
|
|
|
|
2020-06-13 20:58:46 +00:00
|
|
|
void SerialPortConnection::onReadyRead()
|
2020-06-12 02:29:46 +00:00
|
|
|
{
|
2020-06-13 20:58:46 +00:00
|
|
|
ConnectionEvent event("readyRead");
|
2020-06-12 20:44:07 +00:00
|
|
|
|
|
|
|
// TODO: Most of the playback API reponds to the caller. How do we replay port-driven events?
|
2020-06-15 21:15:37 +00:00
|
|
|
// Probably add an ordered linked list of events, a peekNextEvent, getNextEvent(void),
|
|
|
|
// and event->replay() method that calls the appropriate method. (May as well have the
|
|
|
|
// destructor walk the links list rather than the per-type lists.)
|
2020-06-12 20:44:07 +00:00
|
|
|
qDebug().noquote() << event;
|
|
|
|
|
2020-06-12 02:29:46 +00:00
|
|
|
emit readyRead();
|
|
|
|
}
|
2020-06-11 20:27:52 +00:00
|
|
|
|
2020-06-13 20:58:46 +00:00
|
|
|
void SerialPortConnection::checkResult(bool ok, ConnectionEvent & event) const
|
|
|
|
{
|
|
|
|
QSerialPort::SerialPortError error = m_port.error();
|
|
|
|
if (ok && error == QSerialPort::NoError) return;
|
|
|
|
event.set("error", error);
|
|
|
|
if (ok) event.set("ok", ok); // we don't expect to see this, but we should know if it happens
|
|
|
|
}
|
|
|
|
|
|
|
|
void SerialPortConnection::checkResult(qint64 len, ConnectionEvent & event) const
|
|
|
|
{
|
|
|
|
QSerialPort::SerialPortError error = m_port.error();
|
|
|
|
if (len < 0 || error != QSerialPort::NoError) {
|
|
|
|
event.set("error", error);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void SerialPortConnection::checkError(ConnectionEvent & event) const
|
|
|
|
{
|
|
|
|
QSerialPort::SerialPortError error = m_port.error();
|
|
|
|
if (error != QSerialPort::NoError) {
|
|
|
|
event.set("error", error);
|
|
|
|
}
|
|
|
|
}
|
2020-06-15 21:15:37 +00:00
|
|
|
|
|
|
|
|
|
|
|
// MARK: -
|
|
|
|
// MARK: SerialPort legacy class
|
|
|
|
|
|
|
|
SerialPort::SerialPort()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
SerialPort::~SerialPort()
|
|
|
|
{
|
|
|
|
if (m_conn) {
|
|
|
|
close();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void SerialPort::setPortName(const QString &name)
|
|
|
|
{
|
|
|
|
m_portName = name;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool SerialPort::open(QIODevice::OpenMode mode)
|
|
|
|
{
|
|
|
|
Q_ASSERT(!m_conn);
|
|
|
|
Q_ASSERT(mode == QSerialPort::ReadWrite);
|
|
|
|
m_conn = DeviceConnectionManager::openSerialPortConnection(m_portName);
|
|
|
|
if (m_conn) {
|
|
|
|
connect(m_conn, SIGNAL(readyRead()), this, SLOT(onReadyRead()));
|
|
|
|
}
|
|
|
|
return m_conn != nullptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool SerialPort::setBaudRate(qint32 baudRate, QSerialPort::Directions directions)
|
|
|
|
{
|
|
|
|
Q_ASSERT(m_conn);
|
|
|
|
return m_conn->setBaudRate(baudRate, directions);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool SerialPort::setDataBits(QSerialPort::DataBits dataBits)
|
|
|
|
{
|
|
|
|
Q_ASSERT(m_conn);
|
|
|
|
return m_conn->setDataBits(dataBits);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool SerialPort::setParity(QSerialPort::Parity parity)
|
|
|
|
{
|
|
|
|
Q_ASSERT(m_conn);
|
|
|
|
return m_conn->setParity(parity);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool SerialPort::setStopBits(QSerialPort::StopBits stopBits)
|
|
|
|
{
|
|
|
|
Q_ASSERT(m_conn);
|
|
|
|
return m_conn->setStopBits(stopBits);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool SerialPort::setFlowControl(QSerialPort::FlowControl flowControl)
|
|
|
|
{
|
|
|
|
Q_ASSERT(m_conn);
|
|
|
|
return m_conn->setFlowControl(flowControl);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool SerialPort::clear(QSerialPort::Directions directions)
|
|
|
|
{
|
|
|
|
Q_ASSERT(m_conn);
|
|
|
|
return m_conn->clear(directions);
|
|
|
|
}
|
|
|
|
|
|
|
|
qint64 SerialPort::bytesAvailable() const
|
|
|
|
{
|
|
|
|
Q_ASSERT(m_conn);
|
|
|
|
return m_conn->bytesAvailable();
|
|
|
|
}
|
|
|
|
|
|
|
|
qint64 SerialPort::read(char *data, qint64 maxSize)
|
|
|
|
{
|
|
|
|
Q_ASSERT(m_conn);
|
|
|
|
return m_conn->read(data, maxSize);
|
|
|
|
}
|
|
|
|
|
|
|
|
qint64 SerialPort::write(const char *data, qint64 maxSize)
|
|
|
|
{
|
|
|
|
Q_ASSERT(m_conn);
|
|
|
|
return m_conn->write(data, maxSize);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool SerialPort::flush()
|
|
|
|
{
|
|
|
|
Q_ASSERT(m_conn);
|
|
|
|
return m_conn->flush();
|
|
|
|
}
|
|
|
|
|
|
|
|
void SerialPort::close()
|
|
|
|
{
|
|
|
|
Q_ASSERT(m_conn);
|
|
|
|
disconnect(m_conn, SIGNAL(readyRead()), this, SLOT(onReadyRead()));
|
|
|
|
delete m_conn; // this will close the connection
|
|
|
|
m_conn = nullptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
void SerialPort::onReadyRead()
|
|
|
|
{
|
|
|
|
emit readyRead();
|
|
|
|
}
|