• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /*
2  * Copyright (C) 2006 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 
17 package android.app;
18 
19 import android.content.ComponentName;
20 import android.content.Intent;
21 import android.content.IIntentReceiver;
22 import android.content.pm.ActivityInfo;
23 import android.content.pm.ApplicationInfo;
24 import android.content.pm.ProviderInfo;
25 import android.content.pm.ServiceInfo;
26 import android.content.res.CompatibilityInfo;
27 import android.content.res.Configuration;
28 import android.os.Bundle;
29 import android.os.Debug;
30 import android.os.ParcelFileDescriptor;
31 import android.os.RemoteException;
32 import android.os.IBinder;
33 import android.os.IInterface;
34 
35 import java.io.FileDescriptor;
36 import java.util.List;
37 import java.util.Map;
38 
39 /**
40  * System private API for communicating with the application.  This is given to
41  * the activity manager by an application  when it starts up, for the activity
42  * manager to tell the application about things it needs to do.
43  *
44  * {@hide}
45  */
46 public interface IApplicationThread extends IInterface {
schedulePauseActivity(IBinder token, boolean finished, boolean userLeaving, int configChanges)47     void schedulePauseActivity(IBinder token, boolean finished, boolean userLeaving,
48             int configChanges) throws RemoteException;
scheduleStopActivity(IBinder token, boolean showWindow, int configChanges)49     void scheduleStopActivity(IBinder token, boolean showWindow,
50             int configChanges) throws RemoteException;
scheduleWindowVisibility(IBinder token, boolean showWindow)51     void scheduleWindowVisibility(IBinder token, boolean showWindow) throws RemoteException;
scheduleSleeping(IBinder token, boolean sleeping)52     void scheduleSleeping(IBinder token, boolean sleeping) throws RemoteException;
scheduleResumeActivity(IBinder token, boolean isForward)53     void scheduleResumeActivity(IBinder token, boolean isForward) throws RemoteException;
scheduleSendResult(IBinder token, List<ResultInfo> results)54     void scheduleSendResult(IBinder token, List<ResultInfo> results) throws RemoteException;
scheduleLaunchActivity(Intent intent, IBinder token, int ident, ActivityInfo info, Configuration curConfig, CompatibilityInfo compatInfo, Bundle state, List<ResultInfo> pendingResults, List<Intent> pendingNewIntents, boolean notResumed, boolean isForward, String profileName, ParcelFileDescriptor profileFd, boolean autoStopProfiler)55     void scheduleLaunchActivity(Intent intent, IBinder token, int ident,
56             ActivityInfo info, Configuration curConfig, CompatibilityInfo compatInfo,
57             Bundle state, List<ResultInfo> pendingResults,
58     		List<Intent> pendingNewIntents, boolean notResumed, boolean isForward,
59     		String profileName, ParcelFileDescriptor profileFd, boolean autoStopProfiler)
60     		throws RemoteException;
scheduleRelaunchActivity(IBinder token, List<ResultInfo> pendingResults, List<Intent> pendingNewIntents, int configChanges, boolean notResumed, Configuration config)61     void scheduleRelaunchActivity(IBinder token, List<ResultInfo> pendingResults,
62             List<Intent> pendingNewIntents, int configChanges,
63             boolean notResumed, Configuration config) throws RemoteException;
scheduleNewIntent(List<Intent> intent, IBinder token)64     void scheduleNewIntent(List<Intent> intent, IBinder token) throws RemoteException;
scheduleDestroyActivity(IBinder token, boolean finished, int configChanges)65     void scheduleDestroyActivity(IBinder token, boolean finished,
66             int configChanges) throws RemoteException;
scheduleReceiver(Intent intent, ActivityInfo info, CompatibilityInfo compatInfo, int resultCode, String data, Bundle extras, boolean sync, int sendingUser)67     void scheduleReceiver(Intent intent, ActivityInfo info, CompatibilityInfo compatInfo,
68             int resultCode, String data, Bundle extras, boolean sync,
69             int sendingUser) throws RemoteException;
70     static final int BACKUP_MODE_INCREMENTAL = 0;
71     static final int BACKUP_MODE_FULL = 1;
72     static final int BACKUP_MODE_RESTORE = 2;
73     static final int BACKUP_MODE_RESTORE_FULL = 3;
scheduleCreateBackupAgent(ApplicationInfo app, CompatibilityInfo compatInfo, int backupMode)74     void scheduleCreateBackupAgent(ApplicationInfo app, CompatibilityInfo compatInfo,
75             int backupMode) throws RemoteException;
scheduleDestroyBackupAgent(ApplicationInfo app, CompatibilityInfo compatInfo)76     void scheduleDestroyBackupAgent(ApplicationInfo app, CompatibilityInfo compatInfo)
77             throws RemoteException;
scheduleCreateService(IBinder token, ServiceInfo info, CompatibilityInfo compatInfo)78     void scheduleCreateService(IBinder token, ServiceInfo info,
79             CompatibilityInfo compatInfo) throws RemoteException;
scheduleBindService(IBinder token, Intent intent, boolean rebind)80     void scheduleBindService(IBinder token,
81             Intent intent, boolean rebind) throws RemoteException;
scheduleUnbindService(IBinder token, Intent intent)82     void scheduleUnbindService(IBinder token,
83             Intent intent) throws RemoteException;
scheduleServiceArgs(IBinder token, boolean taskRemoved, int startId, int flags, Intent args)84     void scheduleServiceArgs(IBinder token, boolean taskRemoved, int startId,
85             int flags, Intent args) throws RemoteException;
scheduleStopService(IBinder token)86     void scheduleStopService(IBinder token) throws RemoteException;
87     static final int DEBUG_OFF = 0;
88     static final int DEBUG_ON = 1;
89     static final int DEBUG_WAIT = 2;
bindApplication(String packageName, ApplicationInfo info, List<ProviderInfo> providers, ComponentName testName, String profileName, ParcelFileDescriptor profileFd, boolean autoStopProfiler, Bundle testArguments, IInstrumentationWatcher testWatcher, int debugMode, boolean openGlTrace, boolean restrictedBackupMode, boolean persistent, Configuration config, CompatibilityInfo compatInfo, Map<String, IBinder> services, Bundle coreSettings)90     void bindApplication(String packageName, ApplicationInfo info, List<ProviderInfo> providers,
91             ComponentName testName, String profileName, ParcelFileDescriptor profileFd,
92             boolean autoStopProfiler, Bundle testArguments, IInstrumentationWatcher testWatcher,
93             int debugMode, boolean openGlTrace, boolean restrictedBackupMode, boolean persistent,
94             Configuration config, CompatibilityInfo compatInfo, Map<String, IBinder> services,
95             Bundle coreSettings) throws RemoteException;
scheduleExit()96     void scheduleExit() throws RemoteException;
scheduleSuicide()97     void scheduleSuicide() throws RemoteException;
requestThumbnail(IBinder token)98     void requestThumbnail(IBinder token) throws RemoteException;
scheduleConfigurationChanged(Configuration config)99     void scheduleConfigurationChanged(Configuration config) throws RemoteException;
updateTimeZone()100     void updateTimeZone() throws RemoteException;
clearDnsCache()101     void clearDnsCache() throws RemoteException;
setHttpProxy(String proxy, String port, String exclList)102     void setHttpProxy(String proxy, String port, String exclList) throws RemoteException;
processInBackground()103     void processInBackground() throws RemoteException;
dumpService(FileDescriptor fd, IBinder servicetoken, String[] args)104     void dumpService(FileDescriptor fd, IBinder servicetoken, String[] args)
105             throws RemoteException;
dumpProvider(FileDescriptor fd, IBinder servicetoken, String[] args)106     void dumpProvider(FileDescriptor fd, IBinder servicetoken, String[] args)
107             throws RemoteException;
scheduleRegisteredReceiver(IIntentReceiver receiver, Intent intent, int resultCode, String data, Bundle extras, boolean ordered, boolean sticky, int sendingUser)108     void scheduleRegisteredReceiver(IIntentReceiver receiver, Intent intent,
109             int resultCode, String data, Bundle extras, boolean ordered,
110             boolean sticky, int sendingUser) throws RemoteException;
scheduleLowMemory()111     void scheduleLowMemory() throws RemoteException;
scheduleActivityConfigurationChanged(IBinder token)112     void scheduleActivityConfigurationChanged(IBinder token) throws RemoteException;
profilerControl(boolean start, String path, ParcelFileDescriptor fd, int profileType)113     void profilerControl(boolean start, String path, ParcelFileDescriptor fd, int profileType)
114             throws RemoteException;
dumpHeap(boolean managed, String path, ParcelFileDescriptor fd)115     void dumpHeap(boolean managed, String path, ParcelFileDescriptor fd)
116             throws RemoteException;
setSchedulingGroup(int group)117     void setSchedulingGroup(int group) throws RemoteException;
getMemoryInfo(Debug.MemoryInfo outInfo)118     void getMemoryInfo(Debug.MemoryInfo outInfo) throws RemoteException;
119     static final int PACKAGE_REMOVED = 0;
120     static final int EXTERNAL_STORAGE_UNAVAILABLE = 1;
dispatchPackageBroadcast(int cmd, String[] packages)121     void dispatchPackageBroadcast(int cmd, String[] packages) throws RemoteException;
scheduleCrash(String msg)122     void scheduleCrash(String msg) throws RemoteException;
dumpActivity(FileDescriptor fd, IBinder servicetoken, String prefix, String[] args)123     void dumpActivity(FileDescriptor fd, IBinder servicetoken, String prefix, String[] args)
124             throws RemoteException;
setCoreSettings(Bundle coreSettings)125     void setCoreSettings(Bundle coreSettings) throws RemoteException;
updatePackageCompatibilityInfo(String pkg, CompatibilityInfo info)126     void updatePackageCompatibilityInfo(String pkg, CompatibilityInfo info) throws RemoteException;
scheduleTrimMemory(int level)127     void scheduleTrimMemory(int level) throws RemoteException;
dumpMemInfo(FileDescriptor fd, boolean checkin, boolean all, String[] args)128     Debug.MemoryInfo dumpMemInfo(FileDescriptor fd, boolean checkin, boolean all,
129             String[] args) throws RemoteException;
dumpGfxInfo(FileDescriptor fd, String[] args)130     void dumpGfxInfo(FileDescriptor fd, String[] args) throws RemoteException;
dumpDbInfo(FileDescriptor fd, String[] args)131     void dumpDbInfo(FileDescriptor fd, String[] args) throws RemoteException;
unstableProviderDied(IBinder provider)132     void unstableProviderDied(IBinder provider) throws RemoteException;
133 
134     String descriptor = "android.app.IApplicationThread";
135 
136     int SCHEDULE_PAUSE_ACTIVITY_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION;
137     int SCHEDULE_STOP_ACTIVITY_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+2;
138     int SCHEDULE_WINDOW_VISIBILITY_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+3;
139     int SCHEDULE_RESUME_ACTIVITY_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+4;
140     int SCHEDULE_SEND_RESULT_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+5;
141     int SCHEDULE_LAUNCH_ACTIVITY_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+6;
142     int SCHEDULE_NEW_INTENT_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+7;
143     int SCHEDULE_FINISH_ACTIVITY_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+8;
144     int SCHEDULE_RECEIVER_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+9;
145     int SCHEDULE_CREATE_SERVICE_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+10;
146     int SCHEDULE_STOP_SERVICE_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+11;
147     int BIND_APPLICATION_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+12;
148     int SCHEDULE_EXIT_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+13;
149     int REQUEST_THUMBNAIL_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+14;
150     int SCHEDULE_CONFIGURATION_CHANGED_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+15;
151     int SCHEDULE_SERVICE_ARGS_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+16;
152     int UPDATE_TIME_ZONE_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+17;
153     int PROCESS_IN_BACKGROUND_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+18;
154     int SCHEDULE_BIND_SERVICE_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+19;
155     int SCHEDULE_UNBIND_SERVICE_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+20;
156     int DUMP_SERVICE_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+21;
157     int SCHEDULE_REGISTERED_RECEIVER_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+22;
158     int SCHEDULE_LOW_MEMORY_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+23;
159     int SCHEDULE_ACTIVITY_CONFIGURATION_CHANGED_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+24;
160     int SCHEDULE_RELAUNCH_ACTIVITY_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+25;
161     int SCHEDULE_SLEEPING_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+26;
162     int PROFILER_CONTROL_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+27;
163     int SET_SCHEDULING_GROUP_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+28;
164     int SCHEDULE_CREATE_BACKUP_AGENT_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+29;
165     int SCHEDULE_DESTROY_BACKUP_AGENT_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+30;
166     int GET_MEMORY_INFO_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+31;
167     int SCHEDULE_SUICIDE_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+32;
168     int DISPATCH_PACKAGE_BROADCAST_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+33;
169     int SCHEDULE_CRASH_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+34;
170     int DUMP_HEAP_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+35;
171     int DUMP_ACTIVITY_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+36;
172     int CLEAR_DNS_CACHE_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+37;
173     int SET_HTTP_PROXY_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+38;
174     int SET_CORE_SETTINGS_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+39;
175     int UPDATE_PACKAGE_COMPATIBILITY_INFO_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+40;
176     int SCHEDULE_TRIM_MEMORY_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+41;
177     int DUMP_MEM_INFO_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+42;
178     int DUMP_GFX_INFO_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+43;
179     int DUMP_PROVIDER_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+44;
180     int DUMP_DB_INFO_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+45;
181     int UNSTABLE_PROVIDER_DIED_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+46;
182 }
183