/* Oximetry GUI Headers Copyright (c)2011 Mark Watkins License: GPL */ #ifndef OXIMETRY_H #define OXIMETRY_H #include #include #include #include #include #include "SleepLib/profiles.h" #include "SleepLib/day.h" #include "SleepLib/session.h" #include "Graphs/gLineChart.h" #include "Graphs/gFooBar.h" enum SerialOxMode { SO_OFF, SO_IMPORT, SO_LIVE, SO_WAIT }; class SerialOximeter:public QObject { Q_OBJECT public: explicit SerialOximeter(QObject * parent,QString oxiname, QString portname="",BaudRateType baud=BAUD19200, FlowType flow=FLOW_OFF, ParityType parity=PAR_ODD, DataBitsType databits=DATA_8, StopBitsType stopbits=STOP_1); virtual ~SerialOximeter(); virtual void setSession(Session * sess) { session=sess; } virtual bool Open(QextSerialPort::QueryMode mode=QextSerialPort::EventDriven); virtual void Close(); virtual bool startImport()=0; virtual void stopImport() {} // abort, default do nothing. virtual bool startLive(); virtual void stopLive(); virtual void resetDevice()=0; virtual void requestData()=0; SerialOxMode mode() { return m_mode; } void destroySession() { delete session; session=NULL; } bool isOpen() { return m_opened; } int callbacks() { return m_callbacks; } qint64 lastTime() { return lasttime; } void setLastTime(qint64 t) { lasttime=t; } Machine * getMachine() { return machine; } Session *createSession(QDateTime date=QDateTime::currentDateTime()); Session * getSession() { return session; } void compactToWaveform(EventList *el); void compactToEvent(EventList *el); void compactAll(); void setPortName(QString portname); void setBaudRate(BaudRateType baud); void setFlowControl(FlowType flow); void setParity(ParityType parity); void setDataBits(DataBitsType databits); void setStopBits(StopBitsType stopbits); QString portName() { return m_portname; } BaudRateType baudRate() { return m_baud; } FlowType flowControl() { return m_flow; } ParityType parity() { return m_parity; } DataBitsType dataBits() { return m_databits; } StopBitsType stopBits() { return m_stopbits; } EventList * Pulse() { return pulse; } EventList * Spo2() { return spo2; } EventList * Plethy() { return plethy; } virtual void addPulse(qint64 time, EventDataType pr); virtual void addSpO2(qint64 time, EventDataType o2); virtual void addPlethy(qint64 time, EventDataType pleth); signals: void sessionCreated(Session *); void dataChanged(); void importProcess(); void importComplete(Session *); void importAborted(); void updateProgress(float f); // between 0 and 1. void liveStopped(Session *); void updatePulse(float p); void updateSpO2(float p); protected slots: virtual void ReadyRead()=0; virtual void import_process()=0; virtual void Timeout(); virtual void startImportTimeout()=0; protected: //virtual void addEvents(EventDataType pr, EventDataType o2, EventDataType pleth=-1000000); Session * session; EventList * pulse; EventList * spo2; EventList * plethy; QextSerialPort *m_port; SerialOxMode m_mode; bool m_opened; QString m_oxiname; QString m_portname; BaudRateType m_baud; FlowType m_flow; ParityType m_parity; DataBitsType m_databits; StopBitsType m_stopbits; QextSerialPort::QueryMode m_portmode; Machine *machine; qint64 lasttime; bool import_mode; int m_callbacks; bool done_import; QTimer *timer; EventDataType lasto2,lastpr; }; class CMS50Serial:public SerialOximeter { public: explicit CMS50Serial(QObject * parent,QString portname); virtual ~CMS50Serial(); virtual bool startImport(); virtual void resetDevice(); virtual void requestData(); protected: virtual void startImportTimeout(); virtual void import_process(); virtual void ReadyRead(); bool waitf6; short cntf6; short failcnt; QByteArray data; QVector f2time; int datasize; int received_bytes; int import_fails; }; namespace Ui { class Oximetry; } enum PORTMODE { PM_LIVE, PM_RECORDING }; const int max_data_points=1000000; class Oximetry : public QWidget { Q_OBJECT public: explicit Oximetry(QWidget *parent, gGraphView * shared=NULL); ~Oximetry(); void RedrawGraphs(); gGraphView *graphView() { return GraphView; } void openSession(Session * session); private slots: void on_RefreshPortsButton_clicked(); void on_RunButton_toggled(bool checked); // Live mode button void on_SerialPortsCombo_activated(const QString &arg1); void on_ImportButton_clicked(); void on_saveButton_clicked(); void data_changed(); void pulse_changed(float p); void spo2_changed(float o2); void update_progress(float f); void import_aborted(); void import_complete(Session *session); void oximeter_running_check(); void live_stopped(Session *session); void on_openButton_clicked(); void on_dateEdit_dateTimeChanged(const QDateTime &date); void on_resetTimeButton_clicked(); private: bool openSPOFile(QString filename); bool openSPORFile(QString filename); void import_finished(); void updateGraphs(); Ui::Oximetry *ui; gGraphView *GraphView; MyScrollBar *scrollbar; QHBoxLayout *layout; gLineChart *pulse,*spo2,*plethy; Layer *lo1,*lo2; gGraph *PULSE,*SPO2,*PLETHY,*CONTROL; QVector Data; QextSerialPort *port; QString portname; PORTMODE portmode; double lasttime,starttime; int lastpulse, lastspo2; Day * day; //Session * session; //EventList * ev_pulse; //EventList * ev_spo2; //EventList * ev_plethy; Layer * foobar; gGraphView * m_shared; SerialOximeter *oximeter; qint64 saved_starttime; bool firstSPO2Update; bool firstPulseUpdate; bool secondPulseUpdate; bool secondSPO2Update; bool dont_update_date; }; #endif // OXIMETRY_H