XtraSystemStatusObserver.h 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117
  1. /* Copyright (c) 2017-2021 The Linux Foundation. All rights reserved.
  2. *
  3. * Redistribution and use in source and binary forms, with or without
  4. * modification, are permitted provided that the following conditions are
  5. * met:
  6. * * Redistributions of source code must retain the above copyright
  7. * notice, this list of conditions and the following disclaimer.
  8. * * Redistributions in binary form must reproduce the above
  9. * copyright notice, this list of conditions and the following
  10. * disclaimer in the documentation and/or other materials provided
  11. * with the distribution.
  12. * * Neither the name of The Linux Foundation, nor the names of its
  13. * contributors may be used to endorse or promote products derived
  14. * from this software without specific prior written permission.
  15. *
  16. * THIS SOFTWARE IS PROVIDED "AS IS" AND ANY EXPRESS OR IMPLIED
  17. * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
  18. * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT
  19. * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS
  20. * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
  21. * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
  22. * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
  23. * BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
  24. * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
  25. * OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN
  26. * IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  27. *
  28. */
  29. #ifndef XTRA_SYSTEM_STATUS_OBS_H
  30. #define XTRA_SYSTEM_STATUS_OBS_H
  31. #include <cinttypes>
  32. #include <MsgTask.h>
  33. #include <LocIpc.h>
  34. #include <LocTimer.h>
  35. #include <stdlib.h>
  36. using namespace std;
  37. using namespace loc_util;
  38. using loc_core::IOsObserver;
  39. using loc_core::IDataItemObserver;
  40. using loc_core::IDataItemCore;
  41. struct StartDgnssNtripParams {
  42. GnssNtripConnectionParams ntripParams;
  43. string nmea;
  44. void clear() {
  45. ntripParams.hostNameOrIp.clear();
  46. ntripParams.mountPoint.clear();
  47. ntripParams.username.clear();
  48. ntripParams.password.clear();
  49. ntripParams.port = 0;
  50. ntripParams.useSSL = false;
  51. ntripParams.requiresNmeaLocation = false;
  52. nmea.clear();
  53. }
  54. };
  55. class XtraSystemStatusObserver : public IDataItemObserver {
  56. public :
  57. // constructor & destructor
  58. XtraSystemStatusObserver(IOsObserver* sysStatObs, const MsgTask* msgTask);
  59. inline virtual ~XtraSystemStatusObserver() {
  60. subscribe(false);
  61. mIpc.stopNonBlockingListening();
  62. }
  63. // IDataItemObserver overrides
  64. inline virtual void getName(string& name);
  65. virtual void notify(const unordered_set<IDataItemCore*>& dlist);
  66. bool updateLockStatus(GnssConfigGpsLock lock);
  67. bool updateConnections(uint64_t allConnections,
  68. loc_core::NetworkInfoType* networkHandleInfo, bool roaming);
  69. bool updateTac(const string& tac);
  70. bool updateMccMnc(const string& mccmnc);
  71. bool updateXtraThrottle(const bool enabled);
  72. inline const MsgTask* getMsgTask() { return mMsgTask; }
  73. void subscribe(bool yes);
  74. bool onStatusRequested(int32_t xtraStatusUpdated);
  75. void startDgnssSource(const StartDgnssNtripParams& params);
  76. void restartDgnssSource();
  77. void stopDgnssSource();
  78. void updateNmeaToDgnssServer(const string& nmea);
  79. private:
  80. IOsObserver* mSystemStatusObsrvr;
  81. const MsgTask* mMsgTask;
  82. GnssConfigGpsLock mGpsLock;
  83. LocIpc mIpc;
  84. uint64_t mConnections;
  85. loc_core::NetworkInfoType mNetworkHandle[MAX_NETWORK_HANDLES];
  86. bool mRoaming;
  87. string mTac;
  88. string mMccmnc;
  89. bool mXtraThrottle;
  90. bool mReqStatusReceived;
  91. bool mIsConnectivityStatusKnown;
  92. shared_ptr<LocIpcSender> mXtraSender;
  93. shared_ptr<LocIpcSender> mDgnssSender;
  94. string mNtripParamsString;
  95. class DelayLocTimer : public LocTimer {
  96. LocIpcSender& mXtraSender;
  97. LocIpcSender& mDgnssSender;
  98. public:
  99. DelayLocTimer(LocIpcSender& xtraSender, LocIpcSender& dgnssSender) :
  100. mXtraSender(xtraSender), mDgnssSender(dgnssSender) {}
  101. void timeOutCallback() override {
  102. LocIpc::send(mXtraSender, (const uint8_t*)"halinit", sizeof("halinit"));
  103. LocIpc::send(mDgnssSender, (const uint8_t*)"halinit", sizeof("halinit"));
  104. }
  105. } mDelayLocTimer;
  106. };
  107. #endif