LocAdapterBase.h 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282
  1. /* Copyright (c) 2011-2014, 2016-2018, 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. /*
  30. Changes from Qualcomm Innovation Center are provided under the following license:
  31. Copyright (c) 2022 Qualcomm Innovation Center, Inc. All rights reserved.
  32. Redistribution and use in source and binary forms, with or without
  33. modification, are permitted (subject to the limitations in the
  34. disclaimer below) provided that the following conditions are met:
  35. * Redistributions of source code must retain the above copyright
  36. notice, this list of conditions and the following disclaimer.
  37. * Redistributions in binary form must reproduce the above
  38. copyright notice, this list of conditions and the following
  39. disclaimer in the documentation and/or other materials provided
  40. with the distribution.
  41. * Neither the name of Qualcomm Innovation Center, Inc. nor the names of its
  42. contributors may be used to endorse or promote products derived
  43. from this software without specific prior written permission.
  44. NO EXPRESS OR IMPLIED LICENSES TO ANY PARTY'S PATENT RIGHTS ARE
  45. GRANTED BY THIS LICENSE. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT
  46. HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED
  47. WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
  48. MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
  49. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR
  50. ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  51. DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
  52. GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
  53. INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER
  54. IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
  55. OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN
  56. IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  57. */
  58. #ifndef LOC_API_ADAPTER_BASE_H
  59. #define LOC_API_ADAPTER_BASE_H
  60. #include <gps_extended.h>
  61. #include <ContextBase.h>
  62. #include <LocationAPI.h>
  63. #include <map>
  64. typedef struct LocationSessionKey {
  65. LocationAPI* client;
  66. uint32_t id;
  67. inline LocationSessionKey(LocationAPI* _client, uint32_t _id) :
  68. client(_client), id(_id) {}
  69. } LocationSessionKey;
  70. inline bool operator <(LocationSessionKey const& left, LocationSessionKey const& right) {
  71. return left.id < right.id || (left.id == right.id && left.client < right.client);
  72. }
  73. inline bool operator ==(LocationSessionKey const& left, LocationSessionKey const& right) {
  74. return left.id == right.id && left.client == right.client;
  75. }
  76. inline bool operator !=(LocationSessionKey const& left, LocationSessionKey const& right) {
  77. return left.id != right.id || left.client != right.client;
  78. }
  79. typedef void (*removeClientCompleteCallback)(LocationAPI* client);
  80. namespace loc_core {
  81. class LocAdapterProxyBase;
  82. class LocAdapterBase {
  83. private:
  84. static uint32_t mSessionIdCounter;
  85. const bool mIsMaster;
  86. bool mIsEngineCapabilitiesKnown = false;
  87. protected:
  88. LOC_API_ADAPTER_EVENT_MASK_T mEvtMask;
  89. ContextBase* mContext;
  90. LocApiBase* mLocApi;
  91. LocAdapterProxyBase* mLocAdapterProxyBase;
  92. const MsgTask* mMsgTask;
  93. bool mAdapterAdded;
  94. inline LocAdapterBase(const MsgTask* msgTask) :
  95. mIsMaster(false), mEvtMask(0), mContext(NULL), mLocApi(NULL),
  96. mLocAdapterProxyBase(NULL), mMsgTask(msgTask), mAdapterAdded(false) {}
  97. /* ==== CLIENT ========================================================================= */
  98. typedef std::map<LocationAPI*, LocationCallbacks> ClientDataMap;
  99. ClientDataMap mClientData;
  100. std::vector<LocMsg*> mPendingMsgs; // For temporal storage of msgs before Open is completed
  101. /* ======== UTILITIES ================================================================== */
  102. void saveClient(LocationAPI* client, const LocationCallbacks& callbacks);
  103. void eraseClient(LocationAPI* client);
  104. LocationCallbacks getClientCallbacks(LocationAPI* client);
  105. LocationCapabilitiesMask getCapabilities();
  106. void broadcastCapabilities(LocationCapabilitiesMask mask);
  107. virtual void updateClientsEventMask();
  108. virtual void stopClientSessions(LocationAPI* client, bool eraseSession = true);
  109. public:
  110. inline virtual ~LocAdapterBase() { mLocApi->removeAdapter(this); }
  111. // When waitForDoneInit is not specified or specified as false,
  112. // handleEngineUpEvent may be called on the child adapter object from
  113. // a different thread before the constructor of the child
  114. // object finishes.
  115. //
  116. // If the handleEngineUpEvent relies on member variables of the constructor
  117. // of the child adapter to be initialized first, we need to specify the
  118. // waitForDoneInit to *TRUE* to delay handleEngineUpEvent to get called
  119. // until when the child adapter finishes its initialization and notify
  120. // LocAdapterBase via doneInit method.
  121. LocAdapterBase(const LOC_API_ADAPTER_EVENT_MASK_T mask,
  122. ContextBase* context, bool isMaster = false,
  123. LocAdapterProxyBase *adapterProxyBase = NULL,
  124. bool waitForDoneInit = false);
  125. inline void doneInit() {
  126. if (!mAdapterAdded) {
  127. mLocApi->addAdapter(this);
  128. mAdapterAdded = true;
  129. }
  130. }
  131. inline LOC_API_ADAPTER_EVENT_MASK_T
  132. checkMask(LOC_API_ADAPTER_EVENT_MASK_T mask) const {
  133. return mEvtMask & mask;
  134. }
  135. inline LOC_API_ADAPTER_EVENT_MASK_T getEvtMask() const {
  136. return mEvtMask;
  137. }
  138. inline void sendMsg(const LocMsg* msg) const {
  139. mMsgTask->sendMsg(msg);
  140. }
  141. inline void sendMsg(const LocMsg* msg) {
  142. mMsgTask->sendMsg(msg);
  143. }
  144. inline void updateEvtMask(LOC_API_ADAPTER_EVENT_MASK_T event,
  145. loc_registration_mask_status status)
  146. {
  147. switch(status) {
  148. case (LOC_REGISTRATION_MASK_ENABLED):
  149. mEvtMask = mEvtMask | event;
  150. break;
  151. case (LOC_REGISTRATION_MASK_DISABLED):
  152. mEvtMask = mEvtMask &~ event;
  153. break;
  154. case (LOC_REGISTRATION_MASK_SET):
  155. mEvtMask = event;
  156. break;
  157. }
  158. mLocApi->updateEvtMask();
  159. }
  160. inline void updateNmeaMask(uint32_t mask)
  161. {
  162. mLocApi->updateNmeaMask(mask);
  163. }
  164. inline bool isFeatureSupported(uint8_t featureVal) {
  165. return ContextBase::isFeatureSupported(featureVal);
  166. }
  167. static uint32_t generateSessionId();
  168. inline bool isAdapterMaster() {
  169. return mIsMaster;
  170. }
  171. inline bool isEngineCapabilitiesKnown() { return mIsEngineCapabilitiesKnown;}
  172. inline void setEngineCapabilitiesKnown(bool value) { mIsEngineCapabilitiesKnown = value;}
  173. virtual void handleEngineUpEvent();
  174. virtual void handleEngineDownEvent();
  175. virtual void reportPositionEvent(const UlpLocation& location,
  176. const GpsLocationExtended& locationExtended,
  177. enum loc_sess_status status,
  178. LocPosTechMask loc_technology_mask,
  179. GnssDataNotification* pDataNotify = nullptr,
  180. int msInWeek = -1);
  181. virtual void reportEnginePositionsEvent(unsigned int count,
  182. EngineLocationInfo* locationArr) {
  183. (void)count;
  184. (void)locationArr;
  185. }
  186. virtual void reportSvEvent(const GnssSvNotification& svNotify);
  187. virtual void reportDataEvent(const GnssDataNotification& dataNotify, int msInWeek);
  188. virtual void reportNmeaEvent(const char* nmea, size_t length);
  189. virtual void reportSvPolynomialEvent(GnssSvPolynomial &svPolynomial);
  190. virtual void reportSvEphemerisEvent(GnssSvEphemerisReport &svEphemeris);
  191. virtual void reportStatus(LocGpsStatusValue status);
  192. virtual bool reportXtraServer(const char* url1, const char* url2,
  193. const char* url3, const int maxlength);
  194. virtual void reportLocationSystemInfoEvent(const LocationSystemInfo& locationSystemInfo);
  195. virtual bool requestXtraData();
  196. virtual bool requestTime();
  197. virtual bool requestLocation();
  198. virtual bool requestATL(int connHandle, LocAGpsType agps_type,
  199. LocApnTypeMask apn_type_mask,
  200. LocSubId sub_id=LOC_DEFAULT_SUB);
  201. virtual bool releaseATL(int connHandle);
  202. virtual bool requestNiNotifyEvent(const GnssNiNotification &notify, const void* data,
  203. const LocInEmergency emergencyState);
  204. inline virtual bool isInSession() { return false; }
  205. ContextBase* getContext() const { return mContext; }
  206. virtual void reportGnssMeasurementsEvent(const GnssMeasurements& gnssMeasurements,
  207. int msInWeek);
  208. virtual bool reportWwanZppFix(LocGpsLocation &zppLoc);
  209. virtual bool reportZppBestAvailableFix(LocGpsLocation &zppLoc,
  210. GpsLocationExtended &location_extended, LocPosTechMask tech_mask);
  211. virtual void reportGnssSvIdConfigEvent(const GnssSvIdConfig& config);
  212. virtual void reportGnssSvTypeConfigEvent(const GnssSvTypeConfig& config);
  213. virtual void reportGnssConfigEvent(uint32_t sessionId, const GnssConfig& gnssConfig);
  214. virtual bool requestOdcpiEvent(OdcpiRequestInfo& request);
  215. virtual bool reportGnssEngEnergyConsumedEvent(uint64_t energyConsumedSinceFirstBoot);
  216. virtual bool reportDeleteAidingDataEvent(GnssAidingData &aidingData);
  217. virtual bool reportKlobucharIonoModelEvent(GnssKlobucharIonoModel& ionoModel);
  218. virtual bool reportGnssAdditionalSystemInfoEvent(
  219. GnssAdditionalSystemInfo& additionalSystemInfo);
  220. virtual void reportNfwNotificationEvent(GnssNfwNotification& notification);
  221. virtual void geofenceBreachEvent(size_t count, uint32_t* hwIds, Location& location,
  222. GeofenceBreachType breachType, uint64_t timestamp);
  223. virtual void geofenceStatusEvent(GeofenceStatusAvailable available);
  224. virtual void reportPositionEvent(UlpLocation &location,
  225. GpsLocationExtended &locationExtended,
  226. enum loc_sess_status status,
  227. LocPosTechMask loc_technology_mask);
  228. virtual void reportLocationsEvent(const Location* locations, size_t count,
  229. BatchingMode batchingMode);
  230. virtual void reportCompletedTripsEvent(uint32_t accumulated_distance);
  231. virtual void reportBatchStatusChangeEvent(BatchingStatus batchStatus);
  232. /* ==== CLIENT ========================================================================= */
  233. /* ======== COMMANDS ====(Called from Client Thread)==================================== */
  234. void addClientCommand(LocationAPI* client, const LocationCallbacks& callbacks);
  235. void removeClientCommand(LocationAPI* client,
  236. removeClientCompleteCallback rmClientCb);
  237. void requestCapabilitiesCommand(LocationAPI* client);
  238. virtual void reportLatencyInfoEvent(const GnssLatencyInfo& gnssLatencyInfo);
  239. virtual void reportEngDebugDataInfoEvent(GnssEngineDebugDataInfo& gnssEngineDebugDataInfo);
  240. virtual bool reportQwesCapabilities(
  241. const std::unordered_map<LocationQwesFeatureType, bool> &featureMap);
  242. };
  243. } // namespace loc_core
  244. #endif //LOC_API_ADAPTER_BASE_H