blob: 6900070caf93c371c58732d5934197a2dcba43ae [file] [log] [blame]
Jaikumar Ganesh8ce470d2013-04-03 12:22:18 -07001/*
2 * Copyright (C) 2013 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/LICENS E-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
17package android.hardware.location;
18
19import android.location.IGpsGeofenceHardware;
20import android.hardware.location.IGeofenceHardwareCallback;
Jaikumar Ganeshda650892013-04-17 12:19:10 -070021import android.hardware.location.IGeofenceHardwareMonitorCallback;
Jaikumar Ganesh8ce470d2013-04-03 12:22:18 -070022
23/** @hide */
24interface IGeofenceHardware {
25 void setGpsGeofenceHardware(in IGpsGeofenceHardware service);
Jaikumar Ganeshda650892013-04-17 12:19:10 -070026 int[] getMonitoringTypes();
27 int getStatusOfMonitoringType(int monitoringType);
28 boolean addCircularFence(int id, int monitoringType, double lat, double longitude,
29 double radius, int lastTransition, int monitorTransitions,
30 int notificationResponsiveness, int unknownTimer,in IGeofenceHardwareCallback callback);
Jaikumar Ganesh8ce470d2013-04-03 12:22:18 -070031 boolean removeGeofence(int id, int monitoringType);
32 boolean pauseGeofence(int id, int monitoringType);
Jaikumar Ganeshda650892013-04-17 12:19:10 -070033 boolean resumeGeofence(int id, int monitoringType, int monitorTransitions);
Jaikumar Ganesh8ce470d2013-04-03 12:22:18 -070034 boolean registerForMonitorStateChangeCallback(int monitoringType,
Jaikumar Ganeshda650892013-04-17 12:19:10 -070035 IGeofenceHardwareMonitorCallback callback);
Jaikumar Ganesh8ce470d2013-04-03 12:22:18 -070036 boolean unregisterForMonitorStateChangeCallback(int monitoringType,
Jaikumar Ganeshda650892013-04-17 12:19:10 -070037 IGeofenceHardwareMonitorCallback callback);
Jaikumar Ganesh8ce470d2013-04-03 12:22:18 -070038}