Instrumentation.java revision 85d558cd486d195aabfc4b43cff8f338126f60a5
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
17package android.app;
18
19import android.content.ActivityNotFoundException;
20import android.content.ComponentName;
21import android.content.Context;
22import android.content.Intent;
23import android.content.IntentFilter;
24import android.content.pm.ActivityInfo;
25import android.content.res.Configuration;
26import android.hardware.input.InputManager;
27import android.os.Bundle;
28import android.os.Debug;
29import android.os.IBinder;
30import android.os.Looper;
31import android.os.MessageQueue;
32import android.os.PerformanceCollector;
33import android.os.PersistableBundle;
34import android.os.Process;
35import android.os.RemoteException;
36import android.os.ServiceManager;
37import android.os.SystemClock;
38import android.os.UserHandle;
39import android.util.AndroidRuntimeException;
40import android.util.Log;
41import android.view.IWindowManager;
42import android.view.InputDevice;
43import android.view.KeyCharacterMap;
44import android.view.KeyEvent;
45import android.view.MotionEvent;
46import android.view.ViewConfiguration;
47import android.view.Window;
48import com.android.internal.content.ReferrerIntent;
49
50import java.io.File;
51import java.util.ArrayList;
52import java.util.List;
53
54/**
55 * Base class for implementing application instrumentation code.  When running
56 * with instrumentation turned on, this class will be instantiated for you
57 * before any of the application code, allowing you to monitor all of the
58 * interaction the system has with the application.  An Instrumentation
59 * implementation is described to the system through an AndroidManifest.xml's
60 * <instrumentation> tag.
61 */
62public class Instrumentation {
63
64    /**
65     * If included in the status or final bundle sent to an IInstrumentationWatcher, this key
66     * identifies the class that is writing the report.  This can be used to provide more structured
67     * logging or reporting capabilities in the IInstrumentationWatcher.
68     */
69    public static final String REPORT_KEY_IDENTIFIER = "id";
70    /**
71     * If included in the status or final bundle sent to an IInstrumentationWatcher, this key
72     * identifies a string which can simply be printed to the output stream.  Using these streams
73     * provides a "pretty printer" version of the status & final packets.  Any bundles including
74     * this key should also include the complete set of raw key/value pairs, so that the
75     * instrumentation can also be launched, and results collected, by an automated system.
76     */
77    public static final String REPORT_KEY_STREAMRESULT = "stream";
78
79    private static final String TAG = "Instrumentation";
80
81    private final Object mSync = new Object();
82    private ActivityThread mThread = null;
83    private MessageQueue mMessageQueue = null;
84    private Context mInstrContext;
85    private Context mAppContext;
86    private ComponentName mComponent;
87    private Thread mRunner;
88    private List<ActivityWaiter> mWaitingActivities;
89    private List<ActivityMonitor> mActivityMonitors;
90    private IInstrumentationWatcher mWatcher;
91    private IUiAutomationConnection mUiAutomationConnection;
92    private boolean mAutomaticPerformanceSnapshots = false;
93    private PerformanceCollector mPerformanceCollector;
94    private Bundle mPerfMetrics = new Bundle();
95    private UiAutomation mUiAutomation;
96
97    public Instrumentation() {
98    }
99
100    /**
101     * Called when the instrumentation is starting, before any application code
102     * has been loaded.  Usually this will be implemented to simply call
103     * {@link #start} to begin the instrumentation thread, which will then
104     * continue execution in {@link #onStart}.
105     *
106     * <p>If you do not need your own thread -- that is you are writing your
107     * instrumentation to be completely asynchronous (returning to the event
108     * loop so that the application can run), you can simply begin your
109     * instrumentation here, for example call {@link Context#startActivity} to
110     * begin the appropriate first activity of the application.
111     *
112     * @param arguments Any additional arguments that were supplied when the
113     *                  instrumentation was started.
114     */
115    public void onCreate(Bundle arguments) {
116    }
117
118    /**
119     * Create and start a new thread in which to run instrumentation.  This new
120     * thread will call to {@link #onStart} where you can implement the
121     * instrumentation.
122     */
123    public void start() {
124        if (mRunner != null) {
125            throw new RuntimeException("Instrumentation already started");
126        }
127        mRunner = new InstrumentationThread("Instr: " + getClass().getName());
128        mRunner.start();
129    }
130
131    /**
132     * Method where the instrumentation thread enters execution.  This allows
133     * you to run your instrumentation code in a separate thread than the
134     * application, so that it can perform blocking operation such as
135     * {@link #sendKeySync} or {@link #startActivitySync}.
136     *
137     * <p>You will typically want to call finish() when this function is done,
138     * to end your instrumentation.
139     */
140    public void onStart() {
141    }
142
143    /**
144     * This is called whenever the system captures an unhandled exception that
145     * was thrown by the application.  The default implementation simply
146     * returns false, allowing normal system handling of the exception to take
147     * place.
148     *
149     * @param obj The client object that generated the exception.  May be an
150     *            Application, Activity, BroadcastReceiver, Service, or null.
151     * @param e The exception that was thrown.
152     *
153     * @return To allow normal system exception process to occur, return false.
154     *         If true is returned, the system will proceed as if the exception
155     *         didn't happen.
156     */
157    public boolean onException(Object obj, Throwable e) {
158        return false;
159    }
160
161    /**
162     * Provide a status report about the application.
163     *
164     * @param resultCode Current success/failure of instrumentation.
165     * @param results Any results to send back to the code that started the instrumentation.
166     */
167    public void sendStatus(int resultCode, Bundle results) {
168        if (mWatcher != null) {
169            try {
170                mWatcher.instrumentationStatus(mComponent, resultCode, results);
171            }
172            catch (RemoteException e) {
173                mWatcher = null;
174            }
175        }
176    }
177
178    /**
179     * Terminate instrumentation of the application.  This will cause the
180     * application process to exit, removing this instrumentation from the next
181     * time the application is started.
182     *
183     * @param resultCode Overall success/failure of instrumentation.
184     * @param results Any results to send back to the code that started the
185     *                instrumentation.
186     */
187    public void finish(int resultCode, Bundle results) {
188        if (mAutomaticPerformanceSnapshots) {
189            endPerformanceSnapshot();
190        }
191        if (mPerfMetrics != null) {
192            if (results == null) {
193                results = new Bundle();
194            }
195            results.putAll(mPerfMetrics);
196        }
197        if (mUiAutomation != null) {
198            mUiAutomation.disconnect();
199            mUiAutomation = null;
200        }
201        mThread.finishInstrumentation(resultCode, results);
202    }
203
204    public void setAutomaticPerformanceSnapshots() {
205        mAutomaticPerformanceSnapshots = true;
206        mPerformanceCollector = new PerformanceCollector();
207    }
208
209    public void startPerformanceSnapshot() {
210        if (!isProfiling()) {
211            mPerformanceCollector.beginSnapshot(null);
212        }
213    }
214
215    public void endPerformanceSnapshot() {
216        if (!isProfiling()) {
217            mPerfMetrics = mPerformanceCollector.endSnapshot();
218        }
219    }
220
221    /**
222     * Called when the instrumented application is stopping, after all of the
223     * normal application cleanup has occurred.
224     */
225    public void onDestroy() {
226    }
227
228    /**
229     * Return the Context of this instrumentation's package.  Note that this is
230     * often different than the Context of the application being
231     * instrumentated, since the instrumentation code often lives is a
232     * different package than that of the application it is running against.
233     * See {@link #getTargetContext} to retrieve a Context for the target
234     * application.
235     *
236     * @return The instrumentation's package context.
237     *
238     * @see #getTargetContext
239     */
240    public Context getContext() {
241        return mInstrContext;
242    }
243
244    /**
245     * Returns complete component name of this instrumentation.
246     *
247     * @return Returns the complete component name for this instrumentation.
248     */
249    public ComponentName getComponentName() {
250        return mComponent;
251    }
252
253    /**
254     * Return a Context for the target application being instrumented.  Note
255     * that this is often different than the Context of the instrumentation
256     * code, since the instrumentation code often lives is a different package
257     * than that of the application it is running against. See
258     * {@link #getContext} to retrieve a Context for the instrumentation code.
259     *
260     * @return A Context in the target application.
261     *
262     * @see #getContext
263     */
264    public Context getTargetContext() {
265        return mAppContext;
266    }
267
268    /**
269     * Check whether this instrumentation was started with profiling enabled.
270     *
271     * @return Returns true if profiling was enabled when starting, else false.
272     */
273    public boolean isProfiling() {
274        return mThread.isProfiling();
275    }
276
277    /**
278     * This method will start profiling if isProfiling() returns true. You should
279     * only call this method if you set the handleProfiling attribute in the
280     * manifest file for this Instrumentation to true.
281     */
282    public void startProfiling() {
283        if (mThread.isProfiling()) {
284            File file = new File(mThread.getProfileFilePath());
285            file.getParentFile().mkdirs();
286            Debug.startMethodTracing(file.toString(), 8 * 1024 * 1024);
287        }
288    }
289
290    /**
291     * Stops profiling if isProfiling() returns true.
292     */
293    public void stopProfiling() {
294        if (mThread.isProfiling()) {
295            Debug.stopMethodTracing();
296        }
297    }
298
299    /**
300     * Force the global system in or out of touch mode.  This can be used if
301     * your instrumentation relies on the UI being in one more or the other
302     * when it starts.
303     *
304     * @param inTouch Set to true to be in touch mode, false to be in
305     * focus mode.
306     */
307    public void setInTouchMode(boolean inTouch) {
308        try {
309            IWindowManager.Stub.asInterface(
310                    ServiceManager.getService("window")).setInTouchMode(inTouch);
311        } catch (RemoteException e) {
312            // Shouldn't happen!
313        }
314    }
315
316    /**
317     * Schedule a callback for when the application's main thread goes idle
318     * (has no more events to process).
319     *
320     * @param recipient Called the next time the thread's message queue is
321     *                  idle.
322     */
323    public void waitForIdle(Runnable recipient) {
324        mMessageQueue.addIdleHandler(new Idler(recipient));
325        mThread.getHandler().post(new EmptyRunnable());
326    }
327
328    /**
329     * Synchronously wait for the application to be idle.  Can not be called
330     * from the main application thread -- use {@link #start} to execute
331     * instrumentation in its own thread.
332     */
333    public void waitForIdleSync() {
334        validateNotAppThread();
335        Idler idler = new Idler(null);
336        mMessageQueue.addIdleHandler(idler);
337        mThread.getHandler().post(new EmptyRunnable());
338        idler.waitForIdle();
339    }
340
341    /**
342     * Execute a call on the application's main thread, blocking until it is
343     * complete.  Useful for doing things that are not thread-safe, such as
344     * looking at or modifying the view hierarchy.
345     *
346     * @param runner The code to run on the main thread.
347     */
348    public void runOnMainSync(Runnable runner) {
349        validateNotAppThread();
350        SyncRunnable sr = new SyncRunnable(runner);
351        mThread.getHandler().post(sr);
352        sr.waitForComplete();
353    }
354
355    /**
356     * Start a new activity and wait for it to begin running before returning.
357     * In addition to being synchronous, this method as some semantic
358     * differences from the standard {@link Context#startActivity} call: the
359     * activity component is resolved before talking with the activity manager
360     * (its class name is specified in the Intent that this method ultimately
361     * starts), and it does not allow you to start activities that run in a
362     * different process.  In addition, if the given Intent resolves to
363     * multiple activities, instead of displaying a dialog for the user to
364     * select an activity, an exception will be thrown.
365     *
366     * <p>The function returns as soon as the activity goes idle following the
367     * call to its {@link Activity#onCreate}.  Generally this means it has gone
368     * through the full initialization including {@link Activity#onResume} and
369     * drawn and displayed its initial window.
370     *
371     * @param intent Description of the activity to start.
372     *
373     * @see Context#startActivity
374     */
375    public Activity startActivitySync(Intent intent) {
376        validateNotAppThread();
377
378        synchronized (mSync) {
379            intent = new Intent(intent);
380
381            ActivityInfo ai = intent.resolveActivityInfo(
382                getTargetContext().getPackageManager(), 0);
383            if (ai == null) {
384                throw new RuntimeException("Unable to resolve activity for: " + intent);
385            }
386            String myProc = mThread.getProcessName();
387            if (!ai.processName.equals(myProc)) {
388                // todo: if this intent is ambiguous, look here to see if
389                // there is a single match that is in our package.
390                throw new RuntimeException("Intent in process "
391                        + myProc + " resolved to different process "
392                        + ai.processName + ": " + intent);
393            }
394
395            intent.setComponent(new ComponentName(
396                    ai.applicationInfo.packageName, ai.name));
397            final ActivityWaiter aw = new ActivityWaiter(intent);
398
399            if (mWaitingActivities == null) {
400                mWaitingActivities = new ArrayList();
401            }
402            mWaitingActivities.add(aw);
403
404            getTargetContext().startActivity(intent);
405
406            do {
407                try {
408                    mSync.wait();
409                } catch (InterruptedException e) {
410                }
411            } while (mWaitingActivities.contains(aw));
412
413            return aw.activity;
414        }
415    }
416
417    /**
418     * Information about a particular kind of Intent that is being monitored.
419     * An instance of this class is added to the
420     * current instrumentation through {@link #addMonitor}; after being added,
421     * when a new activity is being started the monitor will be checked and, if
422     * matching, its hit count updated and (optionally) the call stopped and a
423     * canned result returned.
424     *
425     * <p>An ActivityMonitor can also be used to look for the creation of an
426     * activity, through the {@link #waitForActivity} method.  This will return
427     * after a matching activity has been created with that activity object.
428     */
429    public static class ActivityMonitor {
430        private final IntentFilter mWhich;
431        private final String mClass;
432        private final ActivityResult mResult;
433        private final boolean mBlock;
434
435
436        // This is protected by 'Instrumentation.this.mSync'.
437        /*package*/ int mHits = 0;
438
439        // This is protected by 'this'.
440        /*package*/ Activity mLastActivity = null;
441
442        /**
443         * Create a new ActivityMonitor that looks for a particular kind of
444         * intent to be started.
445         *
446         * @param which The set of intents this monitor is responsible for.
447         * @param result A canned result to return if the monitor is hit; can
448         *               be null.
449         * @param block Controls whether the monitor should block the activity
450         *              start (returning its canned result) or let the call
451         *              proceed.
452         *
453         * @see Instrumentation#addMonitor
454         */
455        public ActivityMonitor(
456            IntentFilter which, ActivityResult result, boolean block) {
457            mWhich = which;
458            mClass = null;
459            mResult = result;
460            mBlock = block;
461        }
462
463        /**
464         * Create a new ActivityMonitor that looks for a specific activity
465         * class to be started.
466         *
467         * @param cls The activity class this monitor is responsible for.
468         * @param result A canned result to return if the monitor is hit; can
469         *               be null.
470         * @param block Controls whether the monitor should block the activity
471         *              start (returning its canned result) or let the call
472         *              proceed.
473         *
474         * @see Instrumentation#addMonitor
475         */
476        public ActivityMonitor(
477            String cls, ActivityResult result, boolean block) {
478            mWhich = null;
479            mClass = cls;
480            mResult = result;
481            mBlock = block;
482        }
483
484        /**
485         * Retrieve the filter associated with this ActivityMonitor.
486         */
487        public final IntentFilter getFilter() {
488            return mWhich;
489        }
490
491        /**
492         * Retrieve the result associated with this ActivityMonitor, or null if
493         * none.
494         */
495        public final ActivityResult getResult() {
496            return mResult;
497        }
498
499        /**
500         * Check whether this monitor blocks activity starts (not allowing the
501         * actual activity to run) or allows them to execute normally.
502         */
503        public final boolean isBlocking() {
504            return mBlock;
505        }
506
507        /**
508         * Retrieve the number of times the monitor has been hit so far.
509         */
510        public final int getHits() {
511            return mHits;
512        }
513
514        /**
515         * Retrieve the most recent activity class that was seen by this
516         * monitor.
517         */
518        public final Activity getLastActivity() {
519            return mLastActivity;
520        }
521
522        /**
523         * Block until an Activity is created that matches this monitor,
524         * returning the resulting activity.
525         *
526         * @return Activity
527         */
528        public final Activity waitForActivity() {
529            synchronized (this) {
530                while (mLastActivity == null) {
531                    try {
532                        wait();
533                    } catch (InterruptedException e) {
534                    }
535                }
536                Activity res = mLastActivity;
537                mLastActivity = null;
538                return res;
539            }
540        }
541
542        /**
543         * Block until an Activity is created that matches this monitor,
544         * returning the resulting activity or till the timeOut period expires.
545         * If the timeOut expires before the activity is started, return null.
546         *
547         * @param timeOut Time to wait before the activity is created.
548         *
549         * @return Activity
550         */
551        public final Activity waitForActivityWithTimeout(long timeOut) {
552            synchronized (this) {
553                if (mLastActivity == null) {
554                    try {
555                        wait(timeOut);
556                    } catch (InterruptedException e) {
557                    }
558                }
559                if (mLastActivity == null) {
560                    return null;
561                } else {
562                    Activity res = mLastActivity;
563                    mLastActivity = null;
564                    return res;
565                }
566            }
567        }
568
569        final boolean match(Context who,
570                            Activity activity,
571                            Intent intent) {
572            synchronized (this) {
573                if (mWhich != null
574                    && mWhich.match(who.getContentResolver(), intent,
575                                    true, "Instrumentation") < 0) {
576                    return false;
577                }
578                if (mClass != null) {
579                    String cls = null;
580                    if (activity != null) {
581                        cls = activity.getClass().getName();
582                    } else if (intent.getComponent() != null) {
583                        cls = intent.getComponent().getClassName();
584                    }
585                    if (cls == null || !mClass.equals(cls)) {
586                        return false;
587                    }
588                }
589                if (activity != null) {
590                    mLastActivity = activity;
591                    notifyAll();
592                }
593                return true;
594            }
595        }
596    }
597
598    /**
599     * Add a new {@link ActivityMonitor} that will be checked whenever an
600     * activity is started.  The monitor is added
601     * after any existing ones; the monitor will be hit only if none of the
602     * existing monitors can themselves handle the Intent.
603     *
604     * @param monitor The new ActivityMonitor to see.
605     *
606     * @see #addMonitor(IntentFilter, ActivityResult, boolean)
607     * @see #checkMonitorHit
608     */
609    public void addMonitor(ActivityMonitor monitor) {
610        synchronized (mSync) {
611            if (mActivityMonitors == null) {
612                mActivityMonitors = new ArrayList();
613            }
614            mActivityMonitors.add(monitor);
615        }
616    }
617
618    /**
619     * A convenience wrapper for {@link #addMonitor(ActivityMonitor)} that
620     * creates an intent filter matching {@link ActivityMonitor} for you and
621     * returns it.
622     *
623     * @param filter The set of intents this monitor is responsible for.
624     * @param result A canned result to return if the monitor is hit; can
625     *               be null.
626     * @param block Controls whether the monitor should block the activity
627     *              start (returning its canned result) or let the call
628     *              proceed.
629     *
630     * @return The newly created and added activity monitor.
631     *
632     * @see #addMonitor(ActivityMonitor)
633     * @see #checkMonitorHit
634     */
635    public ActivityMonitor addMonitor(
636        IntentFilter filter, ActivityResult result, boolean block) {
637        ActivityMonitor am = new ActivityMonitor(filter, result, block);
638        addMonitor(am);
639        return am;
640    }
641
642    /**
643     * A convenience wrapper for {@link #addMonitor(ActivityMonitor)} that
644     * creates a class matching {@link ActivityMonitor} for you and returns it.
645     *
646     * @param cls The activity class this monitor is responsible for.
647     * @param result A canned result to return if the monitor is hit; can
648     *               be null.
649     * @param block Controls whether the monitor should block the activity
650     *              start (returning its canned result) or let the call
651     *              proceed.
652     *
653     * @return The newly created and added activity monitor.
654     *
655     * @see #addMonitor(ActivityMonitor)
656     * @see #checkMonitorHit
657     */
658    public ActivityMonitor addMonitor(
659        String cls, ActivityResult result, boolean block) {
660        ActivityMonitor am = new ActivityMonitor(cls, result, block);
661        addMonitor(am);
662        return am;
663    }
664
665    /**
666     * Test whether an existing {@link ActivityMonitor} has been hit.  If the
667     * monitor has been hit at least <var>minHits</var> times, then it will be
668     * removed from the activity monitor list and true returned.  Otherwise it
669     * is left as-is and false is returned.
670     *
671     * @param monitor The ActivityMonitor to check.
672     * @param minHits The minimum number of hits required.
673     *
674     * @return True if the hit count has been reached, else false.
675     *
676     * @see #addMonitor
677     */
678    public boolean checkMonitorHit(ActivityMonitor monitor, int minHits) {
679        waitForIdleSync();
680        synchronized (mSync) {
681            if (monitor.getHits() < minHits) {
682                return false;
683            }
684            mActivityMonitors.remove(monitor);
685        }
686        return true;
687    }
688
689    /**
690     * Wait for an existing {@link ActivityMonitor} to be hit.  Once the
691     * monitor has been hit, it is removed from the activity monitor list and
692     * the first created Activity object that matched it is returned.
693     *
694     * @param monitor The ActivityMonitor to wait for.
695     *
696     * @return The Activity object that matched the monitor.
697     */
698    public Activity waitForMonitor(ActivityMonitor monitor) {
699        Activity activity = monitor.waitForActivity();
700        synchronized (mSync) {
701            mActivityMonitors.remove(monitor);
702        }
703        return activity;
704    }
705
706    /**
707     * Wait for an existing {@link ActivityMonitor} to be hit till the timeout
708     * expires.  Once the monitor has been hit, it is removed from the activity
709     * monitor list and the first created Activity object that matched it is
710     * returned.  If the timeout expires, a null object is returned.
711     *
712     * @param monitor The ActivityMonitor to wait for.
713     * @param timeOut The timeout value in secs.
714     *
715     * @return The Activity object that matched the monitor.
716     */
717    public Activity waitForMonitorWithTimeout(ActivityMonitor monitor, long timeOut) {
718        Activity activity = monitor.waitForActivityWithTimeout(timeOut);
719        synchronized (mSync) {
720            mActivityMonitors.remove(monitor);
721        }
722        return activity;
723    }
724
725    /**
726     * Remove an {@link ActivityMonitor} that was previously added with
727     * {@link #addMonitor}.
728     *
729     * @param monitor The monitor to remove.
730     *
731     * @see #addMonitor
732     */
733    public void removeMonitor(ActivityMonitor monitor) {
734        synchronized (mSync) {
735            mActivityMonitors.remove(monitor);
736        }
737    }
738
739    /**
740     * Execute a particular menu item.
741     *
742     * @param targetActivity The activity in question.
743     * @param id The identifier associated with the menu item.
744     * @param flag Additional flags, if any.
745     * @return Whether the invocation was successful (for example, it could be
746     *         false if item is disabled).
747     */
748    public boolean invokeMenuActionSync(Activity targetActivity,
749                                    int id, int flag) {
750        class MenuRunnable implements Runnable {
751            private final Activity activity;
752            private final int identifier;
753            private final int flags;
754            boolean returnValue;
755
756            public MenuRunnable(Activity _activity, int _identifier,
757                                    int _flags) {
758                activity = _activity;
759                identifier = _identifier;
760                flags = _flags;
761            }
762
763            public void run() {
764                Window win = activity.getWindow();
765
766                returnValue = win.performPanelIdentifierAction(
767                            Window.FEATURE_OPTIONS_PANEL,
768                            identifier,
769                            flags);
770            }
771
772        }
773        MenuRunnable mr = new MenuRunnable(targetActivity, id, flag);
774        runOnMainSync(mr);
775        return mr.returnValue;
776    }
777
778    /**
779     * Show the context menu for the currently focused view and executes a
780     * particular context menu item.
781     *
782     * @param targetActivity The activity in question.
783     * @param id The identifier associated with the context menu item.
784     * @param flag Additional flags, if any.
785     * @return Whether the invocation was successful (for example, it could be
786     *         false if item is disabled).
787     */
788    public boolean invokeContextMenuAction(Activity targetActivity, int id, int flag) {
789        validateNotAppThread();
790
791        // Bring up context menu for current focus.
792        // It'd be nice to do this through code, but currently ListView depends on
793        //   long press to set metadata for its selected child
794
795        final KeyEvent downEvent = new KeyEvent(KeyEvent.ACTION_DOWN, KeyEvent.KEYCODE_DPAD_CENTER);
796        sendKeySync(downEvent);
797
798        // Need to wait for long press
799        waitForIdleSync();
800        try {
801            Thread.sleep(ViewConfiguration.getLongPressTimeout());
802        } catch (InterruptedException e) {
803            Log.e(TAG, "Could not sleep for long press timeout", e);
804            return false;
805        }
806
807        final KeyEvent upEvent = new KeyEvent(KeyEvent.ACTION_UP, KeyEvent.KEYCODE_DPAD_CENTER);
808        sendKeySync(upEvent);
809
810        // Wait for context menu to appear
811        waitForIdleSync();
812
813        class ContextMenuRunnable implements Runnable {
814            private final Activity activity;
815            private final int identifier;
816            private final int flags;
817            boolean returnValue;
818
819            public ContextMenuRunnable(Activity _activity, int _identifier,
820                                    int _flags) {
821                activity = _activity;
822                identifier = _identifier;
823                flags = _flags;
824            }
825
826            public void run() {
827                Window win = activity.getWindow();
828                returnValue = win.performContextMenuIdentifierAction(
829                            identifier,
830                            flags);
831            }
832
833        }
834
835        ContextMenuRunnable cmr = new ContextMenuRunnable(targetActivity, id, flag);
836        runOnMainSync(cmr);
837        return cmr.returnValue;
838    }
839
840    /**
841     * Sends the key events corresponding to the text to the app being
842     * instrumented.
843     *
844     * @param text The text to be sent.
845     */
846    public void sendStringSync(String text) {
847        if (text == null) {
848            return;
849        }
850        KeyCharacterMap keyCharacterMap = KeyCharacterMap.load(KeyCharacterMap.VIRTUAL_KEYBOARD);
851
852        KeyEvent[] events = keyCharacterMap.getEvents(text.toCharArray());
853
854        if (events != null) {
855            for (int i = 0; i < events.length; i++) {
856                // We have to change the time of an event before injecting it because
857                // all KeyEvents returned by KeyCharacterMap.getEvents() have the same
858                // time stamp and the system rejects too old events. Hence, it is
859                // possible for an event to become stale before it is injected if it
860                // takes too long to inject the preceding ones.
861                sendKeySync(KeyEvent.changeTimeRepeat(events[i], SystemClock.uptimeMillis(), 0));
862            }
863        }
864    }
865
866    /**
867     * Send a key event to the currently focused window/view and wait for it to
868     * be processed.  Finished at some point after the recipient has returned
869     * from its event processing, though it may <em>not</em> have completely
870     * finished reacting from the event -- for example, if it needs to update
871     * its display as a result, it may still be in the process of doing that.
872     *
873     * @param event The event to send to the current focus.
874     */
875    public void sendKeySync(KeyEvent event) {
876        validateNotAppThread();
877
878        long downTime = event.getDownTime();
879        long eventTime = event.getEventTime();
880        int action = event.getAction();
881        int code = event.getKeyCode();
882        int repeatCount = event.getRepeatCount();
883        int metaState = event.getMetaState();
884        int deviceId = event.getDeviceId();
885        int scancode = event.getScanCode();
886        int source = event.getSource();
887        int flags = event.getFlags();
888        if (source == InputDevice.SOURCE_UNKNOWN) {
889            source = InputDevice.SOURCE_KEYBOARD;
890        }
891        if (eventTime == 0) {
892            eventTime = SystemClock.uptimeMillis();
893        }
894        if (downTime == 0) {
895            downTime = eventTime;
896        }
897        KeyEvent newEvent = new KeyEvent(downTime, eventTime, action, code, repeatCount, metaState,
898                deviceId, scancode, flags | KeyEvent.FLAG_FROM_SYSTEM, source);
899        InputManager.getInstance().injectInputEvent(newEvent,
900                InputManager.INJECT_INPUT_EVENT_MODE_WAIT_FOR_FINISH);
901    }
902
903    /**
904     * Sends an up and down key event sync to the currently focused window.
905     *
906     * @param key The integer keycode for the event.
907     */
908    public void sendKeyDownUpSync(int key) {
909        sendKeySync(new KeyEvent(KeyEvent.ACTION_DOWN, key));
910        sendKeySync(new KeyEvent(KeyEvent.ACTION_UP, key));
911    }
912
913    /**
914     * Higher-level method for sending both the down and up key events for a
915     * particular character key code.  Equivalent to creating both KeyEvent
916     * objects by hand and calling {@link #sendKeySync}.  The event appears
917     * as if it came from keyboard 0, the built in one.
918     *
919     * @param keyCode The key code of the character to send.
920     */
921    public void sendCharacterSync(int keyCode) {
922        sendKeySync(new KeyEvent(KeyEvent.ACTION_DOWN, keyCode));
923        sendKeySync(new KeyEvent(KeyEvent.ACTION_UP, keyCode));
924    }
925
926    /**
927     * Dispatch a pointer event. Finished at some point after the recipient has
928     * returned from its event processing, though it may <em>not</em> have
929     * completely finished reacting from the event -- for example, if it needs
930     * to update its display as a result, it may still be in the process of
931     * doing that.
932     *
933     * @param event A motion event describing the pointer action.  (As noted in
934     * {@link MotionEvent#obtain(long, long, int, float, float, int)}, be sure to use
935     * {@link SystemClock#uptimeMillis()} as the timebase.
936     */
937    public void sendPointerSync(MotionEvent event) {
938        validateNotAppThread();
939        if ((event.getSource() & InputDevice.SOURCE_CLASS_POINTER) == 0) {
940            event.setSource(InputDevice.SOURCE_TOUCHSCREEN);
941        }
942        InputManager.getInstance().injectInputEvent(event,
943                InputManager.INJECT_INPUT_EVENT_MODE_WAIT_FOR_FINISH);
944    }
945
946    /**
947     * Dispatch a trackball event. Finished at some point after the recipient has
948     * returned from its event processing, though it may <em>not</em> have
949     * completely finished reacting from the event -- for example, if it needs
950     * to update its display as a result, it may still be in the process of
951     * doing that.
952     *
953     * @param event A motion event describing the trackball action.  (As noted in
954     * {@link MotionEvent#obtain(long, long, int, float, float, int)}, be sure to use
955     * {@link SystemClock#uptimeMillis()} as the timebase.
956     */
957    public void sendTrackballEventSync(MotionEvent event) {
958        validateNotAppThread();
959        if ((event.getSource() & InputDevice.SOURCE_CLASS_TRACKBALL) == 0) {
960            event.setSource(InputDevice.SOURCE_TRACKBALL);
961        }
962        InputManager.getInstance().injectInputEvent(event,
963                InputManager.INJECT_INPUT_EVENT_MODE_WAIT_FOR_FINISH);
964    }
965
966    /**
967     * Perform instantiation of the process's {@link Application} object.  The
968     * default implementation provides the normal system behavior.
969     *
970     * @param cl The ClassLoader with which to instantiate the object.
971     * @param className The name of the class implementing the Application
972     *                  object.
973     * @param context The context to initialize the application with
974     *
975     * @return The newly instantiated Application object.
976     */
977    public Application newApplication(ClassLoader cl, String className, Context context)
978            throws InstantiationException, IllegalAccessException,
979            ClassNotFoundException {
980        return newApplication(cl.loadClass(className), context);
981    }
982
983    /**
984     * Perform instantiation of the process's {@link Application} object.  The
985     * default implementation provides the normal system behavior.
986     *
987     * @param clazz The class used to create an Application object from.
988     * @param context The context to initialize the application with
989     *
990     * @return The newly instantiated Application object.
991     */
992    static public Application newApplication(Class<?> clazz, Context context)
993            throws InstantiationException, IllegalAccessException,
994            ClassNotFoundException {
995        Application app = (Application)clazz.newInstance();
996        app.attach(context);
997        return app;
998    }
999
1000    /**
1001     * Perform calling of the application's {@link Application#onCreate}
1002     * method.  The default implementation simply calls through to that method.
1003     *
1004     * <p>Note: This method will be called immediately after {@link #onCreate(Bundle)}.
1005     * Often instrumentation tests start their test thread in onCreate(); you
1006     * need to be careful of races between these.  (Well between it and
1007     * everything else, but let's start here.)
1008     *
1009     * @param app The application being created.
1010     */
1011    public void callApplicationOnCreate(Application app) {
1012        app.onCreate();
1013    }
1014
1015    /**
1016     * Perform instantiation of an {@link Activity} object.  This method is intended for use with
1017     * unit tests, such as android.test.ActivityUnitTestCase.  The activity will be useable
1018     * locally but will be missing some of the linkages necessary for use within the sytem.
1019     *
1020     * @param clazz The Class of the desired Activity
1021     * @param context The base context for the activity to use
1022     * @param token The token for this activity to communicate with
1023     * @param application The application object (if any)
1024     * @param intent The intent that started this Activity
1025     * @param info ActivityInfo from the manifest
1026     * @param title The title, typically retrieved from the ActivityInfo record
1027     * @param parent The parent Activity (if any)
1028     * @param id The embedded Id (if any)
1029     * @param lastNonConfigurationInstance Arbitrary object that will be
1030     * available via {@link Activity#getLastNonConfigurationInstance()
1031     * Activity.getLastNonConfigurationInstance()}.
1032     * @return Returns the instantiated activity
1033     * @throws InstantiationException
1034     * @throws IllegalAccessException
1035     */
1036    public Activity newActivity(Class<?> clazz, Context context,
1037            IBinder token, Application application, Intent intent, ActivityInfo info,
1038            CharSequence title, Activity parent, String id,
1039            Object lastNonConfigurationInstance) throws InstantiationException,
1040            IllegalAccessException {
1041        Activity activity = (Activity)clazz.newInstance();
1042        ActivityThread aThread = null;
1043        activity.attach(context, aThread, this, token, 0, application, intent,
1044                info, title, parent, id,
1045                (Activity.NonConfigurationInstances)lastNonConfigurationInstance,
1046                new Configuration(), null, null);
1047        return activity;
1048    }
1049
1050    /**
1051     * Perform instantiation of the process's {@link Activity} object.  The
1052     * default implementation provides the normal system behavior.
1053     *
1054     * @param cl The ClassLoader with which to instantiate the object.
1055     * @param className The name of the class implementing the Activity
1056     *                  object.
1057     * @param intent The Intent object that specified the activity class being
1058     *               instantiated.
1059     *
1060     * @return The newly instantiated Activity object.
1061     */
1062    public Activity newActivity(ClassLoader cl, String className,
1063            Intent intent)
1064            throws InstantiationException, IllegalAccessException,
1065            ClassNotFoundException {
1066        return (Activity)cl.loadClass(className).newInstance();
1067    }
1068
1069    private void prePerformCreate(Activity activity) {
1070        if (mWaitingActivities != null) {
1071            synchronized (mSync) {
1072                final int N = mWaitingActivities.size();
1073                for (int i=0; i<N; i++) {
1074                    final ActivityWaiter aw = mWaitingActivities.get(i);
1075                    final Intent intent = aw.intent;
1076                    if (intent.filterEquals(activity.getIntent())) {
1077                        aw.activity = activity;
1078                        mMessageQueue.addIdleHandler(new ActivityGoing(aw));
1079                    }
1080                }
1081            }
1082        }
1083    }
1084
1085    private void postPerformCreate(Activity activity) {
1086        if (mActivityMonitors != null) {
1087            synchronized (mSync) {
1088                final int N = mActivityMonitors.size();
1089                for (int i=0; i<N; i++) {
1090                    final ActivityMonitor am = mActivityMonitors.get(i);
1091                    am.match(activity, activity, activity.getIntent());
1092                }
1093            }
1094        }
1095    }
1096
1097    /**
1098     * Perform calling of an activity's {@link Activity#onCreate}
1099     * method.  The default implementation simply calls through to that method.
1100     *
1101     * @param activity The activity being created.
1102     * @param icicle The previously frozen state (or null) to pass through to onCreate().
1103     */
1104    public void callActivityOnCreate(Activity activity, Bundle icicle) {
1105        prePerformCreate(activity);
1106        activity.performCreate(icicle);
1107        postPerformCreate(activity);
1108    }
1109
1110    /**
1111     * Perform calling of an activity's {@link Activity#onCreate}
1112     * method.  The default implementation simply calls through to that method.
1113     *  @param activity The activity being created.
1114     * @param icicle The previously frozen state (or null) to pass through to
1115     * @param persistentState The previously persisted state (or null)
1116     */
1117    public void callActivityOnCreate(Activity activity, Bundle icicle,
1118            PersistableBundle persistentState) {
1119        prePerformCreate(activity);
1120        activity.performCreate(icicle, persistentState);
1121        postPerformCreate(activity);
1122    }
1123
1124    public void callActivityOnDestroy(Activity activity) {
1125      // TODO: the following block causes intermittent hangs when using startActivity
1126      // temporarily comment out until root cause is fixed (bug 2630683)
1127//      if (mWaitingActivities != null) {
1128//          synchronized (mSync) {
1129//              final int N = mWaitingActivities.size();
1130//              for (int i=0; i<N; i++) {
1131//                  final ActivityWaiter aw = mWaitingActivities.get(i);
1132//                  final Intent intent = aw.intent;
1133//                  if (intent.filterEquals(activity.getIntent())) {
1134//                      aw.activity = activity;
1135//                      mMessageQueue.addIdleHandler(new ActivityGoing(aw));
1136//                  }
1137//              }
1138//          }
1139//      }
1140
1141      activity.performDestroy();
1142
1143      if (mActivityMonitors != null) {
1144          synchronized (mSync) {
1145              final int N = mActivityMonitors.size();
1146              for (int i=0; i<N; i++) {
1147                  final ActivityMonitor am = mActivityMonitors.get(i);
1148                  am.match(activity, activity, activity.getIntent());
1149              }
1150          }
1151      }
1152  }
1153
1154    /**
1155     * Perform calling of an activity's {@link Activity#onRestoreInstanceState}
1156     * method.  The default implementation simply calls through to that method.
1157     *
1158     * @param activity The activity being restored.
1159     * @param savedInstanceState The previously saved state being restored.
1160     */
1161    public void callActivityOnRestoreInstanceState(Activity activity, Bundle savedInstanceState) {
1162        activity.performRestoreInstanceState(savedInstanceState);
1163    }
1164
1165    /**
1166     * Perform calling of an activity's {@link Activity#onRestoreInstanceState}
1167     * method.  The default implementation simply calls through to that method.
1168     *
1169     * @param activity The activity being restored.
1170     * @param savedInstanceState The previously saved state being restored.
1171     * @param persistentState The previously persisted state (or null)
1172     */
1173    public void callActivityOnRestoreInstanceState(Activity activity, Bundle savedInstanceState,
1174            PersistableBundle persistentState) {
1175        activity.performRestoreInstanceState(savedInstanceState, persistentState);
1176    }
1177
1178    /**
1179     * Perform calling of an activity's {@link Activity#onPostCreate} method.
1180     * The default implementation simply calls through to that method.
1181     *
1182     * @param activity The activity being created.
1183     * @param icicle The previously frozen state (or null) to pass through to
1184     *               onPostCreate().
1185     */
1186    public void callActivityOnPostCreate(Activity activity, Bundle icicle) {
1187        activity.onPostCreate(icicle);
1188    }
1189
1190    /**
1191     * Perform calling of an activity's {@link Activity#onPostCreate} method.
1192     * The default implementation simply calls through to that method.
1193     *
1194     * @param activity The activity being created.
1195     * @param icicle The previously frozen state (or null) to pass through to
1196     *               onPostCreate().
1197     */
1198    public void callActivityOnPostCreate(Activity activity, Bundle icicle,
1199            PersistableBundle persistentState) {
1200        activity.onPostCreate(icicle, persistentState);
1201    }
1202
1203    /**
1204     * Perform calling of an activity's {@link Activity#onNewIntent}
1205     * method.  The default implementation simply calls through to that method.
1206     *
1207     * @param activity The activity receiving a new Intent.
1208     * @param intent The new intent being received.
1209     */
1210    public void callActivityOnNewIntent(Activity activity, Intent intent) {
1211        final String oldReferrer = activity.mReferrer;
1212        try {
1213            try {
1214                activity.mReferrer = ((ReferrerIntent)intent).mReferrer;
1215            } catch (ClassCastException e) {
1216                activity.mReferrer = null;
1217            }
1218            activity.onNewIntent(intent);
1219        } finally {
1220            activity.mReferrer = oldReferrer;
1221        }
1222    }
1223
1224    /**
1225     * Perform calling of an activity's {@link Activity#onStart}
1226     * method.  The default implementation simply calls through to that method.
1227     *
1228     * @param activity The activity being started.
1229     */
1230    public void callActivityOnStart(Activity activity) {
1231        activity.onStart();
1232    }
1233
1234    /**
1235     * Perform calling of an activity's {@link Activity#onRestart}
1236     * method.  The default implementation simply calls through to that method.
1237     *
1238     * @param activity The activity being restarted.
1239     */
1240    public void callActivityOnRestart(Activity activity) {
1241        activity.onRestart();
1242    }
1243
1244    /**
1245     * Perform calling of an activity's {@link Activity#onResume} method.  The
1246     * default implementation simply calls through to that method.
1247     *
1248     * @param activity The activity being resumed.
1249     */
1250    public void callActivityOnResume(Activity activity) {
1251        activity.mResumed = true;
1252        activity.onResume();
1253
1254        if (mActivityMonitors != null) {
1255            synchronized (mSync) {
1256                final int N = mActivityMonitors.size();
1257                for (int i=0; i<N; i++) {
1258                    final ActivityMonitor am = mActivityMonitors.get(i);
1259                    am.match(activity, activity, activity.getIntent());
1260                }
1261            }
1262        }
1263    }
1264
1265    /**
1266     * Perform calling of an activity's {@link Activity#onStop}
1267     * method.  The default implementation simply calls through to that method.
1268     *
1269     * @param activity The activity being stopped.
1270     */
1271    public void callActivityOnStop(Activity activity) {
1272        activity.onStop();
1273    }
1274
1275    /**
1276     * Perform calling of an activity's {@link Activity#onSaveInstanceState}
1277     * method.  The default implementation simply calls through to that method.
1278     *
1279     * @param activity The activity being saved.
1280     * @param outState The bundle to pass to the call.
1281     */
1282    public void callActivityOnSaveInstanceState(Activity activity, Bundle outState) {
1283        activity.performSaveInstanceState(outState);
1284    }
1285
1286    /**
1287     * Perform calling of an activity's {@link Activity#onSaveInstanceState}
1288     * method.  The default implementation simply calls through to that method.
1289     *  @param activity The activity being saved.
1290     * @param outState The bundle to pass to the call.
1291     * @param outPersistentState The persistent bundle to pass to the call.
1292     */
1293    public void callActivityOnSaveInstanceState(Activity activity, Bundle outState,
1294            PersistableBundle outPersistentState) {
1295        activity.performSaveInstanceState(outState, outPersistentState);
1296    }
1297
1298    /**
1299     * Perform calling of an activity's {@link Activity#onPause} method.  The
1300     * default implementation simply calls through to that method.
1301     *
1302     * @param activity The activity being paused.
1303     */
1304    public void callActivityOnPause(Activity activity) {
1305        activity.performPause();
1306    }
1307
1308    /**
1309     * Perform calling of an activity's {@link Activity#onUserLeaveHint} method.
1310     * The default implementation simply calls through to that method.
1311     *
1312     * @param activity The activity being notified that the user has navigated away
1313     */
1314    public void callActivityOnUserLeaving(Activity activity) {
1315        activity.performUserLeaving();
1316    }
1317
1318    /*
1319     * Starts allocation counting. This triggers a gc and resets the counts.
1320     */
1321    public void startAllocCounting() {
1322        // Before we start trigger a GC and reset the debug counts. Run the
1323        // finalizers and another GC before starting and stopping the alloc
1324        // counts. This will free up any objects that were just sitting around
1325        // waiting for their finalizers to be run.
1326        Runtime.getRuntime().gc();
1327        Runtime.getRuntime().runFinalization();
1328        Runtime.getRuntime().gc();
1329
1330        Debug.resetAllCounts();
1331
1332        // start the counts
1333        Debug.startAllocCounting();
1334    }
1335
1336    /*
1337     * Stops allocation counting.
1338     */
1339    public void stopAllocCounting() {
1340        Runtime.getRuntime().gc();
1341        Runtime.getRuntime().runFinalization();
1342        Runtime.getRuntime().gc();
1343        Debug.stopAllocCounting();
1344    }
1345
1346    /**
1347     * If Results already contains Key, it appends Value to the key's ArrayList
1348     * associated with the key. If the key doesn't already exist in results, it
1349     * adds the key/value pair to results.
1350     */
1351    private void addValue(String key, int value, Bundle results) {
1352        if (results.containsKey(key)) {
1353            List<Integer> list = results.getIntegerArrayList(key);
1354            if (list != null) {
1355                list.add(value);
1356            }
1357        } else {
1358            ArrayList<Integer> list = new ArrayList<Integer>();
1359            list.add(value);
1360            results.putIntegerArrayList(key, list);
1361        }
1362    }
1363
1364    /**
1365     * Returns a bundle with the current results from the allocation counting.
1366     */
1367    public Bundle getAllocCounts() {
1368        Bundle results = new Bundle();
1369        results.putLong("global_alloc_count", Debug.getGlobalAllocCount());
1370        results.putLong("global_alloc_size", Debug.getGlobalAllocSize());
1371        results.putLong("global_freed_count", Debug.getGlobalFreedCount());
1372        results.putLong("global_freed_size", Debug.getGlobalFreedSize());
1373        results.putLong("gc_invocation_count", Debug.getGlobalGcInvocationCount());
1374        return results;
1375    }
1376
1377    /**
1378     * Returns a bundle with the counts for various binder counts for this process. Currently the only two that are
1379     * reported are the number of send and the number of received transactions.
1380     */
1381    public Bundle getBinderCounts() {
1382        Bundle results = new Bundle();
1383        results.putLong("sent_transactions", Debug.getBinderSentTransactions());
1384        results.putLong("received_transactions", Debug.getBinderReceivedTransactions());
1385        return results;
1386    }
1387
1388    /**
1389     * Description of a Activity execution result to return to the original
1390     * activity.
1391     */
1392    public static final class ActivityResult {
1393        /**
1394         * Create a new activity result.  See {@link Activity#setResult} for
1395         * more information.
1396         *
1397         * @param resultCode The result code to propagate back to the
1398         * originating activity, often RESULT_CANCELED or RESULT_OK
1399         * @param resultData The data to propagate back to the originating
1400         * activity.
1401         */
1402        public ActivityResult(int resultCode, Intent resultData) {
1403            mResultCode = resultCode;
1404            mResultData = resultData;
1405        }
1406
1407        /**
1408         * Retrieve the result code contained in this result.
1409         */
1410        public int getResultCode() {
1411            return mResultCode;
1412        }
1413
1414        /**
1415         * Retrieve the data contained in this result.
1416         */
1417        public Intent getResultData() {
1418            return mResultData;
1419        }
1420
1421        private final int mResultCode;
1422        private final Intent mResultData;
1423    }
1424
1425    /**
1426     * Execute a startActivity call made by the application.  The default
1427     * implementation takes care of updating any active {@link ActivityMonitor}
1428     * objects and dispatches this call to the system activity manager; you can
1429     * override this to watch for the application to start an activity, and
1430     * modify what happens when it does.
1431     *
1432     * <p>This method returns an {@link ActivityResult} object, which you can
1433     * use when intercepting application calls to avoid performing the start
1434     * activity action but still return the result the application is
1435     * expecting.  To do this, override this method to catch the call to start
1436     * activity so that it returns a new ActivityResult containing the results
1437     * you would like the application to see, and don't call up to the super
1438     * class.  Note that an application is only expecting a result if
1439     * <var>requestCode</var> is &gt;= 0.
1440     *
1441     * <p>This method throws {@link android.content.ActivityNotFoundException}
1442     * if there was no Activity found to run the given Intent.
1443     *
1444     * @param who The Context from which the activity is being started.
1445     * @param contextThread The main thread of the Context from which the activity
1446     *                      is being started.
1447     * @param token Internal token identifying to the system who is starting
1448     *              the activity; may be null.
1449     * @param target Which activity is performing the start (and thus receiving
1450     *               any result); may be null if this call is not being made
1451     *               from an activity.
1452     * @param intent The actual Intent to start.
1453     * @param requestCode Identifier for this request's result; less than zero
1454     *                    if the caller is not expecting a result.
1455     * @param options Addition options.
1456     *
1457     * @return To force the return of a particular result, return an
1458     *         ActivityResult object containing the desired data; otherwise
1459     *         return null.  The default implementation always returns null.
1460     *
1461     * @throws android.content.ActivityNotFoundException
1462     *
1463     * @see Activity#startActivity(Intent)
1464     * @see Activity#startActivityForResult(Intent, int)
1465     * @see Activity#startActivityFromChild
1466     *
1467     * {@hide}
1468     */
1469    public ActivityResult execStartActivity(
1470            Context who, IBinder contextThread, IBinder token, Activity target,
1471            Intent intent, int requestCode, Bundle options) {
1472        IApplicationThread whoThread = (IApplicationThread) contextThread;
1473        if (mActivityMonitors != null) {
1474            synchronized (mSync) {
1475                final int N = mActivityMonitors.size();
1476                for (int i=0; i<N; i++) {
1477                    final ActivityMonitor am = mActivityMonitors.get(i);
1478                    if (am.match(who, null, intent)) {
1479                        am.mHits++;
1480                        if (am.isBlocking()) {
1481                            return requestCode >= 0 ? am.getResult() : null;
1482                        }
1483                        break;
1484                    }
1485                }
1486            }
1487        }
1488        try {
1489            intent.migrateExtraStreamToClipData();
1490            intent.prepareToLeaveProcess();
1491            int result = ActivityManagerNative.getDefault()
1492                .startActivity(whoThread, who.getBasePackageName(), intent,
1493                        intent.resolveTypeIfNeeded(who.getContentResolver()),
1494                        token, target != null ? target.mEmbeddedID : null,
1495                        requestCode, 0, null, options);
1496            checkStartActivityResult(result, intent);
1497        } catch (RemoteException e) {
1498        }
1499        return null;
1500    }
1501
1502    /**
1503     * Like {@link #execStartActivity(Context, IBinder, IBinder, Activity, Intent, int, Bundle)},
1504     * but accepts an array of activities to be started.  Note that active
1505     * {@link ActivityMonitor} objects only match against the first activity in
1506     * the array.
1507     *
1508     * {@hide}
1509     */
1510    public void execStartActivities(Context who, IBinder contextThread,
1511            IBinder token, Activity target, Intent[] intents, Bundle options) {
1512        execStartActivitiesAsUser(who, contextThread, token, target, intents, options,
1513                UserHandle.myUserId());
1514    }
1515
1516    /**
1517     * Like {@link #execStartActivity(Context, IBinder, IBinder, Activity, Intent, int, Bundle)},
1518     * but accepts an array of activities to be started.  Note that active
1519     * {@link ActivityMonitor} objects only match against the first activity in
1520     * the array.
1521     *
1522     * {@hide}
1523     */
1524    public void execStartActivitiesAsUser(Context who, IBinder contextThread,
1525            IBinder token, Activity target, Intent[] intents, Bundle options,
1526            int userId) {
1527        IApplicationThread whoThread = (IApplicationThread) contextThread;
1528        if (mActivityMonitors != null) {
1529            synchronized (mSync) {
1530                final int N = mActivityMonitors.size();
1531                for (int i=0; i<N; i++) {
1532                    final ActivityMonitor am = mActivityMonitors.get(i);
1533                    if (am.match(who, null, intents[0])) {
1534                        am.mHits++;
1535                        if (am.isBlocking()) {
1536                            return;
1537                        }
1538                        break;
1539                    }
1540                }
1541            }
1542        }
1543        try {
1544            String[] resolvedTypes = new String[intents.length];
1545            for (int i=0; i<intents.length; i++) {
1546                intents[i].migrateExtraStreamToClipData();
1547                intents[i].prepareToLeaveProcess();
1548                resolvedTypes[i] = intents[i].resolveTypeIfNeeded(who.getContentResolver());
1549            }
1550            int result = ActivityManagerNative.getDefault()
1551                .startActivities(whoThread, who.getBasePackageName(), intents, resolvedTypes,
1552                        token, options, userId);
1553            checkStartActivityResult(result, intents[0]);
1554        } catch (RemoteException e) {
1555        }
1556    }
1557
1558    /**
1559     * Like {@link #execStartActivity(android.content.Context, android.os.IBinder,
1560     * android.os.IBinder, Fragment, android.content.Intent, int, android.os.Bundle)},
1561     * but for calls from a {#link Fragment}.
1562     *
1563     * @param who The Context from which the activity is being started.
1564     * @param contextThread The main thread of the Context from which the activity
1565     *                      is being started.
1566     * @param token Internal token identifying to the system who is starting
1567     *              the activity; may be null.
1568     * @param target Which fragment is performing the start (and thus receiving
1569     *               any result).
1570     * @param intent The actual Intent to start.
1571     * @param requestCode Identifier for this request's result; less than zero
1572     *                    if the caller is not expecting a result.
1573     *
1574     * @return To force the return of a particular result, return an
1575     *         ActivityResult object containing the desired data; otherwise
1576     *         return null.  The default implementation always returns null.
1577     *
1578     * @throws android.content.ActivityNotFoundException
1579     *
1580     * @see Activity#startActivity(Intent)
1581     * @see Activity#startActivityForResult(Intent, int)
1582     * @see Activity#startActivityFromChild
1583     *
1584     * {@hide}
1585     */
1586    public ActivityResult execStartActivity(
1587        Context who, IBinder contextThread, IBinder token, Fragment target,
1588        Intent intent, int requestCode, Bundle options) {
1589        IApplicationThread whoThread = (IApplicationThread) contextThread;
1590        if (mActivityMonitors != null) {
1591            synchronized (mSync) {
1592                final int N = mActivityMonitors.size();
1593                for (int i=0; i<N; i++) {
1594                    final ActivityMonitor am = mActivityMonitors.get(i);
1595                    if (am.match(who, null, intent)) {
1596                        am.mHits++;
1597                        if (am.isBlocking()) {
1598                            return requestCode >= 0 ? am.getResult() : null;
1599                        }
1600                        break;
1601                    }
1602                }
1603            }
1604        }
1605        try {
1606            intent.migrateExtraStreamToClipData();
1607            intent.prepareToLeaveProcess();
1608            int result = ActivityManagerNative.getDefault()
1609                .startActivity(whoThread, who.getBasePackageName(), intent,
1610                        intent.resolveTypeIfNeeded(who.getContentResolver()),
1611                        token, target != null ? target.mWho : null,
1612                        requestCode, 0, null, options);
1613            checkStartActivityResult(result, intent);
1614        } catch (RemoteException e) {
1615        }
1616        return null;
1617    }
1618
1619    /**
1620     * Like {@link #execStartActivity(Context, IBinder, IBinder, Activity, Intent, int, Bundle)},
1621     * but for starting as a particular user.
1622     *
1623     * @param who The Context from which the activity is being started.
1624     * @param contextThread The main thread of the Context from which the activity
1625     *                      is being started.
1626     * @param token Internal token identifying to the system who is starting
1627     *              the activity; may be null.
1628     * @param target Which fragment is performing the start (and thus receiving
1629     *               any result).
1630     * @param intent The actual Intent to start.
1631     * @param requestCode Identifier for this request's result; less than zero
1632     *                    if the caller is not expecting a result.
1633     *
1634     * @return To force the return of a particular result, return an
1635     *         ActivityResult object containing the desired data; otherwise
1636     *         return null.  The default implementation always returns null.
1637     *
1638     * @throws android.content.ActivityNotFoundException
1639     *
1640     * @see Activity#startActivity(Intent)
1641     * @see Activity#startActivityForResult(Intent, int)
1642     * @see Activity#startActivityFromChild
1643     *
1644     * {@hide}
1645     */
1646    public ActivityResult execStartActivity(
1647            Context who, IBinder contextThread, IBinder token, Activity target,
1648            Intent intent, int requestCode, Bundle options, UserHandle user) {
1649        IApplicationThread whoThread = (IApplicationThread) contextThread;
1650        if (mActivityMonitors != null) {
1651            synchronized (mSync) {
1652                final int N = mActivityMonitors.size();
1653                for (int i=0; i<N; i++) {
1654                    final ActivityMonitor am = mActivityMonitors.get(i);
1655                    if (am.match(who, null, intent)) {
1656                        am.mHits++;
1657                        if (am.isBlocking()) {
1658                            return requestCode >= 0 ? am.getResult() : null;
1659                        }
1660                        break;
1661                    }
1662                }
1663            }
1664        }
1665        try {
1666            intent.migrateExtraStreamToClipData();
1667            intent.prepareToLeaveProcess();
1668            int result = ActivityManagerNative.getDefault()
1669                .startActivityAsUser(whoThread, who.getBasePackageName(), intent,
1670                        intent.resolveTypeIfNeeded(who.getContentResolver()),
1671                        token, target != null ? target.mEmbeddedID : null,
1672                        requestCode, 0, null, options, user.getIdentifier());
1673            checkStartActivityResult(result, intent);
1674        } catch (RemoteException e) {
1675        }
1676        return null;
1677    }
1678
1679    /**
1680     * Special version!
1681     * @hide
1682     */
1683    public ActivityResult execStartActivityAsCaller(
1684            Context who, IBinder contextThread, IBinder token, Activity target,
1685            Intent intent, int requestCode, Bundle options, int userId) {
1686        IApplicationThread whoThread = (IApplicationThread) contextThread;
1687        if (mActivityMonitors != null) {
1688            synchronized (mSync) {
1689                final int N = mActivityMonitors.size();
1690                for (int i=0; i<N; i++) {
1691                    final ActivityMonitor am = mActivityMonitors.get(i);
1692                    if (am.match(who, null, intent)) {
1693                        am.mHits++;
1694                        if (am.isBlocking()) {
1695                            return requestCode >= 0 ? am.getResult() : null;
1696                        }
1697                        break;
1698                    }
1699                }
1700            }
1701        }
1702        try {
1703            intent.migrateExtraStreamToClipData();
1704            intent.prepareToLeaveProcess();
1705            int result = ActivityManagerNative.getDefault()
1706                .startActivityAsCaller(whoThread, who.getBasePackageName(), intent,
1707                        intent.resolveTypeIfNeeded(who.getContentResolver()),
1708                        token, target != null ? target.mEmbeddedID : null,
1709                        requestCode, 0, null, options, userId);
1710            checkStartActivityResult(result, intent);
1711        } catch (RemoteException e) {
1712        }
1713        return null;
1714    }
1715
1716    /**
1717     * Special version!
1718     * @hide
1719     */
1720    public void execStartActivityFromAppTask(
1721            Context who, IBinder contextThread, IAppTask appTask,
1722            Intent intent, Bundle options) {
1723        IApplicationThread whoThread = (IApplicationThread) contextThread;
1724        if (mActivityMonitors != null) {
1725            synchronized (mSync) {
1726                final int N = mActivityMonitors.size();
1727                for (int i=0; i<N; i++) {
1728                    final ActivityMonitor am = mActivityMonitors.get(i);
1729                    if (am.match(who, null, intent)) {
1730                        am.mHits++;
1731                        if (am.isBlocking()) {
1732                            return;
1733                        }
1734                        break;
1735                    }
1736                }
1737            }
1738        }
1739        try {
1740            intent.migrateExtraStreamToClipData();
1741            intent.prepareToLeaveProcess();
1742            int result = appTask.startActivity(whoThread.asBinder(), who.getBasePackageName(),
1743                    intent, intent.resolveTypeIfNeeded(who.getContentResolver()), options);
1744            checkStartActivityResult(result, intent);
1745        } catch (RemoteException e) {
1746        }
1747        return;
1748    }
1749
1750    /*package*/ final void init(ActivityThread thread,
1751            Context instrContext, Context appContext, ComponentName component,
1752            IInstrumentationWatcher watcher, IUiAutomationConnection uiAutomationConnection) {
1753        mThread = thread;
1754        mMessageQueue = mThread.getLooper().myQueue();
1755        mInstrContext = instrContext;
1756        mAppContext = appContext;
1757        mComponent = component;
1758        mWatcher = watcher;
1759        mUiAutomationConnection = uiAutomationConnection;
1760    }
1761
1762    /** @hide */
1763    public static void checkStartActivityResult(int res, Object intent) {
1764        if (res >= ActivityManager.START_SUCCESS) {
1765            return;
1766        }
1767
1768        switch (res) {
1769            case ActivityManager.START_INTENT_NOT_RESOLVED:
1770            case ActivityManager.START_CLASS_NOT_FOUND:
1771                if (intent instanceof Intent && ((Intent)intent).getComponent() != null)
1772                    throw new ActivityNotFoundException(
1773                            "Unable to find explicit activity class "
1774                            + ((Intent)intent).getComponent().toShortString()
1775                            + "; have you declared this activity in your AndroidManifest.xml?");
1776                throw new ActivityNotFoundException(
1777                        "No Activity found to handle " + intent);
1778            case ActivityManager.START_PERMISSION_DENIED:
1779                throw new SecurityException("Not allowed to start activity "
1780                        + intent);
1781            case ActivityManager.START_FORWARD_AND_REQUEST_CONFLICT:
1782                throw new AndroidRuntimeException(
1783                        "FORWARD_RESULT_FLAG used while also requesting a result");
1784            case ActivityManager.START_NOT_ACTIVITY:
1785                throw new IllegalArgumentException(
1786                        "PendingIntent is not an activity");
1787            case ActivityManager.START_NOT_VOICE_COMPATIBLE:
1788                throw new SecurityException(
1789                        "Starting under voice control not allowed for: " + intent);
1790            default:
1791                throw new AndroidRuntimeException("Unknown error code "
1792                        + res + " when starting " + intent);
1793        }
1794    }
1795
1796    private final void validateNotAppThread() {
1797        if (Looper.myLooper() == Looper.getMainLooper()) {
1798            throw new RuntimeException(
1799                "This method can not be called from the main application thread");
1800        }
1801    }
1802
1803    /**
1804     * Gets the {@link UiAutomation} instance.
1805     * <p>
1806     * <strong>Note:</strong> The APIs exposed via the returned {@link UiAutomation}
1807     * work across application boundaries while the APIs exposed by the instrumentation
1808     * do not. For example, {@link Instrumentation#sendPointerSync(MotionEvent)} will
1809     * not allow you to inject the event in an app different from the instrumentation
1810     * target, while {@link UiAutomation#injectInputEvent(android.view.InputEvent, boolean)}
1811     * will work regardless of the current application.
1812     * </p>
1813     * <p>
1814     * A typical test case should be using either the {@link UiAutomation} or
1815     * {@link Instrumentation} APIs. Using both APIs at the same time is not
1816     * a mistake by itself but a client has to be aware of the APIs limitations.
1817     * </p>
1818     * @return The UI automation instance.
1819     *
1820     * @see UiAutomation
1821     */
1822    public UiAutomation getUiAutomation() {
1823        if (mUiAutomationConnection != null) {
1824            if (mUiAutomation == null) {
1825                mUiAutomation = new UiAutomation(getTargetContext().getMainLooper(),
1826                        mUiAutomationConnection);
1827                mUiAutomation.connect();
1828            }
1829            return mUiAutomation;
1830        }
1831        return null;
1832    }
1833
1834    private final class InstrumentationThread extends Thread {
1835        public InstrumentationThread(String name) {
1836            super(name);
1837        }
1838        public void run() {
1839            try {
1840                Process.setThreadPriority(Process.THREAD_PRIORITY_URGENT_DISPLAY);
1841            } catch (RuntimeException e) {
1842                Log.w(TAG, "Exception setting priority of instrumentation thread "
1843                        + Process.myTid(), e);
1844            }
1845            if (mAutomaticPerformanceSnapshots) {
1846                startPerformanceSnapshot();
1847            }
1848            onStart();
1849        }
1850    }
1851
1852    private static final class EmptyRunnable implements Runnable {
1853        public void run() {
1854        }
1855    }
1856
1857    private static final class SyncRunnable implements Runnable {
1858        private final Runnable mTarget;
1859        private boolean mComplete;
1860
1861        public SyncRunnable(Runnable target) {
1862            mTarget = target;
1863        }
1864
1865        public void run() {
1866            mTarget.run();
1867            synchronized (this) {
1868                mComplete = true;
1869                notifyAll();
1870            }
1871        }
1872
1873        public void waitForComplete() {
1874            synchronized (this) {
1875                while (!mComplete) {
1876                    try {
1877                        wait();
1878                    } catch (InterruptedException e) {
1879                    }
1880                }
1881            }
1882        }
1883    }
1884
1885    private static final class ActivityWaiter {
1886        public final Intent intent;
1887        public Activity activity;
1888
1889        public ActivityWaiter(Intent _intent) {
1890            intent = _intent;
1891        }
1892    }
1893
1894    private final class ActivityGoing implements MessageQueue.IdleHandler {
1895        private final ActivityWaiter mWaiter;
1896
1897        public ActivityGoing(ActivityWaiter waiter) {
1898            mWaiter = waiter;
1899        }
1900
1901        public final boolean queueIdle() {
1902            synchronized (mSync) {
1903                mWaitingActivities.remove(mWaiter);
1904                mSync.notifyAll();
1905            }
1906            return false;
1907        }
1908    }
1909
1910    private static final class Idler implements MessageQueue.IdleHandler {
1911        private final Runnable mCallback;
1912        private boolean mIdle;
1913
1914        public Idler(Runnable callback) {
1915            mCallback = callback;
1916            mIdle = false;
1917        }
1918
1919        public final boolean queueIdle() {
1920            if (mCallback != null) {
1921                mCallback.run();
1922            }
1923            synchronized (this) {
1924                mIdle = true;
1925                notifyAll();
1926            }
1927            return false;
1928        }
1929
1930        public void waitForIdle() {
1931            synchronized (this) {
1932                while (!mIdle) {
1933                    try {
1934                        wait();
1935                    } catch (InterruptedException e) {
1936                    }
1937                }
1938            }
1939        }
1940    }
1941}
1942