GnssAdapter.h 33 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689
  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 GNSS_ADAPTER_H
  30. #define GNSS_ADAPTER_H
  31. #include <LocAdapterBase.h>
  32. #include <LocContext.h>
  33. #include <IOsObserver.h>
  34. #include <EngineHubProxyBase.h>
  35. #include <LocationAPI.h>
  36. #include <Agps.h>
  37. #include <SystemStatus.h>
  38. #include <XtraSystemStatusObserver.h>
  39. #include <map>
  40. #include <functional>
  41. #include <loc_misc_utils.h>
  42. #include <queue>
  43. #include <NativeAgpsHandler.h>
  44. #define MAX_URL_LEN 256
  45. #define NMEA_SENTENCE_MAX_LENGTH 200
  46. #define GLONASS_SV_ID_OFFSET 64
  47. #define MAX_SATELLITES_IN_USE 12
  48. #define LOC_NI_NO_RESPONSE_TIME 20
  49. #define LOC_GPS_NI_RESPONSE_IGNORE 4
  50. #define ODCPI_EXPECTED_INJECTION_TIME_MS 10000
  51. #define DELETE_AIDING_DATA_EXPECTED_TIME_MS 5000
  52. class GnssAdapter;
  53. typedef std::map<LocationSessionKey, LocationOptions> LocationSessionMap;
  54. typedef std::map<LocationSessionKey, TrackingOptions> TrackingOptionsMap;
  55. class OdcpiTimer : public LocTimer {
  56. public:
  57. OdcpiTimer(GnssAdapter* adapter) :
  58. LocTimer(), mAdapter(adapter), mActive(false) {}
  59. inline void start() {
  60. mActive = true;
  61. LocTimer::start(ODCPI_EXPECTED_INJECTION_TIME_MS, false);
  62. }
  63. inline void stop() {
  64. mActive = false;
  65. LocTimer::stop();
  66. }
  67. inline void restart() {
  68. stop();
  69. start();
  70. }
  71. inline bool isActive() {
  72. return mActive;
  73. }
  74. private:
  75. // Override
  76. virtual void timeOutCallback() override;
  77. GnssAdapter* mAdapter;
  78. bool mActive;
  79. };
  80. typedef struct {
  81. pthread_t thread; /* NI thread */
  82. uint32_t respTimeLeft; /* examine time for NI response */
  83. bool respRecvd; /* NI User reponse received or not from Java layer*/
  84. void* rawRequest;
  85. uint32_t reqID; /* ID to check against response */
  86. GnssNiResponse resp;
  87. pthread_cond_t tCond;
  88. pthread_mutex_t tLock;
  89. GnssAdapter* adapter;
  90. } NiSession;
  91. typedef struct {
  92. NiSession session; /* SUPL NI Session */
  93. NiSession sessionEs; /* Emergency SUPL NI Session */
  94. uint32_t reqIDCounter;
  95. } NiData;
  96. typedef enum {
  97. NMEA_PROVIDER_AP = 0, // Application Processor Provider of NMEA
  98. NMEA_PROVIDER_MP // Modem Processor Provider of NMEA
  99. } NmeaProviderType;
  100. typedef struct {
  101. GnssSvType svType;
  102. const char* talker;
  103. uint64_t mask;
  104. uint32_t svIdOffset;
  105. } NmeaSvMeta;
  106. typedef struct {
  107. double latitude;
  108. double longitude;
  109. float accuracy;
  110. // the CPI will be blocked until the boot time
  111. // specified in blockedTillTsMs
  112. int64_t blockedTillTsMs;
  113. // CPIs whose both latitude and longitude differ
  114. // no more than latLonThreshold will be blocked
  115. // in units of degree
  116. double latLonDiffThreshold;
  117. } BlockCPIInfo;
  118. typedef struct {
  119. bool isValid;
  120. bool enable;
  121. float tuncThresholdMs; // need to be specified if enable is true
  122. uint32_t energyBudget; // need to be specified if enable is true
  123. } TuncConfigInfo;
  124. typedef struct {
  125. bool isValid;
  126. bool enable;
  127. } PaceConfigInfo;
  128. typedef struct {
  129. bool isValid;
  130. bool enable;
  131. bool enableFor911;
  132. } RobustLocationConfigInfo;
  133. typedef struct {
  134. TuncConfigInfo tuncConfigInfo;
  135. PaceConfigInfo paceConfigInfo;
  136. RobustLocationConfigInfo robustLocationConfigInfo;
  137. LeverArmConfigInfo leverArmConfigInfo;
  138. } LocIntegrationConfigInfo;
  139. using namespace loc_core;
  140. namespace loc_core {
  141. class SystemStatus;
  142. }
  143. typedef std::function<void(
  144. uint64_t gnssEnergyConsumedFromFirstBoot
  145. )> GnssEnergyConsumedCallback;
  146. typedef void* QDgnssListenerHDL;
  147. typedef std::function<void(
  148. bool sessionActive
  149. )> QDgnssSessionActiveCb;
  150. struct CdfwInterface {
  151. void (*startDgnssApiService)(const MsgTask& msgTask);
  152. QDgnssListenerHDL (*createUsableReporter)(
  153. QDgnssSessionActiveCb sessionActiveCb);
  154. void (*destroyUsableReporter)(QDgnssListenerHDL handle);
  155. void (*reportUsable)(QDgnssListenerHDL handle, bool usable);
  156. };
  157. typedef uint16_t DGnssStateBitMask;
  158. #define DGNSS_STATE_ENABLE_NTRIP_COMMAND 0X01
  159. #define DGNSS_STATE_NO_NMEA_PENDING 0X02
  160. #define DGNSS_STATE_NTRIP_SESSION_STARTED 0X04
  161. class GnssReportLoggerUtil {
  162. public:
  163. typedef void (*LogGnssLatency)(const GnssLatencyInfo& gnssLatencyMeasInfo);
  164. GnssReportLoggerUtil();
  165. bool isLogEnabled();
  166. void log(const GnssLatencyInfo& gnssLatencyMeasInfo);
  167. private:
  168. LogGnssLatency mLogLatency;
  169. };
  170. class GnssAdapter : public LocAdapterBase {
  171. /* ==== Engine Hub ===================================================================== */
  172. EngineHubProxyBase* mEngHubProxy;
  173. bool mNHzNeeded;
  174. bool mSPEAlreadyRunningAtHighestInterval;
  175. /* ==== TRACKING ======================================================================= */
  176. TrackingOptionsMap mTimeBasedTrackingSessions;
  177. LocationSessionMap mDistanceBasedTrackingSessions;
  178. LocPosMode mLocPositionMode;
  179. GnssSvUsedInPosition mGnssSvIdUsedInPosition;
  180. bool mGnssSvIdUsedInPosAvail;
  181. GnssSvMbUsedInPosition mGnssMbSvIdUsedInPosition;
  182. bool mGnssMbSvIdUsedInPosAvail;
  183. /* ==== CONTROL ======================================================================== */
  184. LocationControlCallbacks mControlCallbacks;
  185. uint32_t mAfwControlId;
  186. uint32_t mNmeaMask;
  187. uint64_t mPrevNmeaRptTimeNsec;
  188. GnssSvIdConfig mGnssSvIdConfig;
  189. GnssSvTypeConfig mGnssSeconaryBandConfig;
  190. GnssSvTypeConfig mGnssSvTypeConfig;
  191. GnssSvTypeConfigCallback mGnssSvTypeConfigCb;
  192. bool mSupportNfwControl;
  193. LocIntegrationConfigInfo mLocConfigInfo;
  194. /* ==== NI ============================================================================= */
  195. NiData mNiData;
  196. /* ==== AGPS =========================================================================== */
  197. // This must be initialized via initAgps()
  198. AgpsManager mAgpsManager;
  199. void initAgps(const AgpsCbInfo& cbInfo);
  200. /* ==== NFW =========================================================================== */
  201. NfwStatusCb mNfwCb;
  202. unordered_map<string, uint32_t> mNfws;
  203. IsInEmergencySession mIsE911Session;
  204. inline void initNfw(const NfwCbInfo& cbInfo) {
  205. mNfwCb = (NfwStatusCb)cbInfo.visibilityControlCb;
  206. mIsE911Session = (IsInEmergencySession)cbInfo.isInEmergencySession;
  207. }
  208. powerIndicationCb mPowerIndicationCb;
  209. bool mGnssPowerStatisticsInit;
  210. uint64_t mBootReferenceEnergy;
  211. ElapsedRealtimeEstimator mPowerElapsedRealTimeCal;
  212. /* ==== Measurement Corrections========================================================= */
  213. bool mIsMeasCorrInterfaceOpen;
  214. measCorrSetCapabilitiesCb mMeasCorrSetCapabilitiesCb;
  215. bool initMeasCorr(bool bSendCbWhenNotSupported);
  216. bool mIsAntennaInfoInterfaceOpened;
  217. /* ==== DGNSS Data Usable Report======================================================== */
  218. QDgnssListenerHDL mQDgnssListenerHDL;
  219. const CdfwInterface* mCdfwInterface;
  220. bool mDGnssNeedReport;
  221. bool mDGnssDataUsage;
  222. void reportDGnssDataUsable(const GnssSvMeasurementSet &svMeasurementSet);
  223. /* ==== ODCPI ========================================================================== */
  224. OdcpiRequestCallback mOdcpiRequestCb;
  225. typedef uint8_t OdcpiStateMask;
  226. OdcpiStateMask mOdcpiStateMask;
  227. typedef enum {
  228. ODCPI_REQ_ACTIVE = (1<<0),
  229. CIVIC_ADDRESS_REQ_ACTIVE = (1<<1)
  230. } OdcpiStateBits;
  231. OdcpiPrioritytype mCallbackPriority;
  232. OdcpiTimer mOdcpiTimer;
  233. OdcpiRequestInfo mOdcpiRequest;
  234. void odcpiTimerExpire();
  235. std::function<void(const Location&)> mAddressRequestCb;
  236. /* ==== DELETEAIDINGDATA =============================================================== */
  237. int64_t mLastDeleteAidingDataTime;
  238. /* === SystemStatus ===================================================================== */
  239. SystemStatus* mSystemStatus;
  240. std::string mServerUrl;
  241. std::string mMoServerUrl;
  242. XtraSystemStatusObserver mXtraObserver;
  243. LocationSystemInfo mLocSystemInfo;
  244. std::vector<GnssSvIdSource> mBlacklistedSvIds;
  245. PowerStateType mSystemPowerState;
  246. /* === Misc ===================================================================== */
  247. BlockCPIInfo mBlockCPIInfo;
  248. bool mPowerOn;
  249. std::queue<GnssLatencyInfo> mGnssLatencyInfoQueue;
  250. GnssReportLoggerUtil mLogger;
  251. bool mDreIntEnabled;
  252. ElapsedRealtimeEstimator mPositionElapsedRealTimeCal;
  253. /* === NativeAgpsHandler ======================================================== */
  254. NativeAgpsHandler mNativeAgpsHandler;
  255. /* === Misc callback from QMI LOC API ============================================== */
  256. GnssEnergyConsumedCallback mGnssEnergyConsumedCb;
  257. std::function<void(bool)> mPowerStateCb;
  258. /*==== CONVERSION ===================================================================*/
  259. static void convertOptions(LocPosMode& out, const TrackingOptions& trackingOptions);
  260. static void convertLocation(Location& out, const UlpLocation& ulpLocation,
  261. const GpsLocationExtended& locationExtended);
  262. static void convertLocationInfo(GnssLocationInfoNotification& out,
  263. const GpsLocationExtended& locationExtended,
  264. loc_sess_status status);
  265. static uint16_t getNumSvUsed(uint64_t svUsedIdsMask,
  266. int totalSvCntInThisConstellation);
  267. /* ======== UTILITIES ================================================================== */
  268. inline void initOdcpi(const OdcpiRequestCallback& callback, OdcpiPrioritytype priority);
  269. inline void injectOdcpi(const Location& location);
  270. inline void setAddressRequestCb(const std::function<void(const Location&)>& addressRequestCb)
  271. { mAddressRequestCb = addressRequestCb;}
  272. inline void injectLocationAndAddr(const Location& location, const GnssCivicAddress& addr)
  273. { mLocApi->injectPositionAndCivicAddress(location, addr);}
  274. static bool isFlpClient(LocationCallbacks& locationCallbacks);
  275. void fillElapsedRealTime(const GpsLocationExtended& locationExtended,
  276. Location& out);
  277. /*==== DGnss Ntrip Source ==========================================================*/
  278. StartDgnssNtripParams mStartDgnssNtripParams;
  279. bool mSendNmeaConsent;
  280. DGnssStateBitMask mDgnssState;
  281. void checkUpdateDgnssNtrip(bool isLocationValid);
  282. void stopDgnssNtrip();
  283. uint64_t mDgnssLastNmeaBootTimeMilli;
  284. protected:
  285. /* ==== CLIENT ========================================================================= */
  286. virtual void updateClientsEventMask();
  287. virtual void stopClientSessions(LocationAPI* client, bool eraseSession = true);
  288. inline void setNmeaReportRateConfig();
  289. void logLatencyInfo();
  290. public:
  291. GnssAdapter();
  292. virtual inline ~GnssAdapter() { }
  293. /* ==== SSR ============================================================================ */
  294. /* ======== EVENTS ====(Called from QMI Thread)========================================= */
  295. virtual void handleEngineUpEvent();
  296. /* ======== UTILITIES ================================================================== */
  297. void restartSessions(bool modemSSR = false);
  298. void checkAndRestartTimeBasedSession();
  299. void checkAndRestartSPESession();
  300. void suspendSessions();
  301. /* ==== CLIENT ========================================================================= */
  302. /* ======== COMMANDS ====(Called from Client Thread)==================================== */
  303. virtual void addClientCommand(LocationAPI* client, const LocationCallbacks& callbacks);
  304. /* ==== TRACKING ======================================================================= */
  305. /* ======== COMMANDS ====(Called from Client Thread)==================================== */
  306. uint32_t startTrackingCommand(
  307. LocationAPI* client, TrackingOptions& trackingOptions);
  308. void updateTrackingOptionsCommand(
  309. LocationAPI* client, uint32_t id, TrackingOptions& trackingOptions);
  310. void stopTrackingCommand(LocationAPI* client, uint32_t id);
  311. /* ======== RESPONSES ================================================================== */
  312. void reportResponse(LocationAPI* client, LocationError err, uint32_t sessionId);
  313. /* ======== UTILITIES ================================================================== */
  314. bool isTimeBasedTrackingSession(LocationAPI* client, uint32_t sessionId);
  315. bool isDistanceBasedTrackingSession(LocationAPI* client, uint32_t sessionId);
  316. bool hasCallbacksToStartTracking(LocationAPI* client);
  317. bool isTrackingSession(LocationAPI* client, uint32_t sessionId);
  318. void saveTrackingSession(LocationAPI* client, uint32_t sessionId,
  319. const TrackingOptions& trackingOptions);
  320. void eraseTrackingSession(LocationAPI* client, uint32_t sessionId);
  321. bool setLocPositionMode(const LocPosMode& mode);
  322. LocPosMode& getLocPositionMode() { return mLocPositionMode; }
  323. bool startTimeBasedTrackingMultiplex(LocationAPI* client, uint32_t sessionId,
  324. const TrackingOptions& trackingOptions);
  325. void startTimeBasedTracking(LocationAPI* client, uint32_t sessionId,
  326. const TrackingOptions& trackingOptions);
  327. bool stopTimeBasedTrackingMultiplex(LocationAPI* client, uint32_t id);
  328. void stopTracking(LocationAPI* client, uint32_t id);
  329. bool updateTrackingMultiplex(LocationAPI* client, uint32_t id,
  330. const TrackingOptions& trackingOptions);
  331. void updateTracking(LocationAPI* client, uint32_t sessionId,
  332. const TrackingOptions& updatedOptions, const TrackingOptions& oldOptions);
  333. bool checkAndSetSPEToRunforNHz(TrackingOptions & out);
  334. void setConstrainedTunc(bool enable, float tuncConstraint,
  335. uint32_t energyBudget, uint32_t sessionId);
  336. void setPositionAssistedClockEstimator(bool enable, uint32_t sessionId);
  337. void gnssUpdateSvConfig(uint32_t sessionId,
  338. const GnssSvTypeConfig& constellationEnablementConfig,
  339. const GnssSvIdConfig& blacklistSvConfig);
  340. void gnssUpdateSecondaryBandConfig(
  341. uint32_t sessionId, const GnssSvTypeConfig& secondaryBandConfig);
  342. void gnssGetSecondaryBandConfig(uint32_t sessionId);
  343. void resetSvConfig(uint32_t sessionId);
  344. void configLeverArm(uint32_t sessionId, const LeverArmConfigInfo& configInfo);
  345. void configRobustLocation(uint32_t sessionId, bool enable, bool enableForE911);
  346. void configMinGpsWeek(uint32_t sessionId, uint16_t minGpsWeek);
  347. /* ==== NI ============================================================================= */
  348. /* ======== COMMANDS ====(Called from Client Thread)==================================== */
  349. void gnssNiResponseCommand(LocationAPI* client, uint32_t id, GnssNiResponse response);
  350. /* ======================(Called from NI Thread)======================================== */
  351. void gnssNiResponseCommand(GnssNiResponse response, void* rawRequest);
  352. /* ======== UTILITIES ================================================================== */
  353. bool hasNiNotifyCallback(LocationAPI* client);
  354. NiData& getNiData() { return mNiData; }
  355. /* ==== CONTROL CLIENT ================================================================= */
  356. /* ======== COMMANDS ====(Called from Client Thread)==================================== */
  357. uint32_t enableCommand(LocationTechnologyType techType);
  358. void disableCommand(uint32_t id);
  359. void setControlCallbacksCommand(LocationControlCallbacks& controlCallbacks);
  360. void readConfigCommand();
  361. void requestUlpCommand();
  362. void initEngHubProxyCommand();
  363. uint32_t* gnssUpdateConfigCommand(const GnssConfig& config);
  364. uint32_t* gnssGetConfigCommand(GnssConfigFlagsMask mask);
  365. uint32_t gnssDeleteAidingDataCommand(GnssAidingData& data);
  366. void deleteAidingData(const GnssAidingData &data, uint32_t sessionId);
  367. void gnssUpdateXtraThrottleCommand(const bool enabled);
  368. std::vector<LocationError> gnssUpdateConfig(const std::string& oldMoServerUrl,
  369. const std::string& moServerUrl,
  370. const std::string& serverUrl,
  371. GnssConfig& gnssConfigRequested,
  372. GnssConfig& gnssConfigNeedEngineUpdate, size_t count = 0);
  373. /* ==== GNSS SV TYPE CONFIG ============================================================ */
  374. /* ==== COMMANDS ====(Called from Client Thread)======================================== */
  375. /* ==== These commands are received directly from client bypassing Location API ======== */
  376. void gnssUpdateSvTypeConfigCommand(GnssSvTypeConfig config);
  377. void gnssGetSvTypeConfigCommand(GnssSvTypeConfigCallback callback);
  378. void gnssResetSvTypeConfigCommand();
  379. /* ==== UTILITIES ====================================================================== */
  380. LocationError gnssSvIdConfigUpdateSync(const std::vector<GnssSvIdSource>& blacklistedSvIds);
  381. LocationError gnssSvIdConfigUpdateSync();
  382. void gnssSvIdConfigUpdate(const std::vector<GnssSvIdSource>& blacklistedSvIds);
  383. void gnssSvIdConfigUpdate();
  384. void gnssSvTypeConfigUpdate(const GnssSvTypeConfig& config);
  385. void gnssSvTypeConfigUpdate(bool sendReset = false);
  386. inline void gnssSetSvTypeConfig(const GnssSvTypeConfig& config)
  387. { mGnssSvTypeConfig = config; }
  388. inline void gnssSetSvTypeConfigCallback(GnssSvTypeConfigCallback callback)
  389. { mGnssSvTypeConfigCb = callback; }
  390. inline GnssSvTypeConfigCallback gnssGetSvTypeConfigCallback()
  391. { return mGnssSvTypeConfigCb; }
  392. void setConfig();
  393. void gnssSecondaryBandConfigUpdate(LocApiResponse* locApiResponse= nullptr);
  394. uint32_t getNfwControlBits(const std::vector<std::string>& enabledNfws);
  395. void readNfwLockConfig();
  396. /* ========= AGPS ====================================================================== */
  397. /* ======== COMMANDS ====(Called from Client Thread)==================================== */
  398. void initDefaultAgpsCommand();
  399. void initAgpsCommand(const AgpsCbInfo& cbInfo);
  400. void initNfwCommand(const NfwCbInfo& cbInfo);
  401. void dataConnOpenCommand(AGpsExtType agpsType,
  402. const char* apnName, int apnLen, AGpsBearerType bearerType);
  403. void dataConnClosedCommand(AGpsExtType agpsType);
  404. void dataConnFailedCommand(AGpsExtType agpsType);
  405. void getGnssEnergyConsumedCommand(GnssEnergyConsumedCallback energyConsumedCb);
  406. void nfwControlCommand(std::vector<std::string>& enabledNfws);
  407. uint32_t setConstrainedTuncCommand (bool enable, float tuncConstraint,
  408. uint32_t energyBudget);
  409. uint32_t setPositionAssistedClockEstimatorCommand (bool enable);
  410. uint32_t gnssUpdateSvConfigCommand(const GnssSvTypeConfig& constellationEnablementConfig,
  411. const GnssSvIdConfig& blacklistSvConfig);
  412. uint32_t gnssUpdateSecondaryBandConfigCommand(
  413. const GnssSvTypeConfig& secondaryBandConfig);
  414. uint32_t gnssGetSecondaryBandConfigCommand();
  415. uint32_t configLeverArmCommand(const LeverArmConfigInfo& configInfo);
  416. uint32_t configRobustLocationCommand(bool enable, bool enableForE911);
  417. bool openMeasCorrCommand(const measCorrSetCapabilitiesCb setCapabilitiesCb);
  418. bool measCorrSetCorrectionsCommand(const GnssMeasurementCorrections gnssMeasCorr);
  419. inline void closeMeasCorrCommand() { mIsMeasCorrInterfaceOpen = false; }
  420. uint32_t antennaInfoInitCommand(const antennaInfoCb antennaInfoCallback);
  421. inline void antennaInfoCloseCommand() { mIsAntennaInfoInterfaceOpened = false; }
  422. uint32_t configMinGpsWeekCommand(uint16_t minGpsWeek);
  423. uint32_t configDeadReckoningEngineParamsCommand(const DeadReckoningEngineConfig& dreConfig);
  424. uint32_t configEngineRunStateCommand(PositioningEngineMask engType,
  425. LocEngineRunState engState);
  426. uint32_t configOutputNmeaTypesCommand(GnssNmeaTypesMask enabledNmeaTypes);
  427. void powerIndicationInitCommand(const powerIndicationCb powerIndicationCallback);
  428. void powerIndicationRequestCommand();
  429. /* ========= ODCPI ===================================================================== */
  430. /* ======== COMMANDS ====(Called from Client Thread)==================================== */
  431. void initOdcpiCommand(const OdcpiRequestCallback& callback, OdcpiPrioritytype priority);
  432. void injectOdcpiCommand(const Location& location);
  433. void setAddressRequestCbCommand(const std::function<void(const Location&)>& addressRequestCb);
  434. void injectLocationAndAddrCommand(const Location& location, const GnssCivicAddress& addr);
  435. /* ======== RESPONSES ================================================================== */
  436. void reportResponse(LocationError err, uint32_t sessionId);
  437. void reportResponse(size_t count, LocationError* errs, uint32_t* ids);
  438. /* ======== UTILITIES ================================================================== */
  439. /* ======== COMMANDS ====(Called from Client Thread)==================================== */
  440. void initCDFWServiceCommand();
  441. LocationControlCallbacks& getControlCallbacks() { return mControlCallbacks; }
  442. void setControlCallbacks(const LocationControlCallbacks& controlCallbacks)
  443. { mControlCallbacks = controlCallbacks; }
  444. void setAfwControlId(uint32_t id) { mAfwControlId = id; }
  445. uint32_t getAfwControlId() { return mAfwControlId; }
  446. virtual bool isInSession() { return !mTimeBasedTrackingSessions.empty(); }
  447. void initDefaultAgps();
  448. bool initEngHubProxy();
  449. void initCDFWService();
  450. void odcpiTimerExpireEvent();
  451. /* ==== REPORTS ======================================================================== */
  452. /* ======== EVENTS ====(Called from QMI/EngineHub Thread)===================================== */
  453. virtual void reportPositionEvent(const UlpLocation& ulpLocation,
  454. const GpsLocationExtended& locationExtended,
  455. enum loc_sess_status status,
  456. LocPosTechMask techMask,
  457. GnssDataNotification* pDataNotify = nullptr,
  458. int msInWeek = -1);
  459. virtual void reportEnginePositionsEvent(unsigned int count,
  460. EngineLocationInfo* locationArr);
  461. virtual void reportSvEvent(const GnssSvNotification& svNotify);
  462. virtual void reportNmeaEvent(const char* nmea, size_t length);
  463. virtual void reportDataEvent(const GnssDataNotification& dataNotify, int msInWeek);
  464. virtual bool requestNiNotifyEvent(const GnssNiNotification& notify, const void* data,
  465. const LocInEmergency emergencyState);
  466. virtual void reportGnssMeasurementsEvent(const GnssMeasurements& gnssMeasurements,
  467. int msInWeek);
  468. virtual void reportSvPolynomialEvent(GnssSvPolynomial &svPolynomial);
  469. virtual void reportSvEphemerisEvent(GnssSvEphemerisReport & svEphemeris);
  470. virtual void reportGnssSvIdConfigEvent(const GnssSvIdConfig& config);
  471. virtual void reportGnssSvTypeConfigEvent(const GnssSvTypeConfig& config);
  472. virtual void reportGnssConfigEvent(uint32_t sessionId, const GnssConfig& gnssConfig);
  473. virtual bool reportGnssEngEnergyConsumedEvent(uint64_t energyConsumedSinceFirstBoot);
  474. virtual void reportLocationSystemInfoEvent(const LocationSystemInfo& locationSystemInfo);
  475. virtual bool requestATL(int connHandle, LocAGpsType agps_type,
  476. LocApnTypeMask apn_type_mask,
  477. LocSubId sub_id=LOC_DEFAULT_SUB);
  478. virtual bool releaseATL(int connHandle);
  479. virtual bool requestOdcpiEvent(OdcpiRequestInfo& request);
  480. virtual bool reportDeleteAidingDataEvent(GnssAidingData& aidingData);
  481. virtual bool reportKlobucharIonoModelEvent(GnssKlobucharIonoModel& ionoModel);
  482. virtual bool reportGnssAdditionalSystemInfoEvent(
  483. GnssAdditionalSystemInfo& additionalSystemInfo);
  484. virtual void reportNfwNotificationEvent(GnssNfwNotification& notification);
  485. virtual void reportLatencyInfoEvent(const GnssLatencyInfo& gnssLatencyInfo);
  486. virtual bool reportQwesCapabilities
  487. (
  488. const std::unordered_map<LocationQwesFeatureType, bool> &featureMap
  489. );
  490. void reportPdnTypeFromWds(int pdnType, AGpsExtType agpsType, std::string apnName,
  491. AGpsBearerType bearerType);
  492. /* ======== UTILITIES ================================================================= */
  493. bool needReportForAllClients(const UlpLocation& ulpLocation,
  494. enum loc_sess_status status, LocPosTechMask techMask);
  495. bool needReportForClient(LocationAPI* client, enum loc_sess_status status);
  496. inline bool needReportForAnyClient(enum loc_sess_status status) {
  497. return needReportForClient(nullptr, status);
  498. }
  499. bool needToGenerateNmeaReport(const uint32_t &gpsTimeOfWeekMs,
  500. const struct timespec32_t &apTimeStamp);
  501. void reportPosition(const UlpLocation &ulpLocation,
  502. const GpsLocationExtended &locationExtended,
  503. enum loc_sess_status status,
  504. LocPosTechMask techMask);
  505. void reportEnginePositions(unsigned int count,
  506. const EngineLocationInfo* locationArr);
  507. void reportSv(GnssSvNotification& svNotify);
  508. void reportNmea(const char* nmea, size_t length);
  509. void reportData(GnssDataNotification& dataNotify);
  510. bool requestNiNotify(const GnssNiNotification& notify, const void* data,
  511. const bool bInformNiAccept);
  512. void reportGnssMeasurementData(const GnssMeasurementsNotification& measurements);
  513. void reportGnssSvIdConfig(const GnssSvIdConfig& config);
  514. void reportGnssSvTypeConfig(const GnssSvTypeConfig& config);
  515. void reportGnssConfig(uint32_t sessionId, const GnssConfig& gnssConfig);
  516. void requestOdcpi(const OdcpiRequestInfo& request);
  517. void invokeGnssEnergyConsumedCallback(uint64_t energyConsumedSinceFirstBoot);
  518. void saveGnssEnergyConsumedCallback(GnssEnergyConsumedCallback energyConsumedCb);
  519. void reportLocationSystemInfo(const LocationSystemInfo & locationSystemInfo);
  520. inline void reportNfwNotification(const GnssNfwNotification& notification) {
  521. if (NULL != mNfwCb) {
  522. mNfwCb(notification);
  523. }
  524. }
  525. void updatePowerState(PowerStateType powerState);
  526. inline bool getE911State(GnssNiType niType) {
  527. if (NULL != mIsE911Session) {
  528. return mIsE911Session();
  529. } else {
  530. /* On LE targets(mIsE911Session is NULL) with old modem
  531. and when (!LOC_SUPPORTED_FEATURE_LOCATION_PRIVACY) there is no way of
  532. knowing for GNSS_NI_TYPE_EMERGENCY_SUPL we are "in emergency",
  533. so we treat all emergency SUPL sessions as being "in emergency" so
  534. the session will be auto-accepted */
  535. return (!ContextBase::isFeatureSupported(LOC_SUPPORTED_FEATURE_LOCATION_PRIVACY) &&
  536. GNSS_NI_TYPE_EMERGENCY_SUPL == niType);
  537. }
  538. }
  539. void updateSystemPowerState(PowerStateType systemPowerState);
  540. void reportSvPolynomial(const GnssSvPolynomial &svPolynomial);
  541. std::vector<double> parseDoublesString(char* dString);
  542. void reportGnssAntennaInformation(const antennaInfoCb antennaInfoCallback);
  543. inline void setPowerIndicationCb(const powerIndicationCb powerIndicationCallback) {
  544. mPowerIndicationCb = powerIndicationCallback;
  545. }
  546. void initGnssPowerStatistics();
  547. /*======== GNSSDEBUG ================================================================*/
  548. bool getDebugReport(GnssDebugReport& report);
  549. /* get AGC information from system status and fill it */
  550. void getAgcInformation(GnssMeasurementsNotification& measurements, int msInWeek);
  551. /* get Data information from system status and fill it */
  552. void getDataInformation(GnssDataNotification& data, int msInWeek);
  553. /*==== SYSTEM STATUS ================================================================*/
  554. inline SystemStatus* getSystemStatus(void) { return mSystemStatus; }
  555. std::string& getServerUrl(void) { return mServerUrl; }
  556. std::string& getMoServerUrl(void) { return mMoServerUrl; }
  557. /*==== CONVERSION ===================================================================*/
  558. static uint32_t convertSuplVersion(const GnssConfigSuplVersion suplVersion);
  559. static uint32_t convertEP4ES(const GnssConfigEmergencyPdnForEmergencySupl);
  560. static uint32_t convertSuplEs(const GnssConfigSuplEmergencyServices suplEmergencyServices);
  561. static uint32_t convertLppeCp(const GnssConfigLppeControlPlaneMask lppeControlPlaneMask);
  562. static uint32_t convertLppeUp(const GnssConfigLppeUserPlaneMask lppeUserPlaneMask);
  563. static uint32_t convertAGloProt(const GnssConfigAGlonassPositionProtocolMask);
  564. static uint32_t convertSuplMode(const GnssConfigSuplModeMask suplModeMask);
  565. static void convertSatelliteInfo(std::vector<GnssDebugSatelliteInfo>& out,
  566. const GnssSvType& in_constellation,
  567. const SystemStatusReports& in);
  568. static bool convertToGnssSvIdConfig(
  569. const std::vector<GnssSvIdSource>& blacklistedSvIds, GnssSvIdConfig& config);
  570. static void convertFromGnssSvIdConfig(
  571. const GnssSvIdConfig& svConfig, std::vector<GnssSvIdSource>& blacklistedSvIds);
  572. static void convertGnssSvIdMaskToList(
  573. uint64_t svIdMask, std::vector<GnssSvIdSource>& svIds,
  574. GnssSvId initialSvId, GnssSvType svType);
  575. static void computeVRPBasedLla(const UlpLocation& loc, GpsLocationExtended& locExt,
  576. const LeverArmConfigInfo& leverArmConfigInfo);
  577. void injectLocationCommand(double latitude, double longitude, float accuracy);
  578. void injectLocationExtCommand(const GnssLocationInfoNotification &locationInfo);
  579. void injectTimeCommand(int64_t time, int64_t timeReference, int32_t uncertainty);
  580. void blockCPICommand(double latitude, double longitude, float accuracy,
  581. int blockDurationMsec, double latLonDiffThreshold);
  582. /* ==== MISCELLANEOUS ================================================================== */
  583. /* ======== COMMANDS ====(Called from Client Thread)==================================== */
  584. void getPowerStateChangesCommand(std::function<void(bool)> powerStateCb);
  585. /* ======== UTILITIES ================================================================== */
  586. void reportPowerStateIfChanged();
  587. void savePowerStateCallback(std::function<void(bool)> powerStateCb){
  588. mPowerStateCb = powerStateCb; }
  589. bool getPowerState() { return mPowerOn; }
  590. inline PowerStateType getSystemPowerState() { return mSystemPowerState; }
  591. void setSuplHostServer(const char* server, int port, LocServerType type);
  592. void notifyClientOfCachedLocationSystemInfo(LocationAPI* client,
  593. const LocationCallbacks& callbacks);
  594. LocationCapabilitiesMask getCapabilities();
  595. void updateSystemPowerStateCommand(PowerStateType systemPowerState);
  596. /*==== DGnss Usable Report Flag ====================================================*/
  597. inline void setDGnssUsableFLag(bool dGnssNeedReport) { mDGnssNeedReport = dGnssNeedReport;}
  598. inline bool isNMEAPrintEnabled() {
  599. return ((mContext != NULL) && (0 != mContext->mGps_conf.ENABLE_NMEA_PRINT));
  600. }
  601. /*==== DGnss Ntrip Source ==========================================================*/
  602. void updateNTRIPGGAConsentCommand(bool consentAccepted) { mSendNmeaConsent = consentAccepted; }
  603. void enablePPENtripStreamCommand(const GnssNtripConnectionParams& params, bool enableRTKEngine);
  604. void disablePPENtripStreamCommand();
  605. void handleEnablePPENtrip(const GnssNtripConnectionParams& params);
  606. void handleDisablePPENtrip();
  607. void reportGGAToNtrip(const char* nmea);
  608. inline bool isDgnssNmeaRequired() { return mSendNmeaConsent &&
  609. mStartDgnssNtripParams.ntripParams.requiresNmeaLocation;}
  610. void readPPENtripConfig();
  611. };
  612. #endif //GNSS_ADAPTER_H