ContextBase.h 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395
  1. /* Copyright (c) 2011-2017, 2020-2021 The Linux Foundation. All rights reserved.
  2. *
  3. * Redistribution and use in source and binary forms, with or without
  4. * modification, are permitted provided that the following conditions are
  5. * met:
  6. * * Redistributions of source code must retain the above copyright
  7. * notice, this list of conditions and the following disclaimer.
  8. * * Redistributions in binary form must reproduce the above
  9. * copyright notice, this list of conditions and the following
  10. * disclaimer in the documentation and/or other materials provided
  11. * with the distribution.
  12. * * Neither the name of The Linux Foundation, nor the names of its
  13. * contributors may be used to endorse or promote products derived
  14. * from this software without specific prior written permission.
  15. *
  16. * THIS SOFTWARE IS PROVIDED "AS IS" AND ANY EXPRESS OR IMPLIED
  17. * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
  18. * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT
  19. * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS
  20. * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
  21. * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
  22. * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
  23. * BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
  24. * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
  25. * OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN
  26. * IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  27. *
  28. */
  29. #ifndef __LOC_CONTEXT_BASE__
  30. #define __LOC_CONTEXT_BASE__
  31. #include <stdbool.h>
  32. #include <ctype.h>
  33. #include <loc_pla.h>
  34. #include <MsgTask.h>
  35. #include <LocApiBase.h>
  36. #include <LBSProxyBase.h>
  37. #include <loc_cfg.h>
  38. #ifdef NO_UNORDERED_SET_OR_MAP
  39. #include <map>
  40. #define unordered_map map
  41. #else
  42. #include <unordered_map>
  43. #endif
  44. /* GPS.conf support */
  45. /* NOTE: the implementaiton of the parser casts number
  46. fields to 32 bit. To ensure all 'n' fields working,
  47. they must all be 32 bit fields. */
  48. typedef struct loc_gps_cfg_s
  49. {
  50. uint32_t INTERMEDIATE_POS;
  51. uint32_t ACCURACY_THRES;
  52. uint32_t SUPL_VER;
  53. uint32_t SUPL_MODE;
  54. uint32_t SUPL_ES;
  55. uint32_t CAPABILITIES;
  56. uint32_t LPP_PROFILE;
  57. char XTRA_SERVER_1[LOC_MAX_PARAM_STRING];
  58. char XTRA_SERVER_2[LOC_MAX_PARAM_STRING];
  59. char XTRA_SERVER_3[LOC_MAX_PARAM_STRING];
  60. uint32_t USE_EMERGENCY_PDN_FOR_EMERGENCY_SUPL;
  61. uint32_t NMEA_PROVIDER;
  62. char NMEA_REPORT_RATE[LOC_MAX_PARAM_NAME];
  63. GnssConfigGpsLock GPS_LOCK;
  64. uint32_t A_GLONASS_POS_PROTOCOL_SELECT;
  65. uint32_t AGPS_CERT_WRITABLE_MASK;
  66. uint32_t AGPS_CONFIG_INJECT;
  67. uint32_t LPPE_CP_TECHNOLOGY;
  68. uint32_t LPPE_UP_TECHNOLOGY;
  69. uint32_t EXTERNAL_DR_ENABLED;
  70. char SUPL_HOST[LOC_MAX_PARAM_STRING];
  71. uint32_t SUPL_PORT;
  72. uint32_t MODEM_TYPE;
  73. char MO_SUPL_HOST[LOC_MAX_PARAM_STRING];
  74. uint32_t MO_SUPL_PORT;
  75. uint32_t CONSTRAINED_TIME_UNCERTAINTY_ENABLED;
  76. double CONSTRAINED_TIME_UNCERTAINTY_THRESHOLD;
  77. uint32_t CONSTRAINED_TIME_UNCERTAINTY_ENERGY_BUDGET;
  78. uint32_t POSITION_ASSISTED_CLOCK_ESTIMATOR_ENABLED;
  79. uint32_t CP_MTLR_ES;
  80. uint32_t GNSS_DEPLOYMENT;
  81. uint32_t CUSTOM_NMEA_GGA_FIX_QUALITY_ENABLED;
  82. uint32_t NI_SUPL_DENY_ON_NFW_LOCKED;
  83. uint32_t ENABLE_NMEA_PRINT;
  84. uint32_t NMEA_TAG_BLOCK_GROUPING_ENABLED;
  85. uint32_t ROBUST_LOCATION_ENABLED;
  86. } loc_gps_cfg_s_type;
  87. /* NOTE: the implementation of the parser casts number
  88. fields to 32 bit. To ensure all 'n' fields working,
  89. they must all be 32 bit fields. */
  90. /* Meanwhile, *_valid fields are 8 bit fields, and 'f'
  91. fields are double. Rigid as they are, it is the
  92. the status quo, until the parsing mechanism is
  93. changed, that is. */
  94. typedef struct
  95. {
  96. uint8_t GYRO_BIAS_RANDOM_WALK_VALID;
  97. double GYRO_BIAS_RANDOM_WALK;
  98. uint32_t SENSOR_ACCEL_BATCHES_PER_SEC;
  99. uint32_t SENSOR_ACCEL_SAMPLES_PER_BATCH;
  100. uint32_t SENSOR_GYRO_BATCHES_PER_SEC;
  101. uint32_t SENSOR_GYRO_SAMPLES_PER_BATCH;
  102. uint32_t SENSOR_ACCEL_BATCHES_PER_SEC_HIGH;
  103. uint32_t SENSOR_ACCEL_SAMPLES_PER_BATCH_HIGH;
  104. uint32_t SENSOR_GYRO_BATCHES_PER_SEC_HIGH;
  105. uint32_t SENSOR_GYRO_SAMPLES_PER_BATCH_HIGH;
  106. uint32_t SENSOR_CONTROL_MODE;
  107. uint32_t SENSOR_ALGORITHM_CONFIG_MASK;
  108. uint8_t ACCEL_RANDOM_WALK_SPECTRAL_DENSITY_VALID;
  109. double ACCEL_RANDOM_WALK_SPECTRAL_DENSITY;
  110. uint8_t ANGLE_RANDOM_WALK_SPECTRAL_DENSITY_VALID;
  111. double ANGLE_RANDOM_WALK_SPECTRAL_DENSITY;
  112. uint8_t RATE_RANDOM_WALK_SPECTRAL_DENSITY_VALID;
  113. double RATE_RANDOM_WALK_SPECTRAL_DENSITY;
  114. uint8_t VELOCITY_RANDOM_WALK_SPECTRAL_DENSITY_VALID;
  115. double VELOCITY_RANDOM_WALK_SPECTRAL_DENSITY;
  116. } loc_sap_cfg_s_type;
  117. using namespace loc_util;
  118. namespace loc_core {
  119. class LocAdapterBase;
  120. class ContextBase {
  121. static LBSProxyBase* getLBSProxy(const char* libName);
  122. LocApiBase* createLocApi(LOC_API_ADAPTER_EVENT_MASK_T excludedMask);
  123. static const loc_param_s_type mGps_conf_table[];
  124. static const loc_param_s_type mSap_conf_table[];
  125. protected:
  126. const LBSProxyBase* mLBSProxy;
  127. const MsgTask* mMsgTask;
  128. LocApiBase* mLocApi;
  129. LocApiProxyBase *mLocApiProxy;
  130. public:
  131. ContextBase(const MsgTask* msgTask,
  132. LOC_API_ADAPTER_EVENT_MASK_T exMask,
  133. const char* libName);
  134. inline virtual ~ContextBase() {
  135. if (nullptr != mLocApi) {
  136. mLocApi->destroy();
  137. mLocApi = nullptr;
  138. }
  139. if (nullptr != mLBSProxy) {
  140. delete mLBSProxy;
  141. mLBSProxy = nullptr;
  142. }
  143. }
  144. inline const MsgTask* getMsgTask() { return mMsgTask; }
  145. inline LocApiBase* getLocApi() { return mLocApi; }
  146. inline LocApiProxyBase* getLocApiProxy() { return mLocApiProxy; }
  147. inline bool hasAgpsExtendedCapabilities() { return mLBSProxy->hasAgpsExtendedCapabilities(); }
  148. inline bool hasNativeXtraClient() { return mLBSProxy->hasNativeXtraClient(); }
  149. inline void modemPowerVote(bool power) const { return mLBSProxy->modemPowerVote(power); }
  150. inline const LBSProxyBase* getLBSProxyBase() { return mLBSProxy; }
  151. inline IzatDevId_t getIzatDevId() const {
  152. return mLBSProxy->getIzatDevId();
  153. }
  154. inline void sendMsg(const LocMsg *msg) { getMsgTask()->sendMsg(msg); }
  155. static loc_gps_cfg_s_type mGps_conf;
  156. static loc_sap_cfg_s_type mSap_conf;
  157. static bool sIsEngineCapabilitiesKnown;
  158. static uint64_t sSupportedMsgMask;
  159. static uint8_t sFeaturesSupported[MAX_FEATURE_LENGTH];
  160. static bool sGnssMeasurementSupported;
  161. static GnssNMEARptRate sNmeaReportRate;
  162. static LocationCapabilitiesMask sQwesFeatureMask;
  163. void readConfig();
  164. static uint32_t getCarrierCapabilities();
  165. void setEngineCapabilities(uint64_t supportedMsgMask,
  166. uint8_t *featureList, bool gnssMeasurementSupported);
  167. static inline bool isEngineCapabilitiesKnown() {
  168. return sIsEngineCapabilitiesKnown;
  169. }
  170. static inline bool isMessageSupported(LocCheckingMessagesID msgID) {
  171. // confirm if msgID is not larger than the number of bits in
  172. // mSupportedMsg
  173. if ((uint64_t)msgID > (sizeof(sSupportedMsgMask) << 3)) {
  174. return false;
  175. } else {
  176. uint32_t messageChecker = 1 << msgID;
  177. return (messageChecker & sSupportedMsgMask) == messageChecker;
  178. }
  179. }
  180. /*
  181. Check if a feature is supported
  182. */
  183. static bool isFeatureSupported(uint8_t featureVal);
  184. /*
  185. Check if gnss measurement is supported
  186. */
  187. static bool gnssConstellationConfig();
  188. /*
  189. set QWES feature status info
  190. */
  191. static inline void setQwesFeatureStatus(
  192. const std::unordered_map<LocationQwesFeatureType, bool> &featureMap) {
  193. std::unordered_map<LocationQwesFeatureType, bool>::const_iterator itr;
  194. static LocationQwesFeatureType locQwesFeatType[LOCATION_QWES_FEATURE_TYPE_MAX];
  195. for (itr = featureMap.begin(); itr != featureMap.end(); ++itr) {
  196. LOC_LOGi("Feature : %d isValid: %d", itr->first, itr->second);
  197. locQwesFeatType[itr->first] = itr->second;
  198. switch (itr->first) {
  199. case LOCATION_QWES_FEATURE_TYPE_CARRIER_PHASE:
  200. if (itr->second) {
  201. sQwesFeatureMask |= LOCATION_CAPABILITIES_QWES_CARRIER_PHASE_BIT;
  202. } else {
  203. sQwesFeatureMask &= ~LOCATION_CAPABILITIES_QWES_CARRIER_PHASE_BIT;
  204. }
  205. break;
  206. case LOCATION_QWES_FEATURE_TYPE_SV_POLYNOMIAL:
  207. if (itr->second) {
  208. sQwesFeatureMask |= LOCATION_CAPABILITIES_QWES_SV_POLYNOMIAL_BIT;
  209. } else {
  210. sQwesFeatureMask &= ~LOCATION_CAPABILITIES_QWES_SV_POLYNOMIAL_BIT;
  211. }
  212. break;
  213. case LOCATION_QWES_FEATURE_TYPE_GNSS_SINGLE_FREQUENCY:
  214. if (itr->second) {
  215. sQwesFeatureMask |= LOCATION_CAPABILITIES_QWES_GNSS_SINGLE_FREQUENCY;
  216. } else {
  217. sQwesFeatureMask &= ~LOCATION_CAPABILITIES_QWES_GNSS_SINGLE_FREQUENCY;
  218. }
  219. break;
  220. case LOCATION_QWES_FEATURE_TYPE_SV_EPH:
  221. if (itr->second) {
  222. sQwesFeatureMask |= LOCATION_CAPABILITIES_QWES_SV_EPHEMERIS_BIT;
  223. } else {
  224. sQwesFeatureMask &= ~LOCATION_CAPABILITIES_QWES_SV_EPHEMERIS_BIT;
  225. }
  226. break;
  227. case LOCATION_QWES_FEATURE_TYPE_GNSS_MULTI_FREQUENCY:
  228. if (itr->second) {
  229. sQwesFeatureMask |= LOCATION_CAPABILITIES_QWES_GNSS_MULTI_FREQUENCY;
  230. } else {
  231. sQwesFeatureMask &= ~LOCATION_CAPABILITIES_QWES_GNSS_MULTI_FREQUENCY;
  232. }
  233. break;
  234. case LOCATION_QWES_FEATURE_TYPE_PPE:
  235. if (itr->second) {
  236. sQwesFeatureMask |= LOCATION_CAPABILITIES_QWES_PPE;
  237. } else {
  238. sQwesFeatureMask &= ~LOCATION_CAPABILITIES_QWES_PPE;
  239. }
  240. break;
  241. case LOCATION_QWES_FEATURE_TYPE_QDR2:
  242. if (itr->second) {
  243. sQwesFeatureMask |= LOCATION_CAPABILITIES_QWES_QDR2;
  244. } else {
  245. sQwesFeatureMask &= ~LOCATION_CAPABILITIES_QWES_QDR2;
  246. }
  247. break;
  248. case LOCATION_QWES_FEATURE_TYPE_QDR3:
  249. if (itr->second) {
  250. sQwesFeatureMask |= LOCATION_CAPABILITIES_QWES_QDR3;
  251. } else {
  252. sQwesFeatureMask &= ~LOCATION_CAPABILITIES_QWES_QDR3;
  253. }
  254. break;
  255. case LOCATION_QWES_FEATURE_TYPE_VPE:
  256. if (itr->second) {
  257. sQwesFeatureMask |= LOCATION_CAPABILITIES_QWES_VPE;
  258. } else {
  259. sQwesFeatureMask &= ~LOCATION_CAPABILITIES_QWES_VPE;
  260. }
  261. break;
  262. case LOCATION_QWES_FEATURE_TYPE_DGNSS:
  263. if (itr->second) {
  264. sQwesFeatureMask |= LOCATION_CAPABILITIES_QWES_DGNSS;
  265. } else {
  266. sQwesFeatureMask &= ~LOCATION_CAPABILITIES_QWES_DGNSS;
  267. }
  268. break;
  269. }
  270. }
  271. // Set CV2X basic when time freq and tunc is set
  272. // CV2X_BASIC = LOCATION_QWES_FEATURE_TYPE_TIME_FREQUENCY &
  273. // LOCATION_QWES_FEATURE_TYPE_TIME_UNCERTAINTY
  274. // Set CV2X premium when time freq and tunc is set
  275. // CV2X_PREMIUM = CV2X_BASIC & LOCATION_QWES_FEATURE_TYPE_QDR3 &
  276. // LOCATION_QWES_FEATURE_TYPE_CLOCK_ESTIMATE
  277. bool cv2xBasicEnabled = (1 == locQwesFeatType[LOCATION_QWES_FEATURE_TYPE_TIME_FREQUENCY]) &&
  278. (1 == locQwesFeatType[LOCATION_QWES_FEATURE_TYPE_TIME_UNCERTAINTY]);
  279. bool cv2xPremiumEnabled = cv2xBasicEnabled &&
  280. (1 == locQwesFeatType[LOCATION_QWES_FEATURE_TYPE_QDR3]) &&
  281. (1 == locQwesFeatType[LOCATION_QWES_FEATURE_TYPE_CLOCK_ESTIMATE]);
  282. LOC_LOGd("CV2X_BASIC:%d, CV2X_PREMIUM:%d", cv2xBasicEnabled, cv2xPremiumEnabled);
  283. if (cv2xBasicEnabled) {
  284. sQwesFeatureMask |= LOCATION_CAPABILITIES_QWES_CV2X_LOCATION_BASIC;
  285. } else {
  286. sQwesFeatureMask &= ~LOCATION_CAPABILITIES_QWES_CV2X_LOCATION_BASIC;
  287. }
  288. if (cv2xPremiumEnabled) {
  289. sQwesFeatureMask |= LOCATION_CAPABILITIES_QWES_CV2X_LOCATION_PREMIUM;
  290. } else {
  291. sQwesFeatureMask &= ~LOCATION_CAPABILITIES_QWES_CV2X_LOCATION_PREMIUM;
  292. }
  293. }
  294. /*
  295. get QWES feature status info
  296. */
  297. static inline LocationCapabilitiesMask getQwesFeatureStatus() {
  298. return (ContextBase::sQwesFeatureMask);
  299. }
  300. };
  301. struct LocApiResponse: LocMsg {
  302. private:
  303. ContextBase& mContext;
  304. std::function<void (LocationError err)> mProcImpl;
  305. inline virtual void proc() const {
  306. mProcImpl(mLocationError);
  307. }
  308. protected:
  309. LocationError mLocationError;
  310. public:
  311. inline LocApiResponse(ContextBase& context,
  312. std::function<void (LocationError err)> procImpl ) :
  313. mContext(context), mProcImpl(procImpl) {}
  314. void returnToSender(const LocationError err) {
  315. mLocationError = err;
  316. mContext.sendMsg(this);
  317. }
  318. };
  319. struct LocApiCollectiveResponse: LocMsg {
  320. private:
  321. ContextBase& mContext;
  322. std::function<void (std::vector<LocationError> errs)> mProcImpl;
  323. inline virtual void proc() const {
  324. mProcImpl(mLocationErrors);
  325. }
  326. protected:
  327. std::vector<LocationError> mLocationErrors;
  328. public:
  329. inline LocApiCollectiveResponse(ContextBase& context,
  330. std::function<void (std::vector<LocationError> errs)> procImpl ) :
  331. mContext(context), mProcImpl(procImpl) {}
  332. inline virtual ~LocApiCollectiveResponse() {
  333. }
  334. void returnToSender(std::vector<LocationError>& errs) {
  335. mLocationErrors = errs;
  336. mContext.sendMsg(this);
  337. }
  338. };
  339. template <typename DATA>
  340. struct LocApiResponseData: LocMsg {
  341. private:
  342. ContextBase& mContext;
  343. std::function<void (LocationError err, DATA data)> mProcImpl;
  344. inline virtual void proc() const {
  345. mProcImpl(mLocationError, mData);
  346. }
  347. protected:
  348. LocationError mLocationError;
  349. DATA mData;
  350. public:
  351. inline LocApiResponseData(ContextBase& context,
  352. std::function<void (LocationError err, DATA data)> procImpl ) :
  353. mContext(context), mProcImpl(procImpl) {}
  354. void returnToSender(const LocationError err, const DATA data) {
  355. mLocationError = err;
  356. mData = data;
  357. mContext.sendMsg(this);
  358. }
  359. };
  360. } // namespace loc_core
  361. #endif //__LOC_CONTEXT_BASE__