ILocationManager.aidl revision 54b6cfa9a9e5b861a9930af873580d6dc20f773c
1/*
2 * Copyright (C) 2007, 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
17package android.location;
18
19import android.app.PendingIntent;
20import android.location.Address;
21import android.location.IGpsStatusListener;
22import android.location.ILocationListener;
23import android.location.Location;
24import android.os.Bundle;
25
26/**
27 * System private API for talking with the location service.
28 *
29 * {@hide}
30 */
31interface ILocationManager
32{
33    List getAllProviders();
34    List getProviders(boolean enabledOnly);
35
36    void updateProviders();
37
38    void requestLocationUpdates(String provider, long minTime, float minDistance,
39        in ILocationListener listener);
40    void removeUpdates(in ILocationListener listener);
41
42    boolean addGpsStatusListener(IGpsStatusListener listener);
43    void removeGpsStatusListener(IGpsStatusListener listener);
44
45    boolean sendExtraCommand(String provider, String command, inout Bundle extras);
46
47    void addProximityAlert(double latitude, double longitude, float distance,
48        long expiration, in PendingIntent intent);
49    void removeProximityAlert(in PendingIntent intent);
50
51    Bundle getProviderInfo(String provider);
52    boolean isProviderEnabled(String provider);
53
54    Location getLastKnownLocation(String provider);
55
56    String getFromLocation(double latitude, double longitude, int maxResults,
57        String language, String country, String variant, String appName, out List<Address> addrs);
58    String getFromLocationName(String locationName,
59        double lowerLeftLatitude, double lowerLeftLongitude,
60        double upperRightLatitude, double upperRightLongitude, int maxResults,
61        String language, String country, String variant, String appName, out List<Address> addrs);
62
63    void addTestProvider(String name, boolean requiresNetwork, boolean requiresSatellite,
64        boolean requiresCell, boolean hasMonetaryCost, boolean supportsAltitude,
65        boolean supportsSpeed, boolean supportsBearing, int powerRequirement, int accuracy);
66    void removeTestProvider(String provider);
67    void setTestProviderLocation(String provider, in Location loc);
68    void clearTestProviderLocation(String provider);
69    void setTestProviderEnabled(String provider, boolean enabled);
70    void clearTestProviderEnabled(String provider);
71    void setTestProviderStatus(String provider, int status, in Bundle extras, long updateTime);
72    void clearTestProviderStatus(String provider);
73}
74