RemoteSubscriber.h 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  1. //
  2. // Created by Tobias Hieta on 31/03/15.
  3. //
  4. #ifndef KONVERGO_REMOTESUBSCRIBER_H
  5. #define KONVERGO_REMOTESUBSCRIBER_H
  6. #include <QObject>
  7. #include <QPointer>
  8. #include <QUrl>
  9. #include <QDateTime>
  10. #include <QDomDocument>
  11. #include <QNetworkReply>
  12. #include <QQueue>
  13. #include "qhttpserverresponse.hpp"
  14. /////////////////////////////////////////////////////////////////////////////////////////
  15. class RemoteSubscriber : public QObject
  16. {
  17. public:
  18. RemoteSubscriber(const QString& clientIdentifier, const QString& deviceName, const QUrl& address, QObject* parent = nullptr);
  19. void reSubscribe();
  20. int lastSubscribe() const { return m_subscribeTime.elapsed(); }
  21. QString deviceName();
  22. QString clientIdentifier();
  23. virtual void sendUpdate();
  24. void timelineFinished(QNetworkReply* reply);
  25. void queueTimeline(quint64 playerCommandID, const QByteArray& timelineData);
  26. QByteArray getTimeline();
  27. void setCommandId(quint64 playerCommandId, quint64 controllerCommandId);
  28. quint64 mostRecentCommandId()
  29. {
  30. QMutexLocker lk(&m_commandIdMapLock);
  31. if (!m_commandIdQueue.isEmpty() && !m_commandIdMap.isEmpty())
  32. return m_commandIdMap[m_commandIdQueue.last()];
  33. else
  34. return 0;
  35. }
  36. quint64 commandId(quint64 playerCommandId)
  37. {
  38. QMutexLocker lk(&m_commandIdMapLock);
  39. if (m_commandIdMap.contains(playerCommandId))
  40. return m_commandIdMap[playerCommandId];
  41. lk.unlock();
  42. return mostRecentCommandId();
  43. }
  44. private:
  45. QMutex m_commandIdMapLock;
  46. QHash<quint64, quint64> m_commandIdMap;
  47. QQueue<quint64> m_commandIdQueue;
  48. QNetworkAccessManager* m_netAccess;
  49. QUrl m_address;
  50. QTime m_subscribeTime;
  51. QMutex m_timelineLock;
  52. QDomDocument m_timeline;
  53. protected:
  54. QString m_clientIdentifier;
  55. QString m_deviceName;
  56. #if 0
  57. quint16 m_errors;
  58. #endif
  59. };
  60. /////////////////////////////////////////////////////////////////////////////////////////
  61. class RemotePollSubscriber : public RemoteSubscriber
  62. {
  63. public:
  64. RemotePollSubscriber(const QString& clientIdentifier, const QString& deviceName, qhttp::server::QHttpResponse *response, QObject* parent = nullptr);
  65. void setHTTPResponse(qhttp::server::QHttpResponse *response);
  66. void sendUpdate() override;
  67. private :
  68. QPointer<qhttp::server::QHttpResponse> m_response;
  69. public Q_SLOTS:
  70. void responseDone();
  71. };
  72. #endif //KONVERGO_REMOTESUBSCRIBER_H