mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-05 18:50:44 +00:00
211 lines
6.8 KiB
C++
211 lines
6.8 KiB
C++
/* Device Connection Class Header
|
|
*
|
|
* 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. */
|
|
|
|
#ifndef DEVICECONNECTION_H
|
|
#define DEVICECONNECTION_H
|
|
|
|
// TODO: This file will eventually abstract serial port or bluetooth (or other)
|
|
// connections to devices. For now it just supports serial ports.
|
|
|
|
#include <QtSerialPort/QSerialPort>
|
|
#include <QHash>
|
|
#include <QVariant>
|
|
#include <QDateTime>
|
|
#include <QXmlStreamReader>
|
|
#include <QXmlStreamWriter>
|
|
|
|
class XmlRecorder;
|
|
class XmlReplay;
|
|
|
|
class DeviceConnection : public QObject
|
|
{
|
|
Q_OBJECT
|
|
|
|
protected:
|
|
DeviceConnection(const QString & name, XmlRecorder* record, XmlReplay* replay);
|
|
|
|
const QString & m_name;
|
|
XmlRecorder* m_record;
|
|
XmlReplay* m_replay;
|
|
bool m_opened;
|
|
|
|
virtual bool open() = 0;
|
|
friend class DeviceConnectionManager;
|
|
|
|
public:
|
|
// See DeviceConnectionManager::openConnection() to create connections.
|
|
virtual ~DeviceConnection();
|
|
virtual const QString & type() const = 0;
|
|
const QString & name() const { return m_name; }
|
|
|
|
typedef DeviceConnection* (*FactoryMethod)(const QString & name, XmlRecorder* record, XmlReplay* replay);
|
|
};
|
|
|
|
|
|
class DeviceConnectionManager : public QObject
|
|
{
|
|
Q_OBJECT
|
|
|
|
private:
|
|
DeviceConnectionManager();
|
|
|
|
XmlRecorder* m_record;
|
|
XmlReplay* m_replay;
|
|
|
|
QList<class SerialPortInfo> replayAvailablePorts();
|
|
QList<SerialPortInfo> m_serialPorts;
|
|
void reset() { // clear state
|
|
m_serialPorts.clear();
|
|
}
|
|
|
|
QHash<QString,DeviceConnection*> m_connections;
|
|
|
|
public:
|
|
static DeviceConnectionManager & getInstance();
|
|
class DeviceConnection* openConnection(const QString & type, const QString & name);
|
|
static class SerialPortConnection* openSerialPortConnection(const QString & portName); // temporary
|
|
|
|
QList<class SerialPortInfo> getAvailableSerialPorts();
|
|
// TODO: method to start a polling thread that maintains the list of ports
|
|
// TODO: emit signal when new port is detected
|
|
|
|
void record(class QFile* stream);
|
|
void record(QString & string);
|
|
void replay(class QFile* stream);
|
|
void replay(const QString & string);
|
|
|
|
// DeviceConnection subclasses registration
|
|
protected:
|
|
static QHash<QString,DeviceConnection::FactoryMethod> s_factories;
|
|
public:
|
|
static bool registerClass(const QString & type, DeviceConnection::FactoryMethod factory);
|
|
static class DeviceConnection* createInstance(const QString & type);
|
|
|
|
void connectionClosed(DeviceConnection* conn);
|
|
};
|
|
|
|
// TODO: This class may eventually be internal to a DeviceConnection class,
|
|
// but for now it is used to provide support for recording and playback of
|
|
// serial port connections before refactoring.
|
|
class SerialPortConnection : public DeviceConnection
|
|
{
|
|
Q_OBJECT
|
|
|
|
private:
|
|
QSerialPort m_port;
|
|
void checkResult(bool ok, class ConnectionEvent & event) const;
|
|
void checkResult(qint64 len, class ConnectionEvent & event) const;
|
|
void checkError(class ConnectionEvent & event) const;
|
|
void close();
|
|
|
|
private slots:
|
|
void onReadyRead();
|
|
|
|
signals:
|
|
void readyRead();
|
|
|
|
protected:
|
|
SerialPortConnection(const QString & name, XmlRecorder* record, XmlReplay* replay);
|
|
virtual bool open();
|
|
|
|
public:
|
|
// See DeviceConnectionManager::openConnection() to create connections.
|
|
virtual ~SerialPortConnection();
|
|
|
|
bool setBaudRate(qint32 baudRate, QSerialPort::Directions directions = QSerialPort::AllDirections);
|
|
bool setDataBits(QSerialPort::DataBits dataBits);
|
|
bool setParity(QSerialPort::Parity parity);
|
|
bool setStopBits(QSerialPort::StopBits stopBits);
|
|
bool setFlowControl(QSerialPort::FlowControl flowControl);
|
|
bool clear(QSerialPort::Directions directions = QSerialPort::AllDirections);
|
|
qint64 bytesAvailable() const;
|
|
qint64 read(char *data, qint64 maxSize);
|
|
qint64 write(const char *data, qint64 maxSize);
|
|
bool flush();
|
|
|
|
// Subclass registration with DeviceConnectionManager
|
|
public:
|
|
static DeviceConnection* createInstance(const QString & name, XmlRecorder* record, XmlReplay* replay);
|
|
static const QString TYPE;
|
|
static const bool registered;
|
|
virtual const QString & type() const { return TYPE; }
|
|
};
|
|
|
|
// TODO: temporary class for legacy compatibility
|
|
class SerialPort : public QObject
|
|
{
|
|
Q_OBJECT
|
|
|
|
private:
|
|
SerialPortConnection* m_conn;
|
|
QString m_portName;
|
|
|
|
private slots:
|
|
void onReadyRead();
|
|
|
|
signals:
|
|
void readyRead();
|
|
|
|
public:
|
|
SerialPort();
|
|
virtual ~SerialPort();
|
|
|
|
void setPortName(const QString &name);
|
|
bool open(QIODevice::OpenMode mode);
|
|
bool setBaudRate(qint32 baudRate, QSerialPort::Directions directions = QSerialPort::AllDirections);
|
|
bool setDataBits(QSerialPort::DataBits dataBits);
|
|
bool setParity(QSerialPort::Parity parity);
|
|
bool setStopBits(QSerialPort::StopBits stopBits);
|
|
bool setFlowControl(QSerialPort::FlowControl flowControl);
|
|
bool clear(QSerialPort::Directions directions = QSerialPort::AllDirections);
|
|
qint64 bytesAvailable() const;
|
|
qint64 read(char *data, qint64 maxSize);
|
|
qint64 write(const char *data, qint64 maxSize);
|
|
bool flush();
|
|
void close();
|
|
};
|
|
|
|
// TODO: This class's functionality will eventually be internal to a
|
|
// DeviceConnection class, but for now it is needed to support recording
|
|
// and playback of serial port scanning before refactoring.
|
|
class SerialPortInfo
|
|
{
|
|
public:
|
|
static QList<SerialPortInfo> availablePorts();
|
|
SerialPortInfo(const SerialPortInfo & other);
|
|
SerialPortInfo(const QString & data);
|
|
SerialPortInfo();
|
|
|
|
inline QString portName() const { return m_info["portName"].toString(); }
|
|
inline QString systemLocation() const { return m_info["systemLocation"].toString(); }
|
|
inline QString description() const { return m_info["description"].toString(); }
|
|
inline QString manufacturer() const { return m_info["manufacturer"].toString(); }
|
|
inline QString serialNumber() const { return m_info["serialNumber"].toString(); }
|
|
|
|
inline quint16 vendorIdentifier() const { return m_info["vendorIdentifier"].toInt(); }
|
|
inline quint16 productIdentifier() const { return m_info["productIdentifier"].toInt(); }
|
|
|
|
inline bool hasVendorIdentifier() const { return m_info.contains("vendorIdentifier"); }
|
|
inline bool hasProductIdentifier() const { return m_info.contains("productIdentifier"); }
|
|
|
|
inline bool isNull() const { return m_info.isEmpty(); }
|
|
|
|
operator QString() const;
|
|
friend QXmlStreamWriter & operator<<(QXmlStreamWriter & xml, const SerialPortInfo & info);
|
|
friend QXmlStreamReader & operator>>(QXmlStreamReader & xml, SerialPortInfo & info);
|
|
bool operator==(const SerialPortInfo & other) const;
|
|
|
|
protected:
|
|
SerialPortInfo(const class QSerialPortInfo & other);
|
|
QHash<QString,QVariant> m_info;
|
|
|
|
friend class DeviceConnectionManager;
|
|
};
|
|
|
|
#endif // DEVICECONNECTION_H
|