/////////////////////////////////////////////////////////////////////////////////// // Copyright (C) 2019-2020, 2022 Edouard Griffiths, F4EXB // // Copyright (C) 2021-2026 Jon Beniston, M7RCE // // Copyright (C) 2020 Vort // // Copyright (C) 2022 Jiří Pinkava // // // // This program is free software; you can redistribute it and/or modify // // it under the terms of the GNU General Public License as published by // // the Free Software Foundation as version 3 of the License, or // // (at your option) any later version. // // // // This program is distributed in the hope that it will be useful, // // but WITHOUT ANY WARRANTY; without even the implied warranty of // // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // // GNU General Public License V3 for more details. // // // // You should have received a copy of the GNU General Public License // // along with this program. If not, see . // /////////////////////////////////////////////////////////////////////////////////// #ifndef INCLUDE_FEATURE_STARTRACKERWORKER_H_ #define INCLUDE_FEATURE_STARTRACKERWORKER_H_ #include #include #include #include "util/message.h" #include "util/messagequeue.h" #include "util/astronomy.h" #include "util/jplhorizons.h" #include "startrackersettings.h" class WebAPIAdapterInterface; class QTcpServer; class QTcpSocket; class StarTracker; class QDateTime; class ObjectPipe; class StarTrackerWorker : public QObject { Q_OBJECT public: class MsgConfigureStarTrackerWorker : public Message { MESSAGE_CLASS_DECLARATION public: const StarTrackerSettings& getSettings() const { return m_settings; } const QList& getSettingsKeys() const { return m_settingsKeys; } bool getForce() const { return m_force; } static MsgConfigureStarTrackerWorker* create(const StarTrackerSettings& settings, const QList& settingsKeys, bool force) { return new MsgConfigureStarTrackerWorker(settings, settingsKeys, force); } private: StarTrackerSettings m_settings; QList m_settingsKeys; bool m_force; MsgConfigureStarTrackerWorker(const StarTrackerSettings& settings, const QList& settingsKeys, bool force) : Message(), m_settings(settings), m_settingsKeys(settingsKeys), m_force(force) { } }; StarTrackerWorker(StarTracker* starTracker, WebAPIAdapterInterface *webAPIAdapterInterface); ~StarTrackerWorker(); void startWork(); void stopWork(); MessageQueue *getInputMessageQueue() { return &m_inputMessageQueue; } void setMessageQueueToFeature(MessageQueue *messageQueue) { m_msgQueueToFeature = messageQueue; } void setMessageQueueToGUI(MessageQueue *messageQueue) { m_msgQueueToGUI = messageQueue; } private: StarTracker* m_starTracker; WebAPIAdapterInterface *m_webAPIAdapterInterface; MessageQueue m_inputMessageQueue; //!< Queue for asynchronous inbound communication MessageQueue *m_msgQueueToFeature; //!< Queue to report channel change to main feature object MessageQueue *m_msgQueueToGUI; StarTrackerSettings m_settings; QRecursiveMutex m_mutex; QTimer m_pollTimer; QTcpServer *m_tcpServer; QTcpSocket *m_clientConnection; float m_solarFlux; JPLHorizons *m_jplHorizons; QString m_ephemeridesTarget; QList m_horizonsEphemerides; QString m_requestedEphemeridesTarget; QDateTime m_requestedEphemeridesStartTime; QDateTime m_requestedEphemeridesStopTime; double m_requestedEphemeridesLatitude; double m_requestedEphemeridesLongitude; QString m_chartTarget; double m_chartLatitude; double m_chartLongitude; QDateTime m_chartStartTime; QString m_chartRA; QString m_chartDec; float m_chartL; float m_chartB; bool handleMessage(const Message& cmd); void applySettings(const StarTrackerSettings& settings, const QList& settingsKeys, bool force = false); void restartServer(bool enabled, uint32_t port); MessageQueue *getMessageQueueToGUI() { return m_msgQueueToGUI; } void writeStellariumTarget(double ra, double dec); void removeFromMap(QString id); void sendToMap( const QList& mapMessagePipes, QString id, QString image, QString text, double lat, double lon, double rotation = 0.0 ); bool getAzElFromSatelliteTracker(double &azimuth, double &elevation); bool getRAFromSkyMap(RADec &rdJ2000); bool getRAFromHorizons(const QDateTime &dateTime, RADec &rdJ2000); void calculateSolarSystemPositions(const QDateTime& dateTime); void calculateJupiterParameters(const QDateTime& dateTime); private slots: void handleInputMessages(); void update(); void acceptConnection(); void disconnected(); void errorOccurred(QAbstractSocket::SocketError socketError); void readStellariumCommand(); void horizonsEphemeridesUpdated(const QString &target, const QList& ephemerides); }; #endif // INCLUDE_FEATURE_STARTRACKERWORKER_H_