OSDN Git Service

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