LocApiBase.cpp 45 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206
  1. /* Copyright (c) 2011-2014, 2016-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. #define LOG_NDEBUG 0 //Define to enable LOGV
  30. #define LOG_TAG "LocSvc_LocApiBase"
  31. #include <dlfcn.h>
  32. #include <inttypes.h>
  33. #include <gps_extended_c.h>
  34. #include <LocApiBase.h>
  35. #include <LocAdapterBase.h>
  36. #include <log_util.h>
  37. #include <LocContext.h>
  38. #include <loc_misc_utils.h>
  39. namespace loc_core {
  40. #define MSEC_IN_ONE_WEEK 604800000LL
  41. #define REAL_TIME_ESTIMATOR_TIME_UNC_THRESHOLD_MSEC 20.0f
  42. #define UNKNOWN_GPS_WEEK_NUM 65535
  43. #define TO_ALL_LOCADAPTERS(call) TO_ALL_ADAPTERS(mLocAdapters, (call))
  44. #define TO_1ST_HANDLING_LOCADAPTERS(call) TO_1ST_HANDLING_ADAPTER(mLocAdapters, (call))
  45. int hexcode(char *hexstring, int string_size,
  46. const char *data, int data_size)
  47. {
  48. int i;
  49. for (i = 0; i < data_size; i++)
  50. {
  51. char ch = data[i];
  52. if (i*2 + 3 <= string_size)
  53. {
  54. snprintf(&hexstring[i*2], 3, "%02X", ch);
  55. }
  56. else {
  57. break;
  58. }
  59. }
  60. return i;
  61. }
  62. int decodeAddress(char *addr_string, int string_size,
  63. const char *data, int data_size)
  64. {
  65. const char addr_prefix = 0x91;
  66. int i, idxOutput = 0;
  67. if (!data || !addr_string) { return 0; }
  68. if (data[0] != addr_prefix)
  69. {
  70. LOC_LOGW("decodeAddress: address prefix is not 0x%x but 0x%x", addr_prefix, data[0]);
  71. addr_string[0] = '\0';
  72. return 0; // prefix not correct
  73. }
  74. for (i = 1; i < data_size; i++)
  75. {
  76. unsigned char ch = data[i], low = ch & 0x0F, hi = ch >> 4;
  77. if (low <= 9 && idxOutput < string_size - 1) { addr_string[idxOutput++] = low + '0'; }
  78. if (hi <= 9 && idxOutput < string_size - 1) { addr_string[idxOutput++] = hi + '0'; }
  79. }
  80. addr_string[idxOutput] = '\0'; // Terminates the string
  81. return idxOutput;
  82. }
  83. struct LocSsrMsg : public LocMsg {
  84. LocApiBase* mLocApi;
  85. inline LocSsrMsg(LocApiBase* locApi) :
  86. LocMsg(), mLocApi(locApi)
  87. {
  88. locallog();
  89. }
  90. inline virtual void proc() const {
  91. mLocApi->close();
  92. if (LOC_API_ADAPTER_ERR_SUCCESS == mLocApi->open(mLocApi->getEvtMask())) {
  93. // Notify adapters that engine up after SSR
  94. mLocApi->handleEngineUpEvent();
  95. }
  96. }
  97. inline void locallog() const {
  98. LOC_LOGV("LocSsrMsg");
  99. }
  100. inline virtual void log() const {
  101. locallog();
  102. }
  103. };
  104. struct LocOpenMsg : public LocMsg {
  105. LocApiBase* mLocApi;
  106. LocAdapterBase* mAdapter;
  107. inline LocOpenMsg(LocApiBase* locApi, LocAdapterBase* adapter = nullptr) :
  108. LocMsg(), mLocApi(locApi), mAdapter(adapter)
  109. {
  110. locallog();
  111. }
  112. inline virtual void proc() const {
  113. if (LOC_API_ADAPTER_ERR_SUCCESS == mLocApi->open(mLocApi->getEvtMask()) &&
  114. nullptr != mAdapter) {
  115. mAdapter->handleEngineUpEvent();
  116. }
  117. }
  118. inline void locallog() const {
  119. LOC_LOGv("LocOpen Mask: %" PRIx64 "\n", mLocApi->getEvtMask());
  120. }
  121. inline virtual void log() const {
  122. locallog();
  123. }
  124. };
  125. struct LocCloseMsg : public LocMsg {
  126. LocApiBase* mLocApi;
  127. inline LocCloseMsg(LocApiBase* locApi) :
  128. LocMsg(), mLocApi(locApi)
  129. {
  130. locallog();
  131. }
  132. inline virtual void proc() const {
  133. mLocApi->close();
  134. }
  135. inline void locallog() const {
  136. }
  137. inline virtual void log() const {
  138. locallog();
  139. }
  140. };
  141. MsgTask* LocApiBase::mMsgTask = nullptr;
  142. volatile int32_t LocApiBase::mMsgTaskRefCount = 0;
  143. LocApiBase::LocApiBase(LOC_API_ADAPTER_EVENT_MASK_T excludedMask,
  144. ContextBase* context) :
  145. mContext(context),
  146. mMask(0), mExcludedMask(excludedMask)
  147. {
  148. memset(mLocAdapters, 0, sizeof(mLocAdapters));
  149. android_atomic_inc(&mMsgTaskRefCount);
  150. if (nullptr == mMsgTask) {
  151. mMsgTask = new MsgTask("LocApiMsgTask");
  152. }
  153. }
  154. LOC_API_ADAPTER_EVENT_MASK_T LocApiBase::getEvtMask()
  155. {
  156. LOC_API_ADAPTER_EVENT_MASK_T mask = 0;
  157. TO_ALL_LOCADAPTERS(mask |= mLocAdapters[i]->getEvtMask());
  158. return mask & ~mExcludedMask;
  159. }
  160. bool LocApiBase::isMaster()
  161. {
  162. bool isMaster = false;
  163. for (int i = 0;
  164. !isMaster && i < MAX_ADAPTERS && NULL != mLocAdapters[i];
  165. i++) {
  166. isMaster |= mLocAdapters[i]->isAdapterMaster();
  167. }
  168. return isMaster;
  169. }
  170. bool LocApiBase::isInSession()
  171. {
  172. bool inSession = false;
  173. for (int i = 0;
  174. !inSession && i < MAX_ADAPTERS && NULL != mLocAdapters[i];
  175. i++) {
  176. inSession = mLocAdapters[i]->isInSession();
  177. }
  178. return inSession;
  179. }
  180. bool LocApiBase::needReport(const UlpLocation& ulpLocation,
  181. enum loc_sess_status status,
  182. LocPosTechMask techMask)
  183. {
  184. bool reported = false;
  185. if (LOC_SESS_SUCCESS == status) {
  186. // this is a final fix
  187. LocPosTechMask mask =
  188. LOC_POS_TECH_MASK_SATELLITE | LOC_POS_TECH_MASK_SENSORS | LOC_POS_TECH_MASK_HYBRID |
  189. LOC_POS_TECH_MASK_PROPAGATED;
  190. // it is a Satellite fix or a sensor fix
  191. reported = (mask & techMask);
  192. }
  193. else if (LOC_SESS_INTERMEDIATE == status &&
  194. LOC_SESS_INTERMEDIATE == ContextBase::mGps_conf.INTERMEDIATE_POS) {
  195. // this is a intermediate fix and we accept intermediate
  196. // it is NOT the case that
  197. // there is inaccuracy; and
  198. // we care about inaccuracy; and
  199. // the inaccuracy exceeds our tolerance
  200. reported = !((ulpLocation.gpsLocation.flags & LOC_GPS_LOCATION_HAS_ACCURACY) &&
  201. (ContextBase::mGps_conf.ACCURACY_THRES != 0) &&
  202. (ulpLocation.gpsLocation.accuracy > ContextBase::mGps_conf.ACCURACY_THRES));
  203. }
  204. return reported;
  205. }
  206. void LocApiBase::addAdapter(LocAdapterBase* adapter)
  207. {
  208. for (int i = 0; i < MAX_ADAPTERS && mLocAdapters[i] != adapter; i++) {
  209. if (mLocAdapters[i] == NULL) {
  210. mLocAdapters[i] = adapter;
  211. sendMsg(new LocOpenMsg(this, adapter));
  212. break;
  213. }
  214. }
  215. }
  216. void LocApiBase::removeAdapter(LocAdapterBase* adapter)
  217. {
  218. for (int i = 0;
  219. i < MAX_ADAPTERS && NULL != mLocAdapters[i];
  220. i++) {
  221. if (mLocAdapters[i] == adapter) {
  222. mLocAdapters[i] = NULL;
  223. // shift the rest of the adapters up so that the pointers
  224. // in the array do not have holes. This should be more
  225. // performant, because the array maintenance is much much
  226. // less frequent than event handlings, which need to linear
  227. // search all the adapters
  228. int j = i;
  229. while (++i < MAX_ADAPTERS && mLocAdapters[i] != NULL);
  230. // i would be MAX_ADAPTERS or point to a NULL
  231. i--;
  232. // i now should point to a none NULL adapter within valid
  233. // range although i could be equal to j, but it won't hurt.
  234. // No need to check it, as it gains nothing.
  235. mLocAdapters[j] = mLocAdapters[i];
  236. // this makes sure that we exit the for loop
  237. mLocAdapters[i] = NULL;
  238. // if we have an empty list of adapters
  239. if (0 == i) {
  240. sendMsg(new LocCloseMsg(this));
  241. } else {
  242. // else we need to remove the bit
  243. sendMsg(new LocOpenMsg(this));
  244. }
  245. }
  246. }
  247. }
  248. void LocApiBase::updateEvtMask()
  249. {
  250. sendMsg(new LocOpenMsg(this));
  251. }
  252. void LocApiBase::updateNmeaMask(uint32_t mask)
  253. {
  254. struct LocSetNmeaMsg : public LocMsg {
  255. LocApiBase* mLocApi;
  256. uint32_t mMask;
  257. inline LocSetNmeaMsg(LocApiBase* locApi, uint32_t mask) :
  258. LocMsg(), mLocApi(locApi), mMask(mask)
  259. {
  260. locallog();
  261. }
  262. inline virtual void proc() const {
  263. mLocApi->setNMEATypesSync(mMask);
  264. }
  265. inline void locallog() const {
  266. LOC_LOGv("LocSyncNmea NmeaMask: %" PRIx32 "\n", mMask);
  267. }
  268. inline virtual void log() const {
  269. locallog();
  270. }
  271. };
  272. sendMsg(new LocSetNmeaMsg(this, mask));
  273. }
  274. void LocApiBase::handleEngineUpEvent()
  275. {
  276. // loop through adapters, and deliver to all adapters.
  277. TO_ALL_LOCADAPTERS(mLocAdapters[i]->handleEngineUpEvent());
  278. }
  279. void LocApiBase::handleEngineDownEvent()
  280. { // This will take care of renegotiating the loc handle
  281. sendMsg(new LocSsrMsg(this));
  282. // loop through adapters, and deliver to all adapters.
  283. TO_ALL_LOCADAPTERS(mLocAdapters[i]->handleEngineDownEvent());
  284. }
  285. void LocApiBase::reportPosition(UlpLocation& location,
  286. GpsLocationExtended& locationExtended,
  287. enum loc_sess_status status,
  288. LocPosTechMask loc_technology_mask,
  289. GnssDataNotification* pDataNotify,
  290. int msInWeek)
  291. {
  292. // print the location info before delivering
  293. LOC_LOGD("flags: %d\n source: %d\n latitude: %f\n longitude: %f\n "
  294. "altitude: %f\n speed: %f\n bearing: %f\n accuracy: %f\n "
  295. "timestamp: %" PRId64 "\n"
  296. "Session status: %d\n Technology mask: %u\n, time bias unc %f msec\n "
  297. "SV used in fix (gps/glo/bds/gal/qzss) : \
  298. (0x%" PRIx64 "/0x%" PRIx64 "/0x%" PRIx64 "/0x%" PRIx64 "/0x%" PRIx64 "/0x%" PRIx64 ")",
  299. location.gpsLocation.flags, location.position_source,
  300. location.gpsLocation.latitude, location.gpsLocation.longitude,
  301. location.gpsLocation.altitude, location.gpsLocation.speed,
  302. location.gpsLocation.bearing, location.gpsLocation.accuracy,
  303. location.gpsLocation.timestamp, status, loc_technology_mask,
  304. locationExtended.gnssSystemTime.u.gpsSystemTime.systemClkTimeUncMs,
  305. locationExtended.gnss_sv_used_ids.gps_sv_used_ids_mask,
  306. locationExtended.gnss_sv_used_ids.glo_sv_used_ids_mask,
  307. locationExtended.gnss_sv_used_ids.bds_sv_used_ids_mask,
  308. locationExtended.gnss_sv_used_ids.gal_sv_used_ids_mask,
  309. locationExtended.gnss_sv_used_ids.qzss_sv_used_ids_mask,
  310. locationExtended.gnss_sv_used_ids.navic_sv_used_ids_mask);
  311. // loop through adapters, and deliver to all adapters.
  312. TO_ALL_LOCADAPTERS(
  313. mLocAdapters[i]->reportPositionEvent(location, locationExtended,
  314. status, loc_technology_mask,
  315. pDataNotify, msInWeek)
  316. );
  317. }
  318. void LocApiBase::reportWwanZppFix(LocGpsLocation &zppLoc)
  319. {
  320. // loop through adapters, and deliver to the first handling adapter.
  321. TO_1ST_HANDLING_LOCADAPTERS(mLocAdapters[i]->reportWwanZppFix(zppLoc));
  322. }
  323. void LocApiBase::reportZppBestAvailableFix(LocGpsLocation &zppLoc,
  324. GpsLocationExtended &location_extended, LocPosTechMask tech_mask)
  325. {
  326. // loop through adapters, and deliver to the first handling adapter.
  327. TO_1ST_HANDLING_LOCADAPTERS(mLocAdapters[i]->reportZppBestAvailableFix(zppLoc,
  328. location_extended, tech_mask));
  329. }
  330. void LocApiBase::requestOdcpi(OdcpiRequestInfo& request)
  331. {
  332. // loop through adapters, and deliver to the first handling adapter.
  333. TO_1ST_HANDLING_LOCADAPTERS(mLocAdapters[i]->requestOdcpiEvent(request));
  334. }
  335. void LocApiBase::reportGnssEngEnergyConsumedEvent(uint64_t energyConsumedSinceFirstBoot)
  336. {
  337. // loop through adapters, and deliver to the first handling adapter.
  338. TO_ALL_LOCADAPTERS(mLocAdapters[i]->reportGnssEngEnergyConsumedEvent(
  339. energyConsumedSinceFirstBoot));
  340. }
  341. void LocApiBase::reportDeleteAidingDataEvent(GnssAidingData& aidingData) {
  342. // loop through adapters, and deliver to the first handling adapter.
  343. TO_1ST_HANDLING_LOCADAPTERS(mLocAdapters[i]->reportDeleteAidingDataEvent(aidingData));
  344. }
  345. void LocApiBase::reportKlobucharIonoModel(GnssKlobucharIonoModel & ionoModel) {
  346. // loop through adapters, and deliver to the first handling adapter.
  347. TO_1ST_HANDLING_LOCADAPTERS(mLocAdapters[i]->reportKlobucharIonoModelEvent(ionoModel));
  348. }
  349. void LocApiBase::reportGnssAdditionalSystemInfo(GnssAdditionalSystemInfo& additionalSystemInfo) {
  350. // loop through adapters, and deliver to the first handling adapter.
  351. TO_1ST_HANDLING_LOCADAPTERS(mLocAdapters[i]->reportGnssAdditionalSystemInfoEvent(
  352. additionalSystemInfo));
  353. }
  354. void LocApiBase::sendNfwNotification(GnssNfwNotification& notification)
  355. {
  356. // loop through adapters, and deliver to the first handling adapter.
  357. TO_ALL_LOCADAPTERS(mLocAdapters[i]->reportNfwNotificationEvent(notification));
  358. }
  359. void LocApiBase::reportSv(GnssSvNotification& svNotify)
  360. {
  361. const char* constellationString[] = { "Unknown", "GPS", "SBAS", "GLONASS",
  362. "QZSS", "BEIDOU", "GALILEO", "NAVIC" };
  363. // print the SV info before delivering
  364. LOC_LOGV("num sv: %u\n"
  365. " sv: constellation svid cN0 basebandCN0"
  366. " elevation azimuth flags",
  367. svNotify.count);
  368. for (size_t i = 0; i < svNotify.count && i < GNSS_SV_MAX; i++) {
  369. if (svNotify.gnssSvs[i].type >
  370. sizeof(constellationString) / sizeof(constellationString[0]) - 1) {
  371. svNotify.gnssSvs[i].type = GNSS_SV_TYPE_UNKNOWN;
  372. }
  373. // Display what we report to clients
  374. LOC_LOGV(" %03zu: %*s %02d %f %f %f %f %f 0x%02X 0x%2X",
  375. i,
  376. 13,
  377. constellationString[svNotify.gnssSvs[i].type],
  378. svNotify.gnssSvs[i].svId,
  379. svNotify.gnssSvs[i].cN0Dbhz,
  380. svNotify.gnssSvs[i].basebandCarrierToNoiseDbHz,
  381. svNotify.gnssSvs[i].elevation,
  382. svNotify.gnssSvs[i].azimuth,
  383. svNotify.gnssSvs[i].carrierFrequencyHz,
  384. svNotify.gnssSvs[i].gnssSvOptionsMask,
  385. svNotify.gnssSvs[i].gnssSignalTypeMask);
  386. }
  387. // loop through adapters, and deliver to all adapters.
  388. TO_ALL_LOCADAPTERS(
  389. mLocAdapters[i]->reportSvEvent(svNotify)
  390. );
  391. }
  392. void LocApiBase::reportSvPolynomial(GnssSvPolynomial &svPolynomial)
  393. {
  394. // loop through adapters, and deliver to all adapters.
  395. TO_ALL_LOCADAPTERS(
  396. mLocAdapters[i]->reportSvPolynomialEvent(svPolynomial)
  397. );
  398. }
  399. void LocApiBase::reportSvEphemeris(GnssSvEphemerisReport & svEphemeris)
  400. {
  401. // loop through adapters, and deliver to all adapters.
  402. TO_ALL_LOCADAPTERS(
  403. mLocAdapters[i]->reportSvEphemerisEvent(svEphemeris)
  404. );
  405. }
  406. void LocApiBase::reportStatus(LocGpsStatusValue status)
  407. {
  408. // loop through adapters, and deliver to all adapters.
  409. TO_ALL_LOCADAPTERS(mLocAdapters[i]->reportStatus(status));
  410. }
  411. void LocApiBase::reportData(GnssDataNotification& dataNotify, int msInWeek)
  412. {
  413. // loop through adapters, and deliver to all adapters.
  414. TO_ALL_LOCADAPTERS(mLocAdapters[i]->reportDataEvent(dataNotify, msInWeek));
  415. }
  416. void LocApiBase::reportNmea(const char* nmea, int length)
  417. {
  418. // loop through adapters, and deliver to all adapters.
  419. TO_ALL_LOCADAPTERS(mLocAdapters[i]->reportNmeaEvent(nmea, length));
  420. }
  421. void LocApiBase::reportXtraServer(const char* url1, const char* url2,
  422. const char* url3, const int maxlength)
  423. {
  424. // loop through adapters, and deliver to the first handling adapter.
  425. TO_1ST_HANDLING_LOCADAPTERS(mLocAdapters[i]->reportXtraServer(url1, url2, url3, maxlength));
  426. }
  427. void LocApiBase::reportLocationSystemInfo(const LocationSystemInfo& locationSystemInfo)
  428. {
  429. // loop through adapters, and deliver to all adapters.
  430. TO_ALL_LOCADAPTERS(mLocAdapters[i]->reportLocationSystemInfoEvent(locationSystemInfo));
  431. }
  432. void LocApiBase::reportQwesCapabilities
  433. (
  434. const std::unordered_map<LocationQwesFeatureType, bool> &featureMap
  435. )
  436. {
  437. // loop through adapters, and deliver to all adapters.
  438. TO_ALL_LOCADAPTERS(mLocAdapters[i]->reportQwesCapabilities(featureMap));
  439. }
  440. void LocApiBase::requestXtraData()
  441. {
  442. // loop through adapters, and deliver to the first handling adapter.
  443. TO_1ST_HANDLING_LOCADAPTERS(mLocAdapters[i]->requestXtraData());
  444. }
  445. void LocApiBase::requestTime()
  446. {
  447. // loop through adapters, and deliver to the first handling adapter.
  448. TO_1ST_HANDLING_LOCADAPTERS(mLocAdapters[i]->requestTime());
  449. }
  450. void LocApiBase::requestLocation()
  451. {
  452. // loop through adapters, and deliver to the first handling adapter.
  453. TO_1ST_HANDLING_LOCADAPTERS(mLocAdapters[i]->requestLocation());
  454. }
  455. void LocApiBase::requestATL(int connHandle, LocAGpsType agps_type,
  456. LocApnTypeMask apn_type_mask, LocSubId sub_id)
  457. {
  458. // loop through adapters, and deliver to the first handling adapter.
  459. TO_1ST_HANDLING_LOCADAPTERS(
  460. mLocAdapters[i]->requestATL(connHandle, agps_type, apn_type_mask, sub_id));
  461. }
  462. void LocApiBase::releaseATL(int connHandle)
  463. {
  464. // loop through adapters, and deliver to the first handling adapter.
  465. TO_1ST_HANDLING_LOCADAPTERS(mLocAdapters[i]->releaseATL(connHandle));
  466. }
  467. void LocApiBase::requestNiNotify(GnssNiNotification &notify, const void* data,
  468. const LocInEmergency emergencyState)
  469. {
  470. // loop through adapters, and deliver to the first handling adapter.
  471. TO_1ST_HANDLING_LOCADAPTERS(
  472. mLocAdapters[i]->requestNiNotifyEvent(notify,
  473. data,
  474. emergencyState));
  475. }
  476. void* LocApiBase :: getSibling()
  477. DEFAULT_IMPL(NULL)
  478. LocApiProxyBase* LocApiBase :: getLocApiProxy()
  479. DEFAULT_IMPL(NULL)
  480. void LocApiBase::reportGnssMeasurements(GnssMeasurements& gnssMeasurements, int msInWeek)
  481. {
  482. // loop through adapters, and deliver to all adapters.
  483. TO_ALL_LOCADAPTERS(mLocAdapters[i]->reportGnssMeasurementsEvent(gnssMeasurements, msInWeek));
  484. }
  485. void LocApiBase::reportGnssSvIdConfig(const GnssSvIdConfig& config)
  486. {
  487. // Print the config
  488. LOC_LOGv("gloBlacklistSvMask: %" PRIu64 ", bdsBlacklistSvMask: %" PRIu64 ",\n"
  489. "qzssBlacklistSvMask: %" PRIu64 ", galBlacklistSvMask: %" PRIu64 ",\n"
  490. "navicBlacklistSvMask: %" PRIu64,
  491. config.gloBlacklistSvMask, config.bdsBlacklistSvMask,
  492. config.qzssBlacklistSvMask, config.galBlacklistSvMask, config.navicBlacklistSvMask);
  493. // Loop through adapters, and deliver to all adapters.
  494. TO_ALL_LOCADAPTERS(mLocAdapters[i]->reportGnssSvIdConfigEvent(config));
  495. }
  496. void LocApiBase::reportGnssSvTypeConfig(const GnssSvTypeConfig& config)
  497. {
  498. // Print the config
  499. LOC_LOGv("blacklistedMask: %" PRIu64 ", enabledMask: %" PRIu64,
  500. config.blacklistedSvTypesMask, config.enabledSvTypesMask);
  501. // Loop through adapters, and deliver to all adapters.
  502. TO_ALL_LOCADAPTERS(mLocAdapters[i]->reportGnssSvTypeConfigEvent(config));
  503. }
  504. void LocApiBase::geofenceBreach(size_t count, uint32_t* hwIds, Location& location,
  505. GeofenceBreachType breachType, uint64_t timestamp)
  506. {
  507. TO_ALL_LOCADAPTERS(mLocAdapters[i]->geofenceBreachEvent(count, hwIds, location, breachType,
  508. timestamp));
  509. }
  510. void LocApiBase::geofenceStatus(GeofenceStatusAvailable available)
  511. {
  512. TO_ALL_LOCADAPTERS(mLocAdapters[i]->geofenceStatusEvent(available));
  513. }
  514. void LocApiBase::reportDBTPosition(UlpLocation &location, GpsLocationExtended &locationExtended,
  515. enum loc_sess_status status, LocPosTechMask loc_technology_mask)
  516. {
  517. TO_ALL_LOCADAPTERS(mLocAdapters[i]->reportPositionEvent(location, locationExtended, status,
  518. loc_technology_mask));
  519. }
  520. void LocApiBase::reportLocations(Location* locations, size_t count, BatchingMode batchingMode)
  521. {
  522. TO_ALL_LOCADAPTERS(mLocAdapters[i]->reportLocationsEvent(locations, count, batchingMode));
  523. }
  524. void LocApiBase::reportCompletedTrips(uint32_t accumulated_distance)
  525. {
  526. TO_ALL_LOCADAPTERS(mLocAdapters[i]->reportCompletedTripsEvent(accumulated_distance));
  527. }
  528. void LocApiBase::handleBatchStatusEvent(BatchingStatus batchStatus)
  529. {
  530. TO_ALL_LOCADAPTERS(mLocAdapters[i]->reportBatchStatusChangeEvent(batchStatus));
  531. }
  532. void LocApiBase::reportGnssConfig(uint32_t sessionId, const GnssConfig& gnssConfig)
  533. {
  534. // loop through adapters, and deliver to the first handling adapter.
  535. TO_ALL_LOCADAPTERS(mLocAdapters[i]->reportGnssConfigEvent(sessionId, gnssConfig));
  536. }
  537. void LocApiBase::reportLatencyInfo(GnssLatencyInfo& gnssLatencyInfo)
  538. {
  539. // loop through adapters, and deliver to the first handling adapter.
  540. TO_ALL_LOCADAPTERS(mLocAdapters[i]->reportLatencyInfoEvent(gnssLatencyInfo));
  541. }
  542. void LocApiBase::reportEngDebugDataInfo(GnssEngineDebugDataInfo& gnssEngineDebugDataInfo) {
  543. TO_ALL_LOCADAPTERS(mLocAdapters[i]->reportEngDebugDataInfoEvent(gnssEngineDebugDataInfo));
  544. }
  545. enum loc_api_adapter_err LocApiBase::
  546. open(LOC_API_ADAPTER_EVENT_MASK_T /*mask*/)
  547. DEFAULT_IMPL(LOC_API_ADAPTER_ERR_SUCCESS)
  548. enum loc_api_adapter_err LocApiBase::
  549. close()
  550. DEFAULT_IMPL(LOC_API_ADAPTER_ERR_SUCCESS)
  551. void LocApiBase::
  552. deleteAidingData(const GnssAidingData& /*data*/, LocApiResponse* /*adapterResponse*/)
  553. DEFAULT_IMPL()
  554. void LocApiBase::
  555. injectPosition(double /*latitude*/, double /*longitude*/, float /*accuracy*/,
  556. bool /*onDemandCpi*/)
  557. DEFAULT_IMPL()
  558. void LocApiBase::
  559. injectPosition(const Location& /*location*/, bool /*onDemandCpi*/)
  560. DEFAULT_IMPL()
  561. void LocApiBase::
  562. injectPosition(const GnssLocationInfoNotification & /*locationInfo*/, bool /*onDemandCpi*/)
  563. DEFAULT_IMPL()
  564. void LocApiBase::
  565. injectPositionAndCivicAddress(const Location& location, const GnssCivicAddress& addr)
  566. DEFAULT_IMPL()
  567. void LocApiBase::
  568. setTime(LocGpsUtcTime /*time*/, int64_t /*timeReference*/, int /*uncertainty*/)
  569. DEFAULT_IMPL()
  570. void LocApiBase::
  571. atlOpenStatus(int /*handle*/, int /*is_succ*/, char* /*apn*/, uint32_t /*apnLen*/,
  572. AGpsBearerType /*bear*/, LocAGpsType /*agpsType*/,
  573. LocApnTypeMask /*mask*/)
  574. DEFAULT_IMPL()
  575. void LocApiBase::
  576. atlCloseStatus(int /*handle*/, int /*is_succ*/)
  577. DEFAULT_IMPL()
  578. LocationError LocApiBase::
  579. setServerSync(const char* /*url*/, int /*len*/, LocServerType /*type*/)
  580. DEFAULT_IMPL(LOCATION_ERROR_SUCCESS)
  581. LocationError LocApiBase::
  582. setServerSync(unsigned int /*ip*/, int /*port*/, LocServerType /*type*/)
  583. DEFAULT_IMPL(LOCATION_ERROR_SUCCESS)
  584. void LocApiBase::
  585. informNiResponse(GnssNiResponse /*userResponse*/, const void* /*passThroughData*/)
  586. DEFAULT_IMPL()
  587. LocationError LocApiBase::
  588. setSUPLVersionSync(GnssConfigSuplVersion /*version*/)
  589. DEFAULT_IMPL(LOCATION_ERROR_SUCCESS)
  590. enum loc_api_adapter_err LocApiBase::
  591. setNMEATypesSync (uint32_t /*typesMask*/)
  592. DEFAULT_IMPL(LOC_API_ADAPTER_ERR_SUCCESS)
  593. LocationError LocApiBase::
  594. setLPPConfigSync(GnssConfigLppProfileMask /*profileMask*/)
  595. DEFAULT_IMPL(LOCATION_ERROR_SUCCESS)
  596. enum loc_api_adapter_err LocApiBase::
  597. setSensorPropertiesSync(bool /*gyroBiasVarianceRandomWalk_valid*/,
  598. float /*gyroBiasVarianceRandomWalk*/,
  599. bool /*accelBiasVarianceRandomWalk_valid*/,
  600. float /*accelBiasVarianceRandomWalk*/,
  601. bool /*angleBiasVarianceRandomWalk_valid*/,
  602. float /*angleBiasVarianceRandomWalk*/,
  603. bool /*rateBiasVarianceRandomWalk_valid*/,
  604. float /*rateBiasVarianceRandomWalk*/,
  605. bool /*velocityBiasVarianceRandomWalk_valid*/,
  606. float /*velocityBiasVarianceRandomWalk*/)
  607. DEFAULT_IMPL(LOC_API_ADAPTER_ERR_SUCCESS)
  608. enum loc_api_adapter_err LocApiBase::
  609. setSensorPerfControlConfigSync(int /*controlMode*/,
  610. int /*accelSamplesPerBatch*/,
  611. int /*accelBatchesPerSec*/,
  612. int /*gyroSamplesPerBatch*/,
  613. int /*gyroBatchesPerSec*/,
  614. int /*accelSamplesPerBatchHigh*/,
  615. int /*accelBatchesPerSecHigh*/,
  616. int /*gyroSamplesPerBatchHigh*/,
  617. int /*gyroBatchesPerSecHigh*/,
  618. int /*algorithmConfig*/)
  619. DEFAULT_IMPL(LOC_API_ADAPTER_ERR_SUCCESS)
  620. LocationError LocApiBase::
  621. setAGLONASSProtocolSync(GnssConfigAGlonassPositionProtocolMask /*aGlonassProtocol*/)
  622. DEFAULT_IMPL(LOCATION_ERROR_SUCCESS)
  623. LocationError LocApiBase::
  624. setLPPeProtocolCpSync(GnssConfigLppeControlPlaneMask /*lppeCP*/)
  625. DEFAULT_IMPL(LOCATION_ERROR_SUCCESS)
  626. LocationError LocApiBase::
  627. setLPPeProtocolUpSync(GnssConfigLppeUserPlaneMask /*lppeUP*/)
  628. DEFAULT_IMPL(LOCATION_ERROR_SUCCESS)
  629. GnssConfigSuplVersion LocApiBase::convertSuplVersion(const uint32_t /*suplVersion*/)
  630. DEFAULT_IMPL(GNSS_CONFIG_SUPL_VERSION_1_0_0)
  631. GnssConfigLppeControlPlaneMask LocApiBase::convertLppeCp(const uint32_t /*lppeControlPlaneMask*/)
  632. DEFAULT_IMPL(0)
  633. GnssConfigLppeUserPlaneMask LocApiBase::convertLppeUp(const uint32_t /*lppeUserPlaneMask*/)
  634. DEFAULT_IMPL(0)
  635. LocationError LocApiBase::setEmergencyExtensionWindowSync(
  636. const uint32_t /*emergencyExtensionSeconds*/)
  637. DEFAULT_IMPL(LOCATION_ERROR_SUCCESS)
  638. void LocApiBase::setMeasurementCorrections(
  639. const GnssMeasurementCorrections& /*gnssMeasurementCorrections*/)
  640. DEFAULT_IMPL()
  641. void LocApiBase::
  642. getWwanZppFix()
  643. DEFAULT_IMPL()
  644. void LocApiBase::
  645. getBestAvailableZppFix()
  646. DEFAULT_IMPL()
  647. LocationError LocApiBase::
  648. setGpsLockSync(GnssConfigGpsLock /*lock*/)
  649. DEFAULT_IMPL(LOCATION_ERROR_SUCCESS)
  650. void LocApiBase::
  651. requestForAidingData(GnssAidingDataSvMask /*svDataMask*/)
  652. DEFAULT_IMPL()
  653. LocationError LocApiBase::
  654. setXtraVersionCheckSync(uint32_t /*check*/)
  655. DEFAULT_IMPL(LOCATION_ERROR_SUCCESS)
  656. LocationError LocApiBase::setBlacklistSvSync(const GnssSvIdConfig& /*config*/)
  657. DEFAULT_IMPL(LOCATION_ERROR_SUCCESS)
  658. void LocApiBase::setBlacklistSv(const GnssSvIdConfig& /*config*/,
  659. LocApiResponse* /*adapterResponse*/)
  660. DEFAULT_IMPL()
  661. void LocApiBase::getBlacklistSv()
  662. DEFAULT_IMPL()
  663. void LocApiBase::setConstellationControl(const GnssSvTypeConfig& /*config*/,
  664. LocApiResponse* /*adapterResponse*/)
  665. DEFAULT_IMPL()
  666. void LocApiBase::getConstellationControl()
  667. DEFAULT_IMPL()
  668. void LocApiBase::resetConstellationControl(LocApiResponse* /*adapterResponse*/)
  669. DEFAULT_IMPL()
  670. void LocApiBase::
  671. setConstrainedTuncMode(bool /*enabled*/,
  672. float /*tuncConstraint*/,
  673. uint32_t /*energyBudget*/,
  674. LocApiResponse* /*adapterResponse*/)
  675. DEFAULT_IMPL()
  676. void LocApiBase::
  677. setPositionAssistedClockEstimatorMode(bool /*enabled*/,
  678. LocApiResponse* /*adapterResponse*/)
  679. DEFAULT_IMPL()
  680. void LocApiBase::getGnssEnergyConsumed()
  681. DEFAULT_IMPL()
  682. void LocApiBase::addGeofence(uint32_t /*clientId*/, const GeofenceOption& /*options*/,
  683. const GeofenceInfo& /*info*/,
  684. LocApiResponseData<LocApiGeofenceData>* /*adapterResponseData*/)
  685. DEFAULT_IMPL()
  686. void LocApiBase::removeGeofence(uint32_t /*hwId*/, uint32_t /*clientId*/,
  687. LocApiResponse* /*adapterResponse*/)
  688. DEFAULT_IMPL()
  689. void LocApiBase::pauseGeofence(uint32_t /*hwId*/, uint32_t /*clientId*/,
  690. LocApiResponse* /*adapterResponse*/)
  691. DEFAULT_IMPL()
  692. void LocApiBase::resumeGeofence(uint32_t /*hwId*/, uint32_t /*clientId*/,
  693. LocApiResponse* /*adapterResponse*/)
  694. DEFAULT_IMPL()
  695. void LocApiBase::modifyGeofence(uint32_t /*hwId*/, uint32_t /*clientId*/,
  696. const GeofenceOption& /*options*/, LocApiResponse* /*adapterResponse*/)
  697. DEFAULT_IMPL()
  698. void LocApiBase::startTimeBasedTracking(const TrackingOptions& /*options*/,
  699. LocApiResponse* /*adapterResponse*/)
  700. DEFAULT_IMPL()
  701. void LocApiBase::stopTimeBasedTracking(LocApiResponse* /*adapterResponse*/)
  702. DEFAULT_IMPL()
  703. void LocApiBase::startDistanceBasedTracking(uint32_t /*sessionId*/,
  704. const LocationOptions& /*options*/, LocApiResponse* /*adapterResponse*/)
  705. DEFAULT_IMPL()
  706. void LocApiBase::stopDistanceBasedTracking(uint32_t /*sessionId*/,
  707. LocApiResponse* /*adapterResponse*/)
  708. DEFAULT_IMPL()
  709. void LocApiBase::startBatching(uint32_t /*sessionId*/, const LocationOptions& /*options*/,
  710. uint32_t /*accuracy*/, uint32_t /*timeout*/, LocApiResponse* /*adapterResponse*/)
  711. DEFAULT_IMPL()
  712. void LocApiBase::stopBatching(uint32_t /*sessionId*/, LocApiResponse* /*adapterResponse*/)
  713. DEFAULT_IMPL()
  714. LocationError LocApiBase::startOutdoorTripBatchingSync(uint32_t /*tripDistance*/,
  715. uint32_t /*tripTbf*/, uint32_t /*timeout*/)
  716. DEFAULT_IMPL(LOCATION_ERROR_SUCCESS)
  717. void LocApiBase::startOutdoorTripBatching(uint32_t /*tripDistance*/, uint32_t /*tripTbf*/,
  718. uint32_t /*timeout*/, LocApiResponse* /*adapterResponse*/)
  719. DEFAULT_IMPL()
  720. void LocApiBase::reStartOutdoorTripBatching(uint32_t /*ongoingTripDistance*/,
  721. uint32_t /*ongoingTripInterval*/, uint32_t /*batchingTimeout,*/,
  722. LocApiResponse* /*adapterResponse*/)
  723. DEFAULT_IMPL()
  724. LocationError LocApiBase::stopOutdoorTripBatchingSync(bool /*deallocBatchBuffer*/)
  725. DEFAULT_IMPL(LOCATION_ERROR_SUCCESS)
  726. void LocApiBase::stopOutdoorTripBatching(bool /*deallocBatchBuffer*/,
  727. LocApiResponse* /*adapterResponse*/)
  728. DEFAULT_IMPL()
  729. LocationError LocApiBase::getBatchedLocationsSync(size_t /*count*/)
  730. DEFAULT_IMPL(LOCATION_ERROR_SUCCESS)
  731. void LocApiBase::getBatchedLocations(size_t /*count*/, LocApiResponse* /*adapterResponse*/)
  732. DEFAULT_IMPL()
  733. LocationError LocApiBase::getBatchedTripLocationsSync(size_t /*count*/,
  734. uint32_t /*accumulatedDistance*/)
  735. DEFAULT_IMPL(LOCATION_ERROR_SUCCESS)
  736. void LocApiBase::getBatchedTripLocations(size_t /*count*/, uint32_t /*accumulatedDistance*/,
  737. LocApiResponse* /*adapterResponse*/)
  738. DEFAULT_IMPL()
  739. LocationError LocApiBase::queryAccumulatedTripDistanceSync(uint32_t& /*accumulated_trip_distance*/,
  740. uint32_t& /*numOfBatchedPositions*/)
  741. DEFAULT_IMPL(LOCATION_ERROR_SUCCESS)
  742. void LocApiBase::queryAccumulatedTripDistance(
  743. LocApiResponseData<LocApiBatchData>* /*adapterResponseData*/)
  744. DEFAULT_IMPL()
  745. void LocApiBase::setBatchSize(size_t /*size*/)
  746. DEFAULT_IMPL()
  747. void LocApiBase::setTripBatchSize(size_t /*size*/)
  748. DEFAULT_IMPL()
  749. void LocApiBase::addToCallQueue(LocApiResponse* /*adapterResponse*/)
  750. DEFAULT_IMPL()
  751. void LocApiBase::updateSystemPowerState(PowerStateType /*powerState*/)
  752. DEFAULT_IMPL()
  753. void LocApiBase::
  754. configRobustLocation(bool /*enabled*/,
  755. bool /*enableForE911*/,
  756. LocApiResponse* /*adapterResponse*/)
  757. DEFAULT_IMPL()
  758. void LocApiBase::
  759. getRobustLocationConfig(uint32_t /*sessionId*/, LocApiResponse* /*adapterResponse*/)
  760. DEFAULT_IMPL()
  761. void LocApiBase::
  762. configMinGpsWeek(uint16_t /*minGpsWeek*/,
  763. LocApiResponse* /*adapterResponse*/)
  764. DEFAULT_IMPL()
  765. void LocApiBase::
  766. getMinGpsWeek(uint32_t /*sessionId*/, LocApiResponse* /*adapterResponse*/)
  767. DEFAULT_IMPL()
  768. LocationError LocApiBase::
  769. setParameterSync(const GnssConfig& /*gnssConfig*/)
  770. DEFAULT_IMPL(LOCATION_ERROR_SUCCESS)
  771. void LocApiBase::
  772. getParameter(uint32_t /*sessionId*/, GnssConfigFlagsMask /*flags*/, LocApiResponse* /*adapterResponse*/)
  773. DEFAULT_IMPL()
  774. void LocApiBase::
  775. configConstellationMultiBand(const GnssSvTypeConfig& /*secondaryBandConfig*/,
  776. LocApiResponse* /*adapterResponse*/)
  777. DEFAULT_IMPL()
  778. void LocApiBase::
  779. getConstellationMultiBandConfig(uint32_t /*sessionId*/, LocApiResponse* /*adapterResponse*/)
  780. DEFAULT_IMPL()
  781. int64_t ElapsedRealtimeEstimator::getElapsedRealtimeEstimateNanos(int64_t curDataTimeNanos,
  782. bool isCurDataTimeTrustable, int64_t tbfNanos) {
  783. //The algorithm works follow below steps:
  784. //When isCurDataTimeTrustable is meet (means Modem timestamp is already stable),
  785. //1, Wait for mFixTimeStablizationThreshold fixes; While waiting for modem time
  786. // stable, we set the traveltime to a default value;
  787. //2, When the mFixTimeStablizationThreshold fix comes, we think now the mode time
  788. // is already stable, calculate the initial AP-Modem clock diff(mCurrentClockDiff)
  789. // using formula:
  790. // mCurrentClockDiff = currentTimeNanos - locationTimeNanos - currentTravelTimeNanos
  791. //3, since then, when the nth fix comes,
  792. // 3.1 First update mCurrentClockDiff using below formula:
  793. // mCurrentClockDiff = mCurrentClockDiff + (currentTimeNanos - sinceBootTimeNanos)
  794. // - (mPrevUtcTimeNanos - mPrevBootTimeNanos)
  795. // 3.2 Calculate currentTravelTimeNanos:
  796. // currentTravelTimeNanos = currentTimeNanos - locationTimeNanos - mCurrentClockDiff
  797. //4, It is possible that locationTimeNanos will jump,
  798. // reset mFixTimeStablizationThreshold to default value, jump to step 2 to continue.
  799. int64_t currentTravelTimeNanos = mInitialTravelTime;
  800. struct timespec currentTime = {};
  801. int64_t sinceBootTimeNanos = 0;
  802. if (getCurrentTime(currentTime, sinceBootTimeNanos)) {
  803. if (isCurDataTimeTrustable) {
  804. if (tbfNanos > 0 && tbfNanos != curDataTimeNanos - mPrevDataTimeNanos) {
  805. mFixTimeStablizationThreshold = 5;
  806. }
  807. int64_t currentTimeNanos = (int64_t)currentTime.tv_sec*1000000000 + currentTime.tv_nsec;
  808. LOC_LOGd("sinceBootTimeNanos:%" PRIi64 " currentTimeNanos:%" PRIi64 ""
  809. " locationTimeNanos:%" PRIi64 "",
  810. sinceBootTimeNanos, currentTimeNanos, curDataTimeNanos);
  811. if (mFixTimeStablizationThreshold == 0) {
  812. currentTravelTimeNanos = mInitialTravelTime;
  813. mCurrentClockDiff = currentTimeNanos - curDataTimeNanos - currentTravelTimeNanos;
  814. } else if (mFixTimeStablizationThreshold < 0) {
  815. mCurrentClockDiff = mCurrentClockDiff + (currentTimeNanos - sinceBootTimeNanos)
  816. - (mPrevUtcTimeNanos - mPrevBootTimeNanos);
  817. currentTravelTimeNanos = currentTimeNanos - curDataTimeNanos - mCurrentClockDiff;
  818. }
  819. mPrevUtcTimeNanos = currentTimeNanos;
  820. mPrevBootTimeNanos = sinceBootTimeNanos;
  821. mPrevDataTimeNanos = curDataTimeNanos;
  822. mFixTimeStablizationThreshold--;
  823. }
  824. } else {
  825. return -1;
  826. }
  827. LOC_LOGd("Estimated travel time: %" PRIi64 "", currentTravelTimeNanos);
  828. return (sinceBootTimeNanos - currentTravelTimeNanos);
  829. }
  830. void ElapsedRealtimeEstimator::reset() {
  831. mCurrentClockDiff = 0;
  832. mPrevDataTimeNanos = 0;
  833. mPrevUtcTimeNanos = 0;
  834. mPrevBootTimeNanos = 0;
  835. mFixTimeStablizationThreshold = 5;
  836. memset(&mTimePairPVTReport, 0, sizeof(mTimePairPVTReport));
  837. memset(&mTimePairMeasReport, 0, sizeof(mTimePairMeasReport));
  838. }
  839. int64_t ElapsedRealtimeEstimator::getElapsedRealtimeQtimer(int64_t qtimerTicksAtOrigin) {
  840. struct timespec currentTime = {};
  841. int64_t sinceBootTimeNanos = 0;
  842. int64_t elapsedRealTimeNanos = 0;
  843. if (getCurrentTime(currentTime, sinceBootTimeNanos)) {
  844. uint64_t qtimerDiff = 0;
  845. uint64_t qTimerTickCount = getQTimerTickCount();
  846. if (qTimerTickCount >= qtimerTicksAtOrigin) {
  847. qtimerDiff = qTimerTickCount - qtimerTicksAtOrigin;
  848. }
  849. LOC_LOGd("sinceBootTimeNanos:%" PRIi64 " qtimerTicksAtOrigin=%" PRIi64 ""
  850. " qTimerTickCount=%" PRIi64 " qtimerDiff=%" PRIi64 "",
  851. sinceBootTimeNanos, qtimerTicksAtOrigin, qTimerTickCount, qtimerDiff);
  852. uint64_t qTimerDiffNanos = qTimerTicksToNanos(double(qtimerDiff));
  853. /* If the time difference between Qtimer on modem side and Qtimer on AP side
  854. is greater than one second we assume this is a dual-SoC device such as
  855. Kona and will try to get Qtimer on modem side and on AP side and
  856. will adjust our difference accordingly */
  857. if (qTimerDiffNanos > 1000000000) {
  858. uint64_t qtimerDelta = getQTimerDeltaNanos();
  859. if (qTimerDiffNanos >= qtimerDelta) {
  860. qTimerDiffNanos -= qtimerDelta;
  861. }
  862. }
  863. LOC_LOGd("Qtimer travel time: %" PRIi64 "", qTimerDiffNanos);
  864. if (sinceBootTimeNanos >= qTimerDiffNanos) {
  865. elapsedRealTimeNanos = sinceBootTimeNanos - qTimerDiffNanos;
  866. } else {
  867. elapsedRealTimeNanos = -1;
  868. }
  869. } else {
  870. elapsedRealTimeNanos = -1;
  871. }
  872. return elapsedRealTimeNanos;
  873. }
  874. void ElapsedRealtimeEstimator::saveGpsTimeAndQtimerPairInPvtReport(
  875. const GpsLocationExtended& locationExtended) {
  876. // Use GPS timestamp and qtimer tick for 1Hz PVT report for association
  877. if ((locationExtended.flags & GPS_LOCATION_EXTENDED_HAS_GPS_TIME) &&
  878. // 65535 GPS week from modem means unknown
  879. (locationExtended.gpsTime.gpsWeek != UNKNOWN_GPS_WEEK_NUM) &&
  880. (locationExtended.gpsTime.gpsTimeOfWeekMs % 1000 == 0) &&
  881. (locationExtended.gnssSystemTime.u.gpsSystemTime.validityMask &
  882. GNSS_SYSTEM_CLK_TIME_BIAS_UNC_VALID) &&
  883. (locationExtended.gnssSystemTime.u.gpsSystemTime.systemClkTimeUncMs <
  884. REAL_TIME_ESTIMATOR_TIME_UNC_THRESHOLD_MSEC) &&
  885. (locationExtended.flags & GPS_LOCATION_EXTENDED_HAS_SYSTEM_TICK) &&
  886. (locationExtended.flags & GPS_LOCATION_EXTENDED_HAS_SYSTEM_TICK_UNC)) {
  887. mTimePairPVTReport.gpsTime.gpsWeek = locationExtended.gpsTime.gpsWeek;
  888. mTimePairPVTReport.gpsTime.gpsTimeOfWeekMs =
  889. locationExtended.gpsTime.gpsTimeOfWeekMs;
  890. mTimePairPVTReport.qtimerTick = locationExtended.systemTick;
  891. mTimePairPVTReport.timeUncMsec = locationExtended.systemTickUnc;
  892. LOC_LOGv("gps time (%d, %d), qtimer tick %" PRIi64 ", qtime unc %f",
  893. mTimePairPVTReport.gpsTime.gpsWeek, mTimePairPVTReport.gpsTime.gpsTimeOfWeekMs,
  894. mTimePairPVTReport.qtimerTick, mTimePairPVTReport.timeUncMsec);
  895. }
  896. }
  897. void ElapsedRealtimeEstimator::saveGpsTimeAndQtimerPairInMeasReport(
  898. const GnssSvMeasurementSet& svMeasurementSet) {
  899. const GnssSvMeasurementHeader& svMeasSetHeader = svMeasurementSet.svMeasSetHeader;
  900. // Use 1Hz measurement report timestamp and qtimer tick for association
  901. if ((svMeasurementSet.isNhz == false) &&
  902. (svMeasSetHeader.gpsSystemTime.validityMask & GNSS_SYSTEM_TIME_WEEK_VALID) &&
  903. // 65535 GPS week from modem means unknown
  904. (svMeasurementSet.svMeasSetHeader.gpsSystemTime.systemWeek != UNKNOWN_GPS_WEEK_NUM) &&
  905. (svMeasSetHeader.gpsSystemTime.validityMask & GNSS_SYSTEM_TIME_WEEK_MS_VALID) &&
  906. (svMeasSetHeader.gpsSystemTime.validityMask & GNSS_SYSTEM_CLK_TIME_BIAS_UNC_VALID) &&
  907. (svMeasSetHeader.gpsSystemTime.systemClkTimeUncMs <
  908. REAL_TIME_ESTIMATOR_TIME_UNC_THRESHOLD_MSEC)) {
  909. LOC_LOGv("gps time %d %d, ref cnt tick %" PRIi64 ","
  910. "system rtc ms %" PRIi64 ", systemClkTimeUncMs %f",
  911. svMeasurementSet.svMeasSetHeader.gpsSystemTime.systemWeek,
  912. svMeasurementSet.svMeasSetHeader.gpsSystemTime.systemMsec,
  913. svMeasurementSet.svMeasSetHeader.refCountTicks,
  914. svMeasurementSet.svMeasSetHeader.gpsSystemTimeExt.systemRtcMs,
  915. svMeasurementSet.svMeasSetHeader.gpsSystemTime.systemClkTimeUncMs);
  916. if ((svMeasSetHeader.flags & GNSS_SV_MEAS_HEADER_HAS_REF_COUNT_TICKS) &&
  917. (svMeasSetHeader.flags & GNSS_SV_MEAS_HEADER_HAS_REF_COUNT_TICKS_UNC)) {
  918. mTimePairMeasReport.gpsTime.gpsWeek = svMeasSetHeader.gpsSystemTime.systemWeek;
  919. mTimePairMeasReport.gpsTime.gpsTimeOfWeekMs = svMeasSetHeader.gpsSystemTime.systemMsec;
  920. mTimePairMeasReport.qtimerTick = svMeasurementSet.svMeasSetHeader.refCountTicks;
  921. mTimePairMeasReport.timeUncMsec = svMeasurementSet.svMeasSetHeader.refCountTicksUnc;
  922. }
  923. }
  924. }
  925. bool ElapsedRealtimeEstimator::getElapsedRealtimeForGpsTime(
  926. const GpsLocationExtended& locationExtended,
  927. int64_t &bootTimeNsAtOrigin, float & bootTimeUnc) {
  928. struct timespec curBootTime = {};
  929. int64_t curBootTimeNs = 0;
  930. int64_t curQTimerNSec = 0;
  931. int64_t qtimerNsecAtOrigin = 0;
  932. int64_t gpsTimeDiffMsec = 0;
  933. GpsTimeQtimerTickPair timePair;
  934. // We have valid association
  935. if (mTimePairMeasReport.gpsTime.gpsWeek != 0) {
  936. timePair = mTimePairMeasReport;
  937. LOC_LOGv("use meas time association");
  938. } else if (mTimePairPVTReport.gpsTime.gpsWeek != 0) {
  939. LOC_LOGv("use PVT time association");
  940. timePair = mTimePairPVTReport;
  941. } else {
  942. return false;
  943. }
  944. if (((locationExtended.flags & GPS_LOCATION_EXTENDED_HAS_GPS_TIME) == 0) ||
  945. // 65535 GPS week from modem means unknown
  946. (locationExtended.gpsTime.gpsWeek == UNKNOWN_GPS_WEEK_NUM) ||
  947. ((locationExtended.gnssSystemTime.u.gpsSystemTime.validityMask &
  948. GNSS_SYSTEM_CLK_TIME_BIAS_UNC_VALID) == 0) ||
  949. ((locationExtended.gnssSystemTime.u.gpsSystemTime.systemClkTimeUncMs >=
  950. REAL_TIME_ESTIMATOR_TIME_UNC_THRESHOLD_MSEC))) {
  951. LOC_LOGd("report has invalid gps time, or no time bias unc or large time bias unc, "
  952. "gps week %d, gps system time mask 0x%x, clk bias unc %f",
  953. locationExtended.gpsTime.gpsWeek,
  954. locationExtended.gnssSystemTime.u.gpsSystemTime.validityMask,
  955. locationExtended.gnssSystemTime.u.gpsSystemTime.systemClkTimeUncMs);
  956. return false;
  957. }
  958. const GPSTimeStruct& gpsTimeAtOrigin = locationExtended.gpsTime;
  959. int64_t originMsec = (int64_t)gpsTimeAtOrigin.gpsWeek * (int64_t)MSEC_IN_ONE_WEEK +
  960. (int64_t)gpsTimeAtOrigin.gpsTimeOfWeekMs;
  961. int64_t timePairMsec = (int64_t)timePair.gpsTime.gpsWeek * (int64_t)MSEC_IN_ONE_WEEK +
  962. (int64_t)timePair.gpsTime.gpsTimeOfWeekMs;
  963. gpsTimeDiffMsec = originMsec - timePairMsec;
  964. qtimerNsecAtOrigin = timePair.qtimerTick * 10000/192 + gpsTimeDiffMsec * 1000000;
  965. clock_gettime(CLOCK_BOOTTIME, &curBootTime);
  966. curBootTimeNs = ((int64_t)curBootTime.tv_sec) * 1000000000 + (int64_t)curBootTime.tv_nsec;
  967. // qtimer freq: 19200000, so
  968. // so 1 tick equals 1000,000,000/19,200,000 ns = 10000/192
  969. curQTimerNSec = getQTimerTickCount() * 10000/192;
  970. bootTimeNsAtOrigin = curBootTimeNs - (curQTimerNSec - qtimerNsecAtOrigin);
  971. bootTimeUnc = timePair.timeUncMsec;
  972. LOC_LOGv("gpsTimeAtOrigin (%d, %d), timepair: gps (%d, %d), "
  973. "qtimer nsec =%" PRIi64 ", curQTimerNSec=%" PRIi64 " qtimerNsecAtOrigin=%" PRIi64 ""
  974. " curBoottimeNSec=%" PRIi64 " bootimeNsecAtOrigin=%" PRIi64 ", boottime unc =%f",
  975. gpsTimeAtOrigin.gpsWeek, gpsTimeAtOrigin.gpsTimeOfWeekMs,
  976. timePair.gpsTime.gpsWeek, timePair.gpsTime.gpsTimeOfWeekMs,
  977. timePair.qtimerTick * 100000 / 192,
  978. curQTimerNSec, qtimerNsecAtOrigin, curBootTimeNs, bootTimeNsAtOrigin, bootTimeUnc);
  979. if (bootTimeNsAtOrigin > 0) {
  980. return true;
  981. } else {
  982. return false;
  983. }
  984. }
  985. bool ElapsedRealtimeEstimator::getCurrentTime(
  986. struct timespec& currentTime, int64_t& sinceBootTimeNanos)
  987. {
  988. struct timespec sinceBootTime = {};
  989. struct timespec sinceBootTimeTest = {};
  990. bool clockGetTimeSuccess = false;
  991. const uint32_t MAX_TIME_DELTA_VALUE_NANOS = 10000;
  992. const uint32_t MAX_GET_TIME_COUNT = 20;
  993. /* Attempt to get CLOCK_REALTIME and CLOCK_BOOTIME in succession without an interruption
  994. or context switch (for up to MAX_GET_TIME_COUNT times) to avoid errors in the calculation */
  995. for (uint32_t i = 0; i < MAX_GET_TIME_COUNT; i++) {
  996. if (clock_gettime(CLOCK_BOOTTIME, &sinceBootTime) != 0) {
  997. break;
  998. };
  999. if (clock_gettime(CLOCK_REALTIME, &currentTime) != 0) {
  1000. break;
  1001. }
  1002. if (clock_gettime(CLOCK_BOOTTIME, &sinceBootTimeTest) != 0) {
  1003. break;
  1004. };
  1005. sinceBootTimeNanos = (int64_t)sinceBootTime.tv_sec * 1000000000 + sinceBootTime.tv_nsec;
  1006. int64_t sinceBootTimeTestNanos =
  1007. (int64_t)sinceBootTimeTest.tv_sec * 1000000000 + sinceBootTimeTest.tv_nsec;
  1008. int64_t sinceBootTimeDeltaNanos = sinceBootTimeTestNanos - sinceBootTimeNanos;
  1009. /* sinceBootTime and sinceBootTimeTest should have a close value if there was no
  1010. interruption or context switch between clock_gettime for CLOCK_BOOTIME and
  1011. clock_gettime for CLOCK_REALTIME */
  1012. if (sinceBootTimeDeltaNanos < MAX_TIME_DELTA_VALUE_NANOS) {
  1013. clockGetTimeSuccess = true;
  1014. break;
  1015. } else {
  1016. LOC_LOGd("Delta:%" PRIi64 "ns time too large, retry number #%u...",
  1017. sinceBootTimeDeltaNanos, i + 1);
  1018. }
  1019. }
  1020. return clockGetTimeSuccess;
  1021. }
  1022. } // namespace loc_core