blob: 695808740592d4b4d726ebf0cf82c30f57b3a79d [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
17#define LOG_TAG "GpsLocationProvider"
18
Mike Lockwoodb8d90332010-10-18 17:59:48 -040019#define LOG_NDEBUG 0
Danke Xie22d1f9f2009-08-18 18:28:45 -040020
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080021#include "JNIHelp.h"
22#include "jni.h"
Mike Lockwoodb7ff4572010-04-05 15:24:34 -040023#include "hardware/hardware.h"
24#include "hardware/gps.h"
Mike Lockwood8f5a8002010-04-07 09:05:26 -040025#include "hardware_legacy/power.h"
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080026#include "utils/Log.h"
27#include "utils/misc.h"
Mike Lockwoodf602d362010-06-20 14:28:16 -070028#include "android_runtime/AndroidRuntime.h"
Ruben Brunk87eac992013-09-09 17:44:59 -070029#include "android_runtime/Log.h"
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080030
destradaa931a37f2014-08-12 16:36:59 -070031#include <arpa/inet.h>
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080032#include <string.h>
33#include <pthread.h>
destradaa96a14702014-06-05 11:36:30 -070034#include <linux/in.h>
35#include <linux/in6.h>
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080036
Mike Lockwoodf602d362010-06-20 14:28:16 -070037static jobject mCallbacksObj = NULL;
38
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080039static jmethodID method_reportLocation;
40static jmethodID method_reportStatus;
41static jmethodID method_reportSvStatus;
Mike Lockwoode3635c92009-05-11 08:38:02 -040042static jmethodID method_reportAGpsStatus;
Mike Lockwoodb16e7802009-08-06 09:26:02 -040043static jmethodID method_reportNmea;
Mike Lockwood04598b62010-04-14 17:17:24 -040044static jmethodID method_setEngineCapabilities;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080045static jmethodID method_xtraDownloadRequest;
Danke Xie22d1f9f2009-08-18 18:28:45 -040046static jmethodID method_reportNiNotification;
Miguel Torroja1e84da82010-07-27 07:02:24 +020047static jmethodID method_requestRefLocation;
48static jmethodID method_requestSetID;
Mike Lockwood9b9fb5c2011-06-29 15:09:40 -040049static jmethodID method_requestUtcTime;
Jaikumar Ganesh8ce470d2013-04-03 12:22:18 -070050static jmethodID method_reportGeofenceTransition;
51static jmethodID method_reportGeofenceStatus;
52static jmethodID method_reportGeofenceAddStatus;
53static jmethodID method_reportGeofenceRemoveStatus;
54static jmethodID method_reportGeofencePauseStatus;
55static jmethodID method_reportGeofenceResumeStatus;
destradaaea8a8a62014-06-23 18:19:03 -070056static jmethodID method_reportMeasurementData;
destradaa4b3e3932014-07-21 18:01:47 -070057static jmethodID method_reportNavigationMessages;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080058
59static const GpsInterface* sGpsInterface = NULL;
60static const GpsXtraInterface* sGpsXtraInterface = NULL;
Mike Lockwoode3635c92009-05-11 08:38:02 -040061static const AGpsInterface* sAGpsInterface = NULL;
Danke Xie22d1f9f2009-08-18 18:28:45 -040062static const GpsNiInterface* sGpsNiInterface = NULL;
Fred Fettinger3c8fbdf2010-01-04 15:38:13 -060063static const GpsDebugInterface* sGpsDebugInterface = NULL;
Miguel Torroja1e84da82010-07-27 07:02:24 +020064static const AGpsRilInterface* sAGpsRilInterface = NULL;
Jaikumar Ganesh8ce470d2013-04-03 12:22:18 -070065static const GpsGeofencingInterface* sGpsGeofencingInterface = NULL;
destradaaea8a8a62014-06-23 18:19:03 -070066static const GpsMeasurementInterface* sGpsMeasurementInterface = NULL;
destradaa4b3e3932014-07-21 18:01:47 -070067static const GpsNavigationMessageInterface* sGpsNavigationMessageInterface = NULL;
Tsuwei Chen52617bb2014-08-25 11:49:11 -070068static const GnssConfigurationInterface* sGnssConfigurationInterface = NULL;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080069
Mike Lockwoodf602d362010-06-20 14:28:16 -070070// temporary storage for GPS callbacks
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080071static GpsSvStatus sGpsSvStatus;
Mike Lockwoodf602d362010-06-20 14:28:16 -070072static const char* sNmeaString;
73static int sNmeaStringLength;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080074
Mike Lockwood8f5a8002010-04-07 09:05:26 -040075#define WAKE_LOCK_NAME "GPS"
76
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080077namespace android {
78
Mike Lockwoodf602d362010-06-20 14:28:16 -070079static void checkAndClearExceptionFromCallback(JNIEnv* env, const char* methodName) {
80 if (env->ExceptionCheck()) {
Steve Block3762c312012-01-06 19:20:56 +000081 ALOGE("An exception was thrown by callback '%s'.", methodName);
Mike Lockwoodf602d362010-06-20 14:28:16 -070082 LOGE_EX(env);
83 env->ExceptionClear();
84 }
85}
86
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080087static void location_callback(GpsLocation* location)
88{
Mike Lockwoodf602d362010-06-20 14:28:16 -070089 JNIEnv* env = AndroidRuntime::getJNIEnv();
90 env->CallVoidMethod(mCallbacksObj, method_reportLocation, location->flags,
91 (jdouble)location->latitude, (jdouble)location->longitude,
92 (jdouble)location->altitude,
93 (jfloat)location->speed, (jfloat)location->bearing,
94 (jfloat)location->accuracy, (jlong)location->timestamp);
95 checkAndClearExceptionFromCallback(env, __FUNCTION__);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080096}
97
98static void status_callback(GpsStatus* status)
99{
Mike Lockwoodf602d362010-06-20 14:28:16 -0700100 JNIEnv* env = AndroidRuntime::getJNIEnv();
Mike Lockwoodf602d362010-06-20 14:28:16 -0700101 env->CallVoidMethod(mCallbacksObj, method_reportStatus, status->status);
102 checkAndClearExceptionFromCallback(env, __FUNCTION__);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800103}
104
105static void sv_status_callback(GpsSvStatus* sv_status)
106{
Mike Lockwoodf602d362010-06-20 14:28:16 -0700107 JNIEnv* env = AndroidRuntime::getJNIEnv();
108 memcpy(&sGpsSvStatus, sv_status, sizeof(sGpsSvStatus));
109 env->CallVoidMethod(mCallbacksObj, method_reportSvStatus);
110 checkAndClearExceptionFromCallback(env, __FUNCTION__);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800111}
112
Mike Lockwoodb16e7802009-08-06 09:26:02 -0400113static void nmea_callback(GpsUtcTime timestamp, const char* nmea, int length)
114{
Mike Lockwoodf602d362010-06-20 14:28:16 -0700115 JNIEnv* env = AndroidRuntime::getJNIEnv();
116 // The Java code will call back to read these values
117 // We do this to avoid creating unnecessary String objects
118 sNmeaString = nmea;
119 sNmeaStringLength = length;
120 env->CallVoidMethod(mCallbacksObj, method_reportNmea, timestamp);
121 checkAndClearExceptionFromCallback(env, __FUNCTION__);
Mike Lockwoodb16e7802009-08-06 09:26:02 -0400122}
123
Mike Lockwood04598b62010-04-14 17:17:24 -0400124static void set_capabilities_callback(uint32_t capabilities)
125{
Jaikumar Ganesh8ce470d2013-04-03 12:22:18 -0700126 ALOGD("set_capabilities_callback: %du\n", capabilities);
Mike Lockwoodf602d362010-06-20 14:28:16 -0700127 JNIEnv* env = AndroidRuntime::getJNIEnv();
128 env->CallVoidMethod(mCallbacksObj, method_setEngineCapabilities, capabilities);
129 checkAndClearExceptionFromCallback(env, __FUNCTION__);
Mike Lockwood04598b62010-04-14 17:17:24 -0400130}
131
Mike Lockwood8f5a8002010-04-07 09:05:26 -0400132static void acquire_wakelock_callback()
133{
134 acquire_wake_lock(PARTIAL_WAKE_LOCK, WAKE_LOCK_NAME);
135}
136
137static void release_wakelock_callback()
138{
139 release_wake_lock(WAKE_LOCK_NAME);
140}
141
Mike Lockwood9b9fb5c2011-06-29 15:09:40 -0400142static void request_utc_time_callback()
143{
144 JNIEnv* env = AndroidRuntime::getJNIEnv();
145 env->CallVoidMethod(mCallbacksObj, method_requestUtcTime);
146 checkAndClearExceptionFromCallback(env, __FUNCTION__);
147}
148
Mike Lockwoodf602d362010-06-20 14:28:16 -0700149static pthread_t create_thread_callback(const char* name, void (*start)(void *), void* arg)
Mike Lockwood58bda982009-04-14 16:25:07 -0400150{
Mike Lockwoodf602d362010-06-20 14:28:16 -0700151 return (pthread_t)AndroidRuntime::createJavaThread(name, start, arg);
Mike Lockwood58bda982009-04-14 16:25:07 -0400152}
153
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800154GpsCallbacks sGpsCallbacks = {
Mike Lockwood8f5a8002010-04-07 09:05:26 -0400155 sizeof(GpsCallbacks),
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800156 location_callback,
157 status_callback,
158 sv_status_callback,
Mike Lockwood8f5a8002010-04-07 09:05:26 -0400159 nmea_callback,
Mike Lockwood04598b62010-04-14 17:17:24 -0400160 set_capabilities_callback,
Mike Lockwood8f5a8002010-04-07 09:05:26 -0400161 acquire_wakelock_callback,
162 release_wakelock_callback,
Mike Lockwoodf602d362010-06-20 14:28:16 -0700163 create_thread_callback,
Mike Lockwood9b9fb5c2011-06-29 15:09:40 -0400164 request_utc_time_callback,
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800165};
166
Mike Lockwoodf602d362010-06-20 14:28:16 -0700167static void xtra_download_request_callback()
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800168{
Mike Lockwoodf602d362010-06-20 14:28:16 -0700169 JNIEnv* env = AndroidRuntime::getJNIEnv();
170 env->CallVoidMethod(mCallbacksObj, method_xtraDownloadRequest);
171 checkAndClearExceptionFromCallback(env, __FUNCTION__);
Danke Xie22d1f9f2009-08-18 18:28:45 -0400172}
173
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800174GpsXtraCallbacks sGpsXtraCallbacks = {
Mike Lockwoodf602d362010-06-20 14:28:16 -0700175 xtra_download_request_callback,
176 create_thread_callback,
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800177};
178
destradaa96a14702014-06-05 11:36:30 -0700179static jbyteArray convert_to_ipv4(uint32_t ip, bool net_order)
180{
181 if (INADDR_NONE == ip) {
182 return NULL;
183 }
184
185 JNIEnv* env = AndroidRuntime::getJNIEnv();
186 jbyteArray byteArray = env->NewByteArray(4);
187 if (byteArray == NULL) {
188 ALOGE("Unable to allocate byte array for IPv4 address");
189 return NULL;
190 }
191
192 jbyte ipv4[4];
193 if (net_order) {
destradaa931a37f2014-08-12 16:36:59 -0700194 ALOGV("Converting IPv4 address(net_order) %x", ip);
destradaa96a14702014-06-05 11:36:30 -0700195 memcpy(ipv4, &ip, sizeof(ipv4));
196 } else {
destradaa931a37f2014-08-12 16:36:59 -0700197 ALOGV("Converting IPv4 address(host_order) %x", ip);
destradaa96a14702014-06-05 11:36:30 -0700198 //endianess transparent conversion from int to char[]
199 ipv4[0] = (jbyte) (ip & 0xFF);
200 ipv4[1] = (jbyte)((ip>>8) & 0xFF);
201 ipv4[2] = (jbyte)((ip>>16) & 0xFF);
202 ipv4[3] = (jbyte) (ip>>24);
203 }
204
205 env->SetByteArrayRegion(byteArray, 0, 4, (const jbyte*) ipv4);
206 return byteArray;
207}
208
Mike Lockwoodf602d362010-06-20 14:28:16 -0700209static void agps_status_callback(AGpsStatus* agps_status)
210{
Mike Lockwoodf602d362010-06-20 14:28:16 -0700211 JNIEnv* env = AndroidRuntime::getJNIEnv();
destradaa96a14702014-06-05 11:36:30 -0700212 jbyteArray byteArray = NULL;
213 bool isSupported = false;
Stephen Li8efd74d2011-03-01 20:56:00 -0800214
destradaa96a14702014-06-05 11:36:30 -0700215 size_t status_size = agps_status->size;
216 if (status_size == sizeof(AGpsStatus_v3)) {
destradaa931a37f2014-08-12 16:36:59 -0700217 ALOGV("AGpsStatus is V3: %d", status_size);
destradaa96a14702014-06-05 11:36:30 -0700218 switch (agps_status->addr.ss_family)
219 {
220 case AF_INET:
221 {
222 struct sockaddr_in *in = (struct sockaddr_in*)&(agps_status->addr);
223 uint32_t *pAddr = (uint32_t*)&(in->sin_addr);
224 byteArray = convert_to_ipv4(*pAddr, true /* net_order */);
225 if (byteArray != NULL) {
226 isSupported = true;
227 }
destradaa931a37f2014-08-12 16:36:59 -0700228 IF_ALOGD() {
229 // log the IP for reference in case there is a bogus value pushed by HAL
230 char str[INET_ADDRSTRLEN];
231 inet_ntop(AF_INET, &(in->sin_addr), str, INET_ADDRSTRLEN);
232 ALOGD("AGPS IP is v4: %s", str);
233 }
destradaa96a14702014-06-05 11:36:30 -0700234 }
235 break;
236 case AF_INET6:
237 {
238 struct sockaddr_in6 *in6 = (struct sockaddr_in6*)&(agps_status->addr);
239 byteArray = env->NewByteArray(16);
240 if (byteArray != NULL) {
241 env->SetByteArrayRegion(byteArray, 0, 16, (const jbyte *)&(in6->sin6_addr));
242 isSupported = true;
243 } else {
244 ALOGE("Unable to allocate byte array for IPv6 address.");
245 }
destradaa931a37f2014-08-12 16:36:59 -0700246 IF_ALOGD() {
247 // log the IP for reference in case there is a bogus value pushed by HAL
248 char str[INET6_ADDRSTRLEN];
249 inet_ntop(AF_INET6, &(in6->sin6_addr), str, INET6_ADDRSTRLEN);
250 ALOGD("AGPS IP is v6: %s", str);
251 }
destradaa96a14702014-06-05 11:36:30 -0700252 }
253 break;
254 default:
255 ALOGE("Invalid ss_family found: %d", agps_status->addr.ss_family);
256 break;
257 }
258 } else if (status_size >= sizeof(AGpsStatus_v2)) {
destradaa931a37f2014-08-12 16:36:59 -0700259 ALOGV("AGpsStatus is V2+: %d", status_size);
destradaa96a14702014-06-05 11:36:30 -0700260 // for back-compatibility reasons we check in v2 that the data structure size is greater or
261 // equal to the declared size in gps.h
262 uint32_t ipaddr = agps_status->ipaddr;
destradaa931a37f2014-08-12 16:36:59 -0700263 ALOGV("AGPS IP is v4: %x", ipaddr);
destradaa96a14702014-06-05 11:36:30 -0700264 byteArray = convert_to_ipv4(ipaddr, false /* net_order */);
265 if (ipaddr == INADDR_NONE || byteArray != NULL) {
266 isSupported = true;
267 }
268 } else if (status_size >= sizeof(AGpsStatus_v1)) {
destradaa931a37f2014-08-12 16:36:59 -0700269 ALOGV("AGpsStatus is V1+: %d", status_size);
destradaa96a14702014-06-05 11:36:30 -0700270 // because we have to check for >= with regards to v2, we also need to relax the check here
271 // and only make sure that the size is at least what we expect
272 isSupported = true;
273 } else {
274 ALOGE("Invalid size of AGpsStatus found: %d.", status_size);
275 }
276
277 if (isSupported) {
destradaa931a37f2014-08-12 16:36:59 -0700278 jsize byteArrayLength = byteArray != NULL ? env->GetArrayLength(byteArray) : 0;
279 ALOGV("Passing AGPS IP addr: size %d", byteArrayLength);
destradaa96a14702014-06-05 11:36:30 -0700280 env->CallVoidMethod(mCallbacksObj, method_reportAGpsStatus, agps_status->type,
281 agps_status->status, byteArray);
282
283 checkAndClearExceptionFromCallback(env, __FUNCTION__);
284 } else {
285 ALOGD("Skipping calling method_reportAGpsStatus.");
286 }
287
288 if (byteArray) {
289 env->DeleteLocalRef(byteArray);
290 }
Mike Lockwoodf602d362010-06-20 14:28:16 -0700291}
292
Mike Lockwoode3635c92009-05-11 08:38:02 -0400293AGpsCallbacks sAGpsCallbacks = {
294 agps_status_callback,
Mike Lockwoodf602d362010-06-20 14:28:16 -0700295 create_thread_callback,
Mike Lockwood58bda982009-04-14 16:25:07 -0400296};
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800297
Mike Lockwoodf602d362010-06-20 14:28:16 -0700298static void gps_ni_notify_callback(GpsNiNotification *notification)
299{
Steve Block5baa3a62011-12-20 16:23:08 +0000300 ALOGD("gps_ni_notify_callback\n");
Mike Lockwoodf602d362010-06-20 14:28:16 -0700301 JNIEnv* env = AndroidRuntime::getJNIEnv();
302 jstring requestor_id = env->NewStringUTF(notification->requestor_id);
303 jstring text = env->NewStringUTF(notification->text);
304 jstring extras = env->NewStringUTF(notification->extras);
305
306 if (requestor_id && text && extras) {
307 env->CallVoidMethod(mCallbacksObj, method_reportNiNotification,
308 notification->notification_id, notification->ni_type,
309 notification->notify_flags, notification->timeout,
310 notification->default_response, requestor_id, text,
311 notification->requestor_id_encoding,
312 notification->text_encoding, extras);
313 } else {
Steve Block3762c312012-01-06 19:20:56 +0000314 ALOGE("out of memory in gps_ni_notify_callback\n");
Mike Lockwoodf602d362010-06-20 14:28:16 -0700315 }
316
317 if (requestor_id)
318 env->DeleteLocalRef(requestor_id);
319 if (text)
320 env->DeleteLocalRef(text);
321 if (extras)
322 env->DeleteLocalRef(extras);
323 checkAndClearExceptionFromCallback(env, __FUNCTION__);
324}
325
Danke Xie22d1f9f2009-08-18 18:28:45 -0400326GpsNiCallbacks sGpsNiCallbacks = {
327 gps_ni_notify_callback,
Mike Lockwoodf602d362010-06-20 14:28:16 -0700328 create_thread_callback,
Danke Xie22d1f9f2009-08-18 18:28:45 -0400329};
330
Miguel Torroja1e84da82010-07-27 07:02:24 +0200331static void agps_request_set_id(uint32_t flags)
332{
Miguel Torroja1e84da82010-07-27 07:02:24 +0200333 JNIEnv* env = AndroidRuntime::getJNIEnv();
334 env->CallVoidMethod(mCallbacksObj, method_requestSetID, flags);
335 checkAndClearExceptionFromCallback(env, __FUNCTION__);
336}
337
338static void agps_request_ref_location(uint32_t flags)
339{
Miguel Torroja1e84da82010-07-27 07:02:24 +0200340 JNIEnv* env = AndroidRuntime::getJNIEnv();
341 env->CallVoidMethod(mCallbacksObj, method_requestRefLocation, flags);
342 checkAndClearExceptionFromCallback(env, __FUNCTION__);
343}
344
345AGpsRilCallbacks sAGpsRilCallbacks = {
346 agps_request_set_id,
347 agps_request_ref_location,
348 create_thread_callback,
349};
350
Jaikumar Ganesh8ce470d2013-04-03 12:22:18 -0700351static void gps_geofence_transition_callback(int32_t geofence_id, GpsLocation* location,
352 int32_t transition, GpsUtcTime timestamp)
353{
354 JNIEnv* env = AndroidRuntime::getJNIEnv();
355
356 env->CallVoidMethod(mCallbacksObj, method_reportGeofenceTransition, geofence_id,
357 location->flags, (jdouble)location->latitude, (jdouble)location->longitude,
358 (jdouble)location->altitude,
359 (jfloat)location->speed, (jfloat)location->bearing,
360 (jfloat)location->accuracy, (jlong)location->timestamp,
361 transition, timestamp);
362 checkAndClearExceptionFromCallback(env, __FUNCTION__);
363};
364
365static void gps_geofence_status_callback(int32_t status, GpsLocation* location)
366{
367 JNIEnv* env = AndroidRuntime::getJNIEnv();
368 jint flags = 0;
369 jdouble latitude = 0;
370 jdouble longitude = 0;
371 jdouble altitude = 0;
372 jfloat speed = 0;
373 jfloat bearing = 0;
374 jfloat accuracy = 0;
375 jlong timestamp = 0;
376 if (location != NULL) {
377 flags = location->flags;
378 latitude = location->latitude;
379 longitude = location->longitude;
380 altitude = location->altitude;
381 speed = location->speed;
382 bearing = location->bearing;
383 accuracy = location->accuracy;
384 timestamp = location->timestamp;
385 }
386
387 env->CallVoidMethod(mCallbacksObj, method_reportGeofenceStatus, status,
388 flags, latitude, longitude, altitude, speed, bearing, accuracy, timestamp);
389 checkAndClearExceptionFromCallback(env, __FUNCTION__);
390};
391
392static void gps_geofence_add_callback(int32_t geofence_id, int32_t status)
393{
394 JNIEnv* env = AndroidRuntime::getJNIEnv();
395 if (status != GPS_GEOFENCE_OPERATION_SUCCESS) {
396 ALOGE("Error in geofence_add_callback: %d\n", status);
397 }
398 env->CallVoidMethod(mCallbacksObj, method_reportGeofenceAddStatus, geofence_id, status);
399 checkAndClearExceptionFromCallback(env, __FUNCTION__);
400};
401
402static void gps_geofence_remove_callback(int32_t geofence_id, int32_t status)
403{
404 JNIEnv* env = AndroidRuntime::getJNIEnv();
405 if (status != GPS_GEOFENCE_OPERATION_SUCCESS) {
406 ALOGE("Error in geofence_remove_callback: %d\n", status);
407 }
408 env->CallVoidMethod(mCallbacksObj, method_reportGeofenceRemoveStatus, geofence_id, status);
409 checkAndClearExceptionFromCallback(env, __FUNCTION__);
410};
411
412static void gps_geofence_resume_callback(int32_t geofence_id, int32_t status)
413{
414 JNIEnv* env = AndroidRuntime::getJNIEnv();
415 if (status != GPS_GEOFENCE_OPERATION_SUCCESS) {
416 ALOGE("Error in geofence_resume_callback: %d\n", status);
417 }
418 env->CallVoidMethod(mCallbacksObj, method_reportGeofenceResumeStatus, geofence_id, status);
419 checkAndClearExceptionFromCallback(env, __FUNCTION__);
420};
421
422static void gps_geofence_pause_callback(int32_t geofence_id, int32_t status)
423{
424 JNIEnv* env = AndroidRuntime::getJNIEnv();
425 if (status != GPS_GEOFENCE_OPERATION_SUCCESS) {
426 ALOGE("Error in geofence_pause_callback: %d\n", status);
427 }
428 env->CallVoidMethod(mCallbacksObj, method_reportGeofencePauseStatus, geofence_id, status);
429 checkAndClearExceptionFromCallback(env, __FUNCTION__);
430};
431
432GpsGeofenceCallbacks sGpsGeofenceCallbacks = {
433 gps_geofence_transition_callback,
434 gps_geofence_status_callback,
435 gps_geofence_add_callback,
436 gps_geofence_remove_callback,
437 gps_geofence_pause_callback,
438 gps_geofence_resume_callback,
439 create_thread_callback,
440};
441
Mike Lockwood58ec34c2011-02-23 08:21:00 -0800442static void android_location_GpsLocationProvider_class_init_native(JNIEnv* env, jclass clazz) {
Mike Lockwoodb7ff4572010-04-05 15:24:34 -0400443 int err;
444 hw_module_t* module;
Mike Lockwoodb7ff4572010-04-05 15:24:34 -0400445
Mike Lockwoodbea31182010-10-05 14:29:53 -0400446 method_reportLocation = env->GetMethodID(clazz, "reportLocation", "(IDDDFFFJ)V");
447 method_reportStatus = env->GetMethodID(clazz, "reportStatus", "(I)V");
448 method_reportSvStatus = env->GetMethodID(clazz, "reportSvStatus", "()V");
destradaa96a14702014-06-05 11:36:30 -0700449 method_reportAGpsStatus = env->GetMethodID(clazz, "reportAGpsStatus", "(II[B)V");
Mike Lockwoodbea31182010-10-05 14:29:53 -0400450 method_reportNmea = env->GetMethodID(clazz, "reportNmea", "(J)V");
451 method_setEngineCapabilities = env->GetMethodID(clazz, "setEngineCapabilities", "(I)V");
452 method_xtraDownloadRequest = env->GetMethodID(clazz, "xtraDownloadRequest", "()V");
Mike Lockwood58ec34c2011-02-23 08:21:00 -0800453 method_reportNiNotification = env->GetMethodID(clazz, "reportNiNotification",
454 "(IIIIILjava/lang/String;Ljava/lang/String;IILjava/lang/String;)V");
Mike Lockwoodbea31182010-10-05 14:29:53 -0400455 method_requestRefLocation = env->GetMethodID(clazz,"requestRefLocation","(I)V");
456 method_requestSetID = env->GetMethodID(clazz,"requestSetID","(I)V");
Mike Lockwood9b9fb5c2011-06-29 15:09:40 -0400457 method_requestUtcTime = env->GetMethodID(clazz,"requestUtcTime","()V");
Jaikumar Ganesh8ce470d2013-04-03 12:22:18 -0700458 method_reportGeofenceTransition = env->GetMethodID(clazz,"reportGeofenceTransition",
459 "(IIDDDFFFJIJ)V");
460 method_reportGeofenceStatus = env->GetMethodID(clazz,"reportGeofenceStatus",
461 "(IIDDDFFFJ)V");
462 method_reportGeofenceAddStatus = env->GetMethodID(clazz,"reportGeofenceAddStatus",
463 "(II)V");
464 method_reportGeofenceRemoveStatus = env->GetMethodID(clazz,"reportGeofenceRemoveStatus",
465 "(II)V");
466 method_reportGeofenceResumeStatus = env->GetMethodID(clazz,"reportGeofenceResumeStatus",
467 "(II)V");
468 method_reportGeofencePauseStatus = env->GetMethodID(clazz,"reportGeofencePauseStatus",
469 "(II)V");
destradaaea8a8a62014-06-23 18:19:03 -0700470 method_reportMeasurementData = env->GetMethodID(
471 clazz,
472 "reportMeasurementData",
473 "(Landroid/location/GpsMeasurementsEvent;)V");
destradaa4b3e3932014-07-21 18:01:47 -0700474 method_reportNavigationMessages = env->GetMethodID(
475 clazz,
476 "reportNavigationMessage",
477 "(Landroid/location/GpsNavigationMessageEvent;)V");
Mike Lockwood58ec34c2011-02-23 08:21:00 -0800478
479 err = hw_get_module(GPS_HARDWARE_MODULE_ID, (hw_module_t const**)&module);
480 if (err == 0) {
481 hw_device_t* device;
482 err = module->methods->open(module, GPS_HARDWARE_MODULE_ID, &device);
483 if (err == 0) {
484 gps_device_t* gps_device = (gps_device_t *)device;
485 sGpsInterface = gps_device->get_gps_interface(gps_device);
486 }
487 }
488 if (sGpsInterface) {
489 sGpsXtraInterface =
490 (const GpsXtraInterface*)sGpsInterface->get_extension(GPS_XTRA_INTERFACE);
491 sAGpsInterface =
492 (const AGpsInterface*)sGpsInterface->get_extension(AGPS_INTERFACE);
493 sGpsNiInterface =
494 (const GpsNiInterface*)sGpsInterface->get_extension(GPS_NI_INTERFACE);
495 sGpsDebugInterface =
496 (const GpsDebugInterface*)sGpsInterface->get_extension(GPS_DEBUG_INTERFACE);
497 sAGpsRilInterface =
498 (const AGpsRilInterface*)sGpsInterface->get_extension(AGPS_RIL_INTERFACE);
Jaikumar Ganesh8ce470d2013-04-03 12:22:18 -0700499 sGpsGeofencingInterface =
500 (const GpsGeofencingInterface*)sGpsInterface->get_extension(GPS_GEOFENCING_INTERFACE);
destradaaea8a8a62014-06-23 18:19:03 -0700501 sGpsMeasurementInterface =
502 (const GpsMeasurementInterface*)sGpsInterface->get_extension(GPS_MEASUREMENT_INTERFACE);
destradaa4b3e3932014-07-21 18:01:47 -0700503 sGpsNavigationMessageInterface =
504 (const GpsNavigationMessageInterface*)sGpsInterface->get_extension(
505 GPS_NAVIGATION_MESSAGE_INTERFACE);
Tsuwei Chen52617bb2014-08-25 11:49:11 -0700506 sGnssConfigurationInterface =
507 (const GnssConfigurationInterface*)sGpsInterface->get_extension(
508 GNSS_CONFIGURATION_INTERFACE);
Mike Lockwood58ec34c2011-02-23 08:21:00 -0800509 }
Mike Lockwoodbea31182010-10-05 14:29:53 -0400510}
511
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800512static jboolean android_location_GpsLocationProvider_is_supported(JNIEnv* env, jclass clazz) {
Ashok Bhat7e2a9dc2014-01-02 19:43:30 +0000513 if (sGpsInterface != NULL) {
514 return JNI_TRUE;
515 } else {
516 return JNI_FALSE;
517 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800518}
519
520static jboolean android_location_GpsLocationProvider_init(JNIEnv* env, jobject obj)
521{
Mike Lockwood58ec34c2011-02-23 08:21:00 -0800522 // this must be set before calling into the HAL library
523 if (!mCallbacksObj)
524 mCallbacksObj = env->NewGlobalRef(obj);
525
526 // fail if the main interface fails to initialize
527 if (!sGpsInterface || sGpsInterface->init(&sGpsCallbacks) != 0)
Ashok Bhat7e2a9dc2014-01-02 19:43:30 +0000528 return JNI_FALSE;
Mike Lockwood58bda982009-04-14 16:25:07 -0400529
Jaikumar Ganesh8ce470d2013-04-03 12:22:18 -0700530 // if XTRA initialization fails we will disable it by sGpsXtraInterface to NULL,
Mike Lockwood58ec34c2011-02-23 08:21:00 -0800531 // but continue to allow the rest of the GPS interface to work.
532 if (sGpsXtraInterface && sGpsXtraInterface->init(&sGpsXtraCallbacks) != 0)
533 sGpsXtraInterface = NULL;
534 if (sAGpsInterface)
535 sAGpsInterface->init(&sAGpsCallbacks);
536 if (sGpsNiInterface)
537 sGpsNiInterface->init(&sGpsNiCallbacks);
538 if (sAGpsRilInterface)
539 sAGpsRilInterface->init(&sAGpsRilCallbacks);
Jaikumar Ganesh8ce470d2013-04-03 12:22:18 -0700540 if (sGpsGeofencingInterface)
541 sGpsGeofencingInterface->init(&sGpsGeofenceCallbacks);
Fred Fettinger3c8fbdf2010-01-04 15:38:13 -0600542
Narayan Kamath87d6cd42014-01-08 12:26:28 +0000543 return JNI_TRUE;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800544}
545
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800546static void android_location_GpsLocationProvider_cleanup(JNIEnv* env, jobject obj)
547{
Mike Lockwood58ec34c2011-02-23 08:21:00 -0800548 if (sGpsInterface)
549 sGpsInterface->cleanup();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800550}
551
Mike Lockwood04598b62010-04-14 17:17:24 -0400552static jboolean android_location_GpsLocationProvider_set_position_mode(JNIEnv* env, jobject obj,
553 jint mode, jint recurrence, jint min_interval, jint preferred_accuracy, jint preferred_time)
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800554{
Ashok Bhat7e2a9dc2014-01-02 19:43:30 +0000555 if (sGpsInterface) {
556 if (sGpsInterface->set_position_mode(mode, recurrence, min_interval, preferred_accuracy,
557 preferred_time) == 0) {
558 return JNI_TRUE;
559 } else {
560 return JNI_FALSE;
561 }
562 }
Mike Lockwood42702372010-10-10 16:04:18 -0400563 else
Ashok Bhat7e2a9dc2014-01-02 19:43:30 +0000564 return JNI_FALSE;
Mike Lockwood04598b62010-04-14 17:17:24 -0400565}
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800566
Mike Lockwood04598b62010-04-14 17:17:24 -0400567static jboolean android_location_GpsLocationProvider_start(JNIEnv* env, jobject obj)
568{
Ashok Bhat7e2a9dc2014-01-02 19:43:30 +0000569 if (sGpsInterface) {
570 if (sGpsInterface->start() == 0) {
571 return JNI_TRUE;
572 } else {
573 return JNI_FALSE;
574 }
575 }
Mike Lockwood42702372010-10-10 16:04:18 -0400576 else
Ashok Bhat7e2a9dc2014-01-02 19:43:30 +0000577 return JNI_FALSE;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800578}
579
580static jboolean android_location_GpsLocationProvider_stop(JNIEnv* env, jobject obj)
581{
Ashok Bhat7e2a9dc2014-01-02 19:43:30 +0000582 if (sGpsInterface) {
583 if (sGpsInterface->stop() == 0) {
584 return JNI_TRUE;
585 } else {
586 return JNI_FALSE;
587 }
588 }
Mike Lockwood42702372010-10-10 16:04:18 -0400589 else
Ashok Bhat7e2a9dc2014-01-02 19:43:30 +0000590 return JNI_FALSE;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800591}
592
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800593static void android_location_GpsLocationProvider_delete_aiding_data(JNIEnv* env, jobject obj, jint flags)
594{
Mike Lockwood58ec34c2011-02-23 08:21:00 -0800595 if (sGpsInterface)
596 sGpsInterface->delete_aiding_data(flags);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800597}
598
Danke Xie22d1f9f2009-08-18 18:28:45 -0400599static jint android_location_GpsLocationProvider_read_sv_status(JNIEnv* env, jobject obj,
600 jintArray prnArray, jfloatArray snrArray, jfloatArray elevArray, jfloatArray azumArray,
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800601 jintArray maskArray)
602{
Mike Lockwoodf602d362010-06-20 14:28:16 -0700603 // this should only be called from within a call to reportSvStatus
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800604
605 jint* prns = env->GetIntArrayElements(prnArray, 0);
606 jfloat* snrs = env->GetFloatArrayElements(snrArray, 0);
607 jfloat* elev = env->GetFloatArrayElements(elevArray, 0);
608 jfloat* azim = env->GetFloatArrayElements(azumArray, 0);
609 jint* mask = env->GetIntArrayElements(maskArray, 0);
610
Mike Lockwoodf602d362010-06-20 14:28:16 -0700611 int num_svs = sGpsSvStatus.num_svs;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800612 for (int i = 0; i < num_svs; i++) {
Mike Lockwoodf602d362010-06-20 14:28:16 -0700613 prns[i] = sGpsSvStatus.sv_list[i].prn;
614 snrs[i] = sGpsSvStatus.sv_list[i].snr;
615 elev[i] = sGpsSvStatus.sv_list[i].elevation;
616 azim[i] = sGpsSvStatus.sv_list[i].azimuth;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800617 }
Mike Lockwoodf602d362010-06-20 14:28:16 -0700618 mask[0] = sGpsSvStatus.ephemeris_mask;
619 mask[1] = sGpsSvStatus.almanac_mask;
620 mask[2] = sGpsSvStatus.used_in_fix_mask;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800621
622 env->ReleaseIntArrayElements(prnArray, prns, 0);
623 env->ReleaseFloatArrayElements(snrArray, snrs, 0);
624 env->ReleaseFloatArrayElements(elevArray, elev, 0);
625 env->ReleaseFloatArrayElements(azumArray, azim, 0);
626 env->ReleaseIntArrayElements(maskArray, mask, 0);
Ashok Bhat7e2a9dc2014-01-02 19:43:30 +0000627 return (jint) num_svs;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800628}
629
Miguel Torroja1e84da82010-07-27 07:02:24 +0200630static void android_location_GpsLocationProvider_agps_set_reference_location_cellid(JNIEnv* env,
631 jobject obj, jint type, jint mcc, jint mnc, jint lac, jint cid)
632{
633 AGpsRefLocation location;
Mike Lockwood58ec34c2011-02-23 08:21:00 -0800634
635 if (!sAGpsRilInterface) {
Steve Block3762c312012-01-06 19:20:56 +0000636 ALOGE("no AGPS RIL interface in agps_set_reference_location_cellid");
Miguel Torroja1e84da82010-07-27 07:02:24 +0200637 return;
Mike Lockwoodbea31182010-10-05 14:29:53 -0400638 }
639
Miguel Torroja1e84da82010-07-27 07:02:24 +0200640 switch(type) {
641 case AGPS_REF_LOCATION_TYPE_GSM_CELLID:
642 case AGPS_REF_LOCATION_TYPE_UMTS_CELLID:
643 location.type = type;
644 location.u.cellID.mcc = mcc;
645 location.u.cellID.mnc = mnc;
646 location.u.cellID.lac = lac;
647 location.u.cellID.cid = cid;
648 break;
649 default:
Steve Block3762c312012-01-06 19:20:56 +0000650 ALOGE("Neither a GSM nor a UMTS cellid (%s:%d).",__FUNCTION__,__LINE__);
Miguel Torroja1e84da82010-07-27 07:02:24 +0200651 return;
652 break;
653 }
Mike Lockwood58ec34c2011-02-23 08:21:00 -0800654 sAGpsRilInterface->set_ref_location(&location, sizeof(location));
Miguel Torroja1e84da82010-07-27 07:02:24 +0200655}
656
657static void android_location_GpsLocationProvider_agps_send_ni_message(JNIEnv* env,
658 jobject obj, jbyteArray ni_msg, jint size)
659{
660 size_t sz;
Mike Lockwood58ec34c2011-02-23 08:21:00 -0800661
662 if (!sAGpsRilInterface) {
Steve Block3762c312012-01-06 19:20:56 +0000663 ALOGE("no AGPS RIL interface in send_ni_message");
Miguel Torroja1e84da82010-07-27 07:02:24 +0200664 return;
Mike Lockwoodbea31182010-10-05 14:29:53 -0400665 }
Miguel Torroja1e84da82010-07-27 07:02:24 +0200666 if (size < 0)
667 return;
668 sz = (size_t)size;
669 jbyte* b = env->GetByteArrayElements(ni_msg, 0);
Mike Lockwood58ec34c2011-02-23 08:21:00 -0800670 sAGpsRilInterface->ni_message((uint8_t *)b,sz);
Miguel Torroja1e84da82010-07-27 07:02:24 +0200671 env->ReleaseByteArrayElements(ni_msg,b,0);
672}
673
674static void android_location_GpsLocationProvider_agps_set_id(JNIEnv *env,
675 jobject obj, jint type, jstring setid_string)
676{
Mike Lockwood58ec34c2011-02-23 08:21:00 -0800677 if (!sAGpsRilInterface) {
Steve Block3762c312012-01-06 19:20:56 +0000678 ALOGE("no AGPS RIL interface in agps_set_id");
Miguel Torroja1e84da82010-07-27 07:02:24 +0200679 return;
Mike Lockwoodbea31182010-10-05 14:29:53 -0400680 }
Miguel Torroja1e84da82010-07-27 07:02:24 +0200681
682 const char *setid = env->GetStringUTFChars(setid_string, NULL);
Mike Lockwood58ec34c2011-02-23 08:21:00 -0800683 sAGpsRilInterface->set_set_id(type, setid);
Miguel Torroja1e84da82010-07-27 07:02:24 +0200684 env->ReleaseStringUTFChars(setid_string, setid);
685}
686
Mike Lockwoodf602d362010-06-20 14:28:16 -0700687static jint android_location_GpsLocationProvider_read_nmea(JNIEnv* env, jobject obj,
688 jbyteArray nmeaArray, jint buffer_size)
Mike Lockwoodb16e7802009-08-06 09:26:02 -0400689{
Mike Lockwoodf602d362010-06-20 14:28:16 -0700690 // this should only be called from within a call to reportNmea
691 jbyte* nmea = (jbyte *)env->GetPrimitiveArrayCritical(nmeaArray, 0);
692 int length = sNmeaStringLength;
Mike Lockwoodb16e7802009-08-06 09:26:02 -0400693 if (length > buffer_size)
694 length = buffer_size;
Mike Lockwoodf602d362010-06-20 14:28:16 -0700695 memcpy(nmea, sNmeaString, length);
696 env->ReleasePrimitiveArrayCritical(nmeaArray, nmea, JNI_ABORT);
Ashok Bhat7e2a9dc2014-01-02 19:43:30 +0000697 return (jint) length;
Mike Lockwoodb16e7802009-08-06 09:26:02 -0400698}
699
Mike Lockwoodf602d362010-06-20 14:28:16 -0700700static void android_location_GpsLocationProvider_inject_time(JNIEnv* env, jobject obj,
701 jlong time, jlong timeReference, jint uncertainty)
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800702{
Mike Lockwood58ec34c2011-02-23 08:21:00 -0800703 if (sGpsInterface)
704 sGpsInterface->inject_time(time, timeReference, uncertainty);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800705}
706
Mike Lockwoodd26ce0d2009-06-11 12:25:46 -0400707static void android_location_GpsLocationProvider_inject_location(JNIEnv* env, jobject obj,
708 jdouble latitude, jdouble longitude, jfloat accuracy)
709{
Mike Lockwood58ec34c2011-02-23 08:21:00 -0800710 if (sGpsInterface)
711 sGpsInterface->inject_location(latitude, longitude, accuracy);
Mike Lockwoodd26ce0d2009-06-11 12:25:46 -0400712}
713
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800714static jboolean android_location_GpsLocationProvider_supports_xtra(JNIEnv* env, jobject obj)
715{
Ashok Bhat7e2a9dc2014-01-02 19:43:30 +0000716 if (sGpsXtraInterface != NULL) {
717 return JNI_TRUE;
718 } else {
719 return JNI_FALSE;
720 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800721}
722
Danke Xie22d1f9f2009-08-18 18:28:45 -0400723static void android_location_GpsLocationProvider_inject_xtra_data(JNIEnv* env, jobject obj,
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800724 jbyteArray data, jint length)
725{
Mike Lockwood58ec34c2011-02-23 08:21:00 -0800726 if (!sGpsXtraInterface) {
Steve Block3762c312012-01-06 19:20:56 +0000727 ALOGE("no XTRA interface in inject_xtra_data");
Mike Lockwood58ec34c2011-02-23 08:21:00 -0800728 return;
729 }
730
Mike Lockwoodf602d362010-06-20 14:28:16 -0700731 jbyte* bytes = (jbyte *)env->GetPrimitiveArrayCritical(data, 0);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800732 sGpsXtraInterface->inject_xtra_data((char *)bytes, length);
Mike Lockwoodf602d362010-06-20 14:28:16 -0700733 env->ReleasePrimitiveArrayCritical(data, bytes, JNI_ABORT);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800734}
735
destradaa96a14702014-06-05 11:36:30 -0700736static void android_location_GpsLocationProvider_agps_data_conn_open(
737 JNIEnv* env, jobject obj, jstring apn, jint apnIpType)
The Android Open Source Project10592532009-03-18 17:39:46 -0700738{
Mike Lockwood58ec34c2011-02-23 08:21:00 -0800739 if (!sAGpsInterface) {
Steve Block3762c312012-01-06 19:20:56 +0000740 ALOGE("no AGPS interface in agps_data_conn_open");
Mike Lockwoodbea31182010-10-05 14:29:53 -0400741 return;
The Android Open Source Project10592532009-03-18 17:39:46 -0700742 }
Mike Lockwoodbea31182010-10-05 14:29:53 -0400743 if (apn == NULL) {
744 jniThrowException(env, "java/lang/IllegalArgumentException", NULL);
745 return;
The Android Open Source Project10592532009-03-18 17:39:46 -0700746 }
destradaa96a14702014-06-05 11:36:30 -0700747
Mike Lockwoodbea31182010-10-05 14:29:53 -0400748 const char *apnStr = env->GetStringUTFChars(apn, NULL);
destradaa96a14702014-06-05 11:36:30 -0700749
750 size_t interface_size = sAGpsInterface->size;
751 if (interface_size == sizeof(AGpsInterface_v2)) {
752 sAGpsInterface->data_conn_open_with_apn_ip_type(apnStr, apnIpType);
753 } else if (interface_size == sizeof(AGpsInterface_v1)) {
754 sAGpsInterface->data_conn_open(apnStr);
755 } else {
756 ALOGE("Invalid size of AGpsInterface found: %d.", interface_size);
757 }
758
Mike Lockwoodbea31182010-10-05 14:29:53 -0400759 env->ReleaseStringUTFChars(apn, apnStr);
The Android Open Source Project10592532009-03-18 17:39:46 -0700760}
761
Mike Lockwoode3635c92009-05-11 08:38:02 -0400762static void android_location_GpsLocationProvider_agps_data_conn_closed(JNIEnv* env, jobject obj)
Mike Lockwood58bda982009-04-14 16:25:07 -0400763{
Mike Lockwood58ec34c2011-02-23 08:21:00 -0800764 if (!sAGpsInterface) {
Magnus Eriksson160c1ca2012-12-21 21:07:28 +0100765 ALOGE("no AGPS interface in agps_data_conn_closed");
Mike Lockwoodbea31182010-10-05 14:29:53 -0400766 return;
Mike Lockwood58bda982009-04-14 16:25:07 -0400767 }
Mike Lockwood58ec34c2011-02-23 08:21:00 -0800768 sAGpsInterface->data_conn_closed();
Mike Lockwood58bda982009-04-14 16:25:07 -0400769}
770
Mike Lockwoode3635c92009-05-11 08:38:02 -0400771static void android_location_GpsLocationProvider_agps_data_conn_failed(JNIEnv* env, jobject obj)
Mike Lockwood58bda982009-04-14 16:25:07 -0400772{
Mike Lockwood58ec34c2011-02-23 08:21:00 -0800773 if (!sAGpsInterface) {
Magnus Eriksson160c1ca2012-12-21 21:07:28 +0100774 ALOGE("no AGPS interface in agps_data_conn_failed");
Mike Lockwoodbea31182010-10-05 14:29:53 -0400775 return;
Mike Lockwood58bda982009-04-14 16:25:07 -0400776 }
Mike Lockwood58ec34c2011-02-23 08:21:00 -0800777 sAGpsInterface->data_conn_failed();
Mike Lockwood58bda982009-04-14 16:25:07 -0400778}
779
Mike Lockwoode3635c92009-05-11 08:38:02 -0400780static void android_location_GpsLocationProvider_set_agps_server(JNIEnv* env, jobject obj,
Mike Lockwooda9e54612009-06-19 14:54:42 -0400781 jint type, jstring hostname, jint port)
Mike Lockwood58bda982009-04-14 16:25:07 -0400782{
Mike Lockwood58ec34c2011-02-23 08:21:00 -0800783 if (!sAGpsInterface) {
Magnus Eriksson160c1ca2012-12-21 21:07:28 +0100784 ALOGE("no AGPS interface in set_agps_server");
Mike Lockwoodbea31182010-10-05 14:29:53 -0400785 return;
Mike Lockwood58bda982009-04-14 16:25:07 -0400786 }
Mike Lockwoodbea31182010-10-05 14:29:53 -0400787 const char *c_hostname = env->GetStringUTFChars(hostname, NULL);
Mike Lockwood58ec34c2011-02-23 08:21:00 -0800788 sAGpsInterface->set_server(type, c_hostname, port);
Mike Lockwoodbea31182010-10-05 14:29:53 -0400789 env->ReleaseStringUTFChars(hostname, c_hostname);
Mike Lockwood58bda982009-04-14 16:25:07 -0400790}
791
Danke Xie22d1f9f2009-08-18 18:28:45 -0400792static void android_location_GpsLocationProvider_send_ni_response(JNIEnv* env, jobject obj,
793 jint notifId, jint response)
794{
Mike Lockwood58ec34c2011-02-23 08:21:00 -0800795 if (!sGpsNiInterface) {
Steve Block3762c312012-01-06 19:20:56 +0000796 ALOGE("no NI interface in send_ni_response");
Mike Lockwoodbea31182010-10-05 14:29:53 -0400797 return;
Fred Fettinger3c8fbdf2010-01-04 15:38:13 -0600798 }
Mike Lockwoodbea31182010-10-05 14:29:53 -0400799
Mike Lockwood58ec34c2011-02-23 08:21:00 -0800800 sGpsNiInterface->respond(notifId, response);
Fred Fettinger3c8fbdf2010-01-04 15:38:13 -0600801}
802
803static jstring android_location_GpsLocationProvider_get_internal_state(JNIEnv* env, jobject obj)
804{
805 jstring result = NULL;
806 if (sGpsDebugInterface) {
807 const size_t maxLength = 2047;
808 char buffer[maxLength+1];
809 size_t length = sGpsDebugInterface->get_internal_state(buffer, maxLength);
810 if (length > maxLength) length = maxLength;
811 buffer[length] = 0;
812 result = env->NewStringUTF(buffer);
813 }
814 return result;
Danke Xie22d1f9f2009-08-18 18:28:45 -0400815}
816
Mike Lockwood50130bb2010-10-11 06:22:50 -0400817static void android_location_GpsLocationProvider_update_network_state(JNIEnv* env, jobject obj,
Ashok Bhat7e2a9dc2014-01-02 19:43:30 +0000818 jboolean connected, jint type, jboolean roaming, jboolean available, jstring extraInfo, jstring apn)
Mike Lockwood50130bb2010-10-11 06:22:50 -0400819{
Mike Lockwood58ec34c2011-02-23 08:21:00 -0800820
821 if (sAGpsRilInterface && sAGpsRilInterface->update_network_state) {
Mike Lockwood50130bb2010-10-11 06:22:50 -0400822 if (extraInfo) {
823 const char *extraInfoStr = env->GetStringUTFChars(extraInfo, NULL);
Mike Lockwood58ec34c2011-02-23 08:21:00 -0800824 sAGpsRilInterface->update_network_state(connected, type, roaming, extraInfoStr);
Mike Lockwood50130bb2010-10-11 06:22:50 -0400825 env->ReleaseStringUTFChars(extraInfo, extraInfoStr);
826 } else {
Mike Lockwood58ec34c2011-02-23 08:21:00 -0800827 sAGpsRilInterface->update_network_state(connected, type, roaming, NULL);
Mike Lockwood50130bb2010-10-11 06:22:50 -0400828 }
Kevin Tanga5fe6b22011-06-05 14:25:16 -0700829
830 // update_network_availability callback was not included in original AGpsRilInterface
831 if (sAGpsRilInterface->size >= sizeof(AGpsRilInterface)
832 && sAGpsRilInterface->update_network_availability) {
833 const char *c_apn = env->GetStringUTFChars(apn, NULL);
834 sAGpsRilInterface->update_network_availability(available, c_apn);
835 env->ReleaseStringUTFChars(apn, c_apn);
836 }
Mike Lockwood50130bb2010-10-11 06:22:50 -0400837 }
838}
839
Jaikumar Ganesh8ce470d2013-04-03 12:22:18 -0700840static jboolean android_location_GpsLocationProvider_is_geofence_supported(JNIEnv* env,
841 jobject obj) {
842 if (sGpsGeofencingInterface != NULL) {
843 return JNI_TRUE;
844 }
845 return JNI_FALSE;
846}
847
848static jboolean android_location_GpsLocationProvider_add_geofence(JNIEnv* env, jobject obj,
849 jint geofence_id, jdouble latitude, jdouble longitude, jdouble radius,
850 jint last_transition, jint monitor_transition, jint notification_responsiveness,
851 jint unknown_timer) {
852 if (sGpsGeofencingInterface != NULL) {
853 sGpsGeofencingInterface->add_geofence_area(geofence_id, latitude, longitude,
854 radius, last_transition, monitor_transition, notification_responsiveness,
855 unknown_timer);
856 return JNI_TRUE;
857 } else {
858 ALOGE("Geofence interface not available");
859 }
860 return JNI_FALSE;
861}
862
863static jboolean android_location_GpsLocationProvider_remove_geofence(JNIEnv* env, jobject obj,
864 jint geofence_id) {
865 if (sGpsGeofencingInterface != NULL) {
866 sGpsGeofencingInterface->remove_geofence_area(geofence_id);
867 return JNI_TRUE;
868 } else {
869 ALOGE("Geofence interface not available");
870 }
871 return JNI_FALSE;
872}
873
874static jboolean android_location_GpsLocationProvider_pause_geofence(JNIEnv* env, jobject obj,
875 jint geofence_id) {
876 if (sGpsGeofencingInterface != NULL) {
877 sGpsGeofencingInterface->pause_geofence(geofence_id);
878 return JNI_TRUE;
879 } else {
880 ALOGE("Geofence interface not available");
881 }
882 return JNI_FALSE;
883}
884
885static jboolean android_location_GpsLocationProvider_resume_geofence(JNIEnv* env, jobject obj,
886 jint geofence_id, jint monitor_transition) {
887 if (sGpsGeofencingInterface != NULL) {
888 sGpsGeofencingInterface->resume_geofence(geofence_id, monitor_transition);
889 return JNI_TRUE;
890 } else {
891 ALOGE("Geofence interface not available");
892 }
893 return JNI_FALSE;
894}
895
destradaaea8a8a62014-06-23 18:19:03 -0700896static jobject translate_gps_clock(JNIEnv* env, GpsClock* clock) {
897 const char* doubleSignature = "(D)V";
destradaa2102dd72014-07-18 17:50:24 -0700898 const char* longSignature = "(J)V";
destradaaea8a8a62014-06-23 18:19:03 -0700899
900 jclass gpsClockClass = env->FindClass("android/location/GpsClock");
901 jmethodID gpsClockCtor = env->GetMethodID(gpsClockClass, "<init>", "()V");
902
903 jobject gpsClockObject = env->NewObject(gpsClockClass, gpsClockCtor);
904 GpsClockFlags flags = clock->flags;
905
906 if (flags & GPS_CLOCK_HAS_LEAP_SECOND) {
907 jmethodID setterMethod = env->GetMethodID(gpsClockClass, "setLeapSecond", "(S)V");
Tsuwei Chen52617bb2014-08-25 11:49:11 -0700908 env->CallVoidMethod(gpsClockObject, setterMethod, clock->leap_second);
destradaaea8a8a62014-06-23 18:19:03 -0700909 }
910
destradaa2102dd72014-07-18 17:50:24 -0700911 jmethodID typeSetterMethod = env->GetMethodID(gpsClockClass, "setType", "(B)V");
Tsuwei Chen52617bb2014-08-25 11:49:11 -0700912 env->CallVoidMethod(gpsClockObject, typeSetterMethod, clock->type);
destradaa2102dd72014-07-18 17:50:24 -0700913
914 jmethodID setterMethod = env->GetMethodID(gpsClockClass, "setTimeInNs", longSignature);
Tsuwei Chen52617bb2014-08-25 11:49:11 -0700915 env->CallVoidMethod(gpsClockObject, setterMethod, clock->time_ns);
destradaaea8a8a62014-06-23 18:19:03 -0700916
917 if (flags & GPS_CLOCK_HAS_TIME_UNCERTAINTY) {
destradaa2102dd72014-07-18 17:50:24 -0700918 jmethodID setterMethod =
919 env->GetMethodID(gpsClockClass, "setTimeUncertaintyInNs", doubleSignature);
Tsuwei Chen52617bb2014-08-25 11:49:11 -0700920 env->CallVoidMethod(gpsClockObject, setterMethod, clock->time_uncertainty_ns);
destradaaea8a8a62014-06-23 18:19:03 -0700921 }
922
destradaa2102dd72014-07-18 17:50:24 -0700923 if (flags & GPS_CLOCK_HAS_FULL_BIAS) {
924 jmethodID setterMethod = env->GetMethodID(gpsClockClass, "setFullBiasInNs", longSignature);
Tsuwei Chen52617bb2014-08-25 11:49:11 -0700925 env->CallVoidMethod(gpsClockObject, setterMethod, clock->full_bias_ns);
destradaa2102dd72014-07-18 17:50:24 -0700926 }
927
destradaaea8a8a62014-06-23 18:19:03 -0700928 if (flags & GPS_CLOCK_HAS_BIAS) {
929 jmethodID setterMethod = env->GetMethodID(gpsClockClass, "setBiasInNs", doubleSignature);
Tsuwei Chen52617bb2014-08-25 11:49:11 -0700930 env->CallVoidMethod(gpsClockObject, setterMethod, clock->bias_ns);
destradaaea8a8a62014-06-23 18:19:03 -0700931 }
932
933 if (flags & GPS_CLOCK_HAS_BIAS_UNCERTAINTY) {
destradaa2102dd72014-07-18 17:50:24 -0700934 jmethodID setterMethod =
935 env->GetMethodID(gpsClockClass, "setBiasUncertaintyInNs", doubleSignature);
Tsuwei Chen52617bb2014-08-25 11:49:11 -0700936 env->CallVoidMethod(gpsClockObject, setterMethod, clock->bias_uncertainty_ns);
destradaaea8a8a62014-06-23 18:19:03 -0700937 }
938
939 if (flags & GPS_CLOCK_HAS_DRIFT) {
destradaa2102dd72014-07-18 17:50:24 -0700940 jmethodID setterMethod =
941 env->GetMethodID(gpsClockClass, "setDriftInNsPerSec", doubleSignature);
Tsuwei Chen52617bb2014-08-25 11:49:11 -0700942 env->CallVoidMethod(gpsClockObject, setterMethod, clock->drift_nsps);
destradaaea8a8a62014-06-23 18:19:03 -0700943 }
944
945 if (flags & GPS_CLOCK_HAS_DRIFT_UNCERTAINTY) {
destradaa2102dd72014-07-18 17:50:24 -0700946 jmethodID setterMethod =
947 env->GetMethodID(gpsClockClass, "setDriftUncertaintyInNsPerSec", doubleSignature);
Tsuwei Chen52617bb2014-08-25 11:49:11 -0700948 env->CallVoidMethod(gpsClockObject, setterMethod, clock->drift_uncertainty_nsps);
destradaaea8a8a62014-06-23 18:19:03 -0700949 }
950
Tsuwei Chen52617bb2014-08-25 11:49:11 -0700951 env->DeleteLocalRef(gpsClockClass);
destradaaea8a8a62014-06-23 18:19:03 -0700952 return gpsClockObject;
953}
954
destradaa2102dd72014-07-18 17:50:24 -0700955static jobject translate_gps_measurement(JNIEnv* env, GpsMeasurement* measurement) {
956 const char* byteSignature = "(B)V";
destradaaea8a8a62014-06-23 18:19:03 -0700957 const char* shortSignature = "(S)V";
Tsuwei Chen52617bb2014-08-25 11:49:11 -0700958 const char* intSignature = "(I)V";
destradaaea8a8a62014-06-23 18:19:03 -0700959 const char* longSignature = "(J)V";
960 const char* floatSignature = "(F)V";
961 const char* doubleSignature = "(D)V";
962
963 jclass gpsMeasurementClass = env->FindClass("android/location/GpsMeasurement");
964 jmethodID gpsMeasurementCtor = env->GetMethodID(gpsMeasurementClass, "<init>", "()V");
965
966 jobject gpsMeasurementObject = env->NewObject(gpsMeasurementClass, gpsMeasurementCtor);
967 GpsMeasurementFlags flags = measurement->flags;
968
destradaa2102dd72014-07-18 17:50:24 -0700969 jmethodID prnSetterMethod = env->GetMethodID(gpsMeasurementClass, "setPrn", byteSignature);
Tsuwei Chen52617bb2014-08-25 11:49:11 -0700970 env->CallVoidMethod(gpsMeasurementObject, prnSetterMethod, measurement->prn);
destradaaea8a8a62014-06-23 18:19:03 -0700971
destradaa2102dd72014-07-18 17:50:24 -0700972 jmethodID timeOffsetSetterMethod =
973 env->GetMethodID(gpsMeasurementClass, "setTimeOffsetInNs", doubleSignature);
Tsuwei Chen52617bb2014-08-25 11:49:11 -0700974 env->CallVoidMethod(
destradaaea8a8a62014-06-23 18:19:03 -0700975 gpsMeasurementObject,
destradaa2102dd72014-07-18 17:50:24 -0700976 timeOffsetSetterMethod,
977 measurement->time_offset_ns);
978
979 jmethodID stateSetterMethod = env->GetMethodID(gpsMeasurementClass, "setState", shortSignature);
Tsuwei Chen52617bb2014-08-25 11:49:11 -0700980 env->CallVoidMethod(gpsMeasurementObject, stateSetterMethod, measurement->state);
destradaaea8a8a62014-06-23 18:19:03 -0700981
982 jmethodID receivedGpsTowSetterMethod =
983 env->GetMethodID(gpsMeasurementClass, "setReceivedGpsTowInNs", longSignature);
Tsuwei Chen52617bb2014-08-25 11:49:11 -0700984 env->CallVoidMethod(
destradaaea8a8a62014-06-23 18:19:03 -0700985 gpsMeasurementObject,
986 receivedGpsTowSetterMethod,
987 measurement->received_gps_tow_ns);
988
destradaa81cabb82014-07-22 09:59:43 -0700989 jmethodID receivedGpsTowUncertaintySetterMethod = env->GetMethodID(
990 gpsMeasurementClass,
991 "setReceivedGpsTowUncertaintyInNs",
992 longSignature);
993 env->CallVoidMethod(
994 gpsMeasurementObject,
995 receivedGpsTowUncertaintySetterMethod,
996 measurement->received_gps_tow_uncertainty_ns);
997
destradaa2102dd72014-07-18 17:50:24 -0700998 jmethodID cn0SetterMethod =
999 env->GetMethodID(gpsMeasurementClass, "setCn0InDbHz", doubleSignature);
Tsuwei Chen52617bb2014-08-25 11:49:11 -07001000 env->CallVoidMethod(gpsMeasurementObject, cn0SetterMethod, measurement->c_n0_dbhz);
destradaaea8a8a62014-06-23 18:19:03 -07001001
1002 jmethodID pseudorangeRateSetterMethod = env->GetMethodID(
1003 gpsMeasurementClass,
1004 "setPseudorangeRateInMetersPerSec",
1005 doubleSignature);
Tsuwei Chen52617bb2014-08-25 11:49:11 -07001006 env->CallVoidMethod(
destradaaea8a8a62014-06-23 18:19:03 -07001007 gpsMeasurementObject,
1008 pseudorangeRateSetterMethod,
destradaa2102dd72014-07-18 17:50:24 -07001009 measurement->pseudorange_rate_mps);
destradaaea8a8a62014-06-23 18:19:03 -07001010
1011 jmethodID pseudorangeRateUncertaintySetterMethod = env->GetMethodID(
1012 gpsMeasurementClass,
1013 "setPseudorangeRateUncertaintyInMetersPerSec",
1014 doubleSignature);
Tsuwei Chen52617bb2014-08-25 11:49:11 -07001015 env->CallVoidMethod(
destradaaea8a8a62014-06-23 18:19:03 -07001016 gpsMeasurementObject,
1017 pseudorangeRateUncertaintySetterMethod,
destradaa2102dd72014-07-18 17:50:24 -07001018 measurement->pseudorange_rate_uncertainty_mps);
1019
1020 jmethodID accumulatedDeltaRangeStateSetterMethod =
1021 env->GetMethodID(gpsMeasurementClass, "setAccumulatedDeltaRangeState", shortSignature);
Tsuwei Chen52617bb2014-08-25 11:49:11 -07001022 env->CallVoidMethod(
destradaa2102dd72014-07-18 17:50:24 -07001023 gpsMeasurementObject,
1024 accumulatedDeltaRangeStateSetterMethod,
1025 measurement->accumulated_delta_range_state);
destradaaea8a8a62014-06-23 18:19:03 -07001026
1027 jmethodID accumulatedDeltaRangeSetterMethod = env->GetMethodID(
1028 gpsMeasurementClass,
1029 "setAccumulatedDeltaRangeInMeters",
1030 doubleSignature);
1031 env->CallVoidMethod(
1032 gpsMeasurementObject,
1033 accumulatedDeltaRangeSetterMethod,
1034 measurement->accumulated_delta_range_m);
1035
1036 jmethodID accumulatedDeltaRangeUncertaintySetterMethod = env->GetMethodID(
1037 gpsMeasurementClass,
1038 "setAccumulatedDeltaRangeUncertaintyInMeters",
1039 doubleSignature);
1040 env->CallVoidMethod(
1041 gpsMeasurementObject,
1042 accumulatedDeltaRangeUncertaintySetterMethod,
1043 measurement->accumulated_delta_range_uncertainty_m);
1044
destradaaea8a8a62014-06-23 18:19:03 -07001045 if (flags & GPS_MEASUREMENT_HAS_PSEUDORANGE) {
destradaa2102dd72014-07-18 17:50:24 -07001046 jmethodID setterMethod =
1047 env->GetMethodID(gpsMeasurementClass, "setPseudorangeInMeters", doubleSignature);
Tsuwei Chen52617bb2014-08-25 11:49:11 -07001048 env->CallVoidMethod(gpsMeasurementObject, setterMethod, measurement->pseudorange_m);
destradaaea8a8a62014-06-23 18:19:03 -07001049 }
1050
1051 if (flags & GPS_MEASUREMENT_HAS_PSEUDORANGE_UNCERTAINTY) {
1052 jmethodID setterMethod = env->GetMethodID(
1053 gpsMeasurementClass,
1054 "setPseudorangeUncertaintyInMeters",
1055 doubleSignature);
Tsuwei Chen52617bb2014-08-25 11:49:11 -07001056 env->CallVoidMethod(
destradaaea8a8a62014-06-23 18:19:03 -07001057 gpsMeasurementObject,
1058 setterMethod,
1059 measurement->pseudorange_uncertainty_m);
1060 }
1061
1062 if (flags & GPS_MEASUREMENT_HAS_CODE_PHASE) {
destradaa2102dd72014-07-18 17:50:24 -07001063 jmethodID setterMethod =
1064 env->GetMethodID(gpsMeasurementClass, "setCodePhaseInChips", doubleSignature);
Tsuwei Chen52617bb2014-08-25 11:49:11 -07001065 env->CallVoidMethod(gpsMeasurementObject, setterMethod, measurement->code_phase_chips);
destradaaea8a8a62014-06-23 18:19:03 -07001066 }
1067
1068 if (flags & GPS_MEASUREMENT_HAS_CODE_PHASE_UNCERTAINTY) {
1069 jmethodID setterMethod = env->GetMethodID(
1070 gpsMeasurementClass,
1071 "setCodePhaseUncertaintyInChips",
1072 doubleSignature);
Tsuwei Chen52617bb2014-08-25 11:49:11 -07001073 env->CallVoidMethod(
destradaaea8a8a62014-06-23 18:19:03 -07001074 gpsMeasurementObject,
1075 setterMethod,
1076 measurement->code_phase_uncertainty_chips);
1077 }
1078
1079 if (flags & GPS_MEASUREMENT_HAS_CARRIER_FREQUENCY) {
destradaa2102dd72014-07-18 17:50:24 -07001080 jmethodID setterMethod =
1081 env->GetMethodID(gpsMeasurementClass, "setCarrierFrequencyInHz", floatSignature);
Tsuwei Chen52617bb2014-08-25 11:49:11 -07001082 env->CallVoidMethod(
destradaaea8a8a62014-06-23 18:19:03 -07001083 gpsMeasurementObject,
1084 setterMethod,
1085 measurement->carrier_frequency_hz);
1086 }
1087
1088 if (flags & GPS_MEASUREMENT_HAS_CARRIER_CYCLES) {
1089 jmethodID setterMethod =
1090 env->GetMethodID(gpsMeasurementClass, "setCarrierCycles", longSignature);
Tsuwei Chen52617bb2014-08-25 11:49:11 -07001091 env->CallVoidMethod(gpsMeasurementObject, setterMethod, measurement->carrier_cycles);
destradaaea8a8a62014-06-23 18:19:03 -07001092 }
1093
1094 if (flags & GPS_MEASUREMENT_HAS_CARRIER_PHASE) {
1095 jmethodID setterMethod =
1096 env->GetMethodID(gpsMeasurementClass, "setCarrierPhase", doubleSignature);
Tsuwei Chen52617bb2014-08-25 11:49:11 -07001097 env->CallVoidMethod(gpsMeasurementObject, setterMethod, measurement->carrier_phase);
destradaaea8a8a62014-06-23 18:19:03 -07001098 }
1099
1100 if (flags & GPS_MEASUREMENT_HAS_CARRIER_PHASE_UNCERTAINTY) {
1101 jmethodID setterMethod = env->GetMethodID(
1102 gpsMeasurementClass,
1103 "setCarrierPhaseUncertainty",
1104 doubleSignature);
Tsuwei Chen52617bb2014-08-25 11:49:11 -07001105 env->CallVoidMethod(
destradaaea8a8a62014-06-23 18:19:03 -07001106 gpsMeasurementObject,
1107 setterMethod,
1108 measurement->carrier_phase_uncertainty);
1109 }
1110
1111 jmethodID lossOfLockSetterMethod =
destradaa2102dd72014-07-18 17:50:24 -07001112 env->GetMethodID(gpsMeasurementClass, "setLossOfLock", byteSignature);
Tsuwei Chen52617bb2014-08-25 11:49:11 -07001113 env->CallVoidMethod(gpsMeasurementObject, lossOfLockSetterMethod, measurement->loss_of_lock);
destradaaea8a8a62014-06-23 18:19:03 -07001114
1115 if (flags & GPS_MEASUREMENT_HAS_BIT_NUMBER) {
destradaa2102dd72014-07-18 17:50:24 -07001116 jmethodID setterMethod =
Tsuwei Chen52617bb2014-08-25 11:49:11 -07001117 env->GetMethodID(gpsMeasurementClass, "setBitNumber", intSignature);
1118 env->CallVoidMethod(gpsMeasurementObject, setterMethod, measurement->bit_number);
destradaaea8a8a62014-06-23 18:19:03 -07001119 }
1120
1121 if (flags & GPS_MEASUREMENT_HAS_TIME_FROM_LAST_BIT) {
destradaa2102dd72014-07-18 17:50:24 -07001122 jmethodID setterMethod =
1123 env->GetMethodID(gpsMeasurementClass, "setTimeFromLastBitInMs", shortSignature);
Tsuwei Chen52617bb2014-08-25 11:49:11 -07001124 env->CallVoidMethod(
destradaaea8a8a62014-06-23 18:19:03 -07001125 gpsMeasurementObject,
1126 setterMethod,
destradaa2102dd72014-07-18 17:50:24 -07001127 measurement->time_from_last_bit_ms);
destradaaea8a8a62014-06-23 18:19:03 -07001128 }
1129
1130 if (flags & GPS_MEASUREMENT_HAS_DOPPLER_SHIFT) {
destradaa2102dd72014-07-18 17:50:24 -07001131 jmethodID setterMethod =
1132 env->GetMethodID(gpsMeasurementClass, "setDopplerShiftInHz", doubleSignature);
Tsuwei Chen52617bb2014-08-25 11:49:11 -07001133 env->CallVoidMethod(gpsMeasurementObject, setterMethod, measurement->doppler_shift_hz);
destradaaea8a8a62014-06-23 18:19:03 -07001134 }
1135
1136 if (flags & GPS_MEASUREMENT_HAS_DOPPLER_SHIFT_UNCERTAINTY) {
1137 jmethodID setterMethod = env->GetMethodID(
1138 gpsMeasurementClass,
1139 "setDopplerShiftUncertaintyInHz",
1140 doubleSignature);
Tsuwei Chen52617bb2014-08-25 11:49:11 -07001141 env->CallVoidMethod(
destradaaea8a8a62014-06-23 18:19:03 -07001142 gpsMeasurementObject,
1143 setterMethod,
1144 measurement->doppler_shift_uncertainty_hz);
1145 }
1146
destradaa2102dd72014-07-18 17:50:24 -07001147 jmethodID multipathIndicatorSetterMethod =
1148 env->GetMethodID(gpsMeasurementClass, "setMultipathIndicator", byteSignature);
Tsuwei Chen52617bb2014-08-25 11:49:11 -07001149 env->CallVoidMethod(
destradaaea8a8a62014-06-23 18:19:03 -07001150 gpsMeasurementObject,
1151 multipathIndicatorSetterMethod,
1152 measurement->multipath_indicator);
1153
1154 if (flags & GPS_MEASUREMENT_HAS_SNR) {
1155 jmethodID setterMethod =
1156 env->GetMethodID(gpsMeasurementClass, "setSnrInDb", doubleSignature);
Tsuwei Chen52617bb2014-08-25 11:49:11 -07001157 env->CallVoidMethod(gpsMeasurementObject, setterMethod, measurement->snr_db);
destradaaea8a8a62014-06-23 18:19:03 -07001158 }
1159
1160 if (flags & GPS_MEASUREMENT_HAS_ELEVATION) {
destradaa2102dd72014-07-18 17:50:24 -07001161 jmethodID setterMethod =
1162 env->GetMethodID(gpsMeasurementClass, "setElevationInDeg", doubleSignature);
Tsuwei Chen52617bb2014-08-25 11:49:11 -07001163 env->CallVoidMethod(gpsMeasurementObject, setterMethod, measurement->elevation_deg);
destradaaea8a8a62014-06-23 18:19:03 -07001164 }
1165
1166 if (flags & GPS_MEASUREMENT_HAS_ELEVATION_UNCERTAINTY) {
destradaa2102dd72014-07-18 17:50:24 -07001167 jmethodID setterMethod =
1168 env->GetMethodID(gpsMeasurementClass, "setElevationUncertaintyInDeg", doubleSignature);
Tsuwei Chen52617bb2014-08-25 11:49:11 -07001169 env->CallVoidMethod(
destradaaea8a8a62014-06-23 18:19:03 -07001170 gpsMeasurementObject,
1171 setterMethod,
1172 measurement->elevation_uncertainty_deg);
1173 }
1174
1175 if (flags & GPS_MEASUREMENT_HAS_AZIMUTH) {
1176 jmethodID setterMethod =
1177 env->GetMethodID(gpsMeasurementClass, "setAzimuthInDeg", doubleSignature);
Tsuwei Chen52617bb2014-08-25 11:49:11 -07001178 env->CallVoidMethod(gpsMeasurementObject, setterMethod, measurement->azimuth_deg);
destradaaea8a8a62014-06-23 18:19:03 -07001179 }
1180
1181 if (flags & GPS_MEASUREMENT_HAS_AZIMUTH_UNCERTAINTY) {
1182 jmethodID setterMethod = env->GetMethodID(
1183 gpsMeasurementClass,
1184 "setAzimuthUncertaintyInDeg",
1185 doubleSignature);
Tsuwei Chen52617bb2014-08-25 11:49:11 -07001186 env->CallVoidMethod(
destradaaea8a8a62014-06-23 18:19:03 -07001187 gpsMeasurementObject,
1188 setterMethod,
1189 measurement->azimuth_uncertainty_deg);
1190 }
1191
1192 jmethodID usedInFixSetterMethod = env->GetMethodID(gpsMeasurementClass, "setUsedInFix", "(Z)V");
Tsuwei Chen52617bb2014-08-25 11:49:11 -07001193 env->CallVoidMethod(
destradaaea8a8a62014-06-23 18:19:03 -07001194 gpsMeasurementObject,
1195 usedInFixSetterMethod,
1196 (flags & GPS_MEASUREMENT_HAS_USED_IN_FIX) && measurement->used_in_fix);
1197
1198 return gpsMeasurementObject;
1199}
1200
1201static jobjectArray translate_gps_measurements(JNIEnv* env, GpsData* data) {
1202 size_t measurementCount = data->measurement_count;
1203 if (measurementCount == 0) {
1204 return NULL;
1205 }
1206
1207 jclass gpsMeasurementClass = env->FindClass("android/location/GpsMeasurement");
1208 jobjectArray gpsMeasurementArray = env->NewObjectArray(
1209 measurementCount,
1210 gpsMeasurementClass,
1211 NULL /* initialElement */);
1212
1213 GpsMeasurement* gpsMeasurements = data->measurements;
1214 for (uint16_t i = 0; i < measurementCount; ++i) {
destradaa2102dd72014-07-18 17:50:24 -07001215 jobject gpsMeasurement = translate_gps_measurement(env, &gpsMeasurements[i]);
destradaaea8a8a62014-06-23 18:19:03 -07001216 env->SetObjectArrayElement(gpsMeasurementArray, i, gpsMeasurement);
1217 env->DeleteLocalRef(gpsMeasurement);
1218 }
1219
1220 env->DeleteLocalRef(gpsMeasurementClass);
1221 return gpsMeasurementArray;
1222}
1223
1224static void measurement_callback(GpsData* data) {
1225 JNIEnv* env = AndroidRuntime::getJNIEnv();
1226 if (data == NULL) {
1227 ALOGE("Invalid data provided to gps_measurement_callback");
1228 return;
1229 }
1230
1231 if (data->size == sizeof(GpsData)) {
1232 jobject gpsClock = translate_gps_clock(env, &data->clock);
1233 jobjectArray measurementArray = translate_gps_measurements(env, data);
1234
1235 jclass gpsMeasurementsEventClass = env->FindClass("android/location/GpsMeasurementsEvent");
1236 jmethodID gpsMeasurementsEventCtor = env->GetMethodID(
1237 gpsMeasurementsEventClass,
1238 "<init>",
1239 "(Landroid/location/GpsClock;[Landroid/location/GpsMeasurement;)V");
1240
1241 jobject gpsMeasurementsEvent = env->NewObject(
1242 gpsMeasurementsEventClass,
1243 gpsMeasurementsEventCtor,
1244 gpsClock,
1245 measurementArray);
1246
1247 env->CallVoidMethod(mCallbacksObj, method_reportMeasurementData, gpsMeasurementsEvent);
1248 checkAndClearExceptionFromCallback(env, __FUNCTION__);
Tsuwei Chen52617bb2014-08-25 11:49:11 -07001249
1250 env->DeleteLocalRef(gpsClock);
1251 env->DeleteLocalRef(measurementArray);
1252 env->DeleteLocalRef(gpsMeasurementsEventClass);
1253 env->DeleteLocalRef(gpsMeasurementsEvent);
destradaaea8a8a62014-06-23 18:19:03 -07001254 } else {
1255 ALOGE("Invalid GpsData size found in gps_measurement_callback, size=%d", data->size);
destradaaea8a8a62014-06-23 18:19:03 -07001256 }
1257}
1258
1259GpsMeasurementCallbacks sGpsMeasurementCallbacks = {
1260 sizeof(GpsMeasurementCallbacks),
1261 measurement_callback,
1262};
1263
1264static jboolean android_location_GpsLocationProvider_is_measurement_supported(
1265 JNIEnv* env,
destradaa4b3e3932014-07-21 18:01:47 -07001266 jclass clazz) {
destradaaea8a8a62014-06-23 18:19:03 -07001267 if (sGpsMeasurementInterface != NULL) {
1268 return JNI_TRUE;
1269 }
1270 return JNI_FALSE;
1271}
1272
1273static jboolean android_location_GpsLocationProvider_start_measurement_collection(
1274 JNIEnv* env,
1275 jobject obj) {
1276 if (sGpsMeasurementInterface == NULL) {
1277 ALOGE("Measurement interface is not available.");
1278 return JNI_FALSE;
1279 }
1280
1281 int result = sGpsMeasurementInterface->init(&sGpsMeasurementCallbacks);
1282 if (result != GPS_GEOFENCE_OPERATION_SUCCESS) {
1283 ALOGE("An error has been found on GpsMeasurementInterface::init, status=%d", result);
1284 return JNI_FALSE;
1285 }
1286
1287 return JNI_TRUE;
1288}
1289
1290static jboolean android_location_GpsLocationProvider_stop_measurement_collection(
1291 JNIEnv* env,
1292 jobject obj) {
1293 if (sGpsMeasurementInterface == NULL) {
1294 ALOGE("Measurement interface not available");
1295 return JNI_FALSE;
1296 }
1297
1298 sGpsMeasurementInterface->close();
1299 return JNI_TRUE;
1300}
1301
destradaa4b3e3932014-07-21 18:01:47 -07001302static jobject translate_gps_navigation_message(JNIEnv* env, GpsNavigationMessage* message) {
1303 size_t dataLength = message->data_length;
1304 uint8_t* data = message->data;
1305 if (dataLength == 0 || data == NULL) {
1306 ALOGE("Invalid Navigation Message found: data=%p, length=%d", data, dataLength);
1307 return NULL;
1308 }
1309
1310 jclass navigationMessageClass = env->FindClass("android/location/GpsNavigationMessage");
1311 jmethodID navigationMessageCtor = env->GetMethodID(navigationMessageClass, "<init>", "()V");
1312 jobject navigationMessageObject = env->NewObject(navigationMessageClass, navigationMessageCtor);
1313
1314 jmethodID setTypeMethod = env->GetMethodID(navigationMessageClass, "setType", "(B)V");
1315 env->CallVoidMethod(navigationMessageObject, setTypeMethod, message->type);
1316
1317 jmethodID setPrnMethod = env->GetMethodID(navigationMessageClass, "setPrn", "(B)V");
1318 env->CallVoidMethod(navigationMessageObject, setPrnMethod, message->prn);
1319
1320 jmethodID setMessageIdMethod = env->GetMethodID(navigationMessageClass, "setMessageId", "(S)V");
1321 env->CallVoidMethod(navigationMessageObject, setMessageIdMethod, message->message_id);
1322
1323 jmethodID setSubmessageIdMethod =
1324 env->GetMethodID(navigationMessageClass, "setSubmessageId", "(S)V");
1325 env->CallVoidMethod(navigationMessageObject, setSubmessageIdMethod, message->submessage_id);
1326
1327 jbyteArray dataArray = env->NewByteArray(dataLength);
1328 env->SetByteArrayRegion(dataArray, 0, dataLength, (jbyte*) data);
1329 jmethodID setDataMethod = env->GetMethodID(navigationMessageClass, "setData", "([B)V");
1330 env->CallVoidMethod(navigationMessageObject, setDataMethod, dataArray);
1331
Tsuwei Chen52617bb2014-08-25 11:49:11 -07001332 env->DeleteLocalRef(navigationMessageClass);
1333 env->DeleteLocalRef(dataArray);
destradaa4b3e3932014-07-21 18:01:47 -07001334 return navigationMessageObject;
1335}
1336
1337static void navigation_message_callback(GpsNavigationMessage* message) {
1338 JNIEnv* env = AndroidRuntime::getJNIEnv();
1339 if (message == NULL) {
1340 ALOGE("Invalid Navigation Message provided to callback");
1341 return;
1342 }
1343
1344 if (message->size == sizeof(GpsNavigationMessage)) {
1345 jobject navigationMessage = translate_gps_navigation_message(env, message);
1346
1347 jclass navigationMessageEventClass =
1348 env->FindClass("android/location/GpsNavigationMessageEvent");
1349 jmethodID navigationMessageEventCtor = env->GetMethodID(
1350 navigationMessageEventClass,
1351 "<init>",
1352 "(Landroid/location/GpsNavigationMessage;)V");
1353 jobject navigationMessageEvent = env->NewObject(
1354 navigationMessageEventClass,
1355 navigationMessageEventCtor,
1356 navigationMessage);
1357
1358 env->CallVoidMethod(mCallbacksObj, method_reportNavigationMessages, navigationMessageEvent);
1359 checkAndClearExceptionFromCallback(env, __FUNCTION__);
Tsuwei Chen52617bb2014-08-25 11:49:11 -07001360
1361 env->DeleteLocalRef(navigationMessage);
1362 env->DeleteLocalRef(navigationMessageEventClass);
1363 env->DeleteLocalRef(navigationMessageEvent);
destradaa4b3e3932014-07-21 18:01:47 -07001364 } else {
1365 ALOGE("Invalid GpsNavigationMessage size found: %d", message->size);
1366 }
1367}
1368
1369GpsNavigationMessageCallbacks sGpsNavigationMessageCallbacks = {
1370 sizeof(GpsNavigationMessageCallbacks),
1371 navigation_message_callback,
1372};
1373
1374static jboolean android_location_GpsLocationProvider_is_navigation_message_supported(
1375 JNIEnv* env,
1376 jclass clazz) {
1377 if(sGpsNavigationMessageInterface != NULL) {
1378 return JNI_TRUE;
1379 }
1380 return JNI_FALSE;
1381}
1382
1383static jboolean android_location_GpsLocationProvider_start_navigation_message_collection(
1384 JNIEnv* env,
1385 jobject obj) {
1386 if (sGpsNavigationMessageInterface == NULL) {
1387 ALOGE("Navigation Message interface is not available.");
1388 return JNI_FALSE;
1389 }
1390
1391 int result = sGpsNavigationMessageInterface->init(&sGpsNavigationMessageCallbacks);
1392 if (result != GPS_NAVIGATION_MESSAGE_OPERATION_SUCCESS) {
1393 ALOGE("An error has been found in %s: %d", __FUNCTION__, result);
1394 return JNI_FALSE;
1395 }
1396
1397 return JNI_TRUE;
1398}
1399
1400static jboolean android_location_GpsLocationProvider_stop_navigation_message_collection(
1401 JNIEnv* env,
1402 jobject obj) {
1403 if (sGpsNavigationMessageInterface == NULL) {
1404 ALOGE("Navigation Message interface is not available.");
1405 return JNI_FALSE;
1406 }
1407
1408 sGpsNavigationMessageInterface->close();
1409 return JNI_TRUE;
1410}
1411
Tsuwei Chen52617bb2014-08-25 11:49:11 -07001412static void android_location_GpsLocationProvider_configuration_update(JNIEnv* env, jobject obj,
1413 jstring config_content)
1414{
1415 if (!sGnssConfigurationInterface) {
1416 ALOGE("no GPS configuration interface in configuraiton_update");
1417 return;
1418 }
1419 const char *data = env->GetStringUTFChars(config_content, NULL);
1420 ALOGD("GPS configuration:\n %s", data);
1421 sGnssConfigurationInterface->configuration_update(
1422 data, env->GetStringUTFLength(config_content));
1423 env->ReleaseStringUTFChars(config_content, data);
1424}
1425
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001426static JNINativeMethod sMethods[] = {
1427 /* name, signature, funcPtr */
1428 {"class_init_native", "()V", (void *)android_location_GpsLocationProvider_class_init_native},
Mike Lockwoode3635c92009-05-11 08:38:02 -04001429 {"native_is_supported", "()Z", (void*)android_location_GpsLocationProvider_is_supported},
1430 {"native_init", "()Z", (void*)android_location_GpsLocationProvider_init},
Mike Lockwoode3635c92009-05-11 08:38:02 -04001431 {"native_cleanup", "()V", (void*)android_location_GpsLocationProvider_cleanup},
destradaaea8a8a62014-06-23 18:19:03 -07001432 {"native_set_position_mode",
1433 "(IIIII)Z",
1434 (void*)android_location_GpsLocationProvider_set_position_mode},
Mike Lockwood04598b62010-04-14 17:17:24 -04001435 {"native_start", "()Z", (void*)android_location_GpsLocationProvider_start},
Mike Lockwoode3635c92009-05-11 08:38:02 -04001436 {"native_stop", "()Z", (void*)android_location_GpsLocationProvider_stop},
destradaaea8a8a62014-06-23 18:19:03 -07001437 {"native_delete_aiding_data",
1438 "(I)V",
1439 (void*)android_location_GpsLocationProvider_delete_aiding_data},
1440 {"native_read_sv_status",
1441 "([I[F[F[F[I)I",
1442 (void*)android_location_GpsLocationProvider_read_sv_status},
Mike Lockwoodf602d362010-06-20 14:28:16 -07001443 {"native_read_nmea", "([BI)I", (void*)android_location_GpsLocationProvider_read_nmea},
Mike Lockwoode3635c92009-05-11 08:38:02 -04001444 {"native_inject_time", "(JJI)V", (void*)android_location_GpsLocationProvider_inject_time},
destradaaea8a8a62014-06-23 18:19:03 -07001445 {"native_inject_location",
1446 "(DDF)V",
1447 (void*)android_location_GpsLocationProvider_inject_location},
Mike Lockwoode3635c92009-05-11 08:38:02 -04001448 {"native_supports_xtra", "()Z", (void*)android_location_GpsLocationProvider_supports_xtra},
destradaaea8a8a62014-06-23 18:19:03 -07001449 {"native_inject_xtra_data",
1450 "([BI)V",
1451 (void*)android_location_GpsLocationProvider_inject_xtra_data},
1452 {"native_agps_data_conn_open",
1453 "(Ljava/lang/String;I)V",
1454 (void*)android_location_GpsLocationProvider_agps_data_conn_open},
1455 {"native_agps_data_conn_closed",
1456 "()V",
1457 (void*)android_location_GpsLocationProvider_agps_data_conn_closed},
1458 {"native_agps_data_conn_failed",
1459 "()V",
1460 (void*)android_location_GpsLocationProvider_agps_data_conn_failed},
1461 {"native_agps_set_id",
1462 "(ILjava/lang/String;)V",
1463 (void*)android_location_GpsLocationProvider_agps_set_id},
1464 {"native_agps_set_ref_location_cellid",
1465 "(IIIII)V",
1466 (void*)android_location_GpsLocationProvider_agps_set_reference_location_cellid},
1467 {"native_set_agps_server",
1468 "(ILjava/lang/String;I)V",
1469 (void*)android_location_GpsLocationProvider_set_agps_server},
1470 {"native_send_ni_response",
1471 "(II)V",
1472 (void*)android_location_GpsLocationProvider_send_ni_response},
1473 {"native_agps_ni_message",
1474 "([BI)V",
1475 (void *)android_location_GpsLocationProvider_agps_send_ni_message},
1476 {"native_get_internal_state",
1477 "()Ljava/lang/String;",
1478 (void*)android_location_GpsLocationProvider_get_internal_state},
1479 {"native_update_network_state",
1480 "(ZIZZLjava/lang/String;Ljava/lang/String;)V",
1481 (void*)android_location_GpsLocationProvider_update_network_state },
1482 {"native_is_geofence_supported",
1483 "()Z",
1484 (void*) android_location_GpsLocationProvider_is_geofence_supported},
1485 {"native_add_geofence",
1486 "(IDDDIIII)Z",
1487 (void *)android_location_GpsLocationProvider_add_geofence},
1488 {"native_remove_geofence",
1489 "(I)Z",
1490 (void *)android_location_GpsLocationProvider_remove_geofence},
Jaikumar Ganesh8ce470d2013-04-03 12:22:18 -07001491 {"native_pause_geofence", "(I)Z", (void *)android_location_GpsLocationProvider_pause_geofence},
destradaaea8a8a62014-06-23 18:19:03 -07001492 {"native_resume_geofence",
1493 "(II)Z",
1494 (void *)android_location_GpsLocationProvider_resume_geofence},
1495 {"native_is_measurement_supported",
1496 "()Z",
1497 (void*) android_location_GpsLocationProvider_is_measurement_supported},
1498 {"native_start_measurement_collection",
1499 "()Z",
1500 (void*) android_location_GpsLocationProvider_start_measurement_collection},
1501 {"native_stop_measurement_collection",
1502 "()Z",
destradaa4b3e3932014-07-21 18:01:47 -07001503 (void*) android_location_GpsLocationProvider_stop_measurement_collection},
1504 {"native_is_navigation_message_supported",
1505 "()Z",
1506 (void*) android_location_GpsLocationProvider_is_navigation_message_supported},
1507 {"native_start_navigation_message_collection",
1508 "()Z",
1509 (void*) android_location_GpsLocationProvider_start_navigation_message_collection},
1510 {"native_stop_navigation_message_collection",
1511 "()Z",
1512 (void*) android_location_GpsLocationProvider_stop_navigation_message_collection},
Tsuwei Chen52617bb2014-08-25 11:49:11 -07001513 {"native_configuration_update",
1514 "(Ljava/lang/String;)V",
1515 (void*)android_location_GpsLocationProvider_configuration_update},
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001516};
1517
Mike Lockwood00b74272010-03-26 10:41:48 -04001518int register_android_server_location_GpsLocationProvider(JNIEnv* env)
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001519{
destradaaea8a8a62014-06-23 18:19:03 -07001520 return jniRegisterNativeMethods(
1521 env,
1522 "com/android/server/location/GpsLocationProvider",
1523 sMethods,
1524 NELEM(sMethods));
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001525}
1526
1527} /* namespace android */