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