blob: 4b79677b475b506be4ef53792c4d42d1611832cc [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;
40import android.location.LocationProvider;
Stan Chesnutt1d72d8c2013-04-15 19:18:02 -070041import android.location.LocationRequest;
Kevin Tang40e1baf2012-01-10 14:32:44 -080042import android.os.AsyncTask;
Dianne Hackborn91268cf2013-06-13 19:06:50 -070043import android.os.BatteryStats;
Mike Lockwood63aa5a62010-04-14 19:21:31 -040044import android.os.Binder;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080045import android.os.Bundle;
Mike Lockwood62a8fc12010-03-22 14:23:26 -040046import android.os.Handler;
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;
jackqdyulei455e90a2017-02-09 15:29:16 -080071import com.android.internal.app.IBatteryStats;
72import com.android.internal.location.GpsNetInitiatedHandler;
73import com.android.internal.location.GpsNetInitiatedHandler.GpsNiNotification;
74import com.android.internal.location.ProviderProperties;
75import com.android.internal.location.ProviderRequest;
Yu-Han Yange7baef32018-02-09 13:58:17 -080076import com.android.internal.location.gnssmetrics.GnssMetrics;
Anil Admale1539e82019-05-09 15:05:04 -070077import com.android.internal.telephony.TelephonyIntents;
Kweku Adamsb8bb9fb2019-08-28 07:45:00 -070078import com.android.server.DeviceIdleController;
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(
117 true, true, false, false, true, true, true,
118 Criteria.POWER_HIGH, Criteria.ACCURACY_FINE);
119
gomo4402af62017-01-11 13:20:13 -0800120 // these need to match GnssPositionMode enum in IGnss.hal
The Android Open Source Project10592532009-03-18 17:39:46 -0700121 private static final int GPS_POSITION_MODE_STANDALONE = 0;
122 private static final int GPS_POSITION_MODE_MS_BASED = 1;
123 private static final int GPS_POSITION_MODE_MS_ASSISTED = 2;
124
gomo4402af62017-01-11 13:20:13 -0800125 // these need to match GnssPositionRecurrence enum in IGnss.hal
Mike Lockwood04598b62010-04-14 17:17:24 -0400126 private static final int GPS_POSITION_RECURRENCE_PERIODIC = 0;
127 private static final int GPS_POSITION_RECURRENCE_SINGLE = 1;
128
gomo4402af62017-01-11 13:20:13 -0800129 // these need to match GnssStatusValue enum in IGnssCallback.hal
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800130 private static final int GPS_STATUS_NONE = 0;
131 private static final int GPS_STATUS_SESSION_BEGIN = 1;
132 private static final int GPS_STATUS_SESSION_END = 2;
133 private static final int GPS_STATUS_ENGINE_ON = 3;
134 private static final int GPS_STATUS_ENGINE_OFF = 4;
135
gomo4402af62017-01-11 13:20:13 -0800136 // these need to match GnssLocationFlags enum in types.hal
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800137 private static final int LOCATION_INVALID = 0;
138 private static final int LOCATION_HAS_LAT_LONG = 1;
139 private static final int LOCATION_HAS_ALTITUDE = 2;
140 private static final int LOCATION_HAS_SPEED = 4;
141 private static final int LOCATION_HAS_BEARING = 8;
gomo4402af62017-01-11 13:20:13 -0800142 private static final int LOCATION_HAS_HORIZONTAL_ACCURACY = 16;
143 private static final int LOCATION_HAS_VERTICAL_ACCURACY = 32;
144 private static final int LOCATION_HAS_SPEED_ACCURACY = 64;
145 private static final int LOCATION_HAS_BEARING_ACCURACY = 128;
Mike Lockwoode3635c92009-05-11 08:38:02 -0400146
Pierre Fite-Georgelb50cdaf2019-02-25 15:42:45 -0800147 // these need to match ElapsedRealtimeFlags enum in types.hal
148 private static final int ELAPSED_REALTIME_HAS_TIMESTAMP_NS = 1;
Pierre Fite-Georgel9e96c572019-02-25 16:12:53 -0800149 private static final int ELAPSED_REALTIME_HAS_TIME_UNCERTAINTY_NS = 2;
Pierre Fite-Georgelb50cdaf2019-02-25 15:42:45 -0800150
gomo4402af62017-01-11 13:20:13 -0800151 // IMPORTANT - the GPS_DELETE_* symbols here must match GnssAidingData enum in IGnss.hal
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800152 private static final int GPS_DELETE_EPHEMERIS = 0x0001;
153 private static final int GPS_DELETE_ALMANAC = 0x0002;
154 private static final int GPS_DELETE_POSITION = 0x0004;
155 private static final int GPS_DELETE_TIME = 0x0008;
156 private static final int GPS_DELETE_IONO = 0x0010;
157 private static final int GPS_DELETE_UTC = 0x0020;
158 private static final int GPS_DELETE_HEALTH = 0x0040;
159 private static final int GPS_DELETE_SVDIR = 0x0080;
160 private static final int GPS_DELETE_SVSTEER = 0x0100;
161 private static final int GPS_DELETE_SADATA = 0x0200;
162 private static final int GPS_DELETE_RTI = 0x0400;
163 private static final int GPS_DELETE_CELLDB_INFO = 0x8000;
164 private static final int GPS_DELETE_ALL = 0xFFFF;
165
gomo4402af62017-01-11 13:20:13 -0800166 // The GPS_CAPABILITY_* flags must match Capabilities enum in IGnssCallback.hal
Mike Lockwood04598b62010-04-14 17:17:24 -0400167 private static final int GPS_CAPABILITY_SCHEDULING = 0x0000001;
168 private static final int GPS_CAPABILITY_MSB = 0x0000002;
169 private static final int GPS_CAPABILITY_MSA = 0x0000004;
170 private static final int GPS_CAPABILITY_SINGLE_SHOT = 0x0000008;
Mike Lockwood9b9fb5c2011-06-29 15:09:40 -0400171 private static final int GPS_CAPABILITY_ON_DEMAND_TIME = 0x0000010;
Anil Admalefd9dc62019-03-12 17:39:20 -0700172 public static final int GPS_CAPABILITY_GEOFENCING = 0x0000020;
gomo226b7b72018-12-12 16:49:39 -0800173 public static final int GPS_CAPABILITY_MEASUREMENTS = 0x0000040;
Anil Admalefd9dc62019-03-12 17:39:20 -0700174 public static final int GPS_CAPABILITY_NAV_MESSAGES = 0x0000080;
Anil Admal62c42dc2019-04-03 15:39:22 -0700175 public static final int GPS_CAPABILITY_LOW_POWER_MODE = 0x0000100;
176 public static final int GPS_CAPABILITY_SATELLITE_BLACKLIST = 0x0000200;
177 public static final int GPS_CAPABILITY_MEASUREMENT_CORRECTIONS = 0x0000400;
Mike Lockwood04598b62010-04-14 17:17:24 -0400178
Tsuwei Chen462bcd82014-09-17 12:28:49 -0700179 // The AGPS SUPL mode
180 private static final int AGPS_SUPL_MODE_MSA = 0x02;
181 private static final int AGPS_SUPL_MODE_MSB = 0x01;
182
Kweku Adamsb8bb9fb2019-08-28 07:45:00 -0700183 private static final int UPDATE_LOW_POWER_MODE = 1;
Nick Pelly6fa9ad42012-07-16 12:18:23 -0700184 private static final int SET_REQUEST = 3;
Mike Lockwood62a8fc12010-03-22 14:23:26 -0400185 private static final int INJECT_NTP_TIME = 5;
Kevin Tang8c6ac672019-03-22 12:31:01 -0700186 // PSDS stands for Predicted Satellite Data Service
187 private static final int DOWNLOAD_PSDS_DATA = 6;
Wyatt Rileyc7067412018-02-07 15:50:35 -0800188 private static final int UPDATE_LOCATION = 7; // Handle external location from network listener
Kevin Tang8c6ac672019-03-22 12:31:01 -0700189 private static final int DOWNLOAD_PSDS_DATA_FINISHED = 11;
destradaafb23c672015-04-16 14:01:27 -0700190 private static final int INITIALIZE_HANDLER = 13;
Yu-Han Yange7baef32018-02-09 13:58:17 -0800191 private static final int REQUEST_LOCATION = 16;
Wyatt Riley26465d22018-02-12 13:44:24 -0800192 private static final int REPORT_LOCATION = 17; // HAL reports location
193 private static final int REPORT_SV_STATUS = 18; // HAL reports SV status
Mike Lockwood62a8fc12010-03-22 14:23:26 -0400194
Miguel Torroja1e84da82010-07-27 07:02:24 +0200195 // Request setid
196 private static final int AGPS_RIL_REQUEST_SETID_IMSI = 1;
197 private static final int AGPS_RIL_REQUEST_SETID_MSISDN = 2;
198
Miguel Torroja1e84da82010-07-27 07:02:24 +0200199 // ref. location info
200 private static final int AGPS_REF_LOCATION_TYPE_GSM_CELLID = 1;
201 private static final int AGPS_REF_LOCATION_TYPE_UMTS_CELLID = 2;
Miguel Torroja1e84da82010-07-27 07:02:24 +0200202
203 // set id info
204 private static final int AGPS_SETID_TYPE_NONE = 0;
205 private static final int AGPS_SETID_TYPE_IMSI = 1;
206 private static final int AGPS_SETID_TYPE_MSISDN = 2;
207
gomo48f1a642017-11-10 20:35:46 -0800208 private static final int GPS_GEOFENCE_UNAVAILABLE = 1 << 0L;
209 private static final int GPS_GEOFENCE_AVAILABLE = 1 << 1L;
destradaa0682809a2013-08-12 18:50:30 -0700210
gomo4402af62017-01-11 13:20:13 -0800211 // GPS Geofence errors. Should match GeofenceStatus enum in IGnssGeofenceCallback.hal.
destradaa0682809a2013-08-12 18:50:30 -0700212 private static final int GPS_GEOFENCE_OPERATION_SUCCESS = 0;
213 private static final int GPS_GEOFENCE_ERROR_TOO_MANY_GEOFENCES = 100;
gomo48f1a642017-11-10 20:35:46 -0800214 private static final int GPS_GEOFENCE_ERROR_ID_EXISTS = -101;
destradaa0682809a2013-08-12 18:50:30 -0700215 private static final int GPS_GEOFENCE_ERROR_ID_UNKNOWN = -102;
216 private static final int GPS_GEOFENCE_ERROR_INVALID_TRANSITION = -103;
217 private static final int GPS_GEOFENCE_ERROR_GENERIC = -149;
218
Tsuwei Chen678c13c2014-09-22 17:48:41 -0700219 // TCP/IP constants.
220 // Valid TCP/UDP port range is (0, 65535].
221 private static final int TCP_MIN_PORT = 0;
222 private static final int TCP_MAX_PORT = 0xffff;
223
Yu-Han Yange7baef32018-02-09 13:58:17 -0800224 // 1 second, or 1 Hz frequency.
225 private static final long LOCATION_UPDATE_MIN_TIME_INTERVAL_MILLIS = 1000;
Yu-Han Yang639f7592018-06-07 11:58:52 -0700226 // Default update duration in milliseconds for REQUEST_LOCATION.
Yu-Han Yang9e2a8232018-06-14 12:10:08 -0700227 private static final long LOCATION_UPDATE_DURATION_MILLIS = 10 * 1000;
Anil Admalb1c6c0d2019-06-20 12:00:16 -0700228 // Update duration extension multiplier for emergency REQUEST_LOCATION.
229 private static final int EMERGENCY_LOCATION_UPDATE_DURATION_MULTIPLIER = 3;
Yu-Han Yange7baef32018-02-09 13:58:17 -0800230
Nick Pelly6fa9ad42012-07-16 12:18:23 -0700231 /** simpler wrapper for ProviderRequest + Worksource */
232 private static class GpsRequest {
233 public ProviderRequest request;
234 public WorkSource source;
gomo48f1a642017-11-10 20:35:46 -0800235
Nick Pelly6fa9ad42012-07-16 12:18:23 -0700236 public GpsRequest(ProviderRequest request, WorkSource source) {
237 this.request = request;
238 this.source = source;
239 }
240 }
241
Wyatt Riley26465d22018-02-12 13:44:24 -0800242 // Threadsafe class to hold stats reported in the Extras Bundle
Wyatt Rileyc7067412018-02-07 15:50:35 -0800243 private static class LocationExtras {
244 private int mSvCount;
245 private int mMeanCn0;
246 private int mMaxCn0;
247 private final Bundle mBundle;
248
249 public LocationExtras() {
250 mBundle = new Bundle();
251 }
252
253 public void set(int svCount, int meanCn0, int maxCn0) {
Soonil Nagarkar1575a042018-10-24 17:54:54 -0700254 synchronized (this) {
Wyatt Riley26465d22018-02-12 13:44:24 -0800255 mSvCount = svCount;
256 mMeanCn0 = meanCn0;
257 mMaxCn0 = maxCn0;
258 }
Wyatt Rileyc7067412018-02-07 15:50:35 -0800259 setBundle(mBundle);
260 }
261
262 public void reset() {
Soonil Nagarkar1575a042018-10-24 17:54:54 -0700263 set(0, 0, 0);
Wyatt Rileyc7067412018-02-07 15:50:35 -0800264 }
265
266 // Also used by outside methods to add to other bundles
267 public void setBundle(Bundle extras) {
268 if (extras != null) {
Wyatt Riley26465d22018-02-12 13:44:24 -0800269 synchronized (this) {
270 extras.putInt("satellites", mSvCount);
271 extras.putInt("meanCn0", mMeanCn0);
272 extras.putInt("maxCn0", mMaxCn0);
273 }
Wyatt Rileyc7067412018-02-07 15:50:35 -0800274 }
275 }
276
277 public Bundle getBundle() {
Wyatt Riley26465d22018-02-12 13:44:24 -0800278 synchronized (this) {
279 return new Bundle(mBundle);
280 }
Wyatt Rileyc7067412018-02-07 15:50:35 -0800281 }
282 }
283
Yu-Han Yang66c7ea92018-03-11 17:17:15 -0700284 private final Object mLock = new Object();
Nick Pelly6fa9ad42012-07-16 12:18:23 -0700285
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800286 // current status
Mike Lockwood15e3d0f2009-05-01 07:53:28 -0400287 private int mStatus = LocationProvider.TEMPORARILY_UNAVAILABLE;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800288
289 // time for last status update
290 private long mStatusUpdateTime = SystemClock.elapsedRealtime();
Mike Lockwoodd53ba012010-04-15 20:41:26 -0400291
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800292 // turn off GPS fix icon if we haven't received a fix in 10 seconds
Mike Lockwood04598b62010-04-14 17:17:24 -0400293 private static final long RECENT_FIX_TIMEOUT = 10 * 1000;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800294
Mike Lockwood0632ca72009-05-14 15:51:03 -0400295 // stop trying if we do not receive a fix within 60 seconds
Mike Lockwood04598b62010-04-14 17:17:24 -0400296 private static final int NO_FIX_TIMEOUT = 60 * 1000;
Mike Lockwood0632ca72009-05-14 15:51:03 -0400297
Nick Pellyb041f232012-05-07 17:12:25 -0700298 // if the fix interval is below this we leave GPS on,
299 // if above then we cycle the GPS driver.
300 // Typical hot TTTF is ~5 seconds, so 10 seconds seems sane.
301 private static final int GPS_POLLING_THRESHOLD_INTERVAL = 10 * 1000;
302
Kevin Tang8c6ac672019-03-22 12:31:01 -0700303 // how long to wait if we have a network error in NTP or PSDS downloading
Wei Liu6f6326b2015-06-24 23:47:50 -0700304 // the initial value of the exponential backoff
Nick Pelly6fa9ad42012-07-16 12:18:23 -0700305 // current setting - 5 minutes
gomo48f1a642017-11-10 20:35:46 -0800306 private static final long RETRY_INTERVAL = 5 * 60 * 1000;
Kevin Tang8c6ac672019-03-22 12:31:01 -0700307 // how long to wait if we have a network error in NTP or PSDS downloading
Wei Liu6f6326b2015-06-24 23:47:50 -0700308 // the max value of the exponential backoff
309 // current setting - 4 hours
gomo48f1a642017-11-10 20:35:46 -0800310 private static final long MAX_RETRY_INTERVAL = 4 * 60 * 60 * 1000;
Wei Liu6f6326b2015-06-24 23:47:50 -0700311
Kevin Tang8c6ac672019-03-22 12:31:01 -0700312 // Timeout when holding wakelocks for downloading PSDS data.
313 private static final long DOWNLOAD_PSDS_DATA_TIMEOUT_MS = 60 * 1000;
Wei Wangc5706f62017-04-18 11:26:26 -0700314
Kevin Tang8c6ac672019-03-22 12:31:01 -0700315 private final ExponentialBackOff mPsdsBackOff = new ExponentialBackOff(RETRY_INTERVAL,
Yu-Han Yanga1862b52018-02-20 17:05:59 -0800316 MAX_RETRY_INTERVAL);
Nick Pelly6fa9ad42012-07-16 12:18:23 -0700317
Yu-Han Yang76f99952019-05-04 17:45:44 -0700318 // True if we are enabled
319 @GuardedBy("mLock")
320 private boolean mGpsEnabled;
Nick Pelly6fa9ad42012-07-16 12:18:23 -0700321
Soonil Nagarkar35c3b912019-01-31 10:31:24 -0800322 private boolean mShutdown;
323
Kevin Tang8c6ac672019-03-22 12:31:01 -0700324 // states for injecting ntp and downloading psds data
Kevin Tang40e1baf2012-01-10 14:32:44 -0800325 private static final int STATE_PENDING_NETWORK = 0;
326 private static final int STATE_DOWNLOADING = 1;
327 private static final int STATE_IDLE = 2;
328
Kevin Tang8c6ac672019-03-22 12:31:01 -0700329 // flags to trigger NTP or PSDS data download when network becomes available
330 // initialized to true so we do NTP and PSDS when the network comes up after booting
331 private int mDownloadPsdsDataPending = STATE_PENDING_NETWORK;
Mike Lockwood62a8fc12010-03-22 14:23:26 -0400332
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800333 // true if GPS is navigating
334 private boolean mNavigating;
Mike Lockwoodcf1d8cb2010-01-20 10:14:54 -0500335
Mike Lockwood04598b62010-04-14 17:17:24 -0400336 // requested frequency of fixes, in milliseconds
337 private int mFixInterval = 1000;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800338
gomo48f1a642017-11-10 20:35:46 -0800339 // true if low power mode for the GNSS chipset is part of the latest request.
340 private boolean mLowPowerMode = false;
341
WyattRileyba6072f2019-04-18 07:37:52 -0700342 // 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 -0800343 private boolean mStarted;
344
WyattRileyba6072f2019-04-18 07:37:52 -0700345 // for logging of latest change, and warning of ongoing location after a stop
346 private long mStartedChangedElapsedRealtime;
347
348 // threshold for delay in GNSS engine turning off before warning & error
349 private static final long LOCATION_OFF_DELAY_THRESHOLD_WARN_MILLIS = 2 * 1000;
350 private static final long LOCATION_OFF_DELAY_THRESHOLD_ERROR_MILLIS = 15 * 1000;
351
Anil Admal312fddb2019-03-25 12:15:43 -0700352 // capabilities reported through the top level IGnssCallback.hal
353 private volatile int mTopHalCapabilities;
Mike Lockwood04598b62010-04-14 17:17:24 -0400354
Kevin Tang8c6ac672019-03-22 12:31:01 -0700355 // true if PSDS is supported
356 private boolean mSupportsPsds;
Mike Lockwood1a1cd3a2010-08-17 07:42:54 -0400357
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800358 // for calculating time to first fix
359 private long mFixRequestTime = 0;
360 // time to first fix for most recent session
Nick Pelly6fa9ad42012-07-16 12:18:23 -0700361 private int mTimeToFirstFix = 0;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800362 // time we received our last fix
363 private long mLastFixTime;
364
Mike Lockwood04598b62010-04-14 17:17:24 -0400365 private int mPositionMode;
Yu-Han Yangc8b9ff72018-04-17 00:47:24 -0700366 private GnssPositionMode mLastPositionMode;
Mike Lockwood04598b62010-04-14 17:17:24 -0400367
David Christied4edf4c2014-08-12 15:22:27 -0700368 // Current request from underlying location clients.
Soonil Nagarkar35c3b912019-01-31 10:31:24 -0800369 private ProviderRequest mProviderRequest;
Narayan Kamath32684dd2018-01-08 17:32:51 +0000370 // The WorkSource associated with the most recent client request (i.e, most recent call to
371 // setRequest).
David Christied4edf4c2014-08-12 15:22:27 -0700372 private WorkSource mWorkSource = null;
WyattRileyb2446072019-03-01 07:41:49 -0800373 // True if gps should be disabled because of PowerManager controls
374 private boolean mDisableGpsForPowerManager = false;
David Christied4edf4c2014-08-12 15:22:27 -0700375
destradaafb23c672015-04-16 14:01:27 -0700376 /**
Kweku Adamsb8bb9fb2019-08-28 07:45:00 -0700377 * True if the device idle controller has determined that the device is stationary. This is only
378 * updated when the device enters idle mode.
379 */
380 private volatile boolean mIsDeviceStationary = false;
381
382 /**
destradaafb23c672015-04-16 14:01:27 -0700383 * Properties loaded from PROPERTIES_FILE.
384 * It must be accessed only inside {@link #mHandler}.
385 */
Anil Admald71cf142018-12-21 14:59:36 -0800386 private GnssConfiguration mGnssConfiguration;
destradaafb23c672015-04-16 14:01:27 -0700387
Mike Lockwood734d6032009-07-28 18:30:25 -0700388 private String mSuplServerHost;
Tsuwei Chen678c13c2014-09-22 17:48:41 -0700389 private int mSuplServerPort = TCP_MIN_PORT;
Mike Lockwood734d6032009-07-28 18:30:25 -0700390 private String mC2KServerHost;
391 private int mC2KServerPort;
Tsuwei Chen3324e952014-09-07 01:30:42 -0700392 private boolean mSuplEsEnabled = false;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800393
Anil Admal94ec76a2019-01-15 09:42:01 -0800394 private final Looper mLooper;
Wyatt Rileyc7067412018-02-07 15:50:35 -0800395 private final LocationExtras mLocationExtras = new LocationExtras();
Anil Admal75b9fd62018-11-28 11:22:50 -0800396 private final GnssStatusListenerHelper mGnssStatusListenerHelper;
Lifu Tang818aa2c2016-02-01 01:52:00 -0800397 private final GnssMeasurementsProvider mGnssMeasurementsProvider;
Anil Admalefd9dc62019-03-12 17:39:20 -0700398 private final GnssMeasurementCorrectionsProvider mGnssMeasurementCorrectionsProvider;
Lifu Tang818aa2c2016-02-01 01:52:00 -0800399 private final GnssNavigationMessageProvider mGnssNavigationMessageProvider;
Yu-Han Yang07561382018-02-21 13:08:37 -0800400 private final LocationChangeListener mNetworkLocationListener = new NetworkLocationListener();
401 private final LocationChangeListener mFusedLocationListener = new FusedLocationListener();
Yu-Han Yanga1862b52018-02-20 17:05:59 -0800402 private final NtpTimeHelper mNtpTimeHelper;
Yu-Han Yang3557cc72018-03-21 12:48:36 -0700403 private final GnssBatchingProvider mGnssBatchingProvider;
Yu-Han Yang890ca8b2018-04-16 22:11:31 -0700404 private final GnssGeofenceProvider mGnssGeofenceProvider;
Anil Admal312fddb2019-03-25 12:15:43 -0700405 private final GnssCapabilitiesProvider mGnssCapabilitiesProvider;
406
Anil Admal316f9482019-02-12 18:57:18 -0800407 // Available only on GNSS HAL 2.0 implementations and later.
Anil Admal94ec76a2019-01-15 09:42:01 -0800408 private GnssVisibilityControl mGnssVisibilityControl;
Mike Lockwood62a8fc12010-03-22 14:23:26 -0400409
Victoria Lease5c24fd02012-10-01 11:00:50 -0700410 // Handler for processing events
Mike Lockwood62a8fc12010-03-22 14:23:26 -0400411 private Handler mHandler;
The Android Open Source Project10592532009-03-18 17:39:46 -0700412
Anil Admal50ba15e2018-11-01 16:42:42 -0700413 private final GnssNetworkConnectivityHandler mNetworkConnectivityHandler;
Nick Pelly6fa9ad42012-07-16 12:18:23 -0700414 private final GpsNetInitiatedHandler mNIHandler;
Mike Lockwood2f82c4e2009-04-17 08:24:10 -0400415
Mike Lockwood0528b9b2009-05-07 10:12:54 -0400416 // Wakelocks
Lifu Tang30f95a72016-01-07 23:20:38 -0800417 private final static String WAKELOCK_KEY = "GnssLocationProvider";
Mike Lockwood0528b9b2009-05-07 10:12:54 -0400418 private final PowerManager.WakeLock mWakeLock;
Kevin Tang8c6ac672019-03-22 12:31:01 -0700419 private static final String DOWNLOAD_EXTRA_WAKELOCK_KEY = "GnssLocationProviderPsdsDownload";
Yu-Han Yang76f99952019-05-04 17:45:44 -0700420 @GuardedBy("mLock")
Kevin Tang8c6ac672019-03-22 12:31:01 -0700421 private final PowerManager.WakeLock mDownloadPsdsWakeLock;
Mike Lockwood0528b9b2009-05-07 10:12:54 -0400422
Mike Lockwood29c84342009-05-06 14:01:15 -0400423 // Alarms
424 private final static String ALARM_WAKEUP = "com.android.internal.location.ALARM_WAKEUP";
Mike Lockwood0632ca72009-05-14 15:51:03 -0400425 private final static String ALARM_TIMEOUT = "com.android.internal.location.ALARM_TIMEOUT";
Tsuwei Chen52617bb2014-08-25 11:49:11 -0700426
David Christied4edf4c2014-08-12 15:22:27 -0700427 private final PowerManager mPowerManager;
Mike Lockwood29c84342009-05-06 14:01:15 -0400428 private final AlarmManager mAlarmManager;
429 private final PendingIntent mWakeupIntent;
Mike Lockwood0632ca72009-05-14 15:51:03 -0400430 private final PendingIntent mTimeoutIntent;
Mike Lockwood29c84342009-05-06 14:01:15 -0400431
Svet Ganovf7b47252018-02-26 11:11:27 -0800432 private final AppOpsManager mAppOps;
Mike Lockwood2f82c4e2009-04-17 08:24:10 -0400433 private final IBatteryStats mBatteryStats;
The Android Open Source Project10592532009-03-18 17:39:46 -0700434
Narayan Kamath32684dd2018-01-08 17:32:51 +0000435 // Current list of underlying location clients.
Nick Pelly6fa9ad42012-07-16 12:18:23 -0700436 // only modified on handler thread
Dianne Hackborn002a54e2013-01-10 17:34:55 -0800437 private WorkSource mClientSource = new WorkSource();
Mike Lockwoodf1218be2010-01-29 09:20:06 -0500438
Jaikumar Ganesh8ce470d2013-04-03 12:22:18 -0700439 private GeofenceHardwareImpl mGeofenceHardwareImpl;
Wyatt Rileyd87cf912017-12-05 09:31:52 -0800440
441 // Volatile for simple inter-thread sync on these values.
442 private volatile int mHardwareYear = 0;
Wyatt Riley49097c02018-03-15 09:14:43 -0700443 private volatile String mHardwareModelName;
Lifu Tang82f893d2016-01-21 18:15:33 -0800444
Wyatt Riley5d5bac82016-11-01 07:05:16 -0700445 // Set lower than the current ITAR limit of 600m/s to allow this to trigger even if GPS HAL
446 // stops output right at 600m/s, depriving this of the information of a device that reaches
447 // greater than 600m/s, and higher than the speed of sound to avoid impacting most use cases.
448 private static final float ITAR_SPEED_LIMIT_METERS_PER_SECOND = 400.0F;
Wyatt Riley042c48f2017-10-06 14:59:25 -0700449
Wyatt Riley042c48f2017-10-06 14:59:25 -0700450 private volatile boolean mItarSpeedLimitExceeded = false;
Wyatt Riley5d5bac82016-11-01 07:05:16 -0700451
Siddharth Raybb608c82017-03-16 11:33:34 -0700452 // GNSS Metrics
453 private GnssMetrics mGnssMetrics;
454
Anil Admal75b9fd62018-11-28 11:22:50 -0800455 public GnssStatusListenerHelper getGnssStatusProvider() {
456 return mGnssStatusListenerHelper;
Mike Lockwood15e3d0f2009-05-01 07:53:28 -0400457 }
458
Jaikumar Ganesh8ce470d2013-04-03 12:22:18 -0700459 public IGpsGeofenceHardware getGpsGeofenceProxy() {
Yu-Han Yang890ca8b2018-04-16 22:11:31 -0700460 return mGnssGeofenceProvider;
Jaikumar Ganesh8ce470d2013-04-03 12:22:18 -0700461 }
462
Lifu Tang818aa2c2016-02-01 01:52:00 -0800463 public GnssMeasurementsProvider getGnssMeasurementsProvider() {
464 return mGnssMeasurementsProvider;
destradaaea8a8a62014-06-23 18:19:03 -0700465 }
466
Anil Admalefd9dc62019-03-12 17:39:20 -0700467 public GnssMeasurementCorrectionsProvider getGnssMeasurementCorrectionsProvider() {
468 return mGnssMeasurementCorrectionsProvider;
469 }
470
Lifu Tang818aa2c2016-02-01 01:52:00 -0800471 public GnssNavigationMessageProvider getGnssNavigationMessageProvider() {
472 return mGnssNavigationMessageProvider;
destradaa4b3e3932014-07-21 18:01:47 -0700473 }
Kweku Adamsb8bb9fb2019-08-28 07:45:00 -0700474
475 private final DeviceIdleController.StationaryListener mDeviceIdleStationaryListener =
476 isStationary -> {
477 mIsDeviceStationary = isStationary;
478 // Call updateLowPowerMode on handler thread so it's always called from the same
479 // thread.
480 mHandler.sendEmptyMessage(UPDATE_LOW_POWER_MODE);
481 };
482
Tsuwei Chen52617bb2014-08-25 11:49:11 -0700483 private final BroadcastReceiver mBroadcastReceiver = new BroadcastReceiver() {
gomo48f1a642017-11-10 20:35:46 -0800484 @Override
485 public void onReceive(Context context, Intent intent) {
The Android Open Source Project10592532009-03-18 17:39:46 -0700486 String action = intent.getAction();
Tsuwei Chen48d37f92014-09-05 15:15:34 -0700487 if (DEBUG) Log.d(TAG, "receive broadcast intent, action: " + action);
destradaaee9fd342015-08-31 13:31:17 -0700488 if (action == null) {
489 return;
490 }
491
Soonil Nagarkar1575a042018-10-24 17:54:54 -0700492 switch (action) {
493 case ALARM_WAKEUP:
Yu-Han Yang6a5f0b72019-01-24 18:34:28 -0800494 startNavigating();
Soonil Nagarkar1575a042018-10-24 17:54:54 -0700495 break;
496 case ALARM_TIMEOUT:
497 hibernate();
498 break;
Soonil Nagarkar1575a042018-10-24 17:54:54 -0700499 case PowerManager.ACTION_DEVICE_IDLE_MODE_CHANGED:
Kweku Adamsb8bb9fb2019-08-28 07:45:00 -0700500 DeviceIdleController.LocalService deviceIdleService = LocalServices.getService(
501 DeviceIdleController.LocalService.class);
502 if (mPowerManager.isDeviceIdleMode()) {
503 deviceIdleService.registerStationaryListener(mDeviceIdleStationaryListener);
504 } else {
505 deviceIdleService.unregisterStationaryListener(
506 mDeviceIdleStationaryListener);
507 }
508 // Intentional fall-through.
509 case PowerManager.ACTION_POWER_SAVE_MODE_CHANGED:
Soonil Nagarkar1575a042018-10-24 17:54:54 -0700510 case Intent.ACTION_SCREEN_OFF:
511 case Intent.ACTION_SCREEN_ON:
Kweku Adamsb8bb9fb2019-08-28 07:45:00 -0700512 // Call updateLowPowerMode on handler thread so it's always called from the
513 // same thread.
514 mHandler.sendEmptyMessage(UPDATE_LOW_POWER_MODE);
Soonil Nagarkar1575a042018-10-24 17:54:54 -0700515 break;
Meng Wang19b214d2018-11-07 12:14:39 -0800516 case CarrierConfigManager.ACTION_CARRIER_CONFIG_CHANGED:
Anil Admale1539e82019-05-09 15:05:04 -0700517 case TelephonyIntents.ACTION_DEFAULT_DATA_SUBSCRIPTION_CHANGED:
Meng Wang19b214d2018-11-07 12:14:39 -0800518 subscriptionOrCarrierConfigChanged(context);
Soonil Nagarkar1575a042018-10-24 17:54:54 -0700519 break;
David Christied4edf4c2014-08-12 15:22:27 -0700520 }
The Android Open Source Project10592532009-03-18 17:39:46 -0700521 }
Mike Lockwood29c84342009-05-06 14:01:15 -0400522 };
The Android Open Source Project10592532009-03-18 17:39:46 -0700523
Yu-Han Yang66c7ea92018-03-11 17:17:15 -0700524 /**
525 * Implements {@link GnssSatelliteBlacklistCallback#onUpdateSatelliteBlacklist}.
526 */
527 @Override
528 public void onUpdateSatelliteBlacklist(int[] constellations, int[] svids) {
Anil Admald71cf142018-12-21 14:59:36 -0800529 mHandler.post(() -> mGnssConfiguration.setSatelliteBlacklist(constellations, svids));
Yu-Han Yang284234e2019-03-28 19:35:57 -0700530 mGnssMetrics.resetConstellationTypes();
Yu-Han Yang66c7ea92018-03-11 17:17:15 -0700531 }
532
Meng Wang19b214d2018-11-07 12:14:39 -0800533 private void subscriptionOrCarrierConfigChanged(Context context) {
Joe Onorato0c484102016-02-01 18:04:24 -0800534 if (DEBUG) Log.d(TAG, "received SIM related action: ");
Wink Savillea374c3d2014-11-11 11:48:04 -0800535 TelephonyManager phone = (TelephonyManager)
536 mContext.getSystemService(Context.TELEPHONY_SERVICE);
Ecco Park4fa1ab72016-10-24 13:04:52 -0700537 CarrierConfigManager configManager = (CarrierConfigManager)
538 mContext.getSystemService(Context.CARRIER_CONFIG_SERVICE);
Anil Admale1539e82019-05-09 15:05:04 -0700539 int ddSubId = SubscriptionManager.getDefaultDataSubscriptionId();
540 String mccMnc = SubscriptionManager.isValidSubscriptionId(ddSubId)
541 ? phone.getSimOperator(ddSubId) : phone.getSimOperator();
Ecco Park4fa1ab72016-10-24 13:04:52 -0700542 boolean isKeepLppProfile = false;
Wink Savillea374c3d2014-11-11 11:48:04 -0800543 if (!TextUtils.isEmpty(mccMnc)) {
Joe Onorato0c484102016-02-01 18:04:24 -0800544 if (DEBUG) Log.d(TAG, "SIM MCC/MNC is available: " + mccMnc);
Yu-Han Yang76f99952019-05-04 17:45:44 -0700545 if (configManager != null) {
Anil Admale1539e82019-05-09 15:05:04 -0700546 PersistableBundle b = SubscriptionManager.isValidSubscriptionId(ddSubId)
547 ? configManager.getConfigForSubId(ddSubId) : null;
Yu-Han Yang76f99952019-05-04 17:45:44 -0700548 if (b != null) {
549 isKeepLppProfile =
550 b.getBoolean(CarrierConfigManager.Gps.KEY_PERSIST_LPP_MODE_BOOL);
Ecco Park4fa1ab72016-10-24 13:04:52 -0700551 }
Wink Savillea374c3d2014-11-11 11:48:04 -0800552 }
Yu-Han Yang76f99952019-05-04 17:45:44 -0700553 if (isKeepLppProfile) {
554 // load current properties for the carrier
555 mGnssConfiguration.loadPropertiesFromCarrierConfig();
556 String lpp_profile = mGnssConfiguration.getLppProfile();
557 // set the persist property LPP_PROFILE for the value
558 if (lpp_profile != null) {
559 SystemProperties.set(GnssConfiguration.LPP_PROFILE, lpp_profile);
560 }
561 } else {
562 // reset the persist property
563 SystemProperties.set(GnssConfiguration.LPP_PROFILE, "");
564 }
565 reloadGpsProperties();
Wink Savillea374c3d2014-11-11 11:48:04 -0800566 } else {
Joe Onorato0c484102016-02-01 18:04:24 -0800567 if (DEBUG) Log.d(TAG, "SIM MCC/MNC is still not available");
Wink Savillea374c3d2014-11-11 11:48:04 -0800568 }
569 }
570
David Christied4edf4c2014-08-12 15:22:27 -0700571 private void updateLowPowerMode() {
Kweku Adamsb8bb9fb2019-08-28 07:45:00 -0700572 // Disable GPS if we are in device idle mode and the device is stationary.
573 boolean disableGpsForPowerManager = mPowerManager.isDeviceIdleMode() && mIsDeviceStationary;
574 final PowerSaveState result = mPowerManager.getPowerSaveState(ServiceType.LOCATION);
Kweku Adams731a1032019-02-04 14:05:41 -0800575 switch (result.locationMode) {
Makoto Onuki57f0f552017-12-11 12:22:18 -0800576 case PowerManager.LOCATION_MODE_GPS_DISABLED_WHEN_SCREEN_OFF:
Kweku Adams5e0052b2019-02-22 15:17:52 -0800577 case PowerManager.LOCATION_MODE_ALL_DISABLED_WHEN_SCREEN_OFF:
Adam Lesinski87c17df2015-05-27 13:24:13 -0700578 // If we are in battery saver mode and the screen is off, disable GPS.
WyattRileyb2446072019-03-01 07:41:49 -0800579 disableGpsForPowerManager |=
580 result.batterySaverEnabled && !mPowerManager.isInteractive();
David Christied4edf4c2014-08-12 15:22:27 -0700581 break;
David Christied4edf4c2014-08-12 15:22:27 -0700582 }
WyattRileyb2446072019-03-01 07:41:49 -0800583 if (disableGpsForPowerManager != mDisableGpsForPowerManager) {
584 mDisableGpsForPowerManager = disableGpsForPowerManager;
Soonil Nagarkar35c3b912019-01-31 10:31:24 -0800585 updateEnabled();
David Christied4edf4c2014-08-12 15:22:27 -0700586 updateRequirements();
587 }
588 }
589
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800590 public static boolean isSupported() {
591 return native_is_supported();
592 }
593
Anil Admald71cf142018-12-21 14:59:36 -0800594 private void reloadGpsProperties() {
595 mGnssConfiguration.reloadGpsProperties();
596 setSuplHostPort();
Tsuwei Chen52617bb2014-08-25 11:49:11 -0700597 // TODO: we should get rid of C2K specific setting.
Anil Admald71cf142018-12-21 14:59:36 -0800598 mC2KServerHost = mGnssConfiguration.getC2KHost();
599 mC2KServerPort = mGnssConfiguration.getC2KPort(TCP_MIN_PORT);
600 mNIHandler.setEmergencyExtensionSeconds(mGnssConfiguration.getEsExtensionSec());
601 mSuplEsEnabled = mGnssConfiguration.getSuplEs(0) == 1;
Anil Admale1539e82019-05-09 15:05:04 -0700602 mNIHandler.setSuplEsEnabled(mSuplEsEnabled);
Anil Admal94ec76a2019-01-15 09:42:01 -0800603 if (mGnssVisibilityControl != null) {
Anil Admale1539e82019-05-09 15:05:04 -0700604 mGnssVisibilityControl.onConfigurationUpdated(mGnssConfiguration);
Anil Admal94ec76a2019-01-15 09:42:01 -0800605 }
Colin Cross7c030ed2014-01-28 09:33:53 -0800606 }
607
Soonil Nagarkar1575a042018-10-24 17:54:54 -0700608 public GnssLocationProvider(Context context, LocationProviderManager locationProviderManager,
Victoria Lease5cd731a2012-12-19 15:04:21 -0800609 Looper looper) {
Soonil Nagarkar0d77ea62019-01-31 14:36:56 -0800610 super(context, locationProviderManager);
Soonil Nagarkar1575a042018-10-24 17:54:54 -0700611
Anil Admal94ec76a2019-01-15 09:42:01 -0800612 mLooper = looper;
Mike Lockwood63598a02010-02-24 11:52:59 -0500613
Mike Lockwood0528b9b2009-05-07 10:12:54 -0400614 // Create a wake lock
David Christied4edf4c2014-08-12 15:22:27 -0700615 mPowerManager = (PowerManager) mContext.getSystemService(Context.POWER_SERVICE);
616 mWakeLock = mPowerManager.newWakeLock(PowerManager.PARTIAL_WAKE_LOCK, WAKELOCK_KEY);
Nick Pelly6fa9ad42012-07-16 12:18:23 -0700617 mWakeLock.setReferenceCounted(true);
Mike Lockwood0528b9b2009-05-07 10:12:54 -0400618
Kevin Tang8c6ac672019-03-22 12:31:01 -0700619 // Create a separate wake lock for psds downloader as it may be released due to timeout.
620 mDownloadPsdsWakeLock = mPowerManager.newWakeLock(
Wei Wangb71c0492017-05-01 20:24:19 -0700621 PowerManager.PARTIAL_WAKE_LOCK, DOWNLOAD_EXTRA_WAKELOCK_KEY);
Kevin Tang8c6ac672019-03-22 12:31:01 -0700622 mDownloadPsdsWakeLock.setReferenceCounted(true);
Wei Wangb71c0492017-05-01 20:24:19 -0700623
gomo48f1a642017-11-10 20:35:46 -0800624 mAlarmManager = (AlarmManager) mContext.getSystemService(Context.ALARM_SERVICE);
Mike Lockwood29c84342009-05-06 14:01:15 -0400625 mWakeupIntent = PendingIntent.getBroadcast(mContext, 0, new Intent(ALARM_WAKEUP), 0);
Mike Lockwood0632ca72009-05-14 15:51:03 -0400626 mTimeoutIntent = PendingIntent.getBroadcast(mContext, 0, new Intent(ALARM_TIMEOUT), 0);
Mike Lockwood29c84342009-05-06 14:01:15 -0400627
Anil Admal312fddb2019-03-25 12:15:43 -0700628 mNetworkConnectivityHandler = new GnssNetworkConnectivityHandler(context,
629 GnssLocationProvider.this::onNetworkAvailable, looper);
Mike Lockwood58bda982009-04-14 16:25:07 -0400630
Dianne Hackborna06de0f2012-12-11 16:34:47 -0800631 // App ops service to keep track of who is accessing the GPS
Svet Ganovf7b47252018-02-26 11:11:27 -0800632 mAppOps = mContext.getSystemService(AppOpsManager.class);
Dianne Hackborna06de0f2012-12-11 16:34:47 -0800633
Mike Lockwood2f82c4e2009-04-17 08:24:10 -0400634 // Battery statistics service to be notified when GPS turns on or off
Dianne Hackborn91268cf2013-06-13 19:06:50 -0700635 mBatteryStats = IBatteryStats.Stub.asInterface(ServiceManager.getService(
636 BatteryStats.SERVICE_NAME));
Mike Lockwood2f82c4e2009-04-17 08:24:10 -0400637
destradaafb23c672015-04-16 14:01:27 -0700638 // Construct internal handler
639 mHandler = new ProviderHandler(looper);
640
641 // Load GPS configuration and register listeners in the background:
642 // some operations, such as opening files and registering broadcast receivers, can take a
643 // relative long time, so the ctor() is kept to create objects needed by this instance,
644 // while IO initialization and registration is delegated to our internal handler
645 // this approach is just fine because events are posted to our handler anyway
Anil Admald71cf142018-12-21 14:59:36 -0800646 mGnssConfiguration = new GnssConfiguration(mContext);
Anil Admal312fddb2019-03-25 12:15:43 -0700647 mGnssCapabilitiesProvider = new GnssCapabilitiesProvider();
WyattRileyd1309312019-02-28 12:11:45 -0800648 // Create a GPS net-initiated handler (also needed by handleInitialize)
Tsuwei Chen3324e952014-09-07 01:30:42 -0700649 mNIHandler = new GpsNetInitiatedHandler(context,
gomo48f1a642017-11-10 20:35:46 -0800650 mNetInitiatedListener,
651 mSuplEsEnabled);
WyattRileyd1309312019-02-28 12:11:45 -0800652 sendMessage(INITIALIZE_HANDLER, 0, null);
Tsuwei Chen3324e952014-09-07 01:30:42 -0700653
Anil Admal75b9fd62018-11-28 11:22:50 -0800654 mGnssStatusListenerHelper = new GnssStatusListenerHelper(mContext, mHandler) {
destradaa6568d702014-10-27 12:47:41 -0700655 @Override
656 protected boolean isAvailableInPlatform() {
destradaa13a60b02015-01-15 18:36:01 -0800657 return isSupported();
destradaa6568d702014-10-27 12:47:41 -0700658 }
659
660 @Override
661 protected boolean isGpsEnabled() {
Yu-Han Yang76f99952019-05-04 17:45:44 -0700662 return GnssLocationProvider.this.isGpsEnabled();
destradaa6568d702014-10-27 12:47:41 -0700663 }
664 };
665
Yu-Han Yang8de21502018-04-23 01:40:25 -0700666 mGnssMeasurementsProvider = new GnssMeasurementsProvider(mContext, mHandler) {
destradaa6568d702014-10-27 12:47:41 -0700667 @Override
668 protected boolean isGpsEnabled() {
Yu-Han Yang76f99952019-05-04 17:45:44 -0700669 return GnssLocationProvider.this.isGpsEnabled();
destradaa6568d702014-10-27 12:47:41 -0700670 }
671 };
672
Anil Admalefd9dc62019-03-12 17:39:20 -0700673 mGnssMeasurementCorrectionsProvider = new GnssMeasurementCorrectionsProvider(mHandler);
674
Anil Admal75b9fd62018-11-28 11:22:50 -0800675 mGnssNavigationMessageProvider = new GnssNavigationMessageProvider(mContext, mHandler) {
destradaa6568d702014-10-27 12:47:41 -0700676 @Override
destradaa6568d702014-10-27 12:47:41 -0700677 protected boolean isGpsEnabled() {
Yu-Han Yang76f99952019-05-04 17:45:44 -0700678 return GnssLocationProvider.this.isGpsEnabled();
destradaa6568d702014-10-27 12:47:41 -0700679 }
680 };
Yu-Han Yanga1862b52018-02-20 17:05:59 -0800681
Anil Admal50ba15e2018-11-01 16:42:42 -0700682 mGnssMetrics = new GnssMetrics(mBatteryStats);
Yu-Han Yang66c7ea92018-03-11 17:17:15 -0700683 mNtpTimeHelper = new NtpTimeHelper(mContext, looper, this);
Soonil Nagarkar35c3b912019-01-31 10:31:24 -0800684 GnssSatelliteBlacklistHelper gnssSatelliteBlacklistHelper =
685 new GnssSatelliteBlacklistHelper(mContext,
686 looper, this);
687 mHandler.post(gnssSatelliteBlacklistHelper::updateSatelliteBlacklist);
Yu-Han Yang3557cc72018-03-21 12:48:36 -0700688 mGnssBatchingProvider = new GnssBatchingProvider();
Yu-Han Yang6dc9f052018-12-04 17:11:24 -0800689 mGnssGeofenceProvider = new GnssGeofenceProvider();
Mike Lockwood62a8fc12010-03-22 14:23:26 -0400690
Soonil Nagarkar1575a042018-10-24 17:54:54 -0700691 mContext.registerReceiverAsUser(new BroadcastReceiver() {
692 @Override
693 public void onReceive(Context context, Intent intent) {
694 if (getSendingUserId() == UserHandle.USER_ALL) {
Soonil Nagarkar35c3b912019-01-31 10:31:24 -0800695 mShutdown = true;
696 updateEnabled();
Soonil Nagarkar1575a042018-10-24 17:54:54 -0700697 }
698 }
Soonil Nagarkar35c3b912019-01-31 10:31:24 -0800699 }, UserHandle.ALL, new IntentFilter(Intent.ACTION_SHUTDOWN), null, mHandler);
700
701 mContext.getContentResolver().registerContentObserver(
702 Settings.Secure.getUriFor(Settings.Secure.LOCATION_MODE),
703 true,
704 new ContentObserver(mHandler) {
705 @Override
706 public void onChange(boolean selfChange) {
707 updateEnabled();
708 }
709 }, UserHandle.USER_ALL);
Mike Lockwoodd03ff942010-02-09 08:46:14 -0500710
Soonil Nagarkar1575a042018-10-24 17:54:54 -0700711 setProperties(PROPERTIES);
Soonil Nagarkar90da1ab2019-01-04 16:26:59 -0800712 setEnabled(true);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800713 }
714
Yu-Han Yanga1862b52018-02-20 17:05:59 -0800715 /**
716 * Implements {@link InjectNtpTimeCallback#injectTime}
717 */
718 @Override
719 public void injectTime(long time, long timeReference, int uncertainty) {
720 native_inject_time(time, timeReference, uncertainty);
721 }
722
Anil Admal50ba15e2018-11-01 16:42:42 -0700723 /**
724 * Implements {@link GnssNetworkConnectivityHandler.GnssNetworkListener#onNetworkAvailable()}
725 */
726 private void onNetworkAvailable() {
727 mNtpTimeHelper.onNetworkAvailable();
Kevin Tang8c6ac672019-03-22 12:31:01 -0700728 if (mDownloadPsdsDataPending == STATE_PENDING_NETWORK) {
729 if (mSupportsPsds) {
Anil Admal316f9482019-02-12 18:57:18 -0800730 // Download only if supported, (prevents an unnecessary on-boot download)
Kevin Tang8c6ac672019-03-22 12:31:01 -0700731 psdsDownloadRequest();
destradaaef752b62015-04-17 13:10:47 -0700732 }
Mike Lockwood62a8fc12010-03-22 14:23:26 -0400733 }
734 }
Yu-Han Yang8de21502018-04-23 01:40:25 -0700735
Yu-Han Yang53f4d6d2019-02-13 21:47:41 -0800736 private void handleRequestLocation(boolean independentFromGnss, boolean isUserEmergency) {
Yu-Han Yange7baef32018-02-09 13:58:17 -0800737 if (isRequestLocationRateLimited()) {
738 if (DEBUG) {
739 Log.d(TAG, "RequestLocation is denied due to too frequent requests.");
740 }
741 return;
742 }
Yu-Han Yang74041ff2018-04-06 15:57:31 -0700743 ContentResolver resolver = mContext.getContentResolver();
744 long durationMillis = Settings.Global.getLong(
745 resolver,
746 Settings.Global.GNSS_HAL_LOCATION_REQUEST_DURATION_MILLIS,
747 LOCATION_UPDATE_DURATION_MILLIS);
748 if (durationMillis == 0) {
749 Log.i(TAG, "GNSS HAL location request is disabled by Settings.");
750 return;
751 }
Yu-Han Yange7baef32018-02-09 13:58:17 -0800752
753 LocationManager locationManager = (LocationManager) mContext.getSystemService(
754 Context.LOCATION_SERVICE);
Yu-Han Yang07561382018-02-21 13:08:37 -0800755 String provider;
756 LocationChangeListener locationListener;
Anil Admalb1c6c0d2019-06-20 12:00:16 -0700757 LocationRequest locationRequest = new LocationRequest()
758 .setInterval(LOCATION_UPDATE_MIN_TIME_INTERVAL_MILLIS)
759 .setFastestInterval(LOCATION_UPDATE_MIN_TIME_INTERVAL_MILLIS);
Yu-Han Yange7baef32018-02-09 13:58:17 -0800760
761 if (independentFromGnss) {
762 // For fast GNSS TTFF
Yu-Han Yang07561382018-02-21 13:08:37 -0800763 provider = LocationManager.NETWORK_PROVIDER;
764 locationListener = mNetworkLocationListener;
Anil Admalb1c6c0d2019-06-20 12:00:16 -0700765 locationRequest.setQuality(LocationRequest.POWER_LOW);
Yu-Han Yange7baef32018-02-09 13:58:17 -0800766 } else {
767 // For Device-Based Hybrid (E911)
Yu-Han Yang07561382018-02-21 13:08:37 -0800768 provider = LocationManager.FUSED_PROVIDER;
769 locationListener = mFusedLocationListener;
Anil Admalb1c6c0d2019-06-20 12:00:16 -0700770 locationRequest.setQuality(LocationRequest.ACCURACY_FINE);
771 }
772
773 locationRequest.setProvider(provider);
774
775 // Ignore location settings if in emergency mode.
776 if (isUserEmergency && mNIHandler.getInEmergency()) {
777 locationRequest.setLocationSettingsIgnored(true);
778 durationMillis *= EMERGENCY_LOCATION_UPDATE_DURATION_MULTIPLIER;
Yu-Han Yange7baef32018-02-09 13:58:17 -0800779 }
Yu-Han Yang07561382018-02-21 13:08:37 -0800780
781 Log.i(TAG,
Yu-Han Yang74041ff2018-04-06 15:57:31 -0700782 String.format(
783 "GNSS HAL Requesting location updates from %s provider for %d millis.",
784 provider, durationMillis));
Yu-Han Yang53f4d6d2019-02-13 21:47:41 -0800785
Yu-Han Yange684dda2018-05-24 10:29:39 -0700786 try {
Yu-Han Yang53f4d6d2019-02-13 21:47:41 -0800787 locationManager.requestLocationUpdates(locationRequest,
Yu-Han Yange684dda2018-05-24 10:29:39 -0700788 locationListener, mHandler.getLooper());
Soonil Nagarkar1575a042018-10-24 17:54:54 -0700789 locationListener.mNumLocationUpdateRequest++;
Yu-Han Yange684dda2018-05-24 10:29:39 -0700790 mHandler.postDelayed(() -> {
Soonil Nagarkar1575a042018-10-24 17:54:54 -0700791 if (--locationListener.mNumLocationUpdateRequest == 0) {
Yu-Han Yange684dda2018-05-24 10:29:39 -0700792 Log.i(TAG,
793 String.format("Removing location updates from %s provider.", provider));
794 locationManager.removeUpdates(locationListener);
795 }
796 }, durationMillis);
797 } catch (IllegalArgumentException e) {
798 Log.w(TAG, "Unable to request location.", e);
799 }
Yu-Han Yange7baef32018-02-09 13:58:17 -0800800 }
801
802 private void injectBestLocation(Location location) {
Anil Admalb1c6c0d2019-06-20 12:00:16 -0700803 if (DEBUG) {
804 Log.d(TAG, "injectBestLocation: " + location);
805 }
Yu-Han Yange7baef32018-02-09 13:58:17 -0800806 int gnssLocationFlags = LOCATION_HAS_LAT_LONG |
807 (location.hasAltitude() ? LOCATION_HAS_ALTITUDE : 0) |
808 (location.hasSpeed() ? LOCATION_HAS_SPEED : 0) |
809 (location.hasBearing() ? LOCATION_HAS_BEARING : 0) |
810 (location.hasAccuracy() ? LOCATION_HAS_HORIZONTAL_ACCURACY : 0) |
811 (location.hasVerticalAccuracy() ? LOCATION_HAS_VERTICAL_ACCURACY : 0) |
812 (location.hasSpeedAccuracy() ? LOCATION_HAS_SPEED_ACCURACY : 0) |
813 (location.hasBearingAccuracy() ? LOCATION_HAS_BEARING_ACCURACY : 0);
814
815 double latitudeDegrees = location.getLatitude();
816 double longitudeDegrees = location.getLongitude();
817 double altitudeMeters = location.getAltitude();
818 float speedMetersPerSec = location.getSpeed();
819 float bearingDegrees = location.getBearing();
820 float horizontalAccuracyMeters = location.getAccuracy();
821 float verticalAccuracyMeters = location.getVerticalAccuracyMeters();
822 float speedAccuracyMetersPerSecond = location.getSpeedAccuracyMetersPerSecond();
823 float bearingAccuracyDegrees = location.getBearingAccuracyDegrees();
824 long timestamp = location.getTime();
Pierre Fite-Georgelb50cdaf2019-02-25 15:42:45 -0800825
Pierre Fite-Georgel9e96c572019-02-25 16:12:53 -0800826 int elapsedRealtimeFlags = ELAPSED_REALTIME_HAS_TIMESTAMP_NS
827 | (location.hasElapsedRealtimeUncertaintyNanos()
828 ? ELAPSED_REALTIME_HAS_TIME_UNCERTAINTY_NS : 0);
Pierre Fite-Georgelb50cdaf2019-02-25 15:42:45 -0800829 long elapsedRealtimeNanos = location.getElapsedRealtimeNanos();
Yu-Han Yang3cd9a862019-03-25 17:00:03 -0700830 double elapsedRealtimeUncertaintyNanos = location.getElapsedRealtimeUncertaintyNanos();
Pierre Fite-Georgelb50cdaf2019-02-25 15:42:45 -0800831
832 native_inject_best_location(
833 gnssLocationFlags, latitudeDegrees, longitudeDegrees,
834 altitudeMeters, speedMetersPerSec, bearingDegrees,
835 horizontalAccuracyMeters, verticalAccuracyMeters,
836 speedAccuracyMetersPerSecond, bearingAccuracyDegrees, timestamp,
Pierre Fite-Georgel9e96c572019-02-25 16:12:53 -0800837 elapsedRealtimeFlags, elapsedRealtimeNanos, elapsedRealtimeUncertaintyNanos);
Yu-Han Yange7baef32018-02-09 13:58:17 -0800838 }
839
Yu-Han Yange7baef32018-02-09 13:58:17 -0800840 /** Returns true if the location request is too frequent. */
841 private boolean isRequestLocationRateLimited() {
Anil Admal316f9482019-02-12 18:57:18 -0800842 // TODO: implement exponential backoff.
Yu-Han Yange7baef32018-02-09 13:58:17 -0800843 return false;
844 }
845
Kevin Tang8c6ac672019-03-22 12:31:01 -0700846 private void handleDownloadPsdsData() {
847 if (!mSupportsPsds) {
848 // native code reports psds not supported, don't try
849 Log.d(TAG, "handleDownloadPsdsData() called when PSDS not supported");
Wyatt Riley0d6e54e22016-10-05 12:03:03 -0700850 return;
851 }
Kevin Tang8c6ac672019-03-22 12:31:01 -0700852 if (mDownloadPsdsDataPending == STATE_DOWNLOADING) {
Kevin Tang40e1baf2012-01-10 14:32:44 -0800853 // already downloading data
Mike Lockwood62a8fc12010-03-22 14:23:26 -0400854 return;
855 }
Anil Admal50ba15e2018-11-01 16:42:42 -0700856 if (!mNetworkConnectivityHandler.isDataNetworkConnected()) {
Kevin Tang40e1baf2012-01-10 14:32:44 -0800857 // try again when network is up
Kevin Tang8c6ac672019-03-22 12:31:01 -0700858 mDownloadPsdsDataPending = STATE_PENDING_NETWORK;
Kevin Tang40e1baf2012-01-10 14:32:44 -0800859 return;
Mike Lockwood62a8fc12010-03-22 14:23:26 -0400860 }
Kevin Tang8c6ac672019-03-22 12:31:01 -0700861 mDownloadPsdsDataPending = STATE_DOWNLOADING;
Kevin Tang40e1baf2012-01-10 14:32:44 -0800862
Yu-Han Yang76f99952019-05-04 17:45:44 -0700863 synchronized (mLock) {
864 // hold wake lock while task runs
865 mDownloadPsdsWakeLock.acquire(DOWNLOAD_PSDS_DATA_TIMEOUT_MS);
866 }
Kevin Tang8c6ac672019-03-22 12:31:01 -0700867 Log.i(TAG, "WakeLock acquired by handleDownloadPsdsData()");
Soonil Nagarkar1575a042018-10-24 17:54:54 -0700868 AsyncTask.THREAD_POOL_EXECUTOR.execute(() -> {
Kevin Tang8c6ac672019-03-22 12:31:01 -0700869 GpsPsdsDownloader psdsDownloader = new GpsPsdsDownloader(
Anil Admald71cf142018-12-21 14:59:36 -0800870 mGnssConfiguration.getProperties());
Kevin Tang8c6ac672019-03-22 12:31:01 -0700871 byte[] data = psdsDownloader.downloadPsdsData();
Soonil Nagarkar1575a042018-10-24 17:54:54 -0700872 if (data != null) {
Kevin Tang8c6ac672019-03-22 12:31:01 -0700873 if (DEBUG) Log.d(TAG, "calling native_inject_psds_data");
874 native_inject_psds_data(data, data.length);
875 mPsdsBackOff.reset();
Soonil Nagarkar1575a042018-10-24 17:54:54 -0700876 }
Kevin Tang40e1baf2012-01-10 14:32:44 -0800877
Kevin Tang8c6ac672019-03-22 12:31:01 -0700878 sendMessage(DOWNLOAD_PSDS_DATA_FINISHED, 0, null);
Kevin Tang40e1baf2012-01-10 14:32:44 -0800879
Soonil Nagarkar1575a042018-10-24 17:54:54 -0700880 if (data == null) {
881 // try again later
882 // since this is delayed and not urgent we do not hold a wake lock here
Kevin Tang8c6ac672019-03-22 12:31:01 -0700883 mHandler.sendEmptyMessageDelayed(DOWNLOAD_PSDS_DATA,
884 mPsdsBackOff.nextBackoffMillis());
Soonil Nagarkar1575a042018-10-24 17:54:54 -0700885 }
Kevin Tang40e1baf2012-01-10 14:32:44 -0800886
Soonil Nagarkar1575a042018-10-24 17:54:54 -0700887 // Release wake lock held by task, synchronize on mLock in case multiple
888 // download tasks overrun.
889 synchronized (mLock) {
Kevin Tang8c6ac672019-03-22 12:31:01 -0700890 if (mDownloadPsdsWakeLock.isHeld()) {
Soonil Nagarkar1575a042018-10-24 17:54:54 -0700891 // This wakelock may have time-out, if a timeout was specified.
892 // Catch (and ignore) any timeout exceptions.
893 try {
Kevin Tang8c6ac672019-03-22 12:31:01 -0700894 mDownloadPsdsWakeLock.release();
895 if (DEBUG) Log.d(TAG, "WakeLock released by handleDownloadPsdsData()");
Soonil Nagarkar1575a042018-10-24 17:54:54 -0700896 } catch (Exception e) {
897 Log.i(TAG, "Wakelock timeout & release race exception in "
Kevin Tang8c6ac672019-03-22 12:31:01 -0700898 + "handleDownloadPsdsData()", e);
Wei Wangb71c0492017-05-01 20:24:19 -0700899 }
Soonil Nagarkar1575a042018-10-24 17:54:54 -0700900 } else {
901 Log.e(TAG, "WakeLock expired before release in "
Kevin Tang8c6ac672019-03-22 12:31:01 -0700902 + "handleDownloadPsdsData()");
Wei Wangc5706f62017-04-18 11:26:26 -0700903 }
Jeff Brown028872f2012-08-25 13:07:01 -0700904 }
Kevin Tang40e1baf2012-01-10 14:32:44 -0800905 });
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800906 }
907
Mike Lockwood62a8fc12010-03-22 14:23:26 -0400908 private void handleUpdateLocation(Location location) {
Mike Lockwoodd26ce0d2009-06-11 12:25:46 -0400909 if (location.hasAccuracy()) {
Anil Admalb1c6c0d2019-06-20 12:00:16 -0700910 if (DEBUG) {
911 Log.d(TAG, "injectLocation: " + location);
912 }
Mike Lockwoodd26ce0d2009-06-11 12:25:46 -0400913 native_inject_location(location.getLatitude(), location.getLongitude(),
914 location.getAccuracy());
915 }
Mike Lockwoodfd6e5f02009-05-21 11:28:20 -0400916 }
917
Anil Admald71cf142018-12-21 14:59:36 -0800918 private void setSuplHostPort() {
919 mSuplServerHost = mGnssConfiguration.getSuplHost();
920 mSuplServerPort = mGnssConfiguration.getSuplPort(TCP_MIN_PORT);
Tsuwei Chen678c13c2014-09-22 17:48:41 -0700921 if (mSuplServerHost != null
922 && mSuplServerPort > TCP_MIN_PORT
923 && mSuplServerPort <= TCP_MAX_PORT) {
Anil Admalc70344b2018-11-16 14:22:38 -0800924 native_set_agps_server(GnssNetworkConnectivityHandler.AGPS_TYPE_SUPL,
925 mSuplServerHost, mSuplServerPort);
Tsuwei Chen678c13c2014-09-22 17:48:41 -0700926 }
Tsuwei Chen52617bb2014-08-25 11:49:11 -0700927 }
928
Tsuwei Chen462bcd82014-09-17 12:28:49 -0700929 /**
930 * Checks what SUPL mode to use, according to the AGPS mode as well as the
931 * allowed mode from properties.
932 *
Tsuwei Chen462bcd82014-09-17 12:28:49 -0700933 * @param agpsEnabled whether AGPS is enabled by settings value
Tsuwei Chen462bcd82014-09-17 12:28:49 -0700934 * @return SUPL mode (MSA vs MSB vs STANDALONE)
935 */
Yu-Han Yang6a5f0b72019-01-24 18:34:28 -0800936 private int getSuplMode(boolean agpsEnabled) {
Tsuwei Chen462bcd82014-09-17 12:28:49 -0700937 if (agpsEnabled) {
Anil Admald71cf142018-12-21 14:59:36 -0800938 int suplMode = mGnssConfiguration.getSuplMode(0);
939 if (suplMode == 0) {
940 return GPS_POSITION_MODE_STANDALONE;
Tsuwei Chen462bcd82014-09-17 12:28:49 -0700941 }
Anil Admald71cf142018-12-21 14:59:36 -0800942
destradaabfb3bdb2015-04-29 14:42:35 -0700943 // MS-Based is the preferred mode for Assisted-GPS position computation, so we favor
944 // such mode when it is available
945 if (hasCapability(GPS_CAPABILITY_MSB) && (suplMode & AGPS_SUPL_MODE_MSB) != 0) {
946 return GPS_POSITION_MODE_MS_BASED;
947 }
Tsuwei Chen462bcd82014-09-17 12:28:49 -0700948 }
949 return GPS_POSITION_MODE_STANDALONE;
950 }
951
Yu-Han Yang76f99952019-05-04 17:45:44 -0700952 private void setGpsEnabled(boolean enabled) {
953 synchronized (mLock) {
954 mGpsEnabled = enabled;
955 }
956 }
957
958 private void handleEnable() {
959 if (DEBUG) Log.d(TAG, "handleEnable");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800960
Soonil Nagarkar35c3b912019-01-31 10:31:24 -0800961 boolean inited = native_init();
Nick Pelly6fa9ad42012-07-16 12:18:23 -0700962
Soonil Nagarkar35c3b912019-01-31 10:31:24 -0800963 if (inited) {
Yu-Han Yang76f99952019-05-04 17:45:44 -0700964 setGpsEnabled(true);
Kevin Tang8c6ac672019-03-22 12:31:01 -0700965 mSupportsPsds = native_supports_psds();
Tsuwei Chen678c13c2014-09-22 17:48:41 -0700966
967 // TODO: remove the following native calls if we can make sure they are redundant.
Mike Lockwood734d6032009-07-28 18:30:25 -0700968 if (mSuplServerHost != null) {
Anil Admalc70344b2018-11-16 14:22:38 -0800969 native_set_agps_server(GnssNetworkConnectivityHandler.AGPS_TYPE_SUPL,
970 mSuplServerHost, mSuplServerPort);
Mike Lockwood734d6032009-07-28 18:30:25 -0700971 }
972 if (mC2KServerHost != null) {
Anil Admalc70344b2018-11-16 14:22:38 -0800973 native_set_agps_server(GnssNetworkConnectivityHandler.AGPS_TYPE_C2K,
974 mC2KServerHost, mC2KServerPort);
Mike Lockwood734d6032009-07-28 18:30:25 -0700975 }
destradaa13a60b02015-01-15 18:36:01 -0800976
Lifu Tang818aa2c2016-02-01 01:52:00 -0800977 mGnssMeasurementsProvider.onGpsEnabledChanged();
978 mGnssNavigationMessageProvider.onGpsEnabledChanged();
Yu-Han Yang3557cc72018-03-21 12:48:36 -0700979 mGnssBatchingProvider.enable();
Anil Admal138cdc32019-04-16 10:07:43 -0700980 if (mGnssVisibilityControl != null) {
Anil Admal8b83dc12019-06-12 13:55:42 -0700981 mGnssVisibilityControl.onGpsEnabledChanged(/* isEnabled= */ true);
Anil Admal138cdc32019-04-16 10:07:43 -0700982 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800983 } else {
Yu-Han Yang76f99952019-05-04 17:45:44 -0700984 setGpsEnabled(false);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800985 Log.w(TAG, "Failed to enable location provider");
986 }
987 }
988
Yu-Han Yang76f99952019-05-04 17:45:44 -0700989 private void handleDisable() {
990 if (DEBUG) Log.d(TAG, "handleDisable");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800991
Yu-Han Yang76f99952019-05-04 17:45:44 -0700992 setGpsEnabled(false);
David Christie3bc26142013-12-19 14:53:44 -0800993 updateClientUids(new WorkSource());
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800994 stopNavigating();
Nick Pelly6fa9ad42012-07-16 12:18:23 -0700995 mAlarmManager.cancel(mWakeupIntent);
996 mAlarmManager.cancel(mTimeoutIntent);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800997
Anil Admal138cdc32019-04-16 10:07:43 -0700998 if (mGnssVisibilityControl != null) {
Yu-Han Yang76f99952019-05-04 17:45:44 -0700999 mGnssVisibilityControl.onGpsEnabledChanged(/* isEnabled= */ false);
Anil Admal138cdc32019-04-16 10:07:43 -07001000 }
Yu-Han Yang3557cc72018-03-21 12:48:36 -07001001 mGnssBatchingProvider.disable();
Mike Lockwoodcf1d8cb2010-01-20 10:14:54 -05001002 // do this before releasing wakelock
1003 native_cleanup();
destradaa13a60b02015-01-15 18:36:01 -08001004
Lifu Tang818aa2c2016-02-01 01:52:00 -08001005 mGnssMeasurementsProvider.onGpsEnabledChanged();
1006 mGnssNavigationMessageProvider.onGpsEnabledChanged();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001007 }
1008
Soonil Nagarkar35c3b912019-01-31 10:31:24 -08001009 private void updateEnabled() {
Tyler Trephan037ef9d2019-05-17 13:41:18 -07001010 // Generally follow location setting for current user
1011 boolean enabled = mContext.getSystemService(LocationManager.class)
1012 .isLocationEnabledForUser(UserHandle.CURRENT);
WyattRileyb2446072019-03-01 07:41:49 -08001013
Yu-Han Yang76f99952019-05-04 17:45:44 -07001014 // ... but disable if PowerManager overrides
1015 enabled &= !mDisableGpsForPowerManager;
WyattRileyb2446072019-03-01 07:41:49 -08001016
Yu-Han Yang76f99952019-05-04 17:45:44 -07001017 // .. but enable anyway, if there's an active settings-ignored request (e.g. ELS)
1018 enabled |= (mProviderRequest != null && mProviderRequest.reportLocation
1019 && mProviderRequest.locationSettingsIgnored);
WyattRileyb2446072019-03-01 07:41:49 -08001020
Yu-Han Yang76f99952019-05-04 17:45:44 -07001021 // ... and, finally, disable anyway, if device is being shut down
1022 enabled &= !mShutdown;
WyattRileyb2446072019-03-01 07:41:49 -08001023
Yu-Han Yang76f99952019-05-04 17:45:44 -07001024 if (enabled == isGpsEnabled()) {
1025 return;
1026 }
Soonil Nagarkar35c3b912019-01-31 10:31:24 -08001027
Yu-Han Yang76f99952019-05-04 17:45:44 -07001028 if (enabled) {
1029 handleEnable();
1030 } else {
1031 handleDisable();
Soonil Nagarkar35c3b912019-01-31 10:31:24 -08001032 }
1033 }
1034
Yu-Han Yang76f99952019-05-04 17:45:44 -07001035 private boolean isGpsEnabled() {
Nick Pelly6fa9ad42012-07-16 12:18:23 -07001036 synchronized (mLock) {
Yu-Han Yang76f99952019-05-04 17:45:44 -07001037 return mGpsEnabled;
Nick Pelly6fa9ad42012-07-16 12:18:23 -07001038 }
Mike Lockwoodd03ff942010-02-09 08:46:14 -05001039 }
1040
Nick Pelly6fa9ad42012-07-16 12:18:23 -07001041 @Override
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001042 public int getStatus(Bundle extras) {
Wyatt Rileyc7067412018-02-07 15:50:35 -08001043 mLocationExtras.setBundle(extras);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001044 return mStatus;
1045 }
1046
Wyatt Rileyc7067412018-02-07 15:50:35 -08001047 private void updateStatus(int status) {
1048 if (status != mStatus) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001049 mStatus = status;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001050 mStatusUpdateTime = SystemClock.elapsedRealtime();
1051 }
1052 }
1053
Nick Pelly6fa9ad42012-07-16 12:18:23 -07001054 @Override
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001055 public long getStatusUpdateTime() {
1056 return mStatusUpdateTime;
1057 }
1058
Nick Pelly6fa9ad42012-07-16 12:18:23 -07001059 @Override
1060 public void setRequest(ProviderRequest request, WorkSource source) {
1061 sendMessage(SET_REQUEST, 0, new GpsRequest(request, source));
Mike Lockwood62a8fc12010-03-22 14:23:26 -04001062 }
1063
Nick Pelly6fa9ad42012-07-16 12:18:23 -07001064 private void handleSetRequest(ProviderRequest request, WorkSource source) {
David Christied4edf4c2014-08-12 15:22:27 -07001065 mProviderRequest = request;
1066 mWorkSource = source;
Soonil Nagarkar35c3b912019-01-31 10:31:24 -08001067 updateEnabled();
David Christied4edf4c2014-08-12 15:22:27 -07001068 updateRequirements();
1069 }
1070
1071 // Called when the requirements for GPS may have changed
1072 private void updateRequirements() {
1073 if (mProviderRequest == null || mWorkSource == null) {
1074 return;
1075 }
1076
David Christied4edf4c2014-08-12 15:22:27 -07001077 if (DEBUG) Log.d(TAG, "setRequest " + mProviderRequest);
Yu-Han Yang76f99952019-05-04 17:45:44 -07001078 if (mProviderRequest.reportLocation && isGpsEnabled()) {
Nick Pelly6fa9ad42012-07-16 12:18:23 -07001079 // update client uids
David Christied4edf4c2014-08-12 15:22:27 -07001080 updateClientUids(mWorkSource);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001081
David Christied4edf4c2014-08-12 15:22:27 -07001082 mFixInterval = (int) mProviderRequest.interval;
Soonil Nagarkar1575a042018-10-24 17:54:54 -07001083 mLowPowerMode = mProviderRequest.lowPowerMode;
Nick Pelly6fa9ad42012-07-16 12:18:23 -07001084 // check for overflow
David Christied4edf4c2014-08-12 15:22:27 -07001085 if (mFixInterval != mProviderRequest.interval) {
1086 Log.w(TAG, "interval overflow: " + mProviderRequest.interval);
Nick Pelly6fa9ad42012-07-16 12:18:23 -07001087 mFixInterval = Integer.MAX_VALUE;
1088 }
Mike Lockwood03ca2162010-04-01 08:10:09 -07001089
Nick Pelly6fa9ad42012-07-16 12:18:23 -07001090 // apply request to GPS engine
Mike Lockwood04598b62010-04-14 17:17:24 -04001091 if (mStarted && hasCapability(GPS_CAPABILITY_SCHEDULING)) {
gomo48f1a642017-11-10 20:35:46 -08001092 // change period and/or lowPowerMode
Yu-Han Yangc8b9ff72018-04-17 00:47:24 -07001093 if (!setPositionMode(mPositionMode, GPS_POSITION_RECURRENCE_PERIODIC,
gomo48f1a642017-11-10 20:35:46 -08001094 mFixInterval, 0, 0, mLowPowerMode)) {
1095 Log.e(TAG, "set_position_mode failed in updateRequirements");
Mike Lockwood04598b62010-04-14 17:17:24 -04001096 }
Nick Pelly6fa9ad42012-07-16 12:18:23 -07001097 } else if (!mStarted) {
1098 // start GPS
Yu-Han Yang6a5f0b72019-01-24 18:34:28 -08001099 startNavigating();
gomo300b2402017-12-13 19:04:12 -08001100 } else {
1101 // GNSS Engine is already ON, but no GPS_CAPABILITY_SCHEDULING
1102 mAlarmManager.cancel(mTimeoutIntent);
1103 if (mFixInterval >= NO_FIX_TIMEOUT) {
1104 // set timer to give up if we do not receive a fix within NO_FIX_TIMEOUT
1105 // and our fix interval is not short
1106 mAlarmManager.set(AlarmManager.ELAPSED_REALTIME_WAKEUP,
Soonil Nagarkar1575a042018-10-24 17:54:54 -07001107 SystemClock.elapsedRealtime() + NO_FIX_TIMEOUT, mTimeoutIntent);
1108 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001109 }
Nick Pelly6fa9ad42012-07-16 12:18:23 -07001110 } else {
Dianne Hackborn002a54e2013-01-10 17:34:55 -08001111 updateClientUids(new WorkSource());
Nick Pelly6fa9ad42012-07-16 12:18:23 -07001112
1113 stopNavigating();
1114 mAlarmManager.cancel(mWakeupIntent);
1115 mAlarmManager.cancel(mTimeoutIntent);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001116 }
1117 }
1118
Yu-Han Yangc8b9ff72018-04-17 00:47:24 -07001119 private boolean setPositionMode(int mode, int recurrence, int minInterval,
1120 int preferredAccuracy, int preferredTime, boolean lowPowerMode) {
1121 GnssPositionMode positionMode = new GnssPositionMode(mode, recurrence, minInterval,
1122 preferredAccuracy, preferredTime, lowPowerMode);
1123 if (mLastPositionMode != null && mLastPositionMode.equals(positionMode)) {
1124 return true;
1125 }
1126
1127 boolean result = native_set_position_mode(mode, recurrence, minInterval,
1128 preferredAccuracy, preferredTime, lowPowerMode);
1129 if (result) {
1130 mLastPositionMode = positionMode;
1131 } else {
1132 mLastPositionMode = null;
1133 }
1134 return result;
1135 }
1136
Dianne Hackborn002a54e2013-01-10 17:34:55 -08001137 private void updateClientUids(WorkSource source) {
Narayan Kamath32684dd2018-01-08 17:32:51 +00001138 if (source.equals(mClientSource)) {
Victoria Leaseea78b852013-01-15 10:39:28 -08001139 return;
1140 }
Dianne Hackborn002a54e2013-01-10 17:34:55 -08001141
Narayan Kamath32684dd2018-01-08 17:32:51 +00001142 // (1) Inform BatteryStats that the list of IDs we're tracking changed.
1143 try {
1144 mBatteryStats.noteGpsChanged(mClientSource, source);
1145 } catch (RemoteException e) {
1146 Log.w(TAG, "RemoteException", e);
Nick Pelly6fa9ad42012-07-16 12:18:23 -07001147 }
1148
Narayan Kamath32684dd2018-01-08 17:32:51 +00001149 // (2) Inform AppOps service about the list of changes to UIDs.
1150
1151 List<WorkChain>[] diffs = WorkSource.diffChains(mClientSource, source);
1152 if (diffs != null) {
1153 List<WorkChain> newChains = diffs[0];
1154 List<WorkChain> goneChains = diffs[1];
1155
1156 if (newChains != null) {
Soonil Nagarkar1575a042018-10-24 17:54:54 -07001157 for (WorkChain newChain : newChains) {
Svet Ganovf7b47252018-02-26 11:11:27 -08001158 mAppOps.startOpNoThrow(AppOpsManager.OP_GPS, newChain.getAttributionUid(),
1159 newChain.getAttributionTag());
Narayan Kamath32684dd2018-01-08 17:32:51 +00001160 }
1161 }
1162
1163 if (goneChains != null) {
Soonil Nagarkar1575a042018-10-24 17:54:54 -07001164 for (WorkChain goneChain : goneChains) {
Svet Ganovf7b47252018-02-26 11:11:27 -08001165 mAppOps.finishOp(AppOpsManager.OP_GPS, goneChain.getAttributionUid(),
1166 goneChain.getAttributionTag());
Narayan Kamath32684dd2018-01-08 17:32:51 +00001167 }
1168 }
1169
1170 mClientSource.transferWorkChains(source);
1171 }
1172
1173 // Update the flat UIDs and names list and inform app-ops of all changes.
1174 WorkSource[] changes = mClientSource.setReturningDiffs(source);
1175 if (changes != null) {
1176 WorkSource newWork = changes[0];
1177 WorkSource goneWork = changes[1];
1178
1179 // Update sources that were not previously tracked.
1180 if (newWork != null) {
1181 for (int i = 0; i < newWork.size(); i++) {
Svet Ganovf7b47252018-02-26 11:11:27 -08001182 mAppOps.startOpNoThrow(AppOpsManager.OP_GPS,
1183 newWork.get(i), newWork.getName(i));
Narayan Kamath32684dd2018-01-08 17:32:51 +00001184 }
1185 }
1186
1187 // Update sources that are no longer tracked.
1188 if (goneWork != null) {
1189 for (int i = 0; i < goneWork.size(); i++) {
Svet Ganovf7b47252018-02-26 11:11:27 -08001190 mAppOps.finishOp(AppOpsManager.OP_GPS, goneWork.get(i), goneWork.getName(i));
Dianne Hackborn2e418422009-06-22 20:00:17 -07001191 }
Mike Lockwood2f82c4e2009-04-17 08:24:10 -04001192 }
1193 }
1194 }
1195
Nick Pelly6fa9ad42012-07-16 12:18:23 -07001196 @Override
Soonil Nagarkar1575a042018-10-24 17:54:54 -07001197 public void sendExtraCommand(String command, Bundle extras) {
Nick Pelly6fa9ad42012-07-16 12:18:23 -07001198
Mike Lockwood63aa5a62010-04-14 19:21:31 -04001199 long identity = Binder.clearCallingIdentity();
Peter Visontayb25db362017-11-01 18:18:12 +00001200 try {
Peter Visontayb25db362017-11-01 18:18:12 +00001201 if ("delete_aiding_data".equals(command)) {
Soonil Nagarkar1575a042018-10-24 17:54:54 -07001202 deleteAidingData(extras);
Peter Visontayb25db362017-11-01 18:18:12 +00001203 } else if ("force_time_injection".equals(command)) {
1204 requestUtcTime();
Kevin Tang8c6ac672019-03-22 12:31:01 -07001205 } else if ("force_psds_injection".equals(command)) {
1206 if (mSupportsPsds) {
1207 psdsDownloadRequest();
Peter Visontayb25db362017-11-01 18:18:12 +00001208 }
1209 } else {
1210 Log.w(TAG, "sendExtraCommand: unknown command " + command);
Mike Lockwood93bc44d2009-05-20 16:58:22 -04001211 }
Peter Visontayb25db362017-11-01 18:18:12 +00001212 } finally {
1213 Binder.restoreCallingIdentity(identity);
Mike Lockwood93bc44d2009-05-20 16:58:22 -04001214 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001215 }
1216
Soonil Nagarkar1575a042018-10-24 17:54:54 -07001217 private void deleteAidingData(Bundle extras) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001218 int flags;
1219
1220 if (extras == null) {
1221 flags = GPS_DELETE_ALL;
1222 } else {
1223 flags = 0;
1224 if (extras.getBoolean("ephemeris")) flags |= GPS_DELETE_EPHEMERIS;
1225 if (extras.getBoolean("almanac")) flags |= GPS_DELETE_ALMANAC;
1226 if (extras.getBoolean("position")) flags |= GPS_DELETE_POSITION;
1227 if (extras.getBoolean("time")) flags |= GPS_DELETE_TIME;
1228 if (extras.getBoolean("iono")) flags |= GPS_DELETE_IONO;
1229 if (extras.getBoolean("utc")) flags |= GPS_DELETE_UTC;
1230 if (extras.getBoolean("health")) flags |= GPS_DELETE_HEALTH;
1231 if (extras.getBoolean("svdir")) flags |= GPS_DELETE_SVDIR;
1232 if (extras.getBoolean("svsteer")) flags |= GPS_DELETE_SVSTEER;
1233 if (extras.getBoolean("sadata")) flags |= GPS_DELETE_SADATA;
1234 if (extras.getBoolean("rti")) flags |= GPS_DELETE_RTI;
1235 if (extras.getBoolean("celldb-info")) flags |= GPS_DELETE_CELLDB_INFO;
1236 if (extras.getBoolean("all")) flags |= GPS_DELETE_ALL;
1237 }
1238
1239 if (flags != 0) {
1240 native_delete_aiding_data(flags);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001241 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001242 }
1243
Yu-Han Yang6a5f0b72019-01-24 18:34:28 -08001244 private void startNavigating() {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001245 if (!mStarted) {
Yu-Han Yang6a5f0b72019-01-24 18:34:28 -08001246 if (DEBUG) Log.d(TAG, "startNavigating");
Nick Pelly6fa9ad42012-07-16 12:18:23 -07001247 mTimeToFirstFix = 0;
1248 mLastFixTime = 0;
WyattRileyba6072f2019-04-18 07:37:52 -07001249 setStarted(true);
Mike Lockwood03ca2162010-04-01 08:10:09 -07001250 mPositionMode = GPS_POSITION_MODE_STANDALONE;
Wyatt Riley5d5bac82016-11-01 07:05:16 -07001251 // Notify about suppressed output, if speed limit was previously exceeded.
1252 // Elsewhere, we check again with every speed output reported.
1253 if (mItarSpeedLimitExceeded) {
1254 Log.i(TAG, "startNavigating with ITAR limit in place. Output limited " +
1255 "until slow enough speed reported.");
1256 }
Mike Lockwood03ca2162010-04-01 08:10:09 -07001257
Tsuwei Chen462bcd82014-09-17 12:28:49 -07001258 boolean agpsEnabled =
1259 (Settings.Global.getInt(mContext.getContentResolver(),
gomo48f1a642017-11-10 20:35:46 -08001260 Settings.Global.ASSISTED_GPS_ENABLED, 1) != 0);
Yu-Han Yang6a5f0b72019-01-24 18:34:28 -08001261 mPositionMode = getSuplMode(agpsEnabled);
Mike Lockwoodbcab8df2009-06-25 16:39:09 -04001262
Stan Chesnutt1d72d8c2013-04-15 19:18:02 -07001263 if (DEBUG) {
1264 String mode;
1265
gomo48f1a642017-11-10 20:35:46 -08001266 switch (mPositionMode) {
Stan Chesnutt1d72d8c2013-04-15 19:18:02 -07001267 case GPS_POSITION_MODE_STANDALONE:
1268 mode = "standalone";
1269 break;
1270 case GPS_POSITION_MODE_MS_ASSISTED:
1271 mode = "MS_ASSISTED";
1272 break;
1273 case GPS_POSITION_MODE_MS_BASED:
1274 mode = "MS_BASED";
1275 break;
1276 default:
1277 mode = "unknown";
1278 break;
1279 }
1280 Log.d(TAG, "setting position_mode to " + mode);
1281 }
1282
Mike Lockwood04598b62010-04-14 17:17:24 -04001283 int interval = (hasCapability(GPS_CAPABILITY_SCHEDULING) ? mFixInterval : 1000);
Soonil Nagarkar1575a042018-10-24 17:54:54 -07001284 mLowPowerMode = mProviderRequest.lowPowerMode;
Yu-Han Yangc8b9ff72018-04-17 00:47:24 -07001285 if (!setPositionMode(mPositionMode, GPS_POSITION_RECURRENCE_PERIODIC,
gomo48f1a642017-11-10 20:35:46 -08001286 interval, 0, 0, mLowPowerMode)) {
WyattRileyba6072f2019-04-18 07:37:52 -07001287 setStarted(false);
Mike Lockwood04598b62010-04-14 17:17:24 -04001288 Log.e(TAG, "set_position_mode failed in startNavigating()");
1289 return;
1290 }
1291 if (!native_start()) {
WyattRileyba6072f2019-04-18 07:37:52 -07001292 setStarted(false);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001293 Log.e(TAG, "native_start failed in startNavigating()");
Mike Lockwood0632ca72009-05-14 15:51:03 -04001294 return;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001295 }
1296
1297 // reset SV count to zero
Wyatt Rileyc7067412018-02-07 15:50:35 -08001298 updateStatus(LocationProvider.TEMPORARILY_UNAVAILABLE);
1299 mLocationExtras.reset();
Yipeng Cao282b5942017-05-17 20:31:39 -07001300 mFixRequestTime = SystemClock.elapsedRealtime();
Mike Lockwood04598b62010-04-14 17:17:24 -04001301 if (!hasCapability(GPS_CAPABILITY_SCHEDULING)) {
1302 // set timer to give up if we do not receive a fix within NO_FIX_TIMEOUT
1303 // and our fix interval is not short
1304 if (mFixInterval >= NO_FIX_TIMEOUT) {
1305 mAlarmManager.set(AlarmManager.ELAPSED_REALTIME_WAKEUP,
1306 SystemClock.elapsedRealtime() + NO_FIX_TIMEOUT, mTimeoutIntent);
1307 }
Mike Lockwood0632ca72009-05-14 15:51:03 -04001308 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001309 }
1310 }
1311
Mike Lockwood62a8fc12010-03-22 14:23:26 -04001312 private void stopNavigating() {
Mike Lockwood29c84342009-05-06 14:01:15 -04001313 if (DEBUG) Log.d(TAG, "stopNavigating");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001314 if (mStarted) {
WyattRileyba6072f2019-04-18 07:37:52 -07001315 setStarted(false);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001316 native_stop();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001317 mLastFixTime = 0;
Yu-Han Yanga50cd602018-08-28 12:33:24 -07001318 // native_stop() may reset the position mode in hardware.
1319 mLastPositionMode = null;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001320
1321 // reset SV count to zero
Wyatt Rileyc7067412018-02-07 15:50:35 -08001322 updateStatus(LocationProvider.TEMPORARILY_UNAVAILABLE);
1323 mLocationExtras.reset();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001324 }
1325 }
1326
WyattRileyba6072f2019-04-18 07:37:52 -07001327 private void setStarted(boolean started) {
1328 if (mStarted != started) {
1329 mStarted = started;
1330 mStartedChangedElapsedRealtime = SystemClock.elapsedRealtime();
1331 }
1332 }
1333
Mike Lockwood0632ca72009-05-14 15:51:03 -04001334 private void hibernate() {
1335 // stop GPS until our next fix interval arrives
1336 stopNavigating();
Mike Lockwood0632ca72009-05-14 15:51:03 -04001337 mAlarmManager.cancel(mTimeoutIntent);
1338 mAlarmManager.cancel(mWakeupIntent);
1339 long now = SystemClock.elapsedRealtime();
Nick Pelly6fa9ad42012-07-16 12:18:23 -07001340 mAlarmManager.set(AlarmManager.ELAPSED_REALTIME_WAKEUP, now + mFixInterval, mWakeupIntent);
Mike Lockwood04598b62010-04-14 17:17:24 -04001341 }
1342
1343 private boolean hasCapability(int capability) {
Anil Admal312fddb2019-03-25 12:15:43 -07001344 return (mTopHalCapabilities & capability) != 0;
Mike Lockwood0632ca72009-05-14 15:51:03 -04001345 }
1346
Soonil Nagarkar1575a042018-10-24 17:54:54 -07001347 @NativeEntryPoint
Wyatt Riley5d229832017-02-10 17:06:00 -08001348 private void reportLocation(boolean hasLatLong, Location location) {
Wyatt Riley26465d22018-02-12 13:44:24 -08001349 sendMessage(REPORT_LOCATION, hasLatLong ? 1 : 0, location);
1350 }
1351
1352 private void handleReportLocation(boolean hasLatLong, Location location) {
Wyatt Riley5d229832017-02-10 17:06:00 -08001353 if (location.hasSpeed()) {
1354 mItarSpeedLimitExceeded = location.getSpeed() > ITAR_SPEED_LIMIT_METERS_PER_SECOND;
Wyatt Riley5d5bac82016-11-01 07:05:16 -07001355 }
1356
1357 if (mItarSpeedLimitExceeded) {
1358 Log.i(TAG, "Hal reported a speed in excess of ITAR limit." +
1359 " GPS/GNSS Navigation output blocked.");
Siddharth Ray53ddc802018-03-16 12:01:52 -07001360 if (mStarted) {
1361 mGnssMetrics.logReceivedLocationStatus(false);
1362 }
Wyatt Riley5d5bac82016-11-01 07:05:16 -07001363 return; // No output of location allowed
1364 }
1365
Wyatt Riley5d229832017-02-10 17:06:00 -08001366 if (VERBOSE) Log.v(TAG, "reportLocation " + location.toString());
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001367
Wyatt Riley26465d22018-02-12 13:44:24 -08001368 location.setExtras(mLocationExtras.getBundle());
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001369
Soonil Nagarkar1575a042018-10-24 17:54:54 -07001370 reportLocation(location);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001371
Siddharth Ray53ddc802018-03-16 12:01:52 -07001372 if (mStarted) {
1373 mGnssMetrics.logReceivedLocationStatus(hasLatLong);
1374 if (hasLatLong) {
1375 if (location.hasAccuracy()) {
1376 mGnssMetrics.logPositionAccuracyMeters(location.getAccuracy());
1377 }
1378 if (mTimeToFirstFix > 0) {
1379 int timeBetweenFixes = (int) (SystemClock.elapsedRealtime() - mLastFixTime);
1380 mGnssMetrics.logMissedReports(mFixInterval, timeBetweenFixes);
1381 }
Siddharth Raybb608c82017-03-16 11:33:34 -07001382 }
WyattRileyba6072f2019-04-18 07:37:52 -07001383 } else {
1384 // Warn or error about long delayed GNSS engine shutdown as this generally wastes
1385 // power and sends location when not expected.
1386 long locationAfterStartedFalseMillis =
1387 SystemClock.elapsedRealtime() - mStartedChangedElapsedRealtime;
1388 if (locationAfterStartedFalseMillis > LOCATION_OFF_DELAY_THRESHOLD_WARN_MILLIS) {
1389 String logMessage = "Unexpected GNSS Location report "
1390 + TimeUtils.formatDuration(locationAfterStartedFalseMillis)
1391 + " after location turned off";
1392 if (locationAfterStartedFalseMillis > LOCATION_OFF_DELAY_THRESHOLD_ERROR_MILLIS) {
1393 Log.e(TAG, logMessage);
1394 } else {
1395 Log.w(TAG, logMessage);
1396 }
1397 }
Siddharth Raybb608c82017-03-16 11:33:34 -07001398 }
1399
Yipeng Cao282b5942017-05-17 20:31:39 -07001400 mLastFixTime = SystemClock.elapsedRealtime();
Hakan Gustavssonfa94ff02010-02-23 09:12:38 +01001401 // report time to first fix
Wyatt Riley5d229832017-02-10 17:06:00 -08001402 if (mTimeToFirstFix == 0 && hasLatLong) {
gomo48f1a642017-11-10 20:35:46 -08001403 mTimeToFirstFix = (int) (mLastFixTime - mFixRequestTime);
Nick Pelly6fa9ad42012-07-16 12:18:23 -07001404 if (DEBUG) Log.d(TAG, "TTFF: " + mTimeToFirstFix);
Siddharth Ray53ddc802018-03-16 12:01:52 -07001405 if (mStarted) {
1406 mGnssMetrics.logTimeToFirstFixMilliSecs(mTimeToFirstFix);
1407 }
Hakan Gustavssonfa94ff02010-02-23 09:12:38 +01001408
1409 // notify status listeners
Anil Admal75b9fd62018-11-28 11:22:50 -08001410 mGnssStatusListenerHelper.onFirstFix(mTimeToFirstFix);
Hakan Gustavssonfa94ff02010-02-23 09:12:38 +01001411 }
1412
Mike Lockwood15e3d0f2009-05-01 07:53:28 -04001413 if (mStarted && mStatus != LocationProvider.AVAILABLE) {
Wyatt Rileyc7067412018-02-07 15:50:35 -08001414 // For devices that use framework scheduling, a timer may be set to ensure we don't
Soonil Nagarkar1575a042018-10-24 17:54:54 -07001415 // spend too much power searching for a location, when the requested update rate is
1416 // slow.
Wyatt Rileyc7067412018-02-07 15:50:35 -08001417 // As we just recievied a location, we'll cancel that timer.
Mike Lockwood04598b62010-04-14 17:17:24 -04001418 if (!hasCapability(GPS_CAPABILITY_SCHEDULING) && mFixInterval < NO_FIX_TIMEOUT) {
Mike Lockwoodb7be5442010-02-24 14:34:50 -05001419 mAlarmManager.cancel(mTimeoutIntent);
1420 }
1421
Wyatt Rileyc7067412018-02-07 15:50:35 -08001422 updateStatus(LocationProvider.AVAILABLE);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001423 }
Mike Lockwood29c84342009-05-06 14:01:15 -04001424
gomo48f1a642017-11-10 20:35:46 -08001425 if (!hasCapability(GPS_CAPABILITY_SCHEDULING) && mStarted &&
1426 mFixInterval > GPS_POLLING_THRESHOLD_INTERVAL) {
Mike Lockwoodd53ba012010-04-15 20:41:26 -04001427 if (DEBUG) Log.d(TAG, "got fix, hibernating");
Mike Lockwood0632ca72009-05-14 15:51:03 -04001428 hibernate();
Mike Lockwood29c84342009-05-06 14:01:15 -04001429 }
gomo48f1a642017-11-10 20:35:46 -08001430 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001431
Soonil Nagarkar1575a042018-10-24 17:54:54 -07001432 @NativeEntryPoint
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001433 private void reportStatus(int status) {
Mike Lockwoodb8d90332010-10-18 17:59:48 -04001434 if (DEBUG) Log.v(TAG, "reportStatus status: " + status);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001435
destradaaea8a8a62014-06-23 18:19:03 -07001436 boolean wasNavigating = mNavigating;
1437 switch (status) {
1438 case GPS_STATUS_SESSION_BEGIN:
1439 mNavigating = true;
destradaaea8a8a62014-06-23 18:19:03 -07001440 break;
1441 case GPS_STATUS_SESSION_END:
1442 mNavigating = false;
1443 break;
1444 case GPS_STATUS_ENGINE_ON:
destradaaea8a8a62014-06-23 18:19:03 -07001445 break;
1446 case GPS_STATUS_ENGINE_OFF:
destradaaea8a8a62014-06-23 18:19:03 -07001447 mNavigating = false;
1448 break;
1449 }
Mike Lockwooddbd6fd82009-12-07 18:43:36 -05001450
destradaaea8a8a62014-06-23 18:19:03 -07001451 if (wasNavigating != mNavigating) {
Anil Admal75b9fd62018-11-28 11:22:50 -08001452 mGnssStatusListenerHelper.onStatusChanged(mNavigating);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001453 }
1454 }
1455
Wyatt Riley26465d22018-02-12 13:44:24 -08001456 // Helper class to carry data to handler for reportSvStatus
1457 private static class SvStatusInfo {
Soonil Nagarkar1575a042018-10-24 17:54:54 -07001458 private int mSvCount;
1459 private int[] mSvidWithFlags;
1460 private float[] mCn0s;
1461 private float[] mSvElevations;
1462 private float[] mSvAzimuths;
1463 private float[] mSvCarrierFreqs;
Wyatt Riley26465d22018-02-12 13:44:24 -08001464 }
1465
Soonil Nagarkar1575a042018-10-24 17:54:54 -07001466 @NativeEntryPoint
Wyatt Riley26465d22018-02-12 13:44:24 -08001467 private void reportSvStatus(int svCount, int[] svidWithFlags, float[] cn0s,
1468 float[] svElevations, float[] svAzimuths, float[] svCarrierFreqs) {
1469 SvStatusInfo svStatusInfo = new SvStatusInfo();
1470 svStatusInfo.mSvCount = svCount;
1471 svStatusInfo.mSvidWithFlags = svidWithFlags;
1472 svStatusInfo.mCn0s = cn0s;
1473 svStatusInfo.mSvElevations = svElevations;
1474 svStatusInfo.mSvAzimuths = svAzimuths;
1475 svStatusInfo.mSvCarrierFreqs = svCarrierFreqs;
1476
1477 sendMessage(REPORT_SV_STATUS, 0, svStatusInfo);
1478 }
1479
1480 private void handleReportSvStatus(SvStatusInfo info) {
Anil Admal75b9fd62018-11-28 11:22:50 -08001481 mGnssStatusListenerHelper.onSvStatusChanged(
Wyatt Riley26465d22018-02-12 13:44:24 -08001482 info.mSvCount,
1483 info.mSvidWithFlags,
1484 info.mCn0s,
1485 info.mSvElevations,
1486 info.mSvAzimuths,
1487 info.mSvCarrierFreqs);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001488
Siddharth Ray168f12a2017-07-10 11:55:10 -07001489 // Log CN0 as part of GNSS metrics
Blake Kragten025aabe2019-08-28 16:21:35 -07001490 mGnssMetrics.logCn0(info.mCn0s, info.mSvCount, info.mSvCarrierFreqs);
Siddharth Ray168f12a2017-07-10 11:55:10 -07001491
Mike Lockwood29c84342009-05-06 14:01:15 -04001492 if (VERBOSE) {
Wyatt Riley26465d22018-02-12 13:44:24 -08001493 Log.v(TAG, "SV count: " + info.mSvCount);
Lifu Tang30f95a72016-01-07 23:20:38 -08001494 }
Wyatt Rileyc9f25dd2017-05-05 13:45:23 -07001495 // Calculate number of satellites used in fix.
Lifu Tang30f95a72016-01-07 23:20:38 -08001496 int usedInFixCount = 0;
Wyatt Rileyc9f25dd2017-05-05 13:45:23 -07001497 int maxCn0 = 0;
1498 int meanCn0 = 0;
Wyatt Riley26465d22018-02-12 13:44:24 -08001499 for (int i = 0; i < info.mSvCount; i++) {
1500 if ((info.mSvidWithFlags[i] & GnssStatus.GNSS_SV_FLAGS_USED_IN_FIX) != 0) {
Lifu Tang30f95a72016-01-07 23:20:38 -08001501 ++usedInFixCount;
Wyatt Riley26465d22018-02-12 13:44:24 -08001502 if (info.mCn0s[i] > maxCn0) {
1503 maxCn0 = (int) info.mCn0s[i];
Wyatt Rileyc9f25dd2017-05-05 13:45:23 -07001504 }
Wyatt Riley26465d22018-02-12 13:44:24 -08001505 meanCn0 += info.mCn0s[i];
Lifu Tang30f95a72016-01-07 23:20:38 -08001506 }
1507 if (VERBOSE) {
Wyatt Riley26465d22018-02-12 13:44:24 -08001508 Log.v(TAG, "svid: " + (info.mSvidWithFlags[i] >> GnssStatus.SVID_SHIFT_WIDTH) +
1509 " cn0: " + info.mCn0s[i] +
1510 " elev: " + info.mSvElevations[i] +
1511 " azimuth: " + info.mSvAzimuths[i] +
1512 " carrier frequency: " + info.mSvCarrierFreqs[i] +
1513 ((info.mSvidWithFlags[i] & GnssStatus.GNSS_SV_FLAGS_HAS_EPHEMERIS_DATA) == 0
Lifu Tang30f95a72016-01-07 23:20:38 -08001514 ? " " : " E") +
Wyatt Riley26465d22018-02-12 13:44:24 -08001515 ((info.mSvidWithFlags[i] & GnssStatus.GNSS_SV_FLAGS_HAS_ALMANAC_DATA) == 0
Lifu Tang30f95a72016-01-07 23:20:38 -08001516 ? " " : " A") +
Wyatt Riley26465d22018-02-12 13:44:24 -08001517 ((info.mSvidWithFlags[i] & GnssStatus.GNSS_SV_FLAGS_USED_IN_FIX) == 0
gomo4402af62017-01-11 13:20:13 -08001518 ? "" : "U") +
Wyatt Riley26465d22018-02-12 13:44:24 -08001519 ((info.mSvidWithFlags[i] &
1520 GnssStatus.GNSS_SV_FLAGS_HAS_CARRIER_FREQUENCY) == 0
gomo48f1a642017-11-10 20:35:46 -08001521 ? "" : "F"));
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001522 }
Yu-Han Yang284234e2019-03-28 19:35:57 -07001523
1524 if ((info.mSvidWithFlags[i] & GnssStatus.GNSS_SV_FLAGS_USED_IN_FIX) != 0) {
1525 int constellationType =
1526 (info.mSvidWithFlags[i] >> GnssStatus.CONSTELLATION_TYPE_SHIFT_WIDTH)
1527 & GnssStatus.CONSTELLATION_TYPE_MASK;
1528 mGnssMetrics.logConstellationType(constellationType);
1529 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001530 }
Wyatt Rileyc9f25dd2017-05-05 13:45:23 -07001531 if (usedInFixCount > 0) {
1532 meanCn0 /= usedInFixCount;
1533 }
1534 // return number of sats used in fix instead of total reported
Wyatt Rileyc7067412018-02-07 15:50:35 -08001535 mLocationExtras.set(usedInFixCount, meanCn0, maxCn0);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001536
Mike Lockwood15e3d0f2009-05-01 07:53:28 -04001537 if (mNavigating && mStatus == LocationProvider.AVAILABLE && mLastFixTime > 0 &&
gomo48f1a642017-11-10 20:35:46 -08001538 SystemClock.elapsedRealtime() - mLastFixTime > RECENT_FIX_TIMEOUT) {
Wyatt Rileyc7067412018-02-07 15:50:35 -08001539 updateStatus(LocationProvider.TEMPORARILY_UNAVAILABLE);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001540 }
Blake Kragten025aabe2019-08-28 16:21:35 -07001541
1542 mGnssMetrics.logSvStatus(info.mSvCount, info.mSvidWithFlags, info.mSvCarrierFreqs);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001543 }
Mike Lockwood58bda982009-04-14 16:25:07 -04001544
Soonil Nagarkar1575a042018-10-24 17:54:54 -07001545 @NativeEntryPoint
Anil Admalc70344b2018-11-16 14:22:38 -08001546 private void reportAGpsStatus(int agpsType, int agpsStatus, byte[] suplIpAddr) {
1547 mNetworkConnectivityHandler.onReportAGpsStatus(agpsType, agpsStatus, suplIpAddr);
destradaae21252a2015-09-08 12:32:59 -07001548 }
1549
Soonil Nagarkar1575a042018-10-24 17:54:54 -07001550 @NativeEntryPoint
Mike Lockwoodf602d362010-06-20 14:28:16 -07001551 private void reportNmea(long timestamp) {
Wyatt Riley5d5bac82016-11-01 07:05:16 -07001552 if (!mItarSpeedLimitExceeded) {
1553 int length = native_read_nmea(mNmeaBuffer, mNmeaBuffer.length);
1554 String nmea = new String(mNmeaBuffer, 0 /* offset */, length);
Anil Admal75b9fd62018-11-28 11:22:50 -08001555 mGnssStatusListenerHelper.onNmeaReceived(timestamp, nmea);
Wyatt Riley5d5bac82016-11-01 07:05:16 -07001556 }
destradaaea8a8a62014-06-23 18:19:03 -07001557 }
Mike Lockwoodb16e7802009-08-06 09:26:02 -04001558
Soonil Nagarkar1575a042018-10-24 17:54:54 -07001559 @NativeEntryPoint
Lifu Tang818aa2c2016-02-01 01:52:00 -08001560 private void reportMeasurementData(GnssMeasurementsEvent 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(() -> mGnssMeasurementsProvider.onMeasurementsAvailable(event));
Wyatt Riley5d5bac82016-11-01 07:05:16 -07001564 }
Mike Lockwoodb16e7802009-08-06 09:26:02 -04001565 }
1566
Soonil Nagarkar1575a042018-10-24 17:54:54 -07001567 @NativeEntryPoint
Lifu Tange8abe8e2016-04-01 10:32:05 -07001568 private void reportNavigationMessage(GnssNavigationMessage event) {
Wyatt Riley5d5bac82016-11-01 07:05:16 -07001569 if (!mItarSpeedLimitExceeded) {
Wyatt Rileyaa420d52017-07-03 15:14:42 -07001570 // send to handler to allow native to return quickly
Soonil Nagarkar1575a042018-10-24 17:54:54 -07001571 mHandler.post(() -> mGnssNavigationMessageProvider.onNavigationMessageAvailable(event));
Wyatt Riley5d5bac82016-11-01 07:05:16 -07001572 }
destradaa4b3e3932014-07-21 18:01:47 -07001573 }
1574
Soonil Nagarkar1575a042018-10-24 17:54:54 -07001575 @NativeEntryPoint
Anil Admal62c42dc2019-04-03 15:39:22 -07001576 private void setTopHalCapabilities(int topHalCapabilities) {
Anil Admalefd9dc62019-03-12 17:39:20 -07001577 mHandler.post(() -> {
Anil Admal312fddb2019-03-25 12:15:43 -07001578 mTopHalCapabilities = topHalCapabilities;
Mike Lockwood9b9fb5c2011-06-29 15:09:40 -04001579
Anil Admalefd9dc62019-03-12 17:39:20 -07001580 if (hasCapability(GPS_CAPABILITY_ON_DEMAND_TIME)) {
1581 mNtpTimeHelper.enablePeriodicTimeInjection();
1582 requestUtcTime();
1583 }
Soonil Nagarkar1575a042018-10-24 17:54:54 -07001584
Anil Admal62c42dc2019-04-03 15:39:22 -07001585 mGnssMeasurementsProvider.onCapabilitiesUpdated(
1586 hasCapability(GPS_CAPABILITY_MEASUREMENTS));
1587 mGnssNavigationMessageProvider.onCapabilitiesUpdated(
1588 hasCapability(GPS_CAPABILITY_NAV_MESSAGES));
Anil Admalefd9dc62019-03-12 17:39:20 -07001589 restartRequests();
Anil Admal312fddb2019-03-25 12:15:43 -07001590
Anil Admal62c42dc2019-04-03 15:39:22 -07001591 mGnssCapabilitiesProvider.setTopHalCapabilities(mTopHalCapabilities);
Anil Admalefd9dc62019-03-12 17:39:20 -07001592 });
1593 }
1594
1595 @NativeEntryPoint
Anil Admal312fddb2019-03-25 12:15:43 -07001596 private void setSubHalMeasurementCorrectionsCapabilities(int subHalCapabilities) {
1597 mHandler.post(() -> {
1598 if (!mGnssMeasurementCorrectionsProvider.onCapabilitiesUpdated(subHalCapabilities)) {
1599 return;
1600 }
1601
1602 mGnssCapabilitiesProvider.setSubHalMeasurementCorrectionsCapabilities(
1603 subHalCapabilities);
1604 });
Yu-Han Yang52057622018-04-25 00:51:22 -07001605 }
1606
1607 private void restartRequests() {
1608 Log.i(TAG, "restartRequests");
1609
1610 restartLocationRequest();
1611 mGnssMeasurementsProvider.resumeIfStarted();
1612 mGnssNavigationMessageProvider.resumeIfStarted();
1613 mGnssBatchingProvider.resumeIfStarted();
1614 mGnssGeofenceProvider.resumeIfStarted();
1615 }
1616
1617 private void restartLocationRequest() {
1618 if (DEBUG) Log.d(TAG, "restartLocationRequest");
WyattRileyba6072f2019-04-18 07:37:52 -07001619 setStarted(false);
Yu-Han Yang52057622018-04-25 00:51:22 -07001620 updateRequirements();
1621 }
Wyatt Rileyd87cf912017-12-05 09:31:52 -08001622
Soonil Nagarkar1575a042018-10-24 17:54:54 -07001623 @NativeEntryPoint
Wyatt Rileyd87cf912017-12-05 09:31:52 -08001624 private void setGnssYearOfHardware(final int yearOfHardware) {
1625 // mHardwareYear is simply set here, to be read elsewhere, and is volatile for safe sync
1626 if (DEBUG) Log.d(TAG, "setGnssYearOfHardware called with " + yearOfHardware);
1627 mHardwareYear = yearOfHardware;
Mike Lockwood04598b62010-04-14 17:17:24 -04001628 }
1629
Soonil Nagarkar1575a042018-10-24 17:54:54 -07001630 @NativeEntryPoint
Wyatt Rileyd87cf912017-12-05 09:31:52 -08001631 private void setGnssHardwareModelName(final String modelName) {
1632 // mHardwareModelName is simply set here, to be read elsewhere, and volatile for safe sync
1633 if (DEBUG) Log.d(TAG, "setGnssModelName called with " + modelName);
1634 mHardwareModelName = modelName;
Lifu Tang82f893d2016-01-21 18:15:33 -08001635 }
1636
Soonil Nagarkar1575a042018-10-24 17:54:54 -07001637 @NativeEntryPoint
Yu-Han Yang52057622018-04-25 00:51:22 -07001638 private void reportGnssServiceDied() {
1639 if (DEBUG) Log.d(TAG, "reportGnssServiceDied");
1640 mHandler.post(() -> {
Anil Admal0c2b21bd2019-05-03 18:29:02 -07001641 setupNativeGnssService(/* reinitializeGnssServiceHandle = */ true);
Yu-Han Yang76f99952019-05-04 17:45:44 -07001642 if (isGpsEnabled()) {
1643 setGpsEnabled(false);
1644
Soonil Nagarkar35c3b912019-01-31 10:31:24 -08001645 updateEnabled();
1646
Yu-Han Yang52057622018-04-25 00:51:22 -07001647 // resend configuration into the restarted HAL service.
Anil Admald71cf142018-12-21 14:59:36 -08001648 reloadGpsProperties();
Yu-Han Yang52057622018-04-25 00:51:22 -07001649 }
1650 });
1651 }
1652
Lifu Tang9363b942016-02-16 18:07:00 -08001653 public interface GnssSystemInfoProvider {
Lifu Tang82f893d2016-01-21 18:15:33 -08001654 /**
Wyatt Rileyd87cf912017-12-05 09:31:52 -08001655 * Returns the year of underlying GPS hardware.
Lifu Tang82f893d2016-01-21 18:15:33 -08001656 */
Lifu Tang9363b942016-02-16 18:07:00 -08001657 int getGnssYearOfHardware();
Soonil Nagarkar1575a042018-10-24 17:54:54 -07001658
Wyatt Rileyd87cf912017-12-05 09:31:52 -08001659 /**
1660 * Returns the model name of underlying GPS hardware.
1661 */
1662 String getGnssHardwareModelName();
Lifu Tang82f893d2016-01-21 18:15:33 -08001663 }
1664
1665 /**
1666 * @hide
1667 */
Lifu Tang9363b942016-02-16 18:07:00 -08001668 public GnssSystemInfoProvider getGnssSystemInfoProvider() {
1669 return new GnssSystemInfoProvider() {
Lifu Tang82f893d2016-01-21 18:15:33 -08001670 @Override
Lifu Tang9363b942016-02-16 18:07:00 -08001671 public int getGnssYearOfHardware() {
Wyatt Rileyd87cf912017-12-05 09:31:52 -08001672 return mHardwareYear;
1673 }
Soonil Nagarkar1575a042018-10-24 17:54:54 -07001674
Wyatt Rileyd87cf912017-12-05 09:31:52 -08001675 @Override
1676 public String getGnssHardwareModelName() {
1677 return mHardwareModelName;
Lifu Tang82f893d2016-01-21 18:15:33 -08001678 }
1679 };
1680 }
1681
Wyatt Rileycf879db2017-01-12 13:57:38 -08001682 /**
1683 * @hide
1684 */
1685 public GnssBatchingProvider getGnssBatchingProvider() {
Yu-Han Yang3557cc72018-03-21 12:48:36 -07001686 return mGnssBatchingProvider;
Wyatt Rileycf879db2017-01-12 13:57:38 -08001687 }
1688
Siddharth Raybb608c82017-03-16 11:33:34 -07001689 public interface GnssMetricsProvider {
1690 /**
1691 * Returns GNSS metrics as proto string
1692 */
1693 String getGnssMetricsAsProtoString();
1694 }
1695
1696 /**
1697 * @hide
1698 */
1699 public GnssMetricsProvider getGnssMetricsProvider() {
Soonil Nagarkar1575a042018-10-24 17:54:54 -07001700 return () -> mGnssMetrics.dumpGnssMetricsAsProtoString();
Siddharth Raybb608c82017-03-16 11:33:34 -07001701 }
1702
Anil Admal312fddb2019-03-25 12:15:43 -07001703 /**
1704 * @hide
1705 */
1706 public GnssCapabilitiesProvider getGnssCapabilitiesProvider() {
1707 return mGnssCapabilitiesProvider;
1708 }
1709
Soonil Nagarkar1575a042018-10-24 17:54:54 -07001710 @NativeEntryPoint
Wyatt Rileycf879db2017-01-12 13:57:38 -08001711 private void reportLocationBatch(Location[] locationArray) {
1712 List<Location> locations = new ArrayList<>(Arrays.asList(locationArray));
gomo48f1a642017-11-10 20:35:46 -08001713 if (DEBUG) {
1714 Log.d(TAG, "Location batch of size " + locationArray.length + " reported");
1715 }
Soonil Nagarkar1575a042018-10-24 17:54:54 -07001716 reportLocation(locations);
Wyatt Rileycf879db2017-01-12 13:57:38 -08001717 }
1718
Soonil Nagarkar1575a042018-10-24 17:54:54 -07001719 @NativeEntryPoint
Kevin Tang8c6ac672019-03-22 12:31:01 -07001720 private void psdsDownloadRequest() {
1721 if (DEBUG) Log.d(TAG, "psdsDownloadRequest");
1722 sendMessage(DOWNLOAD_PSDS_DATA, 0, null);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001723 }
1724
Jaikumar Ganesh8ce470d2013-04-03 12:22:18 -07001725 /**
destradaa0682809a2013-08-12 18:50:30 -07001726 * Converts the GPS HAL status to the internal Geofence Hardware status.
1727 */
Yu-Han Yang6dc9f052018-12-04 17:11:24 -08001728 private static int getGeofenceStatus(int status) {
gomo48f1a642017-11-10 20:35:46 -08001729 switch (status) {
destradaa0682809a2013-08-12 18:50:30 -07001730 case GPS_GEOFENCE_OPERATION_SUCCESS:
1731 return GeofenceHardware.GEOFENCE_SUCCESS;
1732 case GPS_GEOFENCE_ERROR_GENERIC:
1733 return GeofenceHardware.GEOFENCE_FAILURE;
1734 case GPS_GEOFENCE_ERROR_ID_EXISTS:
1735 return GeofenceHardware.GEOFENCE_ERROR_ID_EXISTS;
1736 case GPS_GEOFENCE_ERROR_INVALID_TRANSITION:
1737 return GeofenceHardware.GEOFENCE_ERROR_INVALID_TRANSITION;
1738 case GPS_GEOFENCE_ERROR_TOO_MANY_GEOFENCES:
1739 return GeofenceHardware.GEOFENCE_ERROR_TOO_MANY_GEOFENCES;
1740 case GPS_GEOFENCE_ERROR_ID_UNKNOWN:
1741 return GeofenceHardware.GEOFENCE_ERROR_ID_UNKNOWN;
1742 default:
1743 return -1;
1744 }
1745 }
1746
Soonil Nagarkar1575a042018-10-24 17:54:54 -07001747 @NativeEntryPoint
Wyatt Riley5d229832017-02-10 17:06:00 -08001748 private void reportGeofenceTransition(int geofenceId, Location location, int transition,
gomo48f1a642017-11-10 20:35:46 -08001749 long transitionTimestamp) {
Yu-Han Yang6dc9f052018-12-04 17:11:24 -08001750 mHandler.post(() -> {
1751 if (mGeofenceHardwareImpl == null) {
1752 mGeofenceHardwareImpl = GeofenceHardwareImpl.getInstance(mContext);
1753 }
Wyatt Riley5d229832017-02-10 17:06:00 -08001754
Yu-Han Yang6dc9f052018-12-04 17:11:24 -08001755 mGeofenceHardwareImpl.reportGeofenceTransition(
1756 geofenceId,
1757 location,
1758 transition,
1759 transitionTimestamp,
1760 GeofenceHardware.MONITORING_TYPE_GPS_HARDWARE,
1761 FusedBatchOptions.SourceTechnologies.GNSS);
1762 });
Jaikumar Ganesh8ce470d2013-04-03 12:22:18 -07001763 }
1764
Soonil Nagarkar1575a042018-10-24 17:54:54 -07001765 @NativeEntryPoint
Wyatt Riley5d229832017-02-10 17:06:00 -08001766 private void reportGeofenceStatus(int status, Location location) {
Yu-Han Yang6dc9f052018-12-04 17:11:24 -08001767 mHandler.post(() -> {
1768 if (mGeofenceHardwareImpl == null) {
1769 mGeofenceHardwareImpl = GeofenceHardwareImpl.getInstance(mContext);
1770 }
1771 int monitorStatus = GeofenceHardware.MONITOR_CURRENTLY_UNAVAILABLE;
1772 if (status == GPS_GEOFENCE_AVAILABLE) {
1773 monitorStatus = GeofenceHardware.MONITOR_CURRENTLY_AVAILABLE;
1774 }
1775 mGeofenceHardwareImpl.reportGeofenceMonitorStatus(
1776 GeofenceHardware.MONITORING_TYPE_GPS_HARDWARE,
1777 monitorStatus,
1778 location,
1779 FusedBatchOptions.SourceTechnologies.GNSS);
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 reportGeofenceAddStatus(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.reportGeofenceAddStatus(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 reportGeofenceRemoveStatus(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.reportGeofenceRemoveStatus(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 reportGeofencePauseStatus(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.reportGeofencePauseStatus(geofenceId, getGeofenceStatus(status));
1810 });
Jaikumar Ganesh8ce470d2013-04-03 12:22:18 -07001811 }
1812
Soonil Nagarkar1575a042018-10-24 17:54:54 -07001813 @NativeEntryPoint
Jaikumar Ganesh8ce470d2013-04-03 12:22:18 -07001814 private void reportGeofenceResumeStatus(int geofenceId, int status) {
Yu-Han Yang6dc9f052018-12-04 17:11:24 -08001815 mHandler.post(() -> {
1816 if (mGeofenceHardwareImpl == null) {
1817 mGeofenceHardwareImpl = GeofenceHardwareImpl.getInstance(mContext);
1818 }
1819 mGeofenceHardwareImpl.reportGeofenceResumeStatus(geofenceId, getGeofenceStatus(status));
1820 });
Jaikumar Ganesh8ce470d2013-04-03 12:22:18 -07001821 }
1822
Danke Xie22d1f9f2009-08-18 18:28:45 -04001823 //=============================================================
1824 // NI Client support
Miguel Torroja1e84da82010-07-27 07:02:24 +02001825 //=============================================================
Danke Xie22d1f9f2009-08-18 18:28:45 -04001826 private final INetInitiatedListener mNetInitiatedListener = new INetInitiatedListener.Stub() {
destradaaef752b62015-04-17 13:10:47 -07001827 // Sends a response for an NI request to HAL.
Nick Pelly6fa9ad42012-07-16 12:18:23 -07001828 @Override
gomo48f1a642017-11-10 20:35:46 -08001829 public boolean sendNiResponse(int notificationId, int userResponse) {
Miguel Torroja1e84da82010-07-27 07:02:24 +02001830 // TODO Add Permission check
Danke Xie22d1f9f2009-08-18 18:28:45 -04001831
gomo48f1a642017-11-10 20:35:46 -08001832 if (DEBUG) {
1833 Log.d(TAG, "sendNiResponse, notifId: " + notificationId +
1834 ", response: " + userResponse);
1835 }
Miguel Torroja1e84da82010-07-27 07:02:24 +02001836 native_send_ni_response(notificationId, userResponse);
Yu-Han Yang8a1b51d2018-12-26 22:18:31 -08001837
1838 StatsLog.write(StatsLog.GNSS_NI_EVENT_REPORTED,
1839 StatsLog.GNSS_NI_EVENT_REPORTED__EVENT_TYPE__NI_RESPONSE,
1840 notificationId,
1841 /* niType= */ 0,
1842 /* needNotify= */ false,
1843 /* needVerify= */ false,
1844 /* privacyOverride= */ false,
1845 /* timeout= */ 0,
1846 /* defaultResponse= */ 0,
1847 /* requestorId= */ null,
1848 /* text= */ null,
1849 /* requestorIdEncoding= */ 0,
1850 /* textEncoding= */ 0,
1851 mSuplEsEnabled,
Yu-Han Yang76f99952019-05-04 17:45:44 -07001852 isGpsEnabled(),
Yu-Han Yang8a1b51d2018-12-26 22:18:31 -08001853 userResponse);
1854
Miguel Torroja1e84da82010-07-27 07:02:24 +02001855 return true;
1856 }
Danke Xie22d1f9f2009-08-18 18:28:45 -04001857 };
Nick Pelly6fa9ad42012-07-16 12:18:23 -07001858
Danke Xie22d1f9f2009-08-18 18:28:45 -04001859 public INetInitiatedListener getNetInitiatedListener() {
1860 return mNetInitiatedListener;
1861 }
1862
Soonil Nagarkar1575a042018-10-24 17:54:54 -07001863 /** Reports a NI notification. */
1864 @NativeEntryPoint
Miguel Torroja1e84da82010-07-27 07:02:24 +02001865 public void reportNiNotification(
1866 int notificationId,
1867 int niType,
1868 int notifyFlags,
1869 int timeout,
1870 int defaultResponse,
1871 String requestorId,
1872 String text,
1873 int requestorIdEncoding,
Hridya Valsaraju2ea29602016-09-13 08:38:09 -07001874 int textEncoding
gomo48f1a642017-11-10 20:35:46 -08001875 ) {
Miguel Torroja1e84da82010-07-27 07:02:24 +02001876 Log.i(TAG, "reportNiNotification: entered");
1877 Log.i(TAG, "notificationId: " + notificationId +
1878 ", niType: " + niType +
1879 ", notifyFlags: " + notifyFlags +
1880 ", timeout: " + timeout +
1881 ", defaultResponse: " + defaultResponse);
1882
1883 Log.i(TAG, "requestorId: " + requestorId +
1884 ", text: " + text +
1885 ", requestorIdEncoding: " + requestorIdEncoding +
1886 ", textEncoding: " + textEncoding);
1887
1888 GpsNiNotification notification = new GpsNiNotification();
1889
1890 notification.notificationId = notificationId;
1891 notification.niType = niType;
1892 notification.needNotify = (notifyFlags & GpsNetInitiatedHandler.GPS_NI_NEED_NOTIFY) != 0;
1893 notification.needVerify = (notifyFlags & GpsNetInitiatedHandler.GPS_NI_NEED_VERIFY) != 0;
gomo48f1a642017-11-10 20:35:46 -08001894 notification.privacyOverride =
1895 (notifyFlags & GpsNetInitiatedHandler.GPS_NI_PRIVACY_OVERRIDE) != 0;
Miguel Torroja1e84da82010-07-27 07:02:24 +02001896 notification.timeout = timeout;
1897 notification.defaultResponse = defaultResponse;
1898 notification.requestorId = requestorId;
1899 notification.text = text;
1900 notification.requestorIdEncoding = requestorIdEncoding;
1901 notification.textEncoding = textEncoding;
1902
Miguel Torroja1e84da82010-07-27 07:02:24 +02001903 mNIHandler.handleNiNotification(notification);
Yu-Han Yang8a1b51d2018-12-26 22:18:31 -08001904 StatsLog.write(StatsLog.GNSS_NI_EVENT_REPORTED,
1905 StatsLog.GNSS_NI_EVENT_REPORTED__EVENT_TYPE__NI_REQUEST,
1906 notification.notificationId,
1907 notification.niType,
1908 notification.needNotify,
1909 notification.needVerify,
1910 notification.privacyOverride,
1911 notification.timeout,
1912 notification.defaultResponse,
1913 notification.requestorId,
1914 notification.text,
1915 notification.requestorIdEncoding,
1916 notification.textEncoding,
1917 mSuplEsEnabled,
Yu-Han Yang76f99952019-05-04 17:45:44 -07001918 isGpsEnabled(),
Yu-Han Yang8a1b51d2018-12-26 22:18:31 -08001919 /* userResponse= */ 0);
Miguel Torroja1e84da82010-07-27 07:02:24 +02001920 }
1921
1922 /**
Miguel Torroja1e84da82010-07-27 07:02:24 +02001923 * We should be careful about receiving null string from the TelephonyManager,
1924 * because sending null String to JNI function would cause a crash.
1925 */
Soonil Nagarkar1575a042018-10-24 17:54:54 -07001926 @NativeEntryPoint
Miguel Torroja1e84da82010-07-27 07:02:24 +02001927 private void requestSetID(int flags) {
1928 TelephonyManager phone = (TelephonyManager)
1929 mContext.getSystemService(Context.TELEPHONY_SERVICE);
destradaaef752b62015-04-17 13:10:47 -07001930 int type = AGPS_SETID_TYPE_NONE;
Anil Admale1539e82019-05-09 15:05:04 -07001931 String setId = null;
Miguel Torroja1e84da82010-07-27 07:02:24 +02001932
Anil Admale1539e82019-05-09 15:05:04 -07001933 int ddSubId = SubscriptionManager.getDefaultDataSubscriptionId();
Miguel Torroja1e84da82010-07-27 07:02:24 +02001934 if ((flags & AGPS_RIL_REQUEST_SETID_IMSI) == AGPS_RIL_REQUEST_SETID_IMSI) {
Anil Admale1539e82019-05-09 15:05:04 -07001935 if (SubscriptionManager.isValidSubscriptionId(ddSubId)) {
1936 setId = phone.getSubscriberId(ddSubId);
1937 }
1938 if (setId == null) {
1939 setId = phone.getSubscriberId();
1940 }
1941 if (setId != null) {
Miguel Torroja1e84da82010-07-27 07:02:24 +02001942 // This means the framework has the SIM card.
Miguel Torroja1e84da82010-07-27 07:02:24 +02001943 type = AGPS_SETID_TYPE_IMSI;
1944 }
gomo48f1a642017-11-10 20:35:46 -08001945 } else if ((flags & AGPS_RIL_REQUEST_SETID_MSISDN) == AGPS_RIL_REQUEST_SETID_MSISDN) {
Anil Admale1539e82019-05-09 15:05:04 -07001946 if (SubscriptionManager.isValidSubscriptionId(ddSubId)) {
1947 setId = phone.getLine1Number(ddSubId);
1948 }
1949 if (setId == null) {
1950 setId = phone.getLine1Number();
1951 }
1952 if (setId != null) {
Miguel Torroja1e84da82010-07-27 07:02:24 +02001953 // This means the framework has the SIM card.
Miguel Torroja1e84da82010-07-27 07:02:24 +02001954 type = AGPS_SETID_TYPE_MSISDN;
1955 }
1956 }
Anil Admale1539e82019-05-09 15:05:04 -07001957
1958 native_agps_set_id(type, (setId == null) ? "" : setId);
Miguel Torroja1e84da82010-07-27 07:02:24 +02001959 }
1960
Soonil Nagarkar1575a042018-10-24 17:54:54 -07001961 @NativeEntryPoint
Yu-Han Yang53f4d6d2019-02-13 21:47:41 -08001962 private void requestLocation(boolean independentFromGnss, boolean isUserEmergency) {
Yu-Han Yange7baef32018-02-09 13:58:17 -08001963 if (DEBUG) {
Yu-Han Yang53f4d6d2019-02-13 21:47:41 -08001964 Log.d(TAG, "requestLocation. independentFromGnss: " + independentFromGnss
1965 + ", isUserEmergency: "
1966 + isUserEmergency);
Yu-Han Yange7baef32018-02-09 13:58:17 -08001967 }
Yu-Han Yang53f4d6d2019-02-13 21:47:41 -08001968 sendMessage(REQUEST_LOCATION, independentFromGnss ? 1 : 0, isUserEmergency);
Yu-Han Yange7baef32018-02-09 13:58:17 -08001969 }
1970
Soonil Nagarkar1575a042018-10-24 17:54:54 -07001971 @NativeEntryPoint
Mike Lockwood9b9fb5c2011-06-29 15:09:40 -04001972 private void requestUtcTime() {
destradaae21252a2015-09-08 12:32:59 -07001973 if (DEBUG) Log.d(TAG, "utcTimeRequest");
Mike Lockwood9b9fb5c2011-06-29 15:09:40 -04001974 sendMessage(INJECT_NTP_TIME, 0, null);
1975 }
1976
Soonil Nagarkar1575a042018-10-24 17:54:54 -07001977 @NativeEntryPoint
Hridya Valsaraju2ea29602016-09-13 08:38:09 -07001978 private void requestRefLocation() {
Miguel Torroja1e84da82010-07-27 07:02:24 +02001979 TelephonyManager phone = (TelephonyManager)
1980 mContext.getSystemService(Context.TELEPHONY_SERVICE);
Victoria Leased50d0c32012-10-29 13:16:17 -07001981 final int phoneType = phone.getPhoneType();
1982 if (phoneType == TelephonyManager.PHONE_TYPE_GSM) {
Miguel Torroja1e84da82010-07-27 07:02:24 +02001983 GsmCellLocation gsm_cell = (GsmCellLocation) phone.getCellLocation();
Victoria Leased50d0c32012-10-29 13:16:17 -07001984 if ((gsm_cell != null) && (phone.getNetworkOperator() != null)
1985 && (phone.getNetworkOperator().length() > 3)) {
Miguel Torroja1e84da82010-07-27 07:02:24 +02001986 int type;
gomo48f1a642017-11-10 20:35:46 -08001987 int mcc = Integer.parseInt(phone.getNetworkOperator().substring(0, 3));
Miguel Torroja1e84da82010-07-27 07:02:24 +02001988 int mnc = Integer.parseInt(phone.getNetworkOperator().substring(3));
Mike Lockwoodedc0f3872010-10-22 09:16:17 -04001989 int networkType = phone.getNetworkType();
1990 if (networkType == TelephonyManager.NETWORK_TYPE_UMTS
gomo48f1a642017-11-10 20:35:46 -08001991 || networkType == TelephonyManager.NETWORK_TYPE_HSDPA
1992 || networkType == TelephonyManager.NETWORK_TYPE_HSUPA
1993 || networkType == TelephonyManager.NETWORK_TYPE_HSPA
1994 || networkType == TelephonyManager.NETWORK_TYPE_HSPAP) {
Miguel Torroja1e84da82010-07-27 07:02:24 +02001995 type = AGPS_REF_LOCATION_TYPE_UMTS_CELLID;
Mike Lockwoodedc0f3872010-10-22 09:16:17 -04001996 } else {
Miguel Torroja1e84da82010-07-27 07:02:24 +02001997 type = AGPS_REF_LOCATION_TYPE_GSM_CELLID;
Mike Lockwoodedc0f3872010-10-22 09:16:17 -04001998 }
Miguel Torroja1e84da82010-07-27 07:02:24 +02001999 native_agps_set_ref_location_cellid(type, mcc, mnc,
2000 gsm_cell.getLac(), gsm_cell.getCid());
Mike Lockwoodedc0f3872010-10-22 09:16:17 -04002001 } else {
gomo48f1a642017-11-10 20:35:46 -08002002 Log.e(TAG, "Error getting cell location info.");
Mike Lockwoodedc0f3872010-10-22 09:16:17 -04002003 }
Victoria Leased50d0c32012-10-29 13:16:17 -07002004 } else if (phoneType == TelephonyManager.PHONE_TYPE_CDMA) {
2005 Log.e(TAG, "CDMA not supported.");
Mike Lockwoodedc0f3872010-10-22 09:16:17 -04002006 }
Miguel Torroja1e84da82010-07-27 07:02:24 +02002007 }
Danke Xie22d1f9f2009-08-18 18:28:45 -04002008
Anil Admal94ec76a2019-01-15 09:42:01 -08002009 // Implements method nfwNotifyCb() in IGnssVisibilityControlCallback.hal.
2010 @NativeEntryPoint
2011 private void reportNfwNotification(String proxyAppPackageName, byte protocolStack,
2012 String otherProtocolStackName, byte requestor, String requestorId, byte responseType,
2013 boolean inEmergencyMode, boolean isCachedLocation) {
2014 if (mGnssVisibilityControl == null) {
2015 Log.e(TAG, "reportNfwNotification: mGnssVisibilityControl is not initialized.");
2016 return;
2017 }
2018
2019 mGnssVisibilityControl.reportNfwNotification(proxyAppPackageName, protocolStack,
2020 otherProtocolStackName, requestor, requestorId, responseType, inEmergencyMode,
2021 isCachedLocation);
2022 }
2023
2024 // Implements method isInEmergencySession() in IGnssVisibilityControlCallback.hal.
2025 @NativeEntryPoint
2026 boolean isInEmergencySession() {
2027 return mNIHandler.getInEmergency();
2028 }
2029
Mike Lockwood98e48692010-04-07 16:32:51 -04002030 private void sendMessage(int message, int arg, Object obj) {
Nick Pelly6fa9ad42012-07-16 12:18:23 -07002031 // hold a wake lock until this message is delivered
Jeff Brown028872f2012-08-25 13:07:01 -07002032 // note that this assumes the message will not be removed from the queue before
2033 // it is handled (otherwise the wake lock would be leaked).
Nick Pelly6fa9ad42012-07-16 12:18:23 -07002034 mWakeLock.acquire();
Anil Admal4f97c942018-11-12 10:52:46 -08002035 if (DEBUG) {
2036 Log.d(TAG, "WakeLock acquired by sendMessage(" + messageIdAsString(message) + ", " + arg
Wyatt Rileycf879db2017-01-12 13:57:38 -08002037 + ", " + obj + ")");
2038 }
Nick Pelly6fa9ad42012-07-16 12:18:23 -07002039 mHandler.obtainMessage(message, arg, 1, obj).sendToTarget();
Mike Lockwood98e48692010-04-07 16:32:51 -04002040 }
2041
Mike Lockwood62a8fc12010-03-22 14:23:26 -04002042 private final class ProviderHandler extends Handler {
Victoria Lease5cd731a2012-12-19 15:04:21 -08002043 public ProviderHandler(Looper looper) {
2044 super(looper, null, true /*async*/);
Jeff Brown028872f2012-08-25 13:07:01 -07002045 }
2046
Mike Lockwood62a8fc12010-03-22 14:23:26 -04002047 @Override
Mike Lockwood4a7b65e2010-10-25 16:35:55 -04002048 public void handleMessage(Message msg) {
Mike Lockwood98e48692010-04-07 16:32:51 -04002049 int message = msg.what;
2050 switch (message) {
Nick Pelly6fa9ad42012-07-16 12:18:23 -07002051 case SET_REQUEST:
2052 GpsRequest gpsRequest = (GpsRequest) msg.obj;
2053 handleSetRequest(gpsRequest.request, gpsRequest.source);
Mike Lockwood03ca2162010-04-01 08:10:09 -07002054 break;
Mike Lockwood62a8fc12010-03-22 14:23:26 -04002055 case INJECT_NTP_TIME:
Yu-Han Yanga1862b52018-02-20 17:05:59 -08002056 mNtpTimeHelper.retrieveAndInjectNtpTime();
Mike Lockwood62a8fc12010-03-22 14:23:26 -04002057 break;
Yu-Han Yange7baef32018-02-09 13:58:17 -08002058 case REQUEST_LOCATION:
Yu-Han Yang53f4d6d2019-02-13 21:47:41 -08002059 handleRequestLocation(msg.arg1 == 1, (boolean) msg.obj);
Yu-Han Yange7baef32018-02-09 13:58:17 -08002060 break;
Kevin Tang8c6ac672019-03-22 12:31:01 -07002061 case DOWNLOAD_PSDS_DATA:
2062 handleDownloadPsdsData();
Mike Lockwood62a8fc12010-03-22 14:23:26 -04002063 break;
Kevin Tang8c6ac672019-03-22 12:31:01 -07002064 case DOWNLOAD_PSDS_DATA_FINISHED:
2065 mDownloadPsdsDataPending = STATE_IDLE;
Kevin Tang40e1baf2012-01-10 14:32:44 -08002066 break;
Mike Lockwood62a8fc12010-03-22 14:23:26 -04002067 case UPDATE_LOCATION:
destradaae21252a2015-09-08 12:32:59 -07002068 handleUpdateLocation((Location) msg.obj);
Mike Lockwood62a8fc12010-03-22 14:23:26 -04002069 break;
destradaafb23c672015-04-16 14:01:27 -07002070 case INITIALIZE_HANDLER:
destradaae21252a2015-09-08 12:32:59 -07002071 handleInitialize();
destradaafb23c672015-04-16 14:01:27 -07002072 break;
Wyatt Riley26465d22018-02-12 13:44:24 -08002073 case REPORT_LOCATION:
2074 handleReportLocation(msg.arg1 == 1, (Location) msg.obj);
2075 break;
2076 case REPORT_SV_STATUS:
2077 handleReportSvStatus((SvStatusInfo) msg.obj);
2078 break;
Kweku Adamsb8bb9fb2019-08-28 07:45:00 -07002079 case UPDATE_LOW_POWER_MODE:
2080 updateLowPowerMode();
2081 break;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002082 }
Nick Pelly6fa9ad42012-07-16 12:18:23 -07002083 if (msg.arg2 == 1) {
2084 // wakelock was taken for this message, release it
2085 mWakeLock.release();
Anil Admal4f97c942018-11-12 10:52:46 -08002086 if (DEBUG) {
2087 Log.d(TAG, "WakeLock released by handleMessage(" + messageIdAsString(message)
Wyatt Rileycf879db2017-01-12 13:57:38 -08002088 + ", " + msg.arg1 + ", " + msg.obj + ")");
2089 }
Mike Lockwood98e48692010-04-07 16:32:51 -04002090 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002091 }
destradaafb23c672015-04-16 14:01:27 -07002092
2093 /**
Soonil Nagarkar1575a042018-10-24 17:54:54 -07002094 * This method is bound to {@link #GnssLocationProvider(Context, LocationProviderManager,
2095 * Looper)}.
destradaafb23c672015-04-16 14:01:27 -07002096 * It is in charge of loading properties and registering for events that will be posted to
2097 * this handler.
2098 */
destradaae21252a2015-09-08 12:32:59 -07002099 private void handleInitialize() {
Anil Admal0c2b21bd2019-05-03 18:29:02 -07002100 // class_init_native() already initializes the GNSS service handle during class loading.
2101 setupNativeGnssService(/* reinitializeGnssServiceHandle = */ false);
Wyatt Riley523a0cf2017-10-31 14:36:52 -07002102
Anil Admal94ec76a2019-01-15 09:42:01 -08002103 if (native_is_gnss_visibility_control_supported()) {
Anil Admal8a246a22019-05-05 00:34:55 -07002104 mGnssVisibilityControl = new GnssVisibilityControl(mContext, mLooper, mNIHandler);
Anil Admal94ec76a2019-01-15 09:42:01 -08002105 }
2106
destradaafb23c672015-04-16 14:01:27 -07002107 // load default GPS configuration
2108 // (this configuration might change in the future based on SIM changes)
Anil Admald71cf142018-12-21 14:59:36 -08002109 reloadGpsProperties();
destradaafb23c672015-04-16 14:01:27 -07002110
destradaafb23c672015-04-16 14:01:27 -07002111 // listen for events
WyattRiley6593cf12018-06-23 10:37:48 -07002112 IntentFilter intentFilter = new IntentFilter();
destradaafb23c672015-04-16 14:01:27 -07002113 intentFilter.addAction(ALARM_WAKEUP);
2114 intentFilter.addAction(ALARM_TIMEOUT);
destradaafb23c672015-04-16 14:01:27 -07002115 intentFilter.addAction(PowerManager.ACTION_POWER_SAVE_MODE_CHANGED);
Adam Lesinski87c17df2015-05-27 13:24:13 -07002116 intentFilter.addAction(PowerManager.ACTION_DEVICE_IDLE_MODE_CHANGED);
destradaafb23c672015-04-16 14:01:27 -07002117 intentFilter.addAction(Intent.ACTION_SCREEN_OFF);
2118 intentFilter.addAction(Intent.ACTION_SCREEN_ON);
Meng Wang19b214d2018-11-07 12:14:39 -08002119 intentFilter.addAction(CarrierConfigManager.ACTION_CARRIER_CONFIG_CHANGED);
Anil Admale1539e82019-05-09 15:05:04 -07002120 intentFilter.addAction(TelephonyIntents.ACTION_DEFAULT_DATA_SUBSCRIPTION_CHANGED);
destradaafb23c672015-04-16 14:01:27 -07002121 mContext.registerReceiver(mBroadcastReceiver, intentFilter, null, this);
2122
Anil Admal50ba15e2018-11-01 16:42:42 -07002123 mNetworkConnectivityHandler.registerNetworkCallbacks();
destradaae21252a2015-09-08 12:32:59 -07002124
destradaafb23c672015-04-16 14:01:27 -07002125 // listen for PASSIVE_PROVIDER updates
2126 LocationManager locManager =
2127 (LocationManager) mContext.getSystemService(Context.LOCATION_SERVICE);
2128 long minTime = 0;
2129 float minDistance = 0;
destradaafb23c672015-04-16 14:01:27 -07002130 LocationRequest request = LocationRequest.createFromDeprecatedProvider(
2131 LocationManager.PASSIVE_PROVIDER,
2132 minTime,
2133 minDistance,
Soonil Nagarkar1575a042018-10-24 17:54:54 -07002134 false);
destradaafb23c672015-04-16 14:01:27 -07002135 // Don't keep track of this request since it's done on behalf of other clients
2136 // (which are kept track of separately).
2137 request.setHideFromAppOps(true);
2138 locManager.requestLocationUpdates(
2139 request,
2140 new NetworkLocationListener(),
2141 getLooper());
Soonil Nagarkar1575a042018-10-24 17:54:54 -07002142
Soonil Nagarkar35c3b912019-01-31 10:31:24 -08002143 updateEnabled();
destradaafb23c672015-04-16 14:01:27 -07002144 }
2145 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002146
Yu-Han Yange7baef32018-02-09 13:58:17 -08002147 private abstract class LocationChangeListener implements LocationListener {
Soonil Nagarkar1575a042018-10-24 17:54:54 -07002148 private int mNumLocationUpdateRequest;
Yu-Han Yang07561382018-02-21 13:08:37 -08002149
Nick Pelly6fa9ad42012-07-16 12:18:23 -07002150 @Override
gomo48f1a642017-11-10 20:35:46 -08002151 public void onStatusChanged(String provider, int status, Bundle extras) {
2152 }
2153
Nick Pelly6fa9ad42012-07-16 12:18:23 -07002154 @Override
gomo48f1a642017-11-10 20:35:46 -08002155 public void onProviderEnabled(String provider) {
2156 }
2157
Nick Pelly6fa9ad42012-07-16 12:18:23 -07002158 @Override
gomo48f1a642017-11-10 20:35:46 -08002159 public void onProviderDisabled(String provider) {
2160 }
Nick Pelly6fa9ad42012-07-16 12:18:23 -07002161 }
2162
Yu-Han Yange7baef32018-02-09 13:58:17 -08002163 private final class NetworkLocationListener extends LocationChangeListener {
2164 @Override
2165 public void onLocationChanged(Location location) {
2166 // this callback happens on mHandler looper
2167 if (LocationManager.NETWORK_PROVIDER.equals(location.getProvider())) {
2168 handleUpdateLocation(location);
2169 }
2170 }
2171 }
2172
2173 private final class FusedLocationListener extends LocationChangeListener {
2174 @Override
2175 public void onLocationChanged(Location location) {
2176 if (LocationManager.FUSED_PROVIDER.equals(location.getProvider())) {
Yu-Han Yange7baef32018-02-09 13:58:17 -08002177 injectBestLocation(location);
2178 }
2179 }
2180 }
2181
Wyatt Rileycf879db2017-01-12 13:57:38 -08002182 /**
2183 * @return A string representing the given message ID.
2184 */
2185 private String messageIdAsString(int message) {
2186 switch (message) {
Wyatt Rileycf879db2017-01-12 13:57:38 -08002187 case SET_REQUEST:
2188 return "SET_REQUEST";
Wyatt Rileycf879db2017-01-12 13:57:38 -08002189 case INJECT_NTP_TIME:
2190 return "INJECT_NTP_TIME";
Yu-Han Yange7baef32018-02-09 13:58:17 -08002191 case REQUEST_LOCATION:
2192 return "REQUEST_LOCATION";
Kevin Tang8c6ac672019-03-22 12:31:01 -07002193 case DOWNLOAD_PSDS_DATA:
2194 return "DOWNLOAD_PSDS_DATA";
2195 case DOWNLOAD_PSDS_DATA_FINISHED:
2196 return "DOWNLOAD_PSDS_DATA_FINISHED";
Wyatt Rileycf879db2017-01-12 13:57:38 -08002197 case UPDATE_LOCATION:
2198 return "UPDATE_LOCATION";
Wyatt Rileycf879db2017-01-12 13:57:38 -08002199 case INITIALIZE_HANDLER:
2200 return "INITIALIZE_HANDLER";
Wyatt Riley26465d22018-02-12 13:44:24 -08002201 case REPORT_LOCATION:
2202 return "REPORT_LOCATION";
2203 case REPORT_SV_STATUS:
2204 return "REPORT_SV_STATUS";
Wyatt Rileycf879db2017-01-12 13:57:38 -08002205 default:
2206 return "<Unknown>";
2207 }
2208 }
2209
Nick Pelly6fa9ad42012-07-16 12:18:23 -07002210 @Override
2211 public void dump(FileDescriptor fd, PrintWriter pw, String[] args) {
2212 StringBuilder s = new StringBuilder();
WyattRileyba6072f2019-04-18 07:37:52 -07002213 s.append(" mStarted=").append(mStarted).append(" (changed ");
2214 TimeUtils.formatDuration(SystemClock.elapsedRealtime()
2215 - mStartedChangedElapsedRealtime, s);
2216 s.append(" ago)").append('\n');
destradaa25e8caf2015-08-24 14:14:44 -07002217 s.append(" mFixInterval=").append(mFixInterval).append('\n');
gomo48f1a642017-11-10 20:35:46 -08002218 s.append(" mLowPowerMode=").append(mLowPowerMode).append('\n');
Wyatt Riley74479bd2018-01-17 08:48:27 -08002219 s.append(" mGnssMeasurementsProvider.isRegistered()=")
2220 .append(mGnssMeasurementsProvider.isRegistered()).append('\n');
2221 s.append(" mGnssNavigationMessageProvider.isRegistered()=")
2222 .append(mGnssNavigationMessageProvider.isRegistered()).append('\n');
WyattRileyb2446072019-03-01 07:41:49 -08002223 s.append(" mDisableGpsForPowerManager=").append(mDisableGpsForPowerManager).append('\n');
Anil Admal312fddb2019-03-25 12:15:43 -07002224 s.append(" mTopHalCapabilities=0x").append(Integer.toHexString(mTopHalCapabilities));
destradaa25e8caf2015-08-24 14:14:44 -07002225 s.append(" ( ");
2226 if (hasCapability(GPS_CAPABILITY_SCHEDULING)) s.append("SCHEDULING ");
Nick Pelly6fa9ad42012-07-16 12:18:23 -07002227 if (hasCapability(GPS_CAPABILITY_MSB)) s.append("MSB ");
2228 if (hasCapability(GPS_CAPABILITY_MSA)) s.append("MSA ");
2229 if (hasCapability(GPS_CAPABILITY_SINGLE_SHOT)) s.append("SINGLE_SHOT ");
2230 if (hasCapability(GPS_CAPABILITY_ON_DEMAND_TIME)) s.append("ON_DEMAND_TIME ");
destradaa25e8caf2015-08-24 14:14:44 -07002231 if (hasCapability(GPS_CAPABILITY_GEOFENCING)) s.append("GEOFENCING ");
2232 if (hasCapability(GPS_CAPABILITY_MEASUREMENTS)) s.append("MEASUREMENTS ");
2233 if (hasCapability(GPS_CAPABILITY_NAV_MESSAGES)) s.append("NAV_MESSAGES ");
Anil Admalefd9dc62019-03-12 17:39:20 -07002234 if (hasCapability(GPS_CAPABILITY_LOW_POWER_MODE)) s.append("LOW_POWER_MODE ");
2235 if (hasCapability(GPS_CAPABILITY_SATELLITE_BLACKLIST)) s.append("SATELLITE_BLACKLIST ");
Anil Admal62c42dc2019-04-03 15:39:22 -07002236 if (hasCapability(GPS_CAPABILITY_MEASUREMENT_CORRECTIONS)) {
2237 s.append("MEASUREMENT_CORRECTIONS ");
2238 }
Nick Pelly6fa9ad42012-07-16 12:18:23 -07002239 s.append(")\n");
Anil Admal3ba0fa92019-04-19 17:43:00 -07002240 if (hasCapability(GPS_CAPABILITY_MEASUREMENT_CORRECTIONS)) {
Anil Admal62c42dc2019-04-03 15:39:22 -07002241 s.append(" SubHal=MEASUREMENT_CORRECTIONS[");
Anil Admalefd9dc62019-03-12 17:39:20 -07002242 s.append(mGnssMeasurementCorrectionsProvider.toStringCapabilities());
2243 s.append("]\n");
2244 }
Siddharth Raybb608c82017-03-16 11:33:34 -07002245 s.append(mGnssMetrics.dumpGnssMetricsAsText());
2246 s.append(" native internal state: ").append(native_get_internal_state());
Wyatt Rileycf879db2017-01-12 13:57:38 -08002247 s.append("\n");
Nick Pelly6fa9ad42012-07-16 12:18:23 -07002248 pw.append(s);
2249 }
2250
Anil Admal0c2b21bd2019-05-03 18:29:02 -07002251 private void setupNativeGnssService(boolean reinitializeGnssServiceHandle) {
2252 native_init_once(reinitializeGnssServiceHandle);
Anil Admal7e3953b2019-05-04 20:45:22 -07002253
2254 /*
2255 * A cycle of native_init() and native_cleanup() is needed so that callbacks are
2256 * registered after bootup even when location is disabled.
2257 * This will allow Emergency SUPL to work even when location is disabled before device
2258 * restart.
2259 */
2260 boolean isInitialized = native_init();
2261 if (!isInitialized) {
2262 Log.w(TAG, "Native initialization failed.");
2263 } else {
2264 native_cleanup();
2265 }
2266 }
2267
Mike Lockwoodb16e7802009-08-06 09:26:02 -04002268 // preallocated to avoid memory allocation in reportNmea()
2269 private byte[] mNmeaBuffer = new byte[120];
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002270
gomo48f1a642017-11-10 20:35:46 -08002271 static {
2272 class_init_native();
2273 }
2274
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002275 private static native void class_init_native();
gomo48f1a642017-11-10 20:35:46 -08002276
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002277 private static native boolean native_is_supported();
gomo48f1a642017-11-10 20:35:46 -08002278
Anil Admal94ec76a2019-01-15 09:42:01 -08002279 private static native boolean native_is_gnss_visibility_control_supported();
2280
Anil Admal0c2b21bd2019-05-03 18:29:02 -07002281 private static native void native_init_once(boolean reinitializeGnssServiceHandle);
Yu-Han Yang6d317352018-03-15 11:53:01 -07002282
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002283 private native boolean native_init();
gomo48f1a642017-11-10 20:35:46 -08002284
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002285 private native void native_cleanup();
gomo48f1a642017-11-10 20:35:46 -08002286
Mike Lockwood04598b62010-04-14 17:17:24 -04002287 private native boolean native_set_position_mode(int mode, int recurrence, int min_interval,
gomo48f1a642017-11-10 20:35:46 -08002288 int preferred_accuracy, int preferred_time, boolean lowPowerMode);
2289
Mike Lockwood04598b62010-04-14 17:17:24 -04002290 private native boolean native_start();
gomo48f1a642017-11-10 20:35:46 -08002291
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002292 private native boolean native_stop();
gomo48f1a642017-11-10 20:35:46 -08002293
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002294 private native void native_delete_aiding_data(int flags);
gomo48f1a642017-11-10 20:35:46 -08002295
Mike Lockwoodf602d362010-06-20 14:28:16 -07002296 private native int native_read_nmea(byte[] buffer, int bufferSize);
gomo48f1a642017-11-10 20:35:46 -08002297
Yu-Han Yange7baef32018-02-09 13:58:17 -08002298 private native void native_inject_best_location(
Pierre Fite-Georgelb50cdaf2019-02-25 15:42:45 -08002299 int gnssLocationFlags, double latitudeDegrees, double longitudeDegrees,
2300 double altitudeMeters, float speedMetersPerSec, float bearingDegrees,
2301 float horizontalAccuracyMeters, float verticalAccuracyMeters,
2302 float speedAccuracyMetersPerSecond, float bearingAccuracyDegrees,
Pierre Fite-Georgel9e96c572019-02-25 16:12:53 -08002303 long timestamp, int elapsedRealtimeFlags, long elapsedRealtimeNanos,
Yu-Han Yang3cd9a862019-03-25 17:00:03 -07002304 double elapsedRealtimeUncertaintyNanos);
Yu-Han Yange7baef32018-02-09 13:58:17 -08002305
Mike Lockwoodd26ce0d2009-06-11 12:25:46 -04002306 private native void native_inject_location(double latitude, double longitude, float accuracy);
2307
Kevin Tang8c6ac672019-03-22 12:31:01 -07002308 // PSDS Support
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002309 private native void native_inject_time(long time, long timeReference, int uncertainty);
gomo48f1a642017-11-10 20:35:46 -08002310
Kevin Tang8c6ac672019-03-22 12:31:01 -07002311 private native boolean native_supports_psds();
gomo48f1a642017-11-10 20:35:46 -08002312
Kevin Tang8c6ac672019-03-22 12:31:01 -07002313 private native void native_inject_psds_data(byte[] data, int length);
The Android Open Source Project10592532009-03-18 17:39:46 -07002314
Fred Fettinger3c8fbdf2010-01-04 15:38:13 -06002315 // DEBUG Support
2316 private native String native_get_internal_state();
2317
2318 // AGPS Support
gomo48f1a642017-11-10 20:35:46 -08002319 private native void native_agps_ni_message(byte[] msg, int length);
2320
Mike Lockwooda9e54612009-06-19 14:54:42 -04002321 private native void native_set_agps_server(int type, String hostname, int port);
Danke Xie22d1f9f2009-08-18 18:28:45 -04002322
2323 // Network-initiated (NI) Support
2324 private native void native_send_ni_response(int notificationId, int userResponse);
Miguel Torroja1e84da82010-07-27 07:02:24 +02002325
Anil Admal50ba15e2018-11-01 16:42:42 -07002326 // AGPS ril support
Miguel Torroja1e84da82010-07-27 07:02:24 +02002327 private native void native_agps_set_ref_location_cellid(int type, int mcc, int mnc,
2328 int lac, int cid);
gomo48f1a642017-11-10 20:35:46 -08002329
Miguel Torroja1e84da82010-07-27 07:02:24 +02002330 private native void native_agps_set_id(int type, String setid);
Pierre Fite-Georgelb50cdaf2019-02-25 15:42:45 -08002331}