From 8ce470dd4ba0608abb6b5eae117cefca927af96b Mon Sep 17 00:00:00 2001 From: Jaikumar Ganesh Date: Wed, 3 Apr 2013 12:22:18 -0700 Subject: GPS Hardware geofencing. Add support for doing geofencing in hardware. Change-Id: I6d5015190e8d84e1f4beb1010ed977a71c1622d0 --- .../java/android/location/IGeofenceProvider.aidl | 28 ++++++++++++++++++ .../android/location/IGpsGeofenceHardware.aidl | 33 ++++++++++++++++++++++ 2 files changed, 61 insertions(+) create mode 100644 location/java/android/location/IGeofenceProvider.aidl create mode 100644 location/java/android/location/IGpsGeofenceHardware.aidl (limited to 'location/java/android') diff --git a/location/java/android/location/IGeofenceProvider.aidl b/location/java/android/location/IGeofenceProvider.aidl new file mode 100644 index 000000000000..5a5fdc635b00 --- /dev/null +++ b/location/java/android/location/IGeofenceProvider.aidl @@ -0,0 +1,28 @@ +/* + * Copyright (C) 2013 The Android Open Source Project + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package android.location; + +import android.hardware.location.IGeofenceHardware; + +/** + * An interface for location providers implementing the Geofencing service + * + * {@hide} + */ +interface IGeofenceProvider { + void setGeofenceHardware(in IGeofenceHardware proxy); +} diff --git a/location/java/android/location/IGpsGeofenceHardware.aidl b/location/java/android/location/IGpsGeofenceHardware.aidl new file mode 100644 index 000000000000..764bf8e86fc2 --- /dev/null +++ b/location/java/android/location/IGpsGeofenceHardware.aidl @@ -0,0 +1,33 @@ +/* + * Copyright (C) 2013, The Android Open Source Project + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package android.location; + +/** + * GPS hardware geofence + * + * @hide + */ +interface IGpsGeofenceHardware +{ + boolean isHardwareGeofenceSupported(); + boolean addCircularHardwareGeofence(int geofenceId, double latitude, double + longitude, double radius, int lastTransition, int monitorTransition, + int notificationResponsiveness, int unknownTimer); + boolean removeHardwareGeofence(int geofenceId); + boolean pauseHardwareGeofence(int geofenceId); + boolean resumeHardwareGeofence(int geofenceId, int monitorTransition); +} -- cgit v1.2.3-59-g8ed1b