blob: 306e1e3afcd7b5c72a13e53e118bf52d838de8b9 [file] [log] [blame]
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001/*
2 * Copyright (C) 2008 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
Mike Lockwood00b74272010-03-26 10:41:48 -040017package com.android.server.location;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080018
Mike Lockwood29c84342009-05-06 14:01:15 -040019import android.app.AlarmManager;
Dianne Hackborna06de0f2012-12-11 16:34:47 -080020import android.app.AppOpsManager;
Mike Lockwood29c84342009-05-06 14:01:15 -040021import android.app.PendingIntent;
The Android Open Source Project10592532009-03-18 17:39:46 -070022import android.content.BroadcastReceiver;
Yu-Han Yang74041ff2018-04-06 15:57:31 -070023import android.content.ContentResolver;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080024import android.content.Context;
25import android.content.Intent;
The Android Open Source Project10592532009-03-18 17:39:46 -070026import android.content.IntentFilter;
Soonil Nagarkar35c3b912019-01-31 10:31:24 -080027import android.database.ContentObserver;
destradaa0682809a2013-08-12 18:50:30 -070028import android.hardware.location.GeofenceHardware;
Jaikumar Ganesh8ce470d2013-04-03 12:22:18 -070029import android.hardware.location.GeofenceHardwareImpl;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080030import android.location.Criteria;
destradaa0682809a2013-08-12 18:50:30 -070031import android.location.FusedBatchOptions;
Yu-Han Yange7baef32018-02-09 13:58:17 -080032import android.location.GnssMeasurementsEvent;
33import android.location.GnssNavigationMessage;
Lifu Tang30f95a72016-01-07 23:20:38 -080034import android.location.GnssStatus;
Jaikumar Ganesh8ce470d2013-04-03 12:22:18 -070035import android.location.IGpsGeofenceHardware;
Danke Xie22d1f9f2009-08-18 18:28:45 -040036import android.location.INetInitiatedListener;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080037import android.location.Location;
Nick Pelly6fa9ad42012-07-16 12:18:23 -070038import android.location.LocationListener;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080039import android.location.LocationManager;
Stan Chesnutt1d72d8c2013-04-15 19:18:02 -070040import android.location.LocationRequest;
Kevin Tang40e1baf2012-01-10 14:32:44 -080041import android.os.AsyncTask;
Dianne Hackborn91268cf2013-06-13 19:06:50 -070042import android.os.BatteryStats;
Mike Lockwood63aa5a62010-04-14 19:21:31 -040043import android.os.Binder;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080044import android.os.Bundle;
Mike Lockwood62a8fc12010-03-22 14:23:26 -040045import android.os.Handler;
Soonil Nagarkar8df02f42020-01-08 13:23:26 -080046import android.os.HandlerExecutor;
Victoria Lease5cd731a2012-12-19 15:04:21 -080047import android.os.Looper;
Mike Lockwood62a8fc12010-03-22 14:23:26 -040048import android.os.Message;
Yu-Han Yange7baef32018-02-09 13:58:17 -080049import android.os.PersistableBundle;
Mike Lockwood0528b9b2009-05-07 10:12:54 -040050import android.os.PowerManager;
Yu-Han Yange7baef32018-02-09 13:58:17 -080051import android.os.PowerManager.ServiceType;
52import android.os.PowerSaveState;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080053import android.os.RemoteException;
Mike Lockwood2f82c4e2009-04-17 08:24:10 -040054import android.os.ServiceManager;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080055import android.os.SystemClock;
Colin Cross7c030ed2014-01-28 09:33:53 -080056import android.os.SystemProperties;
Dianne Hackborn5ac72a22012-08-29 18:32:08 -070057import android.os.UserHandle;
Dianne Hackborn7e9f4eb2010-09-10 18:43:00 -070058import android.os.WorkSource;
Narayan Kamath32684dd2018-01-08 17:32:51 +000059import android.os.WorkSource.WorkChain;
Mike Lockwoodbcab8df2009-06-25 16:39:09 -040060import android.provider.Settings;
Yu-Han Yange7baef32018-02-09 13:58:17 -080061import android.telephony.CarrierConfigManager;
Wink Savillea374c3d2014-11-11 11:48:04 -080062import android.telephony.SubscriptionManager;
Miguel Torroja1e84da82010-07-27 07:02:24 +020063import android.telephony.TelephonyManager;
64import android.telephony.gsm.GsmCellLocation;
Colin Cross7c030ed2014-01-28 09:33:53 -080065import android.text.TextUtils;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080066import android.util.Log;
Yu-Han Yang8a1b51d2018-12-26 22:18:31 -080067import android.util.StatsLog;
WyattRileyba6072f2019-04-18 07:37:52 -070068import android.util.TimeUtils;
Yu-Han Yanga1862b52018-02-20 17:05:59 -080069
Anil Admal032aa812019-03-06 19:23:25 -080070import com.android.internal.annotations.GuardedBy;
Sasha Kuznetsovb9f26b42019-10-03 17:30:46 -070071import com.android.internal.annotations.VisibleForTesting;
jackqdyulei455e90a2017-02-09 15:29:16 -080072import com.android.internal.app.IBatteryStats;
73import com.android.internal.location.GpsNetInitiatedHandler;
74import com.android.internal.location.GpsNetInitiatedHandler.GpsNiNotification;
75import com.android.internal.location.ProviderProperties;
76import com.android.internal.location.ProviderRequest;
Yu-Han Yange7baef32018-02-09 13:58:17 -080077import com.android.internal.location.gnssmetrics.GnssMetrics;
Kweku Adams810c77d2019-08-28 07:45:00 -070078import com.android.server.DeviceIdleInternal;
79import com.android.server.LocalServices;
Yu-Han Yang66c7ea92018-03-11 17:17:15 -070080import com.android.server.location.GnssSatelliteBlacklistHelper.GnssSatelliteBlacklistCallback;
Yu-Han Yanga1862b52018-02-20 17:05:59 -080081import com.android.server.location.NtpTimeHelper.InjectNtpTimeCallback;
Yu-Han Yang66c7ea92018-03-11 17:17:15 -070082
Nick Pelly6fa9ad42012-07-16 12:18:23 -070083import java.io.FileDescriptor;
Nick Pelly6fa9ad42012-07-16 12:18:23 -070084import java.io.PrintWriter;
Soonil Nagarkar1575a042018-10-24 17:54:54 -070085import java.lang.annotation.ElementType;
86import java.lang.annotation.Retention;
87import java.lang.annotation.RetentionPolicy;
88import java.lang.annotation.Target;
Wyatt Rileycf879db2017-01-12 13:57:38 -080089import java.util.ArrayList;
Andreas Gampee6748ce2015-12-11 18:00:38 -080090import java.util.Arrays;
Wyatt Rileycf879db2017-01-12 13:57:38 -080091import java.util.List;
Yu-Han Yange7baef32018-02-09 13:58:17 -080092
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080093/**
gomo4402af62017-01-11 13:20:13 -080094 * A GNSS implementation of LocationProvider used by LocationManager.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080095 *
96 * {@hide}
97 */
Soonil Nagarkar1575a042018-10-24 17:54:54 -070098public class GnssLocationProvider extends AbstractLocationProvider implements
99 InjectNtpTimeCallback,
100 GnssSatelliteBlacklistCallback {
101
102 /**
103 * Indicates that this method is a native entry point. Useful purely for IDEs which can
104 * understand entry points, and thus eliminate incorrect warnings about methods not used.
105 */
106 @Target(ElementType.METHOD)
107 @Retention(RetentionPolicy.SOURCE)
108 private @interface NativeEntryPoint {
109 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800110
Lifu Tang30f95a72016-01-07 23:20:38 -0800111 private static final String TAG = "GnssLocationProvider";
Mike Lockwood29c84342009-05-06 14:01:15 -0400112
Brian Muramatsu1715cb32012-08-08 17:32:21 -0700113 private static final boolean DEBUG = Log.isLoggable(TAG, Log.DEBUG);
114 private static final boolean VERBOSE = Log.isLoggable(TAG, Log.VERBOSE);
Mike Lockwood62a8fc12010-03-22 14:23:26 -0400115
Nick Pelly6fa9ad42012-07-16 12:18:23 -0700116 private static final ProviderProperties PROPERTIES = new ProviderProperties(
Soonil Nagarkar8df02f42020-01-08 13:23:26 -0800117 /* requiresNetwork = */false,
118 /* requiresSatellite = */true,
119 /* requiresCell = */false,
120 /* hasMonetaryCost = */false,
121 /* supportAltitude = */true,
122 /* supportsSpeed = */true,
123 /* supportsBearing = */true,
124 Criteria.POWER_HIGH,
125 Criteria.ACCURACY_FINE);
Nick Pelly6fa9ad42012-07-16 12:18:23 -0700126
gomo4402af62017-01-11 13:20:13 -0800127 // these need to match GnssPositionMode enum in IGnss.hal
The Android Open Source Project10592532009-03-18 17:39:46 -0700128 private static final int GPS_POSITION_MODE_STANDALONE = 0;
129 private static final int GPS_POSITION_MODE_MS_BASED = 1;
130 private static final int GPS_POSITION_MODE_MS_ASSISTED = 2;
131
gomo4402af62017-01-11 13:20:13 -0800132 // these need to match GnssPositionRecurrence enum in IGnss.hal
Mike Lockwood04598b62010-04-14 17:17:24 -0400133 private static final int GPS_POSITION_RECURRENCE_PERIODIC = 0;
134 private static final int GPS_POSITION_RECURRENCE_SINGLE = 1;
135
gomo4402af62017-01-11 13:20:13 -0800136 // these need to match GnssStatusValue enum in IGnssCallback.hal
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800137 private static final int GPS_STATUS_NONE = 0;
138 private static final int GPS_STATUS_SESSION_BEGIN = 1;
139 private static final int GPS_STATUS_SESSION_END = 2;
140 private static final int GPS_STATUS_ENGINE_ON = 3;
141 private static final int GPS_STATUS_ENGINE_OFF = 4;
142
gomo4402af62017-01-11 13:20:13 -0800143 // these need to match GnssLocationFlags enum in types.hal
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800144 private static final int LOCATION_INVALID = 0;
145 private static final int LOCATION_HAS_LAT_LONG = 1;
146 private static final int LOCATION_HAS_ALTITUDE = 2;
147 private static final int LOCATION_HAS_SPEED = 4;
148 private static final int LOCATION_HAS_BEARING = 8;
gomo4402af62017-01-11 13:20:13 -0800149 private static final int LOCATION_HAS_HORIZONTAL_ACCURACY = 16;
150 private static final int LOCATION_HAS_VERTICAL_ACCURACY = 32;
151 private static final int LOCATION_HAS_SPEED_ACCURACY = 64;
152 private static final int LOCATION_HAS_BEARING_ACCURACY = 128;
Mike Lockwoode3635c92009-05-11 08:38:02 -0400153
Pierre Fite-Georgelb50cdaf2019-02-25 15:42:45 -0800154 // these need to match ElapsedRealtimeFlags enum in types.hal
155 private static final int ELAPSED_REALTIME_HAS_TIMESTAMP_NS = 1;
Pierre Fite-Georgel9e96c572019-02-25 16:12:53 -0800156 private static final int ELAPSED_REALTIME_HAS_TIME_UNCERTAINTY_NS = 2;
Pierre Fite-Georgelb50cdaf2019-02-25 15:42:45 -0800157
gomo4402af62017-01-11 13:20:13 -0800158 // IMPORTANT - the GPS_DELETE_* symbols here must match GnssAidingData enum in IGnss.hal
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800159 private static final int GPS_DELETE_EPHEMERIS = 0x0001;
160 private static final int GPS_DELETE_ALMANAC = 0x0002;
161 private static final int GPS_DELETE_POSITION = 0x0004;
162 private static final int GPS_DELETE_TIME = 0x0008;
163 private static final int GPS_DELETE_IONO = 0x0010;
164 private static final int GPS_DELETE_UTC = 0x0020;
165 private static final int GPS_DELETE_HEALTH = 0x0040;
166 private static final int GPS_DELETE_SVDIR = 0x0080;
167 private static final int GPS_DELETE_SVSTEER = 0x0100;
168 private static final int GPS_DELETE_SADATA = 0x0200;
169 private static final int GPS_DELETE_RTI = 0x0400;
170 private static final int GPS_DELETE_CELLDB_INFO = 0x8000;
171 private static final int GPS_DELETE_ALL = 0xFFFF;
172
gomo4402af62017-01-11 13:20:13 -0800173 // The GPS_CAPABILITY_* flags must match Capabilities enum in IGnssCallback.hal
Mike Lockwood04598b62010-04-14 17:17:24 -0400174 private static final int GPS_CAPABILITY_SCHEDULING = 0x0000001;
175 private static final int GPS_CAPABILITY_MSB = 0x0000002;
176 private static final int GPS_CAPABILITY_MSA = 0x0000004;
177 private static final int GPS_CAPABILITY_SINGLE_SHOT = 0x0000008;
Mike Lockwood9b9fb5c2011-06-29 15:09:40 -0400178 private static final int GPS_CAPABILITY_ON_DEMAND_TIME = 0x0000010;
Anil Admalefd9dc62019-03-12 17:39:20 -0700179 public static final int GPS_CAPABILITY_GEOFENCING = 0x0000020;
gomo226b7b72018-12-12 16:49:39 -0800180 public static final int GPS_CAPABILITY_MEASUREMENTS = 0x0000040;
Anil Admalefd9dc62019-03-12 17:39:20 -0700181 public static final int GPS_CAPABILITY_NAV_MESSAGES = 0x0000080;
Anil Admal62c42dc2019-04-03 15:39:22 -0700182 public static final int GPS_CAPABILITY_LOW_POWER_MODE = 0x0000100;
183 public static final int GPS_CAPABILITY_SATELLITE_BLACKLIST = 0x0000200;
184 public static final int GPS_CAPABILITY_MEASUREMENT_CORRECTIONS = 0x0000400;
Mike Lockwood04598b62010-04-14 17:17:24 -0400185
Tsuwei Chen462bcd82014-09-17 12:28:49 -0700186 // The AGPS SUPL mode
187 private static final int AGPS_SUPL_MODE_MSA = 0x02;
188 private static final int AGPS_SUPL_MODE_MSB = 0x01;
189
Kweku Adams810c77d2019-08-28 07:45:00 -0700190 private static final int UPDATE_LOW_POWER_MODE = 1;
Nick Pelly6fa9ad42012-07-16 12:18:23 -0700191 private static final int SET_REQUEST = 3;
Mike Lockwood62a8fc12010-03-22 14:23:26 -0400192 private static final int INJECT_NTP_TIME = 5;
Kevin Tang8c6ac672019-03-22 12:31:01 -0700193 // PSDS stands for Predicted Satellite Data Service
194 private static final int DOWNLOAD_PSDS_DATA = 6;
Kevin Tang8c6ac672019-03-22 12:31:01 -0700195 private static final int DOWNLOAD_PSDS_DATA_FINISHED = 11;
destradaafb23c672015-04-16 14:01:27 -0700196 private static final int INITIALIZE_HANDLER = 13;
Yu-Han Yange7baef32018-02-09 13:58:17 -0800197 private static final int REQUEST_LOCATION = 16;
Wyatt Riley26465d22018-02-12 13:44:24 -0800198 private static final int REPORT_LOCATION = 17; // HAL reports location
199 private static final int REPORT_SV_STATUS = 18; // HAL reports SV status
Mike Lockwood62a8fc12010-03-22 14:23:26 -0400200
Miguel Torroja1e84da82010-07-27 07:02:24 +0200201 // Request setid
202 private static final int AGPS_RIL_REQUEST_SETID_IMSI = 1;
203 private static final int AGPS_RIL_REQUEST_SETID_MSISDN = 2;
204
Miguel Torroja1e84da82010-07-27 07:02:24 +0200205 // ref. location info
206 private static final int AGPS_REF_LOCATION_TYPE_GSM_CELLID = 1;
207 private static final int AGPS_REF_LOCATION_TYPE_UMTS_CELLID = 2;
Miguel Torroja1e84da82010-07-27 07:02:24 +0200208
209 // set id info
210 private static final int AGPS_SETID_TYPE_NONE = 0;
211 private static final int AGPS_SETID_TYPE_IMSI = 1;
212 private static final int AGPS_SETID_TYPE_MSISDN = 2;
213
gomo48f1a642017-11-10 20:35:46 -0800214 private static final int GPS_GEOFENCE_UNAVAILABLE = 1 << 0L;
215 private static final int GPS_GEOFENCE_AVAILABLE = 1 << 1L;
destradaa0682809a2013-08-12 18:50:30 -0700216
gomo4402af62017-01-11 13:20:13 -0800217 // GPS Geofence errors. Should match GeofenceStatus enum in IGnssGeofenceCallback.hal.
destradaa0682809a2013-08-12 18:50:30 -0700218 private static final int GPS_GEOFENCE_OPERATION_SUCCESS = 0;
219 private static final int GPS_GEOFENCE_ERROR_TOO_MANY_GEOFENCES = 100;
gomo48f1a642017-11-10 20:35:46 -0800220 private static final int GPS_GEOFENCE_ERROR_ID_EXISTS = -101;
destradaa0682809a2013-08-12 18:50:30 -0700221 private static final int GPS_GEOFENCE_ERROR_ID_UNKNOWN = -102;
222 private static final int GPS_GEOFENCE_ERROR_INVALID_TRANSITION = -103;
223 private static final int GPS_GEOFENCE_ERROR_GENERIC = -149;
224
Tsuwei Chen678c13c2014-09-22 17:48:41 -0700225 // TCP/IP constants.
226 // Valid TCP/UDP port range is (0, 65535].
227 private static final int TCP_MIN_PORT = 0;
228 private static final int TCP_MAX_PORT = 0xffff;
229
Yu-Han Yange7baef32018-02-09 13:58:17 -0800230 // 1 second, or 1 Hz frequency.
231 private static final long LOCATION_UPDATE_MIN_TIME_INTERVAL_MILLIS = 1000;
Yu-Han Yang639f7592018-06-07 11:58:52 -0700232 // Default update duration in milliseconds for REQUEST_LOCATION.
Yu-Han Yang9e2a8232018-06-14 12:10:08 -0700233 private static final long LOCATION_UPDATE_DURATION_MILLIS = 10 * 1000;
Anil Admalb1c6c0d2019-06-20 12:00:16 -0700234 // Update duration extension multiplier for emergency REQUEST_LOCATION.
235 private static final int EMERGENCY_LOCATION_UPDATE_DURATION_MULTIPLIER = 3;
Yu-Han Yange7baef32018-02-09 13:58:17 -0800236
Nick Pelly6fa9ad42012-07-16 12:18:23 -0700237 /** simpler wrapper for ProviderRequest + Worksource */
238 private static class GpsRequest {
239 public ProviderRequest request;
240 public WorkSource source;
gomo48f1a642017-11-10 20:35:46 -0800241
Nick Pelly6fa9ad42012-07-16 12:18:23 -0700242 public GpsRequest(ProviderRequest request, WorkSource source) {
243 this.request = request;
244 this.source = source;
245 }
246 }
247
Wyatt Riley26465d22018-02-12 13:44:24 -0800248 // Threadsafe class to hold stats reported in the Extras Bundle
Wyatt Rileyc7067412018-02-07 15:50:35 -0800249 private static class LocationExtras {
250 private int mSvCount;
251 private int mMeanCn0;
252 private int mMaxCn0;
253 private final Bundle mBundle;
254
255 public LocationExtras() {
256 mBundle = new Bundle();
257 }
258
259 public void set(int svCount, int meanCn0, int maxCn0) {
Soonil Nagarkar1575a042018-10-24 17:54:54 -0700260 synchronized (this) {
Wyatt Riley26465d22018-02-12 13:44:24 -0800261 mSvCount = svCount;
262 mMeanCn0 = meanCn0;
263 mMaxCn0 = maxCn0;
264 }
Wyatt Rileyc7067412018-02-07 15:50:35 -0800265 setBundle(mBundle);
266 }
267
268 public void reset() {
Soonil Nagarkar1575a042018-10-24 17:54:54 -0700269 set(0, 0, 0);
Wyatt Rileyc7067412018-02-07 15:50:35 -0800270 }
271
272 // Also used by outside methods to add to other bundles
273 public void setBundle(Bundle extras) {
274 if (extras != null) {
Wyatt Riley26465d22018-02-12 13:44:24 -0800275 synchronized (this) {
276 extras.putInt("satellites", mSvCount);
277 extras.putInt("meanCn0", mMeanCn0);
278 extras.putInt("maxCn0", mMaxCn0);
279 }
Wyatt Rileyc7067412018-02-07 15:50:35 -0800280 }
281 }
282
283 public Bundle getBundle() {
Wyatt Riley26465d22018-02-12 13:44:24 -0800284 synchronized (this) {
285 return new Bundle(mBundle);
286 }
Wyatt Rileyc7067412018-02-07 15:50:35 -0800287 }
288 }
289
Yu-Han Yang66c7ea92018-03-11 17:17:15 -0700290 private final Object mLock = new Object();
Nick Pelly6fa9ad42012-07-16 12:18:23 -0700291
Mike Lockwood0632ca72009-05-14 15:51:03 -0400292 // stop trying if we do not receive a fix within 60 seconds
Mike Lockwood04598b62010-04-14 17:17:24 -0400293 private static final int NO_FIX_TIMEOUT = 60 * 1000;
Mike Lockwood0632ca72009-05-14 15:51:03 -0400294
Nick Pellyb041f232012-05-07 17:12:25 -0700295 // if the fix interval is below this we leave GPS on,
296 // if above then we cycle the GPS driver.
297 // Typical hot TTTF is ~5 seconds, so 10 seconds seems sane.
298 private static final int GPS_POLLING_THRESHOLD_INTERVAL = 10 * 1000;
299
Kevin Tang8c6ac672019-03-22 12:31:01 -0700300 // how long to wait if we have a network error in NTP or PSDS downloading
Wei Liu6f6326b2015-06-24 23:47:50 -0700301 // the initial value of the exponential backoff
Nick Pelly6fa9ad42012-07-16 12:18:23 -0700302 // current setting - 5 minutes
gomo48f1a642017-11-10 20:35:46 -0800303 private static final long RETRY_INTERVAL = 5 * 60 * 1000;
Kevin Tang8c6ac672019-03-22 12:31:01 -0700304 // how long to wait if we have a network error in NTP or PSDS downloading
Wei Liu6f6326b2015-06-24 23:47:50 -0700305 // the max value of the exponential backoff
306 // current setting - 4 hours
gomo48f1a642017-11-10 20:35:46 -0800307 private static final long MAX_RETRY_INTERVAL = 4 * 60 * 60 * 1000;
Wei Liu6f6326b2015-06-24 23:47:50 -0700308
Kevin Tang8c6ac672019-03-22 12:31:01 -0700309 // Timeout when holding wakelocks for downloading PSDS data.
310 private static final long DOWNLOAD_PSDS_DATA_TIMEOUT_MS = 60 * 1000;
Yu-Han Yang499a6ba2019-11-14 14:19:13 -0800311 private static final long WAKELOCK_TIMEOUT_MILLIS = 30 * 1000;
Wei Wangc5706f62017-04-18 11:26:26 -0700312
Kevin Tang8c6ac672019-03-22 12:31:01 -0700313 private final ExponentialBackOff mPsdsBackOff = new ExponentialBackOff(RETRY_INTERVAL,
Yu-Han Yanga1862b52018-02-20 17:05:59 -0800314 MAX_RETRY_INTERVAL);
Nick Pelly6fa9ad42012-07-16 12:18:23 -0700315
Sasha Kuznetsovb9f26b42019-10-03 17:30:46 -0700316 private static boolean sIsInitialized = false;
317 private static boolean sStaticTestOverride = false;
318
Yu-Han Yang76f99952019-05-04 17:45:44 -0700319 // True if we are enabled
320 @GuardedBy("mLock")
321 private boolean mGpsEnabled;
Nick Pelly6fa9ad42012-07-16 12:18:23 -0700322
Soonil Nagarkar35c3b912019-01-31 10:31:24 -0800323 private boolean mShutdown;
324
Kevin Tang8c6ac672019-03-22 12:31:01 -0700325 // states for injecting ntp and downloading psds data
Kevin Tang40e1baf2012-01-10 14:32:44 -0800326 private static final int STATE_PENDING_NETWORK = 0;
327 private static final int STATE_DOWNLOADING = 1;
328 private static final int STATE_IDLE = 2;
329
Kevin Tang8c6ac672019-03-22 12:31:01 -0700330 // flags to trigger NTP or PSDS data download when network becomes available
331 // initialized to true so we do NTP and PSDS when the network comes up after booting
332 private int mDownloadPsdsDataPending = STATE_PENDING_NETWORK;
Mike Lockwood62a8fc12010-03-22 14:23:26 -0400333
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800334 // true if GPS is navigating
335 private boolean mNavigating;
Mike Lockwoodcf1d8cb2010-01-20 10:14:54 -0500336
Mike Lockwood04598b62010-04-14 17:17:24 -0400337 // requested frequency of fixes, in milliseconds
338 private int mFixInterval = 1000;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800339
gomo48f1a642017-11-10 20:35:46 -0800340 // true if low power mode for the GNSS chipset is part of the latest request.
341 private boolean mLowPowerMode = false;
342
WyattRileyba6072f2019-04-18 07:37:52 -0700343 // true if we started navigation in the HAL, only change value of this in setStarted
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800344 private boolean mStarted;
345
WyattRileyba6072f2019-04-18 07:37:52 -0700346 // for logging of latest change, and warning of ongoing location after a stop
347 private long mStartedChangedElapsedRealtime;
348
349 // threshold for delay in GNSS engine turning off before warning & error
350 private static final long LOCATION_OFF_DELAY_THRESHOLD_WARN_MILLIS = 2 * 1000;
351 private static final long LOCATION_OFF_DELAY_THRESHOLD_ERROR_MILLIS = 15 * 1000;
352
Anil Admal312fddb2019-03-25 12:15:43 -0700353 // capabilities reported through the top level IGnssCallback.hal
354 private volatile int mTopHalCapabilities;
Mike Lockwood04598b62010-04-14 17:17:24 -0400355
Kevin Tang8c6ac672019-03-22 12:31:01 -0700356 // true if PSDS is supported
357 private boolean mSupportsPsds;
Mike Lockwood1a1cd3a2010-08-17 07:42:54 -0400358
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800359 // for calculating time to first fix
360 private long mFixRequestTime = 0;
361 // time to first fix for most recent session
Nick Pelly6fa9ad42012-07-16 12:18:23 -0700362 private int mTimeToFirstFix = 0;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800363 // time we received our last fix
364 private long mLastFixTime;
365
Mike Lockwood04598b62010-04-14 17:17:24 -0400366 private int mPositionMode;
Yu-Han Yangc8b9ff72018-04-17 00:47:24 -0700367 private GnssPositionMode mLastPositionMode;
Mike Lockwood04598b62010-04-14 17:17:24 -0400368
David Christied4edf4c2014-08-12 15:22:27 -0700369 // Current request from underlying location clients.
Soonil Nagarkar35c3b912019-01-31 10:31:24 -0800370 private ProviderRequest mProviderRequest;
Narayan Kamath32684dd2018-01-08 17:32:51 +0000371 // The WorkSource associated with the most recent client request (i.e, most recent call to
372 // setRequest).
David Christied4edf4c2014-08-12 15:22:27 -0700373 private WorkSource mWorkSource = null;
WyattRileyb2446072019-03-01 07:41:49 -0800374 // True if gps should be disabled because of PowerManager controls
375 private boolean mDisableGpsForPowerManager = false;
David Christied4edf4c2014-08-12 15:22:27 -0700376
destradaafb23c672015-04-16 14:01:27 -0700377 /**
Kweku Adams810c77d2019-08-28 07:45:00 -0700378 * True if the device idle controller has determined that the device is stationary. This is only
379 * updated when the device enters idle mode.
380 */
381 private volatile boolean mIsDeviceStationary = false;
382
383 /**
destradaafb23c672015-04-16 14:01:27 -0700384 * Properties loaded from PROPERTIES_FILE.
385 * It must be accessed only inside {@link #mHandler}.
386 */
Anil Admald71cf142018-12-21 14:59:36 -0800387 private GnssConfiguration mGnssConfiguration;
destradaafb23c672015-04-16 14:01:27 -0700388
Mike Lockwood734d6032009-07-28 18:30:25 -0700389 private String mSuplServerHost;
Tsuwei Chen678c13c2014-09-22 17:48:41 -0700390 private int mSuplServerPort = TCP_MIN_PORT;
Mike Lockwood734d6032009-07-28 18:30:25 -0700391 private String mC2KServerHost;
392 private int mC2KServerPort;
Tsuwei Chen3324e952014-09-07 01:30:42 -0700393 private boolean mSuplEsEnabled = false;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800394
Anil Admal94ec76a2019-01-15 09:42:01 -0800395 private final Looper mLooper;
Wyatt Rileyc7067412018-02-07 15:50:35 -0800396 private final LocationExtras mLocationExtras = new LocationExtras();
Anil Admal75b9fd62018-11-28 11:22:50 -0800397 private final GnssStatusListenerHelper mGnssStatusListenerHelper;
Lifu Tang818aa2c2016-02-01 01:52:00 -0800398 private final GnssMeasurementsProvider mGnssMeasurementsProvider;
Anil Admalefd9dc62019-03-12 17:39:20 -0700399 private final GnssMeasurementCorrectionsProvider mGnssMeasurementCorrectionsProvider;
Lifu Tang818aa2c2016-02-01 01:52:00 -0800400 private final GnssNavigationMessageProvider mGnssNavigationMessageProvider;
Yu-Han Yang07561382018-02-21 13:08:37 -0800401 private final LocationChangeListener mNetworkLocationListener = new NetworkLocationListener();
402 private final LocationChangeListener mFusedLocationListener = new FusedLocationListener();
Yu-Han Yanga1862b52018-02-20 17:05:59 -0800403 private final NtpTimeHelper mNtpTimeHelper;
Yu-Han Yang3557cc72018-03-21 12:48:36 -0700404 private final GnssBatchingProvider mGnssBatchingProvider;
Yu-Han Yang890ca8b2018-04-16 22:11:31 -0700405 private final GnssGeofenceProvider mGnssGeofenceProvider;
Anil Admal312fddb2019-03-25 12:15:43 -0700406 private final GnssCapabilitiesProvider mGnssCapabilitiesProvider;
407
Anil Admal316f9482019-02-12 18:57:18 -0800408 // Available only on GNSS HAL 2.0 implementations and later.
Anil Admal94ec76a2019-01-15 09:42:01 -0800409 private GnssVisibilityControl mGnssVisibilityControl;
Mike Lockwood62a8fc12010-03-22 14:23:26 -0400410
Victoria Lease5c24fd02012-10-01 11:00:50 -0700411 // Handler for processing events
Mike Lockwood62a8fc12010-03-22 14:23:26 -0400412 private Handler mHandler;
The Android Open Source Project10592532009-03-18 17:39:46 -0700413
Anil Admal50ba15e2018-11-01 16:42:42 -0700414 private final GnssNetworkConnectivityHandler mNetworkConnectivityHandler;
Nick Pelly6fa9ad42012-07-16 12:18:23 -0700415 private final GpsNetInitiatedHandler mNIHandler;
Mike Lockwood2f82c4e2009-04-17 08:24:10 -0400416
Mike Lockwood0528b9b2009-05-07 10:12:54 -0400417 // Wakelocks
Lifu Tang30f95a72016-01-07 23:20:38 -0800418 private final static String WAKELOCK_KEY = "GnssLocationProvider";
Mike Lockwood0528b9b2009-05-07 10:12:54 -0400419 private final PowerManager.WakeLock mWakeLock;
Kevin Tang8c6ac672019-03-22 12:31:01 -0700420 private static final String DOWNLOAD_EXTRA_WAKELOCK_KEY = "GnssLocationProviderPsdsDownload";
Yu-Han Yang76f99952019-05-04 17:45:44 -0700421 @GuardedBy("mLock")
Kevin Tang8c6ac672019-03-22 12:31:01 -0700422 private final PowerManager.WakeLock mDownloadPsdsWakeLock;
Mike Lockwood0528b9b2009-05-07 10:12:54 -0400423
Mike Lockwood29c84342009-05-06 14:01:15 -0400424 // Alarms
425 private final static String ALARM_WAKEUP = "com.android.internal.location.ALARM_WAKEUP";
Mike Lockwood0632ca72009-05-14 15:51:03 -0400426 private final static String ALARM_TIMEOUT = "com.android.internal.location.ALARM_TIMEOUT";
Tsuwei Chen52617bb2014-08-25 11:49:11 -0700427
David Christied4edf4c2014-08-12 15:22:27 -0700428 private final PowerManager mPowerManager;
Mike Lockwood29c84342009-05-06 14:01:15 -0400429 private final AlarmManager mAlarmManager;
430 private final PendingIntent mWakeupIntent;
Mike Lockwood0632ca72009-05-14 15:51:03 -0400431 private final PendingIntent mTimeoutIntent;
Mike Lockwood29c84342009-05-06 14:01:15 -0400432
Svet Ganovf7b47252018-02-26 11:11:27 -0800433 private final AppOpsManager mAppOps;
Mike Lockwood2f82c4e2009-04-17 08:24:10 -0400434 private final IBatteryStats mBatteryStats;
The Android Open Source Project10592532009-03-18 17:39:46 -0700435
Narayan Kamath32684dd2018-01-08 17:32:51 +0000436 // Current list of underlying location clients.
Nick Pelly6fa9ad42012-07-16 12:18:23 -0700437 // only modified on handler thread
Dianne Hackborn002a54e2013-01-10 17:34:55 -0800438 private WorkSource mClientSource = new WorkSource();
Mike Lockwoodf1218be2010-01-29 09:20:06 -0500439
Jaikumar Ganesh8ce470d2013-04-03 12:22:18 -0700440 private GeofenceHardwareImpl mGeofenceHardwareImpl;
Wyatt Rileyd87cf912017-12-05 09:31:52 -0800441
442 // Volatile for simple inter-thread sync on these values.
443 private volatile int mHardwareYear = 0;
Wyatt Riley49097c02018-03-15 09:14:43 -0700444 private volatile String mHardwareModelName;
Lifu Tang82f893d2016-01-21 18:15:33 -0800445
Wyatt Riley5d5bac82016-11-01 07:05:16 -0700446 // Set lower than the current ITAR limit of 600m/s to allow this to trigger even if GPS HAL
447 // stops output right at 600m/s, depriving this of the information of a device that reaches
448 // greater than 600m/s, and higher than the speed of sound to avoid impacting most use cases.
449 private static final float ITAR_SPEED_LIMIT_METERS_PER_SECOND = 400.0F;
Wyatt Riley042c48f2017-10-06 14:59:25 -0700450
Wyatt Riley042c48f2017-10-06 14:59:25 -0700451 private volatile boolean mItarSpeedLimitExceeded = false;
Wyatt Riley5d5bac82016-11-01 07:05:16 -0700452
Siddharth Raybb608c82017-03-16 11:33:34 -0700453 // GNSS Metrics
454 private GnssMetrics mGnssMetrics;
455
Anil Admal75b9fd62018-11-28 11:22:50 -0800456 public GnssStatusListenerHelper getGnssStatusProvider() {
457 return mGnssStatusListenerHelper;
Mike Lockwood15e3d0f2009-05-01 07:53:28 -0400458 }
459
Jaikumar Ganesh8ce470d2013-04-03 12:22:18 -0700460 public IGpsGeofenceHardware getGpsGeofenceProxy() {
Yu-Han Yang890ca8b2018-04-16 22:11:31 -0700461 return mGnssGeofenceProvider;
Jaikumar Ganesh8ce470d2013-04-03 12:22:18 -0700462 }
463
Lifu Tang818aa2c2016-02-01 01:52:00 -0800464 public GnssMeasurementsProvider getGnssMeasurementsProvider() {
465 return mGnssMeasurementsProvider;
destradaaea8a8a62014-06-23 18:19:03 -0700466 }
467
Anil Admalefd9dc62019-03-12 17:39:20 -0700468 public GnssMeasurementCorrectionsProvider getGnssMeasurementCorrectionsProvider() {
469 return mGnssMeasurementCorrectionsProvider;
470 }
471
Lifu Tang818aa2c2016-02-01 01:52:00 -0800472 public GnssNavigationMessageProvider getGnssNavigationMessageProvider() {
473 return mGnssNavigationMessageProvider;
destradaa4b3e3932014-07-21 18:01:47 -0700474 }
Kweku Adams810c77d2019-08-28 07:45:00 -0700475
476 private final DeviceIdleInternal.StationaryListener mDeviceIdleStationaryListener =
477 isStationary -> {
478 mIsDeviceStationary = isStationary;
479 // Call updateLowPowerMode on handler thread so it's always called from the same
480 // thread.
481 mHandler.sendEmptyMessage(UPDATE_LOW_POWER_MODE);
482 };
483
Tsuwei Chen52617bb2014-08-25 11:49:11 -0700484 private final BroadcastReceiver mBroadcastReceiver = new BroadcastReceiver() {
gomo48f1a642017-11-10 20:35:46 -0800485 @Override
486 public void onReceive(Context context, Intent intent) {
The Android Open Source Project10592532009-03-18 17:39:46 -0700487 String action = intent.getAction();
Tsuwei Chen48d37f92014-09-05 15:15:34 -0700488 if (DEBUG) Log.d(TAG, "receive broadcast intent, action: " + action);
destradaaee9fd342015-08-31 13:31:17 -0700489 if (action == null) {
490 return;
491 }
492
Soonil Nagarkar1575a042018-10-24 17:54:54 -0700493 switch (action) {
494 case ALARM_WAKEUP:
Yu-Han Yang6a5f0b72019-01-24 18:34:28 -0800495 startNavigating();
Soonil Nagarkar1575a042018-10-24 17:54:54 -0700496 break;
497 case ALARM_TIMEOUT:
498 hibernate();
499 break;
Soonil Nagarkar1575a042018-10-24 17:54:54 -0700500 case PowerManager.ACTION_DEVICE_IDLE_MODE_CHANGED:
Kweku Adams810c77d2019-08-28 07:45:00 -0700501 DeviceIdleInternal deviceIdleService = LocalServices.getService(
502 DeviceIdleInternal.class);
503 if (mPowerManager.isDeviceIdleMode()) {
504 deviceIdleService.registerStationaryListener(mDeviceIdleStationaryListener);
505 } else {
506 deviceIdleService.unregisterStationaryListener(
507 mDeviceIdleStationaryListener);
508 }
509 // Intentional fall-through.
510 case PowerManager.ACTION_POWER_SAVE_MODE_CHANGED:
Soonil Nagarkar1575a042018-10-24 17:54:54 -0700511 case Intent.ACTION_SCREEN_OFF:
512 case Intent.ACTION_SCREEN_ON:
Kweku Adams810c77d2019-08-28 07:45:00 -0700513 // Call updateLowPowerMode on handler thread so it's always called from the
514 // same thread.
515 mHandler.sendEmptyMessage(UPDATE_LOW_POWER_MODE);
Soonil Nagarkar1575a042018-10-24 17:54:54 -0700516 break;
Meng Wang19b214d2018-11-07 12:14:39 -0800517 case CarrierConfigManager.ACTION_CARRIER_CONFIG_CHANGED:
Jayachandran C041e7692019-12-20 16:20:02 -0800518 case TelephonyManager.ACTION_DEFAULT_DATA_SUBSCRIPTION_CHANGED:
Soonil Nagarkarfc9c7f82019-07-16 12:07:57 -0700519 subscriptionOrCarrierConfigChanged();
Soonil Nagarkar1575a042018-10-24 17:54:54 -0700520 break;
David Christied4edf4c2014-08-12 15:22:27 -0700521 }
The Android Open Source Project10592532009-03-18 17:39:46 -0700522 }
Mike Lockwood29c84342009-05-06 14:01:15 -0400523 };
The Android Open Source Project10592532009-03-18 17:39:46 -0700524
Yu-Han Yang66c7ea92018-03-11 17:17:15 -0700525 /**
526 * Implements {@link GnssSatelliteBlacklistCallback#onUpdateSatelliteBlacklist}.
527 */
528 @Override
529 public void onUpdateSatelliteBlacklist(int[] constellations, int[] svids) {
Anil Admald71cf142018-12-21 14:59:36 -0800530 mHandler.post(() -> mGnssConfiguration.setSatelliteBlacklist(constellations, svids));
Yu-Han Yang284234e2019-03-28 19:35:57 -0700531 mGnssMetrics.resetConstellationTypes();
Yu-Han Yang66c7ea92018-03-11 17:17:15 -0700532 }
533
Soonil Nagarkarfc9c7f82019-07-16 12:07:57 -0700534 private void subscriptionOrCarrierConfigChanged() {
Joe Onorato0c484102016-02-01 18:04:24 -0800535 if (DEBUG) Log.d(TAG, "received SIM related action: ");
Wink Savillea374c3d2014-11-11 11:48:04 -0800536 TelephonyManager phone = (TelephonyManager)
537 mContext.getSystemService(Context.TELEPHONY_SERVICE);
Ecco Park4fa1ab72016-10-24 13:04:52 -0700538 CarrierConfigManager configManager = (CarrierConfigManager)
539 mContext.getSystemService(Context.CARRIER_CONFIG_SERVICE);
Anil Admale1539e82019-05-09 15:05:04 -0700540 int ddSubId = SubscriptionManager.getDefaultDataSubscriptionId();
zoey chen4841a272019-12-03 20:07:18 +0800541 if (SubscriptionManager.isValidSubscriptionId(ddSubId)) {
542 phone = phone.createForSubscriptionId(ddSubId);
543 }
544 String mccMnc = phone.getSimOperator();
Ecco Park4fa1ab72016-10-24 13:04:52 -0700545 boolean isKeepLppProfile = false;
Wink Savillea374c3d2014-11-11 11:48:04 -0800546 if (!TextUtils.isEmpty(mccMnc)) {
Joe Onorato0c484102016-02-01 18:04:24 -0800547 if (DEBUG) Log.d(TAG, "SIM MCC/MNC is available: " + mccMnc);
Yu-Han Yang76f99952019-05-04 17:45:44 -0700548 if (configManager != null) {
Anil Admale1539e82019-05-09 15:05:04 -0700549 PersistableBundle b = SubscriptionManager.isValidSubscriptionId(ddSubId)
550 ? configManager.getConfigForSubId(ddSubId) : null;
Yu-Han Yang76f99952019-05-04 17:45:44 -0700551 if (b != null) {
552 isKeepLppProfile =
553 b.getBoolean(CarrierConfigManager.Gps.KEY_PERSIST_LPP_MODE_BOOL);
Ecco Park4fa1ab72016-10-24 13:04:52 -0700554 }
Wink Savillea374c3d2014-11-11 11:48:04 -0800555 }
Yu-Han Yang76f99952019-05-04 17:45:44 -0700556 if (isKeepLppProfile) {
557 // load current properties for the carrier
558 mGnssConfiguration.loadPropertiesFromCarrierConfig();
559 String lpp_profile = mGnssConfiguration.getLppProfile();
560 // set the persist property LPP_PROFILE for the value
561 if (lpp_profile != null) {
562 SystemProperties.set(GnssConfiguration.LPP_PROFILE, lpp_profile);
563 }
564 } else {
565 // reset the persist property
566 SystemProperties.set(GnssConfiguration.LPP_PROFILE, "");
567 }
568 reloadGpsProperties();
Wink Savillea374c3d2014-11-11 11:48:04 -0800569 } else {
Joe Onorato0c484102016-02-01 18:04:24 -0800570 if (DEBUG) Log.d(TAG, "SIM MCC/MNC is still not available");
Wink Savillea374c3d2014-11-11 11:48:04 -0800571 }
572 }
573
David Christied4edf4c2014-08-12 15:22:27 -0700574 private void updateLowPowerMode() {
Kweku Adams810c77d2019-08-28 07:45:00 -0700575 // Disable GPS if we are in device idle mode and the device is stationary.
576 boolean disableGpsForPowerManager = mPowerManager.isDeviceIdleMode() && mIsDeviceStationary;
577 final PowerSaveState result = mPowerManager.getPowerSaveState(ServiceType.LOCATION);
Kweku Adams731a1032019-02-04 14:05:41 -0800578 switch (result.locationMode) {
Makoto Onuki57f0f552017-12-11 12:22:18 -0800579 case PowerManager.LOCATION_MODE_GPS_DISABLED_WHEN_SCREEN_OFF:
Kweku Adams5e0052b2019-02-22 15:17:52 -0800580 case PowerManager.LOCATION_MODE_ALL_DISABLED_WHEN_SCREEN_OFF:
Adam Lesinski87c17df2015-05-27 13:24:13 -0700581 // If we are in battery saver mode and the screen is off, disable GPS.
WyattRileyb2446072019-03-01 07:41:49 -0800582 disableGpsForPowerManager |=
583 result.batterySaverEnabled && !mPowerManager.isInteractive();
David Christied4edf4c2014-08-12 15:22:27 -0700584 break;
David Christied4edf4c2014-08-12 15:22:27 -0700585 }
WyattRileyb2446072019-03-01 07:41:49 -0800586 if (disableGpsForPowerManager != mDisableGpsForPowerManager) {
587 mDisableGpsForPowerManager = disableGpsForPowerManager;
Soonil Nagarkar35c3b912019-01-31 10:31:24 -0800588 updateEnabled();
David Christied4edf4c2014-08-12 15:22:27 -0700589 updateRequirements();
590 }
591 }
592
Sasha Kuznetsovb9f26b42019-10-03 17:30:46 -0700593 @VisibleForTesting
594 public static void setIsSupportedForTest(boolean override) {
595 sStaticTestOverride = override;
596 }
597
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800598 public static boolean isSupported() {
Sasha Kuznetsovb9f26b42019-10-03 17:30:46 -0700599 if (sStaticTestOverride) {
600 return true;
601 }
Sasha Kuznetsov24da7f92019-11-01 12:21:50 -0700602 ensureInitialized();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800603 return native_is_supported();
604 }
605
Sasha Kuznetsov24da7f92019-11-01 12:21:50 -0700606 private static synchronized void ensureInitialized() {
607 if (!sIsInitialized) {
608 class_init_native();
609 }
610 sIsInitialized = true;
611 }
612
Anil Admald71cf142018-12-21 14:59:36 -0800613 private void reloadGpsProperties() {
614 mGnssConfiguration.reloadGpsProperties();
615 setSuplHostPort();
Tsuwei Chen52617bb2014-08-25 11:49:11 -0700616 // TODO: we should get rid of C2K specific setting.
Anil Admald71cf142018-12-21 14:59:36 -0800617 mC2KServerHost = mGnssConfiguration.getC2KHost();
618 mC2KServerPort = mGnssConfiguration.getC2KPort(TCP_MIN_PORT);
619 mNIHandler.setEmergencyExtensionSeconds(mGnssConfiguration.getEsExtensionSec());
620 mSuplEsEnabled = mGnssConfiguration.getSuplEs(0) == 1;
Anil Admale1539e82019-05-09 15:05:04 -0700621 mNIHandler.setSuplEsEnabled(mSuplEsEnabled);
Anil Admal94ec76a2019-01-15 09:42:01 -0800622 if (mGnssVisibilityControl != null) {
Anil Admale1539e82019-05-09 15:05:04 -0700623 mGnssVisibilityControl.onConfigurationUpdated(mGnssConfiguration);
Anil Admal94ec76a2019-01-15 09:42:01 -0800624 }
Colin Cross7c030ed2014-01-28 09:33:53 -0800625 }
626
Soonil Nagarkar8df02f42020-01-08 13:23:26 -0800627 public GnssLocationProvider(Context context, Handler handler) {
628 super(context, new HandlerExecutor(handler));
Soonil Nagarkar1575a042018-10-24 17:54:54 -0700629
Sasha Kuznetsov24da7f92019-11-01 12:21:50 -0700630 ensureInitialized();
Sasha Kuznetsovb9f26b42019-10-03 17:30:46 -0700631
Soonil Nagarkar8df02f42020-01-08 13:23:26 -0800632 mLooper = handler.getLooper();
Mike Lockwood63598a02010-02-24 11:52:59 -0500633
Mike Lockwood0528b9b2009-05-07 10:12:54 -0400634 // Create a wake lock
David Christied4edf4c2014-08-12 15:22:27 -0700635 mPowerManager = (PowerManager) mContext.getSystemService(Context.POWER_SERVICE);
636 mWakeLock = mPowerManager.newWakeLock(PowerManager.PARTIAL_WAKE_LOCK, WAKELOCK_KEY);
Nick Pelly6fa9ad42012-07-16 12:18:23 -0700637 mWakeLock.setReferenceCounted(true);
Mike Lockwood0528b9b2009-05-07 10:12:54 -0400638
Kevin Tang8c6ac672019-03-22 12:31:01 -0700639 // Create a separate wake lock for psds downloader as it may be released due to timeout.
640 mDownloadPsdsWakeLock = mPowerManager.newWakeLock(
Wei Wangb71c0492017-05-01 20:24:19 -0700641 PowerManager.PARTIAL_WAKE_LOCK, DOWNLOAD_EXTRA_WAKELOCK_KEY);
Kevin Tang8c6ac672019-03-22 12:31:01 -0700642 mDownloadPsdsWakeLock.setReferenceCounted(true);
Wei Wangb71c0492017-05-01 20:24:19 -0700643
gomo48f1a642017-11-10 20:35:46 -0800644 mAlarmManager = (AlarmManager) mContext.getSystemService(Context.ALARM_SERVICE);
Mike Lockwood29c84342009-05-06 14:01:15 -0400645 mWakeupIntent = PendingIntent.getBroadcast(mContext, 0, new Intent(ALARM_WAKEUP), 0);
Mike Lockwood0632ca72009-05-14 15:51:03 -0400646 mTimeoutIntent = PendingIntent.getBroadcast(mContext, 0, new Intent(ALARM_TIMEOUT), 0);
Mike Lockwood29c84342009-05-06 14:01:15 -0400647
Anil Admal312fddb2019-03-25 12:15:43 -0700648 mNetworkConnectivityHandler = new GnssNetworkConnectivityHandler(context,
Soonil Nagarkar8df02f42020-01-08 13:23:26 -0800649 GnssLocationProvider.this::onNetworkAvailable, mLooper);
Mike Lockwood58bda982009-04-14 16:25:07 -0400650
Dianne Hackborna06de0f2012-12-11 16:34:47 -0800651 // App ops service to keep track of who is accessing the GPS
Svet Ganovf7b47252018-02-26 11:11:27 -0800652 mAppOps = mContext.getSystemService(AppOpsManager.class);
Dianne Hackborna06de0f2012-12-11 16:34:47 -0800653
Mike Lockwood2f82c4e2009-04-17 08:24:10 -0400654 // Battery statistics service to be notified when GPS turns on or off
Dianne Hackborn91268cf2013-06-13 19:06:50 -0700655 mBatteryStats = IBatteryStats.Stub.asInterface(ServiceManager.getService(
656 BatteryStats.SERVICE_NAME));
Mike Lockwood2f82c4e2009-04-17 08:24:10 -0400657
destradaafb23c672015-04-16 14:01:27 -0700658 // Construct internal handler
Soonil Nagarkar8df02f42020-01-08 13:23:26 -0800659 mHandler = new ProviderHandler(mLooper);
destradaafb23c672015-04-16 14:01:27 -0700660
661 // Load GPS configuration and register listeners in the background:
662 // some operations, such as opening files and registering broadcast receivers, can take a
663 // relative long time, so the ctor() is kept to create objects needed by this instance,
664 // while IO initialization and registration is delegated to our internal handler
665 // this approach is just fine because events are posted to our handler anyway
Anil Admald71cf142018-12-21 14:59:36 -0800666 mGnssConfiguration = new GnssConfiguration(mContext);
Anil Admal312fddb2019-03-25 12:15:43 -0700667 mGnssCapabilitiesProvider = new GnssCapabilitiesProvider();
WyattRileyd1309312019-02-28 12:11:45 -0800668 // Create a GPS net-initiated handler (also needed by handleInitialize)
Tsuwei Chen3324e952014-09-07 01:30:42 -0700669 mNIHandler = new GpsNetInitiatedHandler(context,
gomo48f1a642017-11-10 20:35:46 -0800670 mNetInitiatedListener,
671 mSuplEsEnabled);
WyattRileyd1309312019-02-28 12:11:45 -0800672 sendMessage(INITIALIZE_HANDLER, 0, null);
Tsuwei Chen3324e952014-09-07 01:30:42 -0700673
Anil Admal75b9fd62018-11-28 11:22:50 -0800674 mGnssStatusListenerHelper = new GnssStatusListenerHelper(mContext, mHandler) {
destradaa6568d702014-10-27 12:47:41 -0700675 @Override
676 protected boolean isAvailableInPlatform() {
destradaa13a60b02015-01-15 18:36:01 -0800677 return isSupported();
destradaa6568d702014-10-27 12:47:41 -0700678 }
679
680 @Override
681 protected boolean isGpsEnabled() {
Yu-Han Yang76f99952019-05-04 17:45:44 -0700682 return GnssLocationProvider.this.isGpsEnabled();
destradaa6568d702014-10-27 12:47:41 -0700683 }
684 };
685
Yu-Han Yang8de21502018-04-23 01:40:25 -0700686 mGnssMeasurementsProvider = new GnssMeasurementsProvider(mContext, mHandler) {
destradaa6568d702014-10-27 12:47:41 -0700687 @Override
688 protected boolean isGpsEnabled() {
Yu-Han Yang76f99952019-05-04 17:45:44 -0700689 return GnssLocationProvider.this.isGpsEnabled();
destradaa6568d702014-10-27 12:47:41 -0700690 }
691 };
692
Anil Admalefd9dc62019-03-12 17:39:20 -0700693 mGnssMeasurementCorrectionsProvider = new GnssMeasurementCorrectionsProvider(mHandler);
694
Anil Admal75b9fd62018-11-28 11:22:50 -0800695 mGnssNavigationMessageProvider = new GnssNavigationMessageProvider(mContext, mHandler) {
destradaa6568d702014-10-27 12:47:41 -0700696 @Override
destradaa6568d702014-10-27 12:47:41 -0700697 protected boolean isGpsEnabled() {
Yu-Han Yang76f99952019-05-04 17:45:44 -0700698 return GnssLocationProvider.this.isGpsEnabled();
destradaa6568d702014-10-27 12:47:41 -0700699 }
700 };
Yu-Han Yanga1862b52018-02-20 17:05:59 -0800701
Anil Admal50ba15e2018-11-01 16:42:42 -0700702 mGnssMetrics = new GnssMetrics(mBatteryStats);
Soonil Nagarkar8df02f42020-01-08 13:23:26 -0800703 mNtpTimeHelper = new NtpTimeHelper(mContext, mLooper, this);
Soonil Nagarkar35c3b912019-01-31 10:31:24 -0800704 GnssSatelliteBlacklistHelper gnssSatelliteBlacklistHelper =
705 new GnssSatelliteBlacklistHelper(mContext,
Soonil Nagarkar8df02f42020-01-08 13:23:26 -0800706 mLooper, this);
Soonil Nagarkar35c3b912019-01-31 10:31:24 -0800707 mHandler.post(gnssSatelliteBlacklistHelper::updateSatelliteBlacklist);
Yu-Han Yang3557cc72018-03-21 12:48:36 -0700708 mGnssBatchingProvider = new GnssBatchingProvider();
Yu-Han Yang6dc9f052018-12-04 17:11:24 -0800709 mGnssGeofenceProvider = new GnssGeofenceProvider();
Mike Lockwood62a8fc12010-03-22 14:23:26 -0400710
Soonil Nagarkar1575a042018-10-24 17:54:54 -0700711 mContext.registerReceiverAsUser(new BroadcastReceiver() {
712 @Override
713 public void onReceive(Context context, Intent intent) {
714 if (getSendingUserId() == UserHandle.USER_ALL) {
Soonil Nagarkar35c3b912019-01-31 10:31:24 -0800715 mShutdown = true;
716 updateEnabled();
Soonil Nagarkar1575a042018-10-24 17:54:54 -0700717 }
718 }
Soonil Nagarkar35c3b912019-01-31 10:31:24 -0800719 }, UserHandle.ALL, new IntentFilter(Intent.ACTION_SHUTDOWN), null, mHandler);
720
721 mContext.getContentResolver().registerContentObserver(
722 Settings.Secure.getUriFor(Settings.Secure.LOCATION_MODE),
723 true,
724 new ContentObserver(mHandler) {
725 @Override
726 public void onChange(boolean selfChange) {
727 updateEnabled();
728 }
729 }, UserHandle.USER_ALL);
Mike Lockwoodd03ff942010-02-09 08:46:14 -0500730
Soonil Nagarkar1575a042018-10-24 17:54:54 -0700731 setProperties(PROPERTIES);
Soonil Nagarkar980ce6a2020-01-23 18:06:31 -0800732 setAllowed(true);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800733 }
734
Yu-Han Yanga1862b52018-02-20 17:05:59 -0800735 /**
736 * Implements {@link InjectNtpTimeCallback#injectTime}
737 */
738 @Override
739 public void injectTime(long time, long timeReference, int uncertainty) {
740 native_inject_time(time, timeReference, uncertainty);
741 }
742
Anil Admal50ba15e2018-11-01 16:42:42 -0700743 /**
744 * Implements {@link GnssNetworkConnectivityHandler.GnssNetworkListener#onNetworkAvailable()}
745 */
746 private void onNetworkAvailable() {
747 mNtpTimeHelper.onNetworkAvailable();
Kevin Tang8c6ac672019-03-22 12:31:01 -0700748 if (mDownloadPsdsDataPending == STATE_PENDING_NETWORK) {
749 if (mSupportsPsds) {
Anil Admal316f9482019-02-12 18:57:18 -0800750 // Download only if supported, (prevents an unnecessary on-boot download)
Kevin Tang8c6ac672019-03-22 12:31:01 -0700751 psdsDownloadRequest();
destradaaef752b62015-04-17 13:10:47 -0700752 }
Mike Lockwood62a8fc12010-03-22 14:23:26 -0400753 }
754 }
Yu-Han Yang8de21502018-04-23 01:40:25 -0700755
Yu-Han Yang53f4d6d2019-02-13 21:47:41 -0800756 private void handleRequestLocation(boolean independentFromGnss, boolean isUserEmergency) {
Yu-Han Yange7baef32018-02-09 13:58:17 -0800757 if (isRequestLocationRateLimited()) {
758 if (DEBUG) {
759 Log.d(TAG, "RequestLocation is denied due to too frequent requests.");
760 }
761 return;
762 }
Yu-Han Yang74041ff2018-04-06 15:57:31 -0700763 ContentResolver resolver = mContext.getContentResolver();
764 long durationMillis = Settings.Global.getLong(
765 resolver,
766 Settings.Global.GNSS_HAL_LOCATION_REQUEST_DURATION_MILLIS,
767 LOCATION_UPDATE_DURATION_MILLIS);
768 if (durationMillis == 0) {
769 Log.i(TAG, "GNSS HAL location request is disabled by Settings.");
770 return;
771 }
Yu-Han Yange7baef32018-02-09 13:58:17 -0800772
773 LocationManager locationManager = (LocationManager) mContext.getSystemService(
774 Context.LOCATION_SERVICE);
Yu-Han Yang07561382018-02-21 13:08:37 -0800775 String provider;
776 LocationChangeListener locationListener;
Anil Admalb1c6c0d2019-06-20 12:00:16 -0700777 LocationRequest locationRequest = new LocationRequest()
778 .setInterval(LOCATION_UPDATE_MIN_TIME_INTERVAL_MILLIS)
779 .setFastestInterval(LOCATION_UPDATE_MIN_TIME_INTERVAL_MILLIS);
Yu-Han Yange7baef32018-02-09 13:58:17 -0800780
781 if (independentFromGnss) {
782 // For fast GNSS TTFF
Yu-Han Yang07561382018-02-21 13:08:37 -0800783 provider = LocationManager.NETWORK_PROVIDER;
784 locationListener = mNetworkLocationListener;
Anil Admalb1c6c0d2019-06-20 12:00:16 -0700785 locationRequest.setQuality(LocationRequest.POWER_LOW);
Yu-Han Yange7baef32018-02-09 13:58:17 -0800786 } else {
787 // For Device-Based Hybrid (E911)
Yu-Han Yang07561382018-02-21 13:08:37 -0800788 provider = LocationManager.FUSED_PROVIDER;
789 locationListener = mFusedLocationListener;
Anil Admalb1c6c0d2019-06-20 12:00:16 -0700790 locationRequest.setQuality(LocationRequest.ACCURACY_FINE);
791 }
792
793 locationRequest.setProvider(provider);
794
795 // Ignore location settings if in emergency mode.
796 if (isUserEmergency && mNIHandler.getInEmergency()) {
797 locationRequest.setLocationSettingsIgnored(true);
798 durationMillis *= EMERGENCY_LOCATION_UPDATE_DURATION_MULTIPLIER;
Yu-Han Yange7baef32018-02-09 13:58:17 -0800799 }
Yu-Han Yang07561382018-02-21 13:08:37 -0800800
801 Log.i(TAG,
Yu-Han Yang74041ff2018-04-06 15:57:31 -0700802 String.format(
803 "GNSS HAL Requesting location updates from %s provider for %d millis.",
804 provider, durationMillis));
Yu-Han Yang53f4d6d2019-02-13 21:47:41 -0800805
Yu-Han Yange684dda2018-05-24 10:29:39 -0700806 try {
Yu-Han Yang53f4d6d2019-02-13 21:47:41 -0800807 locationManager.requestLocationUpdates(locationRequest,
Yu-Han Yange684dda2018-05-24 10:29:39 -0700808 locationListener, mHandler.getLooper());
Soonil Nagarkar1575a042018-10-24 17:54:54 -0700809 locationListener.mNumLocationUpdateRequest++;
Yu-Han Yange684dda2018-05-24 10:29:39 -0700810 mHandler.postDelayed(() -> {
Soonil Nagarkar1575a042018-10-24 17:54:54 -0700811 if (--locationListener.mNumLocationUpdateRequest == 0) {
Yu-Han Yange684dda2018-05-24 10:29:39 -0700812 Log.i(TAG,
813 String.format("Removing location updates from %s provider.", provider));
814 locationManager.removeUpdates(locationListener);
815 }
816 }, durationMillis);
817 } catch (IllegalArgumentException e) {
818 Log.w(TAG, "Unable to request location.", e);
819 }
Yu-Han Yange7baef32018-02-09 13:58:17 -0800820 }
821
822 private void injectBestLocation(Location location) {
Anil Admalb1c6c0d2019-06-20 12:00:16 -0700823 if (DEBUG) {
824 Log.d(TAG, "injectBestLocation: " + location);
825 }
Yu-Han Yange7baef32018-02-09 13:58:17 -0800826 int gnssLocationFlags = LOCATION_HAS_LAT_LONG |
827 (location.hasAltitude() ? LOCATION_HAS_ALTITUDE : 0) |
828 (location.hasSpeed() ? LOCATION_HAS_SPEED : 0) |
829 (location.hasBearing() ? LOCATION_HAS_BEARING : 0) |
830 (location.hasAccuracy() ? LOCATION_HAS_HORIZONTAL_ACCURACY : 0) |
831 (location.hasVerticalAccuracy() ? LOCATION_HAS_VERTICAL_ACCURACY : 0) |
832 (location.hasSpeedAccuracy() ? LOCATION_HAS_SPEED_ACCURACY : 0) |
833 (location.hasBearingAccuracy() ? LOCATION_HAS_BEARING_ACCURACY : 0);
834
835 double latitudeDegrees = location.getLatitude();
836 double longitudeDegrees = location.getLongitude();
837 double altitudeMeters = location.getAltitude();
838 float speedMetersPerSec = location.getSpeed();
839 float bearingDegrees = location.getBearing();
840 float horizontalAccuracyMeters = location.getAccuracy();
841 float verticalAccuracyMeters = location.getVerticalAccuracyMeters();
842 float speedAccuracyMetersPerSecond = location.getSpeedAccuracyMetersPerSecond();
843 float bearingAccuracyDegrees = location.getBearingAccuracyDegrees();
844 long timestamp = location.getTime();
Pierre Fite-Georgelb50cdaf2019-02-25 15:42:45 -0800845
Pierre Fite-Georgel9e96c572019-02-25 16:12:53 -0800846 int elapsedRealtimeFlags = ELAPSED_REALTIME_HAS_TIMESTAMP_NS
847 | (location.hasElapsedRealtimeUncertaintyNanos()
Sasha Kuznetsov24da7f92019-11-01 12:21:50 -0700848 ? ELAPSED_REALTIME_HAS_TIME_UNCERTAINTY_NS : 0);
Pierre Fite-Georgelb50cdaf2019-02-25 15:42:45 -0800849 long elapsedRealtimeNanos = location.getElapsedRealtimeNanos();
Yu-Han Yang3cd9a862019-03-25 17:00:03 -0700850 double elapsedRealtimeUncertaintyNanos = location.getElapsedRealtimeUncertaintyNanos();
Pierre Fite-Georgelb50cdaf2019-02-25 15:42:45 -0800851
852 native_inject_best_location(
853 gnssLocationFlags, latitudeDegrees, longitudeDegrees,
854 altitudeMeters, speedMetersPerSec, bearingDegrees,
855 horizontalAccuracyMeters, verticalAccuracyMeters,
856 speedAccuracyMetersPerSecond, bearingAccuracyDegrees, timestamp,
Pierre Fite-Georgel9e96c572019-02-25 16:12:53 -0800857 elapsedRealtimeFlags, elapsedRealtimeNanos, elapsedRealtimeUncertaintyNanos);
Yu-Han Yange7baef32018-02-09 13:58:17 -0800858 }
859
Yu-Han Yange7baef32018-02-09 13:58:17 -0800860 /** Returns true if the location request is too frequent. */
861 private boolean isRequestLocationRateLimited() {
Anil Admal316f9482019-02-12 18:57:18 -0800862 // TODO: implement exponential backoff.
Yu-Han Yange7baef32018-02-09 13:58:17 -0800863 return false;
864 }
865
Kevin Tang8c6ac672019-03-22 12:31:01 -0700866 private void handleDownloadPsdsData() {
867 if (!mSupportsPsds) {
868 // native code reports psds not supported, don't try
869 Log.d(TAG, "handleDownloadPsdsData() called when PSDS not supported");
Wyatt Riley0d6e54e22016-10-05 12:03:03 -0700870 return;
871 }
Kevin Tang8c6ac672019-03-22 12:31:01 -0700872 if (mDownloadPsdsDataPending == STATE_DOWNLOADING) {
Kevin Tang40e1baf2012-01-10 14:32:44 -0800873 // already downloading data
Mike Lockwood62a8fc12010-03-22 14:23:26 -0400874 return;
875 }
Anil Admal50ba15e2018-11-01 16:42:42 -0700876 if (!mNetworkConnectivityHandler.isDataNetworkConnected()) {
Kevin Tang40e1baf2012-01-10 14:32:44 -0800877 // try again when network is up
Kevin Tang8c6ac672019-03-22 12:31:01 -0700878 mDownloadPsdsDataPending = STATE_PENDING_NETWORK;
Kevin Tang40e1baf2012-01-10 14:32:44 -0800879 return;
Mike Lockwood62a8fc12010-03-22 14:23:26 -0400880 }
Kevin Tang8c6ac672019-03-22 12:31:01 -0700881 mDownloadPsdsDataPending = STATE_DOWNLOADING;
Kevin Tang40e1baf2012-01-10 14:32:44 -0800882
Yu-Han Yang76f99952019-05-04 17:45:44 -0700883 synchronized (mLock) {
884 // hold wake lock while task runs
885 mDownloadPsdsWakeLock.acquire(DOWNLOAD_PSDS_DATA_TIMEOUT_MS);
886 }
Kevin Tang8c6ac672019-03-22 12:31:01 -0700887 Log.i(TAG, "WakeLock acquired by handleDownloadPsdsData()");
Soonil Nagarkar1575a042018-10-24 17:54:54 -0700888 AsyncTask.THREAD_POOL_EXECUTOR.execute(() -> {
Kevin Tang8c6ac672019-03-22 12:31:01 -0700889 GpsPsdsDownloader psdsDownloader = new GpsPsdsDownloader(
Anil Admald71cf142018-12-21 14:59:36 -0800890 mGnssConfiguration.getProperties());
Kevin Tang8c6ac672019-03-22 12:31:01 -0700891 byte[] data = psdsDownloader.downloadPsdsData();
Soonil Nagarkar1575a042018-10-24 17:54:54 -0700892 if (data != null) {
Kevin Tang8c6ac672019-03-22 12:31:01 -0700893 if (DEBUG) Log.d(TAG, "calling native_inject_psds_data");
894 native_inject_psds_data(data, data.length);
895 mPsdsBackOff.reset();
Soonil Nagarkar1575a042018-10-24 17:54:54 -0700896 }
Kevin Tang40e1baf2012-01-10 14:32:44 -0800897
Kevin Tang8c6ac672019-03-22 12:31:01 -0700898 sendMessage(DOWNLOAD_PSDS_DATA_FINISHED, 0, null);
Kevin Tang40e1baf2012-01-10 14:32:44 -0800899
Soonil Nagarkar1575a042018-10-24 17:54:54 -0700900 if (data == null) {
901 // try again later
902 // since this is delayed and not urgent we do not hold a wake lock here
Kevin Tang8c6ac672019-03-22 12:31:01 -0700903 mHandler.sendEmptyMessageDelayed(DOWNLOAD_PSDS_DATA,
904 mPsdsBackOff.nextBackoffMillis());
Soonil Nagarkar1575a042018-10-24 17:54:54 -0700905 }
Kevin Tang40e1baf2012-01-10 14:32:44 -0800906
Soonil Nagarkar1575a042018-10-24 17:54:54 -0700907 // Release wake lock held by task, synchronize on mLock in case multiple
908 // download tasks overrun.
909 synchronized (mLock) {
Kevin Tang8c6ac672019-03-22 12:31:01 -0700910 if (mDownloadPsdsWakeLock.isHeld()) {
Soonil Nagarkar1575a042018-10-24 17:54:54 -0700911 // This wakelock may have time-out, if a timeout was specified.
912 // Catch (and ignore) any timeout exceptions.
Yu-Han Yang499a6ba2019-11-14 14:19:13 -0800913 mDownloadPsdsWakeLock.release();
914 if (DEBUG) Log.d(TAG, "WakeLock released by handleDownloadPsdsData()");
Soonil Nagarkar1575a042018-10-24 17:54:54 -0700915 } else {
916 Log.e(TAG, "WakeLock expired before release in "
Kevin Tang8c6ac672019-03-22 12:31:01 -0700917 + "handleDownloadPsdsData()");
Wei Wangc5706f62017-04-18 11:26:26 -0700918 }
Jeff Brown028872f2012-08-25 13:07:01 -0700919 }
Kevin Tang40e1baf2012-01-10 14:32:44 -0800920 });
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800921 }
922
Anil Admal2ac70462019-06-28 19:17:41 -0700923 private void injectLocation(Location location) {
Mike Lockwoodd26ce0d2009-06-11 12:25:46 -0400924 if (location.hasAccuracy()) {
Anil Admalb1c6c0d2019-06-20 12:00:16 -0700925 if (DEBUG) {
926 Log.d(TAG, "injectLocation: " + location);
927 }
Mike Lockwoodd26ce0d2009-06-11 12:25:46 -0400928 native_inject_location(location.getLatitude(), location.getLongitude(),
929 location.getAccuracy());
930 }
Mike Lockwoodfd6e5f02009-05-21 11:28:20 -0400931 }
932
Anil Admald71cf142018-12-21 14:59:36 -0800933 private void setSuplHostPort() {
934 mSuplServerHost = mGnssConfiguration.getSuplHost();
935 mSuplServerPort = mGnssConfiguration.getSuplPort(TCP_MIN_PORT);
Tsuwei Chen678c13c2014-09-22 17:48:41 -0700936 if (mSuplServerHost != null
937 && mSuplServerPort > TCP_MIN_PORT
938 && mSuplServerPort <= TCP_MAX_PORT) {
Anil Admalc70344b2018-11-16 14:22:38 -0800939 native_set_agps_server(GnssNetworkConnectivityHandler.AGPS_TYPE_SUPL,
940 mSuplServerHost, mSuplServerPort);
Tsuwei Chen678c13c2014-09-22 17:48:41 -0700941 }
Tsuwei Chen52617bb2014-08-25 11:49:11 -0700942 }
943
Tsuwei Chen462bcd82014-09-17 12:28:49 -0700944 /**
945 * Checks what SUPL mode to use, according to the AGPS mode as well as the
946 * allowed mode from properties.
947 *
Tsuwei Chen462bcd82014-09-17 12:28:49 -0700948 * @param agpsEnabled whether AGPS is enabled by settings value
Tsuwei Chen462bcd82014-09-17 12:28:49 -0700949 * @return SUPL mode (MSA vs MSB vs STANDALONE)
950 */
Yu-Han Yang6a5f0b72019-01-24 18:34:28 -0800951 private int getSuplMode(boolean agpsEnabled) {
Tsuwei Chen462bcd82014-09-17 12:28:49 -0700952 if (agpsEnabled) {
Anil Admald71cf142018-12-21 14:59:36 -0800953 int suplMode = mGnssConfiguration.getSuplMode(0);
954 if (suplMode == 0) {
955 return GPS_POSITION_MODE_STANDALONE;
Tsuwei Chen462bcd82014-09-17 12:28:49 -0700956 }
Anil Admald71cf142018-12-21 14:59:36 -0800957
destradaabfb3bdb2015-04-29 14:42:35 -0700958 // MS-Based is the preferred mode for Assisted-GPS position computation, so we favor
959 // such mode when it is available
960 if (hasCapability(GPS_CAPABILITY_MSB) && (suplMode & AGPS_SUPL_MODE_MSB) != 0) {
961 return GPS_POSITION_MODE_MS_BASED;
962 }
Tsuwei Chen462bcd82014-09-17 12:28:49 -0700963 }
964 return GPS_POSITION_MODE_STANDALONE;
965 }
966
Yu-Han Yang76f99952019-05-04 17:45:44 -0700967 private void setGpsEnabled(boolean enabled) {
968 synchronized (mLock) {
969 mGpsEnabled = enabled;
970 }
971 }
972
973 private void handleEnable() {
974 if (DEBUG) Log.d(TAG, "handleEnable");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800975
Soonil Nagarkar35c3b912019-01-31 10:31:24 -0800976 boolean inited = native_init();
Nick Pelly6fa9ad42012-07-16 12:18:23 -0700977
Soonil Nagarkar35c3b912019-01-31 10:31:24 -0800978 if (inited) {
Yu-Han Yang76f99952019-05-04 17:45:44 -0700979 setGpsEnabled(true);
Kevin Tang8c6ac672019-03-22 12:31:01 -0700980 mSupportsPsds = native_supports_psds();
Tsuwei Chen678c13c2014-09-22 17:48:41 -0700981
982 // TODO: remove the following native calls if we can make sure they are redundant.
Mike Lockwood734d6032009-07-28 18:30:25 -0700983 if (mSuplServerHost != null) {
Anil Admalc70344b2018-11-16 14:22:38 -0800984 native_set_agps_server(GnssNetworkConnectivityHandler.AGPS_TYPE_SUPL,
985 mSuplServerHost, mSuplServerPort);
Mike Lockwood734d6032009-07-28 18:30:25 -0700986 }
987 if (mC2KServerHost != null) {
Anil Admalc70344b2018-11-16 14:22:38 -0800988 native_set_agps_server(GnssNetworkConnectivityHandler.AGPS_TYPE_C2K,
989 mC2KServerHost, mC2KServerPort);
Mike Lockwood734d6032009-07-28 18:30:25 -0700990 }
destradaa13a60b02015-01-15 18:36:01 -0800991
Lifu Tang818aa2c2016-02-01 01:52:00 -0800992 mGnssMeasurementsProvider.onGpsEnabledChanged();
993 mGnssNavigationMessageProvider.onGpsEnabledChanged();
Yu-Han Yang3557cc72018-03-21 12:48:36 -0700994 mGnssBatchingProvider.enable();
Anil Admal138cdc32019-04-16 10:07:43 -0700995 if (mGnssVisibilityControl != null) {
Anil Admal8b83dc12019-06-12 13:55:42 -0700996 mGnssVisibilityControl.onGpsEnabledChanged(/* isEnabled= */ true);
Anil Admal138cdc32019-04-16 10:07:43 -0700997 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800998 } else {
Yu-Han Yang76f99952019-05-04 17:45:44 -0700999 setGpsEnabled(false);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001000 Log.w(TAG, "Failed to enable location provider");
1001 }
1002 }
1003
Yu-Han Yang76f99952019-05-04 17:45:44 -07001004 private void handleDisable() {
1005 if (DEBUG) Log.d(TAG, "handleDisable");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001006
Yu-Han Yang76f99952019-05-04 17:45:44 -07001007 setGpsEnabled(false);
David Christie3bc26142013-12-19 14:53:44 -08001008 updateClientUids(new WorkSource());
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001009 stopNavigating();
Nick Pelly6fa9ad42012-07-16 12:18:23 -07001010 mAlarmManager.cancel(mWakeupIntent);
1011 mAlarmManager.cancel(mTimeoutIntent);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001012
Anil Admal138cdc32019-04-16 10:07:43 -07001013 if (mGnssVisibilityControl != null) {
Yu-Han Yang76f99952019-05-04 17:45:44 -07001014 mGnssVisibilityControl.onGpsEnabledChanged(/* isEnabled= */ false);
Anil Admal138cdc32019-04-16 10:07:43 -07001015 }
Yu-Han Yang3557cc72018-03-21 12:48:36 -07001016 mGnssBatchingProvider.disable();
Mike Lockwoodcf1d8cb2010-01-20 10:14:54 -05001017 // do this before releasing wakelock
1018 native_cleanup();
destradaa13a60b02015-01-15 18:36:01 -08001019
Lifu Tang818aa2c2016-02-01 01:52:00 -08001020 mGnssMeasurementsProvider.onGpsEnabledChanged();
1021 mGnssNavigationMessageProvider.onGpsEnabledChanged();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001022 }
1023
Soonil Nagarkar35c3b912019-01-31 10:31:24 -08001024 private void updateEnabled() {
Tyler Trephan037ef9d2019-05-17 13:41:18 -07001025 // Generally follow location setting for current user
1026 boolean enabled = mContext.getSystemService(LocationManager.class)
1027 .isLocationEnabledForUser(UserHandle.CURRENT);
WyattRileyb2446072019-03-01 07:41:49 -08001028
Yu-Han Yang76f99952019-05-04 17:45:44 -07001029 // ... but disable if PowerManager overrides
1030 enabled &= !mDisableGpsForPowerManager;
WyattRileyb2446072019-03-01 07:41:49 -08001031
Yu-Han Yang76f99952019-05-04 17:45:44 -07001032 // .. but enable anyway, if there's an active settings-ignored request (e.g. ELS)
1033 enabled |= (mProviderRequest != null && mProviderRequest.reportLocation
Sasha Kuznetsov24da7f92019-11-01 12:21:50 -07001034 && mProviderRequest.locationSettingsIgnored);
WyattRileyb2446072019-03-01 07:41:49 -08001035
Yu-Han Yang76f99952019-05-04 17:45:44 -07001036 // ... and, finally, disable anyway, if device is being shut down
1037 enabled &= !mShutdown;
WyattRileyb2446072019-03-01 07:41:49 -08001038
Yu-Han Yang76f99952019-05-04 17:45:44 -07001039 if (enabled == isGpsEnabled()) {
1040 return;
1041 }
Soonil Nagarkar35c3b912019-01-31 10:31:24 -08001042
Yu-Han Yang76f99952019-05-04 17:45:44 -07001043 if (enabled) {
1044 handleEnable();
1045 } else {
1046 handleDisable();
Soonil Nagarkar35c3b912019-01-31 10:31:24 -08001047 }
1048 }
1049
Yu-Han Yang76f99952019-05-04 17:45:44 -07001050 private boolean isGpsEnabled() {
Nick Pelly6fa9ad42012-07-16 12:18:23 -07001051 synchronized (mLock) {
Yu-Han Yang76f99952019-05-04 17:45:44 -07001052 return mGpsEnabled;
Nick Pelly6fa9ad42012-07-16 12:18:23 -07001053 }
Mike Lockwoodd03ff942010-02-09 08:46:14 -05001054 }
1055
Nick Pelly6fa9ad42012-07-16 12:18:23 -07001056 @Override
Soonil Nagarkar8df02f42020-01-08 13:23:26 -08001057 public void onSetRequest(ProviderRequest request) {
1058 sendMessage(SET_REQUEST, 0, new GpsRequest(request, request.workSource));
Mike Lockwood62a8fc12010-03-22 14:23:26 -04001059 }
1060
Nick Pelly6fa9ad42012-07-16 12:18:23 -07001061 private void handleSetRequest(ProviderRequest request, WorkSource source) {
David Christied4edf4c2014-08-12 15:22:27 -07001062 mProviderRequest = request;
1063 mWorkSource = source;
Soonil Nagarkar35c3b912019-01-31 10:31:24 -08001064 updateEnabled();
David Christied4edf4c2014-08-12 15:22:27 -07001065 updateRequirements();
1066 }
1067
1068 // Called when the requirements for GPS may have changed
1069 private void updateRequirements() {
1070 if (mProviderRequest == null || mWorkSource == null) {
1071 return;
1072 }
1073
David Christied4edf4c2014-08-12 15:22:27 -07001074 if (DEBUG) Log.d(TAG, "setRequest " + mProviderRequest);
Yu-Han Yang76f99952019-05-04 17:45:44 -07001075 if (mProviderRequest.reportLocation && isGpsEnabled()) {
Nick Pelly6fa9ad42012-07-16 12:18:23 -07001076 // update client uids
David Christied4edf4c2014-08-12 15:22:27 -07001077 updateClientUids(mWorkSource);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001078
David Christied4edf4c2014-08-12 15:22:27 -07001079 mFixInterval = (int) mProviderRequest.interval;
Soonil Nagarkar1575a042018-10-24 17:54:54 -07001080 mLowPowerMode = mProviderRequest.lowPowerMode;
Nick Pelly6fa9ad42012-07-16 12:18:23 -07001081 // check for overflow
David Christied4edf4c2014-08-12 15:22:27 -07001082 if (mFixInterval != mProviderRequest.interval) {
1083 Log.w(TAG, "interval overflow: " + mProviderRequest.interval);
Nick Pelly6fa9ad42012-07-16 12:18:23 -07001084 mFixInterval = Integer.MAX_VALUE;
1085 }
Mike Lockwood03ca2162010-04-01 08:10:09 -07001086
Nick Pelly6fa9ad42012-07-16 12:18:23 -07001087 // apply request to GPS engine
Mike Lockwood04598b62010-04-14 17:17:24 -04001088 if (mStarted && hasCapability(GPS_CAPABILITY_SCHEDULING)) {
gomo48f1a642017-11-10 20:35:46 -08001089 // change period and/or lowPowerMode
Yu-Han Yangc8b9ff72018-04-17 00:47:24 -07001090 if (!setPositionMode(mPositionMode, GPS_POSITION_RECURRENCE_PERIODIC,
gomo48f1a642017-11-10 20:35:46 -08001091 mFixInterval, 0, 0, mLowPowerMode)) {
1092 Log.e(TAG, "set_position_mode failed in updateRequirements");
Mike Lockwood04598b62010-04-14 17:17:24 -04001093 }
Nick Pelly6fa9ad42012-07-16 12:18:23 -07001094 } else if (!mStarted) {
1095 // start GPS
Yu-Han Yang6a5f0b72019-01-24 18:34:28 -08001096 startNavigating();
gomo300b2402017-12-13 19:04:12 -08001097 } else {
1098 // GNSS Engine is already ON, but no GPS_CAPABILITY_SCHEDULING
1099 mAlarmManager.cancel(mTimeoutIntent);
1100 if (mFixInterval >= NO_FIX_TIMEOUT) {
1101 // set timer to give up if we do not receive a fix within NO_FIX_TIMEOUT
1102 // and our fix interval is not short
1103 mAlarmManager.set(AlarmManager.ELAPSED_REALTIME_WAKEUP,
Soonil Nagarkar1575a042018-10-24 17:54:54 -07001104 SystemClock.elapsedRealtime() + NO_FIX_TIMEOUT, mTimeoutIntent);
1105 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001106 }
Nick Pelly6fa9ad42012-07-16 12:18:23 -07001107 } else {
Dianne Hackborn002a54e2013-01-10 17:34:55 -08001108 updateClientUids(new WorkSource());
Nick Pelly6fa9ad42012-07-16 12:18:23 -07001109
1110 stopNavigating();
1111 mAlarmManager.cancel(mWakeupIntent);
1112 mAlarmManager.cancel(mTimeoutIntent);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001113 }
1114 }
1115
Yu-Han Yangc8b9ff72018-04-17 00:47:24 -07001116 private boolean setPositionMode(int mode, int recurrence, int minInterval,
1117 int preferredAccuracy, int preferredTime, boolean lowPowerMode) {
1118 GnssPositionMode positionMode = new GnssPositionMode(mode, recurrence, minInterval,
1119 preferredAccuracy, preferredTime, lowPowerMode);
1120 if (mLastPositionMode != null && mLastPositionMode.equals(positionMode)) {
1121 return true;
1122 }
1123
1124 boolean result = native_set_position_mode(mode, recurrence, minInterval,
1125 preferredAccuracy, preferredTime, lowPowerMode);
1126 if (result) {
1127 mLastPositionMode = positionMode;
1128 } else {
1129 mLastPositionMode = null;
1130 }
1131 return result;
1132 }
1133
Dianne Hackborn002a54e2013-01-10 17:34:55 -08001134 private void updateClientUids(WorkSource source) {
Narayan Kamath32684dd2018-01-08 17:32:51 +00001135 if (source.equals(mClientSource)) {
Victoria Leaseea78b852013-01-15 10:39:28 -08001136 return;
1137 }
Dianne Hackborn002a54e2013-01-10 17:34:55 -08001138
Narayan Kamath32684dd2018-01-08 17:32:51 +00001139 // (1) Inform BatteryStats that the list of IDs we're tracking changed.
1140 try {
1141 mBatteryStats.noteGpsChanged(mClientSource, source);
1142 } catch (RemoteException e) {
1143 Log.w(TAG, "RemoteException", e);
Nick Pelly6fa9ad42012-07-16 12:18:23 -07001144 }
1145
Narayan Kamath32684dd2018-01-08 17:32:51 +00001146 // (2) Inform AppOps service about the list of changes to UIDs.
1147
1148 List<WorkChain>[] diffs = WorkSource.diffChains(mClientSource, source);
1149 if (diffs != null) {
1150 List<WorkChain> newChains = diffs[0];
1151 List<WorkChain> goneChains = diffs[1];
1152
1153 if (newChains != null) {
Soonil Nagarkar1575a042018-10-24 17:54:54 -07001154 for (WorkChain newChain : newChains) {
Svet Ganovf7b47252018-02-26 11:11:27 -08001155 mAppOps.startOpNoThrow(AppOpsManager.OP_GPS, newChain.getAttributionUid(),
1156 newChain.getAttributionTag());
Narayan Kamath32684dd2018-01-08 17:32:51 +00001157 }
1158 }
1159
1160 if (goneChains != null) {
Soonil Nagarkar1575a042018-10-24 17:54:54 -07001161 for (WorkChain goneChain : goneChains) {
Svet Ganovf7b47252018-02-26 11:11:27 -08001162 mAppOps.finishOp(AppOpsManager.OP_GPS, goneChain.getAttributionUid(),
1163 goneChain.getAttributionTag());
Narayan Kamath32684dd2018-01-08 17:32:51 +00001164 }
1165 }
1166
1167 mClientSource.transferWorkChains(source);
1168 }
1169
1170 // Update the flat UIDs and names list and inform app-ops of all changes.
1171 WorkSource[] changes = mClientSource.setReturningDiffs(source);
1172 if (changes != null) {
1173 WorkSource newWork = changes[0];
1174 WorkSource goneWork = changes[1];
1175
1176 // Update sources that were not previously tracked.
1177 if (newWork != null) {
1178 for (int i = 0; i < newWork.size(); i++) {
Svet Ganovf7b47252018-02-26 11:11:27 -08001179 mAppOps.startOpNoThrow(AppOpsManager.OP_GPS,
Suprabh Shuklaf7cffa72019-11-08 17:03:03 -08001180 newWork.getUid(i), newWork.getPackageName(i));
Narayan Kamath32684dd2018-01-08 17:32:51 +00001181 }
1182 }
1183
1184 // Update sources that are no longer tracked.
1185 if (goneWork != null) {
1186 for (int i = 0; i < goneWork.size(); i++) {
Suprabh Shuklaf7cffa72019-11-08 17:03:03 -08001187 mAppOps.finishOp(AppOpsManager.OP_GPS, goneWork.getUid(i),
1188 goneWork.getPackageName(i));
Dianne Hackborn2e418422009-06-22 20:00:17 -07001189 }
Mike Lockwood2f82c4e2009-04-17 08:24:10 -04001190 }
1191 }
1192 }
1193
Nick Pelly6fa9ad42012-07-16 12:18:23 -07001194 @Override
Soonil Nagarkar8df02f42020-01-08 13:23:26 -08001195 public void onExtraCommand(int uid, int pid, String command, Bundle extras) {
Nick Pelly6fa9ad42012-07-16 12:18:23 -07001196
Mike Lockwood63aa5a62010-04-14 19:21:31 -04001197 long identity = Binder.clearCallingIdentity();
Peter Visontayb25db362017-11-01 18:18:12 +00001198 try {
Peter Visontayb25db362017-11-01 18:18:12 +00001199 if ("delete_aiding_data".equals(command)) {
Soonil Nagarkar1575a042018-10-24 17:54:54 -07001200 deleteAidingData(extras);
Peter Visontayb25db362017-11-01 18:18:12 +00001201 } else if ("force_time_injection".equals(command)) {
1202 requestUtcTime();
Kevin Tang8c6ac672019-03-22 12:31:01 -07001203 } else if ("force_psds_injection".equals(command)) {
1204 if (mSupportsPsds) {
1205 psdsDownloadRequest();
Peter Visontayb25db362017-11-01 18:18:12 +00001206 }
1207 } else {
1208 Log.w(TAG, "sendExtraCommand: unknown command " + command);
Mike Lockwood93bc44d2009-05-20 16:58:22 -04001209 }
Peter Visontayb25db362017-11-01 18:18:12 +00001210 } finally {
1211 Binder.restoreCallingIdentity(identity);
Mike Lockwood93bc44d2009-05-20 16:58:22 -04001212 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001213 }
1214
Soonil Nagarkar1575a042018-10-24 17:54:54 -07001215 private void deleteAidingData(Bundle extras) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001216 int flags;
1217
1218 if (extras == null) {
1219 flags = GPS_DELETE_ALL;
1220 } else {
1221 flags = 0;
1222 if (extras.getBoolean("ephemeris")) flags |= GPS_DELETE_EPHEMERIS;
1223 if (extras.getBoolean("almanac")) flags |= GPS_DELETE_ALMANAC;
1224 if (extras.getBoolean("position")) flags |= GPS_DELETE_POSITION;
1225 if (extras.getBoolean("time")) flags |= GPS_DELETE_TIME;
1226 if (extras.getBoolean("iono")) flags |= GPS_DELETE_IONO;
1227 if (extras.getBoolean("utc")) flags |= GPS_DELETE_UTC;
1228 if (extras.getBoolean("health")) flags |= GPS_DELETE_HEALTH;
1229 if (extras.getBoolean("svdir")) flags |= GPS_DELETE_SVDIR;
1230 if (extras.getBoolean("svsteer")) flags |= GPS_DELETE_SVSTEER;
1231 if (extras.getBoolean("sadata")) flags |= GPS_DELETE_SADATA;
1232 if (extras.getBoolean("rti")) flags |= GPS_DELETE_RTI;
1233 if (extras.getBoolean("celldb-info")) flags |= GPS_DELETE_CELLDB_INFO;
1234 if (extras.getBoolean("all")) flags |= GPS_DELETE_ALL;
1235 }
1236
1237 if (flags != 0) {
1238 native_delete_aiding_data(flags);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001239 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001240 }
1241
Yu-Han Yang6a5f0b72019-01-24 18:34:28 -08001242 private void startNavigating() {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001243 if (!mStarted) {
Yu-Han Yang6a5f0b72019-01-24 18:34:28 -08001244 if (DEBUG) Log.d(TAG, "startNavigating");
Nick Pelly6fa9ad42012-07-16 12:18:23 -07001245 mTimeToFirstFix = 0;
1246 mLastFixTime = 0;
WyattRileyba6072f2019-04-18 07:37:52 -07001247 setStarted(true);
Mike Lockwood03ca2162010-04-01 08:10:09 -07001248 mPositionMode = GPS_POSITION_MODE_STANDALONE;
Wyatt Riley5d5bac82016-11-01 07:05:16 -07001249 // Notify about suppressed output, if speed limit was previously exceeded.
1250 // Elsewhere, we check again with every speed output reported.
1251 if (mItarSpeedLimitExceeded) {
1252 Log.i(TAG, "startNavigating with ITAR limit in place. Output limited " +
1253 "until slow enough speed reported.");
1254 }
Mike Lockwood03ca2162010-04-01 08:10:09 -07001255
Tsuwei Chen462bcd82014-09-17 12:28:49 -07001256 boolean agpsEnabled =
1257 (Settings.Global.getInt(mContext.getContentResolver(),
gomo48f1a642017-11-10 20:35:46 -08001258 Settings.Global.ASSISTED_GPS_ENABLED, 1) != 0);
Yu-Han Yang6a5f0b72019-01-24 18:34:28 -08001259 mPositionMode = getSuplMode(agpsEnabled);
Mike Lockwoodbcab8df2009-06-25 16:39:09 -04001260
Stan Chesnutt1d72d8c2013-04-15 19:18:02 -07001261 if (DEBUG) {
1262 String mode;
1263
gomo48f1a642017-11-10 20:35:46 -08001264 switch (mPositionMode) {
Stan Chesnutt1d72d8c2013-04-15 19:18:02 -07001265 case GPS_POSITION_MODE_STANDALONE:
1266 mode = "standalone";
1267 break;
1268 case GPS_POSITION_MODE_MS_ASSISTED:
1269 mode = "MS_ASSISTED";
1270 break;
1271 case GPS_POSITION_MODE_MS_BASED:
1272 mode = "MS_BASED";
1273 break;
1274 default:
1275 mode = "unknown";
1276 break;
1277 }
1278 Log.d(TAG, "setting position_mode to " + mode);
1279 }
1280
Mike Lockwood04598b62010-04-14 17:17:24 -04001281 int interval = (hasCapability(GPS_CAPABILITY_SCHEDULING) ? mFixInterval : 1000);
Soonil Nagarkar1575a042018-10-24 17:54:54 -07001282 mLowPowerMode = mProviderRequest.lowPowerMode;
Yu-Han Yangc8b9ff72018-04-17 00:47:24 -07001283 if (!setPositionMode(mPositionMode, GPS_POSITION_RECURRENCE_PERIODIC,
gomo48f1a642017-11-10 20:35:46 -08001284 interval, 0, 0, mLowPowerMode)) {
WyattRileyba6072f2019-04-18 07:37:52 -07001285 setStarted(false);
Mike Lockwood04598b62010-04-14 17:17:24 -04001286 Log.e(TAG, "set_position_mode failed in startNavigating()");
1287 return;
1288 }
1289 if (!native_start()) {
WyattRileyba6072f2019-04-18 07:37:52 -07001290 setStarted(false);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001291 Log.e(TAG, "native_start failed in startNavigating()");
Mike Lockwood0632ca72009-05-14 15:51:03 -04001292 return;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001293 }
1294
1295 // reset SV count to zero
Wyatt Rileyc7067412018-02-07 15:50:35 -08001296 mLocationExtras.reset();
Yipeng Cao282b5942017-05-17 20:31:39 -07001297 mFixRequestTime = SystemClock.elapsedRealtime();
Mike Lockwood04598b62010-04-14 17:17:24 -04001298 if (!hasCapability(GPS_CAPABILITY_SCHEDULING)) {
1299 // set timer to give up if we do not receive a fix within NO_FIX_TIMEOUT
1300 // and our fix interval is not short
1301 if (mFixInterval >= NO_FIX_TIMEOUT) {
1302 mAlarmManager.set(AlarmManager.ELAPSED_REALTIME_WAKEUP,
1303 SystemClock.elapsedRealtime() + NO_FIX_TIMEOUT, mTimeoutIntent);
1304 }
Mike Lockwood0632ca72009-05-14 15:51:03 -04001305 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001306 }
1307 }
1308
Mike Lockwood62a8fc12010-03-22 14:23:26 -04001309 private void stopNavigating() {
Mike Lockwood29c84342009-05-06 14:01:15 -04001310 if (DEBUG) Log.d(TAG, "stopNavigating");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001311 if (mStarted) {
WyattRileyba6072f2019-04-18 07:37:52 -07001312 setStarted(false);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001313 native_stop();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001314 mLastFixTime = 0;
Yu-Han Yanga50cd602018-08-28 12:33:24 -07001315 // native_stop() may reset the position mode in hardware.
1316 mLastPositionMode = null;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001317
1318 // reset SV count to zero
Wyatt Rileyc7067412018-02-07 15:50:35 -08001319 mLocationExtras.reset();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001320 }
1321 }
1322
WyattRileyba6072f2019-04-18 07:37:52 -07001323 private void setStarted(boolean started) {
1324 if (mStarted != started) {
1325 mStarted = started;
1326 mStartedChangedElapsedRealtime = SystemClock.elapsedRealtime();
1327 }
1328 }
1329
Mike Lockwood0632ca72009-05-14 15:51:03 -04001330 private void hibernate() {
1331 // stop GPS until our next fix interval arrives
1332 stopNavigating();
Mike Lockwood0632ca72009-05-14 15:51:03 -04001333 mAlarmManager.cancel(mTimeoutIntent);
1334 mAlarmManager.cancel(mWakeupIntent);
1335 long now = SystemClock.elapsedRealtime();
Nick Pelly6fa9ad42012-07-16 12:18:23 -07001336 mAlarmManager.set(AlarmManager.ELAPSED_REALTIME_WAKEUP, now + mFixInterval, mWakeupIntent);
Mike Lockwood04598b62010-04-14 17:17:24 -04001337 }
1338
1339 private boolean hasCapability(int capability) {
Anil Admal312fddb2019-03-25 12:15:43 -07001340 return (mTopHalCapabilities & capability) != 0;
Mike Lockwood0632ca72009-05-14 15:51:03 -04001341 }
1342
Soonil Nagarkar1575a042018-10-24 17:54:54 -07001343 @NativeEntryPoint
Wyatt Riley5d229832017-02-10 17:06:00 -08001344 private void reportLocation(boolean hasLatLong, Location location) {
Wyatt Riley26465d22018-02-12 13:44:24 -08001345 sendMessage(REPORT_LOCATION, hasLatLong ? 1 : 0, location);
1346 }
1347
1348 private void handleReportLocation(boolean hasLatLong, Location location) {
Wyatt Riley5d229832017-02-10 17:06:00 -08001349 if (location.hasSpeed()) {
1350 mItarSpeedLimitExceeded = location.getSpeed() > ITAR_SPEED_LIMIT_METERS_PER_SECOND;
Wyatt Riley5d5bac82016-11-01 07:05:16 -07001351 }
1352
1353 if (mItarSpeedLimitExceeded) {
1354 Log.i(TAG, "Hal reported a speed in excess of ITAR limit." +
1355 " GPS/GNSS Navigation output blocked.");
Siddharth Ray53ddc802018-03-16 12:01:52 -07001356 if (mStarted) {
1357 mGnssMetrics.logReceivedLocationStatus(false);
1358 }
Wyatt Riley5d5bac82016-11-01 07:05:16 -07001359 return; // No output of location allowed
1360 }
1361
Wyatt Riley5d229832017-02-10 17:06:00 -08001362 if (VERBOSE) Log.v(TAG, "reportLocation " + location.toString());
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001363
Wyatt Riley26465d22018-02-12 13:44:24 -08001364 location.setExtras(mLocationExtras.getBundle());
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001365
Soonil Nagarkar1575a042018-10-24 17:54:54 -07001366 reportLocation(location);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001367
Siddharth Ray53ddc802018-03-16 12:01:52 -07001368 if (mStarted) {
1369 mGnssMetrics.logReceivedLocationStatus(hasLatLong);
1370 if (hasLatLong) {
1371 if (location.hasAccuracy()) {
1372 mGnssMetrics.logPositionAccuracyMeters(location.getAccuracy());
1373 }
1374 if (mTimeToFirstFix > 0) {
1375 int timeBetweenFixes = (int) (SystemClock.elapsedRealtime() - mLastFixTime);
1376 mGnssMetrics.logMissedReports(mFixInterval, timeBetweenFixes);
1377 }
Siddharth Raybb608c82017-03-16 11:33:34 -07001378 }
WyattRileyba6072f2019-04-18 07:37:52 -07001379 } else {
1380 // Warn or error about long delayed GNSS engine shutdown as this generally wastes
1381 // power and sends location when not expected.
1382 long locationAfterStartedFalseMillis =
1383 SystemClock.elapsedRealtime() - mStartedChangedElapsedRealtime;
1384 if (locationAfterStartedFalseMillis > LOCATION_OFF_DELAY_THRESHOLD_WARN_MILLIS) {
1385 String logMessage = "Unexpected GNSS Location report "
1386 + TimeUtils.formatDuration(locationAfterStartedFalseMillis)
1387 + " after location turned off";
1388 if (locationAfterStartedFalseMillis > LOCATION_OFF_DELAY_THRESHOLD_ERROR_MILLIS) {
1389 Log.e(TAG, logMessage);
1390 } else {
1391 Log.w(TAG, logMessage);
1392 }
1393 }
Siddharth Raybb608c82017-03-16 11:33:34 -07001394 }
1395
Yipeng Cao282b5942017-05-17 20:31:39 -07001396 mLastFixTime = SystemClock.elapsedRealtime();
Hakan Gustavssonfa94ff02010-02-23 09:12:38 +01001397 // report time to first fix
Wyatt Riley5d229832017-02-10 17:06:00 -08001398 if (mTimeToFirstFix == 0 && hasLatLong) {
gomo48f1a642017-11-10 20:35:46 -08001399 mTimeToFirstFix = (int) (mLastFixTime - mFixRequestTime);
Nick Pelly6fa9ad42012-07-16 12:18:23 -07001400 if (DEBUG) Log.d(TAG, "TTFF: " + mTimeToFirstFix);
Siddharth Ray53ddc802018-03-16 12:01:52 -07001401 if (mStarted) {
1402 mGnssMetrics.logTimeToFirstFixMilliSecs(mTimeToFirstFix);
1403 }
Hakan Gustavssonfa94ff02010-02-23 09:12:38 +01001404
1405 // notify status listeners
Anil Admal75b9fd62018-11-28 11:22:50 -08001406 mGnssStatusListenerHelper.onFirstFix(mTimeToFirstFix);
Hakan Gustavssonfa94ff02010-02-23 09:12:38 +01001407 }
1408
Soonil Nagarkarfc9c7f82019-07-16 12:07:57 -07001409 if (mStarted) {
Wyatt Rileyc7067412018-02-07 15:50:35 -08001410 // For devices that use framework scheduling, a timer may be set to ensure we don't
Soonil Nagarkar1575a042018-10-24 17:54:54 -07001411 // spend too much power searching for a location, when the requested update rate is
1412 // slow.
Wyatt Rileyc7067412018-02-07 15:50:35 -08001413 // As we just recievied a location, we'll cancel that timer.
Mike Lockwood04598b62010-04-14 17:17:24 -04001414 if (!hasCapability(GPS_CAPABILITY_SCHEDULING) && mFixInterval < NO_FIX_TIMEOUT) {
Mike Lockwoodb7be5442010-02-24 14:34:50 -05001415 mAlarmManager.cancel(mTimeoutIntent);
1416 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001417 }
Mike Lockwood29c84342009-05-06 14:01:15 -04001418
gomo48f1a642017-11-10 20:35:46 -08001419 if (!hasCapability(GPS_CAPABILITY_SCHEDULING) && mStarted &&
1420 mFixInterval > GPS_POLLING_THRESHOLD_INTERVAL) {
Mike Lockwoodd53ba012010-04-15 20:41:26 -04001421 if (DEBUG) Log.d(TAG, "got fix, hibernating");
Mike Lockwood0632ca72009-05-14 15:51:03 -04001422 hibernate();
Mike Lockwood29c84342009-05-06 14:01:15 -04001423 }
gomo48f1a642017-11-10 20:35:46 -08001424 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001425
Soonil Nagarkar1575a042018-10-24 17:54:54 -07001426 @NativeEntryPoint
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001427 private void reportStatus(int status) {
Mike Lockwoodb8d90332010-10-18 17:59:48 -04001428 if (DEBUG) Log.v(TAG, "reportStatus status: " + status);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001429
destradaaea8a8a62014-06-23 18:19:03 -07001430 boolean wasNavigating = mNavigating;
1431 switch (status) {
1432 case GPS_STATUS_SESSION_BEGIN:
1433 mNavigating = true;
destradaaea8a8a62014-06-23 18:19:03 -07001434 break;
1435 case GPS_STATUS_SESSION_END:
1436 mNavigating = false;
1437 break;
1438 case GPS_STATUS_ENGINE_ON:
destradaaea8a8a62014-06-23 18:19:03 -07001439 break;
1440 case GPS_STATUS_ENGINE_OFF:
destradaaea8a8a62014-06-23 18:19:03 -07001441 mNavigating = false;
1442 break;
1443 }
Mike Lockwooddbd6fd82009-12-07 18:43:36 -05001444
destradaaea8a8a62014-06-23 18:19:03 -07001445 if (wasNavigating != mNavigating) {
Anil Admal75b9fd62018-11-28 11:22:50 -08001446 mGnssStatusListenerHelper.onStatusChanged(mNavigating);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001447 }
1448 }
1449
Wyatt Riley26465d22018-02-12 13:44:24 -08001450 // Helper class to carry data to handler for reportSvStatus
1451 private static class SvStatusInfo {
Soonil Nagarkar1575a042018-10-24 17:54:54 -07001452 private int mSvCount;
1453 private int[] mSvidWithFlags;
1454 private float[] mCn0s;
1455 private float[] mSvElevations;
1456 private float[] mSvAzimuths;
1457 private float[] mSvCarrierFreqs;
Yu-Han Yang15e43032019-11-22 13:50:41 -08001458 private float[] mBasebandCn0s;
Wyatt Riley26465d22018-02-12 13:44:24 -08001459 }
1460
Soonil Nagarkar1575a042018-10-24 17:54:54 -07001461 @NativeEntryPoint
Wyatt Riley26465d22018-02-12 13:44:24 -08001462 private void reportSvStatus(int svCount, int[] svidWithFlags, float[] cn0s,
Yu-Han Yang15e43032019-11-22 13:50:41 -08001463 float[] svElevations, float[] svAzimuths, float[] svCarrierFreqs,
1464 float[] basebandCn0s) {
Wyatt Riley26465d22018-02-12 13:44:24 -08001465 SvStatusInfo svStatusInfo = new SvStatusInfo();
1466 svStatusInfo.mSvCount = svCount;
1467 svStatusInfo.mSvidWithFlags = svidWithFlags;
1468 svStatusInfo.mCn0s = cn0s;
1469 svStatusInfo.mSvElevations = svElevations;
1470 svStatusInfo.mSvAzimuths = svAzimuths;
1471 svStatusInfo.mSvCarrierFreqs = svCarrierFreqs;
Yu-Han Yang15e43032019-11-22 13:50:41 -08001472 svStatusInfo.mBasebandCn0s = basebandCn0s;
Wyatt Riley26465d22018-02-12 13:44:24 -08001473
1474 sendMessage(REPORT_SV_STATUS, 0, svStatusInfo);
1475 }
1476
1477 private void handleReportSvStatus(SvStatusInfo info) {
Anil Admal75b9fd62018-11-28 11:22:50 -08001478 mGnssStatusListenerHelper.onSvStatusChanged(
Wyatt Riley26465d22018-02-12 13:44:24 -08001479 info.mSvCount,
1480 info.mSvidWithFlags,
1481 info.mCn0s,
1482 info.mSvElevations,
1483 info.mSvAzimuths,
Yu-Han Yang15e43032019-11-22 13:50:41 -08001484 info.mSvCarrierFreqs,
1485 info.mBasebandCn0s);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001486
Siddharth Ray168f12a2017-07-10 11:55:10 -07001487 // Log CN0 as part of GNSS metrics
Blake Kragtenbb613602019-08-28 16:21:35 -07001488 mGnssMetrics.logCn0(info.mCn0s, info.mSvCount, info.mSvCarrierFreqs);
Siddharth Ray168f12a2017-07-10 11:55:10 -07001489
Mike Lockwood29c84342009-05-06 14:01:15 -04001490 if (VERBOSE) {
Wyatt Riley26465d22018-02-12 13:44:24 -08001491 Log.v(TAG, "SV count: " + info.mSvCount);
Lifu Tang30f95a72016-01-07 23:20:38 -08001492 }
Wyatt Rileyc9f25dd2017-05-05 13:45:23 -07001493 // Calculate number of satellites used in fix.
Soonil Nagarkar0d1890b2019-11-12 12:13:14 -08001494 GnssStatus gnssStatus = GnssStatus.wrap(
1495 info.mSvCount,
1496 info.mSvidWithFlags,
1497 info.mCn0s,
1498 info.mSvElevations,
1499 info.mSvAzimuths,
Yu-Han Yang15e43032019-11-22 13:50:41 -08001500 info.mSvCarrierFreqs,
1501 info.mBasebandCn0s);
Lifu Tang30f95a72016-01-07 23:20:38 -08001502 int usedInFixCount = 0;
Wyatt Rileyc9f25dd2017-05-05 13:45:23 -07001503 int maxCn0 = 0;
1504 int meanCn0 = 0;
Soonil Nagarkar0d1890b2019-11-12 12:13:14 -08001505 for (int i = 0; i < gnssStatus.getSatelliteCount(); i++) {
1506 if (gnssStatus.usedInFix(i)) {
Lifu Tang30f95a72016-01-07 23:20:38 -08001507 ++usedInFixCount;
Soonil Nagarkar0d1890b2019-11-12 12:13:14 -08001508 if (gnssStatus.getCn0DbHz(i) > maxCn0) {
1509 maxCn0 = (int) gnssStatus.getCn0DbHz(i);
Wyatt Rileyc9f25dd2017-05-05 13:45:23 -07001510 }
Soonil Nagarkar0d1890b2019-11-12 12:13:14 -08001511 meanCn0 += gnssStatus.getCn0DbHz(i);
1512 mGnssMetrics.logConstellationType(gnssStatus.getConstellationType(i));
Lifu Tang30f95a72016-01-07 23:20:38 -08001513 }
1514 if (VERBOSE) {
Soonil Nagarkar0d1890b2019-11-12 12:13:14 -08001515 Log.v(TAG, "svid: " + gnssStatus.getSvid(i)
1516 + " cn0: " + gnssStatus.getCn0DbHz(i)
Yu-Han Yang15e43032019-11-22 13:50:41 -08001517 + " basebandCn0: " + gnssStatus.getBasebandCn0DbHz(i)
Soonil Nagarkar0d1890b2019-11-12 12:13:14 -08001518 + " elev: " + gnssStatus.getElevationDegrees(i)
1519 + " azimuth: " + gnssStatus.getAzimuthDegrees(i)
1520 + " carrier frequency: " + gnssStatus.getCn0DbHz(i)
1521 + (gnssStatus.hasEphemerisData(i) ? " E" : " ")
1522 + (gnssStatus.hasAlmanacData(i) ? " A" : " ")
1523 + (gnssStatus.usedInFix(i) ? "U" : "")
Yu-Han Yang15e43032019-11-22 13:50:41 -08001524 + (gnssStatus.hasCarrierFrequencyHz(i) ? "F" : "")
1525 + (gnssStatus.hasBasebandCn0DbHz(i) ? "B" : ""));
Yu-Han Yang284234e2019-03-28 19:35:57 -07001526 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001527 }
Wyatt Rileyc9f25dd2017-05-05 13:45:23 -07001528 if (usedInFixCount > 0) {
1529 meanCn0 /= usedInFixCount;
1530 }
1531 // return number of sats used in fix instead of total reported
Wyatt Rileyc7067412018-02-07 15:50:35 -08001532 mLocationExtras.set(usedInFixCount, meanCn0, maxCn0);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001533
Soonil Nagarkar0d1890b2019-11-12 12:13:14 -08001534 mGnssMetrics.logSvStatus(gnssStatus);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001535 }
Mike Lockwood58bda982009-04-14 16:25:07 -04001536
Soonil Nagarkar1575a042018-10-24 17:54:54 -07001537 @NativeEntryPoint
Anil Admalc70344b2018-11-16 14:22:38 -08001538 private void reportAGpsStatus(int agpsType, int agpsStatus, byte[] suplIpAddr) {
1539 mNetworkConnectivityHandler.onReportAGpsStatus(agpsType, agpsStatus, suplIpAddr);
destradaae21252a2015-09-08 12:32:59 -07001540 }
1541
Soonil Nagarkar1575a042018-10-24 17:54:54 -07001542 @NativeEntryPoint
Mike Lockwoodf602d362010-06-20 14:28:16 -07001543 private void reportNmea(long timestamp) {
Wyatt Riley5d5bac82016-11-01 07:05:16 -07001544 if (!mItarSpeedLimitExceeded) {
1545 int length = native_read_nmea(mNmeaBuffer, mNmeaBuffer.length);
1546 String nmea = new String(mNmeaBuffer, 0 /* offset */, length);
Anil Admal75b9fd62018-11-28 11:22:50 -08001547 mGnssStatusListenerHelper.onNmeaReceived(timestamp, nmea);
Wyatt Riley5d5bac82016-11-01 07:05:16 -07001548 }
destradaaea8a8a62014-06-23 18:19:03 -07001549 }
Mike Lockwoodb16e7802009-08-06 09:26:02 -04001550
Soonil Nagarkar1575a042018-10-24 17:54:54 -07001551 @NativeEntryPoint
Lifu Tang818aa2c2016-02-01 01:52:00 -08001552 private void reportMeasurementData(GnssMeasurementsEvent event) {
Wyatt Riley5d5bac82016-11-01 07:05:16 -07001553 if (!mItarSpeedLimitExceeded) {
Wyatt Rileyaa420d52017-07-03 15:14:42 -07001554 // send to handler to allow native to return quickly
Soonil Nagarkar1575a042018-10-24 17:54:54 -07001555 mHandler.post(() -> mGnssMeasurementsProvider.onMeasurementsAvailable(event));
Wyatt Riley5d5bac82016-11-01 07:05:16 -07001556 }
Mike Lockwoodb16e7802009-08-06 09:26:02 -04001557 }
1558
Soonil Nagarkar1575a042018-10-24 17:54:54 -07001559 @NativeEntryPoint
Lifu Tange8abe8e2016-04-01 10:32:05 -07001560 private void reportNavigationMessage(GnssNavigationMessage event) {
Wyatt Riley5d5bac82016-11-01 07:05:16 -07001561 if (!mItarSpeedLimitExceeded) {
Wyatt Rileyaa420d52017-07-03 15:14:42 -07001562 // send to handler to allow native to return quickly
Soonil Nagarkar1575a042018-10-24 17:54:54 -07001563 mHandler.post(() -> mGnssNavigationMessageProvider.onNavigationMessageAvailable(event));
Wyatt Riley5d5bac82016-11-01 07:05:16 -07001564 }
destradaa4b3e3932014-07-21 18:01:47 -07001565 }
1566
Soonil Nagarkar1575a042018-10-24 17:54:54 -07001567 @NativeEntryPoint
Anil Admal62c42dc2019-04-03 15:39:22 -07001568 private void setTopHalCapabilities(int topHalCapabilities) {
Anil Admalefd9dc62019-03-12 17:39:20 -07001569 mHandler.post(() -> {
Anil Admal312fddb2019-03-25 12:15:43 -07001570 mTopHalCapabilities = topHalCapabilities;
Mike Lockwood9b9fb5c2011-06-29 15:09:40 -04001571
Anil Admalefd9dc62019-03-12 17:39:20 -07001572 if (hasCapability(GPS_CAPABILITY_ON_DEMAND_TIME)) {
1573 mNtpTimeHelper.enablePeriodicTimeInjection();
1574 requestUtcTime();
1575 }
Soonil Nagarkar1575a042018-10-24 17:54:54 -07001576
Anil Admal62c42dc2019-04-03 15:39:22 -07001577 mGnssMeasurementsProvider.onCapabilitiesUpdated(
1578 hasCapability(GPS_CAPABILITY_MEASUREMENTS));
1579 mGnssNavigationMessageProvider.onCapabilitiesUpdated(
1580 hasCapability(GPS_CAPABILITY_NAV_MESSAGES));
Anil Admalefd9dc62019-03-12 17:39:20 -07001581 restartRequests();
Anil Admal312fddb2019-03-25 12:15:43 -07001582
Anil Admal62c42dc2019-04-03 15:39:22 -07001583 mGnssCapabilitiesProvider.setTopHalCapabilities(mTopHalCapabilities);
Anil Admalefd9dc62019-03-12 17:39:20 -07001584 });
1585 }
1586
1587 @NativeEntryPoint
Anil Admal312fddb2019-03-25 12:15:43 -07001588 private void setSubHalMeasurementCorrectionsCapabilities(int subHalCapabilities) {
1589 mHandler.post(() -> {
1590 if (!mGnssMeasurementCorrectionsProvider.onCapabilitiesUpdated(subHalCapabilities)) {
1591 return;
1592 }
1593
1594 mGnssCapabilitiesProvider.setSubHalMeasurementCorrectionsCapabilities(
1595 subHalCapabilities);
1596 });
Yu-Han Yang52057622018-04-25 00:51:22 -07001597 }
1598
1599 private void restartRequests() {
1600 Log.i(TAG, "restartRequests");
1601
1602 restartLocationRequest();
1603 mGnssMeasurementsProvider.resumeIfStarted();
1604 mGnssNavigationMessageProvider.resumeIfStarted();
1605 mGnssBatchingProvider.resumeIfStarted();
1606 mGnssGeofenceProvider.resumeIfStarted();
1607 }
1608
1609 private void restartLocationRequest() {
1610 if (DEBUG) Log.d(TAG, "restartLocationRequest");
WyattRileyba6072f2019-04-18 07:37:52 -07001611 setStarted(false);
Yu-Han Yang52057622018-04-25 00:51:22 -07001612 updateRequirements();
1613 }
Wyatt Rileyd87cf912017-12-05 09:31:52 -08001614
Soonil Nagarkar1575a042018-10-24 17:54:54 -07001615 @NativeEntryPoint
Wyatt Rileyd87cf912017-12-05 09:31:52 -08001616 private void setGnssYearOfHardware(final int yearOfHardware) {
1617 // mHardwareYear is simply set here, to be read elsewhere, and is volatile for safe sync
1618 if (DEBUG) Log.d(TAG, "setGnssYearOfHardware called with " + yearOfHardware);
1619 mHardwareYear = yearOfHardware;
Mike Lockwood04598b62010-04-14 17:17:24 -04001620 }
1621
Soonil Nagarkar1575a042018-10-24 17:54:54 -07001622 @NativeEntryPoint
Wyatt Rileyd87cf912017-12-05 09:31:52 -08001623 private void setGnssHardwareModelName(final String modelName) {
1624 // mHardwareModelName is simply set here, to be read elsewhere, and volatile for safe sync
1625 if (DEBUG) Log.d(TAG, "setGnssModelName called with " + modelName);
1626 mHardwareModelName = modelName;
Lifu Tang82f893d2016-01-21 18:15:33 -08001627 }
1628
Soonil Nagarkar1575a042018-10-24 17:54:54 -07001629 @NativeEntryPoint
Yu-Han Yang52057622018-04-25 00:51:22 -07001630 private void reportGnssServiceDied() {
1631 if (DEBUG) Log.d(TAG, "reportGnssServiceDied");
1632 mHandler.post(() -> {
Anil Admal0c2b21bd2019-05-03 18:29:02 -07001633 setupNativeGnssService(/* reinitializeGnssServiceHandle = */ true);
Anil Admal204406f2019-07-23 12:00:23 -07001634 // resend configuration into the restarted HAL service.
1635 reloadGpsProperties();
Yu-Han Yang76f99952019-05-04 17:45:44 -07001636 if (isGpsEnabled()) {
1637 setGpsEnabled(false);
Soonil Nagarkar35c3b912019-01-31 10:31:24 -08001638 updateEnabled();
Yu-Han Yang52057622018-04-25 00:51:22 -07001639 }
1640 });
1641 }
1642
Lifu Tang9363b942016-02-16 18:07:00 -08001643 public interface GnssSystemInfoProvider {
Lifu Tang82f893d2016-01-21 18:15:33 -08001644 /**
Wyatt Rileyd87cf912017-12-05 09:31:52 -08001645 * Returns the year of underlying GPS hardware.
Lifu Tang82f893d2016-01-21 18:15:33 -08001646 */
Lifu Tang9363b942016-02-16 18:07:00 -08001647 int getGnssYearOfHardware();
Soonil Nagarkar1575a042018-10-24 17:54:54 -07001648
Wyatt Rileyd87cf912017-12-05 09:31:52 -08001649 /**
1650 * Returns the model name of underlying GPS hardware.
1651 */
1652 String getGnssHardwareModelName();
Lifu Tang82f893d2016-01-21 18:15:33 -08001653 }
1654
1655 /**
1656 * @hide
1657 */
Lifu Tang9363b942016-02-16 18:07:00 -08001658 public GnssSystemInfoProvider getGnssSystemInfoProvider() {
1659 return new GnssSystemInfoProvider() {
Lifu Tang82f893d2016-01-21 18:15:33 -08001660 @Override
Lifu Tang9363b942016-02-16 18:07:00 -08001661 public int getGnssYearOfHardware() {
Wyatt Rileyd87cf912017-12-05 09:31:52 -08001662 return mHardwareYear;
1663 }
Soonil Nagarkar1575a042018-10-24 17:54:54 -07001664
Wyatt Rileyd87cf912017-12-05 09:31:52 -08001665 @Override
1666 public String getGnssHardwareModelName() {
1667 return mHardwareModelName;
Lifu Tang82f893d2016-01-21 18:15:33 -08001668 }
1669 };
1670 }
1671
Wyatt Rileycf879db2017-01-12 13:57:38 -08001672 /**
1673 * @hide
1674 */
1675 public GnssBatchingProvider getGnssBatchingProvider() {
Yu-Han Yang3557cc72018-03-21 12:48:36 -07001676 return mGnssBatchingProvider;
Wyatt Rileycf879db2017-01-12 13:57:38 -08001677 }
1678
Siddharth Raybb608c82017-03-16 11:33:34 -07001679 public interface GnssMetricsProvider {
1680 /**
1681 * Returns GNSS metrics as proto string
1682 */
1683 String getGnssMetricsAsProtoString();
1684 }
1685
1686 /**
1687 * @hide
1688 */
1689 public GnssMetricsProvider getGnssMetricsProvider() {
Soonil Nagarkar1575a042018-10-24 17:54:54 -07001690 return () -> mGnssMetrics.dumpGnssMetricsAsProtoString();
Siddharth Raybb608c82017-03-16 11:33:34 -07001691 }
1692
Anil Admal312fddb2019-03-25 12:15:43 -07001693 /**
1694 * @hide
1695 */
1696 public GnssCapabilitiesProvider getGnssCapabilitiesProvider() {
1697 return mGnssCapabilitiesProvider;
1698 }
1699
Soonil Nagarkar1575a042018-10-24 17:54:54 -07001700 @NativeEntryPoint
Wyatt Rileycf879db2017-01-12 13:57:38 -08001701 private void reportLocationBatch(Location[] locationArray) {
1702 List<Location> locations = new ArrayList<>(Arrays.asList(locationArray));
gomo48f1a642017-11-10 20:35:46 -08001703 if (DEBUG) {
1704 Log.d(TAG, "Location batch of size " + locationArray.length + " reported");
1705 }
Soonil Nagarkar1575a042018-10-24 17:54:54 -07001706 reportLocation(locations);
Wyatt Rileycf879db2017-01-12 13:57:38 -08001707 }
1708
Soonil Nagarkar1575a042018-10-24 17:54:54 -07001709 @NativeEntryPoint
Kevin Tang8c6ac672019-03-22 12:31:01 -07001710 private void psdsDownloadRequest() {
1711 if (DEBUG) Log.d(TAG, "psdsDownloadRequest");
1712 sendMessage(DOWNLOAD_PSDS_DATA, 0, null);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001713 }
1714
Jaikumar Ganesh8ce470d2013-04-03 12:22:18 -07001715 /**
destradaa0682809a2013-08-12 18:50:30 -07001716 * Converts the GPS HAL status to the internal Geofence Hardware status.
1717 */
Yu-Han Yang6dc9f052018-12-04 17:11:24 -08001718 private static int getGeofenceStatus(int status) {
gomo48f1a642017-11-10 20:35:46 -08001719 switch (status) {
destradaa0682809a2013-08-12 18:50:30 -07001720 case GPS_GEOFENCE_OPERATION_SUCCESS:
1721 return GeofenceHardware.GEOFENCE_SUCCESS;
1722 case GPS_GEOFENCE_ERROR_GENERIC:
1723 return GeofenceHardware.GEOFENCE_FAILURE;
1724 case GPS_GEOFENCE_ERROR_ID_EXISTS:
1725 return GeofenceHardware.GEOFENCE_ERROR_ID_EXISTS;
1726 case GPS_GEOFENCE_ERROR_INVALID_TRANSITION:
1727 return GeofenceHardware.GEOFENCE_ERROR_INVALID_TRANSITION;
1728 case GPS_GEOFENCE_ERROR_TOO_MANY_GEOFENCES:
1729 return GeofenceHardware.GEOFENCE_ERROR_TOO_MANY_GEOFENCES;
1730 case GPS_GEOFENCE_ERROR_ID_UNKNOWN:
1731 return GeofenceHardware.GEOFENCE_ERROR_ID_UNKNOWN;
1732 default:
1733 return -1;
1734 }
1735 }
1736
Soonil Nagarkar1575a042018-10-24 17:54:54 -07001737 @NativeEntryPoint
Wyatt Riley5d229832017-02-10 17:06:00 -08001738 private void reportGeofenceTransition(int geofenceId, Location location, int transition,
gomo48f1a642017-11-10 20:35:46 -08001739 long transitionTimestamp) {
Yu-Han Yang6dc9f052018-12-04 17:11:24 -08001740 mHandler.post(() -> {
1741 if (mGeofenceHardwareImpl == null) {
1742 mGeofenceHardwareImpl = GeofenceHardwareImpl.getInstance(mContext);
1743 }
Wyatt Riley5d229832017-02-10 17:06:00 -08001744
Yu-Han Yang6dc9f052018-12-04 17:11:24 -08001745 mGeofenceHardwareImpl.reportGeofenceTransition(
1746 geofenceId,
1747 location,
1748 transition,
1749 transitionTimestamp,
1750 GeofenceHardware.MONITORING_TYPE_GPS_HARDWARE,
1751 FusedBatchOptions.SourceTechnologies.GNSS);
1752 });
Jaikumar Ganesh8ce470d2013-04-03 12:22:18 -07001753 }
1754
Soonil Nagarkar1575a042018-10-24 17:54:54 -07001755 @NativeEntryPoint
Wyatt Riley5d229832017-02-10 17:06:00 -08001756 private void reportGeofenceStatus(int status, Location location) {
Yu-Han Yang6dc9f052018-12-04 17:11:24 -08001757 mHandler.post(() -> {
1758 if (mGeofenceHardwareImpl == null) {
1759 mGeofenceHardwareImpl = GeofenceHardwareImpl.getInstance(mContext);
1760 }
1761 int monitorStatus = GeofenceHardware.MONITOR_CURRENTLY_UNAVAILABLE;
1762 if (status == GPS_GEOFENCE_AVAILABLE) {
1763 monitorStatus = GeofenceHardware.MONITOR_CURRENTLY_AVAILABLE;
1764 }
1765 mGeofenceHardwareImpl.reportGeofenceMonitorStatus(
1766 GeofenceHardware.MONITORING_TYPE_GPS_HARDWARE,
1767 monitorStatus,
1768 location,
1769 FusedBatchOptions.SourceTechnologies.GNSS);
1770 });
Jaikumar Ganesh8ce470d2013-04-03 12:22:18 -07001771 }
1772
Soonil Nagarkar1575a042018-10-24 17:54:54 -07001773 @NativeEntryPoint
Jaikumar Ganesh8ce470d2013-04-03 12:22:18 -07001774 private void reportGeofenceAddStatus(int geofenceId, int status) {
Yu-Han Yang6dc9f052018-12-04 17:11:24 -08001775 mHandler.post(() -> {
1776 if (mGeofenceHardwareImpl == null) {
1777 mGeofenceHardwareImpl = GeofenceHardwareImpl.getInstance(mContext);
1778 }
1779 mGeofenceHardwareImpl.reportGeofenceAddStatus(geofenceId, getGeofenceStatus(status));
1780 });
Jaikumar Ganesh8ce470d2013-04-03 12:22:18 -07001781 }
1782
Soonil Nagarkar1575a042018-10-24 17:54:54 -07001783 @NativeEntryPoint
Jaikumar Ganesh8ce470d2013-04-03 12:22:18 -07001784 private void reportGeofenceRemoveStatus(int geofenceId, int status) {
Yu-Han Yang6dc9f052018-12-04 17:11:24 -08001785 mHandler.post(() -> {
1786 if (mGeofenceHardwareImpl == null) {
1787 mGeofenceHardwareImpl = GeofenceHardwareImpl.getInstance(mContext);
1788 }
1789 mGeofenceHardwareImpl.reportGeofenceRemoveStatus(geofenceId, getGeofenceStatus(status));
1790 });
Jaikumar Ganesh8ce470d2013-04-03 12:22:18 -07001791 }
1792
Soonil Nagarkar1575a042018-10-24 17:54:54 -07001793 @NativeEntryPoint
Jaikumar Ganesh8ce470d2013-04-03 12:22:18 -07001794 private void reportGeofencePauseStatus(int geofenceId, int status) {
Yu-Han Yang6dc9f052018-12-04 17:11:24 -08001795 mHandler.post(() -> {
1796 if (mGeofenceHardwareImpl == null) {
1797 mGeofenceHardwareImpl = GeofenceHardwareImpl.getInstance(mContext);
1798 }
1799 mGeofenceHardwareImpl.reportGeofencePauseStatus(geofenceId, getGeofenceStatus(status));
1800 });
Jaikumar Ganesh8ce470d2013-04-03 12:22:18 -07001801 }
1802
Soonil Nagarkar1575a042018-10-24 17:54:54 -07001803 @NativeEntryPoint
Jaikumar Ganesh8ce470d2013-04-03 12:22:18 -07001804 private void reportGeofenceResumeStatus(int geofenceId, int status) {
Yu-Han Yang6dc9f052018-12-04 17:11:24 -08001805 mHandler.post(() -> {
1806 if (mGeofenceHardwareImpl == null) {
1807 mGeofenceHardwareImpl = GeofenceHardwareImpl.getInstance(mContext);
1808 }
1809 mGeofenceHardwareImpl.reportGeofenceResumeStatus(geofenceId, getGeofenceStatus(status));
1810 });
Jaikumar Ganesh8ce470d2013-04-03 12:22:18 -07001811 }
1812
Danke Xie22d1f9f2009-08-18 18:28:45 -04001813 //=============================================================
1814 // NI Client support
Miguel Torroja1e84da82010-07-27 07:02:24 +02001815 //=============================================================
Danke Xie22d1f9f2009-08-18 18:28:45 -04001816 private final INetInitiatedListener mNetInitiatedListener = new INetInitiatedListener.Stub() {
destradaaef752b62015-04-17 13:10:47 -07001817 // Sends a response for an NI request to HAL.
Nick Pelly6fa9ad42012-07-16 12:18:23 -07001818 @Override
gomo48f1a642017-11-10 20:35:46 -08001819 public boolean sendNiResponse(int notificationId, int userResponse) {
Miguel Torroja1e84da82010-07-27 07:02:24 +02001820 // TODO Add Permission check
Danke Xie22d1f9f2009-08-18 18:28:45 -04001821
gomo48f1a642017-11-10 20:35:46 -08001822 if (DEBUG) {
1823 Log.d(TAG, "sendNiResponse, notifId: " + notificationId +
1824 ", response: " + userResponse);
1825 }
Miguel Torroja1e84da82010-07-27 07:02:24 +02001826 native_send_ni_response(notificationId, userResponse);
Yu-Han Yang8a1b51d2018-12-26 22:18:31 -08001827
1828 StatsLog.write(StatsLog.GNSS_NI_EVENT_REPORTED,
1829 StatsLog.GNSS_NI_EVENT_REPORTED__EVENT_TYPE__NI_RESPONSE,
1830 notificationId,
1831 /* niType= */ 0,
1832 /* needNotify= */ false,
1833 /* needVerify= */ false,
1834 /* privacyOverride= */ false,
1835 /* timeout= */ 0,
1836 /* defaultResponse= */ 0,
1837 /* requestorId= */ null,
1838 /* text= */ null,
1839 /* requestorIdEncoding= */ 0,
1840 /* textEncoding= */ 0,
1841 mSuplEsEnabled,
Yu-Han Yang76f99952019-05-04 17:45:44 -07001842 isGpsEnabled(),
Yu-Han Yang8a1b51d2018-12-26 22:18:31 -08001843 userResponse);
1844
Miguel Torroja1e84da82010-07-27 07:02:24 +02001845 return true;
1846 }
Danke Xie22d1f9f2009-08-18 18:28:45 -04001847 };
Nick Pelly6fa9ad42012-07-16 12:18:23 -07001848
Danke Xie22d1f9f2009-08-18 18:28:45 -04001849 public INetInitiatedListener getNetInitiatedListener() {
1850 return mNetInitiatedListener;
1851 }
1852
Soonil Nagarkar1575a042018-10-24 17:54:54 -07001853 /** Reports a NI notification. */
1854 @NativeEntryPoint
Miguel Torroja1e84da82010-07-27 07:02:24 +02001855 public void reportNiNotification(
1856 int notificationId,
1857 int niType,
1858 int notifyFlags,
1859 int timeout,
1860 int defaultResponse,
1861 String requestorId,
1862 String text,
1863 int requestorIdEncoding,
Hridya Valsaraju2ea29602016-09-13 08:38:09 -07001864 int textEncoding
gomo48f1a642017-11-10 20:35:46 -08001865 ) {
Miguel Torroja1e84da82010-07-27 07:02:24 +02001866 Log.i(TAG, "reportNiNotification: entered");
1867 Log.i(TAG, "notificationId: " + notificationId +
1868 ", niType: " + niType +
1869 ", notifyFlags: " + notifyFlags +
1870 ", timeout: " + timeout +
1871 ", defaultResponse: " + defaultResponse);
1872
1873 Log.i(TAG, "requestorId: " + requestorId +
1874 ", text: " + text +
1875 ", requestorIdEncoding: " + requestorIdEncoding +
1876 ", textEncoding: " + textEncoding);
1877
1878 GpsNiNotification notification = new GpsNiNotification();
1879
1880 notification.notificationId = notificationId;
1881 notification.niType = niType;
1882 notification.needNotify = (notifyFlags & GpsNetInitiatedHandler.GPS_NI_NEED_NOTIFY) != 0;
1883 notification.needVerify = (notifyFlags & GpsNetInitiatedHandler.GPS_NI_NEED_VERIFY) != 0;
gomo48f1a642017-11-10 20:35:46 -08001884 notification.privacyOverride =
1885 (notifyFlags & GpsNetInitiatedHandler.GPS_NI_PRIVACY_OVERRIDE) != 0;
Miguel Torroja1e84da82010-07-27 07:02:24 +02001886 notification.timeout = timeout;
1887 notification.defaultResponse = defaultResponse;
1888 notification.requestorId = requestorId;
1889 notification.text = text;
1890 notification.requestorIdEncoding = requestorIdEncoding;
1891 notification.textEncoding = textEncoding;
1892
Miguel Torroja1e84da82010-07-27 07:02:24 +02001893 mNIHandler.handleNiNotification(notification);
Yu-Han Yang8a1b51d2018-12-26 22:18:31 -08001894 StatsLog.write(StatsLog.GNSS_NI_EVENT_REPORTED,
1895 StatsLog.GNSS_NI_EVENT_REPORTED__EVENT_TYPE__NI_REQUEST,
1896 notification.notificationId,
1897 notification.niType,
1898 notification.needNotify,
1899 notification.needVerify,
1900 notification.privacyOverride,
1901 notification.timeout,
1902 notification.defaultResponse,
1903 notification.requestorId,
1904 notification.text,
1905 notification.requestorIdEncoding,
1906 notification.textEncoding,
1907 mSuplEsEnabled,
Yu-Han Yang76f99952019-05-04 17:45:44 -07001908 isGpsEnabled(),
Yu-Han Yang8a1b51d2018-12-26 22:18:31 -08001909 /* userResponse= */ 0);
Miguel Torroja1e84da82010-07-27 07:02:24 +02001910 }
1911
1912 /**
Miguel Torroja1e84da82010-07-27 07:02:24 +02001913 * We should be careful about receiving null string from the TelephonyManager,
1914 * because sending null String to JNI function would cause a crash.
1915 */
Soonil Nagarkar1575a042018-10-24 17:54:54 -07001916 @NativeEntryPoint
Miguel Torroja1e84da82010-07-27 07:02:24 +02001917 private void requestSetID(int flags) {
1918 TelephonyManager phone = (TelephonyManager)
1919 mContext.getSystemService(Context.TELEPHONY_SERVICE);
destradaaef752b62015-04-17 13:10:47 -07001920 int type = AGPS_SETID_TYPE_NONE;
Anil Admale1539e82019-05-09 15:05:04 -07001921 String setId = null;
Miguel Torroja1e84da82010-07-27 07:02:24 +02001922
Anil Admale1539e82019-05-09 15:05:04 -07001923 int ddSubId = SubscriptionManager.getDefaultDataSubscriptionId();
zoey chen4841a272019-12-03 20:07:18 +08001924 if (SubscriptionManager.isValidSubscriptionId(ddSubId)) {
1925 phone = phone.createForSubscriptionId(ddSubId);
1926 }
Miguel Torroja1e84da82010-07-27 07:02:24 +02001927 if ((flags & AGPS_RIL_REQUEST_SETID_IMSI) == AGPS_RIL_REQUEST_SETID_IMSI) {
zoey chen4841a272019-12-03 20:07:18 +08001928 setId = phone.getSubscriberId();
Anil Admale1539e82019-05-09 15:05:04 -07001929 if (setId != null) {
Miguel Torroja1e84da82010-07-27 07:02:24 +02001930 // This means the framework has the SIM card.
Miguel Torroja1e84da82010-07-27 07:02:24 +02001931 type = AGPS_SETID_TYPE_IMSI;
1932 }
gomo48f1a642017-11-10 20:35:46 -08001933 } else if ((flags & AGPS_RIL_REQUEST_SETID_MSISDN) == AGPS_RIL_REQUEST_SETID_MSISDN) {
zoey chen4841a272019-12-03 20:07:18 +08001934 setId = phone.getLine1Number();
Anil Admale1539e82019-05-09 15:05:04 -07001935 if (setId != null) {
Miguel Torroja1e84da82010-07-27 07:02:24 +02001936 // This means the framework has the SIM card.
Miguel Torroja1e84da82010-07-27 07:02:24 +02001937 type = AGPS_SETID_TYPE_MSISDN;
1938 }
1939 }
Anil Admale1539e82019-05-09 15:05:04 -07001940
1941 native_agps_set_id(type, (setId == null) ? "" : setId);
Miguel Torroja1e84da82010-07-27 07:02:24 +02001942 }
1943
Soonil Nagarkar1575a042018-10-24 17:54:54 -07001944 @NativeEntryPoint
Yu-Han Yang53f4d6d2019-02-13 21:47:41 -08001945 private void requestLocation(boolean independentFromGnss, boolean isUserEmergency) {
Yu-Han Yange7baef32018-02-09 13:58:17 -08001946 if (DEBUG) {
Yu-Han Yang53f4d6d2019-02-13 21:47:41 -08001947 Log.d(TAG, "requestLocation. independentFromGnss: " + independentFromGnss
1948 + ", isUserEmergency: "
1949 + isUserEmergency);
Yu-Han Yange7baef32018-02-09 13:58:17 -08001950 }
Yu-Han Yang53f4d6d2019-02-13 21:47:41 -08001951 sendMessage(REQUEST_LOCATION, independentFromGnss ? 1 : 0, isUserEmergency);
Yu-Han Yange7baef32018-02-09 13:58:17 -08001952 }
1953
Soonil Nagarkar1575a042018-10-24 17:54:54 -07001954 @NativeEntryPoint
Mike Lockwood9b9fb5c2011-06-29 15:09:40 -04001955 private void requestUtcTime() {
destradaae21252a2015-09-08 12:32:59 -07001956 if (DEBUG) Log.d(TAG, "utcTimeRequest");
Mike Lockwood9b9fb5c2011-06-29 15:09:40 -04001957 sendMessage(INJECT_NTP_TIME, 0, null);
1958 }
1959
Soonil Nagarkar1575a042018-10-24 17:54:54 -07001960 @NativeEntryPoint
Hridya Valsaraju2ea29602016-09-13 08:38:09 -07001961 private void requestRefLocation() {
Miguel Torroja1e84da82010-07-27 07:02:24 +02001962 TelephonyManager phone = (TelephonyManager)
1963 mContext.getSystemService(Context.TELEPHONY_SERVICE);
Victoria Leased50d0c32012-10-29 13:16:17 -07001964 final int phoneType = phone.getPhoneType();
1965 if (phoneType == TelephonyManager.PHONE_TYPE_GSM) {
Miguel Torroja1e84da82010-07-27 07:02:24 +02001966 GsmCellLocation gsm_cell = (GsmCellLocation) phone.getCellLocation();
Victoria Leased50d0c32012-10-29 13:16:17 -07001967 if ((gsm_cell != null) && (phone.getNetworkOperator() != null)
1968 && (phone.getNetworkOperator().length() > 3)) {
Miguel Torroja1e84da82010-07-27 07:02:24 +02001969 int type;
gomo48f1a642017-11-10 20:35:46 -08001970 int mcc = Integer.parseInt(phone.getNetworkOperator().substring(0, 3));
Miguel Torroja1e84da82010-07-27 07:02:24 +02001971 int mnc = Integer.parseInt(phone.getNetworkOperator().substring(3));
Mike Lockwoodedc0f3872010-10-22 09:16:17 -04001972 int networkType = phone.getNetworkType();
1973 if (networkType == TelephonyManager.NETWORK_TYPE_UMTS
gomo48f1a642017-11-10 20:35:46 -08001974 || networkType == TelephonyManager.NETWORK_TYPE_HSDPA
1975 || networkType == TelephonyManager.NETWORK_TYPE_HSUPA
1976 || networkType == TelephonyManager.NETWORK_TYPE_HSPA
1977 || networkType == TelephonyManager.NETWORK_TYPE_HSPAP) {
Miguel Torroja1e84da82010-07-27 07:02:24 +02001978 type = AGPS_REF_LOCATION_TYPE_UMTS_CELLID;
Mike Lockwoodedc0f3872010-10-22 09:16:17 -04001979 } else {
Miguel Torroja1e84da82010-07-27 07:02:24 +02001980 type = AGPS_REF_LOCATION_TYPE_GSM_CELLID;
Mike Lockwoodedc0f3872010-10-22 09:16:17 -04001981 }
Miguel Torroja1e84da82010-07-27 07:02:24 +02001982 native_agps_set_ref_location_cellid(type, mcc, mnc,
1983 gsm_cell.getLac(), gsm_cell.getCid());
Mike Lockwoodedc0f3872010-10-22 09:16:17 -04001984 } else {
gomo48f1a642017-11-10 20:35:46 -08001985 Log.e(TAG, "Error getting cell location info.");
Mike Lockwoodedc0f3872010-10-22 09:16:17 -04001986 }
Victoria Leased50d0c32012-10-29 13:16:17 -07001987 } else if (phoneType == TelephonyManager.PHONE_TYPE_CDMA) {
1988 Log.e(TAG, "CDMA not supported.");
Mike Lockwoodedc0f3872010-10-22 09:16:17 -04001989 }
Miguel Torroja1e84da82010-07-27 07:02:24 +02001990 }
Danke Xie22d1f9f2009-08-18 18:28:45 -04001991
Anil Admal94ec76a2019-01-15 09:42:01 -08001992 // Implements method nfwNotifyCb() in IGnssVisibilityControlCallback.hal.
1993 @NativeEntryPoint
1994 private void reportNfwNotification(String proxyAppPackageName, byte protocolStack,
1995 String otherProtocolStackName, byte requestor, String requestorId, byte responseType,
1996 boolean inEmergencyMode, boolean isCachedLocation) {
1997 if (mGnssVisibilityControl == null) {
1998 Log.e(TAG, "reportNfwNotification: mGnssVisibilityControl is not initialized.");
1999 return;
2000 }
2001
2002 mGnssVisibilityControl.reportNfwNotification(proxyAppPackageName, protocolStack,
2003 otherProtocolStackName, requestor, requestorId, responseType, inEmergencyMode,
2004 isCachedLocation);
2005 }
2006
2007 // Implements method isInEmergencySession() in IGnssVisibilityControlCallback.hal.
2008 @NativeEntryPoint
2009 boolean isInEmergencySession() {
2010 return mNIHandler.getInEmergency();
2011 }
2012
Mike Lockwood98e48692010-04-07 16:32:51 -04002013 private void sendMessage(int message, int arg, Object obj) {
Nick Pelly6fa9ad42012-07-16 12:18:23 -07002014 // hold a wake lock until this message is delivered
Jeff Brown028872f2012-08-25 13:07:01 -07002015 // note that this assumes the message will not be removed from the queue before
2016 // it is handled (otherwise the wake lock would be leaked).
Yu-Han Yang499a6ba2019-11-14 14:19:13 -08002017 mWakeLock.acquire(WAKELOCK_TIMEOUT_MILLIS);
Anil Admal4f97c942018-11-12 10:52:46 -08002018 if (DEBUG) {
2019 Log.d(TAG, "WakeLock acquired by sendMessage(" + messageIdAsString(message) + ", " + arg
Wyatt Rileycf879db2017-01-12 13:57:38 -08002020 + ", " + obj + ")");
2021 }
Nick Pelly6fa9ad42012-07-16 12:18:23 -07002022 mHandler.obtainMessage(message, arg, 1, obj).sendToTarget();
Mike Lockwood98e48692010-04-07 16:32:51 -04002023 }
2024
Mike Lockwood62a8fc12010-03-22 14:23:26 -04002025 private final class ProviderHandler extends Handler {
Victoria Lease5cd731a2012-12-19 15:04:21 -08002026 public ProviderHandler(Looper looper) {
2027 super(looper, null, true /*async*/);
Jeff Brown028872f2012-08-25 13:07:01 -07002028 }
2029
Mike Lockwood62a8fc12010-03-22 14:23:26 -04002030 @Override
Mike Lockwood4a7b65e2010-10-25 16:35:55 -04002031 public void handleMessage(Message msg) {
Mike Lockwood98e48692010-04-07 16:32:51 -04002032 int message = msg.what;
2033 switch (message) {
Nick Pelly6fa9ad42012-07-16 12:18:23 -07002034 case SET_REQUEST:
2035 GpsRequest gpsRequest = (GpsRequest) msg.obj;
2036 handleSetRequest(gpsRequest.request, gpsRequest.source);
Mike Lockwood03ca2162010-04-01 08:10:09 -07002037 break;
Mike Lockwood62a8fc12010-03-22 14:23:26 -04002038 case INJECT_NTP_TIME:
Yu-Han Yanga1862b52018-02-20 17:05:59 -08002039 mNtpTimeHelper.retrieveAndInjectNtpTime();
Mike Lockwood62a8fc12010-03-22 14:23:26 -04002040 break;
Yu-Han Yange7baef32018-02-09 13:58:17 -08002041 case REQUEST_LOCATION:
Yu-Han Yang53f4d6d2019-02-13 21:47:41 -08002042 handleRequestLocation(msg.arg1 == 1, (boolean) msg.obj);
Yu-Han Yange7baef32018-02-09 13:58:17 -08002043 break;
Kevin Tang8c6ac672019-03-22 12:31:01 -07002044 case DOWNLOAD_PSDS_DATA:
2045 handleDownloadPsdsData();
Mike Lockwood62a8fc12010-03-22 14:23:26 -04002046 break;
Kevin Tang8c6ac672019-03-22 12:31:01 -07002047 case DOWNLOAD_PSDS_DATA_FINISHED:
2048 mDownloadPsdsDataPending = STATE_IDLE;
Kevin Tang40e1baf2012-01-10 14:32:44 -08002049 break;
destradaafb23c672015-04-16 14:01:27 -07002050 case INITIALIZE_HANDLER:
destradaae21252a2015-09-08 12:32:59 -07002051 handleInitialize();
destradaafb23c672015-04-16 14:01:27 -07002052 break;
Wyatt Riley26465d22018-02-12 13:44:24 -08002053 case REPORT_LOCATION:
2054 handleReportLocation(msg.arg1 == 1, (Location) msg.obj);
2055 break;
2056 case REPORT_SV_STATUS:
2057 handleReportSvStatus((SvStatusInfo) msg.obj);
2058 break;
Kweku Adams810c77d2019-08-28 07:45:00 -07002059 case UPDATE_LOW_POWER_MODE:
2060 updateLowPowerMode();
2061 break;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002062 }
Nick Pelly6fa9ad42012-07-16 12:18:23 -07002063 if (msg.arg2 == 1) {
2064 // wakelock was taken for this message, release it
2065 mWakeLock.release();
Anil Admal4f97c942018-11-12 10:52:46 -08002066 if (DEBUG) {
2067 Log.d(TAG, "WakeLock released by handleMessage(" + messageIdAsString(message)
Wyatt Rileycf879db2017-01-12 13:57:38 -08002068 + ", " + msg.arg1 + ", " + msg.obj + ")");
2069 }
Mike Lockwood98e48692010-04-07 16:32:51 -04002070 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002071 }
destradaafb23c672015-04-16 14:01:27 -07002072
2073 /**
Soonil Nagarkar8df02f42020-01-08 13:23:26 -08002074 * This method is bound to the constructor. It is in charge of loading properties and
2075 * registering for events that will be posted to this handler.
destradaafb23c672015-04-16 14:01:27 -07002076 */
destradaae21252a2015-09-08 12:32:59 -07002077 private void handleInitialize() {
Anil Admal0c2b21bd2019-05-03 18:29:02 -07002078 // class_init_native() already initializes the GNSS service handle during class loading.
2079 setupNativeGnssService(/* reinitializeGnssServiceHandle = */ false);
Wyatt Riley523a0cf2017-10-31 14:36:52 -07002080
Anil Admal94ec76a2019-01-15 09:42:01 -08002081 if (native_is_gnss_visibility_control_supported()) {
Anil Admal8a246a22019-05-05 00:34:55 -07002082 mGnssVisibilityControl = new GnssVisibilityControl(mContext, mLooper, mNIHandler);
Anil Admal94ec76a2019-01-15 09:42:01 -08002083 }
2084
destradaafb23c672015-04-16 14:01:27 -07002085 // load default GPS configuration
2086 // (this configuration might change in the future based on SIM changes)
Anil Admald71cf142018-12-21 14:59:36 -08002087 reloadGpsProperties();
destradaafb23c672015-04-16 14:01:27 -07002088
destradaafb23c672015-04-16 14:01:27 -07002089 // listen for events
WyattRiley6593cf12018-06-23 10:37:48 -07002090 IntentFilter intentFilter = new IntentFilter();
destradaafb23c672015-04-16 14:01:27 -07002091 intentFilter.addAction(ALARM_WAKEUP);
2092 intentFilter.addAction(ALARM_TIMEOUT);
destradaafb23c672015-04-16 14:01:27 -07002093 intentFilter.addAction(PowerManager.ACTION_POWER_SAVE_MODE_CHANGED);
Adam Lesinski87c17df2015-05-27 13:24:13 -07002094 intentFilter.addAction(PowerManager.ACTION_DEVICE_IDLE_MODE_CHANGED);
destradaafb23c672015-04-16 14:01:27 -07002095 intentFilter.addAction(Intent.ACTION_SCREEN_OFF);
2096 intentFilter.addAction(Intent.ACTION_SCREEN_ON);
Meng Wang19b214d2018-11-07 12:14:39 -08002097 intentFilter.addAction(CarrierConfigManager.ACTION_CARRIER_CONFIG_CHANGED);
Jayachandran C041e7692019-12-20 16:20:02 -08002098 intentFilter.addAction(TelephonyManager.ACTION_DEFAULT_DATA_SUBSCRIPTION_CHANGED);
destradaafb23c672015-04-16 14:01:27 -07002099 mContext.registerReceiver(mBroadcastReceiver, intentFilter, null, this);
2100
Anil Admal50ba15e2018-11-01 16:42:42 -07002101 mNetworkConnectivityHandler.registerNetworkCallbacks();
destradaae21252a2015-09-08 12:32:59 -07002102
destradaafb23c672015-04-16 14:01:27 -07002103 // listen for PASSIVE_PROVIDER updates
2104 LocationManager locManager =
2105 (LocationManager) mContext.getSystemService(Context.LOCATION_SERVICE);
2106 long minTime = 0;
2107 float minDistance = 0;
destradaafb23c672015-04-16 14:01:27 -07002108 LocationRequest request = LocationRequest.createFromDeprecatedProvider(
2109 LocationManager.PASSIVE_PROVIDER,
2110 minTime,
2111 minDistance,
Soonil Nagarkar1575a042018-10-24 17:54:54 -07002112 false);
destradaafb23c672015-04-16 14:01:27 -07002113 // Don't keep track of this request since it's done on behalf of other clients
2114 // (which are kept track of separately).
2115 request.setHideFromAppOps(true);
2116 locManager.requestLocationUpdates(
2117 request,
2118 new NetworkLocationListener(),
2119 getLooper());
Soonil Nagarkar1575a042018-10-24 17:54:54 -07002120
Soonil Nagarkar35c3b912019-01-31 10:31:24 -08002121 updateEnabled();
destradaafb23c672015-04-16 14:01:27 -07002122 }
2123 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002124
Yu-Han Yange7baef32018-02-09 13:58:17 -08002125 private abstract class LocationChangeListener implements LocationListener {
Soonil Nagarkar1575a042018-10-24 17:54:54 -07002126 private int mNumLocationUpdateRequest;
Yu-Han Yang07561382018-02-21 13:08:37 -08002127
Nick Pelly6fa9ad42012-07-16 12:18:23 -07002128 @Override
gomo48f1a642017-11-10 20:35:46 -08002129 public void onStatusChanged(String provider, int status, Bundle extras) {
2130 }
2131
Nick Pelly6fa9ad42012-07-16 12:18:23 -07002132 @Override
gomo48f1a642017-11-10 20:35:46 -08002133 public void onProviderEnabled(String provider) {
2134 }
2135
Nick Pelly6fa9ad42012-07-16 12:18:23 -07002136 @Override
gomo48f1a642017-11-10 20:35:46 -08002137 public void onProviderDisabled(String provider) {
2138 }
Nick Pelly6fa9ad42012-07-16 12:18:23 -07002139 }
2140
Yu-Han Yange7baef32018-02-09 13:58:17 -08002141 private final class NetworkLocationListener extends LocationChangeListener {
2142 @Override
2143 public void onLocationChanged(Location location) {
2144 // this callback happens on mHandler looper
2145 if (LocationManager.NETWORK_PROVIDER.equals(location.getProvider())) {
Anil Admal2ac70462019-06-28 19:17:41 -07002146 injectLocation(location);
Yu-Han Yange7baef32018-02-09 13:58:17 -08002147 }
2148 }
2149 }
2150
2151 private final class FusedLocationListener extends LocationChangeListener {
2152 @Override
2153 public void onLocationChanged(Location location) {
2154 if (LocationManager.FUSED_PROVIDER.equals(location.getProvider())) {
Yu-Han Yange7baef32018-02-09 13:58:17 -08002155 injectBestLocation(location);
2156 }
2157 }
2158 }
2159
Wyatt Rileycf879db2017-01-12 13:57:38 -08002160 /**
2161 * @return A string representing the given message ID.
2162 */
2163 private String messageIdAsString(int message) {
2164 switch (message) {
Wyatt Rileycf879db2017-01-12 13:57:38 -08002165 case SET_REQUEST:
2166 return "SET_REQUEST";
Wyatt Rileycf879db2017-01-12 13:57:38 -08002167 case INJECT_NTP_TIME:
2168 return "INJECT_NTP_TIME";
Yu-Han Yange7baef32018-02-09 13:58:17 -08002169 case REQUEST_LOCATION:
2170 return "REQUEST_LOCATION";
Kevin Tang8c6ac672019-03-22 12:31:01 -07002171 case DOWNLOAD_PSDS_DATA:
2172 return "DOWNLOAD_PSDS_DATA";
2173 case DOWNLOAD_PSDS_DATA_FINISHED:
2174 return "DOWNLOAD_PSDS_DATA_FINISHED";
Wyatt Rileycf879db2017-01-12 13:57:38 -08002175 case INITIALIZE_HANDLER:
2176 return "INITIALIZE_HANDLER";
Wyatt Riley26465d22018-02-12 13:44:24 -08002177 case REPORT_LOCATION:
2178 return "REPORT_LOCATION";
2179 case REPORT_SV_STATUS:
2180 return "REPORT_SV_STATUS";
Wyatt Rileycf879db2017-01-12 13:57:38 -08002181 default:
2182 return "<Unknown>";
2183 }
2184 }
2185
Nick Pelly6fa9ad42012-07-16 12:18:23 -07002186 @Override
2187 public void dump(FileDescriptor fd, PrintWriter pw, String[] args) {
2188 StringBuilder s = new StringBuilder();
Soonil Nagarkar1c572552019-07-10 13:31:47 -07002189 s.append("mStarted=").append(mStarted).append(" (changed ");
WyattRileyba6072f2019-04-18 07:37:52 -07002190 TimeUtils.formatDuration(SystemClock.elapsedRealtime()
2191 - mStartedChangedElapsedRealtime, s);
2192 s.append(" ago)").append('\n');
Soonil Nagarkar1c572552019-07-10 13:31:47 -07002193 s.append("mFixInterval=").append(mFixInterval).append('\n');
2194 s.append("mLowPowerMode=").append(mLowPowerMode).append('\n');
2195 s.append("mGnssMeasurementsProvider.isRegistered()=")
Wyatt Riley74479bd2018-01-17 08:48:27 -08002196 .append(mGnssMeasurementsProvider.isRegistered()).append('\n');
Soonil Nagarkar1c572552019-07-10 13:31:47 -07002197 s.append("mGnssNavigationMessageProvider.isRegistered()=")
Wyatt Riley74479bd2018-01-17 08:48:27 -08002198 .append(mGnssNavigationMessageProvider.isRegistered()).append('\n');
Soonil Nagarkar1c572552019-07-10 13:31:47 -07002199 s.append("mDisableGpsForPowerManager=").append(mDisableGpsForPowerManager).append('\n');
2200 s.append("mTopHalCapabilities=0x").append(Integer.toHexString(mTopHalCapabilities));
destradaa25e8caf2015-08-24 14:14:44 -07002201 s.append(" ( ");
2202 if (hasCapability(GPS_CAPABILITY_SCHEDULING)) s.append("SCHEDULING ");
Nick Pelly6fa9ad42012-07-16 12:18:23 -07002203 if (hasCapability(GPS_CAPABILITY_MSB)) s.append("MSB ");
2204 if (hasCapability(GPS_CAPABILITY_MSA)) s.append("MSA ");
2205 if (hasCapability(GPS_CAPABILITY_SINGLE_SHOT)) s.append("SINGLE_SHOT ");
2206 if (hasCapability(GPS_CAPABILITY_ON_DEMAND_TIME)) s.append("ON_DEMAND_TIME ");
destradaa25e8caf2015-08-24 14:14:44 -07002207 if (hasCapability(GPS_CAPABILITY_GEOFENCING)) s.append("GEOFENCING ");
2208 if (hasCapability(GPS_CAPABILITY_MEASUREMENTS)) s.append("MEASUREMENTS ");
2209 if (hasCapability(GPS_CAPABILITY_NAV_MESSAGES)) s.append("NAV_MESSAGES ");
Anil Admalefd9dc62019-03-12 17:39:20 -07002210 if (hasCapability(GPS_CAPABILITY_LOW_POWER_MODE)) s.append("LOW_POWER_MODE ");
2211 if (hasCapability(GPS_CAPABILITY_SATELLITE_BLACKLIST)) s.append("SATELLITE_BLACKLIST ");
Anil Admal62c42dc2019-04-03 15:39:22 -07002212 if (hasCapability(GPS_CAPABILITY_MEASUREMENT_CORRECTIONS)) {
2213 s.append("MEASUREMENT_CORRECTIONS ");
2214 }
Nick Pelly6fa9ad42012-07-16 12:18:23 -07002215 s.append(")\n");
Anil Admal3ba0fa92019-04-19 17:43:00 -07002216 if (hasCapability(GPS_CAPABILITY_MEASUREMENT_CORRECTIONS)) {
Soonil Nagarkar1c572552019-07-10 13:31:47 -07002217 s.append("SubHal=MEASUREMENT_CORRECTIONS[");
Anil Admalefd9dc62019-03-12 17:39:20 -07002218 s.append(mGnssMeasurementCorrectionsProvider.toStringCapabilities());
2219 s.append("]\n");
2220 }
Siddharth Raybb608c82017-03-16 11:33:34 -07002221 s.append(mGnssMetrics.dumpGnssMetricsAsText());
Soonil Nagarkar1c572552019-07-10 13:31:47 -07002222 s.append("native internal state: \n");
2223 s.append(" ").append(native_get_internal_state());
Wyatt Rileycf879db2017-01-12 13:57:38 -08002224 s.append("\n");
Nick Pelly6fa9ad42012-07-16 12:18:23 -07002225 pw.append(s);
2226 }
2227
Anil Admal0c2b21bd2019-05-03 18:29:02 -07002228 private void setupNativeGnssService(boolean reinitializeGnssServiceHandle) {
2229 native_init_once(reinitializeGnssServiceHandle);
Anil Admal7e3953b2019-05-04 20:45:22 -07002230
2231 /*
2232 * A cycle of native_init() and native_cleanup() is needed so that callbacks are
2233 * registered after bootup even when location is disabled.
2234 * This will allow Emergency SUPL to work even when location is disabled before device
2235 * restart.
2236 */
2237 boolean isInitialized = native_init();
2238 if (!isInitialized) {
2239 Log.w(TAG, "Native initialization failed.");
2240 } else {
2241 native_cleanup();
2242 }
2243 }
2244
Mike Lockwoodb16e7802009-08-06 09:26:02 -04002245 // preallocated to avoid memory allocation in reportNmea()
2246 private byte[] mNmeaBuffer = new byte[120];
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002247
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002248 private static native void class_init_native();
gomo48f1a642017-11-10 20:35:46 -08002249
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002250 private static native boolean native_is_supported();
gomo48f1a642017-11-10 20:35:46 -08002251
Anil Admal94ec76a2019-01-15 09:42:01 -08002252 private static native boolean native_is_gnss_visibility_control_supported();
2253
Anil Admal0c2b21bd2019-05-03 18:29:02 -07002254 private static native void native_init_once(boolean reinitializeGnssServiceHandle);
Yu-Han Yang6d317352018-03-15 11:53:01 -07002255
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002256 private native boolean native_init();
gomo48f1a642017-11-10 20:35:46 -08002257
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002258 private native void native_cleanup();
gomo48f1a642017-11-10 20:35:46 -08002259
Mike Lockwood04598b62010-04-14 17:17:24 -04002260 private native boolean native_set_position_mode(int mode, int recurrence, int min_interval,
gomo48f1a642017-11-10 20:35:46 -08002261 int preferred_accuracy, int preferred_time, boolean lowPowerMode);
2262
Mike Lockwood04598b62010-04-14 17:17:24 -04002263 private native boolean native_start();
gomo48f1a642017-11-10 20:35:46 -08002264
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002265 private native boolean native_stop();
gomo48f1a642017-11-10 20:35:46 -08002266
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002267 private native void native_delete_aiding_data(int flags);
gomo48f1a642017-11-10 20:35:46 -08002268
Mike Lockwoodf602d362010-06-20 14:28:16 -07002269 private native int native_read_nmea(byte[] buffer, int bufferSize);
gomo48f1a642017-11-10 20:35:46 -08002270
Yu-Han Yange7baef32018-02-09 13:58:17 -08002271 private native void native_inject_best_location(
Pierre Fite-Georgelb50cdaf2019-02-25 15:42:45 -08002272 int gnssLocationFlags, double latitudeDegrees, double longitudeDegrees,
2273 double altitudeMeters, float speedMetersPerSec, float bearingDegrees,
2274 float horizontalAccuracyMeters, float verticalAccuracyMeters,
2275 float speedAccuracyMetersPerSecond, float bearingAccuracyDegrees,
Pierre Fite-Georgel9e96c572019-02-25 16:12:53 -08002276 long timestamp, int elapsedRealtimeFlags, long elapsedRealtimeNanos,
Yu-Han Yang3cd9a862019-03-25 17:00:03 -07002277 double elapsedRealtimeUncertaintyNanos);
Yu-Han Yange7baef32018-02-09 13:58:17 -08002278
Mike Lockwoodd26ce0d2009-06-11 12:25:46 -04002279 private native void native_inject_location(double latitude, double longitude, float accuracy);
2280
Kevin Tang8c6ac672019-03-22 12:31:01 -07002281 // PSDS Support
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002282 private native void native_inject_time(long time, long timeReference, int uncertainty);
gomo48f1a642017-11-10 20:35:46 -08002283
Kevin Tang8c6ac672019-03-22 12:31:01 -07002284 private native boolean native_supports_psds();
gomo48f1a642017-11-10 20:35:46 -08002285
Kevin Tang8c6ac672019-03-22 12:31:01 -07002286 private native void native_inject_psds_data(byte[] data, int length);
The Android Open Source Project10592532009-03-18 17:39:46 -07002287
Fred Fettinger3c8fbdf2010-01-04 15:38:13 -06002288 // DEBUG Support
2289 private native String native_get_internal_state();
2290
2291 // AGPS Support
gomo48f1a642017-11-10 20:35:46 -08002292 private native void native_agps_ni_message(byte[] msg, int length);
2293
Mike Lockwooda9e54612009-06-19 14:54:42 -04002294 private native void native_set_agps_server(int type, String hostname, int port);
Danke Xie22d1f9f2009-08-18 18:28:45 -04002295
2296 // Network-initiated (NI) Support
2297 private native void native_send_ni_response(int notificationId, int userResponse);
Miguel Torroja1e84da82010-07-27 07:02:24 +02002298
Anil Admal50ba15e2018-11-01 16:42:42 -07002299 // AGPS ril support
Miguel Torroja1e84da82010-07-27 07:02:24 +02002300 private native void native_agps_set_ref_location_cellid(int type, int mcc, int mnc,
2301 int lac, int cid);
gomo48f1a642017-11-10 20:35:46 -08002302
Miguel Torroja1e84da82010-07-27 07:02:24 +02002303 private native void native_agps_set_id(int type, String setid);
Pierre Fite-Georgelb50cdaf2019-02-25 15:42:45 -08002304}