Agps.cpp 22 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683
  1. /* Copyright (c) 2012-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
  30. #define LOG_TAG "LocSvc_Agps"
  31. #include <Agps.h>
  32. #include <loc_pla.h>
  33. #include <ContextBase.h>
  34. #include <loc_timer.h>
  35. #include <inttypes.h>
  36. /* --------------------------------------------------------------------
  37. * AGPS State Machine Methods
  38. * -------------------------------------------------------------------*/
  39. void AgpsStateMachine::processAgpsEvent(AgpsEvent event){
  40. LOC_LOGD("processAgpsEvent(): SM %p, Event %d, State %d",
  41. this, event, mState);
  42. switch (event) {
  43. case AGPS_EVENT_SUBSCRIBE:
  44. processAgpsEventSubscribe();
  45. break;
  46. case AGPS_EVENT_UNSUBSCRIBE:
  47. processAgpsEventUnsubscribe();
  48. break;
  49. case AGPS_EVENT_GRANTED:
  50. processAgpsEventGranted();
  51. break;
  52. case AGPS_EVENT_RELEASED:
  53. processAgpsEventReleased();
  54. break;
  55. case AGPS_EVENT_DENIED:
  56. processAgpsEventDenied();
  57. break;
  58. default:
  59. LOC_LOGE("Invalid Loc Agps Event");
  60. }
  61. }
  62. void AgpsStateMachine::processAgpsEventSubscribe(){
  63. switch (mState) {
  64. case AGPS_STATE_RELEASED:
  65. /* Add subscriber to list
  66. * No notifications until we get RSRC_GRANTED */
  67. addSubscriber(mCurrentSubscriber);
  68. requestOrReleaseDataConn(true);
  69. transitionState(AGPS_STATE_PENDING);
  70. break;
  71. case AGPS_STATE_PENDING:
  72. /* Already requested for data connection,
  73. * do nothing until we get RSRC_GRANTED event;
  74. * Just add this subscriber to the list, for notifications */
  75. addSubscriber(mCurrentSubscriber);
  76. break;
  77. case AGPS_STATE_ACQUIRED:
  78. /* We already have the data connection setup,
  79. * Notify current subscriber with GRANTED event,
  80. * And add it to the subscriber list for further notifications. */
  81. notifyEventToSubscriber(AGPS_EVENT_GRANTED, mCurrentSubscriber, false);
  82. addSubscriber(mCurrentSubscriber);
  83. break;
  84. case AGPS_STATE_RELEASING:
  85. addSubscriber(mCurrentSubscriber);
  86. break;
  87. default:
  88. LOC_LOGE("Invalid state: %d", mState);
  89. }
  90. }
  91. void AgpsStateMachine::processAgpsEventUnsubscribe(){
  92. switch (mState) {
  93. case AGPS_STATE_RELEASED:
  94. notifyEventToSubscriber(
  95. AGPS_EVENT_UNSUBSCRIBE, mCurrentSubscriber, false);
  96. break;
  97. case AGPS_STATE_PENDING:
  98. case AGPS_STATE_ACQUIRED:
  99. /* If the subscriber wishes to wait for connection close,
  100. * before being removed from list, move to inactive state
  101. * and notify */
  102. if (mCurrentSubscriber->mWaitForCloseComplete) {
  103. mCurrentSubscriber->mIsInactive = true;
  104. }
  105. else {
  106. /* Notify only current subscriber and then delete it from
  107. * subscriberList */
  108. notifyEventToSubscriber(
  109. AGPS_EVENT_UNSUBSCRIBE, mCurrentSubscriber, true);
  110. }
  111. /* If no subscribers in list, release data connection */
  112. if (mSubscriberList.empty()) {
  113. transitionState(AGPS_STATE_RELEASED);
  114. requestOrReleaseDataConn(false);
  115. }
  116. /* Some subscribers in list, but all inactive;
  117. * Release data connection */
  118. else if(!anyActiveSubscribers()) {
  119. transitionState(AGPS_STATE_RELEASING);
  120. requestOrReleaseDataConn(false);
  121. }
  122. break;
  123. case AGPS_STATE_RELEASING:
  124. /* If the subscriber wishes to wait for connection close,
  125. * before being removed from list, move to inactive state
  126. * and notify */
  127. if (mCurrentSubscriber->mWaitForCloseComplete) {
  128. mCurrentSubscriber->mIsInactive = true;
  129. }
  130. else {
  131. /* Notify only current subscriber and then delete it from
  132. * subscriberList */
  133. notifyEventToSubscriber(
  134. AGPS_EVENT_UNSUBSCRIBE, mCurrentSubscriber, true);
  135. }
  136. /* If no subscribers in list, just move the state.
  137. * Request for releasing data connection should already have been
  138. * sent */
  139. if (mSubscriberList.empty()) {
  140. transitionState(AGPS_STATE_RELEASED);
  141. }
  142. break;
  143. default:
  144. LOC_LOGE("Invalid state: %d", mState);
  145. }
  146. }
  147. void AgpsStateMachine::processAgpsEventGranted(){
  148. switch (mState) {
  149. case AGPS_STATE_RELEASED:
  150. case AGPS_STATE_ACQUIRED:
  151. case AGPS_STATE_RELEASING:
  152. LOC_LOGE("Unexpected event GRANTED in state %d", mState);
  153. break;
  154. case AGPS_STATE_PENDING:
  155. // Move to acquired state
  156. transitionState(AGPS_STATE_ACQUIRED);
  157. notifyAllSubscribers(
  158. AGPS_EVENT_GRANTED, false,
  159. AGPS_NOTIFICATION_TYPE_FOR_ACTIVE_SUBSCRIBERS);
  160. break;
  161. default:
  162. LOC_LOGE("Invalid state: %d", mState);
  163. }
  164. }
  165. void AgpsStateMachine::processAgpsEventReleased(){
  166. switch (mState) {
  167. case AGPS_STATE_RELEASED:
  168. /* Subscriber list should be empty if we are in released state */
  169. if (!mSubscriberList.empty()) {
  170. LOC_LOGE("Unexpected event RELEASED in RELEASED state");
  171. }
  172. break;
  173. case AGPS_STATE_ACQUIRED:
  174. /* Force release received */
  175. LOC_LOGW("Force RELEASED event in ACQUIRED state");
  176. transitionState(AGPS_STATE_RELEASED);
  177. notifyAllSubscribers(
  178. AGPS_EVENT_RELEASED, true,
  179. AGPS_NOTIFICATION_TYPE_FOR_ALL_SUBSCRIBERS);
  180. break;
  181. case AGPS_STATE_RELEASING:
  182. /* Notify all inactive subscribers about the event */
  183. notifyAllSubscribers(
  184. AGPS_EVENT_RELEASED, true,
  185. AGPS_NOTIFICATION_TYPE_FOR_INACTIVE_SUBSCRIBERS);
  186. /* If we have active subscribers now, they must be waiting for
  187. * data conn setup */
  188. if (anyActiveSubscribers()) {
  189. transitionState(AGPS_STATE_PENDING);
  190. requestOrReleaseDataConn(true);
  191. }
  192. /* No active subscribers, move to released state */
  193. else {
  194. transitionState(AGPS_STATE_RELEASED);
  195. }
  196. break;
  197. case AGPS_STATE_PENDING:
  198. /* NOOP */
  199. break;
  200. default:
  201. LOC_LOGE("Invalid state: %d", mState);
  202. }
  203. }
  204. void AgpsStateMachine::processAgpsEventDenied(){
  205. switch (mState) {
  206. case AGPS_STATE_RELEASED:
  207. LOC_LOGE("Unexpected event DENIED in state %d", mState);
  208. break;
  209. case AGPS_STATE_ACQUIRED:
  210. /* NOOP */
  211. break;
  212. case AGPS_STATE_RELEASING:
  213. /* Notify all inactive subscribers about the event */
  214. notifyAllSubscribers(
  215. AGPS_EVENT_RELEASED, true,
  216. AGPS_NOTIFICATION_TYPE_FOR_INACTIVE_SUBSCRIBERS);
  217. /* If we have active subscribers now, they must be waiting for
  218. * data conn setup */
  219. if (anyActiveSubscribers()) {
  220. transitionState(AGPS_STATE_PENDING);
  221. requestOrReleaseDataConn(true);
  222. }
  223. /* No active subscribers, move to released state */
  224. else {
  225. transitionState(AGPS_STATE_RELEASED);
  226. }
  227. break;
  228. case AGPS_STATE_PENDING:
  229. transitionState(AGPS_STATE_RELEASED);
  230. notifyAllSubscribers(
  231. AGPS_EVENT_DENIED, true,
  232. AGPS_NOTIFICATION_TYPE_FOR_ALL_SUBSCRIBERS);
  233. break;
  234. default:
  235. LOC_LOGE("Invalid state: %d", mState);
  236. }
  237. }
  238. /* Request or Release data connection
  239. * bool request :
  240. * true = Request data connection
  241. * false = Release data connection */
  242. void AgpsStateMachine::requestOrReleaseDataConn(bool request){
  243. AGnssExtStatusIpV4 nifRequest;
  244. memset(&nifRequest, 0, sizeof(nifRequest));
  245. nifRequest.type = mAgpsType;
  246. nifRequest.apnTypeMask = mApnTypeMask;
  247. nifRequest.subId = mSubId;
  248. if (request) {
  249. LOC_LOGD("AGPS Data Conn Request mAgpsType=%d mApnTypeMask=0x%X",
  250. mAgpsType, mApnTypeMask);
  251. nifRequest.status = LOC_GPS_REQUEST_AGPS_DATA_CONN;
  252. }
  253. else{
  254. LOC_LOGD("AGPS Data Conn Release mAgpsType=%d mApnTypeMask=0x%X",
  255. mAgpsType, mApnTypeMask);
  256. nifRequest.status = LOC_GPS_RELEASE_AGPS_DATA_CONN;
  257. }
  258. mFrameworkStatusV4Cb(nifRequest);
  259. }
  260. void AgpsStateMachine::notifyAllSubscribers(
  261. AgpsEvent event, bool deleteSubscriberPostNotify,
  262. AgpsNotificationType notificationType){
  263. LOC_LOGD("notifyAllSubscribers(): "
  264. "SM %p, Event %d Delete %d Notification Type %d",
  265. this, event, deleteSubscriberPostNotify, notificationType);
  266. std::list<AgpsSubscriber*>::const_iterator it = mSubscriberList.begin();
  267. while ( it != mSubscriberList.end() ) {
  268. AgpsSubscriber* subscriber = *it;
  269. if (notificationType == AGPS_NOTIFICATION_TYPE_FOR_ALL_SUBSCRIBERS ||
  270. (notificationType == AGPS_NOTIFICATION_TYPE_FOR_INACTIVE_SUBSCRIBERS &&
  271. subscriber->mIsInactive) ||
  272. (notificationType == AGPS_NOTIFICATION_TYPE_FOR_ACTIVE_SUBSCRIBERS &&
  273. !subscriber->mIsInactive)) {
  274. /* Deleting via this call would require another traversal
  275. * through subscriber list, inefficient; hence pass in false*/
  276. notifyEventToSubscriber(event, subscriber, false);
  277. if (deleteSubscriberPostNotify) {
  278. it = mSubscriberList.erase(it);
  279. delete subscriber;
  280. } else {
  281. it++;
  282. }
  283. } else {
  284. it++;
  285. }
  286. }
  287. }
  288. void AgpsStateMachine::notifyEventToSubscriber(
  289. AgpsEvent event, AgpsSubscriber* subscriberToNotify,
  290. bool deleteSubscriberPostNotify) {
  291. LOC_LOGD("notifyEventToSubscriber(): "
  292. "SM %p, Event %d Subscriber %p Delete %d",
  293. this, event, subscriberToNotify, deleteSubscriberPostNotify);
  294. switch (event) {
  295. case AGPS_EVENT_GRANTED:
  296. mAgpsManager->mAtlOpenStatusCb(
  297. subscriberToNotify->mConnHandle, 1, getAPN(), getAPNLen(),
  298. getBearer(), mAgpsType, mApnTypeMask);
  299. break;
  300. case AGPS_EVENT_DENIED:
  301. mAgpsManager->mAtlOpenStatusCb(
  302. subscriberToNotify->mConnHandle, 0, getAPN(), getAPNLen(),
  303. getBearer(), mAgpsType, mApnTypeMask);
  304. break;
  305. case AGPS_EVENT_UNSUBSCRIBE:
  306. case AGPS_EVENT_RELEASED:
  307. mAgpsManager->mAtlCloseStatusCb(subscriberToNotify->mConnHandle, 1);
  308. break;
  309. default:
  310. LOC_LOGE("Invalid event %d", event);
  311. }
  312. /* Search this subscriber in list and delete */
  313. if (deleteSubscriberPostNotify) {
  314. deleteSubscriber(subscriberToNotify);
  315. }
  316. }
  317. void AgpsStateMachine::transitionState(AgpsState newState){
  318. LOC_LOGD("transitionState(): SM %p, old %d, new %d",
  319. this, mState, newState);
  320. mState = newState;
  321. // notify state transitions to all subscribers ?
  322. }
  323. void AgpsStateMachine::addSubscriber(AgpsSubscriber* subscriberToAdd){
  324. LOC_LOGD("addSubscriber(): SM %p, Subscriber %p",
  325. this, subscriberToAdd);
  326. // Check if subscriber is already present in the current list
  327. // If not, then add
  328. std::list<AgpsSubscriber*>::const_iterator it = mSubscriberList.begin();
  329. for (; it != mSubscriberList.end(); it++) {
  330. AgpsSubscriber* subscriber = *it;
  331. if (subscriber->equals(subscriberToAdd)) {
  332. LOC_LOGE("Subscriber already in list");
  333. return;
  334. }
  335. }
  336. AgpsSubscriber* cloned = subscriberToAdd->clone();
  337. LOC_LOGD("addSubscriber(): cloned subscriber: %p", cloned);
  338. mSubscriberList.push_back(cloned);
  339. }
  340. void AgpsStateMachine::deleteSubscriber(AgpsSubscriber* subscriberToDelete){
  341. LOC_LOGD("deleteSubscriber(): SM %p, Subscriber %p",
  342. this, subscriberToDelete);
  343. std::list<AgpsSubscriber*>::const_iterator it = mSubscriberList.begin();
  344. while ( it != mSubscriberList.end() ) {
  345. AgpsSubscriber* subscriber = *it;
  346. if (subscriber && subscriber->equals(subscriberToDelete)) {
  347. it = mSubscriberList.erase(it);
  348. delete subscriber;
  349. } else {
  350. it++;
  351. }
  352. }
  353. }
  354. bool AgpsStateMachine::anyActiveSubscribers(){
  355. std::list<AgpsSubscriber*>::const_iterator it = mSubscriberList.begin();
  356. for (; it != mSubscriberList.end(); it++) {
  357. AgpsSubscriber* subscriber = *it;
  358. if (!subscriber->mIsInactive) {
  359. return true;
  360. }
  361. }
  362. return false;
  363. }
  364. void AgpsStateMachine::setAPN(char* apn, unsigned int len){
  365. if (NULL != mAPN) {
  366. delete mAPN;
  367. mAPN = NULL;
  368. }
  369. if (NULL == apn || len > MAX_APN_LEN || strlen(apn) != len) {
  370. LOC_LOGD("Invalid apn len (%d) or null apn", len);
  371. mAPN = NULL;
  372. mAPNLen = 0;
  373. } else {
  374. mAPN = new char[len+1];
  375. if (NULL != mAPN) {
  376. memcpy(mAPN, apn, len);
  377. mAPN[len] = '\0';
  378. mAPNLen = len;
  379. }
  380. }
  381. }
  382. AgpsSubscriber* AgpsStateMachine::getSubscriber(int connHandle){
  383. /* Go over the subscriber list */
  384. std::list<AgpsSubscriber*>::const_iterator it = mSubscriberList.begin();
  385. for (; it != mSubscriberList.end(); it++) {
  386. AgpsSubscriber* subscriber = *it;
  387. if (subscriber->mConnHandle == connHandle) {
  388. return subscriber;
  389. }
  390. }
  391. /* Not found, return NULL */
  392. return NULL;
  393. }
  394. AgpsSubscriber* AgpsStateMachine::getFirstSubscriber(bool isInactive){
  395. /* Go over the subscriber list */
  396. std::list<AgpsSubscriber*>::const_iterator it = mSubscriberList.begin();
  397. for (; it != mSubscriberList.end(); it++) {
  398. AgpsSubscriber* subscriber = *it;
  399. if(subscriber->mIsInactive == isInactive) {
  400. return subscriber;
  401. }
  402. }
  403. /* Not found, return NULL */
  404. return NULL;
  405. }
  406. void AgpsStateMachine::dropAllSubscribers(){
  407. LOC_LOGD("dropAllSubscribers(): SM %p", this);
  408. /* Go over the subscriber list */
  409. std::list<AgpsSubscriber*>::const_iterator it = mSubscriberList.begin();
  410. while ( it != mSubscriberList.end() ) {
  411. AgpsSubscriber* subscriber = *it;
  412. it = mSubscriberList.erase(it);
  413. delete subscriber;
  414. }
  415. }
  416. /* --------------------------------------------------------------------
  417. * Loc AGPS Manager Methods
  418. * -------------------------------------------------------------------*/
  419. /* CREATE AGPS STATE MACHINES
  420. * Must be invoked in Msg Handler context */
  421. void AgpsManager::createAgpsStateMachines(const AgpsCbInfo& cbInfo) {
  422. LOC_LOGD("AgpsManager::createAgpsStateMachines");
  423. bool agpsCapable =
  424. ((loc_core::ContextBase::mGps_conf.CAPABILITIES & LOC_GPS_CAPABILITY_MSA) ||
  425. (loc_core::ContextBase::mGps_conf.CAPABILITIES & LOC_GPS_CAPABILITY_MSB));
  426. if (NULL == mInternetNif && (cbInfo.atlType & AGPS_ATL_TYPE_WWAN)) {
  427. mInternetNif = new AgpsStateMachine(this, LOC_AGPS_TYPE_WWAN_ANY);
  428. mInternetNif->registerFrameworkStatusCallback((AgnssStatusIpV4Cb)cbInfo.statusV4Cb);
  429. LOC_LOGD("Internet NIF: %p", mInternetNif);
  430. }
  431. if (agpsCapable) {
  432. if (NULL == mAgnssNif && (cbInfo.atlType & AGPS_ATL_TYPE_SUPL) &&
  433. (cbInfo.atlType & AGPS_ATL_TYPE_SUPL_ES)) {
  434. mAgnssNif = new AgpsStateMachine(this, LOC_AGPS_TYPE_SUPL);
  435. mAgnssNif->registerFrameworkStatusCallback((AgnssStatusIpV4Cb)cbInfo.statusV4Cb);
  436. LOC_LOGD("AGNSS NIF: %p", mAgnssNif);
  437. }
  438. }
  439. }
  440. AgpsStateMachine* AgpsManager::getAgpsStateMachine(AGpsExtType agpsType) {
  441. LOC_LOGD("AgpsManager::getAgpsStateMachine(): agpsType %d", agpsType);
  442. switch (agpsType) {
  443. case LOC_AGPS_TYPE_INVALID:
  444. case LOC_AGPS_TYPE_SUPL:
  445. case LOC_AGPS_TYPE_SUPL_ES:
  446. if (mAgnssNif == NULL) {
  447. LOC_LOGE("NULL AGNSS NIF !");
  448. }
  449. return mAgnssNif;
  450. case LOC_AGPS_TYPE_WWAN_ANY:
  451. if (mInternetNif == NULL) {
  452. LOC_LOGE("NULL Internet NIF !");
  453. }
  454. return mInternetNif;
  455. default:
  456. return mInternetNif;
  457. }
  458. LOC_LOGE("No SM found !");
  459. return NULL;
  460. }
  461. void AgpsManager::requestATL(int connHandle, AGpsExtType agpsType,
  462. LocApnTypeMask apnTypeMask, LocSubId subId) {
  463. LOC_LOGD("AgpsManager::requestATL(): connHandle %d, agpsType 0x%X apnTypeMask: 0x%X",
  464. connHandle, agpsType, apnTypeMask);
  465. if (0 == loc_core::ContextBase::mGps_conf.USE_EMERGENCY_PDN_FOR_EMERGENCY_SUPL &&
  466. LOC_AGPS_TYPE_SUPL_ES == agpsType) {
  467. agpsType = LOC_AGPS_TYPE_SUPL;
  468. apnTypeMask &= ~LOC_APN_TYPE_MASK_EMERGENCY;
  469. apnTypeMask |= LOC_APN_TYPE_MASK_SUPL;
  470. LOC_LOGD("Changed agpsType to non-emergency when USE_EMERGENCY... is 0"
  471. "and removed LOC_APN_TYPE_MASK_EMERGENCY from apnTypeMask"
  472. "agpsType 0x%X apnTypeMask : 0x%X",
  473. agpsType, apnTypeMask);
  474. }
  475. AgpsStateMachine* sm = getAgpsStateMachine(agpsType);
  476. if (sm == NULL) {
  477. LOC_LOGE("No AGPS State Machine for agpsType: %d apnTypeMask: 0x%X",
  478. agpsType, apnTypeMask);
  479. mAtlOpenStatusCb(
  480. connHandle, 0, NULL, 0, AGPS_APN_BEARER_INVALID, agpsType, apnTypeMask);
  481. return;
  482. }
  483. sm->setType(agpsType);
  484. sm->setApnTypeMask(apnTypeMask);
  485. sm->setSubId(subId);
  486. /* Invoke AGPS SM processing */
  487. AgpsSubscriber subscriber(connHandle, true, false, apnTypeMask);
  488. sm->setCurrentSubscriber(&subscriber);
  489. /* Send subscriber event */
  490. sm->processAgpsEvent(AGPS_EVENT_SUBSCRIBE);
  491. }
  492. void AgpsManager::releaseATL(int connHandle){
  493. LOC_LOGD("AgpsManager::releaseATL(): connHandle %d", connHandle);
  494. /* First find the subscriber with specified handle.
  495. * We need to search in all state machines. */
  496. AgpsStateMachine* sm = NULL;
  497. AgpsSubscriber* subscriber = NULL;
  498. if (mAgnssNif &&
  499. (subscriber = mAgnssNif->getSubscriber(connHandle)) != NULL) {
  500. sm = mAgnssNif;
  501. }
  502. else if (mInternetNif &&
  503. (subscriber = mInternetNif->getSubscriber(connHandle)) != NULL) {
  504. sm = mInternetNif;
  505. }
  506. if (sm == NULL) {
  507. LOC_LOGE("Subscriber with connHandle %d not found in any SM",
  508. connHandle);
  509. return;
  510. }
  511. /* Now send unsubscribe event */
  512. sm->setCurrentSubscriber(subscriber);
  513. sm->processAgpsEvent(AGPS_EVENT_UNSUBSCRIBE);
  514. }
  515. void AgpsManager::reportAtlOpenSuccess(
  516. AGpsExtType agpsType, char* apnName, int apnLen,
  517. AGpsBearerType bearerType){
  518. LOC_LOGD("AgpsManager::reportAtlOpenSuccess(): "
  519. "AgpsType %d, APN [%s], Len %d, BearerType %d",
  520. agpsType, apnName, apnLen, bearerType);
  521. /* Find the state machine instance */
  522. AgpsStateMachine* sm = getAgpsStateMachine(agpsType);
  523. if (sm != NULL) {
  524. /* Set bearer and apn info in state machine instance */
  525. sm->setBearer(bearerType);
  526. sm->setAPN(apnName, apnLen);
  527. /* Send GRANTED event to state machine */
  528. sm->processAgpsEvent(AGPS_EVENT_GRANTED);
  529. }
  530. }
  531. void AgpsManager::reportAtlOpenFailed(AGpsExtType agpsType){
  532. LOC_LOGD("AgpsManager::reportAtlOpenFailed(): AgpsType %d", agpsType);
  533. /* Fetch SM and send DENIED event */
  534. AgpsStateMachine* sm = getAgpsStateMachine(agpsType);
  535. if (sm != NULL) {
  536. sm->processAgpsEvent(AGPS_EVENT_DENIED);
  537. }
  538. }
  539. void AgpsManager::reportAtlClosed(AGpsExtType agpsType){
  540. LOC_LOGD("AgpsManager::reportAtlClosed(): AgpsType %d", agpsType);
  541. /* Fetch SM and send RELEASED event */
  542. AgpsStateMachine* sm = getAgpsStateMachine(agpsType);
  543. if (sm != NULL) {
  544. sm->processAgpsEvent(AGPS_EVENT_RELEASED);
  545. }
  546. }
  547. void AgpsManager::handleModemSSR(){
  548. LOC_LOGD("AgpsManager::handleModemSSR");
  549. /* Drop subscribers from all state machines */
  550. if (mAgnssNif) {
  551. mAgnssNif->dropAllSubscribers();
  552. }
  553. if (mInternetNif) {
  554. mInternetNif->dropAllSubscribers();
  555. }
  556. }