LocApiBase.cpp 44 KB

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