Agps.h 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323
  1. /* Copyright (c) 2012-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. #ifndef AGPS_H
  30. #define AGPS_H
  31. #include <functional>
  32. #include <list>
  33. #include <MsgTask.h>
  34. #include <gps_extended_c.h>
  35. #include <loc_pla.h>
  36. #include <log_util.h>
  37. using namespace loc_util;
  38. /* ATL callback function pointers
  39. * Passed in by Adapter to AgpsManager */
  40. typedef std::function<void(
  41. int handle, int isSuccess, char* apn, uint32_t apnLen,
  42. AGpsBearerType bearerType, AGpsExtType agpsType,
  43. LocApnTypeMask mask)> AgpsAtlOpenStatusCb;
  44. typedef std::function<void(int handle, int isSuccess)> AgpsAtlCloseStatusCb;
  45. /* Post message to adapter's message queue */
  46. typedef std::function<void(LocMsg* msg)> SendMsgToAdapterMsgQueueFn;
  47. /* AGPS States */
  48. typedef enum {
  49. AGPS_STATE_INVALID = 0,
  50. AGPS_STATE_RELEASED,
  51. AGPS_STATE_PENDING,
  52. AGPS_STATE_ACQUIRED,
  53. AGPS_STATE_RELEASING
  54. } AgpsState;
  55. typedef enum {
  56. AGPS_EVENT_INVALID = 0,
  57. AGPS_EVENT_SUBSCRIBE,
  58. AGPS_EVENT_UNSUBSCRIBE,
  59. AGPS_EVENT_GRANTED,
  60. AGPS_EVENT_RELEASED,
  61. AGPS_EVENT_DENIED
  62. } AgpsEvent;
  63. /* Notification Types sent to subscribers */
  64. typedef enum {
  65. AGPS_NOTIFICATION_TYPE_INVALID = 0,
  66. /* Meant for all subscribers, either active or inactive */
  67. AGPS_NOTIFICATION_TYPE_FOR_ALL_SUBSCRIBERS,
  68. /* Meant for only inactive subscribers */
  69. AGPS_NOTIFICATION_TYPE_FOR_INACTIVE_SUBSCRIBERS,
  70. /* Meant for only active subscribers */
  71. AGPS_NOTIFICATION_TYPE_FOR_ACTIVE_SUBSCRIBERS
  72. } AgpsNotificationType;
  73. /* Classes in this header */
  74. class AgpsSubscriber;
  75. class AgpsManager;
  76. class AgpsStateMachine;
  77. /* SUBSCRIBER
  78. * Each Subscriber instance corresponds to one AGPS request,
  79. * received by the AGPS state machine */
  80. class AgpsSubscriber {
  81. public:
  82. int mConnHandle;
  83. /* Does this subscriber wait for data call close complete,
  84. * before being notified ATL close ?
  85. * While waiting for data call close, subscriber will be in
  86. * inactive state. */
  87. bool mWaitForCloseComplete;
  88. bool mIsInactive;
  89. LocApnTypeMask mApnTypeMask;
  90. inline AgpsSubscriber(
  91. int connHandle, bool waitForCloseComplete, bool isInactive,
  92. LocApnTypeMask apnTypeMask) :
  93. mConnHandle(connHandle),
  94. mWaitForCloseComplete(waitForCloseComplete),
  95. mIsInactive(isInactive),
  96. mApnTypeMask(apnTypeMask) {}
  97. inline virtual ~AgpsSubscriber() {}
  98. inline virtual bool equals(const AgpsSubscriber *s) const
  99. { return (mConnHandle == s->mConnHandle); }
  100. inline virtual AgpsSubscriber* clone()
  101. { return new AgpsSubscriber(
  102. mConnHandle, mWaitForCloseComplete, mIsInactive, mApnTypeMask); }
  103. };
  104. /* AGPS STATE MACHINE */
  105. class AgpsStateMachine {
  106. protected:
  107. /* AGPS Manager instance, from where this state machine is created */
  108. AgpsManager* mAgpsManager;
  109. /* List of all subscribers for this State Machine.
  110. * Once a subscriber is notified for ATL open/close status,
  111. * it is deleted */
  112. std::list<AgpsSubscriber*> mSubscriberList;
  113. /* Current subscriber, whose request this State Machine is
  114. * currently processing */
  115. AgpsSubscriber* mCurrentSubscriber;
  116. /* Current state for this state machine */
  117. AgpsState mState;
  118. AgnssStatusIpV4Cb mFrameworkStatusV4Cb;
  119. private:
  120. /* AGPS Type for this state machine
  121. LOC_AGPS_TYPE_ANY 0
  122. LOC_AGPS_TYPE_SUPL 1
  123. LOC_AGPS_TYPE_WWAN_ANY 3
  124. LOC_AGPS_TYPE_SUPL_ES 5 */
  125. AGpsExtType mAgpsType;
  126. LocApnTypeMask mApnTypeMask;
  127. LocSubId mSubId;
  128. /* APN and IP Type info for AGPS Call */
  129. char* mAPN;
  130. unsigned int mAPNLen;
  131. AGpsBearerType mBearer;
  132. public:
  133. /* CONSTRUCTOR */
  134. AgpsStateMachine(AgpsManager* agpsManager, AGpsExtType agpsType):
  135. mFrameworkStatusV4Cb(NULL),
  136. mAgpsManager(agpsManager), mSubscriberList(),
  137. mCurrentSubscriber(NULL), mState(AGPS_STATE_RELEASED),
  138. mAgpsType(agpsType), mAPN(NULL), mAPNLen(0),
  139. mBearer(AGPS_APN_BEARER_INVALID) {};
  140. virtual ~AgpsStateMachine() { if(NULL != mAPN) delete[] mAPN; };
  141. /* Getter/Setter methods */
  142. void setAPN(char* apn, unsigned int len);
  143. inline char* getAPN() const { return mAPN; }
  144. inline uint32_t getAPNLen() const { return mAPNLen; }
  145. inline void setBearer(AGpsBearerType bearer) { mBearer = bearer; }
  146. inline LocApnTypeMask getApnTypeMask() const { return mApnTypeMask; }
  147. inline void setApnTypeMask(LocApnTypeMask apnTypeMask)
  148. { mApnTypeMask = apnTypeMask; }
  149. inline void setSubId(LocSubId subId) { mSubId = subId; }
  150. inline AGpsBearerType getBearer() const { return mBearer; }
  151. inline void setType(AGpsExtType type) { mAgpsType = type; }
  152. inline AGpsExtType getType() const { return mAgpsType; }
  153. inline void setCurrentSubscriber(AgpsSubscriber* subscriber)
  154. { mCurrentSubscriber = subscriber; }
  155. inline void registerFrameworkStatusCallback(AgnssStatusIpV4Cb frameworkStatusV4Cb) {
  156. mFrameworkStatusV4Cb = frameworkStatusV4Cb;
  157. }
  158. /* Fetch subscriber with specified handle */
  159. AgpsSubscriber* getSubscriber(int connHandle);
  160. /* Fetch first active or inactive subscriber in list
  161. * isInactive = true : fetch first inactive subscriber
  162. * isInactive = false : fetch first active subscriber */
  163. AgpsSubscriber* getFirstSubscriber(bool isInactive);
  164. /* Process LOC AGPS Event being passed in
  165. * onRsrcEvent */
  166. virtual void processAgpsEvent(AgpsEvent event);
  167. /* Drop all subscribers, in case of Modem SSR */
  168. void dropAllSubscribers();
  169. protected:
  170. /* Remove the specified subscriber from list if present.
  171. * Also delete the subscriber instance. */
  172. void deleteSubscriber(AgpsSubscriber* subscriber);
  173. private:
  174. /* Send call setup request to framework
  175. * sendRsrcRequest(LOC_GPS_REQUEST_AGPS_DATA_CONN)
  176. * sendRsrcRequest(LOC_GPS_RELEASE_AGPS_DATA_CONN) */
  177. void requestOrReleaseDataConn(bool request);
  178. /* Individual event processing methods */
  179. void processAgpsEventSubscribe();
  180. void processAgpsEventUnsubscribe();
  181. void processAgpsEventGranted();
  182. void processAgpsEventReleased();
  183. void processAgpsEventDenied();
  184. /* Clone the passed in subscriber and add to the subscriber list
  185. * if not already present */
  186. void addSubscriber(AgpsSubscriber* subscriber);
  187. /* Notify subscribers about AGPS events */
  188. void notifyAllSubscribers(
  189. AgpsEvent event, bool deleteSubscriberPostNotify,
  190. AgpsNotificationType notificationType);
  191. virtual void notifyEventToSubscriber(
  192. AgpsEvent event, AgpsSubscriber* subscriber,
  193. bool deleteSubscriberPostNotify);
  194. /* Do we have any subscribers in active state */
  195. bool anyActiveSubscribers();
  196. /* Transition state */
  197. void transitionState(AgpsState newState);
  198. };
  199. /* LOC AGPS MANAGER */
  200. class AgpsManager {
  201. friend class AgpsStateMachine;
  202. public:
  203. /* CONSTRUCTOR */
  204. AgpsManager():
  205. mAtlOpenStatusCb(), mAtlCloseStatusCb(),
  206. mAgnssNif(NULL), mInternetNif(NULL)/*, mDsNif(NULL)*/ {}
  207. /* Register callbacks */
  208. inline void registerATLCallbacks(AgpsAtlOpenStatusCb atlOpenStatusCb,
  209. AgpsAtlCloseStatusCb atlCloseStatusCb) {
  210. mAtlOpenStatusCb = atlOpenStatusCb;
  211. mAtlCloseStatusCb = atlCloseStatusCb;
  212. }
  213. /* Check if AGPS client is registered */
  214. inline bool isRegistered() { return nullptr != mAgnssNif || nullptr != mInternetNif; }
  215. /* Create all AGPS state machines */
  216. void createAgpsStateMachines(const AgpsCbInfo& cbInfo);
  217. /* Process incoming ATL requests */
  218. void requestATL(int connHandle, AGpsExtType agpsType,
  219. LocApnTypeMask apnTypeMask, LocSubId subId);
  220. void releaseATL(int connHandle);
  221. /* Process incoming framework data call events */
  222. void reportAtlOpenSuccess(AGpsExtType agpsType, char* apnName, int apnLen,
  223. AGpsBearerType bearerType);
  224. void reportAtlOpenFailed(AGpsExtType agpsType);
  225. void reportAtlClosed(AGpsExtType agpsType);
  226. /* Handle Modem SSR */
  227. void handleModemSSR();
  228. protected:
  229. AgpsAtlOpenStatusCb mAtlOpenStatusCb;
  230. AgpsAtlCloseStatusCb mAtlCloseStatusCb;
  231. AgpsStateMachine* mAgnssNif;
  232. AgpsStateMachine* mInternetNif;
  233. private:
  234. /* Fetch state machine for handling request ATL call */
  235. AgpsStateMachine* getAgpsStateMachine(AGpsExtType agpsType);
  236. };
  237. /* Request SUPL/INTERNET/SUPL_ES ATL
  238. * This LocMsg is defined in this header since it has to be used from more
  239. * than one place, other Agps LocMsg are restricted to GnssAdapter and
  240. * declared inline */
  241. struct AgpsMsgRequestATL: public LocMsg {
  242. AgpsManager* mAgpsManager;
  243. int mConnHandle;
  244. AGpsExtType mAgpsType;
  245. LocApnTypeMask mApnTypeMask;
  246. LocSubId mSubId;
  247. inline AgpsMsgRequestATL(AgpsManager* agpsManager, int connHandle,
  248. AGpsExtType agpsType, LocApnTypeMask apnTypeMask,
  249. LocSubId subId) :
  250. LocMsg(), mAgpsManager(agpsManager), mConnHandle(connHandle),
  251. mAgpsType(agpsType), mApnTypeMask(apnTypeMask), mSubId(subId){
  252. LOC_LOGV("AgpsMsgRequestATL");
  253. }
  254. inline virtual void proc() const {
  255. LOC_LOGV("AgpsMsgRequestATL::proc()");
  256. mAgpsManager->requestATL(mConnHandle, mAgpsType, mApnTypeMask, mSubId);
  257. }
  258. };
  259. namespace AgpsUtils {
  260. AGpsBearerType ipTypeToBearerType(LocApnIpType ipType);
  261. LocApnIpType bearerTypeToIpType(AGpsBearerType bearerType);
  262. }
  263. #endif /* AGPS_H */