IGeofenceHardware.aidl revision 0682809ad08db284d7110aab44108d5e9c310e6b
1/*
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.IFusedGeofenceHardware;
20import android.location.IGpsGeofenceHardware;
21import android.hardware.location.IGeofenceHardwareCallback;
22import android.hardware.location.IGeofenceHardwareMonitorCallback;
23
24/** @hide */
25interface IGeofenceHardware {
26    void setGpsGeofenceHardware(in IGpsGeofenceHardware service);
27    void setFusedGeofenceHardware(in IFusedGeofenceHardware service);
28    int[] getMonitoringTypes();
29    int getStatusOfMonitoringType(int monitoringType);
30    boolean addCircularFence(int id,  int monitoringType, double lat, double longitude,
31            double radius, int lastTransition, int monitorTransitions,
32            int notificationResponsiveness, int unknownTimer,in IGeofenceHardwareCallback callback);
33    boolean removeGeofence(int id, int monitoringType);
34    boolean pauseGeofence(int id, int monitoringType);
35    boolean resumeGeofence(int id, int monitoringType, int monitorTransitions);
36    boolean registerForMonitorStateChangeCallback(int monitoringType,
37            IGeofenceHardwareMonitorCallback callback);
38    boolean unregisterForMonitorStateChangeCallback(int monitoringType,
39            IGeofenceHardwareMonitorCallback callback);
40}
41