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