IPackageManager.aidl revision e1fae30e20b1515eeb036a7c103e1e70de130bdd
1/*
2**
3** Copyright 2007, The Android Open Source Project
4**
5** Licensed under the Apache License, Version 2.0 (the "License");
6** you may not use this file except in compliance with the License.
7** You may obtain a copy of the License at
8**
9**     http://www.apache.org/licenses/LICENSE-2.0
10**
11** Unless required by applicable law or agreed to in writing, software
12** distributed under the License is distributed on an "AS IS" BASIS,
13** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14** See the License for the specific language governing permissions and
15** limitations under the License.
16*/
17
18package android.content.pm;
19
20import android.content.ComponentName;
21import android.content.Intent;
22import android.content.IntentFilter;
23import android.content.pm.ActivityInfo;
24import android.content.pm.ApplicationInfo;
25import android.content.pm.IPackageInstallObserver;
26import android.content.pm.IPackageDeleteObserver;
27import android.content.pm.IPackageDataObserver;
28import android.content.pm.IPackageStatsObserver;
29import android.content.pm.InstrumentationInfo;
30import android.content.pm.PackageInfo;
31import android.content.pm.ProviderInfo;
32import android.content.pm.PermissionGroupInfo;
33import android.content.pm.PermissionInfo;
34import android.content.pm.ResolveInfo;
35import android.content.pm.ServiceInfo;
36import android.net.Uri;
37import android.app.PendingIntent;
38import android.content.IntentSender;
39
40/**
41 *  See {@link PackageManager} for documentation on most of the APIs
42 *  here.
43 *
44 *  {@hide}
45 */
46interface IPackageManager {
47    PackageInfo getPackageInfo(String packageName, int flags);
48    int getPackageUid(String packageName);
49    int[] getPackageGids(String packageName);
50
51    PermissionInfo getPermissionInfo(String name, int flags);
52
53    List<PermissionInfo> queryPermissionsByGroup(String group, int flags);
54
55    PermissionGroupInfo getPermissionGroupInfo(String name, int flags);
56
57    List<PermissionGroupInfo> getAllPermissionGroups(int flags);
58
59    ApplicationInfo getApplicationInfo(String packageName, int flags);
60
61    ActivityInfo getActivityInfo(in ComponentName className, int flags);
62
63    ActivityInfo getReceiverInfo(in ComponentName className, int flags);
64
65    ServiceInfo getServiceInfo(in ComponentName className, int flags);
66
67    int checkPermission(String permName, String pkgName);
68
69    int checkUidPermission(String permName, int uid);
70
71    boolean addPermission(in PermissionInfo info);
72
73    void removePermission(String name);
74
75    int checkSignatures(String pkg1, String pkg2);
76
77    String[] getPackagesForUid(int uid);
78
79    String getNameForUid(int uid);
80
81    int getUidForSharedUser(String sharedUserName);
82
83    ResolveInfo resolveIntent(in Intent intent, String resolvedType, int flags);
84
85    ResolveInfo resolveIntentForPackage(in Intent intent, String resolvedType, int flags,
86            String packageName);
87
88    List<ResolveInfo> queryIntentActivities(in Intent intent,
89            String resolvedType, int flags);
90
91    List<ResolveInfo> queryIntentActivityOptions(
92            in ComponentName caller, in Intent[] specifics,
93            in String[] specificTypes, in Intent intent,
94            String resolvedType, int flags);
95
96    List<ResolveInfo> queryIntentReceivers(in Intent intent,
97            String resolvedType, int flags);
98
99    ResolveInfo resolveService(in Intent intent,
100            String resolvedType, int flags);
101
102    List<ResolveInfo> queryIntentServices(in Intent intent,
103            String resolvedType, int flags);
104
105    List<PackageInfo> getInstalledPackages(int flags);
106
107    List<ApplicationInfo> getInstalledApplications(int flags);
108
109    /**
110     * Retrieve all applications that are marked as persistent.
111     *
112     * @return A List&lt;applicationInfo> containing one entry for each persistent
113     *         application.
114     */
115    List<ApplicationInfo> getPersistentApplications(int flags);
116
117    ProviderInfo resolveContentProvider(String name, int flags);
118
119    /**
120     * Retrieve sync information for all content providers.
121     *
122     * @param outNames Filled in with a list of the root names of the content
123     *                 providers that can sync.
124     * @param outInfo Filled in with a list of the ProviderInfo for each
125     *                name in 'outNames'.
126     * @deprecated
127     */
128    void querySyncProviders(inout List<String> outNames,
129            inout List<ProviderInfo> outInfo);
130
131    List<ProviderInfo> queryContentProviders(
132            String processName, int uid, int flags);
133
134    InstrumentationInfo getInstrumentationInfo(
135            in ComponentName className, int flags);
136
137    List<InstrumentationInfo> queryInstrumentation(
138            String targetPackage, int flags);
139
140    /**
141     * Install a package.
142     *
143     * @param packageURI The location of the package file to install.
144     * @param observer a callback to use to notify when the package installation in finished.
145     * @param flags - possible values: {@link #FORWARD_LOCK_PACKAGE},
146     * {@link #REPLACE_EXISITING_PACKAGE}
147     * @param installerPackageName Optional package name of the application that is performing the
148     * installation. This identifies which market the package came from.
149     */
150    void installPackage(in Uri packageURI, IPackageInstallObserver observer, int flags,
151            in String installerPackageName);
152
153    /**
154     * Delete a package.
155     *
156     * @param packageName The fully qualified name of the package to delete.
157     * @param observer a callback to use to notify when the package deletion in finished.
158     * @param flags - possible values: {@link #DONT_DELETE_DATA}
159     */
160    void deletePackage(in String packageName, IPackageDeleteObserver observer, int flags);
161
162    String getInstallerPackageName(in String packageName);
163
164    void addPackageToPreferred(String packageName);
165
166    void removePackageFromPreferred(String packageName);
167
168    List<PackageInfo> getPreferredPackages(int flags);
169
170    void addPreferredActivity(in IntentFilter filter, int match,
171            in ComponentName[] set, in ComponentName activity);
172
173    void replacePreferredActivity(in IntentFilter filter, int match,
174            in ComponentName[] set, in ComponentName activity);
175
176    void clearPackagePreferredActivities(String packageName);
177
178    int getPreferredActivities(out List<IntentFilter> outFilters,
179            out List<ComponentName> outActivities, String packageName);
180
181    /**
182     * As per {@link android.content.pm.PackageManager#setComponentEnabledSetting}.
183     */
184    void setComponentEnabledSetting(in ComponentName componentName,
185            in int newState, in int flags);
186
187    /**
188     * As per {@link android.content.pm.PackageManager#getComponentEnabledSetting}.
189     */
190    int getComponentEnabledSetting(in ComponentName componentName);
191
192    /**
193     * As per {@link android.content.pm.PackageManager#setApplicationEnabledSetting}.
194     */
195    void setApplicationEnabledSetting(in String packageName, in int newState, int flags);
196
197    /**
198     * As per {@link android.content.pm.PackageManager#getApplicationEnabledSetting}.
199     */
200    int getApplicationEnabledSetting(in String packageName);
201
202    /**
203     * Free storage by deleting LRU sorted list of cache files across
204     * all applications. If the currently available free storage
205     * on the device is greater than or equal to the requested
206     * free storage, no cache files are cleared. If the currently
207     * available storage on the device is less than the requested
208     * free storage, some or all of the cache files across
209     * all applications are deleted (based on last accessed time)
210     * to increase the free storage space on the device to
211     * the requested value. There is no guarantee that clearing all
212     * the cache files from all applications will clear up
213     * enough storage to achieve the desired value.
214     * @param freeStorageSize The number of bytes of storage to be
215     * freed by the system. Say if freeStorageSize is XX,
216     * and the current free storage is YY,
217     * if XX is less than YY, just return. if not free XX-YY number
218     * of bytes if possible.
219     * @param observer call back used to notify when
220     * the operation is completed
221     */
222     void freeStorageAndNotify(in long freeStorageSize,
223             IPackageDataObserver observer);
224
225    /**
226     * Free storage by deleting LRU sorted list of cache files across
227     * all applications. If the currently available free storage
228     * on the device is greater than or equal to the requested
229     * free storage, no cache files are cleared. If the currently
230     * available storage on the device is less than the requested
231     * free storage, some or all of the cache files across
232     * all applications are deleted (based on last accessed time)
233     * to increase the free storage space on the device to
234     * the requested value. There is no guarantee that clearing all
235     * the cache files from all applications will clear up
236     * enough storage to achieve the desired value.
237     * @param freeStorageSize The number of bytes of storage to be
238     * freed by the system. Say if freeStorageSize is XX,
239     * and the current free storage is YY,
240     * if XX is less than YY, just return. if not free XX-YY number
241     * of bytes if possible.
242     * @param opFinishedIntent PendingIntent call back used to
243     * notify when the operation is completed.May be null
244     * to indicate that no call back is desired.
245     */
246     void freeStorage(in long freeStorageSize,
247             in PendingIntent opFinishedIntent);
248
249    /**
250     * Free storage by deleting LRU sorted list of cache files across
251     * all applications. If the currently available free storage
252     * on the device is greater than or equal to the requested
253     * free storage, no cache files are cleared. If the currently
254     * available storage on the device is less than the requested
255     * free storage, some or all of the cache files across
256     * all applications are deleted (based on last accessed time)
257     * to increase the free storage space on the device to
258     * the requested value. There is no guarantee that clearing all
259     * the cache files from all applications will clear up
260     * enough storage to achieve the desired value.
261     * @param freeStorageSize The number of bytes of storage to be
262     * freed by the system. Say if freeStorageSize is XX,
263     * and the current free storage is YY,
264     * if XX is less than YY, just return. if not free XX-YY number
265     * of bytes if possible.
266     * @param pi IntentSender call back used to
267     * notify when the operation is completed.May be null
268     * to indicate that no call back is desired.
269     */
270     void freeStorageWithIntent(in long freeStorageSize,
271             in IntentSender pi);
272
273    /**
274     * Delete all the cache files in an applications cache directory
275     * @param packageName The package name of the application whose cache
276     * files need to be deleted
277     * @param observer a callback used to notify when the deletion is finished.
278     */
279    void deleteApplicationCacheFiles(in String packageName, IPackageDataObserver observer);
280
281    /**
282     * Clear the user data directory of an application.
283     * @param packageName The package name of the application whose cache
284     * files need to be deleted
285     * @param observer a callback used to notify when the operation is completed.
286     */
287    void clearApplicationUserData(in String packageName, IPackageDataObserver observer);
288
289   /**
290     * Get package statistics including the code, data and cache size for
291     * an already installed package
292     * @param packageName The package name of the application
293     * @param observer a callback to use to notify when the asynchronous
294     * retrieval of information is complete.
295     */
296    void getPackageSizeInfo(in String packageName, IPackageStatsObserver observer);
297
298    /**
299     * Get a list of shared libraries that are available on the
300     * system.
301     */
302    String[] getSystemSharedLibraryNames();
303
304    void enterSafeMode();
305    boolean isSafeMode();
306    void systemReady();
307    boolean hasSystemUidErrors();
308}
309